@import url(https://fonts.cdnfonts.com/css/minion-pro);
@import url(https://fonts.cdnfonts.com/css/agenda);
@import url(https://fonts.cdnfonts.com/css/florence);
@font-face {
  font-family: "Florence";
  src: url(fonts/florence-regular.ttf);
}
@font-face {
  font-family: "Agenda";
  src: url(fonts/agenda-light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: "Agenda";
  src: url(fonts/agenda-bold.ttf);
  font-weight: 700;
}
:root {
  --minionproFont: "Minion Pro", sans-serif;
  --florenceFont: "FlorenceHC", sans-serif;
}
body {
  font-family: "Agenda", sans-serif;
  font-size: 16px;
  font-weight: 300;
  background-color: #f9f8f3;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}
h1,
h2,
h3,
h5,
h6,
p {
  margin: 0;
}
a,
a:hover {
  text-decoration: none;
  display: inline-block;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@keyframes lab_top_up {
  0% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}
.pluse,
.pluse2 {
  position: relative;
  top: 10px;
  left: -8px;
  z-index: -1;
}
.pluse::before,
.pluse2::before {
  width: 40px;
  height: 40px;
}
.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
  background: #1ebe73;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  display: block;
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
}
.pluse::after,
.pluse2::after {
  width: 30px;
  height: 30px;
  background: #fff0;
  margin-left: -15px;
  margin-top: -15px;
}
.pluse::before {
  -webkit-animation: pluse_animate 2.5s infinite linear;
  animation: pluse_animate 2.5s infinite linear;
}
.pluse2::before {
  -webkit-animation: pluse_animate 3s infinite linear;
  animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.3);
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
  }
}
.header-area {
  padding-top: 41px;
  padding-bottom: 25px;
  background-color: #556131;
}
.menu-left ul {
  display: flex;
  justify-content: space-around;
}
.menu-right ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-right ul li {
  display: inline-block;
}
.menu-left ul li a,
.menu-right ul li a {
  color: #d1cda7;
  font-family: var(--minionproFont);
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
.menu-left ul li a,
.menu-right ul li a {
  padding-bottom: 10px;
  border-bottom: 2px solid #fff0;
  transition: all 0.3s ease;
}
.menu-left ul li a:hover,
.menu-right ul li a:hover {
  color: #fbf8e0;
  border-bottom: 2px solid #d1d2b4;
}
.logo-wrpper {
  width: 100%;
  text-align: center;
}
.logo-wrpper img {
  width: 229px;
}
.menu-right ul li:last-child a {
  font-style: italic;
  font-weight: 500;
  padding: 13px 22px 10.5px;
  border-radius: 3px;
  border: 1px solid #d1cda7;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}
.menu-right ul li:last-child a svg {
  margin-left: 5px;
}
.menu-right ul li:last-child a:hover {
  color: #556131;
  background: #d1cda7;
}
.menu-right ul li:last-child a svg path {
  transition: all 0.3s ease;
}
.menu-right ul li:last-child a:hover svg path {
  stroke: #556131;
}
.menu-right ul li:last-child a img {
  margin-left: 10px;
}
.small-contact a {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #d1cda7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.small-contact a img {
  width: 55px;
}
.hero-area {
  padding-left: 51px;
  padding-right: 51px;
  padding-bottom: 69px;
  background-color: #556131;
}
.hero-area-img {
  position: relative;
  overflow: hidden;
}
.hero-area-img::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  width: 389.42px;
  height: 366.468px;
  background: url(images/hero-after.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  top: 0;
  right: 0;
}
.hero-area-img::before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  width: 228.148px;
  height: 323.552px;
  background: url(images/hero-before.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  left: 0;
  bottom: -4px;
}
.hero-area-img img {
  width: 100%;
}
.hero-area-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero-content-wrpper {
  padding-top: 240px;
}
.hero-area-title h2 {
  color: #fbf8e0;
  font-family: "Florence", sans-serif;
  font-size: 73px;
  line-height: 120%;
  margin-bottom: 11px;
  position: relative;
  z-index: 50;
  text-transform: uppercase;
}
.hero-area-title p {
  color: #fbf8e0;
  font-family: var(--minionproFont);
  font-size: 22px;
  font-weight: 600;
  position: relative;
  z-index: 50;
  width: 337px;
}
.hero-bottom-circle {
  margin-top: 40px;
  display: flex;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  padding: 16px 19px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background-color: #fbf8e0;
  transition: all 0.3s ease;
}
.hero-bottom-circle:hover {
  background-color: #556131;
}
.hero-bottom-circle:hover p {
  color: #d1cda7;
}
.hero-bottom-circle:hover .icon-section svg path {
  stroke: #d1cda7;
}
.content-section p {
  color: #556131;
  text-align: center;
  font-family: var(--minionproFont);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 100%;
  margin-top: -10px;
}
.emplacement-area {
  background: #556131;
  padding-top: 58px;
  padding-bottom: 68px;
  position: relative;
  overflow: hidden;
}
.emplacement-area::after,
.emplacement-area::before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  width: 332.468px;
  height: 100%;
}
.emplacement-area::before {
  background: url(images/emplacement-before.webp) no-repeat;
  background-size: contain;
  background-position: left;
  left: 0;
  top: 0;
}
.emplacement-area::after {
  background: url(images/emplacement-after.webp) no-repeat;
  background-size: contain;
  background-position: right;
  right: 0;
  top: 0;
}
.emplacement-content-wrpper {
  max-width: 706px;
  margin: auto;
}
.emplacement-icon img {
  display: block;
  margin: auto;
}
.emplacement-title p {
  margin-top: 29px;
  text-align: center;
  color: #9e9b7f;
  font-family: var(--minionproFont);
  font-size: 14px;
  position: relative;
  z-index: 50;
}
.emplacement-heading h2 {
  color: #d1cda7;
  text-align: center;
  font-family: "Florence";
  font-size: 32px;
  margin-top: 21px;
  position: relative;
  z-index: 50;
  max-width: 539px;
  margin: auto;
  margin-top: 21px;
}
.emplacement-content p {
  color: #d1cda7;
  font-size: 20px;
  font-style: normal;
  line-height: 160%;
  margin-top: 29px;
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 50;
}
.emplacement-content p span {
  font-weight: 700;
  line-height: 160%;
}
.emplacement-content h5 {
  color: #d1cda7;
  font-family: var(--minionproFont);
  font-size: 27px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  text-align: center;
  position: relative;
  z-index: 50;
}
.emplacement-btn {
  margin-top: 52px;
}
.emplacement-btn a {
  display: flex;
  width: 200px;
  height: 50px;
  padding: 20px 35px 16px 35px;
  justify-content: center;
  align-items: center;
  color: #d1cda7;
  text-align: center;
  font-family: var(--minionproFont);
  font-size: 20px;
  font-weight: 400;
  border-radius: 3px;
  border: 1px solid #d1cda7;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
}
.emplacement-btn a:hover {
  color: #556131;
  background-color: #d1cda7;
}
.deux-residences-area {
  position: relative;
}
.deux-residences-area::before,
.deux-residences-area::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
}
.deux-residences-area::before {
  width: 323px;
  height: 291px;
  background: url(images/residences-before.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  left: 0;
  top: -20px;
}
.deux-residences-area::after {
  width: 266px;
  height: 367px;
  background: url(images/residences-after.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  right: 0;
  bottom: -27px;
}
.deux-residence-wrpper {
  padding-top: 183px;
}
.residence-content-wrpper {
  padding-bottom: 102px;
}
.deux-residence-top h5 {
  color: #9e9b7f;
  font-family: var(--minionproFont);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}
.deux-residence-top h2 {
  color: #556131;
  text-align: center;
  font-family: "Florence";
  font-size: 40px;
  font-weight: 400;
}
.residence-content-wrpper {
  margin-top: 75px;
}
.residence-left-cntn {
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.residence-left-cntn p {
  color: #556131;
  font-size: 20px; /*! font-family: "Times New Roman", Times, serif; */
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}
.residence-left-cntn p b {
  font-weight: 700;
}
.single-cntn-wrpper {
  display: flex;
}
.res-right-img {
  width: 30%;
  padding-right: 25px;
  border-right: 1px dashed #556131;
  display: flex;
}
.res-right-cntn {
  width: 70%;
  padding-left: 17px;
}
.res-right-img img {
  width: 100%;
  margin-top: auto;
  display: block;
}
.res-right-cntn ul {
  display: flex;
  align-items: center;
  gap: 29px;
}
.res-right-cntn ul li:first-child {
  color: #556131;
  font-family: var(--minionproFont);
  font-size: 64px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  width: 12%;
  text-align: center;
}
.res-right-cntn ul li:last-child span {
  color: #556131;
  font-size: 20px;
  font-weight: 300;
  display: block;
  max-width: 230px;
}

@media screen and (min-width: 590px) {
  .res-right-cntn ul li:last-child span {
    max-width: 200px;
  }
}
.res-right-cntn {
  margin-top: 10px;
}
.counter-area {
  position: relative;
}
.counter-area::before {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  width: 100%;
  height: 10%;
  background: url(images/icons/counter-before.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  left: 0;
  top: 0;
  z-index: 900;
}
.counter-area-bg img {
  width: 100%;
}
.counter-area-bg {
  position: relative;
}
.counter-wrpper {
  width: 65%;
  position: absolute;
  z-index: 60;
  background: #b64c3a;
  margin: auto;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 192px;
  padding-top: 32px;
  padding-bottom: 26px;
}
.single-counter {
  text-align: center;
}
.single-counter p {
  color: #d1cda7;
  text-align: center;
  font-family: var(--minionproFont);
  font-size: 72px;
  font-style: italic;
  font-weight: 400;
}
.single-counter span {
  color: #d1cda7;
  letter-spacing: 1.6px;
  text-transform: uppercase; /*! font-style: italic; */
}
.single-counter span br {
  display: none;
}
.confort-img-wrpper {
  height: 100%;
}
.confort-img-wrpper img {
  width: 100%;
  height: 100%;
}
.confort-bg {
  background: #243516;
}
.confort-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 104px;
  padding-right: calc((100vw - 1320px) / 2);
}
.confort-content h2 {
  color: #d1cda7;
  font-family: "Florence";
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 57px;
}
.confort-content p {
  color: #d1cda7;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  margin-bottom: 30px;
}
.appartements-area {
  position: relative;
  padding-bottom: 252px;
  overflow: hidden;
}
.appartements-area::before,
.appartements-area::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
}
.appartements-area::before {
  width: 422px;
  height: 318px;
  background: url(images/icons/appartements-before.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  top: 0;
  left: 0;
}
.appartements-area::after {
  width: 362px;
  height: 273px;
  background: url(images/appartement-after.webp) no-repeat;
  background-size: contain;
  background-position: bottom center;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.appartement-top-wrpper {
  max-width: 706px;
  margin: auto;
  padding-top: 112px;
}
.appartement-top-wrpper h5 {
  color: #9e9b7f;
  font-family: var(--minionproFont);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 17px;
}
.appartement-top-wrpper h2 {
  color: #556131;
  text-align: center;
  font-family: "Florence";
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 49px;
}
.appartement-top-wrpper p {
  color: #556131;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  margin-bottom: 49px;
}
.appartement-top-wrpper p span {
  font-weight: 700;
}
.appartement-top-wrpper a {
  width: 200px;
  display: block;
  margin: auto;
  color: #556131;
  text-align: center;
  font-family: var(--minionproFont);
  font-size: 20px;
  font-weight: 400;
  padding: 15px 35.5px 11px;
  border-radius: 3px;
  border: 1px solid #556131;
  transition: all 0.3s ease;
}
.appartement-top-wrpper a:hover {
  color: #d1cda7;
  background-color: #556131;
}
.post-wrpper {
  margin-top: 78px;
}
.post-img img {
  width: 100%;
}
.post-content h3 {
  color: #556131;
  font-family: var(--minionproFont);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 37px;
}
.post-content p {
  margin-bottom: 32px;
}
.second-post {
  margin-top: 90px;
}
.share-map-area {
  padding-top: 73px;
  padding-bottom: 35px;
  background-color: #243516;
}
.map-area-title h5 {
  color: #9e9b7f;
  font-family: var(--minionproFont);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
}
.map-area-title h2 {
  color: #d1cda7;
  text-align: center;
  font-family: "Florence";
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-top: 17px;
  margin-bottom: 69px;
}
.map-wrpper img {
  display: block;
  margin: auto;
}
.de-la-region-area {
  padding-top: 52px;
  padding-bottom: 65px;
  background: #243516;
  position: relative;
}
.de-la-region-area::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  width: 100%;
  height: 20px;
  background: url(images/icons/dela-region-after.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  bottom: 0;
  left: 0;
}
.dela-title-wrpper h3 {
  color: #d1cda7;
  font-family: var(--minionproFont);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.single-dela-post {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.dela-post-cntn p {
  color: #d1cda7;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 22px;
}
.dela-post-wrpper {
  margin-top: 67px;
}
.dela-post-wrpper .row {
  row-gap: 57px;
}
.infrastructures-area {
  padding-top: 40px;
  padding-bottom: 66px;
  background: #556131;
}
.infrastructures-top h3 {
  color: #d1cda7;
  font-family: var(--minionproFont);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 41px;
}
.all-infrst-post {
  width: 80%;
  margin: auto;
}
.single-infrst-post {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.infrst-post-cntn p {
  color: #d1cda7;
  text-align: center;
  font-size: 20px; /*! font-weight: 400; */
  line-height: 22px;
}
.cote-hotel-area {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.cote-hotel-area::before,
.cote-hotel-area::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
}
.cote-hotel-area::before {
  width: 299.89px;
  height: 594.015px;
  background: url(images/icons/cote-hotel-before.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  left: 0;
  bottom: -145px;
}
.cote-hotel-area::after {
  width: 299.89px;
  height: 594.015px;
  background: url(images/icons/cote-hotel-after.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  right: 0;
  bottom: -145px;
}
.cote-hotel-top {
  max-width: 662px;
  margin: auto;
}
.cote-hotel-top img {
  width: 100%;
}
.cote-hotel-content {
  max-width: 706px;
  margin: auto;
}
.cote-hotel-content {
  margin-top: 22px;
  padding-bottom: 97px;
}
.cote-hotel-content h5 {
  color: #9e9b7f;
  font-family: var(--minionproFont);
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-align: center;
}
.cote-hotel-content h2 {
  margin: 18px auto;
  color: #556131;
  text-align: center;
  font-family: "Florence";
  font-size: 32px;
  max-width: 564px; /*! margin: auto; */
}
.cote-hotel-desc p {
  color: #556131;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
}
.superficie-area {
  padding: 32px 0;
  background: #bd4f3c;
}
.single-superficie-content {
  display: flex;
  justify-content: center;
}
.superficie-icon {
  padding-right: 34px;
  border-right: 1px dashed #d1cda7;
}
.superficie-content {
  padding-left: 25px;
}
.superficie-content p {
  color: #d1cda7;
  font-family: var(--minionproFont);
  font-size: 72px;
  font-style: italic;
  line-height: 94%;
}
.superficie-content span {
  color: #d1cda7;
  font-size: 16px; /*! font-weight: 400; */
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.footer-area {
  background: #556131;
  position: relative;
  overflow: hidden;
}
.footer-area::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  width: 561.338px;
  height: 692.168px;
  background: url(images/icons/footer-after.svg) no-repeat;
  background-size: contain;
  background-position: right;
  top: -102px;
  right: 0;
}
.footer-top-wrpper {
  padding-top: 77px;
  padding-bottom: 79px;
}
.footer-top-content h2 {
  color: #d1cda7;
  font-family: "Florence";
  font-size: 42px;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  position: relative;
  z-index: 90000;
}
.footer-circle {
  display: flex;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  padding: 26px 29px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background-color: #556131;
  border: 1px solid #d1cda7;
  position: relative;
  z-index: 9000;
  transition: all 0.3s ease;
}
.footer-circle:hover {
  background-color: #d1cda7;
}
.footer-circle:hover p {
  color: #556131;
}
.footer-circle .fc-img svg {
  transition: all 0.3s ease;
}
.footer-circle:hover .fc-img svg path {
  stroke: #556131;
}
.fc-contetn p {
  color: #d1cda7;
  text-align: center;
  font-family: var(--minionproFont);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 100%;
}
.footer-bottom {
  padding-bottom: 53px;
}
.footer-logo-wrpper {
  border-right: 1px dashed #d1cda7;
}
.location-footer p {
  color: #d1cda7;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 700;
}
.location-footer ul {
  display: flex;
  gap: 27px;
}
.location-footer ul li span {
  color: #d1cda7;
  font-size: 16px; /*! font-weight: 400; */
  display: block;
  position: relative;
  z-index: 700;
  margin-bottom: 4px;
}
.contact-wrpper {
  position: relative;
  background-color: #556131;
}
.contact-wrpper::before,
.contact-wrpper::after {
  content: "";
  display: block;
  clear: both;
  position: absolute;
  width: 332px;
  height: 100%;
}
.contact-wrpper::before {
  background: url(images/contact-page-before.webp) no-repeat;
  background-size: contain;
  background-position: left;
  left: 0;
  top: 0;
}
.contact-wrpper::after {
  background: url(images/contact-page-after.webp) no-repeat;
  background-size: contain;
  background-position: right;
  top: 0;
  right: 0;
}
.contact-form-wrpper {
  max-width: 795px;
  margin: auto;
  padding-top: 98px;
  padding-bottom: 78px;
}
.form-top {
  display: flex;
  align-items: center;
}
.form-title {
  width: 90%;
}
.form-close {
  width: 10%;
}
.form-title h2 {
  color: #d1cda7;
  font-family: "Florence";
  font-size: 36px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.close-btn {
  display: flex;
  width: 72px;
  height: 72px;
  padding: 20px 25px;
  align-items: center;
  background-color: #d1cda7;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.close-btn svg g,
.close-btn svg g path {
  transition: all 0.3s ease;
}
.close-btn:hover {
  background-color: #bd4f3c;
}
.close-btn:hover svg g path,
.close-btn:hover svg g {
  stroke: #fff;
  fill: #fff;
}

.from-wrpper {
  margin-top: 41px;
}
.from-wrpper > p {
  color: #d1cda7;
  font-size: 20px; /*! font-weight: 400; */
  margin-bottom: 41px;
}
/* Add this to make the other radio styles more specific */
.form-radio-group [type="radio"]:checked,
.form-radio-group [type="radio"]:not(:checked) {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-radio-group [type="radio"]:checked + label,
.form-radio-group [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  display: inline-block;
  color: #d1cda7;
  font-size: 20px;
  font-style: normal;
  line-height: 100%;
}
.form-radio-group [type="radio"]:checked + label:before,
.form-radio-group [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff0;
}
.form-radio-group [type="radio"]:checked + label:after,
.form-radio-group [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #d1cda7;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.form-radio-group [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.form-radio-group [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.radio-input-row {
  display: flex;
  column-gap: 70px;
}
.first-name input,
.last-name input {
  background-color: #fff0;
  border: none;
  outline: none;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  border-bottom: 1px solid #d1cda7;
  padding-bottom: 20px;
  color: #d1cda7;
  width: 100%;
}
.first-name input::placeholder,
.last-name input::placeholder {
  color: #d1cda7;
  font-family: "Agenda";
}
.name-input-row {
  margin-top: 45px;
  display: flex;
  gap: 36px;
}
.first-name,
.last-name {
  width: 100%;
}
.form-check label {
  color: #d1cda7;
  font-size: 20px;
  font-weight: 400;
}
.custom-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.custom-label {
  display: inline-block;
  position: relative;
  padding-left: 45px;
  cursor: pointer;
  user-select: none;
}
.checkbox-row label {
  color: #d1cda7;
  font-family: "Agenda";
  font-size: 20px;
  font-style: normal; /*! font-weight: 400; */
  line-height: normal;
}
.custom-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #d1cda7;
  border-radius: 4px;
  background-color: #fff0;
  transition: background-color 0.3s;
}
.custom-checkbox:checked + .custom-label::before {
  background-color: #fff0;
  border-color: #d1cda7;
}
.custom-checkbox:checked + .custom-label::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.submit-btn-wrpper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.submit-btn-wrpper p {
  color: #d1cda7;
  font-size: 16px;
  font-weight: 400;
}
.submit-btn-wrpper input {
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #d1cda7;
  background: #d1cda7;
  color: #556131;
  text-align: center;
  font-family: var(--minionproFont);
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
}
.contact-footer-area {
  padding: 44px 0;
  background-color: #243516;
}
.contact-footer-wrpper {
  max-width: 795px;
  margin: auto;
}
.contact-footer-location ul li span,
.contact-footer-email ul li span {
  color: #d1cda7;
  font-size: 18px;
  font-weight: 300;
}
.contact-footer-logo,
.contact-footer-location,
.contact-footer-email {
  width: 33%; /*! text-align: center; */
}
.contact-footer-location,
.contact-footer-email {
  padding-left: 36px;
}
.contact-footer-location ul,
.contact-footer-email ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.contact-footer-wrpper {
  display: flex;
  justify-content: space-between;
}
.contact-footer-location {
  border-left: 1px dashed #d1cda7;
  border-right: 1px dashed #d1cda7;
}
.cote-hotel-desc p span {
  font-weight: 700;
}
.submit-btn-wrpper p {
  font-weight: 300;
  color: #d1cda7;
  font-size: 16px;
}
.post-content p {
  font-weight: 300;
  color: #556131;
  font-size: 20px;
  line-height: 160%;
}
.popup-btn {
  cursor: pointer;
}
.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
  z-index: 9999999999;
}
.popup-content {
  position: relative;
  background-color: #fff; /*! margin: 3% auto; */
  border: 1px solid #888;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.close-btn {
  cursor: pointer;
}
.res-second-img img {
  width: 127px;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
}
.dela-post-cntn,
.infrst-post-cntn {
  width: 207px;
  margin: auto;
}
.footer-top-content {
  max-width: 812px;
}
.pdr {
  padding-right: 50px;
}
.pdl {
  padding-left: 50px;
}
.custom-checkbox:checked + .custom-label::after {
  top: 10px;
}

.iwrap a {
  color: #d1cda7;
  text-decoration: none;
}
@media screen and (min-width: 402px) {
  .custom-checkbox:checked + .custom-label::after {
    top: 1px;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1699px) {
  .hero-content-wrpper {
    padding-top: 115px;
    padding-left: 95px;
  }
  .hero-area-title h2 {
    line-height: normal;
  }
  .counter-wrpper {
    gap: 145px;
    padding-bottom: 34px;
  }
  .appartements-area::before {
    width: 270px;
    height: 237px;
  }
  .deux-residence-wrpper {
    padding-top: 150px;
  }
  .deux-residences-area::before {
    width: 239px;
    height: 226px;
  }
  .deux-residences-area::after {
    width: 156px;
    height: 232px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content-wrpper {
    padding-top: 100px;
    padding-left: 75px;
  }
  .hero-area-title h2 {
    font-size: 52px;
    line-height: normal;
  }
  .hero-bottom-circle {
    margin-top: 25px;
  }
  .hero-area-img::before {
    background-size: calc(180px);
    bottom: -98px;
  }
  .hero-area-img::after {
    width: 178.42px;
    height: 246.468px;
  }
  .counter-wrpper {
    gap: 100px;
  }
  .confort-content {
    padding-left: 50px;
    padding-right: calc((100vw - 1120px) / 2);
  }
  .confort-content h2 {
    margin-bottom: 40px;
  }
  .appartements-area::before {
    width: 175px;
    height: 154px;
  }
  .appartements-area {
    padding-bottom: 180px;
  }
  .appartements-area::after {
    height: 170px;
  }
  .cote-hotel-area::before,
  .cote-hotel-area::after {
    width: 188.89px;
    height: 478.015px;
  }
  .deux-residence-wrpper {
    padding-top: 150px;
  }
  .deux-residences-area::before {
    width: 239px;
    height: 226px;
  }
  .deux-residences-area::after {
    width: 156px;
    height: 232px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .logo-wrpper img {
    width: 100%;
  }
  .menu-right,
  .menu-left {
    display: none;
  }
  .hero-content-wrpper {
    padding-top: 60px;
    padding-left: 50px;
  }
  .hero-area-title h2 {
    font-size: 45px;
    line-height: normal;
  }
  .hero-bottom-circle {
    margin-top: 25px;
  }
  .hero-area-img::before {
    background-size: calc(180px);
    bottom: -98px;
  }
  .hero-area-img::after {
    width: 123.42px;
    height: 174.468px;
  }
  .counter-wrpper {
    width: 85%;
    bottom: -15%;
    gap: 136px;
    padding-top: 12px;
  }
  .confort-content {
    padding-left: 50px;
    padding-right: calc((100vw - 920px) / 2);
  }
  .confort-content h2 {
    margin-bottom: 20px;
    font-size: 28px;
  }
  .appartements-area::before {
    width: 175px;
    height: 154px;
  }
  .second-post {
    margin-top: 60px;
  }
  .appartements-area {
    padding-bottom: 130px;
  }
  .appartements-area::after {
    height: 125px;
  }
  .cote-hotel-area::before,
  .cote-hotel-area::after {
    width: 188.89px;
    height: 478.015px;
  }
  .cote-hotel-desc {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-top-wrpper {
    padding-top: 45px;
    padding-bottom: 50px;
  }
  .footer-top-content h2 {
    font-size: 35px;
  }
  .map-wrpper {
    width: 80%;
    margin: auto;
  }
  .map-wrpper img {
    width: 100%;
  }
  .deux-residence-wrpper {
    padding-top: 150px;
  }
  .deux-residences-area::before {
    width: 170px;
    height: 171px;
  }
  .deux-residences-area::after {
    width: 156px;
    height: 232px;
  }
  .contact-form-wrpper {
    position: relative;
    z-index: 989898;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .logo-wrpper img {
    width: 220px;
  }
  .menu-right,
  .menu-left {
    display: none;
  }
  .hero-content-wrpper {
    padding-top: 40px;
    padding-left: 40px;
  }
  .hero-area-title h2 {
    font-size: 35px;
    line-height: normal;
    margin-bottom: 0;
  }
  .hero-bottom-circle {
    margin-top: 10px;
    width: 120px;
    height: 120px;
  }
  .content-section p {
    font-size: 16px;
  }
  .hero-area-img::before {
    width: 150.148px;
    height: 213.552px;
  }
  .hero-area-img::after {
    width: 123.42px;
    height: 174.468px;
  }
  .counter-wrpper {
    width: 95%;
    bottom: -25%;
    gap: 90px;
    padding-top: 32px;
  }
  .appartements-area::before {
    width: 117px;
    height: 103px;
  }
  .post-wrpper {
    margin-top: 50px;
  }
  .post-content {
    margin-top: 30px;
  }
  .post-content h3 {
    margin-bottom: 15px;
  }
  .post-content p {
    margin-bottom: 12px;
  }
  .second-post {
    margin-top: 50px;
  }
  .appartements-area {
    padding-bottom: 130px;
  }
  .appartements-area::after {
    height: 125px;
  }
  .cote-hotel-area::before,
  .cote-hotel-area::after {
    width: 120.89px;
    height: 408.015px;
  }
  .cote-hotel-desc {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .single-superficie-content {
    justify-content: flex-start;
  }
  .superficie-wrpper .row {
    row-gap: 30px;
  }
  .footer-top-content h2 {
    font-size: 35px;
  }
  .footer-top-wrpper {
    padding-top: 50px;
    padding-bottom: 35px;
  }
  .footer-circle {
    margin-top: 31px;
  }
  .location-footer ul {
    gap: 20px;
    flex-direction: column;
  }
  .location-footer {
    margin-top: 34px;
  }
  .location-footer p {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .map-wrpper {
    width: 80%;
    margin: auto;
  }
  .map-wrpper img {
    width: 100%;
  }
  .deux-residence-wrpper {
    padding-top: 150px;
  }
  .deux-residences-area::before {
    width: 239px;
    height: 226px;
  }
  .deux-residences-area::after {
    width: 156px;
    height: 232px;
  }
  .residence-left-cntn {
    margin: auto;
  }
  .deux-residence-top h2 {
    font-size: 31px;
  }
  .residence-content-wrpper,
  .residence-right-cntn {
    margin-top: 35px;
  }
  .contact-form-wrpper {
    position: relative;
    z-index: 989898;
    padding-left: 50px;
    padding-right: 50px;
  }
  .contact-footer-area {
    padding-left: 50px;
  }
  .form-title h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .logo-wrpper img {
    width: 100%;
  }
  .menu-right,
  .menu-left {
    display: none;
  }
  .logo-wrpper img {
    width: 180px;
  }
  .header-area {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .hero-area-title h2 {
    font-size: 54px;
    margin-bottom: 12px;
  }
  .hero-bottom-circle {
    margin-top: 21px;
  }
  .hero-area-img::after {
    width: 131.42px;
    height: 186.468px;
    top: -24px;
    right: -21px;
  }
  .hero-area-img::before {
    width: 150.148px;
    height: 208.552px;
    left: -31px;
  }
  .hero-content-wrpper {
    padding-top: 350px;
    padding-left: 30px;
  }
  .counter-wrpper {
    width: 100%;
    bottom: -20px;
    gap: 78px;
    padding-top: 32px;
    position: initial;
    transform: translateX(0);
    margin-top: -7px;
  }
  .appartements-area::before {
    width: 253px;
    height: 223px;
    top: -120px;
    left: -116px;
  }
  .appartements-area {
    overflow: hidden;
  }
  .post-wrpper {
    margin-top: 50px;
  }
  .post-content {
    margin-top: 30px;
  }
  .post-content h3 {
    margin-bottom: 15px;
  }
  .post-content p {
    margin-bottom: 12px;
  }
  .appartement-top-wrpper h2 {
    margin-bottom: 20px;
  }
  .appartement-top-wrpper p {
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .second-post {
    margin-top: 50px;
  }
  .appartements-area {
    padding-bottom: 130px;
  }
  .appartements-area::after {
    height: 125px;
  }
  .all-infrst-post .row {
    row-gap: 30px;
  }
  .cote-hotel-area::before,
  .cote-hotel-area::after {
    width: 120.89px;
    height: 408.015px;
  }
  .cote-hotel-desc {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .single-superficie-content {
    justify-content: flex-start;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
  }
  .superficie-wrpper .row {
    row-gap: 30px;
  }
  .footer-top-content h2 {
    font-size: 24px;
  }
  .footer-top-wrpper {
    padding-top: 50px;
    padding-bottom: 35px;
  }
  .footer-circle {
    margin-top: 31px;
  }
  .location-footer ul {
    gap: 20px;
    flex-direction: column;
  }
  .location-footer {
    margin-top: 34px;
  }
  .location-footer p {
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
    z-index: 800;
  }
  .footer-logo-wrpper {
    border-right: none;
  }
  .map-wrpper {
    width: 80%;
    margin: auto;
  }
  .map-wrpper img {
    width: 100%;
  }
  .map-area-title h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .deux-residence-wrpper {
    padding-top: 120px;
  }
  .deux-residences-area::before {
    width: 194px;
    height: 191px;
  }
  .deux-residences-area::after {
    width: 156px;
    height: 160px;
  }
  .residence-left-cntn {
    margin: auto;
  }
  .deux-residence-top h2 {
    font-size: 36px;
  }
  .residence-content-wrpper,
  .residence-right-cntn {
    margin-top: 35px;
  }
  .deux-residences-area {
    overflow: hidden;
  }
  .contact-form-wrpper {
    position: relative;
    z-index: 989898;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 60px;
  }
  .contact-wrpper::before,
  .contact-wrpper::after {
    display: none;
  }
  .form-title h2 {
    font-size: 25px;
  }
  .close-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }
  .contact-footer-wrpper {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .contact-footer-location {
    border: none;
  }
}
@media screen and (max-width: 575px) {
  .menu-right,
  .menu-left {
    display: none;
  }
  .small-contact a {
    width: 42px;
    height: 42px;
  }
  .small-contact a img {
    width: 32px;
  }
  .logo-wrpper {
    text-align: right;
  }
  .hero-area {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero-area-title h2 {
    font-size: 40px;
    margin-bottom: 0;
    width: 314px;
  }
  .hero-bottom-circle {
    margin-top: 17px;
  }
  .hero-area-img::after {
    width: 131.42px;
    height: 186.468px;
    top: -24px;
    right: -21px;
  }
  .hero-area-img::before {
    width: 150.148px;
    height: 208.552px;
    left: -31px;
  }
  .hero-content-wrpper {
    padding-top: 220px;
    padding-left: 0;
  }
  .hero-area-title p br {
    display: none;
  }
  .emplacement-area::before {
    left: -47%;
  }
  .emplacement-area::after {
    right: -41%;
  }
  .emplacement-area {
    padding-top: 10px;
  }
  .emplacement-heading {
    width: 350px;
    margin: auto;
  }
  .emplacement-heading h2 {
    font-size: 26px;
  }
  .emplacement-content {
    width: 350px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  .emplacement-content h5 {
    font-size: 20px;
  }
  .counter-wrpper {
    width: 100%;
    bottom: 0;
    gap: 10px;
    padding-top: 32px;
    position: initial;
    transform: translateX(0);
    margin-top: -7px;
    padding-top: 15px;
    justify-content: space-around;
  }
  .single-counter span br {
    display: block;
  }
  .appartements-area::before {
    width: 253px;
    height: 223px;
    top: -120px;
    left: -116px;
  }
  .appartements-area {
    overflow: hidden;
  }
  .post-wrpper {
    margin-top: 50px;
  }
  .post-content {
    margin-top: 30px;
    padding-left: 0;
    padding-right: 25px;
    width: 350px;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .post-content h3 {
    margin-bottom: 15px;
  }
  .post-content p {
    margin-bottom: 12px;
  }
  .appartement-top-wrpper h2 {
    margin-bottom: 20px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .appartement-top-wrpper p {
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
  }
  .mblpl {
    padding: 0;
  }
  .second-post {
    margin-top: 50px;
  }
  .appartements-area {
    padding-bottom: 130px;
  }
  .appartements-area::after {
    height: 125px;
  }
  .dela-mobile-slider {
    margin-top: 52px;
  }
  .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .owl-dots .active span {
    width: 15px !important;
    height: 15px !important;
    background: #fff !important;
  }
  .cote-hotel-area::before,
  .cote-hotel-area::after {
    width: 117.193px;
    height: 232.132px;
  }
  .cote-hotel-desc {
    /*! width: 80%; */
    margin-left: auto;
    margin-right: auto;
  }
  .cote-hotel-area::before {
    left: -27px;
    bottom: -38px;
  }
  .cote-hotel-area::after {
    right: -40px;
    bottom: -50px;
  }
  .cote-hotel-content h2 {
    font-size: 26px;
  }
  .single-superficie-content {
    justify-content: flex-start;
    width: 81%;
    margin-left: auto;
    margin-right: auto;
  }
  .superficie-wrpper .row {
    row-gap: 30px;
  }
  .superficie-content p {
    font-size: 64px;
  }
  .superficie-icon {
    padding-right: 23px;
  }
  .footer-top-content h2 {
    font-size: 24px;
  }
  .footer-top-wrpper {
    padding-top: 50px;
    padding-bottom: 35px;
  }
  .footer-circle {
    margin-top: 31px;
    margin-left: auto;
    margin-right: auto;
  }
  .location-footer ul {
    gap: 20px;
    flex-direction: column;
  }
  .location-footer {
    margin-top: 34px;
  }
  .location-footer p {
    margin-bottom: 20px;
    font-size: 16px;
    position: relative;
    z-index: 800;
  }
  .footer-logo-wrpper {
    border-right: none;
    position: relative;
    z-index: 9874;
  }
  .footer-top-content {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    padding-bottom: 30px;
    padding-left: 30px;
  }
  #mobile-map {
    width: 100%;
  }
  .mobile-padding-less {
    padding: 0 !important;
  }
  .map-area-title h2 {
    font-size: 30px;
    margin-bottom: 29px;
  }
  .share-map-area {
    padding-top: 40px;
    padding-bottom: 0;
  }
  .deux-residence-wrpper {
    padding-top: 120px;
  }
  .deux-residences-area::before {
    width: 145px;
    height: 151px;
  }
  .deux-residences-area::after {
    width: 156px;
    height: 160px;
  }
  .residence-left-cntn {
    margin: auto;
    width: 350px;
  }
  .deux-residence-top h2 {
    font-size: 26px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .residence-content-wrpper,
  .residence-right-cntn {
    margin-top: 35px;
  }
  .deux-residences-area {
    overflow: hidden;
  }
  .single-cntn-wrpper {
    flex-direction: column;
  }
  .res-right-img,
  .res-right-cntn {
    width: 100%;
  }
  .res-right-img {
    border-right: none;
  }
  .res-right-img img {
    width: 127px;
    margin: auto;
  }
  .res-right-cntn ul li:first-child {
    width: 27%;
    text-align: center;
  }
  .res-right-cntn ul {
    gap: 30px;
  }
  .emplacement-btn a {
    position: relative;
    z-index: 123456;
  }
  .contact-wrpper::before,
  .contact-wrpper::after {
    display: none;
  }
  .contact-form-wrpper {
    padding-top: 10px;
  }
  .form-title {
    width: 83%;
    margin-top: 15px;
  }
  .form-title h2 {
    font-size: 26px;
  }
  .form-top {
    flex-direction: column;
  }

  .from-wrpper {
    padding-left: 27px;
    padding-right: 27px;
  }
  .name-input-row {
    flex-direction: column;
  }
  .submit-btn-wrpper {
    align-items: center;
  }
  .contact-footer-wrpper {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  .contact-footer-location {
    border: none;
  }
  .contact-footer-logo,
  .contact-footer-location,
  .contact-footer-email {
    width: 100%;
    text-align: center;
  }
  .form-close {
    width: 100%;
  }
  .close-btn {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
    margin-left: auto;
    margin-right: 10px;
  }
  .close-btn img {
    width: 16px;
  }
  .cote-hotel-content {
    width: 80%;
    margin: auto;
  }
  .res-right-cntn ul li:first-child {
    width: 16% !important;
  }
  .mobile-img img {
    width: 60%;
  }
  .infrastructures-top,
  .map-area-title {
    width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .mobile-map-wrpper svg {
    width: 100%;
  }
  .map-locator-area {
    position: relative;
  }
  #dot-one {
    position: absolute;
    right: 10%;
    bottom: 52%;
  }
  #dot-two {
    position: absolute;
    right: 28%;
    top: 22%;
  }
  #dot-three {
    position: absolute;
    right: 47%;
    top: 24%;
  }
  #dot-four {
    position: absolute;
    left: 16%;
    top: 22%;
  }
  #dot-five {
    position: absolute;
    left: 12%;
    top: 36%;
  }
  #dot-six {
    position: absolute;
    left: 5%;
    top: 5%;
  }
  .location-icon {
    width: 38px;
    position: absolute;
    top: 5%;
    left: 26%;
  }
  .clickable-content {
    width: 185px;
    padding: 15px 11px;
    border-radius: 7px;
    background: #727d4e;
    margin: 0 auto 50px;
    position: relative;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .clickable-content::after {
    content: "";
    display: block;
    clear: both;
    position: absolute;
    width: 13px;
    height: 19px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #727d4e;
    clip-path: polygon(100% 1%, 0 0, 50% 100%);
  }
  .clickable-content span {
    color: #d1cda7;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    display: block;
  }
  .map-locator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #fff0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .map-locator span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #727d4e;
    display: block;
    cursor: pointer;
  }
  .clicked {
    border-color: #d1cda7;
  }
  .clicked span {
    background-color: #d1cda7;
  }
  .cannes-indicator span,
  .station-indicator span,
  .nice-indicator span {
    color: #d1cda7;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.48px;
    line-height: 18px;
    display: block;
    text-align: center;
    text-transform: uppercase;
  }
  .station-indicator span {
    text-align: left;
  }
  .station-indicator img {
    display: block;
    margin-left: auto; /* This pushes the object to the right */
    margin-top: 5px; /* Optional: adds some space between text and object */
  }
  .cannes-indicator {
    width: 59px;
    position: absolute;
    left: 1%;
    bottom: 41%;
  }

  .cannes-indicator img {
    display: block;
    margin: 10px auto 0; /* This centers it horizontally */
  }
  .station-indicator {
    width: 70px;
    position: absolute;
    right: 4%;
    top: -3%;
  }
  .nice-indicator {
    width: 34px;
    position: absolute;
    right: 22px;
    top: 26%;
  }
  .map-title p {
    color: #243516;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.48px;
    text-transform: uppercase;
  }
  .map-title {
    width: 141px;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .close-btn svg {
    width: 15px;
  }

  #clic-here {
    color: #d1cda7;
    font-size: 18px;
    text-align: center;
    padding: 15px;
    margin-top: 10px;
    display: block; /* This ensures the element takes full width */
  }
}

.dual-btn-wrpper {
  margin-top: 44px;
}

.button-group {
  display: flex;
  gap: 18px;
}

.button-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.button-group label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--minionproFont);
  font-size: 20px;
  font-weight: 400;
  border-radius: 3px;
  border: 1px solid #d1cda7;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Style for the first button (RDV) */
.button-group label[for="rdv"] {
  width: 181px;
  height: 50px;
  padding: 20px 30px 16px 30px;
  color: #d1cda7;
  background: transparent;
}

/* Style for the second button (Brochure) */
.button-group label[for="brochure"] {
  width: 280px;
  height: 50px;
  padding: 20px 35px 16px 35px;
  color: #d1cda7;
  background: transparent;
}

/* Hover states */
.button-group label:hover {
  opacity: 0.9;
}

/* Selected states */
.button-group input[type="radio"]:checked + label[for="rdv"] {
  background: #d1cda7;
  color: #556131;
}

.button-group input[type="radio"]:checked + label[for="brochure"] {
  background: #d1cda7;
  color: #556131;
}

/* Focus states for accessibility */
.button-group input[type="radio"]:focus + label {
  outline: 2px solid #556131;
  outline-offset: 2px;
}

@media screen and (max-width: 575px) {
  .dual-btn-wrpper {
    margin-top: 27px;
  }

  .button-group {
    justify-content: center;
    gap: 10px;
    padding-inline: 15px;
  }

  .button-group label[for="rdv"] {
    flex-grow: 1;
    height: 40px;
    padding: 20px 10px 16px 10px;
    font-size: 16px;
  }

  .button-group label[for="brochure"] {
    flex-grow: 1;
    height: 40px;
    padding: 20px 10px 16px 10px;
    font-size: 16px;
  }
}
