@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  --primary: #a3a3a3;;
  --second: #3a3a3a;
  --third: #f2f2f2;
}
body {
  background: #000 !important;
  font-family: "Montserrat", sans-serif;
}
/* header section  */
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 100px;
  background: transparent;
  transition: 0.5s;
  z-index: 1100;
}

header.header-scrolled {
  padding: 18px 100px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
}
.logo img {
  width: 166px;
  height: auto;
  display: block;
  margin-top: -4rem;
}

/* Assurez-vous que le logo conserve la même hauteur même lorsque vous réduisez la largeur de l'écran */
.logo {
  height: 50px; /* Ajustez la hauteur selon vos besoins */
}

/* .logo {
  position: relative;
  font-size: 30px;
  color: #ffffff;
  letter-spacing: 2px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
} */
.nav {
  display: flex;
  align-items: center;
}
.nav li {
  position: relative;
  list-style: none;
  margin: 0 20px;
}
.nav li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 1px;
  padding: 10px;
}
.nav li a:hover {
  color: var(--primary);
}
/*nav-menu*/
.menu {
  display: none;
  transition: 0.5s;
}
.menu ion-icon {
  color: #ffffff;
  font-size: 1.6em;
}
.menu.active {
  transform: rotateZ(45deg);
}
.nav-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 990;
  gap: 20px;
}
.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}
.nav-mobile li {
  position: relative;
  list-style: none;
}
.nav-mobile li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.5s;
  font-weight: 300;
  padding: 10px;
}

/* banner section */
#banner {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.women::before,
.men::before,
.special::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: 0.5s;
}
.women:hover::before,
.men:hover::before,
.special:hover::before {
  background: transparent;
}
.women {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
  background: var(--primary);
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.men {
  position: absolute;
  top: 0;
  left: 30%;
  height: 100%;
  width: 40%;
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 25% 50%, 0 0);
  background: var(--second);
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.special {
  position: absolute;
  top: 0;
  left: 60%;
  height: 100%;
  width: 40%;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  background: var(--primary);
  transition: 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#banner.left .women,
#banner.middle .men,
#banner.right .special {
  width: 100%;
  clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
  transition: 1s;
}
#banner.right .special {
  left: 0;
}
#banner.middle .men {
  left: 0;
}
#banner.left .men,
#banner.left .special {
  left: 120%;
}
#banner.right .men,
#banner.right .women {
  left: -120%;
}
#banner.middle .women {
  left: -120%;
}
#banner.middle .special {
  left: 120%;
}
/*banner image*/
.women img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;

  max-width: 100%;
  object-position: 0 50%;
}
.men img,
.special img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
}
#banner.left .women img {
  width: 50%;
}
#banner.middle .men img,
#banner.right .special img {
  left: 50%;
  width: 50%;
}
/*switch*/
.switch-btn {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 300;
  margin-top: 40%;
  z-index: 1000;
  transition: 0.5s;
  transform: scale(1);
}
.switch-btn:hover {
  transform: scale(1.2);
}
/*banner reset*/
.reset {
  position: absolute;
  left: 100px;
  bottom: 100px;
  z-index: 1000;
  transition: 0.5s;
}

.reset.active {
  transform: rotateZ(180deg);
}
.reset ion-icon {
  color: #ffffff;
  font-size: 3em;
  transition: 0.3s;
}

.reset ion-icon:hover {
  color: var(--primary);
}
/* banner content */
#banner .content {
  position: absolute;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 900;
}
#banner .content h1 {
  color: #ffffff;
  font-size: 4.5em;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#banner .content p {
  color: #ffffff;
  font-weight: 200;
  font-size: 1em;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
#banner .content a {
  position: relative;
  width: 200px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff;
  padding: 12px 20px;
  border: 1px solid #ffffff;
  transition: 0.3s;
  display: inline-block;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#banner .content a ion-icon {
  font-size: 1.2em;
}
#banner .content a:hover {
  background: #ffffff;
  color: var(--primary);
}
#banner.left .women .content,
#banner.middle .men .content,
#banner.right .special .content {
  opacity: 1;
  visibility: visible;
}
.women .content {
  left: 55%;
}
.men .content,
.special .content {
  left: 100px;
}
/*main*/
main {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
}
/*main section*/
section.call-up {
  width: 100%;
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.call-up-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}
.call-up-box ion-icon {
  font-size: 5em;
  color: var(--primary);
}
.call-up-box h4 {
  font-size: 1.3em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}
.call-up-box p {
  font-weight: 300;
}
/*about service*/
.about {
  padding: 100px 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.about .left,
.about .right {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.promotion,
.discovery {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 50px;
}
.style,
.collection {
  position: relative;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 50px;
}
.about-box {
  overflow: hidden;
}
.about-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  object-fit: cover;
  /* object-position: center; */
  object-position: 79%;
  transition: 1s;
}
.about-box:hover img {
  transform: scale(1.1);
}
.about-box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.about-box:hover::after {
  background-color: rgba(0, 0, 0, 0.2);
}
.about .description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
.about .description h4 {
  position: relative;
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about .description h4::after {
  position: absolute;
  content: "";
  background: var(--primary);
  bottom: -10px;
  left: 0;
  width: 70%;
  height: 3px;
}
.about .description p {
  color: #ffffff;
  letter-spacing: 1px;
  font-weight: 300;
}
.about a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.5s;
}
.about a:hover {
  gap: 10px;
  color: var(--primary);
}
/*contact*/
#contact {
  position: relative;
  padding: 100px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#contact .map {
  width: 100%;
}
#contact .info-wrap {
  margin-top: 80px;
  width: 80%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
}
.contact .info {
  background: #ffffff;
}
.contact .info ion-icon {
  color: #ffffff;
  float: left;
  width: 40px;
  height: 40px;
  padding: 10px;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s;
}

.contact .info h4 {
  padding: 0 0 0 80px;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 5px;
}
.contact .info p {
  padding: 0 0 0 80px;
  font-size: 1em;
  font-weight: 300;
  margin-bottom: 0px;
}
/*back to top bottom*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 30px;
  background: var(--primary);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.back-to-top ion-icon {
  font-size: 1.5rem;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*responsive*/
@media (max-width: 600px) {
  #contact .info-wrap {
   

    padding: 25px 0px;
  }
  header {
    padding: 30px 20px;
  }
  header.header-scrolled {
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
  }
  .nav {
    display: none !important;
  }
  .menu {
    display: block;
  }
  #banner {
    padding: 0 20px;
  }
  .women {
    height: 40%;
    width: 100%;
    clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
  }
  .men {
    top: 30%;
    left: 0;
    height: 40%;
    width: 100%;
    clip-path: polygon(100% 0%, 100% 100%, 50% 75%, 0% 100%, 0 0%, 50% 25%);
  }
  .special {
    top: 60%;
    left: 0;
    height: 40%;
    width: 100%;
    clip-path: polygon(50% 0, 100% 25%, 100% 100%, 0% 100%, 0 25%);
  }
  #banner.left .women,
  #banner.middle .men,
  #banner.right .special {
    height: 100%;
  }
  #banner.right .special {
    top: 0;
  }
  #banner.middle .men {
    top: 0;
  }
  #banner.left .men,
  #banner.left .special {
    top: 120%;
  }
  #banner.right .men,
  #banner.right .women {
    top: -120%;
  }
  #banner.middle .women {
    top: -120%;
  }
  #banner.middle .special {
    top: 120%;
  }
  .switch-btn {
    font-size: 3em;
    margin-top: 0;
  }
  #banner.left .women img {
    height: 50%;
    width: 100% !important;
  }
  #banner.middle .men img,
  #banner.right .special img {
    left: 0;
    top: 50%;
    height: 50%;
    width: 100% !important;
  }
  #banner .content h1 {
    font-size: 1.5em;
    font-weight: 400;
  }
  .women .content {
    left: 20px;
    top: 60%;
  }
  .men .content,
  .special .content {
    left: 20px;
    top: 15%;
  }
  .reset {
    left: 20px;
    bottom: 20px;
  }
  .reset ion-icon {
    font-size: 2em;
  } /*call up section*/
  section.call-up {
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  /**/
  .about {
    padding: 100px 10px 0;
    flex-wrap: wrap;
  }
  .about .left,
  .about .right,
  .promotion,
  .discovery {
    width: 100%;
  }
  /*contact*/
  #contact {
    padding: 50px 0 0;
  }
  .contact .info-wrap {
    flex-wrap: wrap;
    width: 90%;
    gap: 30px;
  }
}

/*qui dans about.html*/
section.qui {
}
.qui {
  width: 100%;
  padding: 78px 0px;
  background: #191919;
}
.qui img {
  height: auto;
  width: 420px;
  margin-top: 8%;
}
.about-text {
  width: 550px;
}
.main {
  width: 1130px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about-text h1 {
  color: #ffffff;
  font-size: 76px;
  text-transform: capitalize;
  margin-bottom: 20px;
  margin-top: 10%;
}
.about-text h5 {
  color: #ffffff;
  font-size: 25px;
  text-transform: capitalize;
  margin-bottom: 25px;
  letter-spacing: 2px;
}
span {
  color: #a3a3a3;;
}
.about-text p {
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 20px;
  font-size: 18px;
  margin-bottom: 45px;
}
button {
  background: #a3a3a3;;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 13px 30px;
  border-radius: 30px;
  transition: 0.4s;
}
button:hover {
  background: transparent;
  border: 2px solid #a3a3a3;;

  cursor: pointer;
}
@media (max-width: 600px) {
  .main {
    display: block;
  }
  .about-text {
    width: 100%;
  }
  .qui img {
    height: auto;
    width: 385px;
  }
  .about-text h1 {
    font-size: 50px;
  }
  .call-up-box {
    padding: 20px;
  }
  .about .description h4 {
    font-size: 2em;
  }
  .call-up-box p {
    font-size: 12px;
  }
  .call-up-box h4 {
    font-size: 1em;
  }
  .switch-btn {
    font-size: 2em;
  }
}

/*gallery*/
.gallery {
  background-color: var(--primary);
  padding: 80px 0;
}
.gallery img {
  background-color: #ffffff;
  padding: 15px;
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
#gallery-modal .modal-img {
  width: 100%;
}
img {
  max-width: 100%;
}

/**/
.single-price {
  text-align: center;
  background: #161619;
  transition: 0.7s;
  margin-top: 50px;
  border-radius: 100px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.5);
}
.single-price h3 {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
.single-price h4 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 35px;
}
.single-price h4 span.sup {
  vertical-align: text-top;
  font-size: 25px;
}
.deal-top {
  position: relative;
  background: var(--second);
  font-size: 16px;
  text-transform: uppercase;
  padding: 50px 24px 0;
  transition: 0.7s;
  border-radius: 100px 100px 0 0;
}
.deal-bottom ul {
  margin: 0;
  padding: 0;
}
.deal-bottom ul li {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-top: 16px;
  padding-top: 16px;
  list-style: none;
}
.btn-area a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background: var(--second);
  padding: 8px 64px;
  margin-top: 32px;
  border-radius: 50px;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 900;
  text-decoration: none;
  transition: 0.7s;
}
.single-price:hover .deal-top {
  background: var(--primary);
}
.single-price:hover .deal-top h3 {
  color: #fff;
}
.single-price:hover .deal-top h4 {
  color: #fff;
}
.single-price:hover .btn-area a {
  background: var(--primary);
  color: #fff;
}
.containerp {
  margin: 4.5rem;
}
@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 25% !important;
  }
}
@media (max-width: 600px) {
  .about-text h1 {
    font-size: 45px;
  }
}

/*carousel*/
.carousel {
  margin-bottom: 10%;
}

.post-container {
  margin-top: 130px;
}
.post-container .post {
  width: 300px;
  background: #ffffff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  padding-bottom: 20px;
}
.post-container .post .image img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.post-container .post .content {
  padding: 0 20px;
}
.post-container .post .content .date {
  margin: 10px 0;
  font-size: 15px;
  color: #666;
}
.post-container .post .content .title {
  font-weight: 600;
  font-size: 22px;
  color: var(--primary);
  text-transform: uppercase;
}
.post-container .post:hover .title {
  text-decoration: underline;
}
.post-container .post .content p {
  font-size: 14px;
  padding: 5px 0;
  color: #666;
}
.post-container .post .content .link {
  display: block;
  color: var(--primary);
  margin-top: 10px;
}
.post-container .post .content .link:hover {
  color: #333;
}

/*footer*/
footer {
  position: relative;
  bottom: 0;
}
.footer {
  background-color: #000;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  font: bold 16px sans-serif;
  padding: 50px 50px 60px 50px;
  margin-top: 80px;
}
.footer .footer-left,
.footer .footer-center,
.footer .footer-right {
  display: inline-block;
  vertical-align: top;
}
@media (max-height: 800px) {
  footer {
    position: static;
  }
  header {
    padding-top: 40px;
  }
}
.footer .footer-left {
  width: 30%;
}
.footer h3 {
  color: var(--primary);
  margin: 0;
  padding-bottom: 20px;
}
.footer .footer-left img {
  width: 25%;
  vertical-align: middle;
}
.footer .footer-left .credit-cards {
  width: 100%;
}
.footer .footer-copyright {
  color: var(--primary);
  font-size: 14px;
  font-weight: normal;
  margin: 0;
  padding-top: 10%;
}
.footer .footer-center {
  width: 35%;
}
.footer .footer-center ion-icon {
  /* background-color: #33383b; */
  color: var(--primary);
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}
.footer .footer-center ion-icon .mail-outline {
  font-size: 17px;
  line-height: 38px;
}
.footer .footer-center p {
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  margin: 0px;
}
.footer .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}
.footer .footer-center p a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-right {
  width: 30%;
}
.footer .footer-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0px;
}
.footer .footer-about span {
  display: block;
  /* color: #fff; */
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.footer .footer-media {
  margin-top: 25px;
}
.footer .footer-media a {
  display: inline-block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 50%;
  font-size: 50px;
  color: #f2f2f2;
  text-align: center;
  line-height: 50px;
  margin-right: 3px;
  margin-bottom: 5px;
}
.footer .footer-media a:hover {
  background-color: #a3a3a3;;
}
@media (max-width: 880px) {
  .footer .footer-left,
  .footer .footer-center,
  .footer .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
  }
  .footer .footer-center ion-icon {
    margin-left: 0px;
  }
}


/**/
@media (max-width: 1169px){
section.call-up {
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}}
/**/
.titre{
  margin-top: 10%; 
  display: flex;
  align-items: center; 
  justify-content: center; 
  background: var(--primary);
  padding: 2% 10%;
}
@media (max-width: 596px){
  .titre{
    margin-top: 35%;
    margin-bottom: -14%;

  }.containerp {
    margin: 1.5rem;
  }

}
/* .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
} 
.row > * {
  margin-right: var(--bs-gutter-x);
  box-sizing: border-box;
} */
