@charset "utf-8";
/* CSS Document */

body {background-color: black}
        * { margin: 0; padding: 0; box-sizing: border-box; transition-duration: 400ms; font-family: 'Roboto', sans-serif;} 

/* ------------------Header CSS---------------- */
        #header {
      background: none;
      display: flex;
    font-family: 'Roboto', sans-serif;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 7rem;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

#hpd-logo:hover {transform: scale(1.1)}

    header nav a {
      margin: 0 1rem;
      text-decoration: none;
      color: #fff;
      font-weight: 500;
    }
        #hpd-logo {width: 222px}

h1 {font-size: 3rem;
          margin: 0 11px;
          font-family: 'Orbitron';}
        
        .hamburger {
  font-size: 30px;
  cursor: pointer;
  padding: 20px;
  color: white;
}

 
        .search-form {
  display: flex;
  border: 1px solid grey;
  border-radius: 12px;
  overflow: hidden;
  background-color: black;
  width: 50%;
}

.search-input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  background: black;
  color: white;
  font-size: 16px;
}

.search-button {
  background: grey;
  border: none;
  color: lightgrey;
  padding: 9px 15px;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s ease;
}

.search-button:hover {
  color: white;
}
.header-links-section {
    width: 25%;
    display: inline-block;
        }
.header-links {
    font-size: 1.05rem;
    color: white;
    display: inline-block;
    width: auto;
    justify-content: space-between;
    padding: 1rem;
    vertical-align: middle;
    text-decoration: none;
    
        }
        .header-links p {display: inline-block; vertical-align: middle;}
        .header-links img {width: 22px; display: inline-block; vertical-align: middle;} 
        .header-links:hover {background-color: dimgray}

#header-mob {background: none; padding: 11px; display: none}
        #hpd-logo-mob {width: 111px; display: inline-block; vertical-align: top}
        #hamburger-mob {color: white; font-size: 28px; display: inline-block; margin-right: 7px; cursor: pointer}
        .header-links-section-mob {display: inline-block; vertical-align: top; float: right; margin-right: 11px}
        .header-links-section-mob a {text-decoration: none; color: white}
        .header-links-section-mob p {font-size: 10px}
        .header-links-mob {display: inline-block; vertical-align: top; margin-right: 11px}
        .search-form-mob {display: flex; margin: 33px auto 5px auto; border: 1px solid grey; border-radius: 12px; overflow: hidden; background-color: black; width: 90%;}

        @media only screen and (max-width: 1555px) {
            #header {padding: 1rem 2rem}
            #hpd-logo {width: 177px}
            .header-links-section {width: 80%; text-align: right}
            .header-links {font-size: .8rem; padding: .7rem}
            .search-form {width: 65%}
            .search-input {padding: 8px 4px}
            .search-button {padding: 5px 8px}
        }
        @media only screen and (max-width: 768px) {
            #header-mob {display: block; position: fixed; top: 0; width: 100%; z-index: 9999}
            #header {display: none}
        }

/* scroll to top up arrow */
#arrow-up {
    position: fixed;
    right: 0;
    bottom: 222px;
    z-index: 99999;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, .5);
    border-radius: 7px 0 0 7px;
    padding: 12px;
    color: white;
    background: rgba(1, 129, 255, 0.8);
    transition-duration: 1000ms;
    opacity: 0;
}

@media only screen and (max-width: 500px) {
    #arrow-up {left: 0; border-radius: 0px 7px 7px 0; width: 40px}
}
        
    /* Slide Out Menu CSS */
        
        .side-menu {
  position: fixed;
  top: 0;
  left: -270px;
  width: 270px;
  height: 100%;
  background-color: #E8E8E8;
  color: #4B4B4B;
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 9999;
}
        .side-menu i {color: #0181ff}

.side-menu.open {
  left: 0;
}

.side-menu .close-btn {
  font-size: 30px;
  padding: 20px;
  cursor: pointer;
  text-align: right;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list > li {
  padding: 12px 20px;
  border-top: 1px solid #333;
  cursor: pointer;
}

.menu-list li a {
  text-decoration: none;
  color: #4B4B4B;
  display: block;
}

.menu-list li a:hover, .menu-list li:hover {
  background-color: #A9A9A9;
}

.collapsible {
  font-weight: bold;
  background-color: #E8E8E8;
  color: #4B4B4B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}

.submenu {
  display: none;
  background-color: #E8E8E8;
}

.submenu.open {
  display: block;
}

.submenu li {
  padding: 10px 30px;
  border-top: 1px solid #333;
}

        .submenu li:hover {background-color: #A9A9A9;}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}
        
        
    /* Slider code */      
        .carousel {
      position: fixed;
            top: 0;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .slides {
      display: flex;
      transition: transform 0.6s ease-in-out;
      height: 100%;

    }

    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      background-size: cover;
      background-position: center;
    }

      .slide-text {
          width: 100%;
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
                  text-align: center;
          
      }    
      .slide-text h1, .slide-text h2, .slide-text a {
      color: white;
      text-shadow: 0 4px 10px rgba(0,0,0,0.7);
          display: inline-block;
          vertical-align: top;
    }
      .slide-text h1 {
       font-size: 3rem;
          width: 380px;
          margin: 0 11px;
          font-family: 'Orbitron';
          text-align: right;
       
      }
      .slide-text h2 {
       font-size: 1.5rem;
          width: 380px;
          margin: 0 11px;
          text-align: left;
          max-width: 400px;
      }
      .slide-text a {
          background-color: rgba(0,0,0,0.3);
       font-size: 1.2rem;
          position: relative;
       
      }

    .slide-nav {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      font-size: 3rem;
      color: white;
      background: rgba(0, 0, 0, 0.3);
      border: none;
      padding: 0.5rem 1rem;
      cursor: pointer;
      z-index: 2;
      user-select: none;
    }

    .slide-nav:hover {
      background: rgba(1,129,255,0.6);
    }

    .nav.slide-left {
      left: 10px;
    }

    .slide-nav.slide-right {
      right: 10px;
    }
      .slide-links {
          display: inline-block;
          padding: .5rem 2rem;
          border: 1px white solid;
          border-radius: 7px;
          margin-top: 11px;
          text-decoration: none;
      }
      .slide-links:hover {
          background-color: rgba(1,129,255,0.55)
      }



@media (orientation: portrait) and (max-width: 1024px) {
  .carousel {top: 9vh; height: 46vh}
    .slide-text {top: 40%}
    .slide-nav {top: 45%}
    
    
}

@media only screen and (max-width: 800px) {
    .slide-nav {top: 55%}
    .slide-text {top: 44%}
    .slide-text h1, .slide-text h2 {text-align: center}
    .slide-text h1 {font-size: 2.2rem}
    .slide-text h2 {font-size: 1.2rem; width: 70%}
    .slide-nav:hover {background: none}
}
@media only screen and (max-width: 500px) {
.slide-text {width: auto}
    .slide-text h1 {font-size: 1.7rem}
    .slide-text h2 {font-size: .9rem; width: 62%}
    .slide-text a {font-size: .9rem}
    .slide-nav {background: none; font-size: 2rem}
}


        /*Make model search & categories*/

        .mms-cat {
            width: 90%;
            max-width: 900px;
            position: relative;
            text-align: center;
            left: 50%; 
            transform: translateX(-50%);
            background-color: rgba(0,0,0,0.8);
            border-radius: 25px;
            padding: 2rem 3rem;
            transition: transform 0.2s ease-out;
    will-change: transform;
    z-index: 5; /* Ensure it stacks above background if needed */     
        }
.mms-cat h3, .mms-cat-home h3 {color: white; font-weight: lighter}

.mms-cat-home {
            margin-top: 333px;
            width: 90%;
            max-width: 900px;
            position: relative;
            text-align: center;
            left: 50%; 
            transform: translateX(-50%);
            background-color: rgba(0,0,0,0.8);
            border-radius: 25px;
            padding: 2rem 3rem;
            transition: transform 0.2s ease-out;
    will-change: transform;
    z-index: 5; /* Ensure it stacks above background if needed */ }

        
        
        /*dropdown menu*/
        .ddm {display: inline-block; width:55%; padding: 1rem; background: rgba(0,0,0,0,0); border: solid 1px #808080;border-radius: 7px; text-decoration: none; color: white; margin: 22px 0; overflow: hidden}   
        .ddm:hover {border-radius: 17px; background-color: rgba(1,129,255,0.55)}
    .ddm-content {opacity: 0; display: block; height: 0; position: absolute; width: 0; background-color: rgba(255,255,255,0.92); border-radius: 0 0 12px 12px; color: black; text-align: left; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); padding: 0px; transition-duration: 400ms}
        
    .ddm:hover .ddm-content {transition; opacity: 1; transition-delay: 200ms; display: block; width: 44%; height: auto; padding: 12px 0px; z-index: 5;}
        .ddm:hover i {color: #008fff;}
.make-ddm {display: inline-block; padding: 7px; width: 100%; color: inherit; text-decoration: none; font-size: 20px; cursor: pointer}
.make-ddm:hover {background: #008fff}
    .ddm a {display: inline-block; padding: 7px; width: 100%; color: inherit; text-decoration: none; font-size: 20px}
    .ddm a:hover {background: #008fff}
    .ddm h4 {font-size: 1.1rem; display: inline-block; margin-right: 22px}
        .ddm i {display: inline-block}
@media (orientation: portrait) and (max-width: 1024px) {
    .mms-cat {margin-top: 88px}
    .mms-cat-home {margin-top: 45vh}   
}
@media only screen and (max-width: 768px) {
    .mms-cat-home {margin-top: 50vh;}
}
@media only screen and (max-width: 650px) {
    .mms-cat-home, .mms-cat {padding: 2rem}
    .mms-cat-home, .mms-cat h3 {font-size: 1rem}
    .ddm {width: 100%; padding: .7rem}
    .ddm h4 {font-size: 1rem; margin-right: 11px}
}

@media only screen and (max-width: 500px) {
.mms-cat {margin-top: 33px}
}
        
         /*categories UI*/
        .catui {width: 100%; max-width: 900px; text-align: center}
    .cats {width: 250px; height: 250px; display: inline-block; text-align: center; position: relative; overflow: hidden}
    .cats h1, .cats img {display: inline-block; vertical-align: middle;}
    .cats h1 {font-size: 1rem; color: white; font-weight: normal; text-shadow: 0px 0px 4px rgba(0,0,0,1)}
    .cats img {height: 50px}
    .cat-label {display: inline-block; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 100%; pointer-events: none;}
    .int, .catch, .trans, .turbo, .boost, .air {background-size: contain; background-repeat: no-repeat; display: inline-block; width: 250px; height: 250px; transition-duration: 700ms}
        .int {background-image: url("../new-images/intercoolers.png")}
        .catch {background-image: url("../new-images/catch-cans.png")}
        .trans {background-image: url("../new-images/transcoolers.png")}
        .turbo {background-image: url("../new-images/turbos.png")}
        .boost {background-image: url("../new-images/boost.png")}
        .air {background-image: url("../new-images/air-intakes.png")}
    .int:hover, .catch:hover, .trans:hover, .turbo:hover, .boost:hover, .air:hover {transform: scale(1.7); opacity: 0.7; transition-duration: 700ms}

.product-info {width: 100%; display: block; height: 100vh; text-align: center}
.product-info h1, .product-info-intercoolers h1 {text-shadow: 2px 2px 12px rgba(0,0,0,0.9)}

.product-info-intercoolers {width: 100%; display: block; text-align: center}

@media only screen and (max-width: 460px) {
    .cats {width: 200px; height: 211px;}
    .cats h1 {font-size: .9rem; margin: 0}
    .cat-label img {width: 44px}
    .int, .catch, .trans, .turbo, .boost, .air {width: 200px; height: 200px}
}


/*--------------------model search UI----------------------------------------------------------------------------*/


#ford-homepage, #nissan-homepage, #toyota-homepage {display: none;}
#initial-label {}
#new-label {display: none}



.model-search-grid {
  max-width: 800px;
  width: 100%;
  display: grid;
  background: rgba(0,0,0,0.5);
  /*gap: 16px;*/
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    border: solid 1px #808080;
    border-radius: 7px;
    padding: 22px;
    margin-top: 55px;
    margin-bottom: 33px;
}

.model-search-grid-single {
    max-width: 800px;
  width: 100%;
  display: grid;
  background: rgba(0,0,0,0.5);
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    border: solid 1px #808080;
    border-radius: 7px;
    padding: 22px;
    margin-top: 55px;
    margin-bottom: 33px;
    
}

.model-search-grid a, .model-search-grid-single a {
  display: block;
  overflow: visible;
  border-radius: 8px;
  transition: transform 0.3s;
  text-decoration: none;
}

.model-search-grid h2, .model-search-grid-single h2{
font-family: 'Orbitron';
letter-spacing: 2px}

.model h3, .model-search-grid h3, .model-search-grid-single h3{
font-family: 'Orbitron';
text-shadow: 2px 2px 7px rgba(0,0,0,0.9);
    margin-top: -55px;
    position: relative;
    z-index: 1
}

.model-search-grid img:hover, .model-search-grid-single img:hover {
  transform: scale(1.1);
    opacity: .5;

}

.model-search-grid img, .model-search-grid-single img {
  width: 100%;
  height: auto;
  display: block;
}
        
  .model-wrapper {
  max-height: 0;
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
.model-wrapper-single {
    height: auto;
  position: relative;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 1;
}

.model-search-grid.active .model-wrapper {
  max-height: 500px; /* Enough to fit content */
  opacity: 1;
}


.model {
  display: block;
  width: 100%;
  height: 180px;
}

.model-options {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* vertical centering */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.model-wrapper:hover .model-options, .model-wrapper-single:hover .model-options {
  opacity: 1;
  pointer-events: auto;
}

.model-options-item {
  background: rgba(167,167,167,0.8);
  padding: 7px;
  color: white;
  text-decoration: none;
  margin: 5px 0;
  border-radius: 4px;
  width: 80%;
  text-align: center;
}
.model-options-item:hover {transform: scale(1.05,1.05)}
#nissan-homepage .model-options-item {font-size: 14px}
.model-wrapper-label {
    color: white; position: absolute; width: 50%; margin-top: -55px; margin-left: -22px; background: #808080; padding: 7px 77px 7px 22px; border-radius: 7px 7px 7px 0px;
    text-align: left;
}

.model-wrapper-label .fa-chevron-down, .model-wrapper-label .fa-chevron-up {display: inline-block; float: right;}

#toyota-spec-part, #ford-spec-part {display: none;}

.toyota {background-image:url('../new-images/rigs80_Toyota-BG.jpg'); background-position: top center; background-repeat: no-repeat; background-size: cover}
.toyota .model-wrapper-label {cursor: pointer}

.ford {background-image: url("../new-images/Next-Gen-See-thru_Ford-BG.jpg"); background-position: top center; background-repeat: no-repeat; background-size: cover}


/* Company benefits */
.company-benefits-overview {width: 100%; margin-top: 77px; display: block}
.company-benefits-overview-bg {background-image: linear-gradient(to bottom, rgba(55,55,55,0.98), rgba(0,0,0,0.98), rgba(0,0,0,0.9), rgba(0,0,0,0.9)); padding: 77px 33px 111px 33px; text-align: center; display: block; position: relative;}
.company-benefits-overview h1 {color: white; text-align: center; font-size: 2.2rem; margin-top: 44px; margin-bottom: 22px; display: block}
        .company-benefits-overview-card {width: 90%; max-width: 500px; text-align: center; padding: 0px; display: inline-block; margin: 2rem 1rem; border: 1px solid grey; border-radius: 7px; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7), rgba(55,55,55,0.7))}
        .company-benefits-overview-card .icon {width: 66px; margin-bottom: 22px; margin-top: 22px}
        .company-benefits-overview-card h2 {color: white; font-size: 1.3rem; text-shadow: 2px 2px 5px rgba(0,0,0,0.9); display: inline-block; width: 90%}
.company-benefits-overview-card p {display: inline-block; width: 80%; margin-bottom: 33px}
        .company-benefits-overview-card img {width: 100%; margin-top: 33px; margin-bottom: 22px}
        .company-benefits-overview-card i {color: #0181ff}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s ease-out, transform 2s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* REVIEWS SLIDER */
.review-slider-wrapper {
  position: relative;
    width: 95%;
  max-width: 1035px;
    padding: 77px 0 111px 0;
    border-radius: 12px;
  margin: 33px auto;
  overflow: hidden;
  display: flex;
  align-items: center;
    background: rgba(0,0,0,0.9);
}
.review-slider-wrapper h1 {color: white; text-align: center; font-size: 2.2rem; vertical-align: middle; margin-bottom: 44px}
.review-slider-wrapper h3 {color: white; text-align: center; max-width: 600px; display: block; margin: 0 auto; font-weight: normal; margin-bottom: 55px}
.review-slider-wrapper h1 img {width:77px; vertical-align: middle}
.review-slider-wrapper h1 span {-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: -webkit-linear-gradient(-35deg, #0181ff 0, #004ec9 100%);
    color: #0181ff; font-family: 'Orbitron';}



.review-slider-container {
  overflow: hidden;
  width: 100%;
}

.review-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-card {
  flex: 0 0 31.5%;
  padding: 17px;
  text-align: center;
  background: linear-gradient(to bottom right, rgba(222, 222, 222, 1), rgba(250, 250, 250, 1), rgba(250, 250, 250, 1), rgba(200, 200, 200, 1));
  margin: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.blue-star {
  color: #0181ff;
  font-size: 32px;
}

.quote-mark-bg {opacity: .1; position: absolute; z-index: 1; top: -12px; left: 0; width: 44%}

.review-nav-button {
  background: none;
  border: none;
  font-size: 55px;
  cursor: pointer;
  padding: 10px;
  color: #0181ff;
  transition: background border 0.3s ease;
  z-index: 1;
}

.review-nav-button:hover {
  background: #0056b3;
    border-radius: 12px 0 0 12px
}

.rev-name {font-weight: bold;}

@media (max-width: 768px) {
  .review-card {flex: 0 0 97%;}
    .review-slider-container h1 {font-size: 1.5rem; vertical-align: middle}
    .review-slider-container h1 img {width: 50px;}
}
@media (max-width: 500px) {
    .review-slider-container h1 {font-size: 1.5rem; display: inline-block; vertical-align: middle}
    .review-slider-container h1 img {width: 50px; float: left}    
}

/* Catch Cans Page */
.catch-can-heading-block {width:100%; color: white; display: inline-block;}
.catch-can-heading-block h2 {display: inline-block; text-align: left; vertical-align: middle; font-size: 38px; text-shadow: 2px 2px 7px rgb(0,0,0)}
.catch-can-heading-block .icon {width: 55px; vertical-align: middle; margin-right: 11px; display: inline-block}
.catch-can-info-block1 {
    position: relative; 
    background-image: url("../new-images/Catch-Can-kit.png"); background-size: contain; background-repeat: no-repeat; background-position: top center;
    margin-top: 0; padding-bottom: 111px; text-align: center;
}
.info-block {display: block;  margin: 0 auto;}
        .black-bg-block {padding: 22px 0px 0px 0px; border: 1px solid grey; border-radius: 0 11px 11px 33px; background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(55,55,55,0.7)); color: white; display: block; width: 100%; max-width: 800px; margin: 0 auto 55px auto; text-align: left;}
        .black-bg-block .black-block-icon {display: inline-block; width: 77px; margin-top: -44px; margin-left: -44px; margin-right: 22px; vertical-align: top}
        .black-bg-block-text {display: inline-block; width: 88%;}
        .black-bg-block p {color: #AAAAAA; display: block; width: 90%; margin: 0 auto}
        .black-bg-block h2 {font-size: 28px; font-family: 'Orbitron'; display: block; width: 90%; margin: 0 auto 11px auto}
        .top-black-block {margin-top: 333px}

@media (max-width: 1024px) {
    .catch-can-info-block1 {margin-top: -33px;}
    .black-bg-block {width: 85%}
}

@media (max-width: 768px) {
    .catch-can-info-block1 {margin-top: -33px; background-size: 170%; background-position: center center;}
    .top-black-block {margin-top: 0}
    .black-bg-block .black-block-icon {width: 65px; margin-left: -30px}
    .black-bg-block h2 {font-size: 22px; margin-top: 7px}
}

@media (max-width: 500px) {
    .catch-can-info-block1 {margin-top: -33px; background-size: 170%; background-position: center center;}
    .top-black-block {margin-top: 0}
    .black-bg-block {width: 85%}
    .black-bg-block .black-block-icon {margin-left: -12px}
    .black-bg-block h2 {font-size: 22px;}
}



/* Intercoolers Page */
.product-cat-header-image {width: 100%; position: fixed; top: 0; left: 0; z-index: -1}
.product-cat-header-image-mob {display: none; position: fixed; z-index: -1}
.product-info-intercoolers h1 {}
.category-icon-main {width: 177px; vertical-align: middle}
.intercooler-info-block {
    position: relative; 
    background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.9), rgba(0,0,0,1)); 
    margin-top: 0; padding-bottom: 111px; text-align: center;
}
.heading-block {
    width:100%; color: white; position: absolute; top: 77px; left: 50%; transform: translateX(-50%); display: inline-block;}
.heading-block-two {width:100%; color: white; display: inline-block;}
.heading-block h2,.heading-block-two h2 {display: inline-block; text-align: left; vertical-align: middle; font-size: 22px; text-shadow: 2px 2px 7px rgb(0,0,0)}
.heading-block img, .heading-block-two img {width: 77px; vertical-align: middle; margin-right: 11px; display: inline-block}
.intercooler-info-block-main-img {width: 100%; max-width: 1600px; margin-top: -33px}
.intercooler-info-block-main-img-mob {display: none}

.counter {display: block; position: absolute; top: 22%; left: 50%; transform: translateX(-50%); text-shadow: 1px 1px 7px rgb(0,0,0)}
#value {font: 700 60px sans-serif; font-family: 'Orbitron'; color: white; display: inline-block;}
        .deg {font: 700 60px sans-serif; font-family: 'Orbitron'; color: white; display: inline-block;}
        .low {font: 500 40px sans-serif; color: white; display: inline-block;}

@media (max-width: 1024px) {
    .intercooler-info-block-main-img {display: none;}
    .intercooler-info-block-main-img-mob {display: block; width: 100%; margin-top: -88px}
}

@media (max-width: 768px) {
    .low {font-size: 33px;}
    .product-cat-header-image {top: 107px;}
    .product-info-intercoolers h1 {font-size: 2rem; margin-top: 126px}
    
    .category-icon-main {width: 88px}
    .model-wrapper-label {width: 55%; padding: 7px 33px 7px 22px}
    .heading-block {top: 33px}
    .heading-block h2 {font-size: 22px}
    .heading-block img {width: 66px}
    
}
@media (max-width: 500px) {
    .counter {top: 33px}
    #value {font-size: 40px;}
        .deg {font-size: 40px;}
        .low {font-size: 22px;}
    .product-cat-header-image {display: none}
    .product-cat-header-image-mob {display: block; width: 100%; top: 88px}
    .product-info-intercoolers h1 {font-size: 1.7rem; margin-top: 126px}
    .category-icon-main {width: 77px}
    .model-search-grid {border-radius: 7px 0px 7px 7px}
    .model-search-grid h2 {font-size: 1rem}
    .model-wrapper-label {width: 80%; padding: 7px 22px 7px 11px; border-radius: 7px 7px 0px 0px}
    .model h3, .model-search-grid h3, .model-search-grid-single h3 {font-size: 17px}
    .heading-block {top: 168px; width: 90%}
    .heading-block img {width:  55px}
    .heading-block h2 {font-size: 22px; display: inline-block; width: 217px}
    .intercooler-info-block {background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));}
    .catch-can-info-block {background-image: url("file://hpddc/Company%20ALL/MARKETING/2025/Website/New%20Design/new-images/Catch-Can-kit.png"); background: no-repeat; background-position: top; background-size: cover}
}

/* Transcoolers Page */
.heading-block-trans {
    width:100%; color: white; position: absolute; top: 277px; left: 50%; transform: translateX(-50%); display: inline-block;}
.heading-block-trans h2,.heading-block-two h2 {display: inline-block; text-align: left; vertical-align: middle; font-size: 22px; text-shadow: 2px 2px 7px rgb(0,0,0)}
.heading-block-trans img, .heading-block-two img {width: 77px; vertical-align: middle; margin-right: 11px; display: inline-block}
.trans-text1 {color: #AAAAAA; width: 80%; max-width: 700px; display: block; margin: -55px auto 0 auto; text-align: left; text-shadow: 3px 3px 7px rgba(0,0,0,1)}
.transcooler-info-block-main-img {width: 100%; max-width: 1600px; margin-top: 0px}
.transcooler-info-block-main-img-mob {display: none}


@media (max-width: 1100px) {
    .heading-block-trans {top: 155px}
}
@media (max-width: 768px) {
    .heading-block-trans {top: 99px}
    .heading-block-trans h2 {font-size: 22px}
    .heading-block-trans img {width: 66px}
}
@media (max-width: 600px) {
.heading-block-trans {top: 88px; width: 90%}
    .heading-block-trans img {width:  55px}
    .heading-block-trans h2 {font-size: 16px; display: inline-block; width: 217px}
    .trans-text1 {margin-top: 44px}
}
/* Footer Code ----------------------------*/
footer {background: black;  font-family: 'Roboto', sans-serif; position: relative; bottom: 0; padding: 4rem 7rem;}
      .footer-top {display: flex; flex-direction: row; justify-content: space-around; align-items: top;}
      .footer-bottom {display: flex; flex-direction: row; justify-content: space-around; align-items: left; vertical-align: middle; margin-top: 33px}
      .footer-bottom p {margin-left: 4rem}
      footer h2 {color: #0181ff; font-family: 'Orbitron'; display: block}
      footer ul {list-style-type: none;}
      footer li {vertical-align: middle}
      footer i {margin-right: .7rem; margin-top: -2px; font-size: .7rem; vertical-align: middle; color: #0181ff;}
      .footer-column {padding: 0 2rem; display: inline-block;}
      .about {width: 100%; max-width: 333px;}
      footer a, footer p {color: grey; text-decoration: none; display: block; margin: 1rem 0}
      footer a:hover {color: white}
      .fl-icon {display: inline-block}
      .fl-icon i {font-size: 1.5rem; color: grey}
      .fl-icon i:hover {color: #0181ff}
      .payment-methods {width: 100%; max-width: 665px; margin: 1rem 0}
      .payment-methods img {height: 27px; margin: 0 7px;}
      
      @media (max-width: 800px) {
  .footer-top, .footer-bottom {flex-direction: column;}
          .footer-column, .footer-bottom {padding: 2rem 1rem; margin-top: 0}
          .footer-bottom img {height: 16px}
          .footer-bottom p {margin-left: 0}
}
@media (max-width: 500px) {
footer {padding: 2rem 2rem 2rem 4rem}
    .footer-bottom {text-align: center}
}