 @charset "UTF-8";
 .grid-container-five {
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     grid-template-rows: repeat(2, 1fr);
     grid-column-gap: 15px;
     grid-row-gap: 15px;
     background-color: #e2dddc;
     padding: 15px;
     color: #616268;
     font-family: Helvetica, Arial, sans-serif;
     font-weight: 700;
 }
 
 .grid-item {
     background-color: #fff;
     position: relative;
     height: 16vw;
     padding: 13px;
     background-repeat: no-repeat;
     background-position: center bottom+1vw;
     background-size: 16vw;
 }
 
 a {
     font-size: .875rem;
     text-decoration: none;
     color: #626468;
 }
 
 a:hover {
     color: #ff6c00;
 }
 
 #aircomp {
     background-image: url("machines/air-compressor-g.gif");
 }
 
 #boiler {
     background-image: url("machines/boiler-rot-a.gif");
 }
 
 #centpump {
     background-image: url("machines/cent-water-pump-g.gif");
 }
 
 #cscomp {
     background-image: url("machines/cooling-system-compressor-rot.gif");
 }
 
 #coolt {
     background-image: url("machines/cooling-tower-rot.gif");
 }
 
 #exfan {
     background-image: url("machines/ducted-fan-rot-a.gif");
 }
 
 #heatex {
     background-image: url("machines/heat-exchanger-g.gif");
 }
 
 #hpu {
     background-image: url("machines/hydraulic-power-unit-rot-a.gif");
 }
 
 #blower {
     background-image: url("machines/multistage-blower.gif");
 }
 
 #indmotor {
     background-image: url("machines/induction-motor.gif");
 }
 
 @media screen and (max-width:805px) {
     .grid-item {
         height: 18vw;
     }
 }
 
 @media screen and (max-width: 700px) {
     #aircomp {
         background-image: none;
     }
     #boiler {
         background-image: none;
     }
     #centpump {
         background-image: none;
     }
     #cscomp {
         background-image: none;
     }
     #coolt {
         background-image: none;
     }
     #exfan {
         background-image: none;
     }
     #heatex {
         background-image: none;
     }
     #hpu {
         background-image: none;
     }
     #blower {
         background-image: none;
     }
     #watank {
         background-image: none;
     }
     .grid-container-five {
         grid-template-columns: repeat(2, 1fr);
         grid-template-rows: repeat(5, 1fr);
     }
     .grid-item {
         height: unset;
     }
 }