:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 144rem;
  --container-offset: 2rem;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --text-color: #2760a7;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
  font-style: normal;
}
/* 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;
}

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

html {
  font-size: 0.5208333333vw;
}
@media (max-width: 1279px) {
  html {
    font-size: 0.78125vw;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 2.5641025641vw;
  }
}

.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);
}
@media (max-width: 1279px) {
  .container {
    max-width: 100%;
  }
}

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

.title2 {
  margin: 0;
  margin-bottom: 6rem;
  font-size: 7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2760a7;
  position: relative;
  min-height: 15rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 1279px) {
  .title2 {
    font-size: 4.5rem;
    min-height: 9rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 576px) {
  .title2 {
    font-size: 2.6rem;
    min-height: 6rem;
    margin-bottom: 2.5rem;
  }
}
.title2::before {
  content: attr(data-title);
  position: absolute;
  top: 0;
  left: 0rem;
  font-size: 10rem;
  opacity: 0.07;
  font-weight: 700;
  color: currentColor;
  white-space: nowrap;
}
@media (max-width: 1279px) {
  .title2::before {
    font-size: 7rem;
  }
}
@media (max-width: 576px) {
  .title2::before {
    font-size: 4rem;
  }
}

.desc {
  margin: 0;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: #000;
  line-height: 144%;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media (max-width: 576px) {
  .desc {
    font-size: 1.6rem;
  }
}

.btn {
  padding: 2rem 6rem;
  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;
  text-decoration: none;
  color: #fff;
  background-color: #2760a7;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
  font-size: 2rem;
  font-weight: 300;
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: #327ad3;
  }
}
@media (max-width: 1279px) {
  .btn {
    padding: 2rem 4rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 576px) {
  .btn {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }
}

.site-tel {
  position: fixed;
  right: 5rem;
  bottom: 5rem;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  border-radius: 1rem;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
@media (max-width: 576px) {
  .site-tel {
    display: none;
  }
}
.site-tel__close {
  position: absolute;
  right: 1rem;
  top: 2rem;
  z-index: 10;
  font-size: 4rem;
  line-height: 0;
  color: #fff;
  cursor: pointer;
}
.site-tel__header {
  padding: 1rem;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
}
.site-tel__header img {
  width: 100%;
  height: 100%;
}
.site-tel__content {
  padding: 3rem;
  display: none;
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}

.contacts {
  margin-bottom: 12rem;
  padding-top: 12rem;
}
@media (max-width: 1279px) {
  .contacts {
    padding-top: 6rem;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #2760a7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.2rem 0;
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__burger {
  display: none;
  -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;
  z-index: 101;
}
.header__burger .line {
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
}
.header__burger .line::before,
.header__burger .line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
  left: 0;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
}
.header__burger .line::before {
  top: 0;
}
.header__burger .line::after {
  bottom: 0;
}
.header__burger.active .line {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header__burger.active .line::after {
  opacity: 0;
}
.header__burger.active .line:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 576px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 576px) {
  .header__nav {
    display: none;
  }
}
.header__logo {
  width: 32rem;
  height: 8rem;
  margin-right: 2rem;
  position: relative;
  z-index: 100;
}
@media (max-width: 1279px) {
  .header__logo {
    width: 25rem;
    height: 6rem;
  }
}
@media (max-width: 576px) {
  .header__logo {
    width: 15rem;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(0.93);
}
.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 5rem;
  gap: 2rem;
}
@media (max-width: 1279px) {
  .header__links {
    display: none;
  }
}
.header__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 300;
  text-decoration: none;
  position: relative;
}
.header__tel::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  opacity: 0;
  height: 1px;
  background-color: currentColor;
  transition: opacity 0.3s ease-out, width 0.3s ease-out;
}
.header__tel:hover::before {
  width: 100%;
  opacity: 1;
}
@media (max-width: 1279px) {
  .header__tel {
    font-size: 1.8rem;
  }
}
.header__tel span {
  font-size: 1.5rem;
  text-align: right;
}
@media (max-width: 1279px) {
  .header__tel span {
    font-size: 1.4rem;
  }
}
.header__bottom {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background-color: black;
  padding: 1.5rem 0;
}
.hero {
  position: relative;
  z-index: 2;
}
.hero__bg {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -10;
  -webkit-transition: opacity 0.3s ease-out, z-index 0.3s ease-out;
  transition: opacity 0.3s ease-out, z-index 0.3s ease-out;
}
.hero__img.active {
  opacity: 1;
  z-index: 1;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__container {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 26rem;
  padding-bottom: 10rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-image: url("./../img/back.webp");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 4;
  overflow: hidden;
}
@media (max-width: 1279px) {
  .hero__container {
    height: auto;
    padding-top: 15rem;
    background-image: url("./../img/back-mob.webp");
  }
}
@media (max-width: 1279px) {
  .hero__container {
    background-position: 50%;
    padding-top: 10rem;
  }
}
.hero__container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  text-align: right;
  text-transform: uppercase;
  color: #000;
  padding: 2rem
    calc((100% - var(--container-width) + (var(--container-offset))) / 2);
}
@media (max-width: 1279px) {
  .hero__content {
    padding: 2rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 576px) {
  .hero__content {
    text-align: left;
  }
}
.hero__title {
  margin: 0;
  font-size: 7rem;
  color: var(--text-color);
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media (max-width: 1279px) {
  .hero__title {
    font-size: 5rem;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 3.2rem;
    text-align: left;
  }
}
.hero__desc {
  margin: 0;
  margin-bottom: 5rem;
  font-size: 7rem;
  color: #fff;
  font-weight: 700;
}
.hero__desc.desc {
  font-size: 2rem;
  margin-bottom: 6rem;
  text-transform: initial;
}
@media (max-width: 1279px) {
  .hero__desc {
    font-size: 5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 576px) {
  .hero__desc {
    font-size: 3.2rem;
    text-align: left;
  }
}
.hero__ben {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.hero__capture {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
}
@media (max-width: 1279px) {
  .hero__capture {
    font-size: 2.2rem;
  }
}
.hero__capture span {
  display: block;
}
.hero__benefits {
  width: 100%;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 4rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1279px) {
  .hero__benefits {
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .hero__benefits {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.hero__icon {
  padding: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1279px) {
  .hero__icon {
    width: 8rem;
    height: 8rem;
  }
}
@media (max-width: 576px) {
  .hero__icon {
    width: 6rem;
    height: 6rem;
    padding: 1.3rem;
  }
}
.hero__icon svg {
  fill: #fff !important;
}
.hero__desc {
  margin: 0;
  margin-bottom: 5rem;
  font-size: 7rem;
  color: #fff;
  font-weight: 700;
}
.hero__desc.desc {
  font-size: 2rem;
  margin-bottom: 6rem;
  text-transform: initial;
}
@media (max-width: 1279px) {
  .hero__desc {
    font-size: 5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 576px) {
  .hero__desc {
    font-size: 3.2rem;
    text-align: left;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__link {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;

  display: inline-block;
  position: relative;
}
.nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  opacity: 0;
  height: 1px;
  background-color: currentColor;
  transition: opacity 0.3s ease-out, width 0.3s ease-out;
}
.nav__link:hover::before {
  width: 100%;
  opacity: 1;
}
@media (max-width: 1279px) {
  .nav__link {
    font-size: 1.8rem;
  }
}

.about {
  padding: 12rem 0;
  padding-bottom: 0;
}
@media (max-width: 1279px) {
  .about {
    padding: 6rem 0;
  }
}
@media (max-width: 576px) {
  .about {
    padding: 4.5rem 0;
    padding-bottom: 2rem;
  }
}
.about__title {
  margin-bottom: 4rem;
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.about__title::before {
  left: unset;
  right: 0;
}
@media (max-width: 576px) {
  .about__title {
    margin-bottom: 2.5rem;
  }
}
.about__desc {
  margin-bottom: 6rem;
  text-align: justify;
}
@media (max-width: 576px) {
  .about__desc {
    margin-bottom: 0;
  }
}
.about__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
  gap: 5rem;
}
@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;
    gap: 6rem;
  }
}
.about__map {
  height: 40rem;
  background-color: #ccc;
}
@media (max-width: 576px) {
  .about__map {
    height: 28rem;
  }
}
.about__images {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
  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;
  padding-top: 5rem;
}
@media (max-width: 576px) {
  .about__images {
    padding: 0;
  }
}
.about__content {
  -ms-grid-column-span: 7;
  grid-column: 7 span;
}
.about__img {
  position: relative;
}
.about__img::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #000;
  left: -3rem;
  top: -3rem;
  width: 100%;
  height: 100%;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-position: right;
  object-position: right;
}
@media (max-width: 576px) {
  .about__img img {
    -webkit-transform: translateX(2rem);
    -ms-transform: translateX(2rem);
    transform: translateX(2rem);
  }
}
.about__contacts {
  margin-bottom: 4rem;
}
.about__map canvas {
  -webkit-filter: hue-rotate(82deg) grayscale(0.6);
  filter: hue-rotate(82deg) grayscale(0.6);
}

.about-contacts {
  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) {
  .about-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.about-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
.about-info__row:hover .about-info__tel::before {
  opacity: 1;
  width: 100%;
}
.about-info__icon {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  padding: 1rem;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}
.about-info__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--text-color) !important;
}
.about-info__capture {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text-color);
  line-height: 144%;
  color: #000;
}
.about-info__tel {
  font-size: 2.2rem;
  font-weight: 300;
  white-space: nowrap;
  line-height: 144%;
  letter-spacing: 0.02em;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}
.about-info__tel::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10%;
  opacity: 0;
  height: 1px;
  transition: 0.3s ease-out;
  background-color: currentColor;
}
@media (max-width: 576px) {
  .about-info__tel {
    font-size: 1.8rem;
  }
}
.about-info__address {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 144%;
  color: var(--text-color);
}
@media (max-width: 576px) {
  .about-info__address {
    font-size: 1.8rem;
  }
}

.benefits {
  padding: 6rem 0;
  padding-bottom: 0;
}
@media (max-width: 576px) {
  .benefits__title::before {
    white-space: inherit;
    bottom: 0;
    top: unset;
  }
}
.benefits__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 576px) {
  .benefits__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.benefits__item {
  padding: 3rem 2rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1279px) {
  .benefits__item {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .benefits__item {
    padding: 1rem;
  }
}
.benefits__capture {
  display: block;
  font-size: 10rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  color: var(--text-color);
}
@media (max-width: 1279px) {
  .benefits__capture {
    font-size: 8rem;
  }
}
@media (max-width: 576px) {
  .benefits__capture {
    font-size: 5rem;
  }
}
.benefits__value {
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 144%;
  text-align: center;
}
@media (max-width: 1279px) {
  .benefits__value {
    font-size: 1.8rem;
  }
}

.services {
  padding-top: 12rem;
}
@media (max-width: 1279px) {
  .services {
    padding-top: 6rem;
  }
}

.service {
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.05);
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.05);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [12];
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  .service {
    display: block;
  }
}
.service::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40rem;
  height: 40rem;
  background-image: url("./../img/logo-sign.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translate(30%, 20%);
  -ms-transform: translate(30%, 20%);
  transform: translate(30%, 20%);
  opacity: 0.05;
}
.service:not(:last-child) {
  margin-bottom: 6rem;
}
.service__image {
  -ms-grid-column-span: 5;
  grid-column: 5 span;
}
.service__image img {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
}
.service__content {
  -ms-grid-column-span: 7;
  grid-column: 7 span;
  padding: 5rem;
}
@media (max-width: 576px) {
  .service__content {
    padding: 1rem;
  }
}
.service__title {
  display: block;
  margin: 0;
  margin-bottom: 2rem;
  font-size: 3.6rem;
  color: var(--text-color);
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .service__title {
    font-size: 2.2rem;
  }
}
.service__desc {
  margin: 0;
  font-size: 2rem;
  line-height: 144%;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media (max-width: 576px) {
  .service__desc {
    font-size: 1.6rem;
  }
}

.licence {
  padding-top: 15rem;
  margin-bottom: 12rem;
}
@media (max-width: 576px) {
  .licence {
    padding-top: 10rem;
    padding-bottom: 4rem;
  }
}
.licence__title {
  margin-bottom: 4rem;
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.licence__title::before {
  white-space: unset;
  top: unset;
  bottom: 25%;
  line-height: 0.9;
}
@media (max-width: 576px) {
  .licence__title::before {
    font-size: 3.6rem;
    bottom: 4rem;
  }
}
@media (max-width: 576px) {
  .licence__title {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
}
.licence__desc {
  margin-bottom: 5rem;
}
@media (max-width: 576px) {
  .licence__desc {
    text-align: left;
  }
}
.licence__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 2rem;
}
@media (max-width: 576px) {
  .licence__slider {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 4rem;
  }
}
.licence__doc {
  background-color: #ccc;
  height: 65rem;
  width: 46rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1279px) {
  .licence__doc {
    height: 50rem;
    width: 35rem;
  }
}
@media (max-width: 576px) {
  .licence__doc {
    width: 100%;
    max-width: unset;
  }
}
.licence__doc img {
  width: 100%;
  height: 100%;
}
.licence__doc::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2rem;
  top: -2rem;
  width: 100%;
  height: 100%;
  background-color: #000;
}

.job {
  margin: 6rem 0 12rem;
}
@media (max-width: 1279px) {
  .job {
    margin: 0;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 576px) {
  .job {
    padding-top: 0rem;
    padding-bottom: 4rem;
  }
}

.job-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
}
@media (max-width: 576px) {
  .job-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.job-banner__title {
  margin: 0;
  font-size: 6rem;
  color: #fff;
}
@media (max-width: 1279px) {
  .job-banner__title {
    font-size: 5rem;
  }
}
@media (max-width: 576px) {
  .job-banner__title {
    font-size: 3rem;
  }
}
.job-banner__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 5rem 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
@media (max-width: 1279px) {
  .job-banner__content {
    padding: 3rem 5rem;
  }
}
@media (max-width: 576px) {
  .job-banner__content {
    padding: 4rem 2rem;
  }
}
.job-banner__image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 55rem;
}
.job-banner__image img {
  width: 100%;
  height: 100%;
}

.job-offers {
  padding-top: 12rem;
}
.job-offers__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1279px) {
  .job-offers__items {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .job-offers__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.job-item {
  padding: 5rem;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.05);
  box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, 0.05);
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.job-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 40rem;
  height: 40rem;
  background-image: url("./../img/logo-sign.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translate(-30%, 20%);
  -ms-transform: translate(-30%, 20%);
  transform: translate(-30%, 20%);
  opacity: 0.05;
}
.job-item__title {
  display: block;
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 4rem;
  text-transform: uppercase;
  color: var(--text-color);
  letter-spacing: 0.02em;
}
@media (max-width: 576px) {
  .job-item__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
.job-item__capture {
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 2.6rem;
  letter-spacing: 0.02em;
}
.job-item__capture span {
  color: var(--text-color);
}
@media (max-width: 576px) {
  .job-item__capture {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.job-item__list {
  margin: 0;
  padding: 0;
  padding-left: 2rem;
  margin-bottom: 2rem;
  list-style: none;
}
@media (max-width: 576px) {
  .job-item__list {
    margin-bottom: 1rem;
  }
}
.job-item__item {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
}
.job-item__item:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 576px) {
  .job-item__item {
    font-size: 1.6rem;
  }
}
.job-item__bottom {
  margin-top: 4rem;
}

.reason {
  padding-top: 12rem;
}
@media (max-width: 576px) {
  .reason {
    padding-top: 0rem;
  }
}
.reason__title {
  text-align: right;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 576px) {
  .reason__title {
    text-align: left;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 2.3rem;
  }
}
.reason__title::before {
  left: unset;
  right: 0;
  top: unset;
  bottom: 70%;
}
@media (max-width: 576px) {
  .reason__title::before {
    right: unset;
    left: 0;
    font-size: 3.6rem;
  }
}
.reason__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1279px) {
  .reason__items {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .reason__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.reason-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5rem;
  gap: 2rem;
}
@media (max-width: 576px) {
  .reason-item {
    padding: 1rem 0;
  }
}
.reason-item__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background-color: var(--text-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  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;
  padding: 1.5rem;
}
@media (max-width: 576px) {
  .reason-item__icon {
    width: 6rem;
    height: 6rem;
  }
}
.reason-item__text {
  font-size: 2rem;
  font-weight: 500;
}
.reason-item__text span {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-color);
}
@media (max-width: 576px) {
  .reason-item__text {
    font-size: 1.6rem;
  }
}

.footer {
  padding: 2rem 0;
  background-color: #000;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 576px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 576px) {
  .footer__links .header__tel {
    text-align: left;
  }
  .footer__links .header__tel span {
    text-align: center;
  }
}
.footer__nav .nav__list {
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .footer__nav .nav__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.menu {
  position: absolute;
  z-index: 90;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--text-color);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -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;
  display: none;
}
@media (max-width: 576px) {
  .menu {
    display: block;
  }
}
.menu.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.menu__body {
  padding: 2rem;
  padding-top: 12vh;
}
.menu__nav {
  margin-bottom: 4rem;
}
.menu__nav .nav__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu__nav .nav__link {
  font-size: 2.6rem;
}
.menu__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.menu__links span {
  font-size: 2.2rem;
  text-align: center;
}
.menu__links a {
  font-size: 2.6rem;
} /*# sourceMappingURL=main.css.map */
.header__tel span {
  font-weight: 700;
}
.footer__legal {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer__policy,
.footer__policy:link,
.footer__policy:visited {
  color: #fff !important;
  text-decoration: underline;
  font-size: 1.4rem;
  display: inline-block;
  padding: .4rem 0;
}
.footer__policy:hover { text-decoration: none; }
.footer__legal {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;                  /* центруем ссылку */
}

.footer .footer__legal .footer__policy,
.footer .footer__legal .footer__policy:link,
.footer .footer__legal .footer__policy:visited,
.footer .footer__legal .footer__policy:active,
.footer .footer__legal .footer__policy:focus {
  color: #fff !important;              /* белый при любом состоянии */
  -webkit-text-fill-color: #fff;       /* iOS Safari */
  text-decoration: underline;
  font-size: 1.4rem;
  display: inline-block;
  padding: .4rem 0;
}

.footer .footer__legal .footer__policy:hover,
.footer .footer__legal .footer__policy:focus {
  text-decoration: none;
  outline: none;
}
