@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

.container {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: 12px;
  max-width: 1384px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 24px;
    max-width: 1408px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding-inline: 40px;
    max-width: 1440px;
  }
}
@media (min-width: 1600px) {
  .container {
    padding-inline: 60px;
    max-width: 1920px;
  }
}
html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fffefd;
  font-family: "Sofia Sans Condensed";
  scroll-behavior: smooth;
}

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

main {
  flex-grow: 1;
}

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

input:focus::placeholder {
  color: transparent;
}

textarea:focus::placeholder {
  color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fffefd;
  width: 100%;
  z-index: 1000;
  height: 5rem;
  /* ANIMATION: when burger is active */
}
@media (min-width: 768px) {
  .header {
    border-bottom: 1px solid #d4d4d4;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.5rem + (1vw - 0.2rem) * 0.5, 1rem);
}
.header__logo-wrapper img {
  height: clamp(2.5rem, 2.5rem + (1vw - 0.2rem) * 1, 3.5rem);
}
.header__logo-wrapper span {
  color: #747474;
  font-size: clamp(0.5625rem, 0.4457rem + 0.5051vw, 0.875rem);
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
}
.header__controls {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (min-width: 1280px) {
  .header__controls {
    display: none;
  }
}
.header__controls-desktop {
  display: none;
}
@media (min-width: 1280px) {
  .header__controls-desktop {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .header__controls-desktop a {
    color: #0b0b0c;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
    text-decoration: none;
    transition: ease-in-out 0.3s;
  }
  .header__controls-desktop a:hover {
    color: #585858;
    opacity: 60%;
  }
  .header__controls-desktop button {
    padding-block: 12px;
    padding-inline: 21px;
    border: 1px solid #ffc120;
    color: #0b0b0c;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    text-transform: uppercase;
    background-color: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
  }
  .header__controls-desktop button:hover {
    background-color: #ffc120;
  }
}
.header .burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.header .burger__line {
  width: 30px;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}
.header .burger.active .burger__line {
  width: 20px;
}
.header .burger.active {
  margin-top: 5px;
}
.header .burger.active .burger__line:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.header .burger.active .burger__line:nth-child(2) {
  opacity: 0;
}
.header .burger.active .burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.header__media-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__media-icons img {
  width: clamp(1.5rem, 1.3131rem + 0.8081vw, 2rem);
  height: clamp(1.5rem, 1.3131rem + 0.8081vw, 2rem);
  cursor: pointer;
}
.header__burger-button {
  background-color: inherit;
  border: none;
  cursor: pointer;
}
.header__burger-button img {
  width: clamp(2rem, 0.1407rem + 8.0402vw, 4rem);
}
.header .navigation {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 50px);
  background-color: #fffefd;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  padding-top: clamp(6.1875rem, 5.2298rem + 4.1414vw, 8.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
}
.header .navigation__footer {
  margin-top: auto;
}
@media (min-width: 1280px) {
  .header .navigation__footer {
    display: none;
  }
}
.header .navigation__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.875rem, 1.294rem + 2.5126vw, 2.5rem);
  flex-grow: 1;
}
@media (min-width: 1280px) {
  .header .navigation__list {
    flex-direction: row;
    gap: 24px;
  }
}
.header .navigation__item {
  text-decoration: none;
  color: #0b0b0c;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
}
.header .navigation__item:hover {
  color: #585858;
  opacity: 60%;
  transition: ease 0.4s;
}
@media (min-width: 768px) {
  .header .navigation__item {
    font-size: 32px;
  }
}
@media (min-width: 1280px) {
  .header .navigation__item {
    font-size: 18px;
  }
}
.header .navigation.active {
  transform: translateX(0);
}
@media (min-width: 1280px) {
  .header .navigation {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    gap: 2rem;
    transform: none;
    transition: none;
  }
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
  border-top: 1px solid #d9d9d9;
}
.footer__inn {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}
@media (min-width: 1280px) {
  .footer__inn {
    flex-direction: row;
    align-items: center;
  }
}
.footer__inn-item {
  color: #a9a9a9;
  font-size: clamp(0.75rem, 0.7221rem + 0.1274vw, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
  cursor: pointer;
}
.footer__inn-item--active {
  cursor: default;
  color: #27272a;
  font-size: clamp(0.75rem, 0.6098rem + 0.6061vw, 1.125rem);
}
.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  text-align: end;
}
@media (min-width: 1280px) {
  .footer__contact {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.footer__item {
  color: #27272a;
  font-size: clamp(0.75rem, 0.7221rem + 0.1274vw, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-underline-offset: auto;
  text-decoration-thickness: auto;
}
.footer__item:hover {
  opacity: 70%;
}
.footer__politica {
  display: none;
  color: #a9a9a9;
  font-size: clamp(0.75rem, 0.7221rem + 0.1274vw, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.footer__politica:hover {
  opacity: 80%;
}
@media (min-width: 1280px) {
  .footer__politica {
    display: block;
  }
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  display: none !important;
  align-items: end;
  justify-content: center;
  z-index: 1110;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .modal-backdrop {
    align-items: center;
  }
}
.modal-backdrop.active {
  display: flex !important;
  opacity: 1;
}

.modal {
  position: relative;
  background: #fffefd;
  max-width: 700px;
  width: 100%;
  padding: clamp(1.5rem, 0.5657rem + 4.0404vw, 4rem);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}
.modal-backdrop.active .modal {
  transform: translateY(0);
  opacity: 1;
}
.modal__title {
  color: #151517;
  font-family: "Roboto Condensed";
  font-size: clamp(0.875rem, 0.6414rem + 1.0101vw, 1.5rem);
  line-height: 130%;
  font-weight: normal;
}
.modal__close-btn {
  background-color: inherit;
  border: none;
  position: absolute;
  top: 1.5%;
  right: 1%;
  cursor: pointer;
}
.modal .custom-checkbox {
  display: flex;
  align-items: center;
  color: #666;
  cursor: pointer;
  gap: 8px;
}
.modal .custom-checkbox input {
  display: none;
}
.modal .checkmark {
  width: 18px;
  height: 18px;
  padding: 3;
  border-radius: 2px;
  background: #717171;
  position: relative;
  flex-shrink: 0;
}
.modal .check-text {
  color: #7d7d7d;
  font-family: "Roboto Condensed";
  font-size: clamp(0.625rem, 0.5316rem + 0.404vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 11px */
}
.modal .check-text a {
  color: inherit;
  line-height: 110%;
  text-decoration-line: underline;
}
.modal .check-text a:hover {
  opacity: 80%;
}
.modal .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.modal .custom-checkbox input:checked + .checkmark::after {
  display: block;
}
.modal .submitted-content {
  display: none;
}
.modal .sbm-btn {
  margin-bottom: 0;
}

.hero {
  padding-top: 5rem;
}
@media (min-width: 1280px) {
  .hero {
    height: 100dvh;
    min-height: 50rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
.hero__wrapper {
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 1.5625rem;
  justify-items: stretch;
}
@media (min-width: 768px) {
  .hero__wrapper {
    margin-top: 15px;
    padding-bottom: 0;
    grid-template-rows: auto 1fr;
  }
  .hero__wrapper .hero__content {
    grid-row: 1;
  }
  .hero__wrapper .hero__button {
    grid-row: 2;
  }
}
@media (min-width: 1280px) {
  .hero__wrapper {
    margin-top: 0;
    padding-bottom: 0;
    grid-template-rows: 1fr auto;
  }
}
.hero picture {
  width: 100%;
  display: block;
  grid-column: 1/-1;
}
.hero picture img {
  width: 100%;
  height: auto;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__content h1 {
  color: #000;
  font-size: clamp(2.25rem, 0.8485rem + 6.0606vw, 6rem);
  font-weight: 700;
  line-height: 90%; /* 43.2px */
  text-transform: uppercase;
}
.hero__content p {
  color: #0b0b0c;
  font-size: clamp(1.3125rem, 0.8687rem + 1.9192vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
}
.hero__content p span {
  color: #ffc120;
}
.hero__button {
  display: block;
  background-color: #ffc120;
  border: none;
  padding-block: 11px;
  padding-inline: 20px;
  color: #0a0a0a;
  text-align: center;
  font-size: clamp(1rem, 0.8832rem + 0.5051vw, 1.3125rem);
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  transition: ease 0.5s;
}
.hero__button:hover {
  background-color: #ffd463;
}

.ticker-container {
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
  padding-block: 12px;
}
@media (min-width: 768px) {
  .ticker-container {
    display: block;
  }
}

.ticker__inner {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.ticker {
  display: flex;
}

.ticker span {
  color: #19191d;
  font-size: 24px;
  font-weight: 500;
  line-height: 114%;
  text-transform: uppercase;
  padding-right: 0.3rem;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.projects {
  padding-block: clamp(1.8125rem, 0.8829rem + 4.0201vw, 2.8125rem);
}
.projects__title {
  position: relative;
  color: #151517;
  font-size: clamp(1.875rem, -0.2506rem + 9.1919vw, 7.5625rem);
  font-weight: 600;
  line-height: 100%; /* 30px */
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .projects__title span {
    display: none;
  }
}
.projects__sub-title {
  margin-top: 12px;
  color: #565659;
  font-family: "Roboto Condensed";
  font-size: clamp(0.875rem, 0.6414rem + 1.0101vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}
@media (min-width: 1280px) {
  .projects__sub-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 0;
  }
  .projects__sub-title span {
    font-family: "Sofia Sans Condensed";
    position: relative;
    color: #151517;
    font-size: clamp(1.875rem, -0.2506rem + 9.1919vw, 7.5625rem);
    font-weight: 600;
    line-height: 100%; /* 30px */
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
  }
}
.projects__wrapper {
  margin-top: clamp(0.75rem, -0.0208rem + 3.3333vw, 2.8125rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5625rem, 0.072rem + 2.1212vw, 1.875rem);
}
@media (min-width: 768px) {
  .projects__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.projects__card {
  background-color: #f4f4f4;
  padding: 9px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .projects__card {
    padding: 12px;
  }
}
@media (min-width: 1280px) {
  .projects__card {
    padding: 24px;
  }
}
.projects__card h3 {
  color: #000000;
  font-size: clamp(1rem, 0.6263rem + 1.6162vw, 2rem);
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}
.projects__card span {
  color: #949494;
  font-size: clamp(0.5rem, 0.3131rem + 0.8081vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
}
.projects__card picture {
  width: 100%;
}
.projects__card p {
  color: #18181a;
  text-align: right;
  font-size: clamp(0.625rem, 0.4848rem + 0.6061vw, 1rem);
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
  margin-top: auto;
}
.projects__button {
  margin-top: clamp(1.5rem, 1.2898rem + 0.9091vw, 2.0625rem);
  display: block;
  width: 100%;
  padding-block: 11px;
  background-color: #ffc120;
  border: none;
  cursor: pointer;
  color: #0a0a0a;
  text-align: center;
  font-size: clamp(0.875rem, 0.7115rem + 0.7071vw, 1.3125rem);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .projects__button {
    max-width: 262px;
    width: 100%;
    margin-inline: auto;
  }
}
.projects__button:hover {
  background-color: #FFD463;
  transition: ease 0.4s;
}

.process {
  padding-block: clamp(1.8125rem, 0.8829rem + 4.0201vw, 2.8125rem);
}
.process__title {
  position: relative;
  color: #000000;
  font-size: clamp(1rem, 0.8131rem + 0.8081vw, 1.5rem);
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
  padding-left: clamp(0.8125rem, 0.4154rem + 1.7172vw, 1.875rem);
}
.process__title::before {
  content: "";
  width: clamp(0.5rem, 0.3131rem + 0.8081vw, 1rem);
  height: clamp(0.5rem, 0.3131rem + 0.8081vw, 1rem);
  background-color: #ffc120;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-65%);
}
@media (min-width: 768px) {
  .process__title::before {
    transform: translateY(-60%);
  }
}
@media (min-width: 1280px) {
  .process__title::before {
    transform: translateY(-50%);
  }
}
.process__wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}
.process .dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 5px;
  padding-top: 12px;
  padding-bottom: 6px;
  border-top: 1px solid #e7e7e7;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .process .dropdown__header {
    padding-bottom: 10px;
    padding-left: 50px;
  }
}
@media (min-width: 1280px) {
  .process .dropdown__header {
    padding-bottom: 10px;
    padding-left: 93px;
  }
}
.process .dropdown__header-num {
  color: #1a1a1b;
  font-size: clamp(0.5625rem, 0.2822rem + 1.2121vw, 1.3125rem);
  line-height: 100%;
  text-transform: uppercase;
  position: absolute;
  left: clamp(0.3125rem, -0.0846rem + 1.7172vw, 1.375rem);
  top: clamp(0.25rem, -0.0303rem + 1.2121vw, 1rem);
}
.process .dropdown__header-title {
  color: #000000;
  font-size: clamp(1.1875rem, -0.1907rem + 5.9596vw, 4.875rem);
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
  white-space: nowrap;
}
.process .dropdown__header-btn {
  background-color: inherit;
  border: none;
  transition: transform 0.3s ease;
}
.process .dropdown__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
@media (min-width: 768px) {
  .process .dropdown__body {
    display: flex;
    justify-content: end;
  }
}
.process .dropdown__body-content {
  padding-inline: 27px;
  position: relative;
  cursor: pointer;
  max-width: 820px;
}
@media (min-width: 768px) {
  .process .dropdown__body-content {
    padding-bottom: clamp(0.375rem, 0.048rem + 1.4141vw, 1.25rem);
  }
}
.process .dropdown__body-text {
  color: #151517;
  font-size: clamp(0.75rem, 0.4697rem + 1.2121vw, 1.5rem);
  line-height: 100%;
  /* 16.8px */
  font-family: "Roboto Condensed";
}
.process .dropdown__body-image {
  margin-top: clamp(0.3125rem, 0.1957rem + 0.5051vw, 0.625rem);
  padding-bottom: 20px;
}
.process .dropdown.active .dropdown__body {
  max-height: 1000px;
}
.process .dropdown.active .dropdown__header-title {
  color: #ffc120;
}
.process .dropdown.active .dropdown__header-btn {
  transform: rotate(180deg);
}
.process .custom-checkbox {
  display: flex;
  align-items: center;
  color: #666;
  cursor: pointer;
  gap: 8px;
}
.process .custom-checkbox input {
  display: none;
}
.process .checkmark {
  width: 18px;
  height: 18px;
  padding: 3;
  border-radius: 2px;
  background: #717171;
  position: relative;
  flex-shrink: 0;
}
.process .check-text {
  color: #7d7d7d;
  font-family: "Roboto Condensed";
  font-size: clamp(0.625rem, 0.5316rem + 0.4vw, 0.7rem);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 11px */
}
.process .check-text a {
  color: inherit;
  line-height: 110%;
  text-decoration-line: underline;
}
.process .check-text a:hover {
  opacity: 80%;
}
.process .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.process .custom-checkbox input:checked + .checkmark::after {
  display: block;
}
.process__form {
  max-width: 568px;
  margin-bottom: 15px;
}
.process__inputs {
  margin-top: clamp(0.625rem, 0.5082rem + 0.5051vw, 0.9375rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.4375rem, 0.3207rem + 0.5051vw, 0.75rem);
}
.process__input {
  padding-block: clamp(0.9375rem, 0.7973rem + 0.6061vw, 1.3125rem);
  padding-inline: clamp(0.5rem, 0.4066rem + 0.404vw, 0.75rem);
  background-color: inherit;
  border: 1px solid #f0f0f0;
  color: #2e2f35;
  font-size: clamp(0.75rem, 0.5398rem + 0.9091vw, 1.3125rem);
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
  outline: none;
}
.process__textarea {
  padding-block: clamp(0.9375rem, 0.7973rem + 0.6061vw, 1.3125rem);
  padding-inline: clamp(0.5rem, 0.4066rem + 0.404vw, 0.75rem);
  background-color: inherit;
  border: 1px solid #f0f0f0;
  color: #2e2f35;
  font-size: clamp(0.75rem, 0.5398rem + 0.9091vw, 1.3125rem);
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
  outline: none;
  resize: none;
}

.contact {
  padding-block: clamp(3rem, 2.0189rem + 4.2424vw, 5.625rem);
}
.contact__title {
  color: #151517;
  text-align: center;
  font-size: clamp(1.875rem, 0.7538rem + 4.8485vw, 4.875rem);
  font-weight: 600;
  line-height: 100%; /* 30px */
  text-transform: uppercase;
}
.contact__wrapper {
  margin-top: 24px;
  max-width: 568px;
  margin-inline: auto;
}
.contact__sub-title {
  color: #151517;
  font-family: "Roboto Condensed";
  font-size: clamp(0.875rem, 0.6414rem + 1.0101vw, 1.5rem);
  line-height: 140%; /* 33.6px */
}
.contact__sub-title a {
  color: #ffc120;
}
.contact__sub-title a:hover {
  opacity: 60%;
}
.contact__form {
  margin-top: clamp(1.375rem, 1.0013rem + 1.6162vw, 2.375rem);
}
.contact__inputs {
  display: flex;
  flex-direction: column;
  gap: clamp(0.4375rem, 0.3207rem + 0.5051vw, 0.75rem);
}
.contact__input {
  padding-block: clamp(0.9375rem, 0.7973rem + 0.6061vw, 1.3125rem);
  padding-inline: clamp(0.5rem, 0.4066rem + 0.404vw, 0.75rem);
  background-color: inherit;
  border: 1px solid #f0f0f0;
  color: #2e2f35;
  font-size: clamp(0.75rem, 0.5398rem + 0.9091vw, 1.3125rem);
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
  outline: none;
}
.contact__textarea {
  padding-block: clamp(0.9375rem, 0.7973rem + 0.6061vw, 1.3125rem);
  padding-inline: clamp(0.5rem, 0.4066rem + 0.404vw, 0.75rem);
  background-color: inherit;
  border: 1px solid #f0f0f0;
  color: #2e2f35;
  font-size: clamp(0.75rem, 0.5398rem + 0.9091vw, 1.3125rem);
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
  outline: none;
  resize: none;
}
.contact__btn {
  margin-block: clamp(0.875rem, 0.6414rem + 1.0101vw, 1.5rem);
  display: block;
  width: 100%;
  padding-block: 11px;
  background-color: #ffc120;
  border: none;
  cursor: pointer;
  color: #0a0a0a;
  text-align: center;
  font-size: clamp(0.875rem, 0.7115rem + 0.7071vw, 1.3125rem);
  font-weight: 500;
  text-transform: uppercase;
}
.contact__btn:hover {
  background-color: #ffd463;
  transition: ease 0.4s;
}
.contact .custom-checkbox {
  display: flex;
  align-items: center;
  color: #666;
  cursor: pointer;
  gap: 8px;
}
.contact .custom-checkbox input {
  display: none;
}
.contact .checkmark {
  width: 18px;
  height: 18px;
  padding: 3;
  border-radius: 2px;
  background: #717171;
  position: relative;
  flex-shrink: 0;
}
.contact .check-text {
  color: #7d7d7d;
  font-family: "Roboto Condensed";
  font-size: clamp(0.625rem, 0.5316rem + 0.404vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 11px */
}
.contact .check-text a {
  color: inherit;
  line-height: 110%;
  text-decoration-line: underline;
}
.contact .check-text a:hover {
  opacity: 80%;
}
.contact .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact .custom-checkbox input:checked + .checkmark::after {
  display: block;
}

.questions {
  padding-block: clamp(3rem, 2.0189rem + 4.2424vw, 5.625rem);
  background-color: #f7f7f7;
}
.questions__title {
  position: relative;
  color: #000000;
  font-size: clamp(1rem, 0.8131rem + 0.8081vw, 1.5rem);
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
  padding-left: clamp(0.8125rem, 0.4154rem + 1.7172vw, 1.875rem);
}
.questions__title::before {
  content: "";
  width: clamp(0.5rem, 0.3131rem + 0.8081vw, 1rem);
  height: clamp(0.5rem, 0.3131rem + 0.8081vw, 1rem);
  background-color: #ffc120;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-65%);
}
@media (min-width: 768px) {
  .questions__title::before {
    transform: translateY(-60%);
  }
}
@media (min-width: 1280px) {
  .questions__title::before {
    transform: translateY(-50%);
  }
}
.questions .chat-container {
  margin-top: clamp(1.5rem, 0.9861rem + 2.2222vw, 2.875rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.2828rem + 2.0202vw, 2rem);
}
.questions .chat-row {
  display: flex;
}
.questions .chat-row.question {
  justify-content: flex-start;
}
.questions .chat-row.question .bubble {
  background: #eaeaea;
  color: #333;
}
.questions .chat-row.answer {
  justify-content: flex-end;
}
.questions .chat-row.answer .bubble {
  background: #ffdf8e;
  color: #333;
}
.questions .bubble {
  max-width: 60%;
  padding-block: clamp(0.5rem, 0.3131rem + 0.8081vw, 1rem);
  padding-inline: clamp(1rem, 0.5328rem + 2.0202vw, 2.25rem);
  border-radius: clamp(3rem, 1.7854rem + 5.2525vw, 6.25rem);
  color: #262629;
  font-family: "Roboto Condensed";
  font-size: clamp(0.75rem, 0.3763rem + 1.6162vw, 1.75rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 12px */
}

.gallery {
  padding-block: clamp(1.8125rem, 0.8829rem + 4.0201vw, 2.8125rem);
}
.gallery__title {
  position: relative;
  color: #151517;
  font-size: clamp(1.875rem, -0.2506rem + 9.1919vw, 7.5625rem);
  font-weight: 600;
  line-height: 100%; /* 30px */
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}
@media (min-width: 768px) {
  .gallery__title span {
    display: none;
  }
}
.gallery__sub-title {
  margin-top: 5px;
  color: #565659;
  font-family: "Roboto Condensed";
  font-size: clamp(0.875rem, 0.6414rem + 1.0101vw, 1.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 16.8px */
}
.gallery__sub-title span {
  display: none;
}
@media (min-width: 768px) {
  .gallery__sub-title {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 70%;
  }
  .gallery__sub-title span {
    font-family: "Sofia Sans Condensed";
    position: relative;
    color: #151517;
    font-size: clamp(1.875rem, -0.2506rem + 9.1919vw, 7.5625rem);
    font-weight: 600;
    line-height: 100%; /* 30px */
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
  }
}
.gallery__wrapper {
  margin-top: clamp(0.75rem, -0.0208rem + 3.3333vw, 2.8125rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5625rem, 0.072rem + 2.1212vw, 1.875rem);
}
@media (min-width: 768px) {
  .gallery__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .gallery__card--wide {
    grid-column: span 2;
  }
}
.gallery__card-hide {
  display: none;
}
@media (min-width: 768px) {
  .gallery__card-hide {
    display: block;
  }
}
.gallery__card-text {
  color: #151517;
  font-size: clamp(1rem, 0.6263rem + 1.6162vw, 2rem);
  font-weight: 600;
  line-height: 100%; /* 16px */
  text-transform: uppercase;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .gallery__card-text {
    margin-top: 13px;
  }
}

.offer {
  padding-block: clamp(1.8125rem, 0.8829rem + 4.0201vw, 2.8125rem);
}
@media (min-width: 768px) {
  .offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .offer {
    grid-template-rows: 184px 1fr;
    column-gap: 80px;
    row-gap: 30px;
  }
}
@media (min-width: 768px) {
  .offer__top-content {
    grid-column: span 2;
    max-width: 638px;
  }
}
@media (min-width: 1280px) {
  .offer__top-content {
    grid-column: span 1;
  }
}
.offer__title {
  position: relative;
  color: #000000;
  font-size: clamp(1rem, 0.8131rem + 0.8081vw, 1.5rem);
  font-weight: 700;
  line-height: 114%;
  text-transform: uppercase;
  padding-left: clamp(0.8125rem, 0.4154rem + 1.7172vw, 1.875rem);
}
.offer__title::before {
  content: "";
  width: clamp(0.5rem, 0.3131rem + 0.8081vw, 1rem);
  height: clamp(0.5rem, 0.3131rem + 0.8081vw, 1rem);
  background-color: #ffc120;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-65%);
}
@media (min-width: 768px) {
  .offer__title::before {
    transform: translateY(-60%);
  }
}
@media (min-width: 1280px) {
  .offer__title::before {
    transform: translateY(-50%);
  }
}
.offer__paragraph {
  margin-top: 24px;
  color: #212124;
  font-family: "Roboto Condensed";
  font-size: clamp(0.875rem, 0.7816rem + 0.404vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}
@media (min-width: 768px) {
  .offer__paragraph {
    margin-top: 30px;
  }
}
.offer__list {
  list-style: none;
  padding: 0;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .offer__list {
    margin-top: 25px;
    gap: 40px;
  }
  .offer__list li:nth-last-child(-n+2) {
    display: none;
  }
}
@media (min-width: 1280px) {
  .offer__list {
    gap: 30px;
    justify-content: space-between;
    margin-top: 0;
  }
  .offer__list li:nth-last-child(-n+2) {
    display: block;
  }
}
.offer__list li h3 {
  color: #ffc120;
  font-size: clamp(1.75rem, 1.4697rem + 1.2121vw, 2.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 28px */
  text-transform: uppercase;
}
.offer__list li span {
  color: #151517;
  font-size: clamp(1rem, 0.9066rem + 0.404vw, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  text-transform: uppercase;
}
.offer__list-2 {
  list-style: none;
  padding: 0;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  display: none;
}
@media (min-width: 768px) {
  .offer__list-2 {
    display: flex;
    gap: 40px;
  }
}
@media (min-width: 1280px) {
  .offer__list-2 {
    display: none;
  }
}
.offer__list-2 li h3 {
  color: #ffc120;
  font-size: clamp(1.75rem, 1.4697rem + 1.2121vw, 2.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 28px */
  text-transform: uppercase;
}
.offer__list-2 li span {
  color: #151517;
  font-size: clamp(1rem, 0.9066rem + 0.404vw, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  text-transform: uppercase;
}
.offer__image {
  display: block;
  margin-top: 24px;
}
