@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1170px;
  --container-offset: 0px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --color-black-solid: #000;
  --color-grey-62: #9e9e9e;
  --color-grey-4: #090909;
  --color-orange-86: #f2ddc4;
  --color-azure-5: #050f17;
  --color-black--49-80: rgba(0, 0, 0, 0.5);
  --color-white-solid: #fff;
  --color-grey-93: #eee;
  --color-white--800: rgba(255, 255, 255, 0.8);
  --color-grey-84: #d5d5d5;
  --color-orange-48: #a8894d;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.no-scroll {
  overflow: hidden;
  height: 100%; /* Это гарантирует, что высота будет фиксированной */
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.burger {
  --burger-width: 30px;
  --burger-height: 30px;
  --burger-line-height: 2px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #000;
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger {
  display: none;
  color: black;
  --burger-height: 20px;
}
@media (max-width: 998px) {
  .burger {
    display: block;
    z-index: 101;
  }
}

.burger--active {
  color: black;
}

.header__logo {
  max-width: 189px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
.header__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 142%;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
}
.header__btn2 {
  max-width: 147px;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #ea580c;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 144%;
  text-align: center;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 0px;
  cursor: pointer;
}
@media (max-width: 998px) {
  .header__btn2 {
    display: none;
  }
}

.container-header {
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 100px;
}
@media (max-width: 998px) {
  .container-header {
    padding: 20px;
  }
}

@media (max-width: 998px) {
  .nav {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 100%;
    width: 100%;
    background: #fff;
    height: 130vh;
    z-index: 100;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.nav__list {
  gap: 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 998px) {
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 50px;
    gap: 31px;
  }
}
.nav__link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 143%;
  color: #0f172a;
}

.nav.menu--active {
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.hero {
  padding: 80px 0px;
}
.hero__block {
  max-width: 592px;
  width: 100%;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
@media (max-width: 600px) {
  .hero__block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.hero__text {
  background: #fff7ed;
  border-radius: 9999px;
  padding: 4px 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  line-height: 145%;
  color: #ea580c;
}
.hero__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 41px;
  line-height: 176%;
  color: #0f172a;
  margin: 0;
}
@media (max-width: 600px) {
  .hero__title {
    text-align: center;
  }
}
.hero__title b {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 41px;
  line-height: 176%;
  letter-spacing: -0.04em;
  color: #ea580c;
  margin: 0;
}
@media (max-width: 600px) {
  .hero__title b {
    text-align: center;
  }
}
.hero__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 17px;
  line-height: 156%;
  color: #64748b;
  margin: 0;
}
.hero__block1 {
  width: 100%;
  gap: 16px;
}
@media (max-width: 600px) {
  .hero__block1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.hero__btn {
  max-width: 231px;
  width: 100%;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: #ea580c;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 143%;
  text-align: center;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0px;
}
@media (max-width: 600px) {
  .hero__btn {
    max-width: 100%;
  }
}
.hero__btn2 {
  max-width: 162px;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 143%;
  text-align: center;
  color: #0f172a;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 0px;
}
@media (max-width: 600px) {
  .hero__btn2 {
    max-width: 100%;
  }
}
.hero__image {
  max-width: 592px;
  width: 100%;
}

.container-hero {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 985px) {
  .container-hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.first {
  padding: 80px 0px;
}
.first__image {
  max-width: 592px;
  width: 100%;
}
.first__block {
  max-width: 592px;
  width: 100%;
  gap: 24px;
}
.first__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 121%;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
}
.first__line {
  max-width: 80px;
  width: 100%;
  height: 4px;
  background: #ea580c;
}
.first__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 163%;
  color: #64748b;
  margin: 0;
}
.first__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #334155;
  margin: 0;
  border-left: 4px solid #ea580c;
  padding-left: 20px;
}
.first__block1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.first__block2 {
  max-width: 288px;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.first__image2 {
  max-width: 24px;
  width: 100%;
}
.first__name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #0f172a;
  margin: 0;
}

.container-first {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
}
@media (max-width: 950px) {
  .container-first {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.second {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  margin: 0px 20px;
  padding: 80px 0px;
}
.second__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 123%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #0f172a;
  margin: 0;
}
.second__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 149%;
  text-align: center;
  color: #64748b;
  margin: 0;
  margin-top: 16px;
}
.second__block {
  max-width: 290px;
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: var(--color-white-solid);
  gap: 8px;
  padding-bottom: 20px;
}
.second__image {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.second__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 19px;
  line-height: 142%;
  color: #0f172a;
  margin: 0;
  padding: 0px 20px;
}
.second__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 145%;
  color: #64748b;
  padding: 0px 20px;
}

.container-second {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  gap: 24px;
}
@media (max-width: 920px) {
  .container-second {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.text {
  background: #f8fafc;
  padding: 33px 0px 60px 0px;
  margin: 0px 20px;
}
.text__title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 13px;
  line-height: 143%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #64748b;
  margin: 0;
}
.text__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 159%;
  color: #1e293b;
  margin: 0;
}

.container-text {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  margin-top: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px 20px;
  gap: 32px;
}
@media (max-width: 710px) {
  .container-text {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.about {
  padding: 80px 0px;
}
.about__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 123%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #0f172a;
  margin: 0;
}
.about__block {
  max-width: 389px;
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px;
  gap: 8px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.about__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 17px;
  line-height: 158%;
  color: #0f172a;
  margin: 0;
  margin-top: 8px;
}
.about__descr {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 144%;
  color: #64748b;
  margin: 0;
}

.container-about {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  padding: 0px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 32px;
}
@media (max-width: 1250px) {
  .container-about {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.team {
  padding: 70px 0px;
}
.team__block {
  max-width: 592px;
  width: 100%;
  gap: 16px;
}
.team__title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 29px;
  line-height: 122%;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0;
}
.team__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #64748b;
  margin: 0;
  margin-bottom: 8px;
}
.team__mail {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 165%;
  color: #ea580c;
  margin: 0;
}
.team__block1 {
  max-width: 592px;
  width: 100%;
  gap: 16px;
}
.team__block2 {
  width: 100%;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  background: var(--color-white-solid);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 17px;
}
.team__name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #0f172a;
  margin: 0;
}
.team__descr {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 145%;
  text-align: center;
  color: #ea580c;
  margin: 0;
}

.container-team {
  max-width: 1272px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 930px) {
  .container-team {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.last {
  background: #f8fafc;
  padding: 60px 0px;
  margin: 50px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}
.last__form {
  width: 100%;
  gap: 6px;
}
.last__name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 124%;
  color: #0f172a;
  margin: 0;
}
.last__input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: var(--color-white-solid);
  padding: 8px 13px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #a9a9a9;
  margin-bottom: 10px;
}
.last__input::-webkit-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #a9a9a9;
}
.last__input::-moz-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #a9a9a9;
}
.last__input:-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #a9a9a9;
}
.last__input::-ms-input-placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #a9a9a9;
}
.last__input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #a9a9a9;
}
.last__btn {
  width: 100%;
  background: #ea580c;
  border-radius: 6px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 145%;
  text-align: center;
  color: var(--color-white-solid);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  padding: 10px 0px;
  cursor: pointer;
}

.container-last {
  max-width: 566px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
}

.thank {
  padding: 200px 0px;
}
.thank__image {
  max-width: 120px;
  width: 100%;
}
.thank__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 50px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #000;
}

.container-thank {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.footer {
  padding: 40px 0px;
}
.footer__block {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.footer__name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 15px;
  line-height: 152%;
  color: #0f172a;
  margin: 0;
}
.footer__block1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.footer__link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #64748b;
}
.footer__copy {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #64748b;
  margin: 0;
}

.container-footer {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 900px) {
  .container-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.privacy {
  max-width: 1163px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px;
}
.privacy h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 36px;
  color: #000;
}
.privacy h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  color: #000;
}
.privacy p {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 165%;
  font-size: 20px;
  color: #64748B;
}/*# sourceMappingURL=main.css.map */
