@charset "UTF-8";
:root {
  --color-primary: #aaca42;
  --color-secondary: #28ac72;
  --color-tertiary: #2a6956;
  --color-tertiary-white: #eef3f2;
  --color-tertiary-white-2: #c2d8d2;
  --color-tertiary-dark: color-mix(in srgb, var(--color-tertiary), #111 30%);
  --gradient-1: linear-gradient(140deg, var(--color-primary), var(--color-secondary));
  --grid-gap: 4rem;
  --font-family-1st: "Outfit", "sans-serif";
}

@keyframes fadeInCustom {
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeOutCustom {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
*, ::before, ::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

::-moz-selection {
  background-color: var(--color-secondary);
  color: #fff;
}

::selection {
  background-color: var(--color-secondary);
  color: #fff;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}

body {
  color: var(--color-tertiary);
  font-family: var(--font-family-1st);
  font-size: 1.6rem;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
  width: 100vw;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}
body::before {
  content: "";
  background-color: var(--color-tertiary);
  opacity: 0.08;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(-35rem + 50%);
  min-width: 35.5rem;
  z-index: -1;
}
@media screen and (max-width: 50em) {
  body::before {
    display: none;
  }
}

a {
  text-decoration: none;
}

a:not(.btn) {
  color: var(--color-secondary);
  font-weight: 500;
}

img {
  display: inline-block;
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
}

strong {
  color: var(--color-secondary);
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 var(--grid-gap);
}
@media screen and (max-width: 37.5em) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 2rem;
}
.form-group label {
  color: var(--color-tertiary);
  display: block;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  border: none;
  border-bottom: 2px solid var(--color-tertiary);
  display: block;
  font-family: var(--font-family-1st);
  font-size: 2.5rem;
  padding: 1rem 1.3rem;
  width: 100%;
  transition: 0.4s;
}
.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: var(--color-tertiary-white-2);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--color-tertiary-white-2);
}
.form-group input:focus-within, .form-group textarea:focus-within {
  background-color: var(--color-tertiary-white);
  border-bottom-color: var(--color-secondary);
  outline: none;
}
.form-group .checkbox {
  --size: 2.5rem;
}
.form-group .checkbox label {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 0;
  position: relative;
  transition: 0.25s;
}
.form-group .checkbox label::before {
  content: "";
  border: 2px solid var(--color-tertiary);
  flex-shrink: 0;
  height: var(--size);
  width: var(--size);
  transition: 0.25s;
}
.form-group .checkbox label::after {
  content: "";
  background-color: var(--color-secondary);
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: var(--size);
  width: var(--size);
  transform: scale(0);
  transition: 0.25s;
}
.form-group .checkbox input {
  display: none;
}
.form-group .checkbox input:checked + label {
  color: var(--color-secondary);
}
.form-group .checkbox input:checked + label::before {
  border-color: var(--color-secondary);
}
.form-group .checkbox input:checked + label::after {
  transform: scale(0.6);
}

.certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row wrap;
  gap: 15px;
}

.cline {
  content: "";
  background: url(/storage/svg/line-under-1.svg) center center no-repeat;
  background-size: contain;
  width: 25rem;
  height: 5rem;
}
.cline--center {
  margin: 0 auto;
}

.dot {
  --size: 1rem;
  background: var(--gradient-1);
  border-radius: var(--size);
  display: inline-block;
  height: var(--size);
  width: var(--size);
}

.dynacontent h2 {
  font-size: 4rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.dynacontent h3 {
  font-size: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.dynacontent p {
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 75em) {
  .dynacontent p {
    font-size: 2.2rem;
  }
}

.image-1 {
  position: relative;
  isolation: isolate;
}
.image-1::before {
  content: "";
  background: var(--gradient-1);
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  height: 80%;
  width: calc(100% + 3rem);
  z-index: -1;
}

.partners {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: var(--grid-gap);
}
.partners li {
  text-align: center;
}

.pellet-1 {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  display: flex;
}
@media screen and (max-width: 37.5em) {
  .pellet-1 {
    flex-flow: column nowrap;
  }
}
.pellet-1 .p-image {
  background-color: #fff;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  width: 20rem;
}
@media screen and (max-width: 37.5em) {
  .pellet-1 .p-image {
    width: 100%;
    max-height: 10rem;
  }
}
.pellet-1 .p-image img {
  width: 80%;
}
@media screen and (max-width: 37.5em) {
  .pellet-1 .p-image img {
    width: auto;
    height: 8rem;
  }
}
.pellet-1 .p-content {
  padding: 1.5rem 2.75rem;
}
.pellet-1 .p-content p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (max-width: 75em) {
  .pellet-1 .p-content p {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 31.25em) {
  .pellet-1 .p-content {
    text-align: center;
  }
}
.pellet-1 .p-title {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
@media screen and (max-width: 75em) {
  .pellet-1 .p-title {
    font-size: 3rem;
  }
}

.scroll-top {
  --size: 5.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  position: fixed;
  isolation: isolate;
  bottom: 90px;
  right: 15px;
  width: var(--size);
  height: var(--size);
  visibility: hidden;
  transition: 0.4s;
}
@media screen and (max-width: 75em) {
  .scroll-top {
    --size: 7rem;
  }
}
.scroll-top::before, .scroll-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transition: 0.25s;
  z-index: -1;
}
.scroll-top::before {
  background-color: var(--color-tertiary);
}
.scroll-top::after {
  background: var(--gradient-1);
  opacity: 0;
}
.scroll-top span {
  --size: 2rem;
  border-top: 0.5rem solid #fff;
  border-right: 0.5rem solid #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%) rotate(-45deg);
  width: var(--size);
  height: var(--size);
  transition: 0.25s;
}
@media screen and (max-width: 75em) {
  .scroll-top span {
    --size: 2.6rem;
    border-width: 0.75rem;
  }
}
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover::before {
  transform: translate(0.25rem, 0.25rem);
}
.scroll-top:hover::after {
  opacity: 1;
  transform: translate(-0.25rem, -0.25rem);
}
.scroll-top:hover span {
  transform: translate(calc(-50% - 0.25rem), calc(-30% - 0.25rem)) rotate(-45deg);
}

.text-gradient {
  display: inline-block;
  background-image: var(--gradient-1);
  -webkit-background-clip: text;
  color: transparent !important;
}
.text-gradient--lg {
  font-size: 4rem;
  font-weight: 800 !important;
}

.h2 {
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
}

.link {
  background-color: transparent;
  border: none;
  color: var(--color-secondary);
  display: inline-block;
  font-weight: bold;
  padding: 0;
  transition: 0.5s;
}
.link:hover {
  color: var(--color-secondary);
}
.link--primary {
  color: var(--color-primary) !important;
}
.link--primary:hover {
  color: var(--color-primary) !important;
}
.link--white {
  color: #fff !important;
}
.link--white::before, .link--white::after, .link--white:hover::after {
  background-color: #fff !important;
}
.link--white:hover {
  opacity: 0.7;
}
.link--1 {
  font-size: 16px;
}
.link--1 i {
  display: inline-block;
  font-size: 1.3em;
  transform: translateY(4px);
}
.link--line {
  position: relative;
  transition: 0.4s;
}
.link--line::before {
  content: "";
  background-color: var(--color-secondary);
  opacity: 0.3;
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  height: 2px;
  width: 100%;
}
.link--line::after {
  content: "";
  background-color: var(--color-secondary);
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  height: 2px;
  width: 0;
  transition: 0.4s;
}
.link--line:hover {
  color: var(--color-secondary);
  opacity: 1;
}
.link--line:hover::after {
  width: 100%;
}

.para {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 75em) {
  .para {
    font-size: 2.5rem;
  }
}

.para-2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (max-width: 75em) {
  .para-2 {
    font-size: 2.5rem;
  }
}

.para-3 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.para-4 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 50em) {
  .para-4 {
    font-size: 2.75rem;
  }
}

.section-title {
  font-size: 5rem;
  text-transform: uppercase;
}
@media screen and (max-width: 50em) {
  .section-title {
    font-size: 4rem;
  }
}
.section-title--center {
  text-align: center;
}
.section-title > span {
  background: var(--gradient-1);
  color: #fff;
  display: inline-block;
  padding: 0.5rem 2.5rem;
}

.section-title-2 > span:first-child {
  background-image: var(--gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  font-weight: 400;
  text-transform: uppercase;
}
.section-title-2 > span:last-child {
  font-size: 5rem;
  text-transform: uppercase;
}
@media screen and (max-width: 50em) {
  .section-title-2 > span:last-child {
    font-size: 3.5rem;
  }
}

.section-title-3 {
  background-image: var(--gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 2.5rem;
}

.section-title-feat {
  font-size: 5rem;
  padding-bottom: 6rem;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 50em) {
  .section-title-feat {
    font-size: 3.5rem;
  }
}
.section-title-feat::before {
  content: "";
  background: url("/storage/svg/line-bars.svg") center left no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5rem;
  width: 20rem;
}

.section-title-sup {
  background-image: var(--gradient-1);
  -webkit-background-clip: text;
  color: transparent;
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

strong {
  font-weight: 500;
}

.btn {
  border: none;
  cursor: pointer;
  font-family: var(--font-family-1st);
  font-size: 2.3rem;
  display: inline-block;
  font-weight: 500;
  padding: 2rem 3rem;
  transition: 0.4s;
}

.btn-style-1 {
  background-color: var(--color-secondary);
  color: #fff;
}
.btn-style-1:hover {
  background-color: var(--color-primary);
}
.btn-style-1--white {
  background-color: #fff;
  color: var(--color-secondary);
}
.btn-style-1--white:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.btn-style-1--tertiary {
  background-color: var(--color-tertiary);
  color: #fff;
}
.btn-style-1--tertiary:hover {
  background-color: #fff;
  color: var(--color-secondary);
}

.btn-style-2 {
  background-color: var(--color-secondary);
  color: #fff;
  font-size: 2.5rem;
  padding: 2.5rem 4rem;
  text-transform: uppercase;
}
.btn-style-2:hover {
  background-color: var(--color-primary);
}
.btn-style-2--white {
  background-color: #fff;
  color: var(--color-secondary);
}
.btn-style-2--white:hover {
  background-color: var(--color-tertiary);
  color: #fff;
}
.btn-style-2--tertiary {
  background-color: var(--color-tertiary);
  color: #fff;
}
.btn-style-2--tertiary:hover {
  background-color: #fff;
  color: var(--color-secondary);
}

.card-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.card-wrapper > * {
  flex: 1 1 0;
  min-width: 40rem;
  max-width: 48rem;
}
@media screen and (max-width: 50em) {
  .card-wrapper > * {
    max-width: 75rem;
  }
}
@media screen and (max-width: 75em) {
  .card-wrapper {
    flex-flow: row wrap;
  }
}
@media screen and (max-width: 50em) {
  .card-wrapper {
    flex-flow: column nowrap;
    align-items: center;
  }
}

.card-1 {
  background-color: #fff;
  position: relative;
  isolation: isolate;
}
.card-1::after {
  content: "";
  background: var(--gradient-1);
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
}
.card-1 .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-1 .card-body {
  padding: 2.75rem 4rem 3rem;
}
@media screen and (max-width: 31.25em) {
  .card-1 .card-body {
    padding: 3rem 3rem 3.5rem;
  }
}
.card-1 .card-title {
  font-size: 3rem;
  padding-bottom: 1.5rem;
  position: relative;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.card-1 .card-title::after {
  content: "";
  background: var(--gradient-1);
  border-radius: 99rem;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 7.5rem;
}
.card-1--hoz {
  display: flex;
  gap: 2rem;
}

.card-cta-1 {
  background: var(--gradient-1);
  border: 1.5rem solid #fff;
  padding: 3rem 4rem;
  margin: 0 auto;
  max-width: 125rem;
}

.image-comp-1 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.image-comp-1 .image-comp-item {
  aspect-ratio: 3/5;
  flex: 1 1 0;
}
.image-comp-1 .image-comp-item img {
  aspect-ratio: 3/5;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.list-1 {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.list-1 li {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-left: 4rem;
  position: relative;
}
@media screen and (max-width: 75em) {
  .list-1 li {
    font-size: 2.5rem;
  }
}
.list-1 li::before {
  content: "";
  background: url("/storage/svg/list-bars.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.5em;
  left: 0;
  height: 1rem;
  width: 2.5rem;
}

.list-2 {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 2rem;
}
.list-2 > li {
  --width: calc(33.333% - 2rem);
  background-color: var(--color-tertiary-dark);
  color: #fff;
  flex: 1 1 var(--width);
  font-size: 2rem;
  padding: 3rem 3rem 4.3rem 3rem;
  position: relative;
  text-align: center;
  min-width: 45rem;
}
@media screen and (max-width: 75em) {
  .list-2 > li {
    font-size: 2.5rem;
  }
}
.list-2 > li::before {
  content: "";
  background: var(--gradient-1);
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  z-index: 1;
}
.list-2 > li::after {
  content: "";
  background: url(/storage/svg/line-under-1.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  width: 25rem;
  height: 2.3rem;
  transform: translateX(-50%);
}
.list-2 > li.list-item-feat {
  --width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

body:has(dialog[open]) {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  transition: 0.4s;
}
.modal::-webkit-scrollbar {
  display: none;
}
.modal:not(.is-closing) {
  opacity: 0;
  visibility: hidden;
}
.modal[open] {
  animation: fadeInCustom 0.4s ease-in-out forwards;
}
.modal.is-closing {
  animation: fadeOutCustom 0.4s ease-in-out forwards;
}
.modal__content {
  background-color: var(--color-tertiary);
  border: none;
  position: relative;
  isolation: isolate;
  padding: 0 1.5rem;
  width: 100%;
  height: 100%;
  min-height: 75rem;
}
@media screen and (max-width: 62.5em) {
  .modal__content {
    height: auto;
    min-height: 100%;
  }
}
.modal__content::before {
  content: "";
  background-color: var(--color-tertiary-dark);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25rem;
  z-index: -2;
}
.modal__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 4rem;
  opacity: 0.5;
  position: absolute;
  top: 2rem;
  right: 3rem;
  transition: 0.4s;
}
.modal__close:hover {
  opacity: 1;
}

.modal-menu__wrap {
  display: flex;
  gap: 4rem;
  padding: 10rem 15vw 0 calc(-55rem + 45vw);
}
@media screen and (max-width: 62.5em) {
  .modal-menu__wrap {
    padding: 10rem 0 40rem;
    flex-flow: column nowrap;
  }
}
.modal-menu__wrap__left {
  flex-grow: 1;
}
.modal-menu__wrap__right {
  flex-grow: 1;
}
.modal-menu__menu {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.modal-menu__menu li {
  margin-bottom: clamp(2.2rem, 3vh, 3rem);
}
@media screen and (max-width: 62.5em) {
  .modal-menu__menu li {
    text-align: center;
  }
}
.modal-menu__menu li > a {
  color: #fff;
  display: inline-block;
  font-size: 3.5rem;
  position: relative;
  isolation: isolate;
  text-transform: uppercase;
}
.modal-menu__menu li > a::before {
  content: "";
  background: var(--gradient-1);
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
  height: 2rem;
  width: 0;
  transition: 0.4s;
  z-index: -1;
}
.modal-menu__menu li > a:hover::before {
  width: calc(100% + 2rem);
}
.modal-menu__menu--2 li {
  text-align: left;
}
@media screen and (max-width: 62.5em) {
  .modal-menu__menu--2 li {
    text-align: center;
  }
}
.modal-menu__images {
  --padding: 2rem;
  background-color: var(--color-tertiary);
  aspect-ratio: 1;
  padding-top: var(--padding);
  padding-right: var(--padding);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 22vw;
  max-width: 55rem;
  z-index: -1;
}
@media screen and (max-width: 62.5em) {
  .modal-menu__images {
    display: none;
  }
}
.modal-menu__images > img {
  opacity: 0.4;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.modal-menu__images > img:last-child {
  position: absolute;
  top: 2rem;
  right: 2rem;
  height: calc(100% - var(--padding));
  width: calc(100% - var(--padding));
}
.modal-menu__title {
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-left: 5rem;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 62.5em) {
  .modal-menu__title {
    padding-left: 0;
    padding-bottom: 0.5rem;
    text-align: center;
  }
}
.modal-menu__title::before {
  content: "";
  background: var(--gradient-1);
  border-radius: 99rem;
  position: absolute;
  top: 50%;
  left: 0;
  width: 3.5rem;
  height: 4px;
}
@media screen and (max-width: 62.5em) {
  .modal-menu__title::before {
    margin-bottom: 2rem;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.modal-menu__sub {
  background-color: var(--color-tertiary-dark);
  padding: 4rem 4rem;
  position: absolute;
  isolation: isolate;
  bottom: 0;
  right: 0;
  width: calc(100% - 22vw);
}
.modal-menu__sub::before {
  content: "";
  background: url(/storage/svg/sunshine-360.svg) no-repeat;
  background-size: 300rem 300rem;
  background-position: 0% 35%;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 62.5em) {
  .modal-menu__sub {
    width: 100%;
  }
}
.modal-menu__infos {
  display: flex;
  flex-flow: row wrap;
  gap: 3rem;
}
.modal-menu__infos li {
  flex: 1 1 0;
  min-width: 30rem;
}
.modal-menu__infos li > span:first-child {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 3rem;
}
.modal-menu__infos li > span:first-child::before {
  content: "";
  background: var(--gradient-1);
  border-radius: 99rem;
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 3px;
}
.modal-menu__infos li > *:last-child {
  color: #fff;
  font-size: 2.5rem;
}
.modal-menu__infos li:first-child {
  width: 40%;
}
.modal-menu__links {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
.modal-menu__links li {
  font-size: 2rem;
}

.page-header {
  padding-top: 20rem;
}
.page-header__wrap {
  background: url("/storage/city-wallpaper-w1400x715.webp") center center no-repeat;
  background-size: cover;
  padding-top: 12rem;
  padding-bottom: 15rem;
  position: relative;
  isolation: isolate;
}
.page-header__wrap::before, .page-header__wrap::after {
  content: "";
  background-color: var(--color-tertiary);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.page-header__wrap::before {
  mix-blend-mode: multiply;
  z-index: -2;
}
.page-header__wrap::after {
  opacity: 0.7;
  z-index: -1;
}
.page-header__title {
  color: #fff;
  font-size: 6rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  text-align: center;
}
.page-header__title::after {
  content: "";
  background: url(/storage/svg/line-under-1.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -5.5rem;
  left: 50%;
  width: 25rem;
  height: 5rem;
  transform: translateX(-50%);
}
@media screen and (max-width: 50em) {
  .page-header__title {
    font-size: 4rem;
  }
}
.page-header__breadcrumb {
  position: absolute;
  isolation: isolate;
  bottom: 0;
  transform: translateY(50%);
}
@media screen and (max-width: 31.25em) {
  .page-header__breadcrumb {
    width: 100vw;
  }
}
@media screen and (max-width: 31.25em) {
  .page-header__breadcrumb > * {
    width: 100%;
  }
}
.page-header__breadcrumb ol {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 1.5rem 4rem;
  list-style: none;
  padding: 1.5rem 4rem 1.5rem 0;
}
@media screen and (max-width: 31.25em) {
  .page-header__breadcrumb ol {
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.page-header__breadcrumb ol li {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  position: relative;
}
.page-header__breadcrumb ol li:not(.active)::after {
  content: "•";
  color: #fff;
  font-size: 3.5rem;
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translate(50%, -50%);
}
.page-header__breadcrumb ol li a {
  color: #fff;
}
.page-header__breadcrumb::before {
  content: "";
  background: var(--gradient-1);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(-10rem + 50vw);
  z-index: -1;
}
@media screen and (max-width: 93.75em) {
  .page-header__breadcrumb::before {
    width: 60vw;
  }
}
@media screen and (max-width: 50em) {
  .page-header__breadcrumb::before {
    width: 85vw;
  }
}
@media screen and (max-width: 31.25em) {
  .page-header__breadcrumb::before {
    left: -2rem;
    right: auto;
    width: 100vw;
  }
}

.footer {
  background: url("/storage/city-wallpaper-w1400x715.webp") center center no-repeat;
  background-size: cover;
  margin-top: 12rem;
  position: relative;
  isolation: isolate;
}
.footer::before, .footer::after {
  content: "";
  background-color: var(--color-tertiary);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.footer::before {
  mix-blend-mode: multiply;
  z-index: -2;
}
.footer::after {
  opacity: 0.7;
  z-index: -1;
}
.footer .footer-infos {
  background: var(--gradient-1);
  border: 8px solid #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 3rem;
  padding: 2rem 3rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 43.75em) {
  .footer .footer-infos {
    flex-flow: column nowrap;
    align-items: stretch;
    margin: 0 auto;
    transform: translateY(-10rem);
    max-width: 45rem;
  }
}
.footer .footer-infos > li {
  flex-grow: 1;
  min-width: 35rem;
}
.footer .footer-infos > li > span:first-child {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1rem;
}
.footer .footer-infos > li > span:first-child > span {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer .footer-infos > li > *:last-child {
  color: #fff;
  font-size: 2.5rem;
}
.footer .footer-copyright {
  color: #e3e9e6;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0;
  margin-top: 20rem;
  text-align: center;
}

.header {
  padding: 0 2rem;
  position: absolute;
  isolation: isolate;
  top: 0;
  right: 0;
  height: 20rem;
  width: calc(35rem + 50%);
  z-index: 5;
}
@media screen and (max-width: 93.75em) {
  .header {
    width: calc(-35rem + 100vw);
    max-width: 108rem;
  }
}
@media screen and (max-width: 50em) {
  .header {
    width: 100%;
    max-width: none;
  }
}
.header::before {
  --size: 20rem;
  content: "";
  background: url("/storage/svg/house-isc-renovation.svg") center center no-repeat;
  background-size: contain;
  opacity: 0.1;
  position: absolute;
  bottom: -0.7rem;
  left: 45%;
  height: var(--size);
  width: var(--size);
  z-index: -1;
  transform: translateX(-50%);
}
.header::after {
  --size: 20rem;
  content: "";
  background: url("/storage/svg/building-isc-renovation.svg") center center no-repeat;
  background-size: contain;
  opacity: 0.1;
  position: absolute;
  bottom: -0.7rem;
  left: calc(45% + var(--size) + 5rem);
  height: var(--size);
  width: var(--size);
  z-index: -1;
  transform: translateX(-50%);
}
.header > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  width: 22rem;
}
@media screen and (max-width: 31.25em) {
  .header__logo {
    width: 16rem;
  }
}
.header__menu__button {
  background-color: transparent;
  border: 2px solid var(--color-tertiary-white);
  border-radius: 10rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-family-1st);
  font-size: 2.3rem;
  font-weight: 500;
  padding: 1.5rem 2.5rem;
  transition: 0.3s;
}
.header__menu__button > span:first-child {
  background: var(--gradient-1);
  border-radius: 2rem;
  margin-bottom: 1.2rem;
  position: relative;
  width: 3.5rem;
  height: 4px;
}
.header__menu__button > span:first-child::before, .header__menu__button > span:first-child::after {
  content: "";
  background: var(--gradient-1);
  border-radius: 2rem;
  position: absolute;
  left: 0;
  height: 3px;
  transition: 0.3s;
}
.header__menu__button > span:first-child::before {
  top: 7px;
  width: 50%;
}
.header__menu__button > span:first-child::after {
  top: 14px;
  width: 25%;
}
.header__menu__button:hover {
  background-color: var(--color-tertiary-white);
}
.header__menu__button:hover > span:first-child::before, .header__menu__button:hover > span:first-child::after {
  width: 100%;
}

.ps-container {
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 0 auto;
  max-width: 150rem;
}

.ps-container-2 {
  margin: 0 auto;
  max-width: 125rem;
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-banner {
  padding: 4rem 0;
  position: relative;
  isolation: isolate;
  height: 125rem;
}
@media screen and (max-width: 75em) {
  .section-banner {
    height: 135rem;
  }
}
@media screen and (max-width: 56.25em) {
  .section-banner {
    height: 140rem;
  }
}
@media screen and (max-width: 50em) {
  .section-banner {
    height: 145rem;
  }
}
.section-banner__overlay1 {
  --pseudo-width: calc(100% - 3rem);
  --pseudo-height: 100%;
  background: var(--gradient-1);
  position: absolute;
  isolation: isolate;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(-35rem + 50%);
  min-width: 35.5rem;
  z-index: -1;
}
@media screen and (max-width: 50em) {
  .section-banner__overlay1 {
    display: none;
  }
}
.section-banner__overlay1::before {
  content: "";
  background-color: var(--color-tertiary);
  position: absolute;
  top: 0;
  left: 0;
  height: var(--pseudo-height);
  width: var(--pseudo-width);
}
.section-banner__overlay1::after {
  content: "";
  background: url("/storage/svg/sunshine-360.svg") no-repeat;
  background-size: 183rem 183rem;
  background-position: 81% 0%;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  height: var(--pseudo-height);
  width: var(--pseudo-width);
}
.section-banner__overlay2 {
  background: url("/storage/city-wallpaper-w1400x715.webp") center bottom no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(50rem + 50%);
  height: calc(100% - 20rem);
}
.section-banner__overlay2::before {
  content: "";
  background-color: var(--color-tertiary);
  mix-blend-mode: multiply;
  opacity: 0.83;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.section-banner__top {
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 30rem;
}
@media screen and (max-width: 50em) {
  .section-banner__top {
    display: none;
  }
}
.section-banner__top::after {
  content: "";
  background: url("/storage/svg/line-under-1.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(100% + 1.4rem);
  left: 50%;
  width: 20rem;
  height: 3.5rem;
  transform: translateX(-50%);
}
.section-banner__top .text {
  color: #fff;
  font-weight: 200;
  font-size: 2.5rem;
  text-transform: uppercase;
}
.section-banner__top .text--feat {
  flex-basis: 100%;
  font-size: 3rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}
.section-banner__title {
  margin-top: 14rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 50em) {
  .section-banner__title {
    margin-top: 25rem;
    text-align: center;
  }
}
.section-banner__title .sbt-top {
  color: #fff;
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  padding: 2rem 4rem 2rem 0;
  position: relative;
  isolation: isolate;
  text-transform: uppercase;
}
@media screen and (max-width: 50em) {
  .section-banner__title .sbt-top {
    font-size: clamp(2rem, 5vw, 3rem);
    padding: 2rem 3rem;
  }
}
.section-banner__title .sbt-top::before {
  content: "";
  background: var(--gradient-1);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(29rem + 50vw);
  min-width: 65rem;
  z-index: -1;
}
@media screen and (max-width: 50em) {
  .section-banner__title .sbt-top::before {
    width: 100%;
    min-width: 0;
  }
}
.section-banner__title .sbt-top > span {
  font-weight: 800;
}
.section-banner__title .sbt-main {
  color: #fff;
  display: block;
  margin-top: 2rem;
  position: relative;
  font-size: 8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
@media screen and (max-width: 56.25em) {
  .section-banner__title .sbt-main {
    font-size: 10rem;
  }
}
@media screen and (max-width: 50em) {
  .section-banner__title .sbt-main {
    font-size: clamp(5rem, 10vw, 8rem);
  }
}
.section-banner__desc {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
}
.section-banner__desc p {
  margin-bottom: 1.5rem;
}
.section-banner__desc strong {
  color: #fff;
}
@media screen and (max-width: 50em) {
  .section-banner__desc {
    font-size: 2.5rem;
    text-align: center;
  }
}
.section-banner__bottom {
  --gap: 1.5rem;
  background-color: #fff;
  display: flex;
  gap: var(--gap);
  padding: var(--gap);
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 50em) {
  .section-banner__bottom {
    padding: 0;
  }
}
.section-banner__bottom .sbb-text {
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  flex: 1 1 66.66%;
  padding: 2rem 1rem;
  text-align: center;
}
.section-banner__bottom .sbb-text span {
  color: #fff;
  display: block;
  text-transform: uppercase;
}
.section-banner__bottom .sbb-text span:first-child {
  font-size: clamp(2rem, 1.7vw, 4rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
@media screen and (max-width: 75em) {
  .section-banner__bottom .sbb-text span:first-child {
    font-size: 2.5rem;
  }
}
.section-banner__bottom .sbb-text span:last-child {
  font-size: clamp(3rem, 2.5vw, 7.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 75em) {
  .section-banner__bottom .sbb-text span:last-child {
    font-size: 3.5rem;
  }
}
.section-banner__bottom .sbb-images {
  display: flex;
  align-items: center;
  flex: 1 1 33.33%;
}
.section-banner__bottom .sbb-images img {
  flex: 1 1 0;
}
@media screen and (max-width: 75em) {
  .section-banner__bottom .sbb-images {
    flex: 1 1 20%;
  }
  .section-banner__bottom .sbb-images div:first-child {
    display: none;
  }
}
@media screen and (max-width: 56.25em) {
  .section-banner__bottom .sbb-images {
    display: none;
  }
}

.section-about > * {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--grid-gap);
}
@media screen and (max-width: 56.25em) {
  .section-about > * {
    grid-template-columns: 1fr;
  }
}

.section-individual {
  background-color: var(--color-tertiary);
}
.section-individual__main {
  display: grid;
  grid-gap: var(--grid-gap);
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 56.25em) {
  .section-individual__main {
    grid-template-columns: 1fr;
  }
}
.section-individual__sub {
  padding: 3rem 0;
}
.section-individual .sim__left {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 56.25em) {
  .section-individual .sim__left {
    background-size: auto;
    background-position: center 95%;
    height: 40rem;
  }
}
.section-individual .sim__left img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.section-individual .sim__right {
  padding: 4rem 1.5rem 4rem 0;
  max-width: 71rem;
}
@media screen and (max-width: 56.25em) {
  .section-individual .sim__right {
    padding: 3rem 2rem;
    max-width: none;
  }
}
.section-individual .sim__right * {
  color: #fff;
}

.section-page {
  padding-top: 7rem;
}

.section-professionnal {
  background-color: var(--color-tertiary);
}
.section-professionnal__main {
  display: grid;
  grid-gap: var(--grid-gap);
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 56.25em) {
  .section-professionnal__main {
    grid-template-columns: 1fr;
  }
}
.section-professionnal__sub {
  padding: 3rem 0;
}
.section-professionnal .spm__left {
  --padding-container: 2rem;
  padding: 4rem 0 4rem var(--padding-container);
  margin-left: auto;
  max-width: calc(71rem + var(--padding-container));
}
@media screen and (max-width: 56.25em) {
  .section-professionnal .spm__left {
    order: 2;
    padding: 3rem 2rem;
    max-width: none;
  }
}
.section-professionnal .spm__left * {
  color: #fff;
}
.section-professionnal .spm__right {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 56.25em) {
  .section-professionnal .spm__right {
    background-size: auto;
    background-position: center 95%;
    order: 1;
    height: 40rem;
  }
}
.section-professionnal .spm__right img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

.section-disability > * {
  display: grid;
  grid-gap: var(--grid-gap);
  grid-template-columns: 2fr 1fr 2fr;
}
@media screen and (max-width: 93.75em) {
  .section-disability > * {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 28rem 1fr;
  }
}
@media screen and (max-width: 56.25em) {
  .section-disability > * {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
@media screen and (max-width: 93.75em) {
  .section-disability__center {
    grid-row: 1/-1;
  }
}
@media screen and (max-width: 56.25em) {
  .section-disability__center {
    display: none;
  }
}
@media screen and (max-width: 93.75em) {
  .section-disability__right {
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
}

.section-partners > * {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: var(--grid-gap);
}
@media screen and (max-width: 56.25em) {
  .section-partners > * {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 56.25em) {
  .section-partners > * .section-title-feat {
    text-align: center;
  }
}
@media screen and (max-width: 56.25em) {
  .section-partners > * .section-title-feat::before {
    background: url(/storage/svg/line-under-1.svg) center left no-repeat;
    left: 50%;
    transform: translateX(-50%);
  }
}

.section-contact > .ps-container.is-flex {
  display: flex;
}
.section-contact__left {
  padding-right: 1rem;
  width: calc(-35rem + 50%);
  min-width: 33.5rem;
}
@media screen and (max-width: 43.75em) {
  .section-contact__left {
    display: none;
  }
}
.section-contact__right {
  flex-grow: 1;
  padding-left: 3rem;
}
@media screen and (max-width: 43.75em) {
  .section-contact__right {
    padding-left: 0;
  }
}
.section-contact .scl__logo {
  display: block;
  margin-bottom: 2rem;
  max-width: 20rem;
}

.section-overlay-1 {
  position: relative;
  isolation: isolate;
}
.section-overlay-1::before {
  content: "";
  background-color: var(--color-tertiary);
  position: absolute;
  top: 50%;
  left: 0;
  height: calc(100% - 35rem);
  width: 100%;
  z-index: -1;
  transform: translateY(-50%);
}

.section-404 {
  background: url("/storage/isc-renovation-logement-collectifs-w1920x1280.webp") center center no-repeat;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.section-404::before, .section-404::after {
  content: "";
  background-color: var(--color-tertiary);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.section-404::before {
  mix-blend-mode: multiply;
  z-index: -2;
}
.section-404::after {
  opacity: 0.7;
  z-index: -1;
}
.section-404 .logo {
  opacity: 0.5;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: -1;
}
.section-404 .logo img {
  filter: brightness(10);
  width: 18rem;
}
.section-404 .t404 {
  background: var(--gradient-1);
  color: transparent;
  -webkit-background-clip: text;
  font-size: 20rem;
  line-height: 1.1;
  font-weight: 800;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.section-404 .title {
  color: #fff;
  font-size: 4rem;
  margin-bottom: 1rem;
  text-align: center;
}
.section-404 .text {
  color: #fff;
  font-size: 2rem;
  font-weight: 200;
  text-align: center;
}

.color-white {
  color: #fff !important;
}

.d-inline-block {
  display: inline-block !important;
}

.mt-10 {
  margin-top: 1rem !important;
}

.mt-20 {
  margin-top: 2rem !important;
}

.mt-30 {
  margin-top: 3rem !important;
}

.mt-40 {
  margin-top: 4rem !important;
}

.mt-50 {
  margin-top: 5rem !important;
}

.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}
