@font-face {
  font-family: 'Nimbus Sans Condensed Bold';
  src: url('/assets/fonts/nimbus/NimbusSanL-Bol.otf') format('opentype'); /* Modern Browsers */
  font-weight: bold; 
  font-style: normal;
}

@font-face {
  font-family: 'Nimbus Sans Condensed Bold';
  src: url('/assets/fonts/nimbus/NimbusSanL-BolIta.otf') format('opentype'); /* Modern Browsers */
  font-weight: bold;
  font-style: italic; 
}

@font-face {
  font-family: 'Proxima Nova Regular';
  src: url('/assets/fonts/Proxima/Fontspring-DEMO-proximanova-bold.otf') format('opentype'); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova Regular';
  src: url('/assets/fonts/Proxima/Fontspring-DEMO-proximanova-boldit.otf') format('opentype'); /* Modern Browsers */
  font-weight: normal; 
  font-style: italic; 
}



/* Apply the font family to elements */
h1 {
  font-family: 'Nimbus Sans Condensed Bold', sans-serif !important;
}

h2 {
  font-family: 'Nimbus Sans Condensed Bold', sans-serif !important;
}

h3 {
  font-family: 'Nimbus Sans Condensed Bold', sans-serif !important;
}

p {
  font-family: 'Proxima Nova Regular', sans-serif !important;
}

html {
  margin:0;
  padding:0;
  overflow-x:hidden;
}

::-webkit-scrollbar{
  width:8px;
}

::-webkit-scrollbar-track{
  background-color:rgba(255, 255, 255, 0.596);
  }

::-webkit-scrollbar-thumb{
  background-color:#01A1DD;
  border-radius:10px;}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.4s ease;
  ;
}
body{width:100vw !important;
     overflow-x: hidden !important;}

h1 {
  font-size: 3rem !important;
}
@media (max-width:500px) {
  h1 {
    font-size: 2.5rem !important;
  }
}

h2 {
  font-size: 2.5rem !important;
}

h3 {
  font-size: 2rem !important;
}

h5 {
  font-size: 1.5rem !important;
}

p {
  font-size: 1rem !important;
}

body {
  width: 100%;
  overflow-x: hidden;
}


.navbar-brand-mobile-view   {float:right !important;
                             /* position: absolute;
                             right: 0; */
                             display:none;
                             /* top: 0; */
                             }

@media (max-width:1100px) {
  .navbar-brand-mobile-view   {display:block;
                                }
}

.navbar-brand-mobile-view img {width:70%;
                               margin-left:30%;}


.nav-links {
  float: right;
  font-family: 'Nimbus Sans Condensed Bold', sans-serif !important;
  padding-left: 0px !important;
}

.header_p {
  color: white;
  width: 50%;
  margin-top: 20px;
}

@media (max-width:760px) {

  .header_p {
    width: 80%;
    margin-top: 20px;
  }

}

.underline {
  text-decoration: underline red;
}

.dark-blue {
  background: #03275A;
}

.mid-blue {
  background: #055AAB;
}

.light-blue {
  background: #01A1DD;
}

.red {
  background: #EF3634;
}


.text-dark-blue {
  color: #03275A;
}

.text-mid-blue {
  color: #055AAB;
}

.text-light-blue {
  color: #01A1DD;
}

.text-red {
  color: #EF3634;
}

.text-white {
  color: white;
}

.text-gray {
  color: #CDCDCF;
}

.font_weight_bold {
  font-weight: 700;
}

.font_weight_extra-bold {
  font-weight: 900;
}

.padd-20 {
  padding: 20px;
}

nav {
  position: fixed;
  top: 0;
  background-color: #199ED9;
  left: 0;
  padding: 15px 20px 0px 20px;
  height:15vh;
  width: 100%;
  z-index: 10000;
  /* border-top: 10px solid white;
  border-top: 10px solid red; */
}

nav .nav-bar {
  position: relative;
  height: 100%;
  /* max-width: 1000px; */
  width: 100%;

  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .nav-bar .sidebarOpen {
  color: var(--text-color);
  font-size: 25px;
  padding: 5px;
  cursor: pointer;
  display: none;
}

nav .nav-bar .logo a {
  font-size: 25px;
  font-weight: 500;
  text-decoration: none;
}

.menu {
  width: 100%;
}

.menu .logo-toggle {
  display: none;
}

.nav-bar .nav-links {
  display: flex;
  color: #055AAB;
  align-items: center;
  width: 100%;
  justify-content: right;
}

.nav-links img {
  width: 100px;
}

.nav-bar .nav-links li {
  margin: 0 5px;
  list-style: none;
}

.nav-links li a {
  white-space: nowrap;
  position: relative;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px;
}

.nav-links li {
  white-space: nowrap;
  position: relative;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links li ul {
  display: none;
  opacity: 0;
  transition: 1s ease-in-out;
}

.nav-links li a:hover {
  color: #1E51A2;
  text-decoration: underline 2px wavy #EF3634;
}

.nav-links li:hover ul {
  display: block;
  background: white;
  padding: 0 !important;
  opacity: 1;

  position: absolute;
}

.nav-links:hover {
  color: white;
}

.lubricants-nav ul {
  position: relative;
  top: 0;
  margin-left: 100px;
}

.lubricants-nav ul li {
  display: none;
}

.lubricants-nav:hover ul li {
  display: block;
}

.nav-links li:hover ul li {
  padding: 4px;
}

.nav-links li:hover ul li:hover {
  background: #CDCDCF;
  padding: 8px;
}

.nav-links li:hover ul li a {
  color: #055AAB;
  text-decoration: none;
}

.nav-links li:hover a::before {
  opacity: 1;
}

.nav-bar .darkLight-searchBox {
  display: flex;
  align-items: center;
}

@media (max-width:1100px) {
  nav .nav-bar .sidebarOpen {
    display: block;
  }

  .nav-links li:hover ul {
    position: relative;
  }

  .nav-links li:hover ul li {
    padding: 4px;
  }

  .menu {
    position: fixed;
    height: 100%;
    width: 320px;
    left: -100%;
    top: 0;
    padding: 20px;
    background-color: #CDCDCF;
    z-index: 100;
    transition: all 0.4s ease;
  }

  nav.active .menu {
    left: -0%;
  }

  nav.active .nav-bar .navLogo a {
    opacity: 0;
    transition: all 0.3s ease;
  }

  .menu .logo-toggle {
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-toggle .siderbarClose {
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
  }

  .nav-bar .nav-links {
    flex-direction: column;
    padding-top: 30px;
  }

  .nav-links li a {
    display: block;
    margin-top: 20px;
  }
}

/*=========================================================================== nav css end ============================================================================*/

.carousel-item  {padding: 250px 100px;
                  background-size: cover;
                  font-weight: 500;
                  color: white;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  margin-top:15vh !important;
                  height:85vh;
                  text-align: center;
                  background-position: center;
}

.head_carousel_item1 {
  background-image: url(images/lubricants_header.jpg);
  }

.head_carousel_item2 {
  background-image: url(images/banner_2.jpg);
  }

.head_carousel_item3 {
  background-image: url(images/banner_1.jpg);
  }

@media (max-width:660px) {

  .carousel-item {
    margin-top:15vh;
    height:50vh;
     }

}



.head_carousel_item1_text {
  font-size: 40px;
}

.bold_text {
  font-weight: 700;
  color: #01A1DD;
  text-decoration: 3px solid #EF3634 underline;
  font-size: 45px;
}


@media screen and (max-width:900px) {

  .head_carousel_item2 {
    padding: 200px 100px;
    font-weight: 500;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .head_carousel_item3 {
   
    padding: 200px 100px;
    font-weight: 500;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
  }

  .head_carousel_item1_text {
    background: rgba(255, 255, 255, 0.277);
    padding: 50px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
  }

}

@media screen and (max-width:760px) {



  .head_carousel_item1 {  
    padding: 150px 50px;
    min-height: 400px;
    font-weight: 500;
    color: white;
    text-align: center;
    background-position: center;
  }

  .head_carousel_item2 {
    padding: 150px 50px;
    min-height: 400px;
  }

  .head_carousel_item3 {
    padding: 150px 50px;
    min-height: 400px;
  }

  .head_carousel_item1_text {
    background: rgba(255, 255, 255, 0.277);
    padding: 50px 50px 50px 50px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
  }

  .bold_text {
    font-weight: 700;
    color: #01A1DD;
    text-decoration: 3px solid #EF3634 underline;
    font-size: 45px;
  }

}


/*============================================================================= header css end      ==========================================================================*/

#about-stp-autoparts {
  padding: 20px 8%;
}

#about-stp-autoparts h1 {
  color: #055AAB;
  font-weight: 700;
}




/*============================================================================== about-stp-autoparts css end =============================================================================*/

#quality_part {
  width: 100%;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.wheel {
  position: absolute;
  z-index: 2;
  float: right;
  right: 0%;
}

.wheel img {
  position: relative;
  margin-top: -50px;
}

.down-wheel {
  position: absolute;
  z-index: 1;
  left: 0%;
  bottom: 0%;
}

.down-wheel-2 {
  position: absolute;
  margin-top: -100px;
  z-index: 0;
  left: 0;
}

.quality-head {
  display: flex;
  justify-content: space-between;
}

.quality-main-box {
  z-index: 3;
  width: 90%;
  color: white;
  left: 5%;

  border-radius: 40px;
  position: relative;
}

.quality-child-box {
  padding: 40px 30px 20px 30px !important;
  position: relative;
  color: white;
  background: #1E51A2;
}

.quality-child-box:hover {
  transform: translateY(-10%);
  background: #199ED9;
  border-radius: 40px;
}

.quality-child-box:hover .quality-head {
  flex-direction: column;
}

.quality-child-box:hover .quality-img {
  text-align: center;
  order: 0 !important;
}

.quality-child-box:hover .quality-text {
  text-align: center;
  order: 1 !important;
}

.child-border {
  border-left: 2px solid white;
}

.quality-text {
  order: 0;
}

.quality-img {
  order: 1;
}

.quality-img img {
  width: 80% !important;
}

.rotate_animation {
  animation-name: rotate;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}


/*============================================================================== quality_part css end ======================================================*/


#about {
  width: 100%;
  background-image: url(images/about-back.jpg);
  padding: 70px 10%;
  background-position: center center;
  background-size: cover;
}

.ab-heading {
  position: absolute;
  -webkit-text-stroke: 1px white;
  color: transparent;
  font-weight: 700;
  font-size: 60px;
  opacity: 0.4;
  right: 22%;
}

.ab-img {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.386);
  border: 2px solid white;
}

.ab-img img {
  width: 100%;
}

.ab-text {
  color: white;
  text-align: left;
  padding: 20px 50px !important;
}

@media (max-width:768px) {
  .ab-text {
    color: white;
    text-align: left;
    padding: 20px 0px !important;
  }
}

.ab-text h1 {
  font-weight: bold;
}

.about-btn {
  background:#E80131;
  border: none;
  padding:10px 25px;
  float: right;
}

.about-btn a {
  color: white;
  font-weight: 600;
  /* padding-bottom: 1px; */
  text-decoration:none;
}

.timeline-btn {
  background:#E80131;
  border: none;
  padding:10px 25px;
  float: right;
  color: white !important;
  font-weight: 700;
  font-size: 1rem;
}

/*============================================================================ about css end  ======================================================*/

#history {
  width: 100%;
}


.history_heading {margin: 0;
                  padding:20px 0px;
                  font-weight:700;
                  width:100%;
                  color: #055AAB;
                  text-align: center;
                  background: #E6E4E5;
}

.history {
  padding: 40px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E6E4E5;
  flex-direction: column;
}


.timeline {
  width: 100%;
  background-color: #fff;
}

.timeline .swiper-container {
  height: 600px;
  width: 100%;
  position: relative;
}

.timeline .swiper-wrapper {
  transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}

.timeline .swiper-slide {
  position: relative;
  color: black;
  align-items: center;
  display: flex;

  overflow: hidden;
  background: #E6E4E5;
}

.timeline .swiper-slide::after {
  /* content: ""; */
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
  border-radius: 100%;
}

.timeline .swiper-slide-content {
  position: absolute;
  text-align: center;
  width: 80%;
  max-width: 310px;
  right: 50%;
  top: 13%;
  transform: translate(50%, 0);
  font-size: 12px;
  z-index: 2;
}

.timeline .swiper-slide .timeline-year {
  display: block;
  font-style: italic;
  font-size: 25px;
  margin-bottom: 50px;
  transform: translate3d(20px, 0, 0);
  color: #1E51A2;
  font-weight: 300;
  opacity: 0;
  transition: 0.2s ease 0.4s;
}


.timeline .swiper-slide .timeline-title {
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 30px;
  opacity: 0;
  color: #EE3240;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.5s;
}

.timeline .swiper-slide .timeline-text {
  line-height: 1.5;
  opacity: 0;
  font-size: 18px;
  transform: translate3d(20px, 0, 0);
  transition: 0.2s ease 0.6s;
}

.timeline .swiper-slide-active .timeline-year {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.6s;
}

.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.7s;
}

.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 0.4s ease 1.8s;
}

.timeline .swiper-pagination {
  right: 15% !important;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}

.timeline .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: rgba(0, 0, 0, 0.2);
}

.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  color: #01A1DD;
  margin: 15px 0 !important;
  position: relative;
}

.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32.5px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #1F50A3;
  transform: scale(0);
  transition: 0.2s;
}

.timeline .swiper-pagination-bullet-active {
  color: #1F50A3;
  font-weight: 700;
}

.timeline .swiper-pagination-bullet-active::before {
  transform: scale(1);
}

.timeline .swiper-button-next,
.timeline .swiper-button-prev {
  display: none;
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: 0.2s;
}

@media (max-width:660px) {

  .timeline .swiper-button-next,
  .timeline .swiper-button-prev {
    display: block;
  }

}

.timeline .swiper-button-prev {
  left: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}

.timeline .swiper-button-prev:hover {
  transform: translateX(-3px);
}

.timeline .swiper-button-next {
  right: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}

.timeline .swiper-button-next:hover {
  transform: translateX(3px);
}

.timeline .swiper-slide::after {
  right: -30%;
  bottom: -8%;
  width: 240px;
  height: 50%;
  box-shadow: -230px 0 150px 50vw rgba(0, 0, 0, 0.7);
}

.timeline .swiper-slide-content {
  right: 30%;
  top: 50%;
  transform: translateY(-50%);
  width: 310px;
  font-size: 11px;
  text-align: right;
}

.timeline .swiper-slide .timeline-year {
  margin-bottom: 0;
  font-size: 32px;
}

.timeline .swiper-slide .timeline-title {
  font-size: 46px;
  margin: 0;
}

.timeline .swiper-pagination {
  display: flex;
}

.timeline .swiper-button-prev {
  top: 15%;
  left: auto;
  right: 15%;
  transform: rotate(90deg) translate(0, 10px);
}

.timeline .swiper-button-prev:hover {
  transform: rotate(90deg) translate(-3px, 10px);
}

.timeline .swiper-button-next {
  top: auto;
  bottom: 15%;
  right: 15%;
  transform: rotate(90deg) translate(0, 10px);
}

.timeline .swiper-button-next:hover {
  transform: rotate(90deg) translate(3px, 10px);
}


@media screen and (min-width: 1024px) {
  .timeline .swiper-slide::after {
    right: -20%;
    bottom: -12%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
  }

  .timeline .swiper-slide-content {
    right: 25%;
  }
}

/*===================================================================================== history css end ================================================================*/

#product-heading {
  background: #E3E4E4;
  padding: 20px 8%;
  margin: 8px 0px 0px 0px;
  /* text-align: center; */
}

#product-heading h1 {
  color: #01A1DD;
  font-weight: 900;
  font-size: 5vw;
}

.product-heading-box {
  padding: 10px 10px 10px 10px;
}

.product-heading-box img {
  width: 100%;
}

.product-heading-box h2 {
  color: #01A1DD;
  font-weight: 700;
  margin-top: 10px;
}

.product-heading-box p {
  text-align: justify;
}

.product-heading-box button {
  border: none;
  padding: 10px 25px 10px 25px;
  background: #E80131;
  /* border-bottom: 3px solid red; */
  /* background: transparent; */
  font-weight: 700;
}

.product-heading-box button a {
  color: white;
  text-decoration: none;
}

@media (max-width:760px) {

  #product-heading h1 {
    font-size: 7vw;
  }

}


/*========================================================================================= product-heading css end ====================================================================*/

#who-we-are {
  padding: 0px 0px 20px 0px !important;
  background:#01A1DD;
  margin-top:0px !important;}

.who-we-hr1 {
  padding: 6px;
  opacity: 1;
  margin: 0;
  border:none;
  background:#FF0000;}

.who-we-hr2 {
  padding:4px;
  opacity: 1;
  border:none;
  margin: 0px 0px 20px 0px;
  background:white;
}
.who-we-are-content {
  padding: 0px 8%;
}

.who-we-are-video {
  background: #CDCDCF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-we-are-text {
  padding: 20px 40px !important;
}

@media (max-width:768px) {
  .who-we-are-text {
    padding: 20px 0px !important;
  }
}

.who-we-are-text p {
  color: #03275A;
  font-weight:500;
  text-align: justify;
}

.who-we-are-text h1 {
  font-weight: 700;
  color: white;
}

.who-we-are-text button {
  background:#E80131;
  border: none;
  padding:10px 25px;
  font-weight: 700;
  float: right;
  border-bottom: 3px solid #FF0000;
}


.who-we-are-text button a {
  text-decoration: none;
  color:white;
}

#who-we-are-numbers {
  background: #D9D9D9;
  padding: 20px 5%;
 }

.grid-container {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
}

.grid-item {
  padding:10px;
  text-align: center;
}

.grid-item .item .count {
  color: #055AAB;
  margin-bottom: 5px;
  font-size: 40px;
}
.grid-item .item h3 {
  color: #055AAB;
  text-transform: capitalize;
}

.grid-item .item2 .countfast {
  color: #055AAB;
  margin-bottom: 5px;
  font-size: 40px;
}

.grid-item .item2 h3 {
  color: #055AAB;
  text-transform: capitalize;
}

#counter{text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e6e6e7;
        padding: 40px 0px;
        width: 100%;
      }

#counter .item-border {
  text-align: center;
  border-left: 2px solid black;
}

#counter .item-border img {
  width:100%;
}






/*============================================================================================ who-we-are css end ========================================================================*/

#stp-autopart-quality {
  background: #1E51A2;
  text-align: center;
  padding: 15px 0px 30px 0px !important;
  color: white;
}

#stp-autopart-quality h1 {
  font-weight: 700;
  font-size: 3.5rem;
}

#stp-autopart-quality2 {
  background: #D9D9D9;
  text-align: center;
  padding: 15px 0px 30px 0px !important;
  color: #1E51A2;
}

#stp-autopart-quality2 h1 {
  font-weight: 700;
  font-size:2rem !important;
  margin:5px !important;}

.carousel-container {
  --column-count: 3;
  --gap: 20px;
  --scroll-speed: 20s;
  --image-aspect-ratio: 1/1;
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  padding-bottom: 0px;
  --image-width: calc(100% / var(--column-count));
  --carousel-width: calc(var(--image-width) * var(--slide-count));
}

@media (min-width: 700px) {
  .carousel-container {
    --column-count:5;
  }
  
}

.carousel-container[data-slide-count="1"] {
  --slide-count: 1;
}

.carousel-container[data-slide-count="2"] {
  --slide-count: 2;
}

.carousel-container[data-slide-count="3"] {
  --slide-count: 3;
}

.carousel-container[data-slide-count="4"] {
  --slide-count: 4;
}

.carousel-container[data-slide-count="5"] {
  --slide-count: 5;
}

.carousel-container[data-slide-count="6"] {
  --slide-count: 6;
}

.carousel-container[data-slide-count="7"] {
  --slide-count: 7;
}

.carousel-container[data-slide-count="8"] {
  --slide-count: 8;
}

.carousel-container[data-slide-count="9"] {
  --slide-count: 9;
}

.carousel-container[data-slide-count="10"] {
  --slide-count: 10;
}

.carousel-container[data-slide-count="11"] {
  --slide-count: 11;
}

.carousel-container[data-slide-count="12"] {
  --slide-count: 12;
}

.carousel-container[data-slide-count="13"] {
  --slide-count: 13;
}

.carousel-container[data-slide-count="14"] {
  --slide-count: 14;
}

.carousel-container[data-slide-count="15"] {
  --slide-count: 15;
}

.carousel-container[data-slide-count="16"] {
  --slide-count: 16;
}

.carousel-container[data-slide-count="17"] {
  --slide-count: 17;
}

.carousel-container[data-slide-count="18"] {
  --slide-count: 18;
}

.carousel-container[data-slide-count="19"] {
  --slide-count: 19;
}

.carousel-container[data-slide-count="20"] {
  --slide-count: 20;
}

.carousel-container .carousel {
  display: flex;
  animation: scroll var(--scroll-speed) linear infinite;
}

.carousel-container .carousel:hover {
  animation-play-state: paused;
}

.carousel-container .carousel .logo {
  flex: 0 0 auto;
  width: calc(var(--image-width) - var(--gap));
}

.logo h4  {font-size:1rem !important;}

.carousel-container .carousel .logo+.logo {
  margin-left: var(--gap);
}

.carousel-container .carousel .logo:hover img {
  transform: scale(1.1);
}

.carousel-container .carousel .logo img {
  aspect-ratio: var(--image-aspect-ratio);
  width: 50%;
  object-fit: contain;
  transition: transform 0.2s ease-in-out;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * var(--carousel-width)));
  }
}

/*======================================================================================================== stp-autopart-quality css end =============================================================================*/

#our-collabration {
  padding: 60px 5% 20px 5%;
  background: #D9D9D9;
}

.collabration-contury table {
  display: grid !important;
  flex-direction: column;
  margin-top: 50px;
  color: black;
}

.collabration-contury h1 {
  font-weight: 900 !important;
  font-size: 4rem !important;
  position: absolute;
  margin-top: -40px;
}

.collabration-heading {
  position: absolute;
  color: transparent;
  margin-top: -46px;
  left:35%;
  font-size: 4rem !important;
  -webkit-text-stroke: 3px  rgba(0, 0, 0, 0.604);
  /* background: black; */
  opacity: 0.7;
}

@media (max-width:500px) {
  #our-collabration {
    padding: 50px 3%  20px 3%!important;
  }
  .collabration-heading {
    position: absolute;
    left:10px;
    margin-top: -35px;
    color: transparent;
    font-size: 2.5rem !important;
  }

  .map-logo {
    width:100px;
    right:10px !important;}
}

.collabration-contury table td {
  margin-top: 15px !important;
  font-size: 1.5rem;
  padding: 15px;
}

.map-logo {
  position: absolute;
  float: right;
  right: 50px;
}

.stp-map {
  width: 100%;
}

/*============================================================================================================== our-collabration css end ================================================================================*/


/* #lubricants         {background-image:url(images/lubricants-back.jpg);
                     width:100%;
                     background-size:cover;
                     padding:50px 10% 30px 10%;}

.product-heading    {background:#1e51a269;
                     padding:5px 40px;
                     border-radius:20px;
                     float:right;
                     color:white;
                     text-align:center;
                     font-weight:800;}

.lubricants-heading  {position: absolute;
                        -webkit-text-stroke: 1px white;
                        color:transparent;
                        font-weight:700;
                        font-size:80px;
                        opacity:0.4;}

.lubricants-content     {width:100%;
                         padding-top:40px;}

.lubricants-main-img-box    {padding:60px;}

.lubricants-img-box     {background:black;
                         border:2px solid white;
                         padding:15px;
                         color: #01A1DD;
                         text-align: center;
                         width:80%;
                         margin-left:15%;}

.lubricants-img-box img     {width:80%;
                            }

@media (max-width:760px) {
    .lubricants-img-box     {width:100%;
                            margin-left:0%;}

.lubricants-img-box img     {width:80%;
           }

}

.lubricants-main-text-box   {background:#54555A;
                             border-top:4px solid #199ED9;
                             padding:15px 0px 0px 15px;
                             color:white;}

.lubricants-inner-text-box  {background:white;
                             padding:10px;
                             color:black;
                             }

#filters                    {background-image:url(images/filters-back.jpg);
                             background-size:cover;
                             width:100%;
                             padding:40px 10%;}

.filters-heading            {position: absolute;
                             -webkit-text-stroke: 1px white;
                             color:transparent;
                             font-weight:700;
                             font-size:80px;
                             opacity:0.4;
                             right:15%;} */

/*==================================================================================== product css end ================================================================*/

/*============================================================================= about_energizer css start ==================================================================*/

#about_energizer      {width:100%;
                       background:#1E51A1;
                       padding:35px 5%;
                       /* display:grid;
                       grid-template-columns: 1fr 2fr;
                       justify-items: stretch;
                       align-items: stretch; */
                      }
.energizer_img            {background-image:url(images/brandhistory-image.jpg);
                           background-size:cover;
                           background-position:center center; }


.energizer_text         {padding:10px 3% !important;
                         background:white;}

.energizer_text h1        {color:#199ED9;}

/*======================================================================= about_energizer css end ============================================================================*/

#footer_parallex {
  position: relative;
  overflow: hidden;
  z-index:-100 !important;
  min-height: 650px;
}

#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-size: cover;
  filter: brightness(0.6); 
}

#footer_parallex:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5);  */
  z-index: 1;
}

/*========================================================================================== footer_parallex css end ======================================================*/

footer {
  background-image: url(images/footer-background.png);
  background-size: cover;
  margin-top: -150px;
  color: white;
  z-index: 9999 !important;
  padding: 140px 0% 30px 0%;
}

/* .foot_box table tr          {padding:5px;} */
.foot_box table td {
  padding: 8px;
  text-align: left;
  width: auto;
}

.foot_box h2 {
  text-decoration: underline 2px solid #EE3240;
}

.terms {
  display: flex;
  justify-content: space-between;
}

.foot-box-p {
  padding:50px !important;
}

@media (max-width:760px) {
  footer {
    margin-top: -150px;
    padding: 100px 0% 30px 0%;
  }

  .foot-box-p {
    padding:6px 5% !important;
  }
  

}

@media (max-width:460px) {

  .foot_box {
    margin-top: 30px !important;
  }
}

.footer-links {
  padding: 0px 5% 0px 5%;
  text-align: left;
}

.footer-links h2 {
  color: white;
  font-weight: 700;
}

.footer-links a {
  color: rgb(220, 220, 220);
  text-decoration: none;
}

.foot_box3 {
  display: flex;
  flex-direction: column;
  row-gap: 1px;
}

/* .foot_box3 a       {padding-top:5px !important;} */

.foot_box3 a:hover {
  text-decoration: underline 2px wavy #F33C4E;
}

footer hr {
  width: 100%;
  color: white;
  height: 4px;
  opacity: 1;
}

.copy-right {
  /* display:flex; */
  padding: 0px 5% 0px 5%;
  /* flex-direction:row; */
  justify-content: space-between;
}

.copy-right h5 {
  color: white;
  font-weight: 400;
}

.copy-right a {
  color: white;
  text-decoration: none;
}

.rotate_animation {
  animation-name: rotate;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/*===================================================================================== home page css end ===============================================================================================*/

#history_header {
  background-image: url(images/history_header.jpg);
  display: flex;
  flex-direction: column;
  height:100vh;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center center;
}

@media (max-width:760px) {

  #history_header {
    background-size: cover;
    background-position: center;
  }

}

@media (max-width:660px) {

  #history_header {
    margin-top:100px;
    height:50vh;
  }

}

.page_box img {
  max-height: 400px;
  width: 100%;
}

.page_box {
  padding: 20px 5%;
}

.history_img_box {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.history_text_box {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
}

.r-circle {
  padding-left: 0px;
  max-width: 33.33%;
  position: relative;
  align-items: center;
  justify-content: center;

}

.ab_circle {
  display: flex;
  padding: 20px;
  overflow: hidden;
}


#about_detail {
  background: #01A1DD;
  padding: 40px 5%;
}


/*r-circle*/
.gallery {
  --g: 8px;
  /* the gap */
  --s: 400px;
  /* the size */

  display: grid;
  border-radius: 50%;
}

.gallery>img {
  grid-area: 1/1;
  max-width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  transform: translate(var(--_x, 0), var(--_y, 0));
  cursor: pointer;
  z-index: 0;
  transition: .3s, z-index 0s .3s;
}

.gallery img:hover {
  --_i: 1;
  z-index: 1;
  transition: transform .2s, clip-path .3s .2s, z-index 0s;
}

.gallery:hover img {
  transform: translate(0, 0);
}

.gallery>img:nth-child(1) {
  clip-path: polygon(50% 50%, calc(50%*var(--_i, 0)) calc(120%*var(--_i, 0)), 0 calc(100%*var(--_i, 0)), 0 0, 100% 0, 100% calc(100%*var(--_i, 0)), calc(100% - 50%*var(--_i, 0)) calc(120%*var(--_i, 0)));
  --_y: calc(-1*var(--g))
}

.gallery>img:nth-child(2) {
  clip-path: polygon(50% 50%, calc(100% - 120%*var(--_i, 0)) calc(50%*var(--_i, 0)), calc(100% - 100%*var(--_i, 0)) 0, 100% 0, 100% 100%, calc(100% - 100%*var(--_i, 0)) 100%, calc(100% - 120%*var(--_i, 0)) calc(100% - 50%*var(--_i, 0)));
  --_x: var(--g)
}

.gallery>img:nth-child(3) {
  clip-path: polygon(50% 50%, calc(100% - 50%*var(--_i, 0)) calc(100% - 120%*var(--_i, 0)), 100% calc(100% - 120%*var(--_i, 0)), 100% 100%, 0 100%, 0 calc(100% - 100%*var(--_i, 0)), calc(50%*var(--_i, 0)) calc(100% - 120%*var(--_i, 0)));
  --_y: var(--g)
}

.gallery>img:nth-child(4) {
  clip-path: polygon(50% 50%, calc(120%*var(--_i, 0)) calc(50%*var(--_i, 0)), calc(100%*var(--_i, 0)) 0, 0 0, 0 100%, calc(100%*var(--_i, 0)) 100%, calc(120%*var(--_i, 0)) calc(100% - 50%*var(--_i, 0)));
  --_x: calc(-1*var(--g))
}

.r-circle {
  padding-left: 30px;
  max-width: 33.33%;
  position: relative;
  align-items: center;
  justify-content: center;

}

@media (max-width:990px) {
  .r-circle {
    padding-left: 0px;
  }
}

.ab_circle {
  display: flex;
}

#about_detail hr {
  padding: 1px;
  opacity: 1;
  background: #EF3634;
}

.ab_history {
  background-image: url(images/ab_history.jpg);
}

.ab_racing {
  background-image: url(images/ab_racing.jpg);
}

.bt_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 50px !important;
  color: white;
  background-size: cover;
  background-position: center;
  min-height: 300px;
}



/*================================================================================================================================================ history page css end ============================================================================================================================*/

#about-header {
  background-image: url(images/about-banner-new.jpg);
  background-size: cover;
  padding: 20px 10%;
  margin-top:15vh !important;
  height:85vh;
  display: flex;
  align-items: end;
  z-index: 33;
  position: relative;
  background-position: bottom center;
}

@media (max-width:660px) {
  #about-header {
   height:50vh;
    }
}

#about-header h1 {
  color: white;
  font-weight: 900;
  font-size: 4.5rem;
  border-bottom: 5px solid red;
}

#career-header {
  background-image: url(images/Career-banner.jpg);
  background-size: cover;
  padding: 20px 10%;
  margin-top:15vh !important;
  height:85vh;
  display: flex;
  align-items: end;
  z-index: 33;
  position: relative;
  background-position: bottom center;
}

@media (max-width:660px) {
  #career-header {
   height:50vh;
    }
}

#career-header h1 {
  color: white;
  font-weight: 900;
  font-size: 4.5rem;
  border-bottom: 5px solid red;
}

#video-page-header {
  /* background-image: url(images/video-page-banner.jpg);
  background-size: cover; */
  background:#199ED9;
  padding: 20px 10%;
  margin-top:15vh !important;
  /* height:85vh; */
  /* display: flex; */
  align-items: end;
  z-index: 33;
  position: relative;
  /* background-position: center center; */
}

@media (max-width:660px) {
  #video-page-header {
   /* height:50vh; */
    }
}

#video-page-header h1 {
  color: white;
  font-weight: 900;
  text-decoration: underline  5px solid red;
  font-size: 4.5rem;
  /* border-bottom: 5px solid red; */
}

#image-page-header {
  /* background-image: url(images/image-page-banner.jpg);
  background-size: cover; */
  padding: 20px 10%;
  background:#199ED9;
  margin-top:15vh !important;
  /* height:85vh;
  display: flex; */
  align-items: end;
  z-index: 33;
  position: relative;
  /* background-position: center center; */
}

@media (max-width:660px) {
  #image-page-header {
   /* height:50vh; */
    }
}

#image-page-header h1 {
  color: white;
  width:auto;
  font-weight: 900;
  font-size: 4.5rem;
  text-decoration: underline  5px solid red;
  /* border-bottom: 5px solid red; */
}

#distributorship-header {
  background-image: url(images/Distributorship-banner.jpg);
  background-size: cover;
  padding: 20px 10% 5px 10%;
  margin-top:15vh !important;
  height:85vh;
  display: flex;
  align-items: end;
  z-index: 33;
  position: relative;
  background-position: bottom center;
}

@media (max-width:660px) {
  #distributorship-header {
   height:50vh;
    }
}

#distributorship-header h1 {
  color: white;
  font-weight: 900;
  font-size: 4.5rem;
  margin-bottom:0px;
  border-bottom: 5px solid red;
}


#lubricants-header {
  background-image: url(images/lubricants_header.jpg);
  background-size: cover;
  margin-top:15vh !important;
  height:85vh;
  padding: 10px 10%;
  display: flex;
  align-items: end;
  z-index: 33;
  position: relative;
  background-position: bottom center;
}

#lubricants-header h1 {
  color: white;
  font-weight: 900;
  font-size: 4.5rem;
  border-bottom: 5px solid red;
}

@media (max-width:660px) {
  #lubricants-header {
   height:50vh;
    }
}


#contact-header {
  background-image: url(images/contact-us_header2.jpg);
  margin-top:15vh !important;
  height:85vh;
  background-size: cover;
  padding: 10px 10%;
  display: flex;
  align-items: end;
  z-index: 33;
  position: relative;
  background-position: bottom center;
}

#contact-header h1 {
  color: white;
  font-weight: 900;
  font-size: 4.5rem;
  border-bottom: 5px solid red;
}

.form-map-box {padding:10px 5% 20px 5% !important;}

@media (max-width:660px) {
  #contact-header {
   height:50vh;
    }
}


#about-contant {
  background: white;
  width: 100%;
  overflow: hidden;
  padding: 40px 10% 0px 10%;
}

.about-stp_assurance {
  background: #199ED9;
  border-radius: 50px;
  position: relative;
  z-index: 9;
}

.stp_assurance-img {
  padding: 20px 50px !important;
  display: flex;
  /* flex-direction:column; */
  align-items: center;
  /* justify-content:center; */
}
.stp_assurance-img-content {display: flex;
                            flex-direction: column;
                            justify-content: center;
                            align-items: center !important;
                            padding:20px !important;
                            color:white;}

.stp_assurance-img-content h2   { text-align: center;}

.stp_assurance-img img {
  width: 100%;
}

.assurance-img {
  border-right: 3px solid white;
  padding-right: 4px;
}

.stp-img {
  margin-left: 4px;
}

.stp_assurance-text {
  border-radius: 50px;
  box-shadow: 0px 0px 8px 7px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 0px 9.3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 9.3px 6px rgba(0, 0, 0, 0.16);
  background: #199ED9;
  color: white;
  display: flex;
  padding: 40px 4% !important;
  justify-content: center;
  flex-direction: column;
}

.about-assurance-details {
  padding: 40px 20px;
  box-shadow: 0px 0px 8px 7px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 0px 9.3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 9.3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 60px;
  position: relative;
  /* z-index: 100; */
}

.assurance-details-text {
  background-image:url(images/arrow_back.png);
  background-size:contain;
  background-repeat: no-repeat;
  text-align: justify;
}

.assurance-details-text h1 {
  color: #01A1DD;
  font-weight: 700;
  padding-bottom: 5px;
  text-decoration: underline 4px #EF3634;
}

.assurance-details-img {
  margin-right: -150px;
  margin-top:30px;
}

@media (max-width:760px) {

  #about-contant {
    padding: 40px 5% 0px 5%;
  }
  .assurance-details-img {
    margin-right: 0px;
  }
  .about-assurance-details {
    padding: 10px 20px !important;}

}

.assurance-details-img img {
  width: 100%;
}

.assurance-details-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}



.About-countries {
  display: flex !important;
  flex-direction: row;
  justify-content: space-between;
}

@media (max-width:600px) {

  .stp_assurance-text {
    padding: 20px 40px !important;
  }

  .About-countries {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
  }
}


.about-stp_assurance {
  overflow: hidden;
}

/* .grid-container {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
} */

.stp_im {
  /* flex:1px; 
  margin: 1px;  */
  margin-top: 5px;
  text-align: center;
}

.stp_im img {
  width: 90% !important;
  margin-bottom: 5px;
  margin-left: 5%;
}

/*====================================================== product css end ===========================================================*/

#HYDRAULIC_oil {
  width: 100%;
  padding: 20px 5%;
  background: #055AAB;
}

.oil_heading {
  text-align: right;
  color: white;
  text-decoration: underline 2px solid red;
}

#HYDRAULIC_oil table {
  border: 2px solid white;
  width: 100%;
}

#HYDRAULIC_oil table td {
  padding: 8px;
  width: 33%;
  text-align: center;
}

.oil_tr_1 {
  border-bottom: 2px solid white;
}

.left_border {
  border-right: 2px solid #EF3634;
}

.btn_box {
  display: flex;
  margin-top: 20px;
}

.red_button {
  padding: 10px 20px;
  min-width: 200px;
  width: 30%;
  margin: auto;
  background: #EF3634;
  border: none;
  border-radius: 200px 0px 200px 0px;
}

.red_button a {
  text-decoration: none;
  color: white;
  font-weight: 700
}


#contact-text {
  padding: 50px 8%;
}
.contact-img-box    {width:auto;}
.contact-img-box img {width:100%;}

@media (max-width:760px) {

  #contact-text {
    padding: 5px 5%;
  }
  .contact-text-box {
    padding:0px 0px !important;
}

.contact-form form {
  border-radius:25px !important;
  padding:5px 20px 20px 20px !important;
}
  
}

.contact-form form {
  box-shadow: 0px 0px 8px 7px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 0px 9.3px 6px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 0px 9.3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 40px 40px;
}

.contact-form form h1 {
  text-align: center;
  padding-bottom: 20px;
  font-weight: 700;
}

.contact-form form input,
textarea {
  box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  border: 0px;
}

.contact-form form button {
  padding: 8px 40px;
  background: #D9D9D9;
  color: #EF3634;
  border: none;
  /* float:right; */
  font-weight: 600;
  margin-top: 20px;
  border-radius: 15px;
}

.contact-text-box {
  padding: 20px 40px !important;
}

.contact-text-box h1 {
  width:auto;
  color: #01A1DD;
  text-decoration: underline 3px solid #FF0000;
  /* border-bottom:3px solid #FF0000 ; */
}

.contact-text-box p {
  margin-top: 20px;
}

#contact-address {
  padding: 20px 8%;
}

.contact-address-box {
  background: #01A1DD;
  border-radius: 40px;
}

.address-box {
  padding: 20px 25px !important;
  text-align: center;
  border-radius: 40px;
}

.address-box:hover {
  box-shadow: 0px 2px 6px 3px rgba(0, 0, 0, 0.21);
}

.address-box h1 {
  color: #EF3634;
  font-weight: 600;
}

.address-box a  {color:black;
                 text-decoration:none;}

@media (max-width:760px) {
  .address-box {
    padding: 20px 20px !important;
    text-align: center;
    border-radius: 40px;
  }
}

/*=============================================================================== history section css start  ===========================================================================================*/
/*===================================================================================== career css start ===============================================================================================*/

#career-content {
  padding: 30px 8%;
}

@media (max-width:760px) {
  #career-content {
    padding: 10px 3%;
  }

  .distributorship-form{
    border-radius:20px !important;
  }

  .career-form {
    border-radius:20px !important;
    padding:5px 4% 20px 4%;
  }

  .career-form h1 {padding:0px !important;}
}

.career-form {
  border-radius: 40px;
  box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, .1);
  padding: 20px 4%;
}

.carrer-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.career-form h1 {
  text-align: center;
  color: #01A1DD;
  padding: 20px;
}

.career-form input,
textarea,
select {
  box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  border: 0px;
  padding: 10px;
}

.career-form button {
  padding: 5px 20px;
  min-width: 150px;
  margin-top: 20px;
  border: none;
  font-weight: 600;
  border-radius: 10px;
  background: #D9D9D9;
  color: #EE3240;
}


.distributorship-form {
  border-radius: 40px;
  box-shadow: 0px 0px 7px 3px rgba(0, 0, 0, .1);
  padding: 20px 4%;
}

.distributorship-form h1 {
  text-align: center;
  color: #01A1DD;
  padding-bottom: 20px;
}

.distributorship-form input {
  box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  -webkit-box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.21);
  border: 0px;
  padding: 10px;
}

.distributorship-form button {
  padding: 5px 20px;
  min-width: 150px;
  margin-top: 20px;
  border: none;
  font-weight: 600;
  border-radius: 10px;
  background: #D9D9D9;
  color: #EE3240;
}

.distributorship-note {
  width: 100%;
  padding: 20px;
  background: #F33C4E;
  color: white;
  font-weight: 600;
  border-radius: 15px;
  margin-top: 40px;
}


/*================================================================================ career-content css end =============================================================================*/

#filters-header {
  background-image: url(images/stp-filters-banners.jpg);
  margin-top:15vh !important;
  height:85vh;
  background-size: cover;
  padding: 70px 10%;
  display: flex;
  align-items: end;
  z-index: 33;
  position: relative;
  background-position: bottom center;
}

#filters-header h1 {
  color: white;
  font-weight: 900;
  font-size: 4.5rem;
  border-bottom: 5px solid red;
}

@media (max-width:660px) {
  #filters-header {
   height:50vh;
    }
}

#filter_content {
  padding: 30px 8%;
}

#batteries-header {
  background-image: url(images/battery-banner.jpg);
  margin-top:15vh !important;
  height:85vh;
  background-size: cover;
  padding: 70px 10%;
  display: flex;
  align-items: end;
  z-index: 33;
  position: relative;
  background-position: bottom center;
}

#batteries-header h1 {
  color: white;
  font-weight: 900;
  font-size: 4.5rem;
  border-bottom: 5px solid red;
}

@media (max-width:660px) {
  #batteries-header {
   height:50vh;
    }
}

.type-of-filters a {
  width: 100%;
  color: black;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 20px;
}

.type-of-filters:hover {
  box-shadow: 0px 0px 10px black;
}

.choose-filters {
  margin-top: 20px !important;
}

.filters-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.filters-text h2 {
  color: #055AAB;
  font-weight: 700;
}

.bg-gray {
  background: #E3E4E4;
}

.filters-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filters-image img {
  width:100%;
}

.filters-boxs {
  padding: 40px 70px !important;
}



/*======================================================================================================================================================== lubricants page css start ==============================================================================================================*/


.lubricants-main-icons-box {
  width: 100%;
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* padding: 20px 0px; */
}

.lubricants-icons-box a {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center !important;
  align-items: center !important;
  text-decoration: none;
}

.lubricants-icons-box:hover {
  box-shadow: 0px 0px 10px black;
}

.lubricants-icons-box h5 {
  text-align: center;
  color: black;
  text-decoration: none;
}

.USE_STP_LUBRICANTS {
  width: 100%;
  padding: 50px 8%;
}

.use-stp-img {
  overflow: hidden;
}


.use-stp-img img {
  width: 100%;
  transition: 0.4s ease-in-out;
}

.use-stp-img img:hover {
  transform: scale(1.1);
}

.use-stp-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px !important;
  align-items: self-start;
}

.use-stp-text h2 {
  color: #055AAB;
  font-weight: 700;
}

.use-stp-text button {
  padding: 8px 55px;
  border-radius: 15px;
  background: #D9D9D9;
  border: none;
  transition: 0.5s ease-in-out;
}

.use-stp-text button:hover {
  transform: scale(0.9);
}

.use-stp-text button a {
  color: #055AAB;
  text-decoration: none;
  font-weight: 700;
}




/*======================================================================================================================================================== lubricants page css end ==============================================================================================================*/


/*======================================================================================================================================================== filter-pages-content css start ================================================================================================*/

#filter-pages-content {
  padding: 40px 8%;
}

#filter-pages-content h1 {
  font-weight: 700;
  color: #055AAB;
  text-decoration: 3px solid underline #EE3240;
}

.filters-product-box {
  background: #D9D9D9;
  padding: 20px !important;
  border: 4px solid white;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

.filters-product-box img {
  margin: 0 auto;
}

.filters-product-box img:hover {
  transform: rotate(10deg);
}

.filters-product-box button {
  border-bottom: 2px solid #EF3634;
  color: #055AAB;
  font-weight: 700;
  float: right;
  width: auto;
  padding: 0px 0px 0px 4px;
  transition: 0.5s ease-in-out;
}

.filters-product-box button:hover {
  border: 3px solid #EF3634;
  padding: 5px 20px 5px 20px;
  color: #055AAB;
}


/*======================================================================================================================================================== filter-pages-content css end ================================================================================================*/

/*======================================================================================================================================================== racing-contant css start ================================================================================================*/

#racing-header {
  background-image: url(images/about\ banner.jpg);
  /* min-height: 600px; */
  height: 100vh;
  background-size: cover;
  padding: 70px 10%;
  display: flex;
  align-items: end;
  z-index: 33;
  position: relative;
  background-position: bottom center;
}

@media (max-width:660px) {
  #racing-header {
   height:50vh;
    }
}

#racing-header h1 {
  color: white;
  font-weight: 900;
  font-size: 4.5rem;
  border-bottom: 5px solid red;
}


#racing-contant {
  padding: 40px 8%;
}

.racing-p {
  color: white;
  position: relative;
}

.gray-back {
  background: #E3E4E4;
  padding: 30px 0px 30px 20px;
  box-shadow: 0px 3px 14px 2px rgba(0, 0, 0, 0.51);
}

.gray-back h1 {
  color: #199ED9;
  font-weight: 700;
}

.blue-back {
  background: #1E51A2;
  padding: 30px 0px 30px 20px;
  color: white;
  box-shadow: 0px 3px 14px 2px rgba(0, 0, 0, 0.51);
}

.blue-back h1 {
  color: white;
  font-weight: 700;
}

.race-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.race-content {
  margin-top: 40px;
}

.race-content h1 {
  font-weight: 700;
  color: #1E51A2;
}

.race-content p {
  text-align: justify;
}


.lubi-product img {
  width: 100%;
}







/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding: 50px;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* 
.active, .dot:hover {
  background-color: #717171;
} */

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


.datea li.active {
  color: #EE3240 !important;
}


.h_100 {
  height: 75vh;
  min-height: 75vh;
  overflow-y:hidden; 
  overflow-x: hidden;
  background-color: #E6E4E5;
  position: relative;
  display: flex;
}
@media (max-width:992px) {
  .h_100 {
    height:200vh;
    min-height:200vh;
    overflow-y:hidden; 
    overflow-x: hidden;
    background-color: #E6E4E5;
    position: relative;
    display: flex;
  }
}

@media (max-width:500px) {
  .h_100 {
    height:135vh;
    min-height:135vh;
    
  }
}


/* @media (max-width:500px) {
  .h_100 {
    height:150vh;
    min-height:150vh;
    overflow-y:hidden; 
    overflow-x: hidden;
    background-color: #E6E4E5;
    position: relative;
    display: flex;
  }
} */

.h_100::-webkit-scrollbar {
  width: 5px;
}
.h_100::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
}
.h_100::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}

.imgg img{
  /*height: 500px;*/
  margin: 0px 20px 0px 0px;
  width: 100%;
}

.leftside {
  padding-left: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 999;
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
}
.rightside {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}




/* Adjusted styles for the list items */
.datea li {
  margin: 20px 0; /* Adjusted margin for better spacing */
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  list-style-type: none;
  color: #01A1DD;
}

.datea li:hover {
  color: #EE3240;
}

.timeline-title{
  font-weight: 800;
  font-size: 34px !important;
  color: #EE3240;
}
.timeline-year{
  display: block;
  font-style: italic;
  font-size: 25px !important;
  color: #1E51A2;
  font-weight: 300;
}
.timeline-text {
  line-height: 1.5 !important;
  color: black;
  font-size: 18px !important;
}
.h_101{
  width: 100vw !important;
  overflow: hidden !important;
}































/*==================================================================================== images page css start ===========================================================================================================================*/

.img-gallery{
  padding:70px 5%;
  justify-content:center;
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
}

.img-gallery img{
  width:250px;
  height:250px;
  object-fit:cover;
}

.img-gallery img:hover{ 
  transform: scale(1.5);
  transition-duration:1s;
  border-radius:5%;
  border:1px solid #03275A;
  box-shadow:1px 1px 10px #03275A;
}


/*========================================================================================== video page css start =========================================================================================*/
.video-page-content {padding:40px 5%;}

.video-container {
  width: 33%;
  /* padding: 10px; */
  background: white;
  display: inline-block;
}

@media (max-width:990px) {
  .video-container {
    width:49%;
   }
}

@media (max-width:660px) {
  .video-container {
    width:100%;
   }
}

.responsive-video {  
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.responsive-video iframe, .responsive-video video {
  position: absolute;
  width: 100%;
  height: 100%;  
}

.INVERTER-BATTERY ul {display:none !important;}

.INVERTER-BATTERY:hover ul {display: block !important;}

