@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');


@font-face {
  font-family: 'Classico URW';
  src: url('assets/font/ClassicoUrw.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Oregon-font';
  src: url('Oregon-font/Oregon\ LDO\ DemiBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Oregon-font';
  src: url('Oregon-font/Oregon\ LDO\ Bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0px;
  font-family: "Montserrat";
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  list-style: none;
}

button {
  font-family: "Montserrat";
}

h1,
h2,
h3 {
  font-family: "Oregon-font";
}

p,
h1,
h2,
h3,
h4,
h5,
ul {
  margin: 0px;
  padding: 0px;
}

a {
  list-style: none;
  color: white;
  text-decoration: none;
}


.flex-direction-row-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.flex-direction-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-direction-row-between {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}


.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}



/*---------   COLORS  ----------*/

:root {
  --primary: #28466b;
  --secondary: #f36921;
  --grey-transparent-blue: #94a2b5;
  --grey-transparent: #a5a19f;
}




/*-----------------   NAV BURGER  ------------------*/

.burger-menu {
  display: none;
  background-color: white;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 99;
}

.burger-icon {
  display: none;
}


.burger-menu ul {
  gap: 20px;
}


.burger-menu li a {
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary);
}

.burger-menu li img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}











.img-1 {}

.img-1 img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}


/*-----------------   HEADER SECTION  ------------------*/



/* BAR HEADER */

.bar-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary);
  color: white;
  padding: 5px 150px;
}

.bar-header .left-side {
  gap: 5px;
  font-size: 13px;
  color: var(--grey-transparent-blue);
}

.bar-header .left-side p {
  font-size: 12px;
  margin-bottom: -2px;
}

.bar-header .left-side img {
  width: 15px;
}

.bar-header .right-side .divider {
  margin-bottom: 0%;
  font-size: 14px;
  font-weight: 0;
}

.bar-header .right-side p {
  font-size: 15px;
}

.bar-header .right-side img {
  margin-bottom: 4px;
}

.bar-header .city-side {
  color: var(--secondary);
}


.bar-header .city-side img {
  margin-bottom: -1px;
  width: 10px;
}




/* NAV BAR */


.main-navbar {
  display: flex;
  flex-wrap: wrap;
  padding: 35px 150px;
  color: var(--primary);
}

.left-nav img {
  width: 220px;
}

.right-nav ul {
  gap: 50px;
}

.right-nav li a {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: var(--primary);
}




.li-img {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  padding: 14px 16px;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

.li-img:hover {
  transform: scale(1.05);
}

#searchInput {
  display: none;
  width: 30%;
  height: 60px;
  min-width: 200px;
  margin: 10px auto 0;
  position: relative !important;
  top: 45px !important;
  transform: translateX(-50%);
  font-size: 16px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 5px;
}

#searchInput::placeholder {
  color: black;
}

.contribute a {
  text-decoration: underline;
  color: var(--secondary);
  display: flex;
  justify-content: center;
  text-align: center;
}


.form-submit {
  text-align: right;

}

/* MAIN HEADER  */

.main-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  height: 80vh;
  background: url("assets/paysage.png") no-repeat center;
  background-size: cover;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(58 57 56 / 41%);
  /* Sepia overlay color with opacity */
  z-index: 1;
  /* Ensure the overlay is behind the content */
}

.title-main {
  padding: 60px 150px;
  position: relative;
  /* Set the content containers to relative position */
  z-index: 2;
  /* Ensure the content is above the overlay */
}

.title-main h1 {
  font-size: 55px;
  margin-bottom: 15px;
  color: white;
}

.title-main p {
  font-size: 15px;
  line-height: 23px;
  width: 40%;
}

.buttons-main {
  color: white;
  margin-bottom: 70px;
  position: relative;
  /* Set the content containers to relative position */
  z-index: 2;
  /* Ensure the content is above the overlay */
}

.buttons-main input {
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat";
}



.buttons-main input::placeholder {
  color: white;
}

.first-button,
.second-button {
  position: relative;
}

.first-button input {
  background-color: rgba(0, 0, 0, 0.169);
  padding: 20px 30px;
  padding-right: 140px;
  border: 3px solid var(--grey-transparent);
  border-radius: 17px;
  color: white;
}

.first-button .divider {
  position: absolute;
  right: 20%;
  width: 1.5px;
  height: 27px;
  background-color: var(--secondary);
}

.first-button img {
  position: absolute;
  right: 7%;
}

.divider-button {
  font-size: 13px;
  font-weight: 600;
}

.second-button button {
  color: white;
  background-color: var(--secondary);
  padding: 20px 30px;
  padding-right: 140px;
  border: none;
  border-radius: 17px;
}

.second-button .add {
  position: absolute;
  right: 8%;
}

.second-button .divider {
  position: absolute;
  right: 23%;
  width: 1.5px;
  height: 27px;
  background-color: white;
}

#first-input-homepage {
  padding-bottom: 20px;
  padding-left: 28px;
  padding-top: 20px;
  padding-right: 91px;
}


#second-input-homepage {
  padding: 23px 157px 23px 30px;
}




/*-----------------   PICTURES SECTION  ------------------*/

.pictures,
.picture-city {
  position: relative;
  margin-bottom: 80px;
}

.hero-sub {
  transition: top 0.3s ease-in-out;
}

.hero-sub .slider-track::after {
  display: none;
}

.hero-sub>div>div:first-child {
  display: flex;
  align-items: center;
  width: 60%;
}

.hero-sub>div>div:last-child {
  width: 40%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: -15px;
}

.hero-sub #filter-button-container {
  margin-bottom: 0px;
  margin-left: 20px;
  padding-top: 10px;
}

.hero-sub .wrapper .container {
  height: 30px;
  margin-top: 10px;
}

.hero-sub>div>div:last-child .left {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  align-items: center;
}

.hero-sub>div>div:last-child .wrapper {
  flex-grow: 1;
  width: auto;
}

.hero-sub>div>div:last-child .checkbox {
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 12px;
}

.hero-sub>div>div:last-child .checkbox label {
  font-weight: 500;
}

.hero-sub>div>div:last-child .checkbox input {
  width: 19px;
  height: 19px;
  border-radius: 0;
  border: none;
  outline: none;
  margin: 0;
}

@media screen and (min-width: 1024px) {

  .pictures,
  .picture-city {
    padding: 0px 150px;
  }

  .title-main>h1 {
    font-size: 70px;
    font-weight: bold;
  }

  .title-main>p {
    font-size: 20px;
    font-weight: 500;
  }

}

@media screen and (min-width: 800px) and (max-width: 1024px) {

  .pictures,
  .picture-city {
    padding: 0px 50px;
  }

}

.hover-secondary-bottom {
  color: var(--primary);
  font-weight: bold;
  font-size: 20px;
}

.hover-secondary-bottom:hover {
  color: #f36921;
}

/* LAST ADDED  */



.last-added {
  padding-top: 40px;
  margin-bottom: 80px;
}

.background-blue {
  position: absolute;
  top: 0%;
  z-index: -99;
  height: 363px;
  width: 100%;
  margin-left: -150px;
  background-color: var(--primary);
}

.header-last-added {
  color: white;
  margin-bottom: 60px;
}

.header-last-added h2 {
  font-size: 45px;
}

.header-last-added a {
  font-weight: bold;
  font-size: 15px;
}


.picture-last-added {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;

  gap: 30px;
}

.picture-last-added img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hover {
  position: relative;
  width: 100%;
  aspect-ratio: 104/59;
}

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



.hover-text {
  position: absolute;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.642);
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 13px;
  cursor: pointer;
  opacity: 0;
  transition: .5s;
}

.hover-text:hover {
  opacity: 1;
}


.hover-text .top {
  position: relative;
  top: 45%;
  transform: translateY(-50%);
  font-family: "Classico URW";
  margin-bottom: 18%;
  font-weight: bold;
  font-size: 25px;
}

.hover-text .top .city {
  color: var(--secondary);
}

.hover-text .top .street {
  color: white;
}

.hover-text .top .distance {
  color: var(--secondary);
  padding-top: 25px;

}

.hover-text .bottom {
  position: absolute;
  bottom: 4%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 94%;
  color: white;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.354);
  padding-top: 10px;
}

.hover-text .like {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  justify-content: space-between;
  color: var(--secondary);
  font-weight: 600;
}


.hover-text .bottom img {
  width: 35px;
  height: 35px;
}




/* PICTURE CITY  */

.header-picture-city h3 {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
}

.all-picture {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
  gap: 30px;
}

.all-picture img {
  width: 100%;
  object-fit: cover;
}

.all-picture .second-img img {
  object-fit: cover;
  height: 100%;
}

.row-picture {
  gap: 30px;
}


.second-row img {
  height: 100%;

}


.picture-city .view-all a {
  color: var(--primary);
  font-weight: bold;
  font-size: 15px;
}

.middle-img {
  height: 100%;
}

.all-picture-hover {
  position: relative;
}


.second-img {
  position: relative;
  height: 100%;
}


.hover-text-picture {
  position: absolute;
  display: flex;
  justify-content: end;
  flex-direction: column;
  align-items: flex-start;
  top: 0px;
  background-color: rgba(18, 17, 20, 0.572);
  height: 100%;
  width: 100%;
  padding: 25px;
  color: white;
  font-weight: 600;
  opacity: 0;
  cursor: pointer;
  transition: .4s;
}

.all-picture-hover {
  overflow: hidden;

}

.hover-text-picture:hover {
  opacity: 1;
}

.title-hover {
  font-size: 20px;
  font-weight: 500;
}

.nmb-hover {
  color: var(--secondary);
}



















/*-----------------   PICTURES SECTION  ------------------*/




.best-contributors {
  background-color: #f2f2f2;
  height: 400px;
  padding: 0px 150px;
  padding-top: 80px;
  margin-bottom: 200px;
}



/* HEADER CONTRIBUTORS  */

.header-contributors h3 {
  color: var(--primary);
  font-size: 38px;
  font-weight: bold;
  text-align: center;
}



/* MAIN CONTRIBUTORS  */

.main-contributors {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 40px;
}


.profile-contributors {
  background-color: white;
  height: 100%;
  padding: 15px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.106);
  text-align: center;
}

.profile-contributors img {
  width: 230px;
  height: 225px;
  margin-bottom: 10px;
}


.profile-contributors h4 {
  font-size: 22px;
  font-weight: 500;
}

.profile-contributors p {
  font-size: 15px;
}

.profile-contributors .nmb {
  font-weight: 600;
  color: var(--secondary);
}




/*-----------------   FOOTER SECTION  ------------------*/


footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 150px;
  background-color: var(--primary);
  gap: 80px;

}


/* LEFT FOOTER  */


.left-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 30%;
}

.left-footer p {
  font-size: 12px;
  line-height: 19px;
  font-weight: 300;
  color: #ebedef;
}

.logo-footer img {
  width: 220px;
}

.social-media img {
  width: 30px;
  height: 30px;
}


/* DIVIDER FOOTER  */

.divider-footer {
  height: 200px;
  width: 1px;
  background-color: rgba(255, 254, 254, 0.177);
  margin-top: 5px;
}



/* RIGHT FOOTER  */


.right-footer {
  display: flex;
  flex-direction: row;
  gap: 70px;
}


.title-column {
  font-size: 14px;
  position: relative;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 40px;
}

.title-column::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0px;
  height: 1.5px;
  width: 65px;
  background-color: var(--secondary);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 25px;

}

.footer-column ul li {
  color: #ebedef;
  font-size: 14px;
}


.followers-column p.main-text {
  font-size: 13px;
  width: 290px;
  font-size: 13px;
  font-weight: 300;
  color: #ebedef;
  margin-bottom: 40px;
}

.button-followers {
  position: relative;
}

.button-followers input {
  position: relative;
  border: 3px solid #94a2b5;
  background-color: rgba(0, 0, 0, 0.168);
  color: #ebedef;
  font-size: 12px;
  font-weight: 400;
  padding: 16px 28px;
  width: 100%;
  text-align: left;
}

.button-followers input::placeholder {
  color: white;
}

.button-followers img {
  position: absolute;
  right: 5%;
  top: 26%;
  width: 25px;
  cursor: pointer;
}

.button-followers label {
  position: absolute;
  right: 20%;
  top: 28%;
  height: 22px;
  width: 1.6px;
  background-color: var(--secondary);
}



/*---------------------------- RESPONSIVE DESIGN ---------------------------------------*/


/* Media query for mobile devices */
@media (max-width: 768px) {
  .hero-bg {
    background-position: center !important;
    background-size: cover !important;
  }
}



@media only screen and (max-width:1200px) {


  .bar-header {
    padding: 5px 50px;
  }

  .bar-header .left-side {
    gap: 3px;
    font-size: 13px;
  }

  .bar-header .left-side p {
    font-size: 10px;
    margin-bottom: -2px;
  }

  .bar-header .left-side img {
    width: 15px;
  }

  .bar-header .right-side .divider {
    margin-bottom: 0%;
    font-size: 14px;
    font-weight: 0;
  }

  .bar-header .right-side p {
    font-size: 12px;
  }

  .bar-header .right-side img {
    width: 20px;
  }

  .bar-header .city-side img {
    width: 8px;
  }




  .main-navbar {
    justify-content: space-around;
    align-items: center;
    padding: 13px 0px;
  }


  .right-nav ul {
    gap: 20px;
  }

  .right-nav li {
    font-size: 13px;
    font-weight: bold;
  }





  .title-main {
    padding: 120px 100px;
    padding-bottom: 10px;
  }

  .title-main h1 {
    font-size: 50px;
    margin-bottom: 15px;
    text-align: center;
  }

  .title-main p {
    font-size: 13px;
    line-height: 23px;
    text-align: center;
    width: 100%;
  }








  .buttons-main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .buttons-main input {
    font-size: 14px;
    padding: 12px 25px;
    font-weight: 600;
    padding-right: 0px;
    width: 250px;
  }

  .buttons-main input::placeholder {
    font-size: 10px;
  }


  .first-button .divider {
    position: absolute;
    right: 20%;
    width: 1.5px;
    height: 27px;
  }

  .first-button img {
    position: absolute;
    right: 7%;
  }

  .divider-button {
    display: none;
  }


  .second-button .add {
    position: absolute;
    right: 8%;
    width: 20px;
  }

  .second-button button {
    font-size: 14px;
    padding: 15px 25px;
    padding-right: 120px;
    width: 250px;
    font-size: 10px;
  }

  .second-button .divider {
    position: absolute;
    right: 23%;
    width: 1.5px;
    height: 24px;
  }






  .pictures {
    padding: 0px 50px;
    margin-bottom: 80px;
  }



  .header-last-added {
    margin-bottom: 60px;
  }

  .header-last-added h2 {
    font-size: 40px;
  }

  .header-last-added a {
    font-size: 13px;
  }

  .header-last-added img {
    width: 17px;
  }

  .hover-text .bottom {
    display: none;
  }

  .picture-last-added {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }

  .background-blue {
    position: absolute;
    top: 0%;
    z-index: -99;
    height: 350px;
    width: 100%;
    margin-left: -50px;
  }

  .image-hover {
    /* width: 47%; */
  }


  .picture-last-added img {
    width: 100%;
    height: 100%;
  }









  .header-picture-city h3 {
    font-size: 35px;
  }

  /* .all-picture {
        display: flex;
        flex-direction: row; 
        flex-wrap: wrap;
        margin-bottom: 70px;
        gap: 10px;

    } */



  .row-picture {
    gap: 10px;
  }


  .picture-city .view-all a {
    font-size: 13px;
  }


  .best-contributors {
    height: 400px;
    padding: 0px 0px;
    padding-top: 50px;
    margin-bottom: 200px;
  }

  .header-contributors h3 {
    font-size: 30px;
  }


  .main-contributors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
  }


  .profile-contributors {
    height: 100%;
    padding: 10px;
  }

  .profile-contributors img {
    width: 125px;
    height: 122px;
    margin-bottom: 10px;
  }


  .profile-contributors h4 {
    font-size: 18px;
    font-weight: 500;
  }

  .profile-contributors p {
    font-size: 12px;
  }

  footer {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 70px 50px;
  }

  .left-footer {
    align-items: center;
    width: 90%;
    text-align: center;
  }

  .divider-footer {
    display: none;
  }

  .right-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .title-column::after {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    width: 65px;
    background-color: var(--secondary);
  }


  .button-followers input {
    font-size: 10px;
    padding: 16px 28px;
    width: 80%;
    text-align: left;
  }


  .button-followers img {
    right: 25%;
    top: 29%;
    width: 20px;
  }


  .button-followers input::after {
    right: 26%;
    top: 20%;
  }










  @media only screen and (max-width:800px) {
    .hover-text {
      display: none;
    }

    .burger-menu {
      position: absolute;
      display: none;
      justify-content: center;
      padding: 100px 0px;
    }

    .nav-burger {
      position: relative;
    }

    .nav-burger img {
      width: 30px;
    }

    .burger-menu ul {
      display: flex;
      gap: 50px;
    }

    .burger-menu li a {
      font-size: 25px;
    }

    .close-menu {
      position: absolute;
      top: 3%;
      right: 6%;
    }

    .burger-icon {
      display: flex;
    }




    .bar-header {
      padding: 5px 20px;
    }



    .bar-header .left-side {
      gap: 3px;
      font-size: 10px;
    }


    .bar-header .left-side img {
      width: 13px;
    }

    .bar-header .right-side .divider {
      margin-bottom: 0%;
      font-size: 12px;
      font-weight: 0;
    }

    .bar-header .right-side p {
      font-size: 10px;
    }

    .bar-header .city-side img {
      width: 7px;
    }

    .bar-header .change-city img {
      width: 15px;
    }

    .main-navbar {
      justify-content: space-between;
      padding: 10px 30px;
    }

    .main-navbar ul {
      display: none;
    }

    .left-nav img {
      width: 150px;
    }

    .right-nav li {
      font-size: 10px;
      font-weight: bold;
    }

    .li-img img {
      width: 20px;
      height: 20px;
    }


    .title-main {
      padding: 35px 30px;
      padding-bottom: 10px;
    }

    .title-main h1 {
      font-size: 40px;
      margin-bottom: 22px;
      text-align: center;
    }



    .title-main p {
      font-size: 14px;
      font-weight: 500;
      line-height: 17px;
      text-align: center;
      width: 100%;
    }



    .header-last-added {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }


    .pictures {
      padding: 0px 10px;
    }

    .background-blue {
      position: absolute;
      top: 0%;
      z-index: -99;
      height: 300px;
      width: 100%;
      margin-left: -10px;
    }


    .header-last-added a {
      font-size: 14px;
    }

    .header-last-added h2 {
      font-size: 30px;
      padding-top: 30px;
    }


    .header-picture-city h3 {
      font-size: 30px;
    }

    .picture-last-added {
      grid-template-columns: 1fr 1fr 1fr;
      max-width: 90%;
      margin: auto;
      color: white;
    }

    .picture-last-added>div:last-of-type {
      width: 100%;
    }

    .picture-last-added>div:last-of-type>a {
      color: white !important;
    }

    .image-hover {
      width: 100%;
      max-width: 400px;
      margin: auto;
    }


    .picture-last-added img {
      width: 100%;
      height: 100%;
    }

    .image-hover {
      position: relative;
    }



    .header-contributors h3 {
      font-size: 25px;
    }


    .best-contributors {
      height: 100%;
      padding: 0px 0px;
      padding: 50px;
      margin-bottom: 70px;
    }


    .main-contributors {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      margin-top: 40px;
      gap: 10px;
    }


    .profile-contributors {
      height: 100%;
      width: 47%;
      padding: 10px;
    }

    .profile-contributors img {
      width: 100%;
      height: 100%;
      margin-bottom: 10px;
    }


    .profile-contributors h4 {
      font-size: 15px;
      font-weight: 500;
    }

    .profile-contributors p {
      font-size: 10px;
    }

    .all-picture {
      max-width: 90%;
      margin: auto;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      margin-bottom: 70px;
      gap: 10px;
    }

    .all-picture>div>div img {
      aspect-ratio: 16/9;
    }


    footer {
      flex-wrap: wrap;
      justify-content: start;
      padding: 70px 50px;
      gap: 40px;
    }

    .left-footer {
      align-items: stretch;
      width: 90%;
      text-align: left;
    }

    .divider-footer {
      display: none;
    }

    .right-footer {
      align-items: flex-start;
      flex-direction: column;
      text-align: left;
      gap: 40px;
    }

    .title-column::after {
      left: 0px;
      transform: translate(0%);
    }





  }

}

@media all and (max-width: 500px) {
  .picture-last-added {
    grid-template-columns: 1fr;
  }

  #photos>.pictures>.last-added>div .hover-text {
    display: flex !important;
    opacity: 1;
    flex-wrap: wrap;
    gap: 0;
  }

  .hover-text {
    display: block !important;
    position: relative;
    bottom: 0 !important;
    top: -10px;
    background-color: #27456a;
    width: 100%;
    height: auto;
    text-align: left;
    padding: 16px;
    opacity: 1;
  }

  .hover-text .bottom {
    display: flex;
    border-top: none;
    bottom: 0;
    position: relative;
    padding-bottom: 0;
    padding-top: 0;
  }

  .hover-text .like {
    justify-content: flex-end;
  }

  .image-hover {
    overflow: unset !important;
  }

  .hover-text .top {
    top: 0;
    transform: unset;
    margin-bottom: 15px;
  }

  .hover-text .top .city {
    font-size: 20px;
  }

  .hover-text .top .street {
    font-size: 23px;
  }

  .single-photo .hover-text {
    display: block !important;
    position: relative;
    bottom: 0 !important;
    top: -10px;
    background-color: #27456a;
    width: 100%;
    height: auto;
    text-align: left;
    padding: 16px;
    opacity: 1;
  }

  .single-photo .hover-text .top .distance {
    padding-top: 10px;
    font-size: 20px;
  }
}

.title-main>h1 {
  font-family: "Classico URW";
}

.buttons-main>div {
  position: relative;
}

.buttons-main>p {
  font-weight: bold;
}

.buttons-main>div>input::placeholder {
  font-size: 12px;
}

#first-input-homepage {
  background-color: transparent;
  border-radius: 15px;
  border: none;
  outline-style: solid;
  outline-color: rgb(255, 255, 255, 0.5);
  outline-width: 2px;
}

.container-search-input-homepage {
  position: absolute;
  right: 20px;
  transform: translateY(-50%);
  top: 50%;
  display: flex;
  align-items: center;
  height: 100%;
}

.container-search-input-homepage>div {
  width: 2px;
  height: 60%;
  background-color: var(--secondary);
  margin-right: 15px;
  border-radius: 30px;

}

#second-container-search-input-homepage>div {
  background-color: white;
}

#second-input-homepage {
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 15px;
}

.fa-camera {
  color: white;
}

.hover-secondary:hover {
  color: var(--secondary);
}

@media only screen and (min-width: 1200px) {
  .buttons-main>div>input {
    padding: 10px;
  }
}


/* CONNECTION */

#connection {
  position: relative;
  width: 100%;
  height: 82vh;
  padding: 0px;
}

.page-template-template-login #input-container>div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.page-template-template-login #content-container button {
  margin-top: 40px;
  margin-bottom: 60px;
  color: white;
  background-color: var(--secondary);
  padding: 15px 30px;
  border-radius: 20px;
  border: none;
}

#connection>div:first-of-type {
  height: 100%;
  width: 100%;
  position: absolute;
  background: transparent url("./assets/images/paysage.png");
  background-position: center;
  z-index: -1;
}

#blur {
  position: absolute;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
  -webkit-filter: blur(30px);
  backdrop-filter: blur(30px);
  z-index: 1;
}

#content-container {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: white;
}

#content-container>p {
  font-family: "Classico URW";
  font-weight: bold;
  font-size: 50px;
  color: white;
}

.input-connection {
  background-color: rgb(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
}

input::placeholder {
  color: white;
  opacity: 1;
}

#connection>#content-container>#input-container>div {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

u>p {
  font-size: 10px;
  margin-top: 10px;
}

#content-container>button {
  margin-top: 40px;
  color: white;
  background-color: var(--secondary);
  padding: 15px 30px;
  border-radius: 20px;
  border: none;
}

@media only screen and (min-width: 1280px) {


  #content-container>p {
    font-size: 70px;
  }

  #content-container>div>input {
    margin-top: 60px;
  }

  .input-connection {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
  }

  button {
    padding: 30px 60px;
  }

  #input-container {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #input-container>input,
  #input-container>div,
  #input-container>div>input {
    width: 100%;
  }

  u>p {
    font-size: 16px;
    margin-top: 20px;
  }

}

/* Connection End */

/* Photo DÃ©tails */



.secondaryColor {
  color: var(--secondary);
}

#photo-details-container {
  padding: 0px 10px;
  position: relative;
  margin-bottom: 100px;
}

@media (max-width: 768px) {
  #photo-details-container {
    margin-bottom: 0;
    /* Remove the margin-bottom for mobile */
  }
}

.low-title {
  color: var(--primary);
  font-size: 25px;
  font-family: "Classico URW";
  font-weight: bold;
  text-align: center;
}

.low-title:first-of-type {
  margin-bottom: 30px;
}

.first-photo-container {
  width: 100%;
  max-width: 400px;
  margin: auto;
}

#first-photo {
  height: 100%;
  object-fit: contain;
  position: relative;
  max-width: 100%;
}

 #colorized-photo{
  height: 100%;
  object-fit: contain;
  position: relative;
  max-width: 100%;
}

#first-photo, #colorized-photo {
    transition: opacity 1.5s ease-in-out;
    position: absolute;
    top: 0;
}

#show-colorize img {
    transition: transform 0.3s ease-in-out;
}

#show-colorize:hover img {
    transform: scale(1.1); /* Adjust scale value as needed */
}


.hidden-photo {
    opacity: 0;
    visibility: hidden;
}

.visible-photo {
    opacity: 1;
    visibility: visible;
}

aside>div:last-of-type {
  margin-bottom: 40px;
}

aside>div {
  margin-top: 20px;
}

aside>div>p:last-of-type {
  margin-bottom: 20px;
}

aside>div>p:first-of-type {
  font-weight: 600;
  font-size: 15px;
}

aside>div>p:nth-child(2) {
  font-weight: 600;
  font-size: 20px;
  color: var(--primary);
}

#show-map>i {
  color: var(--secondary);
}

aside>div:nth-child(6)>div>u>span {
  font-weight: 600;
}

aside>div:nth-child(7)>p:last-child {
  color: black;
  line-height: 24px;
  margin-top: 3px;
}

aside>div>hr {
  width: 100%;
  border: solid 1px #707070;
  opacity: 0.5;
}

#presentation-container {
  display: flex;
  align-items: center;
}

#presentation-container>img {
  height: 96px;
  width: 96px;
  border-radius: 150px;
  margin-right: 30px;
}

#presentation-container>div>p:first-of-type {
  font-weight: bold;
  font-size: 20px;
}

.description {
  font-size: 20px;
}

#view-all-desktop {
  display: none;
}

#view-all-mobile {
  margin-top: 10px;
}

.apropos-button {
  cursor: pointer;
  white-space: nowrap;
}

#view-all-mobile>img {
  width: 16px;
  height: 16px;
}

#view-all-mobile>a {
  color: white;
  font-weight: bold;
}

aside>div {
  padding: 0px 15px;
}

#show-map {
  display: flex;
  align-items: center;
  gap: 10px;
}

#view-all-mobile>a {
  color: var(--primary);
}

#show-all-photo {
  font-size: 16px;
}

@media screen and (min-width: 500px) {
  #view-all-mobile>a {
    color: white;
  }

  #view-all-mobile {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  #photo-details-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

  #photo-details-container>div {
    width: 50%;
  }

  #photo-details-container>aside {
    width: 50%;
    padding: 0px 15px;
    box-shadow: 0px 0px 50px #0000001A;
  }
}

@media screen and (min-width: 1024px) {
  #photo-details-container {
    padding: 0px 150px;
  }
}

@media screen and (min-width: 1280px) {
  #show-map>u {
    font-size: 20px;
  }

  #show-map>i {
    font-size: 30px;
  }

  #view-all-desktop {
    display: flex;
  }

  #view-all-mobile {
    display: none;
  }

  aside {
    width: 27vw;
  }

  aside>div {
    padding: 0px;
  }

  #photo-details-container {
    padding: 0px 150px;
    display: flex;
    flex-direction: row;
  }

  #photo-details-container>div {
    width: 64%;
  }

  #photo-details-container>div:first-of-type {
    padding: 0px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #photo-details-container>aside {
    padding: 0px 30px;
    box-shadow: 0px 0px 50px #0000001A;
    width: 35%;
  }

  .first-photo-container {
    height: 100%;
    max-width: 960px;
    max-height: 620px;
  }

  .low-title {
    font-size: 40px;
    margin-top: 40px;
  }


  #presentation-container>div>p:first-of-type {
    font-size: 25px;
  }

  #presentation-container>div>p {
    font-size: 20px;
  }

  aside>div>p:first-of-type {
    font-size: 20px;
  }

  aside>div>p:last-of-type {
    font-size: 25px;
  }

  #presentation-container>img {
    height: 96px;
    width: 96x;
  }

  .first-photo-container {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .first-photo-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 58px;
    left: 13%;
    transform: translateX(-50%);
    transform: translateY(-15%);
    width: 75%;
    height: 150%;
    background-color: #707070;
    z-index: -1;
    opacity: 0.1;
    max-height: 722px;
  }

  .last-added>div {
    margin-top: 80px;
  }

  .last-added>div>h2 {
    font-size: 70px;
    font-family: "Classico URW";
  }

  .last-added>div>div>a {
    font-size: 20px;
  }

  .picture-city>.header-picture-city>h3 {
    font-size: 50px;
    font-family: "Classico URW";
  }

  #show-all-photo {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1536px) {
  #show-all-photo {
    font-size: 20px;
  }

  #presentation-container>img {
    height: 96px;
    width: 96px;
  }
}

/* Photo details end */

/* Photos start */

/* HERO START */
#photos {
  padding: 0px;
}

.hero-container {
  margin-bottom: 0px;
}

.hero-bg {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  height: 15vh;
  background-size: cover;
  color: white;
  padding: 5px 20px;
  font-family: "Classico URW";
  position: relative;
}

.hero-bg>h1 {
  z-index: 5001;
}

.hero-bg>div {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5000;
  left: 0px;
  top: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(190deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
  opacity: 0.5;
}

.hero-sub {
  width: 100%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  color: white;
  margin: 0px;
}

.title-hero-sub {
  font-size: 18px;
  font-family: "Classico URW";
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
}

.hero-sub>div {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#container-inputs>div>select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #0000004D 0% 0% no-repeat padding-box;
  border: none;
  outline-style: solid;
  outline-color: rgb(255, 255, 255, 0.5);
  outline-width: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  color: white;
}

#container-inputs>div>select>option {
  background-color: var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#container-inputs>div>select>option:hover {
  color: var(--secondary);
}

#container-inputs>div>input::placeholder {
  color: white;
}

#container-input-range {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  margin-top: 15px;
}

#container-input-range>div>input {
  width: 100%;
}

#container-input-range>div>input::before {
  content: "1850";
  color: white;
  position: absolute;
  bottom: -20px;
  left: -5%;
  font-size: 11px;
}

#container-input-range>div>input::after {
  font-size: 11px;
  content: attr(data-end-year);
  color: white;
  position: absolute;
  bottom: -20px;
  right: -5%;
}

#container-input-range>div>input[type=range] {
  -webkit-appearance: none;
  margin-top: 10px;
  background-color: white;
  height: 0px;
  border: 2px solid #FFFFFF;
  border-radius: 15px;
  background-color: var(--secondary);
}

#container-inputs {
  width: 95%;
  margin: 15px 0px;
}


#container-inputs>div {
  position: relative;
}

#container-inputs>div>i {
  color: var(--secondary);
  position: absolute;
  height: 10px;
  width: 10px;
  right: 12px;
  top: 50%;
  z-index: 500;
  transform: translateY(-100%);
}

#container-inputs>div>div {
  position: absolute;
  width: 1px;
  height: 50%;
  background-color: var(--secondary);
  top: 25%;
  right: 33px;
}

.input-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: var(--secondary);
  border-radius: 50%;
  cursor: -moz-grab;
  cursor: -webkit-grab;
  cursor: move;
}

#points-second {
  position: absolute;
  top: 0px;
}

#points-second::after,
#points-second::before {
  display: none;
}

#rangeValue {
  position: absolute;
  bottom: -20px;
  left: 0;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--secondary);
  margin-top: 4px;
}

#container-inputs>div:last-of-type {
  margin-top: 20px;
}


#date {
  margin-left: 10px;
  white-space: nowrap;
}

#container-inputs>div>select {
  width: 100%;
}

.wrapper {
  position: relative;
  width: 100%;
}

.container {
  position: relative;
  width: 100%;
  height: 39px;
  margin-top: 30px;
}

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  outline: none;
  position: absolute;
  margin: auto;
  top: 0;
  background-color: transparent;
  pointer-events: none;
}

.slider-track {
  width: 100%;
  height: 5px;
  position: absolute;
  margin: auto;
  border-radius: 5px;
  top: 6px;
  background: linear-gradient(to right, #dadae5 11%, #f36921 11%, #f36921 23, #dadae5 23%);
}

.slider-track::before {
  content: "1850";
  position: absolute;
  top: 30px;
  left: -20px;
  display: none;
}

.slider-track::after {
  content: attr(data-end-year);
  position: absolute;
  top: 30px;
  right: -20px;
}

input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 5px;
}

input[type="range"]::-moz-range-track {
  -webkit-appearance: none;
  height: 5px;
}

input[type="range"]::-ms-track {
  -webkit-appearance: none;
  height: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  background-color: var(--secondary);
  border-radius: 100%;
  cursor: pointer;
  pointer-events: auto;
  margin-top: 1px;
  ;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  height: 15px;
  width: 15px;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--secondary);
}

input[type="range"]::-ms-thumb {
  appearance: none;
  height: 15px;
  width: 15px;
  cursor: pointer;
  border-radius: 50%;
  background-color: var(--secondary);
}

input[type="range"]::active::-webkit-slider-thumb {
  background-color: #FFFFFF;
  border: 3px solid var(--secondary);
}

#rangeValue1,
#rangeValue2 {
  position: absolute;
  top: 15px;
  color: var(--secondary);
}

#rangeValue1 {
  left: 0;
}

#rangeValue2 {
  right: 0;
}

.hero-sub>div>#container-inputs>div>select {
  font-size: 20px;
}


@media screeen and (max-width: 1024px) {
  .hero-sub>div>#container-inputs>div>select {
    padding: 15px;
  }
}

/* HERO END */
@media screen and (min-width: 1280px) {
  .hero-bg {
    height: 32vh;
    padding: 0px 150px;
  }

  .hero-bg>h1 {
    font-family: "Classico URW";
    font-size: 55px;
    font-weight: bold;
  }

  .hero-sub {
    height: 183px;
    padding: 0px 150px;
  }

  .hero-sub>div {
    flex-direction: row;
    width: 100%;
  }

  .hero-sub>#container-inputs>div>select {
    padding: 30px 212px 30px 40px;
  }

  .title-hero-sub {
    margin-right: 30px;
  }

  #container-inputs {
    display: flex;
    font-size: 20px;
    gap: 40px;
    width: 90%;
  }

  #container-inputs>div {
    width: 50%;
  }

  #container-inputs>div:last-of-type {
    margin-top: 0px;
    margin-right: 40px;
  }

  #container-inputs>div>select {
    padding: 15px 1px 16px 20px;
  }

  .hero-sub>div>div:first-child #container-inputs select {
    padding: 20px 20px 20px 30px;
  }

  #container-inputs::placeholder {
    font-size: 20px;
  }

  #container-inputs>div>i {
    right: 16px;
  }

  #container-input-range {
    margin-left: 40px;
    width: 350px;
  }

  #container-input-range>p {
    margin-top: 5px;
    margin-right: 24px;
  }

  #container-input-range>div {
    width: 100%;
  }

  #container-input-range>div>input {
    width: 100%;
  }

  #rangeValue {
    margin-top: -4px;
  }

  .wrapper {
    width: 25%;
    margin-left: 40px;
    margin-right: 40px;
  }

  .container {
    height: 50px;
  }

  #container-inputs>div>div {
    right: 40px;
  }
}

@media screen and (min-width: 1280px) {
  .wrapper {
    width: 40%;
  }

}


@media screen and (min-width: 1580px) {
  #container-inputs>div>select {
    padding: 20px 20px 20px 30px;
  }

  .hero-sub {
    padding: 0px 150px;
  }

  .title-hero-sub {
    font-size: 30px;
  }

  #container-inputs>div>i {
    right: 32px;
  }

  #container-inputs>div>div {
    right: 70px;
  }

  #filter-button-container>button {
    padding: 25px 35px 25px 29px;
  }
}

/* Photos end */

/* Privacy start */

main>section>h3 {
  color: var(--primary);
  font-size: 30px;
  margin-top: 40px;
  font-family: "Classico URW";
}

main>section>div {
  margin-top: 30px;
}

main>section>div>p:first-of-type {
  margin-top: 20px;
}

main>section>div>p {
  margin-top: 10px;
}

main>section {
  margin-bottom: 90px;
}

.heading-one {
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
}

.heading-two {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
}

.heading-three {
  font-size: 20px;
}

@media only screen and (max-width: 1024px) {
  #privacy {
    padding: 0px 10px;
  }

  .heading-one {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
  }

  .heading-two {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
  }

  .heading-three {
    font-size: 15px;
  }
}

@media only screen and (min-width: 1024px) {
  #privacy {
    padding: 0px 50px;
  }
}

@media only screen and (min-width: 1280px) {
  #privacy {
    padding: 0px 150px;
  }

  #privacy>section>h3 {
    font-size: 50px;
  }
}

/* Privacy end */

/* Register */

#register {
  position: relative;
  width: 100%;
  height: 100%;
}

#register>div:first-of-type {
  height: 100%;
  width: 100%;
  position: absolute;
  background: transparent url("assets/paysage.png");
  background-position: center;
  z-index: -1;
}

#blur {
  position: absolute;
  height: 100%;
  width: 100%;
  mix-blend-mode: multiply;
  -webkit-filter: blur(30px);
  backdrop-filter: blur(30px);
  z-index: 1;
}

#content-container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
  color: white;
  padding: 0px 10px;
}

#content-container>p {
  font-family: "Classico URW";
  font-weight: bold;
  font-size: 40px;
  color: white;
  margin-top: 100px;
}

.hidden_label .gfield_label {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  word-wrap: normal !important;
  clip-path: inset(50%);
}

.gform_wrapper input,
.gform_wrapper textarea,
.gform_wrapper select,
textarea {
  background-color: rgb(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 20px;
}

input::placeholder,
textarea::placeholder {
  color: white;
  opacity: 1;
}

#input-container {
  display: flex;
  flex-direction: column;
}

#input-container>div,
textarea {
  margin-top: 20px;
}

#input-container>div>i {
  background-color: var(--secondary);
  padding: 16px 16px;
  border-radius: 15px;
}

#content-container>button {
  margin-top: 40px;
  margin-bottom: 60px;
  color: white;
  background-color: var(--secondary);
  padding: 15px 30px;
  border-radius: 20px;
  border: none;

}

#input-container>div:first-of-type>span {
  color: var(--secondary);
}

#input-container {
  align-items: center;
  gap: 20px;
  width: 100%;
}

/*.input-register:first-of-type{*/
/*    margin-top: 30px;*/
/*}*/

/*.input-register{*/
/*    width: 60%;*/
/*    background-color: transparent;*/
/*    border: 4px solid rgba(255, 255, 255, 0.5);*/
/*    border-radius: 5px;*/
/*    -webkit-appearance: none;*/
/*    -moz-appearance: none;*/
/*    appearance: none;*/
/*    margin-top: -2px;*/
/*    border-radius: 15px;*/
/*}*/

#pfp {
  width: 60%;
  display: flex;
  align-items: center;
}

#pfp>i {
  padding: 16px;
}

#pfp>span {
  margin-left: 20px;
}

#bio {
  width: 60%;
  height: 133px;
  background-color: rgb(0 0 0 / 0%);
  ;
}

#checkbox-container {
  width: 60%;
  display: flex;
  align-items: center;
  gap: 10px;
}

#checkbox-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border-radius: 5px;
  padding: 10px;
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.page-template-template-login #content-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

@media only screen and(min-width: 1024px) and (max-width: 128px) {
  #content-container {
    padding: 0px 50px;
  }
}

@media only screen and (min-width: 1280px) {
  #register {
    height: 175vh;
  }

  #content-container {
    padding: 0px 150px;
  }

  #content-container>p {
    font-size: 70px;
  }

  #content-container>div>input {
    margin-top: 30px;
  }

  /*.input-register{*/
  /*    margin-top: 40px;*/
  /*    padding-top: 30px;*/
  /*    padding-bottom: 30px;*/
  /*    padding-left: 40px;*/
  /*}*/

  #bio {
    width: 100%;
  }

  button {
    padding: 30px 70px;
  }

  #input-container {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #input-container>div {}

  .gform_wrapper input,
  .gform_wrapper textarea,
  .gform_wrapper select,
  textarea {
    width: 100%;
    background-color: rgb(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    margin-top: 20px;
  }

  #input-container>input,
  #input-container>div>input,
  textarea,
  div>input {
    width: 100%;
  }

  u>p {
    font-size: 16px;
    margin-top: 20px;
  }

  #input-container>div>i {
    padding: 20px 20px;
  }

  #input-container>div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
  }

  /*.input-register{*/
  /*    width: 40px;*/
  /*    height: 38px;*/
  /*}*/
  #input-container>div>span {
    width: 80%;
  }

  textarea {
    height: 233px;
  }

  #checkbox-input {
    width: 16px !important;
  }

}

/* Register end */

/* A propos start */
#apropos {
  padding: 0px;
}

#apropos>section:not(:first-child) {
  padding: 0px 10px;
}

#first-a-propos-container,
#second-a-propos-container {
  margin-top: 40px;
  margin-bottom: 0px;
}

#first-a-propos-container>img,
#second-a-propos-container>img {
  width: 100%;
}

#first-a-propos-container>div>p:first-of-type,
#second-a-propos-container>div>p:first-of-type {
  font-weight: 600;
}

#second-a-propos-container {
  margin-bottom: 383px;
}

#second-a-propos-button-container {
  position: relative;
  display: inline-block;
  margin-top: 40px;
}

#second-a-propos-button-container>button {
  padding: 20px 98px 20px 30px;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 15px;
}

#second-a-propos-button-container>div {
  background-color: white;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  height: 50%;
  width: 2px;
}

#second-a-propos-button-container>i {
  color: white;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 5000;
}

#blue-container {
  position: relative;
  background-color: var(--primary);
  height: calc(100vh + 312px);
  width: 100%;
  margin-bottom: 62px;

}

#third-a-propos-container {
  position: absolute;
  top: 0px;
  transform: translateY(-40%);
}

#third-a-propos-container>div:not(:first-child) {
  padding: 0px 10px;
}

#third-a-propos-button-container>button {
  margin-left: 10px;
}

#third-a-propos-container>div>p {
  color: white;
  padding-bottom: 5px;
}

#third-a-propos-container>div>p:first-of-type {
  font-weight: 600;
}

#third-a-propos-container>div>img {
  width: 100%;
  margin-bottom: 24px;
}

#third-a-propos-button-container {
  display: inline-block;
  position: relative;
}

#third-a-propos-container>div:last-of-type {
  margin-top: 20px;
}

#third-a-propos-button-container>button {
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 20px 98px 20px 30px;
}

#third-a-propos-button-container>i {
  position: absolute;
  color: white;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

#third-a-propos-button-container>div {
  background-color: white;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  height: 50%;
  width: 2px;
}

#fourth-section {
  padding: 10px;
  padding-top: 425px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  text-align: center;
}

#fourth-section>div {
  margin-top: 15px;
  color: white;
  text-align: center;
}

#fourth-section>div>i {
  font-size: 30px;
  color: var(--secondary);
  margin-bottom: 20px;
}

#fourth-section>div>p:first-of-type {
  color: var(--secondary);
  margin-bottom: 10px;
}

/* A propos end */

#last-section {
  padding: 0px 0px !important;
  margin-bottom: 50px;
  position: relative;
}

.image-hover-container>img {
  width: 100%;
  padding: 0px;
}

.image-hover-text {
  width: 100%;
  height: 75px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  padding: 0px 10px;
  bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-hover-text>div {
  font-family: "Classico URW";
  font-weight: bold;
  font-size: 16px;
  color: white;
}

.image-hover-text>div>p:first-of-type {
  color: var(--secondary);
}

.image-hover-text>button {
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 15px;
  padding: 15px 30px 15px 30px;
}

#second-a-propos-button-container {
  margin-bottom: 50px;
}


.image-hover-text {
  display: none;
}

.image-hover-container:hover .image-hover-text {
  display: flex;
}

.gm-style .gm-style-iw-tc {
  left: -57px !important;
}

.nform #subject select {
  appearance: none;
  margin-top: 0;
  width: 100%;
  background: #28466b;
  outline: none;
}

.gform_wrapper select {
  width: 100%;
}

@media screen and (min-width: 560px) {
  #apropos>section:not(:first-child) {
    padding: 0px 10px;
  }

  #first-a-propos-container>img {
    padding: 0px;
  }

  #second-a-propos-button-container {
    margin-bottom: 50px;
  }

  #fourth-section {
    padding-top: 532px;
  }
}

@media screen and (min-width: 768px) {
  #fourth-section {
    padding-top: 756px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  #third-a-propos-container {
    padding: 0px 100px;
  }

  #second-a-propos-container {
    margin-bottom: 471px;

  }


  #third-a-propos-container>div>img {
    margin-bottom: 60px;
  }

  .image-hover-container {
    padding: 0px 100px;
  }
}


@media screen and (min-width: 1024px) {
  #apropos>section:not(:first-child) {
    padding: 0px 100px;
  }
}

@media screen and (min-width: 1280px) {

  #apropos>section:not(:first-child) {
    padding: 0px 150px;
  }

  #first-a-propos-container {
    display: flex;
    gap: 50px;
  }

  #first-a-propos-container>img {
    width: 73%;
    max-width: 948px;
    max-height: 447px;
  }

  #first-a-propos-container>div {
    max-width: 520px;
    width: 35%;
    margin-top: -110px;
    z-index: 10000;
    background-color: white;
    padding: 50px 40px 50px 40px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.106);
  }

  #first-a-propos-container>div>p {
    width: 100%;
    font-size: 20px;
  }

  #first-a-propos-container>div>p:first-of-type {
    margin-top: 0px;
  }

  #second-a-propos-container {
    display: flex;
  }

  #second-a-propos-container>img {
    max-width: 500px;
  }

  #second-a-propos-container>div {
    max-width: 630px;
    margin-right: 128px;
    font-size: 20px;
  }

  #second-a-propos-button-container>button {
    padding: 20px 120px 20px 30px;
    font-size: 16px;
  }

  #second-a-propos-button-container>i {
    right: 30px;
  }

  #second-a-propos-button-container>div {
    right: 73px;
  }

  #blue-container {
    height: calc(100vh + 183px);
  }

  #third-a-propos-container {
    padding: 0px 150px;
    display: flex;
    gap: 50px;
  }

  #third-a-propos-button-container>button {
    padding: 20px 120px 20px 30px;
    font-size: 16px;
  }

  #third-a-propos-container>div {
    width: 75%;
  }

  #third-a-propos-container>div>img {
    max-width: 948px;
    max-height: 567px;
  }

  #third-a-propos-container>div:last-of-type {
    background-color: white;
    color: black;
    max-width: 520px;
    max-height: 688px;
    padding: 50px 55px 50px 42px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.106);
  }

  #third-a-propos-container>div:last-of-type>p:first-of-type {
    font-weight: bold;
  }

  #third-a-propos-container>div:last-of-type>p {
    font-size: 20px;
    line-height: 24px;
    color: black;
    font-weight: 600;
    padding-bottom: 20px;
  }



  #fourth-section {
    padding: 0px 150px;
    padding-top: 454px;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px;
  }

  #fourth-section>div>i {
    font-size: 40px;
  }

  #fourth-section>div>p {
    font-size: 16px;
    margin-top: 18px;
  }

  #fourth-section>div>p:first-of-type {
    font-size: 22px;
    margin-top: 20px;
  }

  .image-hover-container {
    padding: 0px 200px;
  }



  .image-hover-container>img {
    max-width: 880px;
    max-height: 864px;
  }

  .image-hover-text {
    max-width: 880px;
  }


}

@media screen and (min-width: 1536px) {
  #apropos>section:not(:first-child) {
    padding: 0px 200px;
  }

  #second-a-propos-container>img {
    max-width: 736px;
  }

  #third-a-propos-container {
    padding: 0px 200px;
    display: flex;
    gap: 50px;
  }

  #second-a-propos-button-container>button {
    padding: 30px 191px 30px 40px;
    font-size: 20px;
  }

  #third-a-propos-button-container>button {
    padding: 30px 191px 30px 40px;
    font-size: 20px;
  }

  #fourth-section {
    padding: 0px 200px;
    padding-top: 622px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 32px;
  }

  #fourth-section>div>i {
    font-size: 60px;
  }

  #fourth-section>div>p {
    font-size: 20px;
    margin-top: 18px;
  }

  #fourth-section>div>p:first-of-type {
    font-size: 30px;
    margin-top: 38px;
  }

  .image-hover-container {
    padding: 0px 200px;
  }

  .image-hover-container>img {
    max-width: 1518px;
    max-height: 864px;
  }

  .image-hover-text {
    max-width: 1518px;
    height: 169px;
    width: calc(100% - 400px);
  }

  .image-hover-text>div {
    margin-left: 61px;
  }

  .image-hover-text>div>p {
    font-weight: bold;
    font-size: 30px;
  }

  .image-hover-text>button {
    margin-right: 60px;
    padding: 30px 80px;
    font-size: 20px;
  }
}

/* Contact start */


#contact-sub {
  font-weight: 600;
  margin-top: 15px;
  padding: 0px 15px;
  margin-bottom: 15px;
}

#contact-container {
  padding: 0px 15px;
}

#form {
  display: flex;
  flex-direction: column;
  background-color: var(--primary);
}

#form>input:first-of-type {
  margin-top: 30px;
}

#form>input,
#subject>input {
  background-color: transparent;
  border: none;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 15px 30px 15px 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white;

}

#subject {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  width: 100%;
}

#subject>input {
  width: 100%;
}

#subject>div {
  position: absolute;
  width: 0px;
  height: 30%;
  top: 50%;
  transform: translateY(-50%);
  right: 62px;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
}

#subject>i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  color: white;
  color: var(--secondary);
}

#contact-container {
  background-color: var(--primary);
}

#form>textarea {
  background-color: transparent;
  height: 150px;
}

#form>div:last-of-type {
  display: flex;
  justify-content: center;
}

#form>div:last-of-type>button {
  color: white;
  background-color: var(--secondary);
  border: none;
  border-radius: 15px;
  padding: 20px 60px 20px 60px;
  margin-bottom: 60px;
  margin-top: 30px;
}

@media screen and (min-width: 1024px) {
  #contact-sub {
    padding: 0px 100px;
    margin-bottom: 30px;
  }

  #form {
    padding: 0px 100px;
  }

}

@media screen and (min-width: 1280px) {
  #contact-sub {
    padding: 0px 150px;
    margin-bottom: 30px;
  }

  #form {
    padding: 0px 150px;
  }
}

@media screen and (min-width: 1536px) {
  #contact-sub {
    padding: 0px;
  }

  #contact-container {
    margin-bottom: 82px;
  }

  #contact>div:last-of-type {
    padding: 0px 200px;
  }

  #contact>div {
    position: relative;
    display: flex;
    gap: 128px;
  }

  #contact-sub {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 500;
    margin-top: -100px;
  }

  #contact>div>section:last-of-type {
    margin-top: -168px;
    z-index: 8000;
    width: 55%;
  }

  #contact>div>section:first-of-type {
    width: 45%;

  }

  #form {
    padding: 0px 60px;
  }

  #form>input:first-of-type {
    margin-top: 40px;
  }

  #form>input,
  #subject>input,
  #form>textarea {
    font-size: 20px;
    padding: 30px 30px 30px 40px;
  }

  #form>textarea,
  #form>div>button {
    font-size: 20px;
  }
}

/* Contact fin */

.city-side {
  position: relative;
}

#laon {
  cursor: pointer;
}

#menu-city {
  display: none;
  position: absolute;
  top: 22px;
  right: -133px;
  background-color: white;
  z-index: 1000000;
}

#menu-city>ul {
  padding: 36px 42px 36px 42px;
  box-shadow: 0 0 90px rgb(0 0 0 / 16%);
}

#menu-city>ul>li {
  color: var(--primary);
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
  cursor: pointer;
}

#menu-city>ul>li:last-child {
  margin-bottom: 0;
}

#menu-city>ul>li:hover {
  color: var(--secondary);
}

.image-hover {
  overflow: hidden;
}

aside>#presentation-container>div>p>span {
  font-weight: bold;
}

header {
  position: sticky;
  width: 100%;
  background: white;
  top: 0px;
  z-index: 99999;
  height: 182px;
}

body>header {
  transition: all 0.3s ease-in-out;
}

body>header.up {
  transform: translateY(-100%);
}

#filter-button-container {
  margin-bottom: 30px;
}

#filter-button-container>button {
  color: white;
  background-color: var(--secondary);
  padding: 20px 35px 20px 30px;
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

#filter-button-container>button:hover {
  transform: scale(1.05);
}

@media screen and (min-width: 1280px) {
  #filter-button-container {
    margin-bottom: 0px;
    margin-left: 20px;
  }

  .hero-sub>div>#container-inputs>div>select {
    font-size: 15px;
  }
}

@media screen and (min-width: 1580px) {
  .hero-sub>div>#container-inputs>div>select {
    font-size: 20px;
  }
}

#photos>.pictures>div:first-of-type {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 60px;
}

#photos>.pictures>div:first-of-type>span {
  display: flex;
  align-items: center;
  gap: 18px;
}

#photos>.pictures>div:first-of-type>span>i {
  font-size: 28px;
}

#photos>.pictures>.last-added {
  padding-top: 0px;
}

#photos>.pictures>.last-added>div {
  margin-top: 0px;
}

#photos>.pictures .btn__wrapper {
  height: 0;
  width: 0;
  overflow: hidden;
}

#photos>.pictures>div:first-of-type>.selected {
  color: var(--secondary);
}

#photos>.pictures>div:first-of-type>span {
  cursor: pointer;
}

#show-map {
  color: black;
  font-weight: 500;
}

@media screen and (max-width: 1280px) {
  .hero-sub {
    position: static !important;
  }
}

.hero-sub {
  width: 100%;
  top: 0px;
  position: sticky;
  z-index: 500;
}

#map {
  display: none;
  width: 100%;
}

/* Gravity form */
#form.nform form {
  width: 100%;
}

#form.nform input,
.nform #subject input {
  background-color: transparent;
  border: none;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 15px 30px 15px 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: white;
  width: 100%;
}

#form.nform .gfield:first-of-type input {
  margin-top: 30px;
}

#form.nform textarea {
  background-color: transparent;
  height: 150px;
  width: 100%;
}

.nform .gform_footer .gform_button,
#form.nform .gform_footer .gform_button {
  color: white;
  background-color: var(--secondary);
  border: none;
  border-radius: 15px;
  padding: 20px 60px 20px 60px;
  margin-bottom: 60px;
  margin-top: 30px;
  width: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.nform .gform_footer {
  text-align: center;
}

.gform_validation_errors {
  display: none;
}

.validation_message {
  font-size: 14px;
  color: red;

}

.gform_confirmation_message {
  color: #ffffff;
}

@media only screen and (min-width: 1536px) {

  #form.nform input,
  .nform #subject input,
  #form.nform textarea {
    font-size: 20px;
  }

  #form.nform .gfield:first-of-type input {
    margin-top: 40px;
  }

  #form.nform input,
  .nform #subject input,
  #form.nform textarea {
    font-size: 20px;
    padding: 30px 30px 30px 40px;
  }
}

/* Modifier mon profil */
#input-container.nform form {
  width: 100%;
}

#input-container.nform .gfield:first-of-type input {
  margin-top: 30px;
}

#input-container.nform .gfield {
  width: 100%;
}

#input-container.nform fieldset.gfield {
  padding: 0;
  border: none;
}

#input-container.nform .input-register,
#input-container.nform textarea {
  background-color: rgb(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  margin-top: 0;
}

#input-container.nform .input-register {
  width: 60%;
  background-color: transparent;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: -2px;
  border-radius: 15px;
}

#input-container.nform .ginput_container {
  text-align: center;
  justify-content: center;
}

#input-container.nform .gform_fields,
.nform .ginput_container_password {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

#input-container.nform .gform-field-label--type-sub {
  display: none;
}

#input-container.nform .password_input_container input {
  margin-top: 0 !important;
  width: 60%;
  background-color: transparent;
  border: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: -2px;
  border-radius: 15px;
}

#input-container.nform span.ginput_password {
  display: block;
  width: 100%;
}

#input-container.nform textarea {
  width: 60%;
  height: 133px;
  background-color: rgb(0 0 0 / 0%);
}

.gchoice {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  margin-top: 20px;
  gap: 10px;
}

.gchoice input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border-radius: 5px;
  padding: 10px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  width: auto;
  margin: 3px 3px 3px 4px;
}

.gfield_checkbox {
  width: 60%;
  margin: auto;
}

.gchoice label {
  text-align: left;
}

#input-container.nform .gform_footer .gform_button {
  margin-top: 40px;
  padding: 15px 30px;
  border-radius: 20px;
  border: none;
}

.nform #pfp {
  margin: auto;
  margin-bottom: -20px;
}

.nform #pfp i {
  background-color: var(--secondary);
  padding: 16px 16px;
  border-radius: 15px;
}

.nform #pfp span {
  color: var(--secondary);
}

.nform .gfield--type-gfiuffur,
.nform .gfield--type-gffiuf {
  display: flex;
  flex-direction: column-reverse;
}

.nform .gfiuffur-inline,
.nform .gffiuf-inline {
  display: none;
}

.nform .gfiuffur-upload.active,
.nform .gfiuff-upload.active {
  margin-top: 20px;
}

.nform .gfiuffur-upload.active .gfiuffur-inline,
.nform .gfiuff-upload.active .gfiuff-inline {
  display: block;
}

.nform .gfiuffur-g1,
.nform .gfiuff-g1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nform .gform_wrapper {
  width: 100%;
}

#input-container.nform>div {
  margin: 0;
}

#input-container.nform select {
  width: 60%;
  background: transparent;
  border-radius: 15px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: -2px;
}

.bar-header .right-side img {
  width: 15px;
  height: 15px;
  margin: 0 10px 0 0;
}

@media only screen and (min-width: 1280px) {

  #pfp {
    width: 100%;
  }

  .nform #pfp i {
    padding: 20px 20px;
  }

  #input-container.nform .input-register,
  #input-container.nform .password_input_container input {
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
    height: 38px;
    width: 100%;
  }

  #input-container.nform .password_input_container input {
    margin-top: 30px !important;
  }

  #input-container.nform textarea {
    width: 100%;
  }

  .gfield_checkbox {
    width: 100%;
  }
}

/* subscribe-form */
.subscribe-form .gform_footer {
  position: absolute;
  top: 9999999999999px;
  left: 9999999999999px;
  visibility: hidden;
  opacity: 0;
}

.button-followers .gform_heading {
  display: none;
}

.button-followers form {
  max-width: 290px;
}

.button-followers input {
  margin: 0;
  position: relative;
  border: 3px solid #94a2b5;
  background-color: rgba(0, 0, 0, 0.168);
  color: #ebedef;
  font-size: 12px;
  font-weight: 400;
  padding: 16px 28px;
  width: 100%;
  text-align: left;
  border-radius: 0;
  outline: none;
}

.button-followers {
  overflow: hidden;
}

.button-followers .validation_message {
  margin: 15px 0 0;
}

.button-followers .ginput_container {
  position: relative;
}

.nform .gfgeo_field_type_gfgeo_geocoder {
  display: none;
}

.nform .ginput_container_gfgeo_google_map {
  width: 60%;
  margin: auto;
}

.nform .gfgeo_field_type_gfgeo_map>label {
  display: none;
}

.nform .gfield_description {
  width: 60%;
  margin: 10px auto 0;
  font-size: 12px;
}

#field_1_16 {
  display: none;
}

body .ginput_container .gfgeo-locator-button-wrapper.infield-locator {
  left: 20%;

}

.social-media a img.hover {
  display: none;
}

.social-media a:hover img {
  display: none;
}

.social-media a:hover img.hover {
  display: inline-block;
}

.right-footer a:hover,
#show-map:hover,
.right-nav li a:hover {
  color: #f36921;
}

.map-box {
  width: 100%;
  max-width: 418px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  box-shadow: 0 0 50px rgb(0, 0, 0, .1);
  gap: 20px;
}

.map-box>div:nth-child(1) {
  width: 38%;
  display: flex;
}

.map-box>div:nth-child(2) {
  width: 62%;
  padding: 20px 10px 20px 0;
}

.map-box>div:nth-child(1) img {
  width: 100%;
}

.map-box h3 {
  margin: 0 0 10px;

}

.map-box h3 {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Classico URW';
  line-height: 25px;
  color: #F26921;
  text-align: left;
}

.map-box p {
  font-family: 'Montserrat';
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  color: #28466B;
  margin: 0 0 24px;
  text-align: left;
}

.map-box div.link {
  font-family: 'Montserrat';
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
  color: #28466B;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.map-box div.link svg {
  width: 15px;
}

.map-box div.link:hover {
  color: #f36921;
}

.gm-style,
.gm-style .gm-style-iw-c,
.gm-style-iw-d {
  padding: 0 !important;
  overflow: auto !important;
  max-height: none !important;
  overflow-x: hidden !important;
}

.gm-style .gm-style-iw-c {

  width: 418px !important;
  max-width: 418px !important;
  border-radius: 0;

}

.buttons-main>div,
#second-input-homepage {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.buttons-main>div:hover,
#second-input-homepage:hover {
  transform: scale(1.01);
}

.contribute a:hover {
  color: #28466b;
}

.nform .gform_footer .gform_button:hover,
#form.nform .gform_footer .gform_button:hover {
  transform: scale(1.05);
}

.map-popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(0 0 0 / 40%);
  z-index: 999999;
  padding: 0 50px;

}

.map-popup .inner {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  max-width: 1000px;
}

.map-popup #gmap {
  height: 80vh;
}

.map-popup .map-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-popup .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background: #ffffff;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgb(0 0 0 / 16%);
  display: flex;
  transform: translate(50%, -50%);
  cursor: pointer;
}

.map-popup .close path {
  fill: #28466b;
  stroke: #28466b;
}



@media only screen and (min-width: 1200px) {
  #input-container.nform select {
    margin-top: 30px;
    background: transparent;
    border-radius: 15px;
    border: 4px solid rgba(255, 255, 255, 0.5);
  }

  body .ginput_container .gfgeo-locator-button-wrapper.infield-locator {
    left: 0;
    top: calc(50% + 14px);
    transform: translateY(-50%);
  }

  #input-container.nform select {
    width: 100%;
  }

  #input-container.nform textarea {
    margin-top: 20px;
    font-family: "Montserrat";
    font-weight: 500;
  }

  .nform #gf_1 #pfp {
    margin-bottom: -40px;
  }

  .nform .ginput_container_gfgeo_google_map {
    width: 100%;
  }

  .nform .gfield_description {
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .button-followers input {
    font-size: 10px;
    padding: 16px 28px;
    width: 80%;
    text-align: left;
  }

  #menu-city {
    right: -160px;
    top: 19px;
  }
}

@media (max-width: 991px) {
  .gm-style .gm-style-iw-c {
    width: 414px !important;
    max-width: 80vw !important;
  }

  .map-box {
    flex-direction: column;
    gap: 20px;
  }

  .map-box>div:nth-child(1) {
    width: 100%;
  }

  .map-box>div:nth-child(2) {
    width: 100%;
    padding: 0 30px 30px;
  }

  .gm-style,
  .gm-style .gm-style-iw-c,
  .gm-style-iw-d {
    overflow-y: auto !important;
  }

  .map-box p {
    margin: 0 0 10px;
  }
}

@media (max-width: 767px) {
  .map-popup {
    padding: 0 20px;
  }

  #menu-city>ul>li {
    font-size: 14px;
  }

  #menu-city {
    right: unset;
  }

  #menu-city>ul {
    padding: 20px;
  }
}

.button--secondary {
  color: var(--secondary);
}

.button-login {
  color: white;
  background-color: var(--secondary);
  border: none;
  border-radius: 15px;
  padding: 20px 60px 20px 60px;
  margin-bottom: 60px;
  margin-top: 30px;
  width: auto;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

:root {
  --font-urw: 'Classico URW', sans-serif;
  --font-Montserrat: 'Montserrat', sans-serif;
}

.scomment-container {
  width: 100%;
  padding: 0 150px;
  margin: 0 auto;
}

.new-comment {
  width: 50%;
  padding-right: 25px;
}

.sbtn,
.cancomment #submit {
  background-color: #F26921;
  border-radius: 20px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 30px 120px 29px;
  border: none;
  outline: none;
}

.cancomment #submit {
  padding: 30px 135px 29px;
}

.scomment #reply-title {
  display: none;
}

.scomment .logged-in-as {
  display: none;
}

.scomment .comment-form-comment>label {
  display: none;
}

.cancomment h3 {
  font-size: 50px;
  line-height: 90px;
  color: #28466B;
  font-weight: bold;
  margin: 0 0 28px;
  font-family: var(--font-urw);
}

.cancomment textarea {
  margin: 0;
  background-color: rgb(0 0 0 / 10%);
  border-radius: 20px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--font-Montserrat);
  height: 232px;
  padding: 22px 40px;
  margin: 0 0 32px;
  color: #28466B;
}

.li-img-2 a>div {
  display: flex;
  align-items: center;
  gap: 30px;
}

.li-img-2 a>div span {
  color: #FFFFFF;
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-Montserrat);
  font-weight: 500;
}

.li-img-2 a>div span.line {
  display: flex;
}

.li-img-2 a>div span:last-child {
  font-size: 60px;
  line-height: 73px;
  font-weight: 400;
}

.li-img-2 {
  padding: 4px 30px 6px;
}

.page-template-template-modifier-votre-profil .nform>p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero-sub>div {
  padding: 0px 0;
}

#connection.login #content-container {
  position: static;
  background: #FFFFFF;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row;
  padding: 0;
}

.login .left {
  width: 37.7%;
  display: flex;
}

.login .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login .right {
  width: 62.3%;
  padding: 80px 20px 50px;
}

#connection.login {
  height: auto;
  border-top: 2px solid rgb(42 49 135 / 20%);
}

.login h1 {
  font-size: 70px;
  line-height: 94px;
  font-weight: bold;
  color: var(--primary);
  font-family: var(--font-urw);
  text-align: center;
  margin: 0 0 62px;
}

.login .input-connection {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  color: var(--primary);
  padding: 26px 36px 25px;
  background-color: #FFFFFF;
  border: 4px solid rgb(40 70 107 / 50%);
  border-radius: 20px;
  margin: 0;
}

.login input::placeholder,
textarea::placeholder {
  color: var(--primary);
}

.page-template-template-login #input-container>div {
  margin: 40px 0 0;
}

.login u>p {
  font-size: 16px;
  line-height: 19px;
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
}

.page-template-template-login #content-container button {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 30px 58px 29px;
}

.login #input-container {
  gap: 0;
}

.login .error {
  color: red;
  text-align: center;
  margin: 0 0 10px;
  font-weight: bold;
}

.formNewStyle #register>div:nth(.page-banner):first-of-type {
  background: none !important;
}

.formNewStyle header {
  border-bottom: 1px solid rgb(42 49 135 / 20%);
}

.formNewStyle #content-container>p {
  font-size: 70px;
  line-height: 94px;
  font-weight: bold;
  font-family: var(--font-urw);
  color: var(--primary);
  text-align: left;
  width: 100%;
  margin: 125px 0 62px;
}

.formNewStyle #content-container {
  padding: 0 20px;
  max-width: 1626px;
  margin: 0 auto;
}

.formNewStyle #input-container {
  width: 100%;
  padding-left: 33px;
}

.formNewStyle #input-container.nform .gform_fields,
.formNewStyle .nform .ginput_container_password {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "a b c"
    "d e e"
    "g g i";
  column-gap: 43px;
  row-gap: 40px;
  align-items: flex-start;
}


.formNewStyle #input-container.nform input.input-register,
.formNewStyle #input-container.nform .gfield:first-of-type input,
.formNewStyle #input-container.nform select {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  color: var(--primary);
  padding: 26px 36px 25px;
  background-color: #FFFFFF;
  border: 4px solid rgb(40 70 107 / 50%);
  border-radius: 20px;
  margin: 0;
  height: auto;
  width: 100%;
}

.page input::placeholder,
.formNewStyle textarea::placeholder {
  color: var(--primary);
}

.formNewStyle #field_5_3 {
  grid-area: a;
}

.formNewStyle #field_5_1 {
  grid-area: b;
}

.formNewStyle #field_5_9 {
  grid-area: c;
}

.formNewStyle #field_5_4 {
  grid-area: d;
}

.formNewStyle #field_5_8 {
  grid-area: e;
}

.formNewStyle #field_5_8>.ginput_container {
  align-items: flex-start;
  row-gap: 0 !important;
}

.formNewStyle #field_5_11 {
  grid-area: f;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  padding: 0 0 40px;
  width: calc(100% / 3) !important;
  padding-left: 30px;
}

.formNewStyle #field_5_11 .pfp {
  position: static;
  height: auto;
  width: auto;
  color: var(--primary);
  clip-path: unset;
}

.formNewStyle #field_5_5 {
  grid-area: g;
}

.formNewStyle #field_5_12 {
  grid-area: i;
}

.button-followers input,
.button-followers input::placeholder {
  color: #FFFFFF;
}

.formNewStyle #input-container.nform .ginput_container {
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: none;
}

.formNewStyle #input-container.nform textarea {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  color: var(--primary);
  padding: 26px 36px 25px;
  background-color: #FFFFFF;
  border: 4px solid rgb(40 70 107 / 50%);
  border-radius: 20px;
  margin: 0;
  height: 206px;
  width: 100%;
}

.formNewStyle .gfield_checkbox {
  width: 100%;
}

.formNewStyle #input-container.nform .password_input_container input {
  margin-top: 0 !important;
}

.formNewStyle .gchoice label {
  font-weight: 500;
  width: calc(100% - 40px);
}

.formNewStyle .gchoice {
  color: var(--primary);
  margin-top: 35px;
}

.formNewStyle .gchoice input {
  border: 4px solid rgb(42 49 135 / 20%);
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border-radius: 5px;
}

.formNewStyle #input-container.nform fieldset.gfield {
  margin: 0;
}

.formNewStyle .nform .gform_footer {
  width: calc(100% / 3);
  position: absolute;
  bottom: 5px;
  right: 0;
  z-index: 1;
  padding-left: 30px;
}

.formNewStyle #input-container.nform form {
  position: relative;
}

.formNewStyle #input-container.nform .gform_footer .gform_button {
  width: 100%;
  border-radius: 20px;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 30px 20px 29px;
  margin: 0;
}

.formNewStyle #register {
  height: auto;
  padding: 0 0 148px;
}

.formNewStyle #blur {
  display: none;
}

.formNewStyle .nform #pfp span {
  color: var(--primary);
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin-left: 30px;
}

.formNewStyle .nform .gfiuffur-inline {
  line-height: 0;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 30px;
  width: 117px;
  height: 117px;
  overflow: hidden;
  border-radius: 100%;
}

.formNewStyle .nform #pfp {
  width: 100%;
}

.formNewStyle .nform .gfiuffur-inline img {
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
}

body.formNewStyle .ginput_container .gfgeo-locator-button-wrapper.infield-locator {
  top: 50%;
}

.formNewStyle .nform .gfield_description {
  color: #F26921;
  margin-left: 0;
}

.formNewStyle .nform .ginput_container_gfgeo_google_map {
  width: 100%;
}

#photos>.pictures .btn__wrapper {
  text-align: center;
}

#photos>.pictures #load-more {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  padding: 15px 20px;
  border-radius: 20px;
  display: inline-block;
  background-color: var(--secondary);
  margin: 30px auto 0;
}

.spinner {
  display: none;
  text-align: center;
  padding: 30px 0 0;
}

.page-template-template-apropos-php #blue-container {
  height: auto !important;
}

#photo-details-container>aside .low-title {
  text-align: left;
  margin: 0;
}

.aside-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0;
  column-gap: 15px;
}

.aside-details {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 5px 0 0;
}

.aside-details>div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}

.aside-details>div i {
  font-size: 33px;
  color: var(--secondary);
}

.aside-details>div svg {
  width: 30px;
  display: flex;
}

.old-comment {
  width: 50%;
}

.scomment-container {
  display: flex;
  flex-wrap: wrap;
}

li.comment {
  border: 4px solid rgb(40 70 107 / 50%);
  border-radius: 20px;
  padding: 44px 60px 47px 196px;
  position: relative;
  margin: 0 0 40px;
}

li.comment .comment-author img {
  width: 131px;
  height: 131px;
  border-radius: 100%;
  position: absolute;
  top: 51px;
  left: 40px;
}

li.comment .comment-meta a {
  color: var(--primary);
}

.comment-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  column-gap: 27px;
}

.comment-footer a {
  color: #000000;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: underline;
}

.comment-footer>div {
  display: flex;
  align-items: center;
  column-gap: 13px;
}

li.comment .comment-author .name {
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
  text-transform: capitalize;
}

.comment .author-details {
  width: 100%;
}

.comment .author-details {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 27px;
}

.comment .author-details .time {
  font-size: 16px;
  line-height: 19px;
  color: var(--primary);
  font-weight: 500;
}

li.comment p {
  font-size: 20px;
  line-height: 25px;
  color: #000000;
  font-weight: 500;
  margin: 0 0 30px;
}

li.comment ul.children {
  margin-left: -154px;
  margin-right: -40px;
}

li.comment ul.children li {
  border: 0;
}

li.comment ul.children li p {
  margin: 0 0 32px;
}

li.comment ul.children li:last-child {
  margin-bottom: 0;
  padding-bottom: 6px;
}

.add-comment {
  text-align: center;
  border: 4px solid rgb(40 70 107 / 50%);
  border-radius: 20px;
  padding: 120px 100px 124px;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  color: var(--primary);
}

.old-comment ol {
  padding-left: 0;
  margin: 0 0 116px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .scomment {
    padding-bottom: 0;
    /* Remove the bottom padding for mobile */
  }

  .old-comment ol {
    margin-bottom: 0;
    /* Remove the bottom margin for mobile */
  }
}

#first-input-homepage,
#first-input-homepage::placeholder {
  color: #FFFFFF;
}

.mfp-content #login-form #input-container {
  width: 100%;
}

.mfp-content #login-form form {
  width: 100%;
  max-width: 500px;
}

.mfp-content #login-form #input-container>div {
  flex-direction: column;
}

.cannot-comment p {
  font-size: 30px;
  font-weight: 600;
  line-height: 37px;
  margin: 0 0 32px;
  color: #28466B;
}

.cannot-comment a {
  display: inline-block;
}

@media (min-width: 992px) {
  .page-id-81 #field_1_13 {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    padding: 0 0 40px;
    width: calc(100% / 3) !important;
    padding-left: 30px;
  }

  .formNewStyle.page-id-81 #input-container.nform .gform_fields {
    grid-template-areas:
      "a b c"
      "d e f"
      "h g i";
  }

  .page-id-81 #field_1_1 {
    grid-area: a;
  }

  .page-id-81 #field_1_10 {
    grid-area: b;
  }

  .page-id-81 #field_1_3 {
    grid-area: c;
  }

  .page-id-81 #field_1_15 {
    grid-area: d;
  }

  .page-id-81 #field_1_8 {
    grid-area: e;
  }

  .page-id-81 #field_1_11 {
    grid-area: f;
  }

  .page-id-81 #field_1_5 {
    grid-area: g;
  }

  .page-id-81 #field_1_4 {
    grid-area: h;
  }

  .formNewStyle.page-id-81 #input-container.nform textarea {
    height: 305px;
  }
}

@media (min-width: 801px) {
  .burger-menu {
    display: none !important;
  }
}

@media (max-width: 1279px) and (min-width: 1201px) {
  .main-navbar {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1279px) {
  .formNewStyle #input-container {
    padding-left: 0;
  }

  .li-img-2 a>div span:last-child {
    line-height: 1;
    font-size: 40px;
  }

  .hero-sub {
    padding-top: 15px;
  }

  .hero-sub>div>div:first-child {
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin: 0 0 10px;
  }

  .hero-sub>div>div:last-child {
    width: 95%;
    flex-direction: column;
    margin: 0 0 30px;
  }

  .hero-sub>div>div:last-child .left {
    width: 100%;
    gap: 15px;
  }

  .hero-sub #date {
    width: 100%;
    margin-left: 0;
  }

  .hero-sub>div>div:last-child .wrapper {
    width: 100%;
  }

  .hero-sub>div>div:last-child .checkbox {
    padding-left: 0;
  }

  .cancomment textarea {
    width: 100%;
  }

  .hero-sub #filter-button-container {
    margin-left: 0;
    padding-top: 15px;
  }

  .scomment-container {
    padding: 0 50px;
  }

  .new-comment {
    width: 100%;
    margin: 0 0 30px;
    padding-right: 0;
    padding-top: 10px;
  }

  .old-comment {
    width: 100%;
    padding-left: 0;
  }

  .cancomment h3 {
    font-size: 50px;
  }

  .cancomment #submit {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1200px) {
  #first-input-homepage {
    width: 100%;
  }

  #first-input-homepage {
    padding-right: 125px;
  }

  #menu-city {
    left: -100px;
    right: unset;
  }
}

@media (max-width: 991px) {

  .formNewStyle #input-container.nform .gform_fields,
  .formNewStyle .nform .ginput_container_password {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: none;
  }

  .formNewStyle #input-container.nform .gfield {
    grid-area: auto;
  }

  .formNewStyle #field_5_11 {
    position: relative;
    width: 100% !important;
    transform: none;
  }

  .formNewStyle #input-container.nform .gfield {
    padding-left: 0;
    padding-bottom: 0;
  }

  .formNewStyle .nform .gform_footer {
    position: static;
    padding-left: 0;
    padding-top: 30px;
  }

  .formNewStyle .gchoice {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .formNewStyle .nform .gfiuffur-inline {
    left: 0;
  }

  .formNewStyle #content-container>p {
    margin: 30px 0;
    font-size: 50px;
    line-height: 1.5;
    text-align: center;
  }

  .formNewStyle #input-container.nform .ginput_container {
    grid-template-columns: repeat(1, 1fr);
  }

  .formNewStyle #input-container.nform span#input_5_8_1_container {
    margin: 0 0 40px;
  }
}

@media (max-width: 800px) {
  .image-hover {
    aspect-ratio: unset;
  }

  #first-photo {
    height: auto;
  }
  
    #colorized-photo {
    height: auto;
  }

  .cannot-comment p {
    font-size: 20px;
  }

  #photos>.pictures>.last-added>div .hover-text {
    display: block;
    opacity: 1;
  }

  body>header {
    max-height: 97px;
  }

  /* body>header:not(.large) {
    max-height: 73px;
  } */

  .burger-menu {
    z-index: 10000000;
    position: fixed;
  }

  .burger-menu ul {
    display: flex;
    flex-direction: column;
  }

  .login .left {
    width: 100%;
    filter: brightness(0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .login .right {
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .login .input-connection,
  .page-template-template-login #input-container>div {
    width: 100%;
  }

  .login h1 {
    color: #FFFFFF;
  }

  .scomment {
    padding-top: 0;
  }

  .scomment-container {
    padding: 0 15px;
  }

  .cancomment h3 {
    font-size: 38px;
  }

  .add-comment {
    font-size: 18px;
    padding: 50px;
  }

  .cancomment #submit {
    padding: 15px 20px;
    border-radius: 5px;
  }
}

@media (max-width: 515px) {
  li.comment {
    padding: 30px 20px;
  }

  li.comment .comment-author img {
    position: static;
  }

  .comment .comment-author {
    text-align: center;
  }

  li.comment ul.children {
    margin-left: 0;
    margin-right: 0;
    border-top: 1px solid rgb(40 70 107 / 50%);
    margin-top: 50px;
  }

  .hover-text .bottom {
    width: 100%;
  }
}


.hero-sub-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  font-size: 30px;
  font-weight: 500;
}

.profile-active {
  color: #F26921;
}

#gform_confirmation_wrapper_8 .gform_confirmation_message {
  color: white;
}

.source-link {
  color: var(--primary);
  font-size: 25px;
}
