:root {
  --font-family: "Open Sans", sans-serif;
  --content-width: 130rem;
  --container-offset: 2rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* 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 */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
}

html {
  font-size: 0.5208333333vw;
}
@media (max-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 2.4154589372vw;
  }
}

.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;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #0165ff;
  border-radius: 2rem;
  padding: 1.2rem 3.3rem;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
  transition: background-color 0.3s ease-out, color 0.3s ease-out;
}
.btn--white {
  background-color: #fff;
  color: #000;
  outline: 1px solid transparent;
  -webkit-transition: outline-color 0.3s ease-out, background-color 0.3s ease-out, color 0.3s ease-out;
  transition: outline-color 0.3s ease-out, background-color 0.3s ease-out, color 0.3s ease-out;
}
@media (any-hover: hover) {
  .btn--white:hover {
    outline-color: #fff;
    color: #fff;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: #3787ff;
  }
}

.title2 {
  margin: 0;
  font-weight: 700;
  font-size: 3.2rem;
  color: #000;
}

.text {
  margin: 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 125%;
  color: #000;
}
.text--semibold {
  font-weight: 600;
}

.just-validate-error-label {
  display: none;
}

.just-validate-error-field,
.just-validate-error-field + .form__rcheck > .form__box {
  border-color: rgb(255, 167, 167) !important;
  -webkit-box-shadow: 0 0 10px rgb(255, 167, 167);
  box-shadow: 0 0 10px rgb(255, 167, 167);
}

.header {
  position: relative;
  z-index: 10;
  padding: 1.5rem 0;
  background-color: #fff;
}
.header__container, .header__left, .header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header__logo {
  display: block;
  width: 13rem;
  height: 7rem;
}
@media (max-width: 1024px) {
  .header__logo {
    width: 10rem;
    height: 5rem;
  }
}
.header__logo img {
  height: 100%;
  width: 100%;
}
.header__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__left {
  gap: 12rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .header__left {
    gap: 6rem;
  }
}
.header__burger {
  display: none;
  position: relative;
  z-index: 102;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3rem;
  height: 2rem;
  position: relative;
}
@media (max-width: 576px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__burger .line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #000;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__burger .line::before, .header__burger .line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #000;
  height: 2px;
  border-radius: 2px;
}
.header__burger .line::before {
  top: 0;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__burger .line::after {
  bottom: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.header__burger.active .line {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header__burger.active .line::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.header__burger.active .line::after {
  opacity: 0;
}
.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 576px) {
  .header__tel {
    display: none;
  }
}
.header__tel svg {
  width: 1.9rem;
  height: 1.9rem;
}
.header__tel span {
  font-weight: 600;
  font-size: 1.8rem;
  color: #000;
}
.header__btn {
  width: 23.8rem;
}
@media (max-width: 576px) {
  .header__btn {
    width: auto;
  }
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 576px) {
  .header__nav {
    display: none;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6rem;
}
@media (max-width: 1024px) {
  .nav__list {
    gap: 3rem;
  }
}
.nav__link {
  font-weight: 500;
  font-size: 1.8rem;
  color: #000;
  display: inline-block;
  position: relative;
}
@media (max-width: 1024px) {
  .nav__link {
    font-size: 1.6rem;
  }
}
.nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 10%;
  height: 1px;
  opacity: 0;
  background-color: currentColor;
  -webkit-transition: width 0.3s ease-out, opacity 0.3s ease-out;
  transition: width 0.3s ease-out, opacity 0.3s ease-out;
}
@media (any-hover: hover) {
  .nav__link:hover::before {
    width: 100%;
    opacity: 1;
  }
}

.hero {
  padding-bottom: 7rem;
  position: relative;
}
@media (max-width: 576px) {
  .hero {
    padding-bottom: 6rem;
  }
}
.hero__container {
  padding: 11rem calc((100% - var(--container-width)) / 2) 16rem;
  padding-bottom: 32rem;
  background-color: #eff3fa;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .hero__container {
    padding: 12rem var(--container-offset);
    padding-bottom: 50rem;
    padding-top: 8rem;
  }
}
@media (max-width: 576px) {
  .hero__container {
    padding-top: 4rem;
    padding-bottom: 32rem;
  }
}
.hero__container::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 152rem;
  height: 46rem;
  background: linear-gradient(274deg, rgba(1, 101, 255, 0.2) 0%, rgba(1, 101, 255, 0.2) 100%);
  -webkit-transform: rotate(-21deg) translate(12%, 55%);
  -ms-transform: rotate(-21deg) translate(12%, 55%);
  transform: rotate(-21deg) translate(12%, 55%);
}
@media (max-width: 1024px) {
  .hero__container::after {
    -webkit-transform: rotate(-21deg) translate(12%, 70%);
    -ms-transform: rotate(-21deg) translate(12%, 70%);
    transform: rotate(-21deg) translate(12%, 70%);
  }
}
@media (max-width: 576px) {
  .hero__container::after {
    -webkit-transform: rotate(-21deg) translate(12%, 100%);
    -ms-transform: rotate(-21deg) translate(12%, 100%);
    transform: rotate(-21deg) translate(12%, 100%);
  }
}
.hero__video, .hero .canvas, .hero__images {
  position: absolute;
  z-index: 1;
  right: 0;
  top: -12rem;
  width: 110rem;
  height: 110rem;
}
@media (max-width: 1024px) {
  .hero__video, .hero .canvas, .hero__images {
    top: unset;
    bottom: -12rem;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    width: 100rem;
    height: 100rem;
  }
}
@media (max-width: 576px) {
  .hero__video, .hero .canvas, .hero__images {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    bottom: -1rem;
  }
}
.hero__video video, .hero .canvas video, .hero__images video {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.hero__content {
  max-width: 57.9rem;
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .hero__content {
    max-width: 88rem;
    margin: 0 auto;
    text-align: center;
  }
}
.hero__title {
  margin: 0;
  margin-bottom: 4rem;
  font-weight: 600;
  font-size: 4rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #000;
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 2.6rem;
  }
}
.hero__title span {
  color: #0165ff;
}
.hero__desc {
  margin: 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #000;
}
@media (max-width: 576px) {
  .hero__desc {
    font-size: 1.2rem;
  }
}
.hero__link {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 23rem;
  height: 23rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #0165ff;
  border: 3rem solid #e6f0ff;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
@media (any-hover: hover) {
  .hero__link:hover {
    background-color: #3787ff;
  }
}
@media (max-width: 1024px) {
  .hero__link {
    width: 17rem;
    height: 17rem;
    border-width: 2rem;
  }
}
@media (max-width: 576px) {
  .hero__link {
    width: 14rem;
    height: 14rem;
    font-size: 1.4rem;
    border-width: 1.2rem;
  }
}

.about {
  margin-bottom: 10rem;
}
@media (max-width: 576px) {
  .about {
    margin-bottom: 6rem;
    margin-top: 4rem;
  }
}
.about__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .about__container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.about__image {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
  padding: 0 7rem;
}
.about__image img {
  width: 100%;
  height: auto;
}
.about__content {
  -ms-grid-column-span: 7;
  grid-column: 7 span;
  padding-top: 10rem;
}
@media (max-width: 1024px) {
  .about__content {
    padding-top: 0;
  }
}
@media (max-width: 576px) {
  .about__content {
    text-align: center;
  }
}
.about__title {
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .about__title {
    margin-bottom: 2rem;
  }
}
.about__desc:not(:last-child) {
  margin-bottom: 3rem;
}
@media (max-width: 576px) {
  .about__desc:not(:last-child) {
    margin-bottom: 1.3rem;
  }
}

.equip {
  position: relative;
  margin-bottom: 12rem;
}
.equip::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: -12rem;
  width: 50rem;
  height: 65rem;
  background-image: url("./../img/map-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.equip__title {
  margin-bottom: 5rem;
}
@media (max-width: 576px) {
  .equip__title {
    margin-bottom: 3rem;
    text-align: center;
  }
}
.equip__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
}
@media (max-width: 1024px) {
  .equip__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .equip__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.equip-item {
  min-height: 21rem;
  padding: 3rem;
  border-radius: 2rem;
  background-color: #f7f9fc;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 4rem;
}
.equip-item::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -7rem;
  top: -4.7rem;
  height: 21rem;
  width: 21rem;
  border-radius: 100%;
  background-color: #eff3fa;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.equip-item__icon {
  width: 4.8rem;
  height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.equip-item__icon svg {
  fill: #0165FF;
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}
.equip-item__content {
  position: relative;
  z-index: 2;
}
.equip-item__title {
  display: block;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 125%;
  color: #000;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.equip-item__desc {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .equip-item:hover {
    background-color: #0165ff;
  }
  .equip-item:hover::before {
    background-color: #027dff;
  }
  .equip-item:hover .equip-item__title {
    color: #fff;
  }
  .equip-item:hover .equip-item__desc {
    color: #fff;
  }
  .equip-item:hover .equip-item__icon svg {
    fill: #fff;
  }
}
@media (max-width: 1024px) {
  .equip-item {
    background-color: #0165ff;
  }
  .equip-item::before {
    background-color: #027dff;
  }
  .equip-item .equip-item__title {
    color: #fff;
  }
  .equip-item .equip-item__desc {
    color: #fff;
  }
  .equip-item .equip-item__icon svg {
    fill: #fff;
  }
}

.services {
  margin-bottom: 12rem;
}
.services__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.services__swipe {
  display: none;
}
@media (max-width: 576px) {
  .services__swipe {
    display: block;
    -webkit-animation: swipe 6s ease-in infinite;
    animation: swipe 6s ease-in infinite;
  }
}
.services__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 576px) {
  .services__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}

@-webkit-keyframes swipe {
  0% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes swipe {
  0% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  5% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    -webkit-transform: translateX(15px);
    transform: translateX(15px);
  }
  25% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.s-item {
  padding-top: 8rem;
  position: relative;
}
.s-item__fig {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: -1;
  font-weight: 700;
  font-size: 11.6rem;
  line-height: 1;
  color: #eff3fa;
}
.s-item__body {
  border: 1px solid rgba(1, 101, 255, 0.3);
  border-radius: 2rem;
  background-color: #fff;
  padding: 3rem;
  height: 16.1rem;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.s-item__title {
  display: block;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 125%;
  color: #000;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (max-width: 1024px) {
  .s-item__title {
    font-size: 2rem;
  }
}
.s-item__desc {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
@media (any-hover: hover) {
  .s-item:hover .s-item__body {
    background-color: #0165ff;
  }
  .s-item:hover .s-item__title {
    color: #fff;
  }
  .s-item:hover .s-item__desc {
    color: #fff;
  }
}
@media (max-width: 1024px) {
  .s-item .s-item__body {
    background-color: #0165ff;
  }
  .s-item .s-item__title {
    color: #fff;
  }
  .s-item .s-item__desc {
    color: #fff;
  }
}

.cta {
  margin-bottom: 12rem;
}
@media (max-width: 576px) {
  .cta {
    margin-bottom: 6rem;
  }
}
.cta__container {
  background-color: #0165ff;
  border-radius: 2rem;
  padding: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
@media (max-width: 576px) {
  .cta__container {
    -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;
  }
}
.cta__container::before {
  content: "";
  position: absolute;
  left: -6rem;
  bottom: 0;
  width: 52rem;
  height: 28.3rem;
  background-image: url("./../img/logo.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-filter: brightness(4) saturate(0) opacity(0.2);
  filter: brightness(4) saturate(0) opacity(0.2);
}
@media (max-width: 1024px) {
  .cta__container::before {
    width: 40rem;
    height: 20rem;
    left: -1rem;
  }
}
@media (max-width: 576px) {
  .cta__container::before {
    width: 30rem;
    height: 17rem;
    bottom: 17rem;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;
  }
}
.cta__form {
  width: 100%;
  max-width: 37rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cta__title {
  color: #fff;
  margin-bottom: 4rem;
}
@media (max-width: 576px) {
  .cta__title {
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
.cta__desc {
  color: #fff;
}
@media (max-width: 576px) {
  .cta__desc {
    text-align: center;
  }
}
.cta__content {
  margin-left: 30rem;
  max-width: 33.5rem;
}
@media (max-width: 1024px) {
  .cta__content {
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .cta__content {
    margin-bottom: 2rem;
  }
}

.form__label {
  display: block;
  width: 100%;
}
.form__label:not(:last-child) {
  margin-bottom: 1rem;
}
.form__input {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid #fff;
  border-radius: 2rem;
  padding: 1.4rem 3rem;
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}
.form__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}
.form__input::-moz-placeholder {
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}
.form__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}
.form__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}
.form__input::placeholder {
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}
.form__input:focus {
  outline: none;
}
.form__check:checked + .form__rcheck > .form__box {
  background-image: url("./../img/check.svg");
}
.form__rcheck {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 110%;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.form__box {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
}
.form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.map__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .map__container {
    margin: 0 calc(-1 * var(--container-offset));
  }
}
@media (max-width: 576px) {
  .map__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
  }
}
.map__map {
  -ms-grid-column-span: 8;
  grid-column: 8 span;
  margin-right: -2rem;
  background-color: #ccc;
}
@media (max-width: 576px) {
  .map__map {
    margin-right: 0;
    height: 28rem;
  }
}
.map__contacts {
  -ms-grid-column-span: 4;
  grid-column: 4 span;
  padding: 5rem;
  background-color: #0165ff;
}
@media (max-width: 576px) {
  .map__contacts {
    text-align: center;
  }
}
.map__title {
  color: #fff;
  margin-bottom: 4rem;
}
@media (max-width: 1024px) {
  .map__title {
    margin-bottom: 2rem;
  }
}
.map__btn {
  margin-top: 2rem;
}

.contacts__name {
  display: block;
  margin-bottom: 1.6rem;
  font-weight: 500;
  font-size: 2.4rem;
  color: #fff;
}
@media (max-width: 1024px) {
  .contacts__name {
    font-size: 2rem;
  }
}
.contacts__text {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  color: #fff;
}
.contacts__city {
  margin-top: 3rem;
  max-width: 15rem;
}
@media (max-width: 576px) {
  .contacts__city {
    max-width: unset;
  }
}

.footer__top {
  padding: 1.5rem 0;
  background-color: #0165ff;
}
@media (max-width: 576px) {
  .footer__top {
    display: none;
  }
}
.footer__top .nav__link {
  color: #fff;
}
.footer__bottom {
  background-color: #eff3fa;
  padding: 1.5rem 0;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18rem;
}
@media (max-width: 1024px) {
  .footer__container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5rem;
  }
}
@media (max-width: 576px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}
.footer__copy {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 250%;
  color: #000;
  opacity: 0.7;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7rem;
}
@media (max-width: 576px) {
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (any-hover: hover) {
  .footer__link:hover {
    text-decoration: underline;
  }
}

.menu {
  display: none;
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  background-image: linear-gradient(274deg, rgba(1, 101, 255, 0.2) 0%, rgba(1, 101, 255, 0.2) 100%);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
@media (max-width: 576px) {
  .menu {
    display: block;
  }
}
.menu.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.menu__body {
  padding: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  gap: 5rem;
}
.menu__nav {
  margin-bottom: 2rem;
}
.menu__nav .nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu__nav .nav__link {
  font-size: 2.4rem;
}
.menu__info {
  text-align: center;
}
.menu__tel, .menu__email {
  display: block;
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  color: #000;
}
.menu__tel:not(:last-child), .menu__email:not(:last-child) {
  margin-bottom: 1.2rem;
}/*# sourceMappingURL=main.css.map */
