
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}
.slider-container{
  width: 100%;
  height: 100vh;
  background-image: url('images/bg-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-images{
  display: flex;
  align-items: center;
  gap: 21px;
}
.slider-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.slider-img{
  width: 110px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
  filter: grayscale(100%);
}
.slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
  height: 480px;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 560px;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 665px;
}
.slider-container2 {
  width: 100%;
  height: 100vh;
  background-image: url('images/bg2-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-container3{
  width: 100%;
  height: 100vh;
  background-image: url('images/bg3-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
h1{
  font-family: "Jost", sans-serif;
  font-size: 30px;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
  color: #92794b;
  position: absolute;
  top: 50%;
  left: -10%;
  transform: rotate(270deg);
  transition: 0.7s ease;
}
.details{
  position: absolute;
  bottom: 43px;
  left: 43px;
  text-decoration: none;
}
.details h2{
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  line-height: 44px;
  text-align: left;
  text-transform: uppercase;
  transition: 0.7s ease;

}
.details p{
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 33px;
  text-align: left;
  color: #92794b;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.slider-img.active{
  width: 766px !important;
  height: 750px !important;
  filter: grayscale(0);
}
.slider-img.active h1{
   display: none;
}
.slider-img.active .details p, .slider-img.active .details h2{
  display: block;
}
.header { 
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.3rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  color: white;
}
.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .1);
  backdrop-filter: blur(50px);
  z-index: -1;
}

.header::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.logo {
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.4s;
}
.logo:hover {
  color: #92794b;
}
.navbar a {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-left: 2.5rem;
  transition: color 0.4s;
  font-family: "Jost", sans-serif;
}
.navbar a:hover {
  color: #92794b;
}
#check {
  display: none;
}
.icons  {
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: white;
  cursor: pointer;
  display: none;
}
@media (max-width: 992px) {
  .header {
    padding: 1.3rem 5%;
  }
}
@media (max-width: 768px) {
  .icons {
    display: inline-flex;
  }

  #check:checked~.icons #menu-icon {
    display: none;
  }
  .icons #close-icon {
    display: none;
  }

  #check:checked~.icons #close-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(50px);
    box-shadow: 0.5rem 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: 0.3s ease;
  }

  #check:checked~.navbar {
    height: 17.7rem;
  }

  .navbar a {
    display: block;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    opacity: 0;
    transition: 0.3s ease;
  }

  #check:checked~.navbar a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(.15s * var(--i));
  }
}
form {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
form .bx {
  font-size: 18px;
  margin-right: 10px;
}
form input {
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}
form button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.email {
  display: contents;
}
.mainContainer {
  max-width: 1400px;
  min-height: 100vh;
  margin: 0px auto;
  padding: 30px 8%;
  font-family: "Jost", sans-serif;
}
section.btns {
  padding: 20px 0px 25px;
}
section.btns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
section.btns ul li {
  display: inline-block;
  padding: 40px 0px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  margin: 4px 15px;
  cursor: pointer;
  transition: color 0.4s;
  text-transform: uppercase;
}
section.btns ul li:hover {
  color: #92794b;
}
section.btns ul li.active {
  position: relative;
  color: #92794b;
}
section.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  grid-gap: 10px;
}
section.gallery .card {
  position: relative;
  max-width: 100%;
  height: 100%;
  cursor: pointer;
}
.card .imgBox {
  position: relative;
  width: 100%;
  height: 100%;
}
.card .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  display: block;
  transition: opacity 0.4s;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
}
.card:hover .imgBox img {
  opacity: 0.3;
  cursor: pointer;
}
.card .imgBox p {
  width: 100%;
  height: 100%;
  display: flex;
  transition: opacity 0.4s;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 59px;
  font-weight: bold;
  align-items: center;
}
.card:hover .imgBox p {
   opacity: 0.3;
  cursor: pointer;
}
.card .imgText a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  color: #92794b;
  text-decoration: none;
}
.card .imgText {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  color: #92794b;
  text-decoration: none;
  text-transform: uppercase;
}
.imgText h2, .imgText p {
  padding: 10px 10%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s linear,
              padding 0.3s linear;
}
.card:hover .imgText h2,.card:hover .imgText p{
  opacity: 1;
  padding: 8px 10%;
}
@media(max-width: 1024px){
  section.gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px){
  section.gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
body {
  background-image: url(images/bg-image.jpg);
}
.bouton-retour a:hover {
  color: #92794b;
}
section.gallery2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 500px;
  grid-gap: 10px;
}
section.gallery2 .card2 {
  position: relative;
  max-width: 100%;
  height: 100%;
  cursor: pointer;
}
.card2 .imgBox2 {
  position: relative;
  width: 100%;
  height: 100%;
}
.card2 .imgBox2 img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  display: block;
  transition: opacity 0.4s;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
}
.card2:hover .imgBox2 img {
  opacity: 0.3;
  cursor: pointer;
}
.card2 .imgText2 a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  color: #92794b;
  text-decoration: none;
}
.card2 .imgText2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  color: #92794b;
  text-decoration: none;
  text-transform: uppercase;
}
.imgText2 h2, .imgText2 p {
  padding: 10px 10%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s linear,
              padding 0.3s linear;
}
.card2:hover .imgText2 h2,.card2:hover .imgText2 p{
  opacity: 1;
  padding: 8px 10%;
}
@media(max-width: 1024px){
  section.gallery2{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px){
  section.gallery2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.modal-body img{
  width: 100%;
}


@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}
.slider-container{
  width: 100%;
  height: 100vh;
  background-image: url('images/bg-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen {
  
}
.slider-images{
  display: flex;
  align-items: center;
  gap: 21px;
}
.slider-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.slider-img{
  width: 110px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: 0.7s ease;
  filter: grayscale(100%);
}
.slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
  height: 480px;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 560px;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 665px;
}
.slider-container2 {
  width: 100%;
  height: 100vh;
  background-image: url('images/bg2-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-container3{
  width: 100%;
  height: 100vh;
  background-image: url('images/bg3-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
h1{
  font-family: "Jost", sans-serif;
  font-size: 30px;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
  color: #92794b;
  position: absolute;
  top: 50%;
  left: -10%;
  transform: rotate(270deg);
  transition: 0.7s ease;
}
.details{
  position: absolute;
  bottom: 43px;
  left: 43px;
}
.details h2{
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
  line-height: 44px;
  text-align: left;
  color: #92794b;
  text-transform: uppercase;
  display: none;
}
.details a{
  text-decoration: none;
}
.details p{
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 33px;
  text-align: left;
  color: #92794b;
  text-transform: uppercase;
  transition: 0.7s ease;
  display: none;
}
.slider-img.active{
  width: 766px !important;
  height: 750px !important;
  filter: grayscale(0);
}
.slider-img.active h1{
   display: none;
}
.slider-img.active .details p, .slider-img.active .details h2{
  display: block;
}
form {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-bottom: 50px;
}
form .bx {
  font-size: 18px;
  margin-right: 10px;
}
form input {
  width: 100%;
  background: transparent;
  color: #ccc;
  border: 0;
  outline: none;
}
form button {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.email {
  display: contents;
}
.mainContainer {
  max-width: 1400px;
  min-height: 100vh;
  margin: 0px auto;
  padding: 30px 8%;
  font-family: "Jost", sans-serif;
}
section.btns {
  padding: 20px 0px 25px;
}
section.btns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
section.btns ul li {
  display: inline-block;
  padding: 40px 0px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  margin: 4px 15px;
  cursor: pointer;
  transition: color 0.4s;
  text-transform: uppercase;
}
section.btns ul li:hover {
  color: #92794b;
}
section.btns ul li.active {
  position: relative;
  color: #92794b;
}
section.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  grid-gap: 10px;
}
section.gallery .card {
  position: relative;
  max-width: 100%;
  height: 100%;
  cursor: pointer;
}
.card .imgBox {
  position: relative;
  width: 100%;
  height: 100%;
}
.card .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  display: block;
  transition: opacity 0.4s;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
}
.card:hover .imgBox img {
  opacity: 0.3;
  cursor: pointer;
}
.card .imgText a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  color: #92794b;
  text-decoration: none;
}
.card .imgText {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  color: #92794b;
  text-decoration: none;
  text-transform: uppercase;
}
.imgText h2, .imgText p {
  padding: 10px 10%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s linear,
              padding 0.3s linear;
}
.card:hover .imgText h2,.card:hover .imgText p{
  opacity: 1;
  padding: 8px 10%;
}
@media(max-width: 1024px){
  section.gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px){
  section.gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
body {
  background-image: url(images/bg-image.jpg);
  font-family: "Jost", sans-serif;
}
.bouton-retour a:hover {
  color: #92794b;
}
section.gallery2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 500px;
  grid-gap: 10px;
}
section.gallery2 .card2 {
  position: relative;
  max-width: 100%;
  height: 100%;
  cursor: pointer;
}
.card2 .imgBox2 {
  position: relative;
  width: 100%;
  height: 100%;
}
.card2 .imgBox2 img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  display: block;
  transition: opacity 0.4s;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
}
.card2:hover .imgBox2 img {
  opacity: 0.3;
  cursor: pointer;
}
.card2 .imgText2 a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  color: #92794b;
  text-decoration: none;
}
.card2 .imgText2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  color: #92794b;
  text-decoration: none;
  text-transform: uppercase;
}
.imgText2 h2, .imgText2 p {
  padding: 10px 10%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s linear,
              padding 0.3s linear;
}
.card2:hover .imgText2 h2,.card2:hover .imgText2 p{
  opacity: 1;
  padding: 8px 10%;
}
@media(max-width: 1024px){
  section.gallery2{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px){
  section.gallery2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.modal-body img{
  width: 100%;
}
@media (max-width: 768px) {
  /* SLIDER */
  .slider-container,
  .slider-container2,
  .slider-container3 {
    height: auto;
    padding: 40px 10px;
    flex-direction: column;
  }

  .slider-images {
    flex-direction: column;
    gap: 20px;
  }

  .slider-img {
    width: 100% !important;
    height: auto !important;
  }

  .slider-img img {
    width: 100%;
    height: auto;
  }

  .slider-img.active {
    width: 100% !important;
    height: auto !important;
  }

  h1 {
    display: none;
  }

  .details {
    position: static;
    padding: 10px;
    text-align: center;
  }

  .details h2,
  .details p {
    display: block;
    text-align: center;
    align-items: center;
    font-size: 20px;
    line-height: 1.4;
  }

  /* GALLERIES */
  section.gallery,
  section.gallery2 {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto;
  }

  .card .imgBox img,
  .card2 .imgBox2 img {
    object-fit: contain;
  }

  /* HEADER */
  .header {
    flex-wrap: wrap;
    padding: 15px 5%;
  }

  .logo {
    font-size: 1.5rem;
  }

  .navbar a {
    font-size: 1.2rem;
  }

  /* GENERAL */
  body,
  html {
    overflow-x: hidden;
  }

  section.btns ul {
    flex-direction: column;
  }

  section.btns ul li {
    padding: 10px 0;
  }
}
footer {
  color: #fff;
  background-color: #080808;
}
footer p {
  color: #ccc;
  max-width: 25em;
  font-size: 15px;
  line-height: 23px;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer h4 {
  margin-bottom: 1em;
  text-transform: uppercase;
}
footer .container-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
}
.footer {
  text-align: center;
}
.footer .menu li {
  display: inline-block;
  margin: 0.7em;
  text-align: center;
}
.footer p {
  margin: auto;
}
.footer .media-icons {
  margin: 1.5em 0;
  list-style: none;
  transition: 0.4s;
}
.brand {
  font-size: 36px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  transition: 0.4s;
}
li a {
  font-weight: 400;
  transition: 0.4s;
}
li a:hover {
  color: #92794b;
}
.brand:hover {
  color: #92794b;
}
@media screen and (max-width: 900px) {
  .container-footer,
}
