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

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a {
  color: inherit;
}

input[type=number] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}
@font-face {
  font-family: "OpenSans";
  src: url("/fonts/OpenSans-Bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("/fonts/Roboto_Condensed-Bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}
.input, .caption, .num-1, .legal-2, .legal-1, .p2, .p1, body {
  font-family: "OpenSans";
  font-weight: 400;
}

.button-link2, .button-link1, .num-3, .legal-2-strong, .display-3, .p1-semibold, .h3, .h2, .button-light, .button-dark {
  font-family: "OpenSans";
  font-weight: 600;
}

.num-2, .display-2, .display-1, .p1-bold, .h1 {
  font-family: "OpenSans";
  font-weight: 700;
}

.rubl {
  font-family: "Roboto";
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  --bg-color: #E6F7FF;
  --bg-white-color: #FFFFFF;
  --text-color: #2F3A50;
  --white-text-color: #FFFFFF;
  --light-text-color: #E6F7FF;
  --footer-text-color: #EDEDED;
  --tags-color: #656E72;
  --accent-color: #3A7BD5;
  --accent-hover-color: #2E63AC;
  --accent2-color: #23D8CD;
  --accent2-hover-color: #0EB0C1;
  --light-color: #EDF9FF;
  --error-color: #FF0505;
  --container-width: 1524px;
  --container-inline-padding: 0 10px;
}

body {
  font-size: 16px;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow-x: hidden;
}

.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(3.125rem, 1.4803rem + 6.5789vw, 9.375rem);
}

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

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row {
  display: flex;
  align-items: center;
}

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

.button-dark {
  min-height: 48px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  padding: 0 12px;
  color: var(--light-text-color);
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  border-radius: 100px;
  font-size: clamp(1.25rem, 1.1842rem + 0.2632vw, 1.5rem);
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-dark:hover, .button-dark:active {
  background-color: var(--accent-hover-color);
}

.button-light {
  min-height: 48px;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  padding: 12px 0;
  color: var(--light-text-color);
  background-color: var(--accent2-color);
  border-radius: 100px;
  transition: all 0.3s ease;
  font-size: clamp(1.25rem, 1.1842rem + 0.2632vw, 1.5rem);
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-light:hover, .button-light:active {
  background-color: var(--accent2-hover-color);
}
.button-light:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.footer-input {
  padding: 25px;
  background-color: rgba(28, 104, 204, 0.5);
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--bg-white-color);
  border-radius: 52px;
  width: 100%;
}
.footer-input::placeholder {
  text-transform: uppercase;
  color: var(--white-text-color);
  text-align: left;
}
.footer-input:hover, .footer-input:focus, .footer-input:active {
  background-color: rgba(28, 104, 204, 0.7);
  color: white;
}

.modal-input {
  padding: 25px;
  background-color: white;
  color: var(--tags-color);
  border: 2px solid rgba(26, 32, 44, 0.2);
  border-radius: 52px;
  width: 100%;
}
.modal-input::placeholder {
  text-transform: uppercase;
  color: var(--tags-color);
  text-align: left;
}
.modal-input:hover, .modal-input:focus, .modal-input:active {
  color: var(--text-color);
}
.modal-input:hover::placeholder {
  color: var(--text-color);
}

.main {
  position: relative;
}

.scroll-trigger {
  height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  pointer-events: none;
}

.top-scrol {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 105px;
  height: 105px;
  position: fixed;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.5);
  right: 50px;
  bottom: 120px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.top-scrol.top-scrol--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  .top-scrol {
    display: none;
  }
}
@media (max-width: 750px) {
  .button-dark, .button-light {
    min-height: 42px;
  }
}
.open--menu {
  overflow: hidden;
}

.none {
  display: none;
}

.header {
  margin-top: 20px;
}
.header__inner {
  justify-content: space-between;
  background-color: var(--bg-white-color);
  padding: 20px;
  border-radius: 30px;
}
.header__btn {
  max-width: 200px;
}

.burger__btn {
  background-color: var(--bg-white-color);
}

.logo {
  gap: 8px;
}
.logo-mini {
  gap: 5px;
  display: none;
}

.menu__list {
  gap: 40px;
}
.menu__link {
  text-transform: uppercase;
  color: var(--accent-color);
}
.menu__link:hover {
  color: var(--accent-hover-color);
}

@media (max-width: 1094px) {
  .header__inner {
    position: relative;
  }
  .header__btn {
    margin-left: auto;
  }
  .menu {
    display: none;
    position: absolute;
    right: 0;
    top: 80px;
    z-index: 5;
    background-color: var(--bg-white-color);
    border-radius: 16px;
  }
  .menu__list {
    flex-direction: column;
    padding: 40px;
  }
  .menu.menu--open {
    display: flex;
  }
  .burger__btn {
    display: block;
    margin-left: 20px;
  }
}
@media (max-width: 750px) {
  .logo {
    display: none;
  }
  .logo-mini {
    display: block;
  }
  .header__inner {
    padding: 10px;
  }
  .header__btn {
    max-width: 154px;
  }
  .burger__btn {
    margin-left: 10px;
  }
}
.h1 {
  font-size: clamp(1.625rem, 1rem + 2.5vw, 4rem);
  line-height: 1.1;
}

.h2 {
  font-size: clamp(1.5rem, 0.9079rem + 2.3684vw, 3.75rem);
  line-height: 1.1;
}

.h3 {
  font-size: clamp(1.25rem, 0.9868rem + 1.0526vw, 2.25rem);
  line-height: 1.1;
}

.p1 {
  font-size: clamp(1.125rem, 1.0263rem + 0.3947vw, 1.5rem);
  line-height: 1.2;
}

.p1-bold {
  font-size: clamp(1.125rem, 1.0263rem + 0.3947vw, 1.5rem);
  line-height: 1.2;
}

.p1-semibold {
  font-size: clamp(1.125rem, 1.0263rem + 0.3947vw, 1.5rem);
  line-height: 1.2;
}

.p2 {
  font-size: clamp(1.125rem, 1.0921rem + 0.1316vw, 1.25rem);
  line-height: 1.2;
}

.display-1 {
  font-size: clamp(1.25rem, 0.4276rem + 3.2895vw, 4.375rem);
  line-height: 1.3;
}

.display-2 {
  font-size: clamp(1.375rem, 1.1447rem + 0.9211vw, 2.25rem);
  line-height: 1.5;
}

.display-3 {
  font-size: 20px;
  line-height: 1.2;
}

.legal-1 {
  font-size: 14px;
  line-height: 1.15;
}

.legal-2 {
  font-size: 12px;
  line-height: 1.15;
}

.legal-2-strong {
  font-size: 12px;
  line-height: 1.15;
}

.num-1 {
  font-size: clamp(3.25rem, 2.7895rem + 1.8421vw, 5rem);
  line-height: 1.1;
}

.num-2 {
  font-size: clamp(2.3125rem, 1.7368rem + 2.3026vw, 4.5rem);
  line-height: 1.5;
}

.num-3 {
  font-size: clamp(1.25rem, 1.1842rem + 0.2632vw, 1.5rem);
  line-height: 1.1;
}

.caption {
  font-size: clamp(0.875rem, 0.8421rem + 0.1316vw, 1rem);
  line-height: 1.1;
}

.button-link1 {
  font-size: clamp(1.25rem, 1.1842rem + 0.2632vw, 1.5rem);
  line-height: 1.1;
}

.button-link2 {
  font-size: clamp(1rem, 0.9342rem + 0.2632vw, 1.25rem);
  line-height: 1.1;
}

.input {
  font-size: 14px;
  line-height: 1.3;
}

.rubl {
  font-size: clamp(2.3125rem, 1.7368rem + 2.3026vw, 4.5rem);
  line-height: 1.5;
}

.footer {
  padding-top: clamp(1.875rem, 0.2961rem + 6.3158vw, 7.875rem);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  background-image: url(/img/footer.png);
  background-position: top center;
  background-size: cover;
  color: var(--white-text-color);
  border-radius: clamp(1rem, 0.7697rem + 0.9211vw, 1.875rem);
  overflow: hidden;
  gap: 40px;
  padding: clamp(0.9375rem, 0.5263rem + 1.6447vw, 2.5rem) clamp(0.9375rem, 0.5263rem + 1.6447vw, 2.5rem) 0 clamp(0.9375rem, 0.5263rem + 1.6447vw, 2.5rem);
}
.footer__inputs {
  gap: 24px;
}
.footer__title, .footer__text {
  text-align: center;
}
.footer__box {
  width: 100%;
  gap: clamp(0.5rem, 0.4342rem + 0.2632vw, 0.75rem);
}
.footer-input__textarea {
  min-height: clamp(9.1875rem, 8.6776rem + 2.0395vw, 11.125rem);
  min-width: 260px;
  max-height: 178px;
  width: 100%;
}
.footer-agrees {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 15px;
}
.footer-agrees label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-agrees__text {
  color: rgba(237, 237, 237, 0.4);
  text-align: center;
}
.footer-agrees__text a {
  color: rgba(237, 237, 237, 0.8);
}
.footer-textbox {
  gap: 20px;
}
.footer-textbox__text {
  width: fit-content;
  color: rgba(237, 237, 237, 0.4);
}
.footer-map {
  gap: 40px;
}
.footer-map__texts {
  gap: 24px;
  align-items: center;
}
.footer-map__text {
  margin-bottom: 40px;
}
.footer-map__text.legal-1 {
  padding-top: clamp(2.5625rem, 2.3125rem + 0.3125vw, 2.6875rem);
}
.footer-map__img {
  max-height: 640px;
  border-radius: 24px;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.footer-bottom__text {
  font-size: 12px;
}
.footer-button__block {
  padding-top: 20px;
  position: relative;
}
.footer-button__block span {
  padding-left: 20px;
  opacity: 1;
  position: absolute;
  top: -10px;
  color: var(--error-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: block !important;
}
.footer-button__block span.active {
  opacity: 1;
}

@media (max-width: 1280px) {
  .footer__inner {
    flex-direction: column;
  }
  .footer-map {
    width: 100%;
  }
  .footer-map__img iframe {
    width: 100%;
  }
}
/*# sourceMappingURL=page.css.map */
