@font-face {
  font-family: "Roboto Condensed";
  src: url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Regular.woff2") format("woff2"), url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: RobotoCondensed-Bold;
  src: url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Bold.ttf");
}
@font-face {
  font-family: RobotoCondensed-Italic;
  src: url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Italic.ttf");
}
@font-face {
  font-family: RobotoCondensed-Light;
  src: url("/common/static/fonts/RobotoCondensed/RobotoCondensed-Light.ttf");
}
@font-face {
  font-family: "BebasNeue-Regular";
  src: url("/common/static/fonts/bebas-neue/BebasNeue-Regular.woff2") format("woff2"), url("/common/static/fonts/bebas-neue/BebasNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: RussoOne-Regular;
  src: url("/common/static/fonts/Russo_One/RussoOne-Regular.ttf");
}
@font-face {
  font-family: "Russo One";
  src: url("/common/static/fonts/Russo_One/RussoOne-Regular.woff2") format("woff2"), url("/common/static/fonts/Russo_One/RussoOne-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Exo2;
  src: url("/common/static/fonts/Exo_2/Exo2-VariableFont_wght.ttf");
}
@font-face {
  font-family: Comfortaa-Regular;
  src: url("/common/static/fonts/Comfortaa/Comfortaa-Regular.ttf");
}
@font-face {
  font-family: Comfortaa-Bold;
  src: url("/common/static/fonts/Comfortaa/static/Comfortaa-Bold.ttf");
}
@font-face {
  font-family: Race-sport;
  src: url("/common/static/fonts/race-sport/Race-sport.ttf");
}
@font-face {
  font-family: cross-boxed;
  src: url("/common/static/fonts/cross-boxed/cross-boxed.ttf");
}
@font-face {
  font-family: Urbanist-Bold;
  src: url("/common/static/fonts/Urbanist/Urbanist-Bold.ttf");
}
@font-face {
  font-family: Urbanist-Regular;
  src: url("/common/static/fonts/Urbanist/Urbanist-Regular.ttf");
}
@font-face {
  font-family: Urbanist-Light;
  src: url("/common/static/fonts/Urbanist/Urbanist-Light.ttf");
}
@font-face {
  font-family: Urbanist-Thin;
  src: url("/common/static/fonts/Urbanist/Urbanist-Thin.ttf");
}
@font-face {
  font-family: Axiforma-Regular;
  src: url("/common/static/fonts/Axiforma/Axiforma-Light.ttf");
}
@font-face {
  font-family: Hind-bold;
  src: url("/common/static/fonts/Hind/Hind-Bold.ttf");
}
.banner-slider {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background-color: #000000;
}
.banner-slider .slider-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}
.banner-slider .slider-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: relative;
  z-index: 1;
}
.banner-slider .slider-text {
  position: absolute;
  left: 5vw;
  right: 5vw;
  color: #fff;
  height: 100%;
  padding: 20px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.banner-slider .slider-text h2 {
  border-left: 5px solid #FFB300;
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 0;
  padding-left: 15px;
}
.banner-slider .slider-text p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  margin-top: 10px;
}
.banner-slider .slider-text .shop-now-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0);
  color: #e6e6e6;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: auto;
  max-width: 200px;
  text-decoration: none;
  border: 1px solid whitesmoke;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.banner-slider .slider-text .shop-now-btn:hover {
  background-color: #FFB300;
  color: black;
}

@keyframes slideLeftIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideLeftOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}
.slide-left-in {
  animation: slideLeftIn 0.6s ease-in-out forwards !important;
}

.slide-left-out {
  animation: slideLeftOut 0.6s ease-in-out forwards !important;
}

.slider-timer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #FFB300;
  width: 0%;
  z-index: 10;
}

@keyframes timerFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .banner-slider {
    height: 300px;
  }
  .banner-slider .slider-text h2 {
    font-size: 2rem;
  }
  .banner-slider .slider-text p {
    font-size: 1.1rem;
  }
  .banner-slider .slider-text .shop-now-btn {
    font-size: 1rem;
    width: 180px;
  }
}
@media (min-width: 1024px) {
  .banner-slider {
    height: 350px;
  }
  .banner-slider .slider-text {
    max-width: 690px;
    padding-right: 20px;
  }
  .banner-slider .slider-text h2 {
    font-size: 2.3rem;
  }
  .banner-slider .slider-text p {
    font-size: 1.3rem;
  }
  .banner-slider .slider-text .shop-now-btn {
    font-size: 1rem;
    width: 220px;
  }
}
@media (min-width: 1600px) {
  .banner-slider {
    height: 370px;
  }
  .banner-slider .slider-overlay img {
    height: 100%;
  }
  .banner-slider .slider-text h2 {
    font-size: 2.5rem;
  }
  .banner-slider .slider-text p {
    font-size: 1.44rem;
  }
}

/*# sourceMappingURL=main-banner-slider.css.map */
