:root {
  --primary-color-400: #d50a2c;
  --primary-color-500: #d30030;
  --primary-color-600: #cc0033;
  --primary-color-disabled: #a98a90;
  --secondary-color-500: #0b72d9;
  --secondary-color-500-10-transparency: #0b72d91a;
  --neutral-cold-400: #e1e8ee;
  --neutral-cold-500: #f1f4f6;
  --neutral-color-400: #e1e5e8;
  --neutral-color-500: #c9ced4;
  --neutral-color-700: #a0a7af;
  --neutral-color-900: #79828a;
  --neutral-dark-background: #3a3f4a;
  --error: #d30030;
  --error-background: #fde2e7;
  --white: #ffffff;
  --white-transparency: #ffffff4d;

  --black: #000;
  --margin-page: 112px;
  --grid-gap: 32px;
  --grid-columns: 16;
  --width: 1216px;
}

@media screen and (max-width: 360px) {
  :root {
    --width: calc(100% - 20px);
  }
}

@media screen and (min-width: 360px) and (max-width: 430px) {
  :root {
    --width: 312px;
  }
}

@media screen and (min-width: 430px) and (max-width: 768px) {
  :root {
    --width: 382px;
  }
}

@media screen and (min-width: 768px) and (max-width: 834px) {
  :root {
    --width: 672px;
  }
}

@media screen and (min-width: 834px) and (max-width: 1024px) {
  :root {
    --width: 738px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  :root {
    --grid-columns: 6;
    --margin-page: 48px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --grid-columns: 6;
    --grid-gap: 8px;
    --margin-page: 24px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  :root {
    --grid-columns: 6;
    --margin-page: 48px;
    --width: 928px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  :root {
    --margin-page: 48px;
    --grid-columns: 12;
    --width: 1184px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--black);
  text-rendering: optimizelegibility;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  line-height: 24px;
}

p {
  line-height: 24px;
}

a {
  color: var(--secondary-color-500);
}

label {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 24px;
  cursor: pointer;
  margin-bottom: 4px;
}

sup {
  font-size: 0.5em;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input[type="tel"],
input[type="number"],
input[type="text"],
input[type="email"] {
  border: 1px solid var(--neutral-color-500);
  border-radius: 4px;
  height: 52px;
  padding-block: 10px;
  padding-inline: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

input:focus-visible {
  outline: none;
  border: 1px solid var(--secondary-color-500);
}

input::placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--neutral-color-700);
  font-size: 16px;
}

.hidden {
  display: none !important;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.size-14 {
  font-size: 14px;
}

.size-h1 {
  font-size: 20px;
  line-height: 28px;
  @media screen and (min-width: 768px) {
    font-size: 46px;
    line-height: 52px;
  }
}

.size-h2 {
  font-size: 30px;
  line-height: 38px;
  @media screen and (max-width: 768px) {
    font-size: 20px;
  }
}

.size-h3 {
  font-size: 20px;
  line-height: 28px;
}

.show-conditions {
  cursor: pointer;
  color: var(--secondary-color-500);
}

.icon-48 {
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
  stroke-width: 1.5px;
}

.icon-72 {
  width: 72px;
  height: 72px;
  stroke-width: 1.5px;
}

.main {
  width: var(--width);
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gap);
  position: relative;
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    margin-top: 200px;
  }
}

.margin-content {
  margin-top: 200px;
  @media screen and (max-width: 1439px) {
    margin-top: 32px;
  }
}

.main__container {
  grid-column: 1/11;
}

.icon-primary {
  color: var(--primary-color-400);
}

.text-primary {
  color: var(--primary-color-600);
}

.margin-page {
  margin-inline: calc((100% - var(--width)) / 2);
}

.margin-30 {
  margin-block: 30px;
}

.margin-56 {
  margin-block: 56px;
}

.primary-button {
  border: 0;
  background-color: var(--primary-color-400);
  border-radius: 8px;
  font-size: 18px;
  color: var(--white);
  padding-block: 10px;
  padding-inline: 24px;
  width: fit-content;
  cursor: pointer;
}

.primary-button:hover {
  background-color: var(--primary-color-600);
}

.primary-outline-button {
  border: 1px solid var(--primary-color-400);
  background-color: var(--white);
  border-radius: 8px;
  font-size: 18px;
  color: var(--primary-color-400);
  padding-block: 10px;
  padding-inline: 24px;
  width: fit-content;
  cursor: pointer;
}

.primary-outline-button:hover {
  border: 1px solid var(--primary-color-600);
  color: var(--primary-color-400);
}

.header-button {
  display: block;
  @media screen and (max-width: 768px) {
    display: none;
  }
}
.primary-contrast-button {
  border: 0;
  background-color: var(--white);
  border-radius: 8px;
  font-size: 18px;
  color: var(--primary-color-400);
  padding-block: 10px;
  padding-inline: 24px;
  width: fit-content;
}

.pre-header {
  background-color: var(--primary-color-400);
  box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  color: var(--white);
  padding-inline: var(--margin-page);
  padding-block: 20px;
  min-height: 64px;
  text-align: center;
  position: fixed;
  z-index: 10;
  width: 100%;
  @media screen and (max-width: 768px) {
    display: none;
  }
}

#close-modal-form {
  cursor: pointer;
}

.logos__container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 492px;
  height: 144px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  margin-right: 17px;
  @media screen and (max-width: 768px) {
    width: 250px;
    height: 75px;
  }
  @media screen and (min-width: 768px) and (max-width: 1440px) {
    width: 360px;
    height: 107px;
  }
}

.logo__left {
  min-height: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50%;
  @media screen and (max-width: 768px) {
    padding: 12px;
  }
}

.logo__right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 48px;
  border-left: 1px solid var(--neutral-cold-400);
  max-width: 50%;

  @media screen and (max-width: 1440px) {
    padding: 24px;
  }
}

.logo_brand {
  max-width: 100%;
  max-height: 100%;
}

.logo_distributor {
  max-width: 130px;
  max-height: 100%;
  @media screen and (max-width: 769px) {
    max-width: 100px;
  }
}

.header-button__container {
  flex-grow: 1;
  padding-bottom: 24px;
  display: flex;
  justify-content: flex-end;
  @media screen and (min-width: 768px) {
    border-bottom: 1px solid var(--neutral-color-500);
  }
  @media screen and (max-width: 769px) {
    padding-bottom: 0;
    align-items: center;
  }
}

.header__condiciones {
  color: var(--secondary-color-500);
  font-size: 14px;
}

.hero {
  background-image: url("./assets/hero_background_small.png");
  background-size: cover;
  background-position: center;
  padding-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

  @media screen and (min-width: 768px) and (max-width: 1280px) {
    padding-bottom: 0;
  }
  @media screen and (min-width: 768px) {
    padding-bottom: 0;
    background-image: url("./assets/hero_background.avif");
  }
}

.logo-text {
  font-weight: 500;
  text-align: center;
  font-size: 10px;
  line-height: normal;
  @media screen and (min-width: 768px) {
    font-size: 16px;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 104px;
  width: var(--width);
  @media screen and (max-width: 768px) {
    padding-top: 32px;
    padding-bottom: 16px;
    align-items: center;
  }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    padding-bottom: 0;
    align-items: flex-start;
  }
}

.small-hidden {
  display: block;
  @media screen and (max-width: 768px) {
    display: none;
  }
}

.small-visible {
  display: none;
  @media screen and (max-width: 768px) {
    display: block;
    padding-inline: calc((100% - var(--width)) / 2);
    padding-top: 20px;
    padding-bottom: 30px;
  }
}

.secondary-link {
  color: var(--secondary-color-500);
}

.hero__title {
  width: var(--width);
  margin-inline: var(--margin-page);
  padding-top: 40px;
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: 24px var(--grid-gap);
  @media screen and (max-width: 768px) {
    padding-top: 32px;
    padding-bottom: 16px;
  }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    padding-top: 35px;
    padding-bottom: 40px;
  }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    padding-bottom: 50px;
  }
}

.hero-image__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gap);
  padding-inline: calc((100% - var(--width)) / 2);
  pointer-events: none;
  @media screen and (max-width: 430px) {
    position: relative;
    height: 120px;
    top: unset;
    display: flex;
    justify-content: center;
  }
  @media screen and (min-width: 430px) and (max-width: 768px) {
    position: relative;
    height: 140px;
    top: unset;
    display: flex;
    justify-content: center;
  }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    position: relative;
    height: 310px;
    top: unset;
    display: flex;
    justify-content: center;
  }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    position: relative;
    height: 288px;
    top: unset;
  }
  @media screen and (min-width: 1280px) {
    position: absolute;
    top: 520px;
  }
  @media screen and (min-width: 1440px) and (max-width: 1551px) {
    position: absolute;
    top: 620px;
    background-color: transparent;
  }
  @media screen and (min-width: 1551px) {
    top: 620px;
    position: absolute;
    background-color: transparent;
  }
}

.hero-image {
  width: 100%;
  position: relative;
  max-width: 850px;
  @media screen and (max-width: 768px) {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 500px;
  }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 700px;
  }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    position: absolute;
    bottom: 0;
    width: 640px;
  }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    position: absolute;
    bottom: 0;
    width: 640px;
  }
}

.grid_container {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gap);
}

.hero__title__item {
  grid-column: 1/7;
  @media screen and (max-width: 430px) {
    grid-column: 1/4;
  }
  @media screen and (min-width: 430px) and (max-width: 1280px) {
    grid-column: 1/4;
  }
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    grid-column: 1/6;
  }
  @media screen and (min-width: 1440px) {
    grid-column: 1/7;
  }
}

.hero__title__claim {
  color: var(--primary-color-400);
  letter-spacing: -0.46px;
}

.hero__title__item__long {
  grid-column: 1/7;
}

.columns-10 {
  grid-column: 1/11;
  @media screen and (max-width: 1024px) {
    grid-column: 1/7;
  }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    grid-column: 1/5;
  }
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    grid-column: 1/9;
  }
}

.standout {
  background-color: var(--secondary-color-500-10-transparency);
  color: var(--secondary-color-500);
  padding: 24px 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-top: 56px;
  grid-column: 1/11;
  @media screen and (max-width: 768px) {
    padding: 16px 14px;
  }
}

.standout__text-container {
  padding-left: 24px;
  border-left: 1px solid var(--secondary-color-500);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.standout__icon {
  margin-right: 24px;
}

.title__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  gap: 12px var(--grid-gap);
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  @media screen and (max-width: 1024px) {
    grid-template-columns: repeat(6, 1fr);
  }
}

.list__2 {
  gap: 36px var(--grid-gap);
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  @media screen and (max-width: 1024px) {
    grid-template-columns: repeat(6, 1fr);
  }
}

.list__item {
  display: flex;
  gap: 16px;
}

.list__item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.list__column__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.worker-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.column-1 {
  grid-column: 1/6;
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    grid-column: 1/4;
  }
  @media screen and (max-width: 768px) {
    grid-column: 1/7;
  }
}

.column-2 {
  grid-column: 6/11;
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    grid-column: 4/7;
  }
  @media screen and (max-width: 768px) {
    grid-column: 1/7;
  }
}

.image-list__container {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: var(--grid-gap);
  @media screen and (max-width: 768px) {
    grid-template-columns: repeat(6, 1fr);
  }
}

.aside-image__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.aside-image__container {
  grid-column: 1/6;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  @media screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.img-aside__list {
  grid-column: 6/11;
  display: flex;
  flex-direction: column;
  gap: 36px;
  @media screen and (max-width: 768px) {
    grid-column: 1/7;
  }
}

.aside-image {
  height: 530px;
  position: absolute;
  right: 0;
  @media screen and (max-width: 768px) {
    position: relative;
    width: 100%;
    height: auto;
  }
}

.article-section {
  padding-top: 60px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  border-bottom: 1px solid var(--neutral-color-400);
}

.article-section__2 {
  padding-block: 72px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  border-bottom: 1px solid var(--neutral-color-400);
}

.article-section-form__container {
  padding-top: 72px;
  padding-bottom: 86px;
  padding-inline: calc((100% - var(--width)) / 2);
  display: flex;
  flex-direction: column;
  gap: 40px 32px;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  overflow: hidden;
}

.article-text-icon {
  padding-top: 36px;
  padding-bottom: 62px;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--neutral-color-400);
  align-items: center;
}

.img__worker {
  width: 230px;
  border-radius: 8px;
  overflow: hidden;
}

.input-text__container {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
  gap: 32px;
}

.form-article {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.padding-72 {
  padding-block: 72px;
}

.gap-8 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gap-16 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-inputs__container {
  gap: 16px 32px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  @media screen and (max-width: 1024px) {
    grid-template-columns: repeat(6, 1fr);
  }
}

.checkbox__container {
  grid-column: 1/11;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 16px !important;
  height: 16px !important;
  border: 1px solid var(--neutral-color-500);
  border-radius: 4px;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  cursor: pointer;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  background-color: var(--neutral-color-700);
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

input[type="checkbox"]:focus {
  outline: transparent;
}

.checkbox__label {
  font-size: 14px;
  width: 95%;
}

.footer-hero {
  padding: var(--margin-page);
  background-image: url("./assets/saunier_footer-hero.jpg");
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gap);
}

.footer-hero__title {
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-column: 1/8;
  @media screen and (max-width: 1280px) {
    grid-column: 1/3;
  }
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    grid-column: 1/6;
  }
}

.info__text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: var(--neutral-color-900);
}

.info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  line-height: 18px;
}

.footer-info__list {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer {
  background-color: var(--neutral-cold-500);
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 32px;
  padding-bottom: 54px;
}

.footer__rights {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 32px;
  background-color: var(--neutral-cold-500);
  padding-inline: calc((100% - var(--width)) / 2);
}

.footer__list {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: end;
  gap: 16px;
  flex-wrap: wrap;
  @media screen and (max-width: 834px) {
    flex-direction: column;
    align-items: flex-end;
  }
}

#float-form__container {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(var(--grid-columns), 1fr);
  gap: var(--grid-gap);
  margin-inline: calc((100% - var(--width)) / 2);
  z-index: 10;
  pointer-events: none;
  @media screen and (max-width: 1024px) {
    display: none;
  }
}

.float-form {
  background-color: white;
  border-radius: 8px;
  height: fit-content;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  -moz-box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
}

.modal-form {
  background-color: white;
  border-radius: 8px;
  height: fit-content;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  -moz-box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  @media screen and (max-width: 768px) {
    width: 100vw;
    height: 100vh;
    overflow: auto;
  }
  @media screen and (min-width: 768px) {
    width: 672px;
  }
}

.modal-form__timeout {
  background-color: white;
  border-radius: 8px;
  height: fit-content;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  -moz-box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  animation: slideUp 0.2s ease-in-out forwards;
  @media screen and (max-width: 480px) {
    overflow: auto;
  }
  @media screen and (min-width: 768px) {
    width: 672px;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.float-form__input-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    padding: 0;
    margin: 16px 34px 40px;
  }
}

.modal-form__input-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  @media screen and (min-width: 768px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    padding: 0;
    margin: 16px 34px 40px;
  }
}

.modal-margin {
  margin: 28px 24px 20px;
}

.modal-label {
  display: block;
}
.float-label {
  display: none;
}

.input-right {
  @media screen and (min-width: 768px) {
    grid-column: 1/2;
  }
}

.input-left {
  @media screen and (min-width: 768px) {
    grid-column: 2/3;
  }
}

.input-two-column {
  @media screen and (min-width: 768px) {
    grid-column: 1/3;
  }
}

.float-form__title {
  width: 100%;
  padding: 28px 24px 20px;
  background-color: var(--primary-color-400);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-top {
  top: 87px;
  align-self: flex-start;
}

.sticky-bottom {
  bottom: -300px;
  align-self: flex-end;
}

.float-section {
  margin-top: 350px;
  margin-bottom: 50px;
  position: sticky;
  display: flex;
  flex-direction: column;
  grid-column: 12/17;
  height: fit-content;
  gap: 48px;
  pointer-events: visible;
  @media screen and (max-width: 768px) {
    margin: 0;
  }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    margin: 48px;
  }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    grid-column: 5/7;
  }
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    grid-column: 9/13;
  }
}

.float-form__info {
  margin: 24px;
}

.float-form__standout {
  background-color: var(--secondary-color-500-10-transparency);
  color: var(--secondary-color-500);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-inline: 24px;
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    margin-inline: 34px;
  }
}

.float-info__label {
  color: var(--primary-color-400);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.float-info__section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  padding-bottom: 12px;
}

.float-info__section-bottom-line:not(:last-child) {
  border-bottom: 1px solid var(--neutral-color-400);
}

.float-info {
  position: relative;
  padding-top: 144px;
  padding-inline: 24px;
  padding-bottom: 12px;
  overflow: visible;
  @media screen and (max-width: 1024px) {
    display: none;
  }
}

.float-info__logo {
  position: absolute;
  top: -24px;
}
.float__feedback {
  margin: 24px 24px 36px;
}

#close-modal {
  cursor: pointer;
  display: block;
}

.error-color {
  color: var(--error);
}

.error-text {
  font-size: 12px;
  color: var(--error);
  font-size: 12px;
  color: var(--error);
  background-color: var(--error-background);
  padding: 13px 15px 10px;
  border-radius: 4px;
  word-wrap: break-word;
}

.error-input {
  border: 1px solid var(--primary-color-500) !important;
}

.modal-button {
  cursor: pointer;
  position: fixed;
  bottom: 0;
  z-index: 10;
  height: 72px;
  width: 100%;
  background-color: var(--primary-color-500);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px 16px 0 0;
  -webkit-box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  -moz-box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  color: white;
  @media screen and (min-width: 768px) {
    display: none;
  }
}

.form__img-aside__container {
  grid-column: 11/17;
  grid-row: 1/5;
  height: 100%;
  position: relative;
  overflow-x: visible;
  @media screen and (max-width: 1024px) {
    display: none;
  }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    grid-column: 5/7;
  }
  @media screen and (min-width: 1280px) and (max-width: 1440px) {
    grid-column: 9/13;
  }
}

.form__img-aside {
  position: absolute;
  height: 60%;
}

.modal__background {
  position: fixed;
  background-color: #0000007d;
  width: 100vw;
  height: 100vh;
  z-index: 22;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lucide {
  cursor: pointer;
}

.policies__body {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#legal-info-modal {
  position: fixed;
  background-color: #0000007d;
  width: 100vw;
  height: 100vh;
  z-index: 20;
  display: flex;
  justify-content: center;
}

#form-modal__container {
  position: fixed;
  background-color: #0000007d;
  width: 100vw;
  height: 100vh;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: center;
}

#timeout-modal__container {
  position: fixed;
  background-color: #0000007d;
  width: 100vw;
  height: 100vh;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-info__content {
  max-width: 900px;
  min-width: 280px;
  background-color: white;
  opacity: 1;
  border-radius: 4px;
  margin-block: 30px;
  overflow-y: hidden;
  @media screen and (max-width: 834px) {
    max-width: 500px;
  }
}

.legal-info__title {
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid #e9ecef;
}

.legal-info__body {
  padding: 15px 32px;
  overflow: auto;
  height: calc(100% - 120px);
}

.legal-info__tabs {
  display: flex;
  flex-direction: row;
  width: calc(100% - 64px);
  border-bottom: 1px solid #e9ecef;
  margin: 20px 32px 0;
  @media screen and (max-width: 834px) {
    flex-direction: column;
  }
}

.legal-info__tab {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  @media screen and (max-width: 834px) {
    border: 1px solid #e9ecef;
  }
}

.legal-info__tab-link:hover {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.active-tab {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #e9ecef;
  border-bottom: 1px solid white;
  margin-bottom: -1px;
  @media screen and (max-width: 834px) {
    background-color: var(--secondary-color-500);
    color: var(--white);
    border-radius: 0px;
  }
}

.legal-info__tab-link {
  padding: 8px 16px;
  color: var(--secondary-color-500);
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.active-tab .legal-info__tab-link {
  @media screen and (max-width: 834px) {
    color: var(--white);
  }
}

.legal-info__tab-panel {
  padding-top: 40px;
}

.legal-block__title {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
  line-height: 1.75rem;
}

.legal-block__paragraph {
  margin-bottom: 20px;
  line-height: 1.5rem;
  font-size: 14px;
}

.legal-block__paragraph-list {
  padding-left: 40px;
  line-height: 1.5rem;
  font-size: 14px;
  margin-bottom: 16px;
}

.list-style__disc {
  list-style: disc;
}

.centered-text {
  text-align: center;
}

.legal-info__table {
  width: 100%;
  margin-block: 20px;
  display: inline-table;
}

.legal-info__cell {
  border: 1px solid #dee2e6;
  padding: 3px 10px;
  height: 31px;
  font-size: 14px;
}

.legal-table__title {
  font-weight: normal;
  text-align: start;
}

#close-modal__legal-info {
  color: #30363b;
  cursor: pointer;
}

.social__menu {
  display: flex;
  gap: 8px;
}

.footer__logo {
  width: 220px;
}

.footer-menu__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 50px;
  }
}

.icon__info {
  color: #999999;
  cursor: default;
  background-color: var(--white);
}

.icon__tooltip__wrapper:hover .icon__tooltip {
  display: block;
}

.icon__tooltip {
  display: none;
  position: absolute;
  background-color: var(--neutral-dark-background);
  color: var(--white);
  border-radius: 4px;
  padding: 12px;
  right: 24px;
  top: 0;
  min-width: 250px;
  z-index: 1;
}

.icon-tooltip__container {
  position: relative;
}

.icon__tooltip__wrapper {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  height: fit-content;
}

.brand__wrapper {
  width: 176px;
  height: 144px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.brand___img {
  max-width: 128px;
  max-height: 100%;
}

.markdown {
  @media screen and (min-width: 768px) {
    column-count: 2;
  }
  column-count: 1;
  column-gap: var(--grid-gap);
  gap: 32px;
}

.markdown * {
  margin-bottom: 16px;
}

.cookies-modal__buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border-top: 1px solid var(--neutral-cold-400);
  padding: 20px 32px;
  gap: 16px;
  overflow-y: auto;
  @media screen and (max-width: 430px) {
    flex-direction: column;
    align-items: flex-end;
    padding: 14px 16px;
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 21px;
  width: 21px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--primary-color-400);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color-400);
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

input:disabled + .slider {
  cursor: not-allowed;
}

input:checked:disabled + .slider {
  background-color: var(--primary-color-disabled);
}

.slider.round {
  border-radius: 24px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookies__header {
  width: 100%;
  padding: 28px 32px 20px;
  background-color: var(--primary-color-400);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  @media screen and (max-width: 834px) {
    padding: 20px 32px 16px;
  }
  @media screen and (max-width: 430px) {
    padding: 20px 16px 16px;
  }
}

.cookies__body {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  @media screen and (max-width: 430px) {
    max-height: calc(100vh - 68px - 142px - 76px);
    padding: 24px 16px;
  }
}

.cookie__button {
  @media screen and (max-width: 834px) {
    font-size: 12px;
    padding-block: 6px;
    padding-inline: 16px;
  }
}

.cookie__button-small-screen {
  font-size: 16px;
  padding-block: 6px;
  padding-inline: 16px;
  @media screen and (min-width: 430px) {
    display: none;
  }
}

.cookie__button-big-screen {
  @media screen and (max-width: 430px) {
    display: none;
  }
}

.call__icon-phone {
  color: var(--white);
  background-color: var(--primary-color-400);
  width: 46px;
  height: 46px;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 0px 4px 16px 0px rgba(45, 49, 56, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  @media screen and (min-width: 769px) {
    visibility: hidden;
  }
}

.call__icon-phone:hover {
  background-color: var(--white-transparency);
  color: var(--primary-color-400);
}

.call-menu__icon {
  color: var(--primary-color-400);
}

.call-menu__item-container {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}

.call-menu__item-container:hover {
  background-color: var(--neutral-color-400);
}

.noscroll {
  overflow: hidden;
}
