/* RED HAT DISPLAY FONT */
@font-face {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url(../../assets/font/RedHatDisplay.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* BASICS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
}

html {
  font-size: 10px;
}

:root {
  --light: 241, 241, 241;
  --light-gray: 218, 224, 230;
  --gray: 136, 136, 136;
  --dark: 16, 16, 16;
  --primary: 231, 241, 249; /* BLUE */
  --secondary: 210, 133, 70; /* ORANGE*/
  --accent: 26, 40, 100;

  --h1-fz: clamp(4.8rem, 2.83072rem + 1.9231vw, 5.6rem);
  --h2-fz: clamp(4rem, 2.03072rem + 1.9231vw, 4.8rem);
  --h3-fz: clamp(2.8rem, 1.81536rem + 0.9615vw, 3.2rem);
  --h4-fz: clamp(2rem, 1.01536rem + 0.9615vw, 2.4rem);
  --h5-fz: clamp(1.6rem, 0.61536rem + 0.9615vw, 2rem);
  --h6-fz: clamp(1.4rem, 0.90768rem + 0.4808vw, 1.6rem);
  --p-fz: clamp(1.2rem, 0.70768rem + 0.4808vw, 1.4rem);
  --small-fz: clamp(1rem, 0.50768rem + 0.4808vw, 1.2rem);
}

body {
  overflow-x: hidden;
  font-family: "Red Hat Display";
  font-weight: 400;
  font-size: var(--p-fz);
  background: rgb(var(--primary));
  color: rgb(var(--dark));
}

main {
  position: relative;
}

/* BURGER */

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding-inline: 5rem;
}

.burger__icon {
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/menu-icon.svg);
}

.header__open .burger__icon {
  background: url(../img/close-icon.svg);
}

/* IMG/VIDEO */

img,
video {
  display: block;
  width: 100%;
  height: auto;
}

/* TEXT */

h1 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: var(--h1-fz);
}

h2 {
  text-transform: uppercase;
  font-size: var(--h2-fz);
}

h3 {
  text-transform: uppercase;
  font-size: var(--h3-fz);
}

h4 {
  font-weight: 400;
  font-size: var(--h4-fz);
}

h5 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: var(--h5-fz);
}

h6 {
  font-size: var(--h6-fz);
}

p,
a {
  font-size: var(--p-fz);
}

a {
  color: rgb(var(--dark));
  display: inline-block;
  width: fit-content;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

small {
  font-size: var(--small-fz);
}

.bold {
  font-weight: 700;
}

.gray {
  color: rgb(var(--gray));
}

.errors {
  color: red;
}

.link {
  color: rgb(var(--secondary));
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 88px;
  z-index: 999;
  background: rgb(var(--secondary));
  transition: transform 0.2s ease-out;
}

.scrolled header {
  transform: translateY(-110%);
}

.header__informations {
  display: flex;
  width: 100%;
}

#headerWrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(var(--light-gray));
  justify-content: stretch;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(32rem, 7.38464rem + 24.0385vw, 42rem);
  height: var(--li-height);
  padding: 3.2rem 5rem;
}

nav {
  border-inline: 1px solid rgb(var(--light-gray));
  width: 100%;
  height: 100%;
}

ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  list-style-type: none;
}

li {
  flex: 1;
  height: var(--li-height);
  background: rgb(var(--secondary));
}

li a {
  height: 100%;
  width: 100%;
  color: rgb(var(--primary));
}

header li,
header li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--primary));
  text-transform: uppercase;
  transition: background 0.2s ease-out;
}

header li a {
  opacity: 0.75;
  transition: opacity 0.2s ease-out;
}

header li:hover a,
.current a {
  opacity: 1;
}

#lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#langSelector {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}

#langSelector li {
  text-align: center;
  border-inline: 1px solid rgb(var(--light-gray));
  border-bottom: 1px solid rgb(var(--light-gray));
}

#currentLang {
  padding-inline: 5rem;
}

#lang:hover #langSelector {
  max-height: 100vh;
}

/* DOTS BACKGROUND */

.logo:hover,
header li:hover,
#currentLang,
header .current {
  background: rgb(var(--secondary)) url(../img/dots-bg.webp) top left;
}

.dots-bg {
  background: rgb(var(--primary)) url(../img/dots-bg.webp) top left;
}

/* WRAPPER */

.wrapper {
  /* max-width: 144rem; */
  padding-inline: 5rem;
  margin: auto;
  position: relative;
}

/* PRELOADER */

#preloader {
  background: rgb(var(--accent));
  z-index: 1000;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  top: 0;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

/* #preloader #preloaderWrapper {
  width: 100vw;
  height: 100dvh;
  position: relative;
} */

#preloader video {
  object-fit: contain;
}

.preloader__done #preloader {
  opacity: 0;
}

/* BTNs */

.btn,
a.btn.invert:hover,
input.btn.invert:hover {
  padding: 1.6rem 3.2rem;
  background: rgb(var(--primary));
  color: rgb(var(--dark));
  border: 1px solid rgb(var(--dark));
  text-transform: uppercase;
  transition: background 0.2s ease-out, color 0.2s ease-out;
}

.btn.invert,
a.btn:hover,
input.btn:hover,
input[type="submit"]:disabled:hover {
  background: rgb(var(--dark));
  color: rgb(var(--primary));
}

/* LABEL/INPUT/SELECT/TEXTAREA */

label {
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  text-wrap: nowrap;
}

input,
select,
textarea {
  background: none;
  font-family: Red Hat Display;
  display: inline-block;
  width: 100% !important;
}

input::placeholder,
textarea::placeholder,
select option[disabled="true"] {
  color: rgb(var(--gray));
}

textarea {
  resize: vertical;
}

/* WAVE */

#wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 2;
  pointer-events: none;
}

#wave::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  z-index: 5;
  background: linear-gradient(
    to top,
    rgba(var(--primary), 1) 0%,
    rgba(var(--primary), 0) 100%
  );
}

#wave video {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1;
  object-fit: cover;
  pointer-events: none;
}

/* HERO */

#hero {
  position: relative;
}

#hero .wrapper {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}

#hero h4 {
  text-align: center;
}

#mailIcon {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  background: rgb(var(--secondary));
  z-index: 6;
  transition: transform 0.2s ease-out, bottom 0.2s ease-out;
}

#mailIcon a {
  padding: 2rem;
  font-weight: 700;
  color: rgb(var(--light));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}

#mailIcon a img {
  width: 2.4rem;
}

#mailIcon:hover {
  transform: scale(1.05);
}

.scrolled #mailIcon {
  bottom: -10%;
}

.hero__btn {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}

/* ADVANTAGES */

#advantages {
  padding-block: 5rem;
}

.advantages__part,
.tos__part,
.legal__part,
.privacy__part {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 2fr;
  grid-row-gap: 1.6rem;
  padding-block: 5rem;
  border-bottom: 1px solid rgb(var(--light-gray));
}

.advantages__part:last-of-type {
  padding-bottom: 0;
  border: none;
}

.tos__part:last-of-type,
.legal__part:last-of-type,
.privacy__part:last-of-type {
  border: none;
}

.advantages__part p,
.tos__part p,
.legal__part p,
.privacy__part p {
  display: inline-block;
  grid-column: 2;
  grid-row: 2;
  padding: 1rem 0 1rem 1.6rem;
  border-left: 1px solid rgb(var(--secondary));
}

/* DELIMITATION BLOCK */

.delimitation-block {
  width: 0;
  height: 2.5rem;
  background: url(../img/dots-bg.webp) top left;
  border: 1px solid rgb(var(--light-gray));
  transition: width 0.5s ease-out;
}

.delimitation-block.large {
  height: 5rem;
}

.delimitation-block.revealed {
  width: 100vw;
}

/* SUBTITLES */

.subtitle {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 2fr;
  gap: 3.2rem;
  padding-block: calc(var(--li-height) + 5rem) 5rem;
}

.subtitle h2 {
  text-wrap: balance;
}

#progress .subtitle {
  padding-block: 5rem;
}

/* PROGRESS */

#progressSteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.progress__step {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 5rem;
  border: 1px solid rgb(var(--light-gray));
}

/* FAQ */

#faq .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  padding-block: 5rem;
}

.faq__informations {
  position: sticky;
  top: 13rem;
  left: 0;
  align-self: flex-start;
  max-width: 33%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.faq__list {
  height: 100%;
  max-width: 66%;
  width: 100%;
  padding-inline: 2.4rem;
  border: 1px solid rgb(var(--light-gray));
}

.faq__item,
.faq__question,
.faq__icon,
.faq__answer {
  width: 100%;
  display: flex;
  align-items: center;
}

.faq__item {
  overflow: hidden;
  flex-direction: column;
  align-items: start;
}

.faq__question,
.faq__answer {
  justify-content: space-between;
}

.faq__question {
  padding-block: 2.4rem;
  border-top: 1px solid rgb(var(--light-gray));
}

.faq__item:first-of-type .faq__question {
  border: none;
}

.faq__answer {
  padding-block: 2.4rem;
  border-top: 1px solid rgb(var(--light-gray));
}

.faq__icon {
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  transition: transform 0.2s ease-out;
}

.opened .faq-icon {
  transform: rotate(180deg);
}

.faq__answer-wrap {
  overflow: hidden;
}

.faq__answer-wrap {
  display: block;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq__answer-wrap.opening,
.faq__answer-wrap.closing {
  transition: max-height 0.3s ease;
}

/* PARTNERS */

#partners {
  margin-block: 3.2rem;
  min-width: 100vw;
  height: 15rem;
  position: relative;
  overflow: hidden;
}

#partners::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(var(--primary), 1) 0%,
    rgba(var(--primary), 0) 10%,
    rgba(var(--primary), 0) 90%,
    rgba(var(--primary), 1) 100%
  );
  z-index: 1;
}

#partners img {
  position: absolute;
  top: 0;
  left: 100%;
  width: auto;
  height: 15rem;
  animation: partnersMarquee 15s infinite linear;
}

@keyframes partnersMarquee {
  0% {
    left: 100%;
  }

  100% {
    left: -15rem;
  }
}

#partners img:nth-child(1) {
  animation-delay: calc(15s / 4 * (4 - 1) * -1);
}

#partners img:nth-child(2) {
  animation-delay: calc(15s / 4 * (4 - 2) * -1);
}

#partners img:nth-child(3) {
  animation-delay: calc(15s / 4 * (4 - 3) * -1);
}

#partners img:nth-child(4) {
  animation-delay: calc(15s / 4 * (4 - 4) * -1);
}

/* FOOTER */

footer {
  text-transform: uppercase;
  /* padding-bottom: 20rem; */
}

footer a {
  color: rgba(var(--secondary), 0.5);
  transition: color 0.2s ease-out;
}

.vertical-line {
  width: 1px;
  height: 3.6rem;
  background: rgb(var(--light-gray));
}

.footer__informations {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.footer__part .vertical-line {
  height: 1.8rem;
}

.footer__part {
  border: 1px solid rgb(var(--light-gray));
  padding: 3.2rem 5rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  width: 50%;
  transition: background 0.2s ease-out;
}

.footer__part:has(> a:hover) {
  background: url(../img/dots-bg.webp) top left;
}

footer .current,
footer a:hover {
  color: rgba(var(--secondary), 1);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 3.2rem 5rem;
}

.footer__logo img {
  width: 28rem;
}

/* ABOUT */

.about__list {
  display: flex;
  flex-direction: column;
}

.about__item {
  display: flex;
  border: 1px solid rgb(var(--light-gray));
  align-items: flex-start;
}

.about__content,
.about__img {
  width: 50%;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding: 5rem;
  height: fit-content;
}

.about__img {
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}

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

.about__cta {
  display: flex;
  gap: 3.2rem;
}

/* TEAM/SERVICES */

.team__list,
.services__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.team__item,
.services__item {
  border: 1px solid rgb(var(--light-gray));
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.team__item {
  width: 50%;
}

.team__person {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.8rem;
}

.team__person p {
  padding-bottom: 2.4rem;
}

.team__person .btn {
  width: 100%;
  text-align: center;
}

/* SERVICES */

.services__item {
  width: calc(100% / 3);
  height: 100%;
  background: rgb(var(--primary));
}

.services__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.services__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.8rem;
  padding-inline: 3.2rem;
}

.services__cta {
  display: flex;
  margin-top: auto;
}

.services__cta p.btn {
  border: 1px solid rgb(var(--light-gray));
}

.services__cta .btn {
  width: 50%;
  text-align: center;
  text-wrap: nowrap;
}

/* REVEAL */

.reveal {
  filter: blur(1rem);
  opacity: 0;
  transform: translateY(2rem);
  transition: filter 0.5s ease-out, opacity 0.5s ease-out,
    transform 0.5s ease-out;
  transition-property: filter, opacity, transform;
}

.reveal.revealed {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

/* CONTACT */

form {
  display: flex;
  flex-wrap: wrap;
  border-inline: 1px solid rgb(var(--light-gray));
  border-top: 1px solid rgb(var(--light-gray));
}

#contact ul {
  padding: 0.5rem 0 0 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}

#contact li {
  height: auto;
  list-style-type: disc;
  background: none;
}

.contact__item {
  display: flex;
  align-items: start;
  gap: 2.4rem;
  width: 50%;
  padding: 2.4rem 3.2rem;
  border-bottom: 1px solid rgb(var(--light-gray));
}

.contact__item.input-required label::after,
.contact__item.input-required label::after,
.contact__item.input-required label::after {
  content: "*";
  color: rgb(var(--secondary));
  position: absolute;
  top: 0;
  right: 1.4rem;
}

.contact__radio {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

#estimatedTime {
  justify-content: end;
  width: 100%;
}

.contact__item p {
  text-transform: uppercase;
  font-weight: 700;
}

#estimatedTimeDisplay {
  font-weight: 400;
}

.contact__label {
  padding-right: 2.4rem;
  border-right: 1px solid rgb(var(--light-gray));
}

.contact__item:last-of-type {
  border-bottom: none;
}

.contact__item:has(> input:focus, > select:focus, > textarea:focus) {
  background: url(../img/dots-bg.webp) top left;
}

.contact__item:has(> textarea) {
  align-items: start;
}

#appointmentType,
#residenceType,
#siteType,
#surface,
#expertiseField,
#estimatedTime,
#availabilityGroup {
  display: none;
}

/* REVIEWS */

.reviews__parent {
  display: flex;
  flex-wrap: wrap;
}

.review__item {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2.4rem;
  border: 1px solid rgb(var(--light-gray));
}

.review__item img {
  width: 10%;
}

.review__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review__item h5 {
  font-weight: 700;
}

.review__item h6 {
  padding-left: 1.6rem;
  position: relative;
  font-weight: 600;
}

.review__item h6::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/star.svg) no-repeat center center;
  width: 1.2rem;
  height: 1.2rem;
}

/* MOBILE/DESTKOP */

.mobile-only {
  display: none;
}

/* RESPONSIVE - TABLET */

@media screen and (max-width: 1024px) {
  :root {
    --h1-fz: clamp(3.6rem, 0rem + 4.6875vw, 4.8rem);
    --h2-fz: clamp(3.2rem, 0.8rem + 3.125vw, 4rem);
    --h3-fz: clamp(2.4rem, 1.2rem + 1.5625vw, 2.8rem);
    --h4-fz: clamp(1.6rem, 0.4rem + 1.5625vw, 2rem);
    --h5-fz: clamp(1.4rem, 0.8rem + 0.7813vw, 1.6rem);
    --h6-fz: clamp(1.2rem, 0.6rem + 0.7813vw, 1.4rem);
    --small-fz: 1rem;
  }

  .mobile-only:not(.delimitation-block) {
    display: inherit;
  }

  .logo {
    border-right: 1px solid rgb(var(--light-gray));
    padding: 2.4rem;
  }

  .burger {
    height: var(--li-height);
    border-left: 1px solid rgb(var(--light-gray));
  }

  #headerWrap {
    justify-content: space-between;
  }

  .header__informations {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: var(--li-height);
    height: 100dvh;
    flex-direction: column;
    justify-content: space-between;
    background: rgb(var(--secondary));
    z-index: -1;
    transition: max-height 0.5s ease-out;
  }

  .header__open .header__informations {
    max-height: 100dvh;
  }

  nav ul {
    flex-direction: column;
    justify-content: start;
  }

  li {
    max-height: var(--li-height);
  }

  nav li {
    width: 100%;
    padding: 2.4rem 3.2rem;
    border-bottom: 1px solid rgb(var(--light-gray));
  }

  header li a {
    justify-content: start;
  }

  #lang {
    height: auto;
    border-top: 1px solid rgb(var(--light-gray));
    flex-direction: row;
    justify-content: stretch;
    width: 100vw;
  }

  #currentLang {
    padding-inline: 0;
    flex: 1;
  }

  #lang li,
  #currentLang {
    max-width: 25vw;
    width: 100%;
  }

  #langSelector {
    position: static;
    max-height: 100%;
    max-width: 75vw;
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  /* PRELOADER */
  #preloader {
    padding: 5%;
  }

  /* ADVANTAGES */

  .advantages__part,
  .tos__part,
  .legal__part,
  .privacy__part {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }

  /* SUBTITLES */

  .subtitle {
    grid-template-columns: 2fr 1fr;
    padding-block: calc(var(--li-height) + 3.2rem) 3.2rem;
  }

  #progress .subtitle {
    padding-block: 3.2rem;
  }

  /* PARTNERS */

  #partners {
    margin-block: 2.4rem;
    height: 10rem;
  }

  #partners img {
    height: 10rem;
  }

  @keyframes partnersMarquee {
    0% {
      left: 100%;
    }

    100% {
      left: -10rem;
    }
  }

  /* FOOTER */

  .footer__informations {
    flex-direction: column;
  }

  .footer__part {
    width: 100%;
  }

  /* TEAM/SERVICES */

  /* .team__item, */
  .services__item {
    width: 50%;
  }

  /* CONTACT */
  .contact__item {
    width: 100%;
  }

  .review__item {
    width: 50%;
  }
}

/* RESPONSIVE - MOBILE */

@media screen and (max-width: 768px) {
  .mobile-only {
    display: inherit;
  }

  #preloader {
    padding: 0%;
  }
  #progressSteps {
    display: flex;
    flex-direction: column;
  }

  .progress__step {
    padding: 1.6rem;
  }

  .wrapper {
    padding-inline: 1.6rem;
  }

  #faq .wrapper {
    flex-direction: column;
    padding-block: 1.6rem;
    gap: 2.4rem;
  }

  /* SUBTITLES */

  .logo {
    width: auto;
    height: auto;
    justify-content: start;
    border-right: none;
    padding: 1.6rem;
  }

  .logo img {
    width: 80%;
  }

  .burger {
    height: auto;
    padding-inline: 2rem;
    border-left: none;
  }

  .subtitle {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.8rem;
  }

  #advantages {
    padding-block: 1.6rem;
  }

  .about__item {
    display: flex;
    flex-direction: column-reverse;
  }

  .about__content,
  .about__img {
    width: 100%;
  }

  .about__content {
    padding: 2.4rem 1.6rem;
    gap: 1.6rem;
  }

  .about__cta {
    flex-direction: column;
    gap: 1.6rem;
  }

  .advantages__part,
  .progress__step,
  .tos__part,
  .legal__part,
  .privacy__part {
    padding-block: 1.6rem;
    gap: 1.2rem;
  }

  .team__item {
    gap: 2.4rem;
  }

  .team__person p {
    padding-bottom: 1.6rem;
  }

  .faq__informations,
  .faq__list {
    max-width: 100%;
  }

  .faq__list {
    padding: 0;
    border-inline: none;
  }

  .faq__informations {
    position: static;
  }

  /* PARTNERS */

  #partners {
    margin-block: 1.6rem;
    height: 7.5rem;
  }

  #partners img {
    height: 7.5rem;
  }

  @keyframes partnersMarquee {
    0% {
      left: 100%;
    }

    100% {
      left: -7.5rem;
    }
  }

  .contact__item {
    padding: 1.6rem;
  }

  .btn,
  .btn.invert:hover {
    padding: 1.2rem 1.6rem;
  }

  #mailIcon {
    bottom: 2.5rem;
    right: 2.5rem;
  }

  #mailIcon a {
    padding: 1.4rem;
  }

  .footer__logo {
    padding: 1.6rem;
    flex-direction: column;
    gap: 0.8rem;
    align-items: start;
  }

  .footer__logo .vertical-line {
    display: none;
  }

  .footer__part {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1.6rem 1.2rem;
  }

  footer .vertical-line {
    display: none;
  }

  footer a {
    color: rgb(var(--secondary));
  }

  footer a,
  footer p {
    font-size: var(--small-fz);
  }

  footer .current {
    position: relative;
    padding-left: 1.6rem;
  }

  footer .current::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 0.1rem;
    background: rgb(var(--secondary));
  }

  /* TEAM/SERVICES */

  .team__item,
  .services__item {
    width: 100%;
  }

  .services__item {
    gap: 2.4rem;
  }

  .services__content {
    padding-inline: 1.6rem;
  }
}
