/* Proxima Nova Font */
@font-face {
  font-family: 'Proxima Nova';
  font-display: swap;
  src: url('{$site_path}/pages/css/webfont/proximanova-thin-webfont.woff2') format('woff2'),
  url('{$site_path}/pages/css/webfont/proximanova-thin-webfont.woff') format('woff');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  font-display: swap;
  src: url('{$site_path}/pages/css/webfont/proximanova-light-webfont.woff2') format('woff2'),
  url('{$site_path}/pages/css/webfont/proximanova-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  font-display: swap;
  src: url('{$site_path}/pages/css/webfont/proximanova-regular-webfont.woff2') format('woff2'),
  url('{$site_path}/pages/css/webfont/proximanova-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  font-display: swap;
  src: url('{$site_path}/pages/css/webfont/proximanova-medium-500-webfont.woff2') format('woff2'),
  url('{$site_path}/pages/css/webfont/proximanova-medium-500-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  font-display: swap;
  src: url('{$site_path}/pages/css/webfont/proximanova-semibold-600-webfont.woff2') format('woff2'),
  url('{$site_path}/pages/css/webfont/proximanova-semibold-600-webfont.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  font-display: swap;
  src: url('{$site_path}/pages/css/webfont/proximanova-bold-webfont.woff2') format('woff2'),
  url('{$site_path}/pages/css/webfont/proximanova-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  font-display: swap;
  src: url('{$site_path}/pages/css/webfont/proximanova-extrabold-800-webfont.woff2') format('woff2'),
  url('{$site_path}/pages/css/webfont/proximanova-extrabold-800-webfont.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  font-display: swap;
  src: url('{$site_path}/pages/css/webfont/proximanova-black-webfont.woff2') format('woff2'),
  url('{$site_path}/pages/css/webfont/proximanova-black-webfont.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

.menu li>details>summary:active {
  color: #f01446;
  background: unset;
}

:where(.menu li:not(.menu-title, .disabled) > details > summary:not(.menu-title)):is(summary):not(.active, .btn):focus-visible {
  color: none;
  background: unset;
}

:where(.menu li:not(.menu-title, .disabled) > details > summary:not(.menu-title)):not(.active, .btn):hover {
  background: unset;
}

.menu li>:not(ul, .menu-title, details, .btn):active {
  background: unset;
}

p.footer-title {
  text-transform: none;
}

/* Customize the swiper bullets */
.swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  background-color: #f5f5f6;
  border-radius: 0;
  opacity: 1;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.swiper-pagination-bullet-active {
  background-color: #f01446;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

/* Customize the swiper navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

@media (min-width: 1100px) {

  .swiper-button-next,
  .swiper-button-prev {
    display: block !important;
    color: #f01446;
    height: auto;
    width: auto;
  }
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #525259;
}

.text-shadow-black {
  text-shadow: 2px 1px 2px black;
}

.text-shadow-white {
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
}

/* Hooper Banner Slide Inside */
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

.carousel-item.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.slide-in {
  transform: translateX(0);
}

.slide-out {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 0;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  object-fit: contain;
}