@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-BookObl.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-Demi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-DemiObl.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-BoldObl.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}
.is-xxs, .is-xs, .is-s, .is-m, .is-l, .is-xl {
  display: none;
}

@media only screen and (min-width: 320px) {
  .is-xxs {
    display: block;
  }
}

@media only screen and (min-width: 570px) {
  .is-xs {
    display: block;
  }
}

@media only screen and (min-width: 740px) {
  .is-s {
    display: block;
  }
}

@media only screen and (min-width: 1100px) {
  .is-m {
    display: block;
  }
}

@media only screen and (min-width: 1300px) {
  .is-l {
    display: block;
  }
}

@media only screen and (min-width: 1600px) {
  .is-xl {
    display: block;
  }
}

.only-xxs, .only-xs, .only-s, .only-m, .only-l, .only-xl {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 320px) {
  .only-xxs {
    display: block;
  }
}

@media only screen and (min-width: 321px) and (max-width: 570px) {
  .only-xs {
    display: block;
  }
}

@media only screen and (min-width: 571px) and (max-width: 740px) {
  .only-s {
    display: block;
  }
}

@media only screen and (min-width: 741px) and (max-width: 1100px) {
  .only-m {
    display: block;
  }
}

@media only screen and (min-width: 1101px) and (max-width: 1300px) {
  .only-l {
    display: block;
  }
}

@media only screen and (min-width: 1301px) {
  .only-xl {
    display: block;
  }
}

*:focus {
  outline: none !important;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

.pointer {
  cursor: pointer;
}

strong {
  font-weight: 600;
}

.alert {
  line-height: 1.8rem;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.swiper-container {
  position: relative;
}
.swiper-container .swiper-slide {
  background-position: center;
  background-size: cover;
}
.swiper-container .swiper-slide .swiper-button-white {
  transition: 0.5s ease;
  margin-left: 10px;
  margin-right: 10px;
}
.swiper-container .swiper-slide .swiper-button-white:hover {
  transform: scale(1.2);
  transition: 0.5s ease;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.container-fluid {
  padding: 0 !important;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#loader {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}
#loader .loading {
  height: 20vw;
  margin: auto;
}
@media only screen and (max-width: 1100px) {
  #loader .loading {
    width: 50vw;
    height: auto;
  }
}
@media only screen and (max-width: 740px) {
  #loader .loading {
    width: 90vw;
  }
}

.fade-in {
  opacity: 0;
}

.slide-up-fade-in {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}

.slide-right-fade-in {
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
}

.slide-left-fade-in {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
}

html, body {
  width: 100vw;
  color: #000000;
  font-family: "FuturaPT";
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
@media only screen and (max-width: 1100px) {
  html, body {
    scroll-padding-top: 10px;
  }
}
@media only screen and (max-width: 1100px) {
  html, body {
    overflow-x: hidden;
  }
}
html ::-moz-selection, body ::-moz-selection {
  background: #76B729;
}
html ::selection, body ::selection {
  background: #76B729;
}
html ::-moz-selection, body ::-moz-selection {
  background: #76B729;
}
html a, body a {
  color: #76B729;
  font-weight: normal;
}
html a:hover, body a:hover {
  color: #5D7235;
}
html img, body img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

body {
  overflow-x: hidden;
  position: absolute;
  background-color: #FAFDFA;
}

h1, h2, h3, h4, h5 {
  font-family: "FuturaPT";
}

h1 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (max-width: 1600px) {
  h1 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 740px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
}

h2 {
  color: #5D7235;
  font-size: 32px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1100px) {
  h2 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 740px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  max-width: 100%;
  color: #76B729;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-wrap: pretty;
}
h3::before {
  content: "";
  background-color: #76B729;
  height: 2px;
  width: 60px;
  margin-right: 10px;
}
@media only screen and (max-width: 1100px) {
  h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 740px) {
  h3 {
    font-size: 16px;
  }
}

h4 {
  color: #76B729;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1100px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 740px) {
  h4 {
    font-size: 20px;
  }
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

p, a, ul {
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 1100px) {
  p, a, ul {
    font-size: 18px;
    line-height: 22px;
  }
}

p, ul {
  margin-bottom: 20px;
}

hr {
  border-top: 1px solid #76B729;
}

.active {
  font-weight: 600 !important;
}
.active span {
  font-weight: 600 !important;
}

.hover {
  color: #76B729 !important;
}

#biskoui-mount a {
  font-size: inherit;
  line-height: inherit;
}
#biskoui-mount p {
  font-size: inherit;
  line-height: inherit;
}

.biskoui-vimeo-placeholder img {
  height: initial;
  width: initial;
}

button {
  background-color: #76B729;
  border: 1px solid #76B729;
  border-radius: 100px;
  padding: 10px 30px;
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
}
button:hover {
  background-color: #5D7235;
  border: 1px solid #5D7235;
  color: #ffffff;
}

.img, img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next, .swiper-button-prev {
  color: #5D7235;
}

.swiper-pagination-bullet {
  background: #5D7235;
}

.carousel-control {
  margin: auto 24px !important;
  border: none;
  width: 50px;
  height: 50px !important;
  background-color: rgba(0, 0, 0, 0.5);
}
.carousel-control:hover {
  border: none;
  background-color: #76B729;
}

nav {
  position: absolute !important;
  flex-wrap: wrap !important;
  z-index: 5000;
  height: 120px;
  width: 100vw;
  margin: 0;
  padding: 0px 160px;
}
nav .alert {
  padding: 8px 12px !important;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
}
nav .alert p {
  color: #5D7235;
  margin: 0;
  padding: 0;
  width: calc(100% - 30px);
}
nav .alert button {
  position: relative !important;
  padding: 4px !important;
}
@media only screen and (max-width: 1100px) {
  nav .alert button {
    position: absolute !important;
  }
}
nav .alert button:hover {
  border: none;
  background-color: #76B729;
}
nav.nav-bg {
  background-color: #76B729;
}
nav .navbar-toggler {
  z-index: 6000;
}
nav .navbar-toggler:focus {
  box-shadow: none;
}
nav .navbar-toggler:hover {
  background-color: transparent;
  border: none;
}
nav .navbar-toggler .animated-burger {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
nav .navbar-toggler .animated-burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background: #ffffff;
}
nav .navbar-toggler .animated-burger span:nth-child(1) {
  top: 0px;
}
nav .navbar-toggler .animated-burger span:nth-child(2), nav .navbar-toggler .animated-burger span:nth-child(3) {
  top: 10px;
}
nav .navbar-toggler .animated-burger span:nth-child(4) {
  top: 20px;
}
nav .navbar-toggler .animated-burger.open span {
  background: #5D7235;
}
nav .navbar-toggler .animated-burger.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}
nav .navbar-toggler .animated-burger.open span:nth-child(2) {
  transform: rotate(45deg);
}
nav .navbar-toggler .animated-burger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
nav .navbar-toggler .animated-burger.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}
nav .navbar-collapse {
  z-index: 5500;
  justify-content: flex-end;
}
nav .navbar-collapse .navbar-nav {
  align-items: center;
}
nav .navbar-collapse .navbar-nav li {
  margin: 0px 12px;
}
nav .navbar-collapse .navbar-nav li a {
  color: #ffffff;
}
nav .navbar-collapse .navbar-nav li button {
  border: #ffffff;
  background-color: #ffffff;
  color: #76B729;
}
nav .navbar-collapse .navbar-nav li button:hover {
  border: #76B729;
  background-color: #76B729;
  color: #ffffff;
}
nav .navbar-collapse .navbar-nav li .lang-switcher {
  color: #ffffff;
}
@media only screen and (max-width: 1100px) {
  nav .navbar-collapse .navbar-nav li .lang-switcher {
    color: #76B729;
  }
}
nav .navbar-collapse .navbar-nav li:first-child {
  margin-left: 0px;
}
nav .navbar-collapse .navbar-nav li:last-child {
  margin-right: 0px;
}
nav .navbar-collapse.no-transition {
  transition: height 0s;
}
@media only screen and (max-width: 1100px) {
  nav {
    padding: 0px 24px;
  }
  nav .navbar-collapse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    background-color: #ffffff;
    transition: all 0.5s ease;
  }
  nav .navbar-collapse .navbar-nav {
    padding: 100px 24px 24px 24px;
  }
  nav .navbar-collapse .navbar-nav li {
    margin: 24px 0px;
  }
  nav .navbar-collapse .navbar-nav li a {
    color: #76B729;
  }
  nav .navbar-collapse .navbar-nav li button {
    border: #76B729;
    background-color: #76B729;
    color: #ffffff;
  }
  nav .navbar-collapse .navbar-nav li button:hover {
    border: #5D7235;
    background-color: #5D7235;
    color: #ffffff;
  }
}

footer {
  display: flex;
  flex-wrap: wrap;
}
footer .footer1 {
  background-color: #DEEBCC;
}
footer .footer1 * {
  color: #5D7235;
}
footer .footer2 {
  background-color: #5D7235;
}
footer .footer2 * {
  color: #ffffff;
}
footer .footer-common {
  padding: 60px 100px;
  transition: top 0.5s ease;
  font-weight: normal;
  font-size: 16px;
}
@media only screen and (max-width: 1100px) {
  footer .footer-common {
    padding: 100px 12px;
  }
  footer .footer-common .col {
    min-width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 24px;
  }
  footer .footer-common .col:last-child {
    margin-bottom: 0;
  }
}
footer .footer-common a {
  display: inline-block;
}
footer .footer-common .logo {
  height: 150px;
  width: auto;
  max-width: none;
}
@media only screen and (max-width: 1100px) {
  footer .footer-common .logo {
    height: 100px;
  }
}
footer .footer-common h4 {
  font-size: 30px;
  font-weight: 400;
  text-transform: initial;
}
footer .footer-common a:hover {
  color: #ffffff;
  text-decoration: underline;
}
footer .footer-common .newsletter .mc-field-group label {
  display: none;
}
footer .footer-common .newsletter .mc-field-group label, footer .footer-common .newsletter .mc-field-group input, footer .footer-common .newsletter .mc-field-group select, footer .footer-common .newsletter .mc-field-group textarea {
  width: 100%;
  max-width: 300px;
}
footer .footer-common .newsletter .mc-field-group input, footer .footer-common .newsletter .mc-field-group select, footer .footer-common .newsletter .mc-field-group textarea {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #5D7235;
  border-radius: 10px;
  color: #000000;
}
footer .footer-common .newsletter .mc-field-group ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
footer .footer-common .newsletter .mc-field-group ::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
footer .footer-common .newsletter .mc-field-group textarea {
  min-height: 200px;
  max-height: 200px;
  resize: none;
}
footer .footer-common .newsletter .button {
  background-color: #76B729;
  border: 1px solid #76B729;
  border-radius: 100px;
  padding: 10px 30px;
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
}
footer .footer-common .newsletter .button:hover {
  background-color: #5D7235;
  border: 1px solid #5D7235;
  color: #ffffff;
}
footer .footer-common .links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
footer .footer-common .links a, footer .footer-common .links p {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1100px) {
  footer .footer-common .links {
    width: 100%;
  }
}
@media only screen and (max-width: 740px) {
  footer .footer-common .links {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
footer .footer-common .social-icons {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1100px) {
  footer .footer-common .social-icons {
    justify-content: center;
  }
}
footer .footer-common .social-icons a {
  margin-right: 24px;
}
footer .footer-common .social-icons a:last-child {
  margin-right: 0;
}
footer .footer-common .social-icons a img {
  height: 30px;
  width: auto;
}
footer .legal {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: 30px;
  justify-content: center;
  align-items: center;
}
footer .legal a, footer .legal p {
  font-size: 14px;
  margin: 0 10px;
}
footer .legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

header {
  position: relative;
  width: calc(100vw - 24px);
  height: 80vh;
  padding: 0;
  margin-right: 24px;
  border-radius: 0 0 50px 0;
  overflow: hidden !important;
  background-color: #000000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  header {
    width: calc(100vw - 12px);
    margin-right: 12px;
  }
}
header h1 {
  padding-top: 50px;
  z-index: 20;
  padding-left: 100px;
  width: 40%;
  pointer-events: none;
}
@media only screen and (max-width: 1100px) {
  header h1 {
    padding: 48px 24px 0px 24px;
    width: 100%;
  }
}
header .zoom {
  z-index: 20;
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 80px;
  width: 80px;
  padding: 10px;
  border-radius: 50px 10px 50px 10px;
  background-color: rgba(118, 183, 41, 0.6);
  transform: scale(1);
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1100px) {
  header .zoom {
    height: 50px;
    width: 50px;
    border-radius: 100px;
  }
}
header .zoom:hover {
  transform: scale(1.2);
}
header .zoom a {
  display: inline-block;
  height: 100%;
  width: 100%;
}
header .zoom a:not(:first-child) {
  display: none;
}
header .zoom a .button-zoom {
  text-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
header .zoom a .button-zoom svg {
  height: 100%;
  width: 100%;
  fill: #ffffff;
}
header .contact-btn {
  display: none;
}
@media only screen and (max-width: 1100px) {
  header .contact-btn {
    z-index: 20;
    display: block;
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
}
header .slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  filter: brightness(0.8);
  background-image: url("../images/ANUR-BC-website-3d_autre_5.webp");
  background-position: center;
  background-size: cover;
  background-repeat: none;
}
header .slider .swiper {
  pointer-events: none;
}
@media only screen and (max-width: 1300px) {
  header .slider .swiper {
    height: 100%;
    width: 100%;
  }
  header .slider .swiper img {
    height: 100%;
    width: auto;
  }
}

main {
  margin-top: 100px;
}
@media only screen and (max-width: 1100px) {
  main {
    margin-top: 100px;
  }
}
main section {
  position: relative;
  margin-bottom: 200px;
}
@media only screen and (max-width: 1100px) {
  main section {
    margin-bottom: 100px;
  }
}

#intro .video-container {
  position: relative;
  aspect-ratio: 16/9;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50px 10px 50px 10px;
  overflow: hidden;
  background-color: #000000;
}
@media only screen and (max-width: 1100px) {
  #intro .video-container {
    margin-bottom: 50px;
  }
}
#intro .video-container .button-play {
  z-index: 20;
  height: 150px;
  width: 150px;
  pointer-events: none;
  transition: 0.5s ease;
  text-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
#intro .video-container .button-play svg {
  height: 100%;
  width: 100%;
  fill: rgba(118, 183, 41, 0.6);
  color: #ffffff;
}
#intro .video-container .button-play svg path:last-child {
  fill: #ffffff;
}
#intro .video-container .button-play.hover {
  transform: scale(1.2);
}
#intro .video-container .button-play.hover svg {
  fill: rgba(93, 114, 53, 0.6);
}
#intro .video-container #home-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
#intro .video-container #home-video a {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
#intro .video-container #home-video a img {
  margin-bottom: -20%;
  transform: scale(1.3);
  transition: transform 0.5s ease;
}
#intro .video-container #home-video a img.hover {
  transform: scale(1.4);
}
@media only screen and (max-width: 1100px) {
  #intro .video-container #home-video a img {
    margin-bottom: -10%;
  }
}
@media only screen and (max-width: 740px) {
  #intro .video-container #home-video a img {
    margin-bottom: 0%;
  }
}
@media only screen and (max-width: 1100px) {
  #intro .video-container #home-video a .thumbnail {
    height: 100%;
    width: 100%;
  }
  #intro .video-container #home-video a .thumbnail img {
    height: 110%;
    width: auto;
  }
}

#summary .bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: repeat(6, 100px);
  grid-auto-columns: 1fr;
  gap: 24px 24px;
  grid-auto-flow: row;
  justify-content: center;
  align-content: center;
  justify-items: stretch;
  grid-template-areas: "A A B B C C D E" "A A G G G G D E" "F F G G G G H H" "I J G G G G M M" "I K G G G G M M" "I K L L L L M M";
}
#summary .bento-grid > div {
  background-color: #5D7235;
  overflow: hidden;
}
#summary .bento-grid > div.image a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
#summary .bento-grid > div.image a img {
  height: 100%;
  width: auto;
  transform: scale(1.1);
  transition: transform 0.5s ease;
}
#summary .bento-grid > div.image:hover img {
  transform: scale(1.2);
}
#summary .bento-grid > div.logo, #summary .bento-grid > div.text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
#summary .bento-grid > div.text p {
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}
#summary .bento-grid > div a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#summary .bento-grid .A {
  grid-area: A;
  border-radius: 50px 0 0 0;
}
#summary .bento-grid .B {
  grid-area: B;
}
#summary .bento-grid .B img {
  max-height: 80%;
  width: auto;
}
#summary .bento-grid .C {
  grid-area: C;
}
#summary .bento-grid .D {
  grid-area: D;
}
#summary .bento-grid .D img {
  max-width: 80%;
  height: auto;
}
#summary .bento-grid .E {
  grid-area: E;
  border-radius: 0 10px 0 0;
}
#summary .bento-grid .F {
  grid-area: F;
}
#summary .bento-grid .F img {
  max-width: 80%;
  height: auto;
}
#summary .bento-grid .G {
  grid-area: G;
}
#summary .bento-grid .H {
  grid-area: H;
}
#summary .bento-grid .I {
  grid-area: I;
  border-radius: 0 0 0 10px;
}
#summary .bento-grid .J {
  grid-area: J;
}
#summary .bento-grid .J img {
  max-height: 80%;
  width: auto;
}
#summary .bento-grid .K {
  grid-area: K;
}
#summary .bento-grid .L {
  grid-area: L;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#summary .bento-grid .L div {
  height: 80%;
  margin-right: 20px;
}
#summary .bento-grid .L div img {
  height: 100%;
  width: auto;
}
#summary .bento-grid .L p {
  width: 70%;
  text-align: left !important;
}
#summary .bento-grid .M {
  grid-area: M;
  border-radius: 0 0 50px 0;
}
@media only screen and (max-width: 1100px) {
  #summary .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(10, 160px);
    gap: 12px 12px;
    grid-template-areas: "A B" "A C" "D E" "F E" "G G" "G G" "I H" "I J" "K M" "L L";
  }
  #summary .bento-grid > div.image a img {
    height: 100%;
    width: 100%;
  }
  #summary .bento-grid .B {
    border-radius: 0 10px 0 0;
  }
  #summary .bento-grid .E {
    border-radius: 0;
  }
  #summary .bento-grid .I {
    border-radius: 0;
  }
  #summary .bento-grid .L {
    border-radius: 0 0 50px 10px;
  }
  #summary .bento-grid .L div {
    height: 40px;
    margin-right: 0;
    margin: 10px 0px;
  }
  #summary .bento-grid .L p {
    margin: 10px 0px;
    width: 90%;
    text-align: center !important;
  }
  #summary .bento-grid .M {
    border-radius: 0;
  }
}

#surfaces .image-container {
  position: relative;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 50px 10px 50px 10px;
  overflow: hidden;
}
#surfaces .image-container a {
  display: block;
}
#surfaces .map {
  margin-top: 60px;
}

@media only screen and (max-width: 1100px) {
  #lots {
    padding: 0px 12px;
  }
}
#lots .container {
  border-radius: 50px 10px 50px 10px;
  background-color: #ffffff;
  padding: 0;
}
#lots .container .swiper-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 1100px) {
  #lots .container .swiper-content {
    flex-direction: column;
  }
}
#lots .container .left, #lots .container .right, #lots .container .swiper-pagination {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 1100px) {
  #lots .container .left, #lots .container .right, #lots .container .swiper-pagination {
    width: 100%;
  }
}
#lots .container .left {
  padding: 100px 24px 24px 24px;
  margin-right: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 50px 10px 50px 10px;
  background-color: #E5E5E5;
}
#lots .container .left .help {
  position: absolute;
  top: 10px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  pointer-events: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 1100px) {
  #lots .container .left .help {
    top: 16px;
  }
}
#lots .container .left .map {
  z-index: 20;
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  padding: 10px;
  background-color: rgba(118, 183, 41, 0.6);
  transform: scale(1);
  transition: all 0.5s ease;
}
#lots .container .left .map:hover {
  transform: scale(1.2);
}
#lots .container .left .map a {
  display: inline-block;
  height: 100%;
  width: 100%;
}
#lots .container .left .map a:not(:first-child) {
  display: none;
}
#lots .container .left .map a .button-map {
  text-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
#lots .container .left .map a .button-map svg {
  height: 100%;
  width: 100%;
  fill: #ffffff;
}
@media only screen and (max-width: 1100px) {
  #lots .container .left {
    margin-right: 0px;
    padding: 160px 12px 12px 12px;
  }
}
#lots .container .right {
  padding: 24px 24px 24px 0;
  margin-left: 12px;
}
@media only screen and (max-width: 1100px) {
  #lots .container .right {
    margin-left: 0px;
    padding: 24px 12px;
  }
}
#lots .container .right h4 {
  color: #5D7235;
}
#lots .container .right .availability.green {
  color: #28C925;
}
#lots .container .right .availability.orange {
  color: #F6B91C;
}
#lots .container .right .availability.red {
  color: #F93F3F;
}
#lots .container .right .table-responsive {
  max-width: 100%;
  scrollbar-width: thin;
}
@media only screen and (max-width: 1100px) {
  #lots .container .right .table-responsive {
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 740px) {
  #lots .container .right .table-responsive table {
    width: -moz-max-content;
    width: max-content;
  }
}
#lots .container .right .table-responsive table td {
  vertical-align: middle;
}
#lots .container .right button {
  font-size: 16px;
  padding: 4px 12px;
}
#lots .container .right button.sold {
  background-color: #E5E5E5;
  color: #000000;
  border: none;
}
#lots .container .right button.sold:hover {
  background-color: #E5E5E5;
  color: #000000;
  border: none;
  cursor: default;
}
#lots .container .swiper-button-next {
  left: calc(50% - 48px);
}
@media only screen and (max-width: 1100px) {
  #lots .container .swiper-button-next {
    top: 80px;
    left: auto;
    right: 10px;
    /* display: none; */
  }
}
#lots .container .swiper-button-prev {
  left: 10px;
}
@media only screen and (max-width: 1100px) {
  #lots .container .swiper-button-prev {
    top: 80px;
    left: 10px !important;
    /* display: none; */
  }
}
#lots .container .swiper-pagination {
  position: absolute;
  top: 44px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  #lots .container .swiper-pagination {
    top: 20px;
    width: 80%;
    left: 50% !important;
    transform: translateX(-50%);
  }
}
#lots .container .swiper-pagination span {
  height: 0;
  width: auto;
  margin: 0px 10px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  margin-top: -10px;
}
@media only screen and (max-width: 1100px) {
  #lots .container .swiper-pagination span {
    margin-top: 30px;
  }
}
#lots:nth-child(odd) .swiper-content {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 1100px) {
  #lots:nth-child(odd) .swiper-content {
    flex-direction: column;
  }
}
#lots:nth-child(odd) .swiper-content .left {
  margin-left: 12px;
  margin-right: 0;
}
@media only screen and (max-width: 1100px) {
  #lots:nth-child(odd) .swiper-content .left {
    margin-left: 0px;
  }
}
#lots:nth-child(odd) .swiper-content .right {
  margin-left: 0;
  margin-right: 12px;
  padding: 24px 0 24px 24px;
}
@media only screen and (max-width: 1100px) {
  #lots:nth-child(odd) .swiper-content .right {
    margin-right: 0px;
    padding: 24px 12px;
  }
}
#lots:nth-child(odd) .swiper-button-next {
  left: initial;
}
#lots:nth-child(odd) .swiper-button-prev {
  left: calc(50% + 24px);
}
#lots:nth-child(odd) .swiper-pagination {
  left: calc(50% + 12px);
}
#lots .solo-plan {
  padding: 24px 24px 24px 24px !important;
}
@media only screen and (max-width: 1100px) {
  #lots .solo-plan {
    padding: 12px 12px 12px 12px !important;
  }
}

@media only screen and (max-width: 1100px) {
  #benefits#situations, #situations#situations {
    margin-bottom: 0;
  }
}
#benefits .container-fluid, #situations .container-fluid {
  background-color: #DEEBCC;
  padding: 150px 0 !important;
}
@media only screen and (max-width: 1100px) {
  #benefits .container-fluid, #situations .container-fluid {
    padding: 100px 0 0 0 !important;
  }
}
#benefits h3, #situations h3 {
  margin-bottom: 50px;
}
#benefits .row .card, #situations .row .card {
  padding: 0;
  border: none;
  border-radius: 50px 10px 50px 10px;
}
@media only screen and (max-width: 1100px) {
  #benefits .row .card, #situations .row .card {
    margin-bottom: 100px;
  }
}
#benefits .row .card #map, #situations .row .card #map {
  width: 100%;
  height: 250px;
  border-radius: 50px 10px 50px 10px;
  overflow: hidden;
}
#benefits .row .card #map .marker, #situations .row .card #map .marker {
  background-image: url("../images/ANUR-BC-pin.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 30px;
  height: 300px;
  cursor: pointer;
}
#benefits .row .card #map a, #situations .row .card #map a {
  font-size: 0.7rem;
  font-weight: initial;
}
#benefits .row .card .image-container, #situations .row .card .image-container {
  width: 100%;
  height: 250px;
  border-radius: 50px 10px 50px 10px;
  overflow: hidden;
}
#benefits .row .card .image-container a, #situations .row .card .image-container a {
  display: block;
}
#benefits .row .card .text-container, #situations .row .card .text-container {
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}
#benefits .row .card .text-container button, #situations .row .card .text-container button {
  width: 100%;
}

#contact .Form {
  margin-top: 60px;
  grid-area: Form;
  display: flex;
  align-items: center;
}
#contact .Form form {
  z-index: 60;
  display: flex;
  flex-wrap: wrap;
}
#contact .Form form .row {
  font-size: 20px;
}
#contact .Form form .row label, #contact .Form form .row input, #contact .Form form .row select, #contact .Form form .row textarea {
  width: 100%;
}
#contact .Form form .row input, #contact .Form form .row select, #contact .Form form .row textarea {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #5D7235;
  border-radius: 10px;
  color: #000000;
}
#contact .Form form .row ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
#contact .Form form .row ::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
#contact .Form form .row textarea {
  min-height: 200px;
  max-height: 200px;
  resize: none;
}
#contact .Form form .row .form-check-privacy {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 20px;
}
#contact .Form form .row .form-check-privacy input, #contact .Form form .row .form-check-privacy label {
  width: initial;
  margin: 0;
}
#contact .Form form .row .form-check-privacy input {
  margin-right: 12px;
}
#contact .Form form .row .form-check-privacy label {
  font-size: 14px;
}
#contact .Form form .g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
#contact .Form form button {
  margin: 0 auto;
  width: auto;
  min-width: 200px;
}

#g-recaptcha-response {
  display: block !important;
  position: absolute;
  margin: -100px 0 0 -20px !important;
  width: 302px !important;
  height: 76px !important;
  min-height: initial !important;
  max-height: initial !important;
  z-index: -999999;
  opacity: 0;
}

.basic {
  margin-top: 200px;
}

#basic h2, #basic h3, #basic h4 {
  margin: 60px 0px 20px 0px;
}
#basic ul {
  list-style-type: disc;
}
#basic ul li {
  margin-bottom: 10px;
}

.thanks main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  margin-top: 200px;
  text-align: center;
  align-items: center;
  margin-bottom: 150px;
}
.thanks main h1 {
  margin-bottom: 30px;
  color: #76B729;
}
.thanks main h2 {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.thanks main h3 {
  text-align: left;
  margin: 60px 0 30px 0;
}
.thanks main .recap {
  width: 100%;
  max-width: 800px;
  margin-bottom: 30px;
}
.thanks main .recap h4 {
  color: #000000;
  margin-bottom: 20px;
}
.thanks main .recap p {
  margin-bottom: 0;
  margin-top: 30px;
}
.thanks main .recap a {
  margin: 0 auto;
  margin-bottom: 30px;
}
.thanks main button {
  border: none;
  box-shadow: none;
  background-color: #76B729;
  color: #ffffff;
  padding: 5px 50px;
  border-radius: 100px;
}
.thanks main button:hover {
  background-color: #5D7235;
}

.error {
  margin-top: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}