@charset "UTF-8";
::before,
::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

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

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
}

a:where([class]) {
  display: inline-flex;
}

button,
label {
  cursor: pointer;
}

button {
  -webkit-tap-highlight-color: transparent;
}

:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Thin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  display: flex;
  flex-direction: column;
  font-family: "Lato", sans-serif;
}
body.menu-open {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: RGB(var(--color-primary-25, 16, 16, 29), 0.9);
}
.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  max-width: 1172px;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 475px) {
  .header__inner {
    padding: 0 20px;
  }
}
@media (max-width: 475px) {
  .header__logo {
    width: 70%;
  }
}
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
@media (max-width: 890px) {
  .header__menu-toggle {
    display: flex;
  }
}
.header__menu-toggle.active .header__menu-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 7px);
}
.header__menu-toggle.active .header__menu-line:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.active .header__menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.header__menu-line {
  width: 100%;
  height: 3px;
  background-color: RGB(var(--color-contrast-100, 255, 255, 255));
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__nav-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 890px) {
  .header__nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: RGB(var(--color-primary-25, 16, 16, 29), 0.95);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 5;
  }
  .header__nav-wrapper.active {
    right: 0;
  }
}
.header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
@media (max-width: 890px) {
  .header__nav-list {
    align-self: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
    padding-left: 40px;
  }
}
.header__nav-item {
  color: RGB(var(--color-contrast-100, 255, 255, 255));
  cursor: pointer;
  transition: color 0.3s ease;
}
.header__nav-item:hover {
  color: RGB(var(--color-blue-300, 67, 171, 240));
}
.header__nav-item.link-active {
  color: RGB(var(--color-blue-300, 67, 171, 240));
}
@media (max-width: 890px) {
  .header__nav-item {
    font-size: 24px;
    font-weight: 600;
  }
}

.main {
  flex: 1 0 auto;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: baseline;
  padding: 0 40px;
  background: url("../img/bg-hero.png") center center no-repeat;
  background-size: cover;
}
@media (max-width: 475px) {
  .hero-section {
    padding: 0 20px;
  }
}
.hero-section__inner {
  max-width: 1172px;
  width: 100%;
  padding: 200px 0;
}
@media (max-width: 1240px) {
  .hero-section__inner {
    padding: 150px 0;
  }
}
@media (max-width: 475px) {
  .hero-section__inner {
    padding: 130px 0 80px;
  }
}
.hero-section__title {
  font-size: 48px;
  line-height: 62px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 80px;
  color: RGB(var(--color-contrast-1000, 0, 0, 0));
}
@media (max-width: 1240px) {
  .hero-section__title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
}
@media (max-width: 890px) {
  .hero-section__title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
}
.hero-section__features {
  margin-bottom: 80px;
  color: RGB(var(--color-contrast-1000, 0, 0, 0));
}
@media (max-width: 1240px) {
  .hero-section__features {
    margin-bottom: 40px;
  }
}
.hero-section__feature-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 1240px) {
  .hero-section__feature-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
  }
}
@media (max-width: 890px) {
  .hero-section__feature-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
  }
}
.hero-section__feature-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-section__feature-item {
  position: relative;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
}
.hero-section__feature-item:before {
  content: "-";
  display: inline-flex;
  justify-content: center;
  width: 25px;
}
@media (max-width: 1240px) {
  .hero-section__feature-item {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
  }
}
@media (max-width: 890px) {
  .hero-section__feature-item {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
  }
}
.hero-section__buttons-wrapper {
  display: flex;
  gap: 30px;
}
@media (max-width: 475px) {
  .hero-section__buttons-wrapper {
    flex-direction: column;
    width: fit-content;
    gap: 18px;
  }
}
.hero-section__button {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  min-width: 183px;
}
.hero-section__button.button-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-height: 48px;
  padding: 15px 10px;
  border: 1px solid;
  border-radius: 4px;
}
.hero-section__button.button-primary:hover {
  cursor: pointer;
  transition: all 0.3s;
}
.hero-section__button.button-primary {
  background-color: RGB(var(--color-blue-300, 67, 171, 240));
  border-color: RGB(var(--color-contrast-100, 255, 255, 255));
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
.hero-section__button.button-primary:hover {
  background-color: RGB(var(--color-blue-300, 67, 171, 240), 0.8);
}
.hero-section__button.button-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-height: 48px;
  padding: 15px 10px;
  border: 1px solid;
  border-radius: 4px;
}
.hero-section__button.button-secondary:hover {
  cursor: pointer;
  transition: all 0.3s;
}
.hero-section__button.button-secondary {
  background-color: RGB(var(--color-contrast-100, 255, 255, 255));
  border-color: RGB(var(--color-contrast-25, 111, 109, 123));
  color: RGB(var(--color-contrast-50, 42, 43, 48));
}
.hero-section__button.button-secondary:hover {
  background-color: RGB(var(--color-contrast-150, 237, 237, 237));
}

.order-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  background: url("../img/bg-map.png") center center no-repeat;
  background-color: RGB(var(--color-primary, 39, 39, 51));
}
@media (max-width: 475px) {
  .order-section {
    padding: 0 20px;
  }
}
.order-section__inner {
  max-width: 1172px;
  width: 100%;
  padding: 120px 0 150px;
}
@media (max-width: 1240px) {
  .order-section__inner {
    padding: 80px 0 120px;
  }
}
@media (max-width: 620px) {
  .order-section__inner {
    padding: 60px 0;
  }
}
.order-section__heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 80px;
}
@media (max-width: 890px) {
  .order-section__heading {
    margin-bottom: 40px;
  }
}
.order-section__title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
@media (max-width: 1240px) {
  .order-section__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 890px) {
  .order-section__title {
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    text-transform: uppercase;
  }
}
.order-section__description {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: RGB(var(--color-contrast-200, 187, 187, 187));
}
@media (max-width: 890px) {
  .order-section__description {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    text-align: center;
  }
}
.order-section__steps-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 890px) {
  .order-section__steps-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    justify-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media (max-width: 400px) {
  .order-section__steps-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.order-section__step-card {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
  max-width: 210px;
  width: 100%;
}
.order-section__step-card:not(:last-child) .order-section__step-icon-wrapper:after {
  content: "•••••";
  position: absolute;
  left: 118%;
  color: RGB(var(--color-contrast-85, 195, 195, 195));
  letter-spacing: 16px;
  font-size: 15px;
}
@media (max-width: 890px) {
  .order-section__step-card:not(:last-child) .order-section__step-icon-wrapper:after {
    display: none;
  }
}
.order-section__step-icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: RGB(var(--color-blue-100, 62, 156, 220));
  border: 5px solid RGB(var(--color-blue-200, 40, 102, 144));
  border-radius: 50%;
}
.order-section__step-icon {
  width: 33px;
  height: 33px;
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
.order-section__step-icon.icon-file-plus {
  width: 45px;
  height: 45px;
}
.order-section__step-icon.icon-message {
  width: 40px;
  height: 40px;
}
.order-section__step-icon.icon-money {
  width: 60px;
  height: 60px;
}
.order-section__step-description {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  max-width: 188px;
  text-align: center;
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
.order-section__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.order-section__form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 890px) {
  .order-section__form {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 620px) {
  .order-section__form {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }
}
.order-section__button.add-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-transform: uppercase;
  max-height: 48px;
  padding: 15px 10px;
  border: 1px solid;
  border-radius: 4px;
}
.order-section__button.add-button:hover {
  cursor: pointer;
  transition: all 0.3s;
}
.order-section__button.add-button {
  background-color: RGB(var(--color-contrast-100, 255, 255, 255));
  border-color: RGB(var(--color-contrast-25, 111, 109, 123));
  color: RGB(var(--color-contrast-50, 42, 43, 48));
}
.order-section__button.add-button:hover {
  background-color: RGB(var(--color-contrast-150, 237, 237, 237));
}
.order-section__button.add-button .button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
@media (max-width: 890px) {
  .order-section__button.add-button {
    order: 4;
  }
}
.order-section__button.submit-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  max-height: 48px;
  padding: 15px 10px;
  border: 1px solid;
  border-radius: 4px;
}
.order-section__button.submit-button:hover {
  cursor: pointer;
  transition: all 0.3s;
}
.order-section__button.submit-button {
  background-color: RGB(var(--color-blue-300, 67, 171, 240));
  border-color: RGB(var(--color-contrast-100, 255, 255, 255));
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
.order-section__button.submit-button:hover {
  background-color: RGB(var(--color-blue-300, 67, 171, 240), 0.8);
}
.order-section__button.submit-button {
  grid-column: 2;
  grid-row: 3;
  margin-top: 10px;
}
@media (max-width: 890px) {
  .order-section__button.submit-button {
    grid-column: 1;
    grid-row: 4;
    order: 6;
  }
}
@media (max-width: 620px) {
  .order-section__button.submit-button {
    grid-row: 6;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  height: 80px;
  column-gap: 80px;
  padding: 0 40px;
  background-color: RGB(var(--color-primary-100, 61, 64, 80));
}
@media (max-width: 1240px) {
  .footer {
    height: auto;
    padding: 20px 40px;
  }
}
@media (max-width: 475px) {
  .footer {
    padding: 20px;
  }
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  max-width: 1172px;
  width: 100%;
}
@media (max-width: 1110px) {
  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 475px) {
  .footer__inner {
    align-items: flex-start;
  }
}
.footer__copyright {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
@media (max-width: 1110px) {
  .footer__copyright {
    order: 3;
  }
}
.footer__payment-list, .footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}
@media (max-width: 1240px) {
  .footer__payment-list, .footer__links {
    gap: 20px;
  }
}
.footer__payment-item, .footer__link-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.footer__payment-list {
  position: relative;
}
@media (max-width: 475px) {
  .footer__payment-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer__payment-list:before, .footer__payment-list:after {
  content: "";
  width: 1px;
  height: 18px;
  background-color: RGB(var(--color-contrast-85, 195, 195, 195));
}
@media (max-width: 1110px) {
  .footer__payment-list:before, .footer__payment-list:after {
    display: none;
  }
}
@media (max-width: 475px) {
  .footer__links {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.footer__link {
  text-decoration: none;
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
.footer .footer-item__icon {
  width: 20px;
  height: 20px;
  color: RGB(var(--color-blue-100, 62, 156, 220));
}
.footer .footer-item__text {
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  color: RGB(var(--color-contrast-85, 195, 195, 195));
}

.marked-text {
  color: RGB(var(--color-blue-100, 62, 156, 220));
}

.input-field {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  font-family: inherit;
}
.input-field__input {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  padding: 12px 10px;
  border: 1px solid RGB(var(--color-contrast-100, 255, 255, 255));
  background-color: RGB(var(--color-contrast-100, 255, 255, 255), 0.85);
  border-radius: 3px;
  outline: none;
}
.input-field__input::placeholder {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: RGB(var(--color-primary, 39, 39, 51));
}
.input-field__input:focus {
  border-color: RGB(var(--color-blue-100, 62, 156, 220));
}

.input-dropdown {
  border: 1px solid RGB(var(--color-contrast-100, 255, 255, 255));
  background-color: RGB(var(--color-contrast-100, 255, 255, 255), 0.85);
  border-radius: 3px;
}
.input-dropdown__control {
  position: relative;
  border-radius: 8px;
  border: 1px solid #ddd;
  overflow: visible;
}
.input-dropdown__control:focus-within .input-dropdown__list {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  pointer-events: auto;
}
.input-dropdown__input {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  width: 100%;
  padding: 12px 10px;
  border: none;
  background: transparent;
  outline: none;
}
.input-dropdown__input::placeholder {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: RGB(var(--color-primary, 39, 39, 51));
}
.input-dropdown__toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  padding: 6px;
}
.input-dropdown__list {
  z-index: 1;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  max-height: 200px;
  gap: 4px;
  margin: 0;
  padding: 4px;
  list-style: none;
  background-color: RGB(var(--color-contrast-100, 255, 255, 255));
  border: 1px solid RGB(var(--color-contrast-200, 187, 187, 187));
  border-radius: 8px;
  box-shadow: 0 10px 30px RGB(var(--color-contrast-1000, 0, 0, 0), 0.6);
  overflow: auto;
  opacity: 0;
  transform-origin: top center;
  transform: translateY(-6px) scaleY(0.98);
  pointer-events: none;
  transition: opacity 0.12s ease, transform 0.12s ease;
}
.input-dropdown__item {
  padding: 8px 12px;
  background-color: RGB(var(--color-contrast-150, 237, 237, 237));
  border-radius: 3px;
  color: RGB(var(--color-primary, 39, 39, 51));
  cursor: pointer;
}
.input-dropdown__item:hover {
  background-color: RGB(var(--color-contrast-200, 187, 187, 187), 0.9);
}

.range-field {
  grid-column: span 2;
}
@media (max-width: 890px) {
  .range-field {
    order: 5;
  }
}
@media (max-width: 620px) {
  .range-field {
    grid-column: auto;
  }
}
.range-field__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.range-field__title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  display: block;
  color: RGB(var(--color-contrast-100, 255, 255, 255));
}
@media (max-width: 620px) {
  .range-field__title {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
  }
}
.range-field__control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.range-field__input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  border: 1px solid RGB(var(--color-contrast-100, 255, 255, 255));
  background-color: RGB(var(--color-contrast-100, 255, 255, 255), 0.7);
  outline: none;
  cursor: pointer;
}
.range-field__input::-webkit-slider-runnable-track {
  height: 12px;
  background-color: transparent;
  border: none;
}
.range-field__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -6px;
  border-radius: 50%;
  background-color: RGB(var(--color-blue-250, 66, 169, 237));
  border: 3px solid RGB(var(--color-blue-200, 40, 102, 144));
  box-shadow: 0 2px 6px RGB(var(--color-contrast-1000, 0, 0, 0), 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.range-field__input::-webkit-slider-thumb:active {
  transform: scale(0.98);
}
.range-field__input::-moz-range-track {
  height: 12px;
  background: transparent;
  border: none;
}
.range-field__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid RGB(var(--color-blue-250, 66, 169, 237));
  background-color: RGB(var(--color-contrast-100, 255, 255, 255));
  box-shadow: 0 2px 6px RGB(var(--color-contrast-1000, 0, 0, 0), 0.12);
}
.range-field__input:focus {
  outline: none;
  box-shadow: none;
}
.range-field__input:focus::-webkit-slider-thumb, .range-field__input:focus::-moz-range-thumb {
  box-shadow: 0 4px 12px RGB(var(--color-blue-250, 66, 169, 237), 0.3);
}
.range-field__output {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: RGB(var(--color-contrast-100, 255, 255, 255), 0.85);
  user-select: none;
}
@media (max-width: 620px) {
  .range-field__output {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
  }
}

.upload-input {
  display: none;
}

/*# sourceMappingURL=main.css.map */
