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

@media only screen and (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *::before, *::after {
  -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;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #37b4e6;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
}

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 {
  color: inherit;
  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;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-Bold.woff") format("woff"), url("./fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-Regular.woff") format("woff"), url("./fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-Medium.woff") format("woff"), url("./fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-SemiBold.woff") format("woff"), url("./fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-Light.woff") format("woff"), url("./fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-ExtraLight.woff") format("woff"), url("./fonts/Montserrat-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-Black.woff") format("woff"), url("./fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-ExtraBold.woff") format("woff"), url("./fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("./fonts/Montserrat-Thin.woff") format("woff"), url("./fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
}
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #1A1A1A;
  font-family: "Montserrat";
}

.footer {
  margin: auto 0 0;
}

.page-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100%;
}

.header {
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(8, 20, 29, 0.5019607843);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header._active {
  background-color: #0C1B27;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 120px;
}

.header__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 233px;
  flex: 0 0 233px;
  height: 77px;
  width: 233px;
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 154px;
    flex: 0 0 154px;
    height: 51px;
    width: 154px;
  }
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__contacts {
  margin-left: auto;
  text-align: end;
  color: #fff;
}

.header__contacts p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 9px 0;
}

@media only screen and (max-width: 768px) {
  .header__contacts p {
    display: block;
    position: relative;
    padding-left: 20px;
  }
  .header__contacts p svg {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header__contacts p:first-child {
    display: none;
  }
}
.header__contacts p a {
  margin-left: 10px;
}

@media only screen and (max-width: 768px) {
  .header__contacts p a {
    display: block;
    margin-top: 6px;
    margin-left: 0;
  }
}
.header__contacts p a:hover {
  text-decoration: underline;
}

.header__contacts p svg {
  margin-right: 9px;
}

.footer {
  background-color: #1B1B1B;
  padding-top: 40px;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media only screen and (max-width: 992px) {
  .footer__top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer__logo {
  height: 120px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 360px;
  flex: 0 0 360px;
  width: 360px;
  margin-right: 20px;
}

@media only screen and (max-width: 992px) {
  .footer__logo {
    margin: 0 auto 20px;
    max-width: 100%;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #333333;
  border-radius: 3px;
}

@media only screen and (max-width: 992px) {
  .footer__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 360px;
    margin: 0 auto;
    padding: 24px;
  }
}
.footer__content > a {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  white-space: nowrap;
  line-height: 52px;
  border: 1px solid #fff;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  border-radius: 3px;
  margin-right: 30px;
}

@media only screen and (max-width: 992px) {
  .footer__content > a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin: 0 0 20px;
  }
}
.footer__content > div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: end;
}

@media only screen and (max-width: 992px) {
  .footer__content > div {
    text-align: start;
  }
}
.footer__content > div p {
  text-align: end;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 992px) {
  .footer__content > div p {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    padding-left: 25px;
  }
}
.footer__content > div p svg {
  margin-right: 6px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

@media only screen and (max-width: 992px) {
  .footer__content > div p svg {
    position: absolute;
    left: 0;
    top: 3px;
  }
}
.footer__content > div p a {
  text-decoration: underline;
  margin-left: 10px;
}

@media only screen and (max-width: 992px) {
  .footer__content > div p a {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-left: 0;
  }
}
.footer__content > div p:nth-child(2) {
  margin: 12px 0;
}

@media only screen and (max-width: 992px) {
  .footer__content > div p:nth-child(2) {
    margin: 24px 0;
  }
}
.footer__bottom {
  border-top: 1px solid #484848;
}

.footer__bottom a {
  display: block;
  text-decoration: underline;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  margin: 40px auto;
  color: #9C9C9C;
  font-size: 14px;
  font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .footer__bottom a {
        white-space: unset;
        text-align: center;
    }
}

section.section .section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #225F93;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  section.section .section__title {
    font-size: 24px;
    margin-bottom: 24px;
    line-height: 1.2;
  }
}
.modal-form {
  max-width: 1056px;
  width: 100%;
  padding: 40px;
  background: #1a1a1a;
  border-radius: 8px;
}

.modal-form--success {
  max-width: 400px;
  padding: 50px 40px;
}

@media only screen and (max-width: 768px) {
  .modal-form--success {
    max-width: 100%;
    padding: 40px 30px;
  }
}
.modal-form__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-form__title {
  font-size: 36px;
  font-weight: 700;
  color: #38B5E6;
  text-align: center;
  margin: 0 0 20px 0;
}

.modal-form__title.success {
    color: #4CAF50;
}

.modal-form__title.error {
    color: red;
}

.modal-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media only screen and (max-width: 768px) {
  .modal-form__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.modal-form__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.modal-form__col p, .modal-form__content p {
    font-size: 13px;
    color: #fff;
}

.modal-form__col p b, .modal-form__content p b {
    color: red;
}

@media only screen and (max-width: 768px) {
  .modal-form__col {
    gap: 12px;
  }
}
.modal-form input[type=text],
.modal-form input[type=tel],
.modal-form input[type=email] {
  width: 100%;
  padding: 12px 16px;
  background: #2a2a2a;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.modal-form input[type=text]::-webkit-input-placeholder, .modal-form input[type=tel]::-webkit-input-placeholder, .modal-form input[type=email]::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form input[type=text]::-moz-placeholder, .modal-form input[type=tel]::-moz-placeholder, .modal-form input[type=email]::-moz-placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form input[type=text]:-ms-input-placeholder, .modal-form input[type=tel]:-ms-input-placeholder, .modal-form input[type=email]:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form input[type=text]::-ms-input-placeholder, .modal-form input[type=tel]::-ms-input-placeholder, .modal-form input[type=email]::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form input[type=text]::placeholder,
.modal-form input[type=tel]::placeholder,
.modal-form input[type=email]::placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form input[type=text]:focus,
.modal-form input[type=tel]:focus,
.modal-form input[type=email]:focus {
  border-color: #38B5E6;
}

.modal-form__textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px 16px;
  background: #2a2a2a;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  outline: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.modal-form__textarea::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form__textarea::-moz-placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form__textarea:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form__textarea::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form__textarea::placeholder {
  color: #ffffff;
  opacity: 0.7;
}

.modal-form__textarea:focus {
  border-color: #38B5E6;
}

.modal-form__actions {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.modal-form__submit {
  width: 100%;
  max-width: 700px;
  padding: 14px 24px;
  background: #38B5E6;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  min-height: 70px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, -webkit-transform 0.2s;
  transition: background-color 0.3s, transform 0.2s;
  transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.modal-form__submit:hover {
  background: #2a9fd4;
}

.modal-form__submit:active {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
}

.modal-form__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  width: 100%;
  max-width: 700px;
}

.modal-form__checkbox input[type=checkbox] {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #38B5E6;
}

.modal-form__checkbox span {
  font-size: 12px;
  line-height: 1.4;
  color: #7D7D7D;
}

.modal-form__checkbox span a {
  text-decoration: underline;
}

.modal-form__success-icon {
  width: 80px;
  height: 80px;
  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;
  margin-bottom: 10px;
}

.modal-form__success-icon svg {
  width: 100%;
  height: 100%;
}

.modal-form__success-text {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 0;
}

.modal-form__privacy-content {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  max-height: 70vh;
  overflow-y: auto;
}

@media only screen and (max-width: 768px) {
  .modal-form__privacy-content {
    font-size: 13px;
    max-height: 60vh;
  }
}
.modal-form__privacy-content p {
  margin: 0 0 16px 0;
  color: #ffffff;
}

.modal-form__privacy-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #38B5E6;
  margin: 24px 0 12px 0;
}

.modal-form__privacy-content h3:first-child {
  margin-top: 0;
}

.modal-form__privacy-content ul {
  margin: 12px 0;
  padding-left: 24px;
  list-style-type: disc;
}

.modal-form__privacy-content ul li {
  margin: 8px 0;
  color: #ffffff;
}

.modal-form__privacy-content strong {
  font-weight: 600;
  color: #ffffff;
}

.fancybox-container .fancybox__backdrop {
    background: rgba(0, 0, 0, 0.8);
}

.fancybox-container .fancybox-content {
    padding: 20px;
}

@media only screen and (max-width: 768px) {
    .fancybox-container .fancybox-content {
        padding: 15px;
    }
}

.fancybox-container .fancybox-close-small {
    color: #ffffff;
    background: transparent;
}

.fancybox-container .fancybox-content {
    background: transparent;
    padding: 0;
}

.fancybox-container .fancybox-content > .fancybox-close-small.is-close {
    top: 5px;
    right: 5px;
}

.fancybox-container .fancybox-content:not(#modal-success) {
    max-width: 1056px;
    width: 100%;
}

.fancybox-container .fancybox-content:not(#modal-success) .modal-form__fields {
    width: 100%;
}

.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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 77px;
  padding: 0 24px;
  border: 1px solid #38B5E6;
  border-radius: 3px;
  background-color: #38B5E6;
  color: #fff;
  font-family: inherit;
  font-size: 24px;
  font-weight: 600;
  line-height: 77px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 768px) {
  .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 52px;
    padding: 0 24px;
    font-size: 18px;
    line-height: 54px;
  }
}
.btn:hover {
  background-color: #38b5e6;
  border-color: #38b5e6;
  color: #ffffff;
}
.btn_hero {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: auto;
}
@media only screen and (min-width: 769px) {
  .btn_hero {
    min-height: 77px;
  }
}
@media only screen and (max-width: 768px) {
  .btn_hero {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    min-width: 0;
    max-width: none;
  }
}
.btn_product {
  width: 100%;
  max-width: 614px;
}
@media only screen and (max-width: 768px) {
  .btn_product {
    max-width: none;
  }
}

.page-wrapper_landing .header {
  display: none;
}

.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-color: #0c1b27;
}
.hero__media-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 768px) {
  .hero__media-img {
    -o-object-position: 33% center;
       object-position: 33% center;
  }
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 1080px;
  padding-top: 40px;
  padding-bottom: 112px;
}
@media only screen and (max-width: 1200px) {
  .hero__inner {
    min-height: 900px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 992px) {
  .hero__inner {
    min-height: 720px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .hero__inner {
    min-height: 549px;
    padding-top: 20px;
    padding-bottom: 24px;
  }
}
.hero__logo {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 360px;
  max-width: 100%;
  height: 118px;
}
@media only screen and (max-width: 992px) {
  .hero__logo {
    width: 280px;
    height: 92px;
  }
}
@media only screen and (max-width: 768px) {
  .hero__logo {
    width: 240px;
    height: 79px;
    margin: 0 auto 32px;
  }
}
.hero__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media only screen and (max-width: 768px) {
  .hero__logo-img {
    -o-object-position: center;
       object-position: center;
  }
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -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;
  margin-top: 181px;
  max-width: 100%;
}
@media only screen and (max-width: 1200px) {
  .hero__content {
    margin-top: 120px;
  }
}
@media only screen and (max-width: 992px) {
  .hero__content {
    margin-top: 80px;
    max-width: 720px;
  }
}
@media only screen and (max-width: 768px) {
  .hero__content {
    margin-top: 0;
    max-width: 100%;
  }
}
.hero__head {
  max-width: 630px;
}
@media only screen and (max-width: 992px) {
  .hero__head {
    max-width: 100%;
  }
}
.hero__title {
  margin: 0 0 16px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .hero__title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.5;
  }
}
.hero__subtitle {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #38B5E6;
}
@media only screen and (max-width: 768px) {
  .hero__subtitle {
    font-size: 24px;
    line-height: 1.4;
    max-width: 300px;
  }
}
.hero__footer {
  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;
  gap: 24px 40px;
  margin-top: 147px;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .hero__footer {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 992px) {
  .hero__footer {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .hero__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 32px;
  }
}
.hero__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  max-width: 735px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .hero__contacts {
    max-width: 100%;
  }
}
.hero__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .hero__contacts-item {
    font-size: 16px;
    line-height: 1.35;
  }
}
.hero__contacts-text, .hero__contacts-link {
  color: inherit;
  text-decoration: none;
}
.hero__contacts-link:hover {
  text-decoration: underline;
}
.hero__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  width: 14px;
  height: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.hero__icon-svg {
  display: block;
  width: 14px;
  height: 18px;
}

.why__title.section__title {
  text-transform: none;
}
.why__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.why__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 1200px) {
  .why__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 768px) {
  .why__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.why__item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 236px;
  padding: 40px 20px 38px;
  border: 1px solid #d4e3ed;
  border-radius: 3px;
  background-color: #333333;
  text-align: center;
}
.why__item:first-child .why__item-text {
  max-width: 160px;
}
.why__item:last-child .why__item-title {
  max-width: 160px;
}
.why__icon {
  display: block;
  width: 84px;
  height: 80px;
  margin-bottom: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.why__item-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
}
.why__item-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.21;
  color: #fff;
  max-width: 200px;
}

.product {
  position: relative;
  overflow: hidden;
}
.product__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#e8f4fa), color-stop(35%, #ffffff), color-stop(65%, #ffffff), to(#e8f4fa));
  background: linear-gradient(90deg, #e8f4fa 0%, #ffffff 35%, #ffffff 65%, #e8f4fa 100%);
}
@media only screen and (max-width: 768px) {
  .product__bg {
    background: -webkit-gradient(linear, left top, left bottom, from(#e8f4fa), color-stop(22%, #ffffff), color-stop(78%, #ffffff), to(#e8f4fa));
    background: linear-gradient(180deg, #e8f4fa 0%, #ffffff 22%, #ffffff 78%, #e8f4fa 100%);
  }
}
.product .container {
  position: relative;
  z-index: 1;
}
.product__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 40px 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(31.45%, #FAFAFA), color-stop(63.69%, #E4E4E4));
  background: linear-gradient(180deg, #FAFAFA 31.45%, #E4E4E4 63.69%);
}
.product__title.section__title {
  padding: 0 0 40px;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #225f93;
  border-bottom: 1px solid #EDEDED;
}
@media only screen and (max-width: 768px) {
  .product__title.section__title {
    padding-bottom: 40px;
    font-size: 24px;
    line-height: 1.21;
    padding: 0 30px 40px;
  }
}
.product__divider {
  width: 100vw;
  height: 1px;
  margin: 0 0 40px;
  margin-left: calc(50% - 50vw);
  background-color: rgba(34, 95, 147, 0.2);
}
@media only screen and (max-width: 768px) {
  .product__divider {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}
.product__body {
  display: grid;
  grid-template-columns: minmax(0, 678px) minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 83px;
  padding-right: 40px;
}
@media only screen and (max-width: 992px) {
  .product__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .product__body {
    padding: 24px 24px 0;
    gap: 40px;
  }
}
.product__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product__img {
  width: 100%;
  max-width: 678px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .product__img {
    max-width: 326px;
  }
}
.product__info {
  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-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 614px;
  margin-top: 60px;
}
@media only screen and (max-width: 992px) {
  .product__info {
    max-width: 100%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .product__info {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
}
.product__head {
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .product__head {
    margin-bottom: 0;
  }
}
.product__label {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.21;
  text-transform: uppercase;
  color: #333333;
}
@media only screen and (max-width: 768px) {
  .product__label {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.22;
  }
}
.product__name {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 47px;
  margin: 0;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.22;
  color: #38B5E6;
  background: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 768px) {
  .product__name {
    min-height: 37px;
    font-size: 24px;
    line-height: 1.21;
    margin-bottom: 16px;
  }
}
.product__button {
  background-color: #225F93;
}
.product__button:hover {
  background-color: #225F93;
}
.product__text {
  margin: 0 0 64px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a1a1a;
}
@media only screen and (max-width: 768px) {
  .product__text {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.35;
  }
}

section.section.advantages .advantages__title.section__title {
  color: #38B5E6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  position: relative;
}
section.section.advantages .advantages__title.section__title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-image: url("./img/advantages-deco.png");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transform: translate(100%, -100%);
      -ms-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
}
@media screen and (max-width: 768px) {
  section.section.advantages .advantages__title.section__title::after {
    top: 30px;
    right: 50%;
    -webkit-transform: translate(50%, -100%);
        -ms-transform: translate(50%, -100%);
            transform: translate(50%, -100%);
  }
}

.advantages {
  position: relative;
  padding: 80px 0;
  color: #ffffff;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .advantages {
    padding: 40px 0;
  }
}
.advantages__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1B1B1B;
  background-image: url("./img/bckg-2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  background-size: 1400px auto;
}
@media only screen and (max-width: 768px) {
  .advantages__bg {
    background-image: none;
  }
}
.advantages__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.advantages__title.section__title {
  margin-bottom: 80px;
  color: #38B5E6;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .advantages__title.section__title {
    margin-bottom: 40px;
    padding: 50px 30px 0;
  }
}
.advantages__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .advantages__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px 24px 32px;
  border-radius: 3px;
  background-color: #2A2A2A;
}
.advantages__item-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
}
.advantages__item-img {
  width: 100%;
  max-width: 439px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.advantages__item-title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #38B5E6;
}
@media only screen and (max-width: 768px) {
  .advantages__item-title {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.4;
  }
}
.advantages__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .advantages__features {
    gap: 16px;
  }
}
.advantages__feature {
  position: relative;
  padding-left: 31px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .advantages__feature {
    padding-left: 28px;
    font-size: 1.4rem;
    line-height: 1.21;
  }
}
.advantages__feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4V16M4 10H16' stroke='%2338B5E6' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.page-wrapper_landing .main > section:not(:last-child) {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .page-wrapper_landing .main > section:not(:last-child) {
    margin-bottom: 40px;
  }
}
/* loader */
.spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    background: #FFF;
    box-shadow: -24px 0 #FFF, 24px 0 #FFF;
    box-sizing: border-box;
    animation: shadowPulse 2s linear infinite;
}

@keyframes shadowPulse {
    33% {
        background: #FFF;
        box-shadow: -24px 0 #37b4e6, 24px 0 #FFF;
    }
    66% {
        background: #37b4e6;
        box-shadow: -24px 0 #FFF, 24px 0 #FFF;
    }
    100% {
        background: #FFF;
        box-shadow: -24px 0 #FFF, 24px 0 #37b4e6;
    }
}

.spinner-container {
    z-index: 10000 !important;
    position: fixed;
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.spinner-container span.spinner {
    position: relative;
    top: 50%;
}

.openModal {
    cursor: pointer;
}

@media screen and (min-width: 993px) {
    .footer__content > div {
        white-space: nowrap;
    }
}
