html {
  scroll-behavior: smooth; /* tags and anchors */
}

* {
  box-sizing: border-box;
}

.body {
	max-width: 1080px;
	margin: auto;
	padding: 0px 20px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.9rem;
	background-color: white;
  color: #5f5f5f;
  min-height: 89vh;  
}

hr {	
  border: 0;
  border-top: 1px solid lightgray;
}

.hr-red {
    padding-top: 30px;
    border: 0;
    border-bottom: dashed 1px #AE1E1E;
}

.fullscreen {
  min-height: 100vh;
}

.redletters {
  color: #AE1E1E;
  padding-left: 1rem;
  margin-top: 1rem;
  margin-bottom: 14.400px; /*h1-h7 etc lined with the grid */
}

.greyletters {
  color: #6f6f6f;
  padding-left: 1rem;
}

#rednote {
  font-weight: bold;
  color: #AE1E1E;
  vertical-align: super;
  font-size: smaller;
}

#greynote-right {

  font-size: smaller;
  text-align: right;
  font-style: italic;
}

/*---------------------- logo and contacts at the top of the page (header) */
.logo {
	padding: 20px 0px 10px 6px;
	max-width: 300px;
	height: auto;
}

.header-container {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

@media screen and (max-width:760px) {
  .logo {
    margin: 10px 0 0 0;
    padding: 0;
    transform: scale(0.7,0.7);
  }
  .header-container > div {
  text-align: center;
    /*  display: flex;
	flex-flow: row wrap;
	justify-content: center; */
	width: 100%;
  }
    #rednote {
       display: none;
    }
  .img_unfold {
    max-width: 80% !important;
  }
}

#header {
	padding: 22px 0 10px 30px;
	text-align: right;
	text-decoration: none;
}

#footer {
  text-align: right;
	text-decoration: none;
}

@media screen and (max-width:760px) {
    #header {
        text-align: center !important;
        padding: 0px 30px 10px 30px;
    }
    #footer {
      text-align: center;
    }
}
/*-----------------------------------------end of Header  */
a {
    color: #414042;
    text-decoration: none;
}

a:hover {
	color: #AE1E1E;
}

/*----------------------------------------SLIDESHOW CONTAINER */
/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
  outline: 1px solid #dadada;
  padding: 4px;
}

@media screen and (max-width: 715px) {
  .slideshow-container {
    display: none;
  }
}

/* Caption text */
.text {
  color: white;
  font-size: 1em;
  font-weight: bold;
  padding: 1em;
  position: absolute;
  left: 5%;
  bottom: 20%;
  width: 70%;
  text-align: left;
  text-shadow: 0px 1px 4px black;
  /*color: white;
  font-size: 1em;
  font-weight: bold;
  padding: 1em;
  position: absolute;
  left: 3em;
  bottom: 3em;
  width: 70%;
  text-align: left;*/
}

/* Number text (1/3 etc) */
.numbertext {
  color:  gray;
  font-size: 14px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .6} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 360px) {
  .body {font-size: 0.8rem;}
}
/*------------------------------------------- SLIDESHOW ends */


h1, h2, h3, h4, h5, h6 {
	font-size: 0.9rem;
  margin: 0;
}

footer {
	max-width: 1080px;
	margin: auto;
	padding: 20px 20px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.90rem;
	background-color: white;
  color: #5f5f5f;
}

ul {
  list-style-type: none;
  margin: 0;
}

.ul-del {
	padding-left: 50px;
	list-style: none inside;
}

dt {
  margin-left: 10px;
}

dd {
  margin-left: 20px;
}

li {
  margin-left: -30px;
}

img {
	max-width:100%;
  max-height: 100%;
	/*height: auto;*/
}

.img_unfold {
  display: block; 
  margin:auto; 
  max-width:50%;
}

                                      /* modal images */
#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

/*--------------------------------- new main menu */
.topnav {
    overflow: hidden;
    background-color: #eeeeee;
    outline: 1px solid #dadada;
  }

  .topnav a {
    float: left;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    border-right: 1px solid #dadada;
  }

  .topnav a:hover {
      color: #AE1E1E;
  }

  .topnav .icon {
    display: none;
  }

  @media screen and (max-width: 620px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
      float: right;
      display: block;
    }
  }

  @media screen and (max-width: 620px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }

    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
      border-bottom: 1px solid #dadada;
    }
  }

                
                /* breadcrumbs--------------------------------------- 

ul.breadcrumbs {
    color: gray;
    list-style: none;
    font-size: 12px;

}
ul.breadcrumbs li {
    display: inline;
    padding: 2px;
    font-size: 12px;
}
ul.breadcrumbs li+li:before {
    padding: 10px;
    content: '\007C';
}
ul.breadcrumbs li a {
    text-decoration: none;
}
ul.breadcrumbs li a:hover {
    color: gray;
}

dt {
font-weight: bold;
} 

-------------------------------------- end of breadcrumbs  */

/* .tablelined {
  text-align: center;
  border-collapse: collapse;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.tablelined td, .tablelined th {
  border: 1px solid #ddd;
  padding: 8px;
}

.tablelined tr:nth-child(even){background-color: #f2f2f2;}

.tablelined tr:hover {background-color: #ED9292; cursor: context-menu;}

.tablelined th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #737373;
  color: white;
} */

/*table with no lines' highlights
.tableth {
  text-align: center;
  border-collapse: collapse;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.tableth td, .tableth th {
  border: 1px solid #ddd;
  padding: 8px;
}

.tableth tr:hover {
  cursor: context-menu;
}
*/


                            /*  hoverable TABLES from old planum */ 
table.table_usual, th {margin-left:auto;margin-right:auto;border:1px solid #ccc;text-align:center;padding:10px !important;border-collapse:collapse;background-color:#fff;font-weight:normal;}

td {border:1px solid #ccc !important;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}

tr:hover {
  background-color:#ED9292;
}

.tablethcoloreee th {margin-left:auto;margin-right:auto;border:1px solid #ccc;text-align:center;padding:10px !important;border-collapse:collapse;background-color:#eee;font-weight:normal;}

/* ----------------------------------------CONTENT & SIDEBAR (experimental) DOWNLOAD STOCKLIST BUTTONS */
.mainside {
  display: flex;
  flex-wrap: wrap;
  /*gap: 1rem;*/
}

.mainside1 {
  flex: 1 1 74%;
  display: flex;
  align-items: center;
}


.bordered1 {
  border: 1px solid lightgray;
  padding: 0 1rem;
}

.mainside2 {
  flex: 1 1 20%;
  min-width: 25ch;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 1068px) { /*slides to the middle*/
  .mainside {
    flex-direction: column;  
  }
  .mainside2 {
    justify-content: center; 
  }
}

.bordered2 {
  display: flex;
  background-color: #eeeeee;
  border: 1px solid #dadada;
  padding: 0 1rem;
  justify-content: center;
  align-items: center;
} 

.bordered2:hover {
  background-color: #eeeeee;
  cursor: pointer;
}
/*experiments END*/

/*---------------------------------------------flexish for Products */

.even-col {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding-bottom: 1rem;
    align-items: stretch; /*??*/
}

.even-col > * {
    flex: 1 1 10rem;
    outline: 1px solid #dadada;
    padding: 4px;
    width: 48%;
}

.even-col p {
  margin-top: 0px;
}

.one-col {
  outline: 1px solid #dadada;
  padding: 4px;
  margin: auto;
  width: 64%;
  padding-bottom: 1rem;
}

@media screen and (max-width: 620px) {
  .one-col {
    width: 100%;
  }
}

/* ---------------------------------------- hoverable for Products (w/ hidden description  */
.hoverco {
  position: relative;
  /*max-width: 50%; look at that */
  padding: 0.3rem;
  outline: 1px solid #dadada;
  max-height: 10rem;
}

/* .hoverco:hover {
  filter: grayscale(80%);  
} */

hr.hoverdi {
  border: 1px solid #AE1E1E;
}

.hoverim {
  display: inline-block;
  width: 100%; /*look at that x2*/
  max-height: 100%;
  min-height: 100%;
  /*height: auto;*/
  object-fit: cover;
}

.hoverte {
  position: absolute;
  top: 1rem;
  left: 1.3rem;
  font-size: 0.9rem;
  color: white;
  /*text-shadow: 2px 2px 4px #000000; */
     -webkit-transition: all 0.3s ease; 
     -moz-transition: all 0.3s ease; 
     -o-transition: all 0.3s ease; 
     -ms-transition: all 0.3s ease; 
     transition: all 0.3s ease; 
}

.hoverco:hover .hoverte {
	transition: 0.3s;
	transition-timing-function: ease-out;
    -ms-transform: translate(0%,40%); /* IE 9 */
    transform: translate(0%,40%); /* Standard syntax */
}

.hovertehi {
  opacity: 0;
  max-width: 30ch;
  position: relative;
  top: -2rem; 
  left: 1rem;
  overflow: hidden;
  height: -1;
  font-size: 0.9rem;
  color: white;
 /* text-shadow: 2px 2px 4px #000000; */
     -webkit-transition: all 0.4s ease; 
     -moz-transition: all 0.4s ease; 
     -o-transition: all 0.4s ease; 
     -ms-transition: all 0.4s ease; 
     transition: all 0.4s ease; 
}

.hoverco:hover .hovertehi {
  height: 40%;
  opacity: 1;
	transition: 0.5s;
	transition-timing-function: ease-out;
    -ms-transform: translate(0px, -4rem); /* IE 9 */
    transform: translate(0px,-4rem); /* Standard syntax */
}

/*--------------------------------------------- hoverable containers for Belts*/
.hovercontainer {
  position: relative;
}

.hovercontainer img {
  width: 100%;
  object-fit: cover;
  margin: 0;
  height: auto;
}

.hovertext {
  position: absolute;
  top: 1rem;
  left: 1rem;
  text-align: right;
  color: white;
/*    text-shadow: 2px 2px 4px #000000; */
     -webkit-transition: all 0.2s ease; 
     -moz-transition: all 0.2s ease; 
     -o-transition: all 0.2s ease; 
     -ms-transition: all 0.2s ease; 
     transition: all 0.2s ease; 
}

.hovercontainer:hover .hovertext {
	transition: 0.2s;
	transition-timing-function: ease-out;
    -ms-transform: translate(0%, 60%); /* IE 9 */
    transform: translate(0%, 60%); /* Standard syntax */
}

/*------------------------------------------- download */

/*------------------------------------- piece for 4 columns (main page) */
.row2,
.row2 > .column2 {
  padding: 0rem;
}

.column2 {
  float: left;
  width: 50%;
  padding: 0.4rem 1rem !important;
}

.row2:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 760px) {
  .column2 {
    width: 100%;
  }
}


/*-------------------------------------- multiple row pulleys buttons */
.tablinks {
  cursor: pointer;
}

.tablinks:hover {
  background-color: #ED9292;
}
/*---------ended */

/* check if used */
.centeredblock {
  text-align: center;
  margin: auto;
}

.btn {
  display: inline-block;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.9rem;
  background-color: #eee;
  border: 1px solid #dadada;
  padding: 12px 16px;
  cursor: pointer;
}

.btn:hover {
  color: #AE1E1E;
}

/*----------------collapsible search */
#myInput {
  background-image: url('/css/searchicon.png'); /*add icon's path*/
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 100%;
  font-size: 0.9rem;
  padding: 12px 20px 12px 20px;
  border: 1px solid #dadada;
  margin-bottom: 12px;
}

#myTable {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #dadada;
  font-size: 0.9rem;
}

#myTable th, #myTable td {
  text-align: left;
  padding: 0.4rem;
}

#myTable tr {
  border-bottom: 1px solid #dadada;
}

#myTable tr.header, #myTable tr:hover {
  background-color: #ED9292;
}



/*-------------                                  driving belt failures (flex) grey background + framed*/

.row3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.column3 {
  flex: 32%;
  flex-wrap: wrap;
  outline: 1px solid #dadada;
  padding: 1rem;
  background-color: #eeeeee;
}

.column3:nth-last-child(1) {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .column3 {
    flex: 48% !important;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .column3 {
    flex: 100% !important;
    flex-wrap: wrap;
  }
}

/*-----------------------------                   synchro pulleys 3 col w/o background*/
.row3clear {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.column3clear {
  flex: 32%;
  flex-wrap: wrap;
  outline: 1px solid #dadada;
  text-align: center;
}

.column3clear:nth-last-child(1) {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .column3clear {
    flex: 48% !important;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .column3clear {
    flex: 100% !important;
    flex-wrap: wrap;
  }
}


/*----------------------------------------------- sealing solutions + col + background */
.row4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.column4 {
  flex: 16%; /*23 earlier*/
  flex-wrap: wrap;
  outline: 1px solid #dadada;
}

.column4 a { /*clickable area*/
  display: block;
  width: 100%;
  height: 100%;
}

.column4 a:hover {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.column4:nth-last-child(1), .column4:nth-last-child(2), .column4:nth-last-child(3) {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .column4 {
    flex: 31% !important;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .column4 {
    flex: 47% !important;
    flex-wrap: wrap;
  }
}

/*------------------------------------------- hydraulic hoses adjusting rows-columns */
.row_adjust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.column_adjust {
  align-content: center;
  justify-content: center;
  flex: 16%;
  flex-wrap: wrap;
}

.column_adjust a { /*clickable area*/
  display: block;
  width: 100%;
  height: 100%;
}

.column_adjust:nth-last-child(1) {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .column_adjust {
    flex: 31% !important;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .column_adjust {
    flex: 47% !important;
    flex-wrap: wrap;
  }
}

/*----------------------------------------------- to the very top button */
#tothetop {
  display: none;
  position: fixed;
  z-index: 99;
  border-radius: 30px;
  bottom: 4%;
  left: 50%;
  transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  border: 1px solid white;
  background-color: #AE1E1E;
  color: white;
  cursor: pointer;
  padding: 1rem;
  text-transform: uppercase;
}

/*-------------------------------------- float > clearfix */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*------------------------------------------TESTIMONIAL used?) 2-1 and 1-2 grid (3 columns) */
.testimonial-grid {
  display: grid;
  gap: 1rem;
  grid-auto-columns: 1fr; /*even width columns*/
  grid-template-areas: 
  'one'
  'two'
  'three'
  'four';

  padding-bottom: 2rem;
}

.testimonial:nth-child(1) {
  grid-area: one;
}
.testimonial:nth-child(2) {
  grid-area: two;
}
.testimonial:nth-child(3) {
  grid-area: three;
}
.testimonial:nth-child(4) {
  grid-area: four;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-areas: 
    'one one two'
    'three four four'
  }
}

/*--------------------------------------- thumbnail gallery - 4col*/
.gallery-column {
  float: left;
  width: 25%;
  padding: 4px;
}

.gallery-column img {
  opacity: 0.8; 
  cursor: pointer; 
  vertical-align: middle;
}

.gallery-column img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.gallery-row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container */
.gallery-container {
  position: relative;
  display: none;
  padding: 4px;
}

#gallery-textOne, #gallery-textTwo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 1em;
  font-weight: bold;
  text-shadow: 0px 1px 4px black;
}

.gallery-closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
  text-shadow: 0px 1px 4px black;
}

/*                                          buttons-for-tables (pulleys) */
.button_select {
  background-color: white;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  border: none;
  /*transition: 0.2s; */
}

.active, .button_select:hover {
  background-color: #ED9292;
}

/* -------------------------------- TABLE, IMG properties for pulleys */
.table_pulleys {
  width: 100%;
}

.table_pulleys th {
  width: 12ch;
  min-width: 6ch;
}

.img_single_pulleys {
  max-width: 40%;
}

@media (max-width: 960px) {
  .img_single_pulleys {
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .img_single_pulleys {
    max-width: 60%;
  }
}

.img_multi_pulleys {
  max-width: 80%;
}

@media (max-width: 855px) {
  .img_multi_pulleys {
    max-width: 70%;
  }
}

@media (max-width: 600px) {
  .img_multi_pulleys {
    max-width: 50%;
  }
}

/*-------------------------------------- pulleys 4 columns adjusted for 2SPA (technical images) */
.pulleyrow4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pulleycolumn4 {
  flex: 23%; /*16 earlier for more columns*/
  flex-wrap: wrap;
  outline: 1px solid #dadada;
}

.pulleycolumn4 a { /*clickable area*/
  display: block;
  width: 100%;
  height: 100%;
}

.pulleycolumn4 a:hover {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

.pulleycolumn4:nth-last-child(1), .pulleycolumn4:nth-last-child(2) {
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  .pulleycolumn4 {
    flex: 31% !important;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .pulleycolumn4 {
    flex: 47% !important;
    flex-wrap: wrap;
  }
}
 /* -- end*/

 /* ----------------------------------------  new tables !!!! w/ fixed header */
 .table_fixed {
  width: calc(100% - 1.55rem);
  table-layout: fixed;
  border-collapse: collapse;
  overflow: scroll;
}

 .table_fixed_list {
  max-height: 22rem;
  overflow-y: auto;
 }

 .table_fixed_list table {
  width: calc(100% - 0.5rem);
 }

 .table_fixed td, th {
  border: 1px solid #ddd;
  padding: 0.1rem;
  text-align: center;
  word-wrap: break-word;
} 

.table_fixed_list::-webkit-scrollbar {
  width: 17px; /* Adjust the width as needed */
}

.table_fixed_list::-webkit-scrollbar-thumb {
  background-color: #dadada;
  border: 1px solid #dadada;
}

.table_fixed_list::-webkit-scrollbar-track {
  background-color: #fff;
  border: 1px solid #dadada;
} 


/*-----------------------autogrid KP */
.auto-grid {
  --min-column-size: 14rem;
  display: grid;
  gap: 1rem;
  padding-bottom: 1rem;
  grid-template-columns:
    repeat(auto-fit, minmax(min(var(--min-column-size), 100%), 1fr));
}



/* pop-up-close */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  position: static;
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/*------------- inline logos (messengers) */
.inline_pic {
  display: inline;
  vertical-align: middle;
} 

/* what is flexbox for? (axial seals page) */
.flexbox {
  display: flex;
  align-items: center;
  
}

.flexbox img {
  max-width: 10rem;
  padding-right: 1rem;
  
}

@media screen and (max-width:500px) {
  .flexbox {
    flex-flow: row wrap;
  }
}

/*change .flexbox class (above) to "description" */
/* what is flexbox for? (axial seals page) */
.description_medium {
  display: flex;
  align-items: center;
  
}

.description_medium img {
  max-width: 13rem;
  padding-right: 1.5rem;
  
}

@media screen and (max-width:700px) {
  .description_medium {
    flex-flow: row wrap;
  }
}
