@font-face {
  font-family: "GaultierDisplay";
  src: url("../fonts/gaultier-display/gaultier-display-800.woff") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GaultierMono";
  src: url("../fonts/gaultier-mono/gaultier-mono-400.woff") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "GaultierText";
  src: url("../fonts/gaultier-text/gaultier-text-400.woff") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  background: #000;
}

ul {
  list-style: none;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  overflow: hidden;
}

.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 10px;
}

.sub-container {
  max-width: 1440px;
  margin: 0 auto;
}

/*Header*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;

  .bg-white {
    background: #000 !important;
  }
}

header nav ul li a {
  position: relative;
  font-family: GaultierDisplay, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 12.75px;
  color: #fff !important;
  white-space: nowrap;
}

.navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #000;
  transition: 0.4s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover::after {
  width: 100%;
}

.navbar {
  min-height: 70px;
}

.nav-icons {
  a {
    color: #fff;
  }
}

nav .search-icon {
  display: none;
}

/*Banner*/
.hero-slider {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  min-height: 95vh;
}

.carousel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.carousel-caption {
  padding: 60px 40px;
  max-width: 360px;
  height: 540px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 999;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.caption-two {
  background: #111527;
}

.caption-three {
  background: #8CF7F9;
}

.caption-three h1 {
  color: #000;
}

.caption-three p {
  color: #000;
}

.caption-three .btn-solid {
  color: #000;
  border: 1px solid #000;
}

.carousel-caption h1 {
  font-family: GaultierDisplay, sans-serif;
  font-size: 65px;
  font-weight: 800;
  line-height: 61.75px;
}

.carousel-caption p {
  font-family: GaultierMono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
}

.btn-solid {
  font-family: GaultierDisplay, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: rgb(213, 214, 217);
  border: 1px solid #ffffff;
  padding: 10px 16px;
  width: 100%;
  text-decoration: none;
  text-align: center;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #000;
  opacity: 0.6;
  margin: 0 6px;
  border: none;
  transition: opacity 0.3s, transform 0.3s;
}

.hero-slider .carousel-indicators .active {
  opacity: 1;
  transform: scale(1.2);
  background-color: #fff;
}

.hero-slider .carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 46%;
  transform: translateX(-100%);
  margin: 0;
}

/*Collection*/

.collection-section {
  padding: 200px 0;
}

.collection-section .collection {
  padding: 0 100px;
  margin: 0 auto;
}

.collection-section .title h5 {
  color: #fff;
}

.collection-section .title h3 {
  font-size: 2.5rem;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 0.9375rem;
  color: #fff;
}

.collection-section .title p {
  max-width: 360px;
  font-family: GaultierMono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: #fff;
  text-align: left;
}

.collection-section .title h3 span {
  font-size: 4.375rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #fff;
}

.title h2,
.title h3,
.title p,
.title span {
  color: #fff !important;
  text-transform: uppercase;
}

.card-wrapper {
  position: relative;
  width: 360px;
  height: 570px;
}

.collection-section .card {
  max-width: 360px;
  background: #111527;
  height: 570px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  opacity: 1;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.collection-section .card .card-image {
  max-width: 320px;
  max-height: 310px;
}

.collection-section .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-section .card .ribbon {
  border: 2px solid white;
  display: inline-block;
  margin-left: auto;
  padding: 3px 8px;
  transform: rotate(-2deg);
  color: white;
}

.collection-section .card .ribbon span {
  font-size: 13px;
  font-weight: 800px;
  text-transform: uppercase;
  line-height: 15px;
  white-space: nowrap;
}

.collection-section .card h4 {
  font-size: 1.5625rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.collection-section .card p {
  font-size: 1.0625rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}

.collection-section .hover-card {
  max-width: 360px;
  background: #111527;
  height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.collection-section .hover-card .card-image {
  max-width: 320px;
  max-height: 310px;
}

.collection-section .hover-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-section .hover-card .ribbon span {
  text-align: center;
  font-family: "GaultierDisplay", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.25px;
  color: rgb(255, 255, 255);
}

.collection-section .hover-card h4 {
  font-size: 1.5625rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.collection-section .hover-card p {
  font-size: 1.0625rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.card-wrapper:hover .card {
  opacity: 0;
}

.card-wrapper:hover .hover-card {
  opacity: 1;
  pointer-events: auto;
}

.intensityImage {
  width: 100px;
  height: 3px;
  border: 1px solid #ffffff;
  position: relative;
}

.intensityImage img {
  width: 20px !important;
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
}

.intensity {
  color: #ffffff;
}

.card-wrapper .info {
  margin-top: 20px;
}

.card-wrapper .info span {
  color: #ffffff;
}

.card-wrapper .info button {
  padding: 4px 12px;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.card-wrapper .info button:hover {
  background: #ffffff;
  color: #000;
}

/*Slider*/

.slider .title h2 {
  font-family: GaultierDisplay, sans-serif;
  font-size: 200px;
  font-weight: 900;
  line-height: 160px;
  color: rgb(0, 0, 0);
  text-align: center;
}

.slider .title span {
  display: block;
  font-family: GaultierDisplay, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 21.25px;
  color: rgb(0, 0, 0);
  text-align: center;
}

.carousel {
  position: relative;
  margin-top: 50px;
}

.slider .carousel-item {
  min-height: 0 !important;
}

.slider .carousel-inner .product {
  width: 22%;
}

.slider .card {
  max-width: 100%;
  background: #111527;
  height: 570px;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  opacity: 1;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.slider .card .card-image {
  max-width: 100%;
  max-height: 310px;
}

.slider .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider .card .ribbon {
  border: 2px solid white;
  display: inline-block;
  margin-left: auto;
  padding: 3px 8px;
  transform: rotate(-2deg);
  color: white;
}

.slider .card .ribbon span {
  font-size: 13px;
  font-weight: 800px;
  text-transform: uppercase;
  line-height: 15px;
  white-space: nowrap;
}

.slider .card h4 {
  font-size: 1.5625rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.slider .card p {
  font-size: 1.0625rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
}

.slider .hover-card {
  max-width: 100%;
  background: #111527;
  height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  z-index: 2;
  width: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
}

.slider .hover-card .card-image {
  max-width: 100%;
  max-height: 310px;
}

.slider .hover-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slider .hover-card .ribbon span {
  text-align: center;
  font-family: "GaultierDisplay", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.25px;
  color: rgb(255, 255, 255);
}

.slider .hover-card h4 {
  font-size: 1.5625rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.slider .hover-card p {
  font-size: 1.0625rem;
  line-height: 0.95;
  font-family: GaultierDisplay, sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.slider .card-one .card {
  background: #2f373d;
}

.slider .card-one .hover-card {
  background: #2f373d;
}

.slider .card-two .card {
  background: #c6d0b1;
}

.slider .card-two .hover-card {
  background: #c6d0b1;
}

.slider .card-three .card {
  background: #87b4bf;
}

.slider .card-three .hover-card {
  background: #87b4bf;
}

.slider .card-four .card {
  background: #f2d8ca;
}

.slider .card-four .hover-card {
  background: #f2d8ca;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  z-index: 10;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background: #333;
}

.carousel-control-prev span,
.carousel-control-next span {
  font-size: 1rem;
}

/*Divine*/
.divine {
  padding: 100px 0;
}

.divine h3 {
  max-width: 300px;
  font-family: GaultierDisplay, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 38px;
  color: rgb(0, 0, 0);
}

.divine p {
  max-width: 300px;
  font-family: GaultierMono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: rgb(63, 63, 63);
}

.divine button {
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border: none;
  transition: all 0.2s;
  font-family: GaultierDisplay, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
}

.divine button:hover {
  background: transparent;
  color: #000;
}

.divine img {
  width: 100%;
}

/*Category*/
.category .title {
  position: absolute;
  left: 5%;
  bottom: 5%;
}

.category .title h2 {
  max-width: 286px;
  font-family: GaultierDisplay, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 63px;
  color: #fff;
}

.category .title button {
  padding: 10px 16px;
  background: #000;
  color: #ffffff;
  border: none;
  font-family: GaultierDisplay, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  margin-top: 12px;
}

.category .title button:hover {
  background: #ffffff;
  color: #000;
}

/*Discover*/
.discover {
  padding: 100px 120px;
}

.discover .perfume-image {
  max-width: 540px;
  max-height: 860px;
}

.discover .perfume-image img {
  width: 100%;
  height: 100%;
}

.discover .title {
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.discover .title h2 {
  font-family: GaultierDisplay, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 57px;
  color: rgb(0, 0, 0);
}

.discover .title p {
  font-family: GaultierMono, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  color: rgb(63, 63, 63);
}

.discover .title button {
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border: none;
  font-family: GaultierDisplay, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  margin-top: 12px;
}

.discover .title button:hover {
  background: #ffffff;
  color: #000;
}

.discover .item-wrapper {
  gap: 60px;
}

/*Footer*/
footer {
  padding: 50px 150px 30px 150px;
  border-top: 1px solid #383232;
}

footer .input-box h6 {
  font-family: GaultierDisplay, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: rgb(0, 0, 0);
  margin-bottom: 0;
}

footer a.text-dark {
  color: #fff !important;
}

footer h6 {
  font-family: GaultierDisplay, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: #fff;
  margin-bottom: 20px;
}

footer p {
  max-width: 240px;
  font-family: GaultierText, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.25px;
  color: #fff;
}

footer p a {
  color: #fff;
}

footer .input-box span {
  font-family: GaultierText;
  font-size: 11px;
  font-weight: 400;
  line-height: 13.75px;
  color: #fff;
}

footer .input-field {
  width: 100%;
  height: 3.125rem;
  padding: 0 1.25rem;
  font-family: GaultierDisplay, sans-serif;
  line-height: 1;
  border: 0.0625rem solid #000;
  border-radius: 0;
  --field-text-size: 0.875rem;
  font-size: var(--field-text-size);
}

footer .email::placeholder {
  color: #000;
}

footer .input-box .check-label {
  font-family: GaultierText, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 13.75px;
  color: rgb(63, 63, 63);
}

footer .input-box .check-label a {
  color: #000;
}

footer .input-box button {
  width: 100%;
  padding: 10px 16px;
  background: #fff;
  font-family: GaultierDisplay, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 17px;
  color: #000;
  border: none;
}

footer ul {
  gap: 16px;
}

footer ul li {
  font-family: GaultierText, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.25px;
  color: #fff;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #fff;
}

.footer-bottom h5 {
  font-family: GaultierMono, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.1px;
  color: #fff;
}

.footer-bottom .icon span {
  font-family: GaultierText;
  font-size: 11px;
  font-weight: 400;
  line-height: 13.75px;
  color: #fff;
}

.footer-bottom .icon span i {
  width: 15px;
  height: 15px;
}


.new-section {
  .card-wrapper {
    width: 100%;
  }

  .card {
    max-width: 100%;
  }

  .hover-card {
    max-width: 100%;
  }
}

.testimonial-section {
  padding: 40px;
  background: #000;
  /* black background */
  color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #0e0e0e;
  border-radius: 12px;
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  /* gap: 15px; */
  border: 1px solid #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid #fff;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #444;
}

.testimonial-info {
  flex: 1;
  margin-left: 10px;
}

.testimonial-info h4 {
  font-size: 16px;
  margin: 0;
  color: #fff;
}

.testimonial-info p {
  font-size: 13px;
  margin: 0;
  color: #aaa;
}

.social-icon {
  font-size: 18px;
  color: #fff;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
  margin: 0;
  padding: 10px 15px;
}


.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 15px;
  height: 50px;
  border-radius: 50%;
  width: 50px;
  cursor: pointer;
  background: #fff;
  border: 0;
  box-shadow: none;
  z-index: 999;
  color: #000;
  display: none;

  i {
    display: inline-block;
    animation: top-bottom 2s ease-out infinite;
  }
}

@keyframes top-bottom {
  0% {
    padding-bottom: 0;
  }

  50% {
    padding-bottom: 30px;
  }

  100% {
    padding-bottom: 30px;
  }
}

.max-w-1920 {
  max-width: 1920px !important;
}

.banner-section {}

.banner-slider-item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  padding: 60px;
  padding-bottom: 80px;

  img,
  video {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
  }
}

.banner-slider-item {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.banner-content-box {
  max-width: 360px;
  padding: 60px 44px;
  background: #000;
  position: relative;
  z-index: 2;

  h2 {
    font-size: 4.0625rem;
    line-height: .95;
    font-family: GaultierDisplay, sans-serif;
    text-transform: uppercase;
    margin: 0 0 .75rem;
    font-style: normal;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
  }

  p {
    font-size: .75rem;
    line-height: 1.25;
    font-family: GaultierMono, sans-serif;
    margin-top: .9375rem;
    font-weight: 400;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 40px;
  }

  a {
    display: block;
    font-size: 1.0625rem;
    font-family: GaultierDisplay, sans-serif;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
    transition: all .3s;

    &:hover {
      background: #fff;
      color: #000;
    }
  }
}

.banner-pagination {
  max-width: 360px;
  left: 60px !important;
  bottom: 30px !important;

  .swiper-pagination-bullet {
    height: 13px;
    width: 13px;

    &.swiper-pagination-bullet-active {
      background: #fff;
    }
  }
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);

  &::after {
    font-size: 18px;
  }

  &:hover {
    color: #fff;
  }
}

iframe {
  border: none;
  width: 100%;
  height: 250px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}