@charset "UTF-8";
/* MEDIA QUERY NANAGER
----------------------*/
/*
0 - 600px       Phone
600 - 900px     Tablet portrait
900 - 1200px    Tablet landscape
[1200-1800]     Normal state
1800px +        Big desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
/* Сentering
----------------------*/
/* Fluid Typography
----------------------*/
.fade-right {
  transition: all 0.8s;
  opacity: 0;
  transform: translateX(10rem); }
  .fade-right.appear {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s; }

.fade-left {
  transition: all 0.8s;
  opacity: 0;
  transform: translateX(-10rem); }
  .fade-left.appear {
    opacity: 1;
    transform: none; }
    .fade-left.appear:nth-child(1) {
      transition-delay: 0.1s; }
    .fade-left.appear:nth-child(2) {
      transition-delay: 0.2s; }
    .fade-left.appear:nth-child(3) {
      transition-delay: 0.3s; }
    .fade-left.appear:nth-child(4) {
      transition-delay: 0.4s; }
    .fade-left.appear:nth-child(5) {
      transition-delay: 0.5s; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }

body {
  box-sizing: border-box; }

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?t6kg6g");
  src: url("../fonts/icomoon.eot?t6kg6g#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?t6kg6g") format("truetype"), url("../fonts/icomoon.woff?t6kg6g") format("woff"), url("../fonts/icomoon.svg?t6kg6g#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^='icon-'],
[class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-fb:before {
  content: '\e903'; }

.icon-map:before {
  content: '\e904'; }

.icon-phone-service:before {
  content: '\e905'; }

.icon-support:before {
  content: '\e906'; }

.icon-yt:before {
  content: '\e907'; }

.icon-arrow:before {
  content: '\e900'; }

.icon-phone:before {
  content: '\e901'; }

.icon-plus:before {
  content: '\e902'; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #001f52; }
  body.mobile-active {
    overflow: hidden; }

.heading-primary,
.heading-secondary {
  line-height: 1.25em; }
  .heading-primary,
  .heading-secondary {
    font-size: 26px; }
    @media screen and (min-width: 320px) {
      .heading-primary,
      .heading-secondary {
        font-size: calc( 26px + 18 * ((100vw - 320px) / 1480)); } }
    @media screen and (min-width: 1800px) {
      .heading-primary,
      .heading-secondary {
        font-size: 44px; } }

.heading-primary {
  color: #00358d; }

.heading-secondary {
  color: #00c1ff;
  margin-bottom: 0.5em; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-weight: 400;
  color: #00358d; }

p {
  line-height: 1.5em; }
  p {
    font-size: 14px; }
    @media screen and (min-width: 320px) {
      p {
        font-size: calc( 14px + 4 * ((100vw - 320px) / 1480)); } }
    @media screen and (min-width: 1800px) {
      p {
        font-size: 18px; } }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-sm {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-md {
  margin-bottom: 4rem !important; }

.u-margin-bottom-bg {
  margin-bottom: 8rem !important; }

.u-margin-top-bg {
  margin-top: 8rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.btn, .btn:link, .btn:visited {
  font-size: 2rem;
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  text-decoration: none;
  padding: 0.85em 3em;
  display: inline-block;
  transition: all 0.2s;
  background-color: #00c1ff;
  color: #fff;
  border: none;
  cursor: pointer; }
  @media only screen and (min-width: 56.25em) {
    .btn, .btn:link, .btn:visited {
      padding-top: 1.1em;
      padding-bottom: 1.1em; } }

.btn:hover {
  background-color: #00358d; }

.btn:active, .btn:focus {
  outline: none; }

.icon-block {
  margin-bottom: 2em; }
  .icon-block span {
    font-size: 26px; }
    @media screen and (min-width: 320px) {
      .icon-block span {
        font-size: calc( 26px + 14 * ((100vw - 320px) / 1480)); } }
    @media screen and (min-width: 1800px) {
      .icon-block span {
        font-size: 40px; } }
  .icon-block--blue-dark span {
    color: #001f52; }
  .icon-block--cyan span {
    color: #00c1ff; }

.form__group:not(:last-child) {
  margin-bottom: 2rem; }

.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all 0.3s; }
  .form__input::-webkit-input-placeholder {
    color: #001f52; }
  .form__input:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1); }

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 0.7rem;
  margin-left: 2rem;
  display: block;
  transition: all 0.3s; }

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem); }

.form__radio-group {
  width: 49%;
  display: inline-block; }

.form__radio-input {
  display: none; }

.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 4.5rem; }

.form__radio-button {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -0.4rem; }
  .form__radio-button::after {
    content: "";
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s; }

.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1; }

.logo {
  display: inline-block;
  text-decoration: none; }
  .logo--short .logo__img {
    width: 1.55rem; }
    @media only screen and (min-width: 37.5em) {
      .logo--short .logo__img {
        width: 2rem; } }
    @media only screen and (min-width: 56.25em) {
      .logo--short .logo__img {
        width: 3rem; } }
    @media only screen and (min-width: 75em) {
      .logo--short .logo__img {
        width: 4rem; } }
  @media only screen and (min-width: 56.25em) {
    .logo--long {
      display: none; } }
  .logo--long .logo__img {
    width: 8.7rem; }
  .logo__img {
    display: block;
    max-width: 100%;
    height: auto; }

.phone {
  text-decoration: none;
  font: normal 500 1.6rem / 1.7 'Fira Sans Extra Condensed', sans-serif;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #00c1ff; }
  .phone:hover {
    color: #00358d; }
  .phone--white {
    color: #fff; }
  .phone::before {
    font-family: 'icomoon';
    content: '\e901';
    font-size: 2rem; }

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
  opacity: 0;
  visibility: hidden; }
  .popup__content {
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #fff;
    opacity: 0; }
  .popup__header {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (min-width: 75em) {
      .popup__header {
        padding-right: 4rem;
        padding-left: 4rem; } }
  .popup__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    height: calc(100% - 69px);
    overflow-y: auto; }
    @media only screen and (min-width: 56.25em) {
      .popup__body {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        max-width: 130rem;
        margin: 0 auto;
        height: calc(90vh - 10rem); } }
    @media only screen and (min-width: 75em) {
      .popup__body {
        gap: 5rem;
        padding: 4rem; } }
    @media only screen and (min-width: 112.5em) {
      .popup__body {
        gap: 15rem; } }
  @media only screen and (min-width: 56.25em) {
    .popup__right {
      flex: 1 0 50%; } }
  @media only screen and (min-width: 75em) {
    .popup__right {
      flex-basis: auto; } }
  .popup__logo {
    width: 4rem;
    display: none; }
    @media only screen and (min-width: 56.25em) {
      .popup__logo {
        display: block; } }
    .popup__logo img {
      max-width: 100%;
      display: block;
      height: auto; }
  .popup__title, .popup__subtitle {
    line-height: 1.2; }
    .popup__title, .popup__subtitle {
      font-size: 26px; }
      @media screen and (min-width: 320px) {
        .popup__title, .popup__subtitle {
          font-size: calc( 26px + 18 * ((100vw - 320px) / 1480)); } }
      @media screen and (min-width: 1800px) {
        .popup__title, .popup__subtitle {
          font-size: 44px; } }
  .popup__subtitle {
    color: #00c1ff; }
  .popup__text {
    line-height: 2rem;
    margin-top: 1.5em; }
    @media only screen and (min-width: 56.25em) {
      .popup__text {
        line-height: 2.4rem; } }
    .popup__text a {
      color: #001f52;
      text-decoration: underline; }
      .popup__text a:hover {
        color: #00c1ff; }
  .popup__img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 50rem;
    max-height: 30rem;
    object-fit: cover; }
    @media only screen and (min-width: 56.25em) {
      .popup__img {
        max-height: 50rem; } }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup:target .popup__content {
    opacity: 1; }
  .popup__close {
    margin-left: auto; }
    .popup__close:link, .popup__close:visited {
      font-size: 2.7rem;
      color: #001f52;
      text-decoration: none;
      transition: all 0.2s;
      line-height: 1; }
      @media only screen and (min-width: 56.25em) {
        .popup__close:link, .popup__close:visited {
          font-size: 3rem; } }
      @media only screen and (min-width: 75em) {
        .popup__close:link, .popup__close:visited {
          font-size: 4rem; } }
      @media only screen and (min-width: 112.5em) {
        .popup__close:link, .popup__close:visited {
          font-size: 5.6rem; } }
    .popup__close:hover .icon-plus {
      color: #00358d; }
    .popup__close .icon-plus {
      color: #00c1ff;
      transform: rotate(-45deg);
      display: inline-block; }

.request {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem; }
  .request:hover .request__ico {
    background-color: #00358d; }
  .request:hover .request__text {
    color: #00358d; }
  @media only screen and (min-width: 56.25em) {
    .request--mobile {
      display: none; } }
  .request--desktop {
    display: none; }
    @media only screen and (min-width: 56.25em) {
      .request--desktop {
        display: flex; } }
  @media only screen and (min-width: 37.5em) {
    .request--short .request__ico {
      color: #00c1ff;
      font-size: 3rem;
      background-color: transparent;
      width: auto;
      height: auto;
      line-height: 1; } }
  @media only screen and (min-width: 56.25em) {
    .request--short .request__ico {
      font-size: 4rem; } }
  @media only screen and (min-width: 75em) {
    .request--short .request__ico {
      font-size: 5rem; } }
  @media only screen and (min-width: 112.5em) {
    .request--short .request__ico {
      font-size: 5.6rem; } }
  @media only screen and (min-width: 37.5em) {
    .request--short .request__text {
      display: none; } }
  .request__ico {
    color: #fff;
    font-size: 1.2rem;
    background-color: #00c1ff;
    width: 2.2rem;
    height: 2.2rem;
    line-height: 2.2rem;
    display: grid;
    place-items: center; }
  .request__text {
    font: normal 500 1.6rem / 1.7 'Fira Sans Extra Condensed', sans-serif;
    color: #00c1ff; }

.copyright {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-size: 2rem;
  line-height: 1.6;
  color: #6e7b83;
  text-align: center; }
  @media only screen and (min-width: 37.5em) {
    .copyright {
      text-align: left; } }
  .copyright span {
    display: block;
    color: #211c1d; }
    @media only screen and (min-width: 37.5em) {
      .copyright span {
        display: inline-block; } }

.social {
  list-style-type: none;
  display: flex;
  gap: 1.5rem; }
  .social__link {
    display: grid;
    place-items: center;
    text-decoration: none;
    width: 5rem;
    height: 5rem;
    box-shadow: 0 0.3125rem 1.25rem 0 rgba(0, 137, 208, 0.2);
    background-color: #e0eaf2;
    transition: all 0.3s ease-out;
    color: #00358d;
    border-radius: 0.5rem; }
    @media only screen and (min-width: 56.25em) {
      .social__link {
        width: 5.4rem;
        height: 5.4rem; } }
    .social__link:hover {
      transform: scale(1.05); }
    .social__link--fb {
      font-size: 2.5rem; }
      .social__link--fb:hover {
        background: #3b5998;
        color: #fff; }
    .social__link--yt {
      font-size: 1.75rem; }
      .social__link--yt:hover {
        background: #c4302b;
        color: #fff; }

.circle {
  display: inline-block;
  height: 66vw;
  width: 66vw;
  max-width: 44.6rem;
  max-height: 44.6rem;
  background: url("../images/intro-man.png") no-repeat center top;
  background-size: contain; }

.swiper {
  width: 100%; }

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 25rem;
  height: auto; }
  @media only screen and (min-width: 56.25em) {
    .swiper-slide {
      width: 53rem;
      height: 40rem; } }
  .swiper-slide img {
    display: block;
    width: 100%; }

@media only screen and (min-width: 56.25em) {
  .swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)); } }

@media only screen and (min-width: 56.25em) {
  .swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)); } }

.swiper-button-prev,
.swiper-button-next {
  top: 5rem;
  margin-top: 0;
  display: none; }
  @media only screen and (min-width: 56.25em) {
    .swiper-button-prev,
    .swiper-button-next {
      display: block; } }
  .swiper-button-prev:hover::after,
  .swiper-button-next:hover::after {
    color: #00c1ff; }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 5rem;
    color: #00358d; }

.swiper-button-prev {
  left: 0; }
  @media only screen and (max-width: 899px) {
    .swiper-button-prev {
      display: none !important; } }

.swiper-button-next {
  right: 0; }

.swiper-pagination {
  top: 15rem; }
  @media only screen and (min-width: 56.25em) {
    .swiper-pagination {
      display: none; } }

.row {
  margin: 0 auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  max-width: calc(132.4rem + 3rem);
  width: 100%; }
  @media only screen and (min-width: 56.25em) {
    .row {
      padding-right: 3rem;
      padding-left: 3rem;
      max-width: calc(132.4rem + 6rem); } }
  .row--logo {
    max-width: calc(178rem + 3rem); }
    @media only screen and (min-width: 56.25em) {
      .row--logo {
        max-width: calc(178rem + 6rem); } }
  .row--intro {
    max-width: calc(192rem + 1.5rem);
    padding-right: 0; }
    @media only screen and (min-width: 56.25em) {
      .row--intro {
        padding-right: 1.5rem;
        max-width: calc(192rem + 3rem); } }
  .row--smart-home {
    padding-right: 0;
    padding-left: 0;
    max-width: 192rem; }
  .row--footer {
    max-width: calc(144rem + 1.5rem); }
    @media only screen and (min-width: 56.25em) {
      .row--footer {
        max-width: calc(144rem + 3rem); } }

.section {
  padding-top: 3rem;
  padding-bottom: 3rem; }
  @media only screen and (min-width: 56.25em) {
    .section {
      padding-top: 4rem;
      padding-bottom: 4rem; } }

.header {
  position: relative;
  height: 200vh;
  min-height: 124rem;
  z-index: 2; }
  @media only screen and (min-width: 37.5em) {
    .header {
      min-height: 120rem; } }
  @media only screen and (min-width: 56.25em) {
    .header {
      min-height: 170rem; } }
  @media only screen and (min-width: 112.5em) {
    .header {
      min-height: 180rem; } }
  .header:not(.scroll) .intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; }
    .header:not(.scroll) .intro-first {
      z-index: 1; }

.intro-first,
.intro-second {
  height: 100vh;
  min-height: 62rem; }
  @media only screen and (min-width: 37.5em) {
    .intro-first,
    .intro-second {
      min-height: 60rem; } }
  @media only screen and (min-width: 56.25em) {
    .intro-first,
    .intro-second {
      min-height: 85rem; } }
  @media only screen and (min-width: 112.5em) {
    .intro-first,
    .intro-second {
      min-height: 90rem; } }

.navigation {
  padding: 2rem 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background-color: #fff;
  /* FUNCTIONALITY
    ------------------------*/
  /* ICON
    ------------------------*/ }
  @media only screen and (min-width: 56.25em) {
    .navigation {
      padding: 3rem 0 0; } }
  .navigation .row {
    display: flex;
    align-items: center;
    gap: 3rem; }
  .navigation__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    position: relative;
    margin-left: auto;
    z-index: 2000;
    cursor: pointer; }
    @media only screen and (min-width: 56.25em) {
      .navigation__button {
        display: none; } }
  .navigation__box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #00b1f2;
    background: linear-gradient(90deg, #00b1f2 0%, #00368e 100%);
    padding-top: 10rem;
    height: 100%; }
    @media only screen and (min-width: 56.25em) {
      .navigation__box {
        background: transparent;
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        padding-top: 0;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 3rem; } }
  .navigation__nav {
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1500;
    opacity: 0;
    width: 0; }
    @media only screen and (min-width: 56.25em) {
      .navigation__nav {
        position: relative;
        height: auto;
        top: auto;
        right: auto;
        z-index: 1;
        opacity: 1;
        width: auto;
        margin-left: auto; } }
  .navigation__group {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 3rem; }
    @media only screen and (min-width: 56.25em) {
      .navigation__group {
        display: none; } }
  .navigation__list {
    list-style-type: none;
    text-align: right;
    width: 100%;
    background: url("../images/nav-bgr.png") no-repeat right center;
    position: relative; }
    @media only screen and (min-width: 56.25em) {
      .navigation__list {
        background: none;
        width: auto;
        display: flex;
        align-items: center;
        gap: 3rem;
        margin-right: 1rem; } }
    @media only screen and (min-width: 75em) {
      .navigation__list {
        gap: 4rem;
        margin-right: 4rem; } }
    .navigation__list::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 5rem;
      height: 100%;
      background: linear-gradient(90deg, rgba(0, 177, 242, 0) 0%, #00368e 100%); }
      @media only screen and (min-width: 56.25em) {
        .navigation__list::after {
          content: normal; } }
  .navigation__item {
    margin: 1rem; }
    @media only screen and (min-width: 56.25em) {
      .navigation__item {
        margin: 0; } }
  .navigation__link:link, .navigation__link:visited {
    display: inline-block;
    font-size: 2.4rem;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    padding: 0.75rem 4rem;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase; }
    @media only screen and (min-width: 56.25em) {
      .navigation__link:link, .navigation__link:visited {
        font: normal 500 1.6rem / 1.7 'Fira Sans Extra Condensed', sans-serif;
        color: #001f52;
        padding: 0; } }
  .navigation__link:hover {
    transform: translateX(-1rem); }
    @media only screen and (min-width: 56.25em) {
      .navigation__link:hover {
        transform: none;
        color: #00c1ff; } }
  .navigation__group-link:link, .navigation__group-link:visited {
    color: #fff;
    text-decoration: none;
    font: normal 500 1.6rem / 1.7 'Fira Sans Extra Condensed', sans-serif;
    display: flex;
    align-items: center;
    gap: 1rem; }
  .navigation__group-link::before {
    font-family: 'icomoon' !important; }
  .navigation__group-link--phone::before {
    content: '\e901';
    font-size: 1.2em; }
  .navigation__group-link--request::before {
    content: '\e902';
    background-color: #fff;
    color: #001f52;
    font-size: 0.6em;
    font-weight: 600;
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-content: center; }
  .navigation__checkbox {
    display: none; }
  .navigation__menu-group {
    display: none; }
    @media only screen and (min-width: 56.25em) {
      .navigation__menu-group {
        display: flex;
        gap: 2rem; } }
  .navigation__checkbox:checked ~ .navigation__nav {
    width: 100%;
    opacity: 1; }
  .navigation__icon {
    position: relative; }
    .navigation__icon, .navigation__icon::before, .navigation__icon::after {
      width: 1.8rem;
      height: 2px;
      background-color: #00c1ff;
      display: inline-block; }
    .navigation__icon::before, .navigation__icon::after {
      content: '';
      position: absolute;
      left: 0; }
    .navigation__icon::before {
      top: -0.8rem; }
    .navigation__icon::after {
      top: 0.8rem; }
  .navigation__checkbox:checked + .navigation__button {
    position: fixed;
    top: 2rem;
    right: 1.3rem; }
  .navigation__checkbox:checked + .navigation__button .navigation__icon {
    background-color: transparent;
    width: 2.7rem; }
  .navigation__checkbox:checked + .navigation__button .navigation__icon::before {
    top: 0;
    transform: rotate(135deg);
    background-color: #fff;
    width: 2.7rem; }
  .navigation__checkbox:checked + .navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg);
    background-color: #fff;
    width: 2.7rem; }

.footer {
  background-color: #f6faff;
  padding-top: 15rem;
  margin-top: 20rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 2; }
  @media only screen and (min-width: 75em) {
    .footer {
      padding-top: 20rem;
      margin-top: 30rem; } }
  .footer ul {
    list-style: none; }
  .footer__contact {
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1rem 3rem 0 rgba(0, 137, 208, 0.1);
    border: solid 0.1rem rgba(0, 193, 255, 0.1);
    background-color: #fff;
    background-image: linear-gradient(to bottom, #f6faff, rgba(255, 255, 255, 0)), linear-gradient(to bottom, #fff, #fff);
    z-index: 2;
    max-width: 144rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    margin-top: -37rem; }
    @media only screen and (min-width: 37.5em) {
      .footer__contact {
        flex-direction: row; } }
    @media only screen and (min-width: 75em) {
      .footer__contact {
        margin-left: auto;
        margin-right: auto; } }
  .footer__contact-item {
    flex: 1;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .footer__contact-item:not(:last-child) {
      border-bottom: 1px solid rgba(0, 193, 255, 0.1); }
      @media only screen and (min-width: 37.5em) {
        .footer__contact-item:not(:last-child) {
          border-bottom: 0;
          border-right: 1px solid rgba(0, 193, 255, 0.1); } }
  .footer__contact-img {
    display: block;
    margin-bottom: 3rem; }
  .footer__contact-ico {
    font-size: 3.5rem;
    color: #00c1ff;
    display: block;
    margin-bottom: 0.75em; }
    @media only screen and (min-width: 75em) {
      .footer__contact-ico {
        font-size: 4rem; } }
    @media only screen and (min-width: 112.5em) {
      .footer__contact-ico {
        font-size: 4.8rem; } }
  .footer__contact-title {
    font-weight: 300;
    color: #211c1d;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2; }
    .footer__contact-title {
      font-size: 16px; }
      @media screen and (min-width: 320px) {
        .footer__contact-title {
          font-size: calc( 16px + 8 * ((100vw - 320px) / 1480)); } }
      @media screen and (min-width: 1800px) {
        .footer__contact-title {
          font-size: 24px; } }
  .footer__menu {
    margin: 3rem 0; }
    @media only screen and (min-width: 56.25em) {
      .footer__menu {
        margin-top: 5rem;
        margin-bottom: 5rem; } }
    @media only screen and (min-width: 75em) {
      .footer__menu {
        margin-bottom: 7rem; } }
  .footer__contact-link {
    display: block;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00358d;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    margin-top: auto; }
    @media only screen and (min-width: 56.25em) {
      .footer__contact-link {
        font-size: 3.2rem; } }
    .footer__contact-link:hover {
      text-decoration: underline; }
  .footer__list-level-1 {
    display: grid;
    gap: 3rem; }
    @media only screen and (min-width: 37.5em) {
      .footer__list-level-1 {
        grid-template-columns: repeat(2, 1fr); } }
    @media only screen and (min-width: 56.25em) {
      .footer__list-level-1 {
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 4rem;
        grid-column-gap: 10rem; } }
    @media only screen and (min-width: 75em) {
      .footer__list-level-1 {
        grid-template-columns: repeat(6, 1fr);
        grid-column-gap: 5rem; } }
    .footer__list-level-1 li:last-child > ul > li:last-child a {
      color: #00c1ff;
      text-decoration: underline; }
      .footer__list-level-1 li:last-child > ul > li:last-child a:hover {
        color: #01328e; }
  .footer__nav-title {
    font-size: 2.4rem;
    color: #00358d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    position: relative; }
    @media only screen and (min-width: 37.5em) {
      .footer__nav-title {
        pointer-events: none;
        border-bottom: 0 !important; } }
    .footer__nav-title::after {
      font-family: 'icomoon';
      font-size: 0.7rem;
      font-weight: 600;
      content: '\e900';
      color: #00c1ff;
      transition: transform 0.3s; }
      @media only screen and (min-width: 37.5em) {
        .footer__nav-title::after {
          content: normal; } }
    @media only screen and (min-width: 37.5em) {
      .footer__nav-title {
        cursor: auto; } }
    .footer__nav-title--active {
      border-bottom: 0.5rem Solid #00c1ff; }
      .footer__nav-title--active::after {
        transform: rotate(-180deg); }
      .footer__nav-title--active ul {
        display: block; }
  .footer__list-level-2 {
    display: none;
    margin-top: 1.5rem; }
    @media only screen and (min-width: 37.5em) {
      .footer__list-level-2 {
        display: block !important; } }
    .footer__list-level-2 a {
      font-family: 'Fira Sans Extra Condensed', sans-serif;
      font-size: 1.8rem;
      line-height: 2.22;
      color: #6e7b83;
      text-decoration: none; }
      .footer__list-level-2 a:hover {
        color: #00c1ff;
        text-decoration: underline; }
  .footer__address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem; }
    @media only screen and (min-width: 56.25em) {
      .footer__address {
        flex-direction: row;
        gap: 3rem; } }
    .footer__address .social {
      margin-top: 2rem; }
      @media only screen and (min-width: 56.25em) {
        .footer__address .social {
          margin-top: 0;
          margin-left: auto; } }
  .footer__logo {
    width: 18.6rem;
    display: block; }
    @media only screen and (min-width: 56.25em) {
      .footer__logo {
        width: 20.5rem; } }
    .footer__logo img {
      max-width: 100%;
      height: auto;
      display: block; }
  .footer address {
    font-style: normal;
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: #211c1d; }
  .footer .copyright {
    margin-top: 3.5rem;
    text-align: center; }
    @media only screen and (min-width: 56.25em) {
      .footer .copyright {
        text-align: left; } }

@media only screen and (min-width: 37.5em) {
  .main {
    padding-top: 10rem; } }

@media only screen and (min-width: 56.25em) {
  .main {
    padding-top: 15rem; } }

.intro-first {
  position: relative;
  background-color: #fff;
  padding-top: 5rem; }
  .intro-first.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; }
  .intro-first .circle {
    position: absolute;
    left: 50%;
    top: 12rem;
    transform: translateX(-50%);
    z-index: 1; }
    @media only screen and (min-width: 37.5em) {
      .intro-first .circle {
        top: 16rem; } }
    @media only screen and (min-width: 56.25em) {
      .intro-first .circle {
        top: 20rem; } }
    @media only screen and (min-width: 75em) {
      .intro-first .circle {
        top: 24rem; } }
    @media only screen and (min-width: 112.5em) {
      .intro-first .circle {
        top: 28rem; } }
    .intro-first .circle::after {
      content: '';
      display: block;
      background: url(../images/name-arrow-sm.png) no-repeat;
      background-size: cover;
      width: 9.4rem;
      height: 11.1rem;
      position: absolute;
      right: 0;
      bottom: 0; }
      @media only screen and (min-width: 75em) {
        .intro-first .circle::after {
          background: url(../images/name-arrow-lg.png) no-repeat;
          background-size: contain;
          width: 19rem;
          height: 12rem; } }
  .intro-first__header {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 1.5rem; }
    @media only screen and (min-width: 56.25em) {
      .intro-first__header {
        padding-top: 3rem;
        justify-content: flex-end; } }
  .intro-first__box {
    position: relative;
    overflow: hidden; }
    @media only screen and (min-width: 56.25em) {
      .intro-first__box {
        margin-top: 0; } }
    @media only screen and (min-width: 56.25em) {
      .intro-first__box::before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        background-color: #f0f6f8;
        height: 90%;
        width: 100%; } }
  .intro-first__content {
    display: flex;
    align-items: center;
    position: relative;
    flex-wrap: wrap-reverse; }
    @media only screen and (min-width: 56.25em) {
      .intro-first__content {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 2rem; } }
    @media only screen and (min-width: 75em) {
      .intro-first__content {
        gap: 5rem; } }
    @media only screen and (min-width: 112.5em) {
      .intro-first__content {
        transform: translateY(-5rem);
        gap: 7rem;
        align-items: flex-end; } }
  .intro-first__text {
    flex: 1 0 auto; }
    @media only screen and (min-width: 75em) {
      .intro-first__text {
        flex-grow: 0;
        margin-left: auto; } }
    .intro-first__text .logo {
      display: none; }
      @media only screen and (min-width: 56.25em) {
        .intro-first__text .logo {
          display: block;
          margin-bottom: 5em; } }
      @media only screen and (min-width: 75em) {
        .intro-first__text .logo {
          margin-bottom: 12em; } }
      @media only screen and (min-width: 112.5em) {
        .intro-first__text .logo {
          margin-bottom: 18em; } }
      @media only screen and (min-width: 56.25em) {
        .intro-first__text .logo__img {
          width: 16rem; } }
      @media only screen and (min-width: 75em) {
        .intro-first__text .logo__img {
          width: 20rem; } }
      @media only screen and (min-width: 112.5em) {
        .intro-first__text .logo__img {
          width: 22.2rem; } }
  .intro-first__image {
    position: relative;
    text-align: right; }
    @media only screen and (min-width: 56.25em) {
      .intro-first__image {
        top: 2rem; } }
    @media only screen and (min-width: 112.5em) {
      .intro-first__image {
        top: 7rem; } }
  .intro-first__img {
    display: inline-block;
    width: 140%;
    height: auto; }
    @media only screen and (min-width: 37.5em) {
      .intro-first__img {
        width: 120%; } }
    @media only screen and (min-width: 56.25em) {
      .intro-first__img {
        width: 130%; } }
    @media only screen and (min-width: 75em) {
      .intro-first__img {
        width: 100%;
        max-width: 100%; } }
    @media only screen and (min-width: 112.5em) {
      .intro-first__img {
        max-width: 100%;
        width: 97%; } }
  .intro-first__title, .intro-first__subtitle {
    font-weight: 400;
    line-height: 4rem; }
    .intro-first__title, .intro-first__subtitle {
      font-size: 36px; }
      @media screen and (min-width: 320px) {
        .intro-first__title, .intro-first__subtitle {
          font-size: calc( 36px + 20 * ((100vw - 320px) / 1480)); } }
      @media screen and (min-width: 1800px) {
        .intro-first__title, .intro-first__subtitle {
          font-size: 56px; } }
    @media only screen and (min-width: 75em) {
      .intro-first__title, .intro-first__subtitle {
        line-height: 5.6rem; } }
  .intro-first__title {
    color: #001f52;
    margin-bottom: 0.25em; }
  .intro-first__subtitle {
    color: #00c1ff; }
  .intro-first__ico {
    margin-bottom: 2rem; }
    @media only screen and (min-width: 56.25em) {
      .intro-first__ico {
        margin-bottom: 3rem; } }
    .intro-first__ico .icon-plus {
      font-size: 3.9rem;
      color: #00c1ff; }
      @media only screen and (min-width: 56.25em) {
        .intro-first__ico .icon-plus {
          font-size: 4.5rem; } }
      @media only screen and (min-width: 75em) {
        .intro-first__ico .icon-plus {
          font-size: 5rem; } }
      @media only screen and (min-width: 112.5em) {
        .intro-first__ico .icon-plus {
          font-size: 5.6rem; } }
  .intro-first__arrow {
    color: #00c1ff;
    text-align: center;
    font-size: 3.5rem;
    display: none; }
    @media only screen and (min-width: 56.25em) {
      .intro-first__arrow {
        display: block; } }
    .intro-first__arrow a {
      display: inline-block;
      transition: transform 0.2s ease-in-out; }
      .intro-first__arrow a:hover {
        transform: translateY(1rem); }
    .intro-first__arrow .icon-arrow {
      display: inline-block;
      cursor: pointer; }
      .intro-first__arrow .icon-arrow:hover {
        color: #00358d; }
  .intro-first__btn-wrap {
    margin-top: 2rem; }
    @media only screen and (min-width: 56.25em) {
      .intro-first__btn-wrap {
        margin-top: 10rem; } }
    @media only screen and (min-width: 75em) {
      .intro-first__btn-wrap {
        margin-bottom: -2rem;
        margin-top: 6rem; } }
    @media only screen and (min-width: 112.5em) {
      .intro-first__btn-wrap {
        margin-top: 14.6rem;
        margin-bottom: -4rem; } }
  .intro-first__btn {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1em 1.5em;
    background-color: #fecd03;
    text-decoration: none;
    color: #001f52;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease-in; }
    @media only screen and (min-width: 37.5em) {
      .intro-first__btn {
        font-size: 1.5rem; } }
    @media only screen and (min-width: 75em) {
      .intro-first__btn {
        font-size: 1.75rem; } }
    .intro-first__btn:hover {
      background-color: #001f52;
      color: #fecd03; }
    .intro-first__btn .icon-plus {
      font-weight: 700; }

.intro-second {
  background-color: #fff;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  z-index: 2;
  background: url("../images/intro-second-bgr.png") no-repeat top right #fff;
  background-position: right 7rem;
  background-size: 70%; }
  @media only screen and (min-width: 37.5em) {
    .intro-second {
      background-position: center top; } }
  @media only screen and (min-width: 56.25em) {
    .intro-second {
      padding-top: 3rem; } }
  @media only screen and (min-width: 75em) {
    .intro-second {
      padding-top: 4.4rem;
      background-position-x: calc(50vw - 15rem);
      background-size: inherit; } }
  .intro-second.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%; }
  .intro-second .circle {
    position: absolute;
    left: 50%;
    top: 12rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 193, 255, 0.35);
    overflow: hidden; }
    @media only screen and (min-width: 37.5em) {
      .intro-second .circle {
        top: 16rem; } }
    @media only screen and (min-width: 56.25em) {
      .intro-second .circle {
        top: 20rem; } }
    @media only screen and (min-width: 75em) {
      .intro-second .circle {
        top: 24rem; } }
    @media only screen and (min-width: 112.5em) {
      .intro-second .circle {
        top: 28rem; } }
  .intro-second__header .row {
    display: flex;
    align-items: center; }
  .intro-second__header .logo {
    margin-right: 6rem; }
    @media only screen and (min-width: 37.5em) {
      .intro-second__header .logo {
        margin-right: 3.25rem; } }
  .intro-second__header .navigation {
    margin-left: auto; }
  .intro-second__content {
    margin-top: 25%; }
    @media only screen and (min-width: 56.25em) {
      .intro-second__content {
        margin-top: auto;
        margin-bottom: 4rem; } }
    .intro-second__content .row {
      overflow: hidden; }
  .intro-second__image {
    text-align: center;
    width: 170vw; }
    @media only screen and (min-width: 56.25em) {
      .intro-second__image {
        width: 100%;
        margin-bottom: -4rem; } }
    .intro-second__image img {
      max-width: 100%;
      height: auto;
      display: block; }
  .intro-second__text {
    width: 70%;
    text-align: left;
    font-size: 1.8rem;
    line-height: 2.4rem;
    letter-spacing: 0.4px;
    margin-left: auto; }
    @media only screen and (min-width: 37.5em) {
      .intro-second__text {
        font-size: 2rem;
        line-height: 2.8rem;
        width: 50%; } }
    @media only screen and (min-width: 56.25em) {
      .intro-second__text {
        font-size: 2.2rem;
        line-height: 3rem; } }
    @media only screen and (min-width: 75em) {
      .intro-second__text {
        font-size: 2.4rem;
        line-height: 3.2rem; } }

.description__content {
  overflow: hidden; }
  @media only screen and (min-width: 56.25em) {
    .description__content {
      max-width: 50%;
      margin-left: auto; } }

@media only screen and (min-width: 56.25em) {
  .benefits {
    padding-top: 10rem; } }

.benefits__list {
  display: grid;
  grid-template-columns: repeat(2, 14rem);
  gap: 3.5rem 2rem; }
  @media only screen and (min-width: 37.5em) {
    .benefits__list {
      grid-template-columns: repeat(2, 16rem);
      gap: 3.5rem 4rem; } }
  @media only screen and (min-width: 56.25em) {
    .benefits__list {
      grid-template-columns: repeat(3, 19rem);
      gap: 5rem 4rem; } }
  @media only screen and (min-width: 75em) {
    .benefits__list {
      gap: 7rem 4rem; } }
  @media only screen and (min-width: 112.5em) {
    .benefits__list {
      gap: 9rem 4rem; } }

.benefits__item {
  position: relative;
  cursor: pointer;
  padding-right: 2rem; }

.benefits__link {
  text-decoration: none; }

.benefits__link:hover .benefits__title {
  color: #00c1ff; }

.benefits__link:hover .benefits__ico {
  border-color: #00358d; }
  .benefits__link:hover .benefits__ico span {
    color: #00358d; }

.benefits__link:hover .benefits__image {
  transform: scale(1.1); }

.benefits__img-box {
  position: relative;
  margin-bottom: 0.5rem;
  width: 100%;
  height: auto;
  overflow: hidden; }
  @media only screen and (min-width: 56.25em) {
    .benefits__img-box {
      margin-bottom: 1.5rem; } }

.benefits__ico {
  position: absolute;
  right: 0;
  top: 6rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid #00c1ff;
  background-color: #fff;
  display: grid;
  place-items: center;
  z-index: 1; }
  @media only screen and (min-width: 37.5em) {
    .benefits__ico {
      top: 8rem; } }
  @media only screen and (min-width: 56.25em) {
    .benefits__ico {
      top: 11rem; } }
  .benefits__ico span {
    font-size: 1.5rem;
    color: #00c1ff; }

.benefits__image {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s; }

.benefits__title {
  font-family: 'Fira Sans Extra Condensed', sans-serif;
  font-weight: 500;
  color: #00358d;
  line-height: 2.2rem;
  position: relative;
  padding-left: 1.5rem; }
  .benefits__title {
    font-size: 18px; }
    @media screen and (min-width: 320px) {
      .benefits__title {
        font-size: calc( 18px + 6 * ((100vw - 320px) / 1480)); } }
    @media screen and (min-width: 1800px) {
      .benefits__title {
        font-size: 24px; } }
  @media only screen and (min-width: 56.25em) {
    .benefits__title {
      padding-left: 0; } }
  .benefits__title::before {
    content: '+';
    position: absolute;
    top: 0;
    left: 0; }
    @media only screen and (min-width: 56.25em) {
      .benefits__title::before {
        left: -1.5rem; } }
  @media only screen and (min-width: 37.5em) {
    .benefits__title {
      line-height: 2.4rem; } }
  @media only screen and (min-width: 56.25em) {
    .benefits__title {
      line-height: 2.6rem; } }
  @media only screen and (min-width: 75em) {
    .benefits__title {
      line-height: 2.8rem; } }
  @media only screen and (min-width: 112.5em) {
    .benefits__title {
      line-height: 3.2rem; } }

@media only screen and (min-width: 75em) {
  .smart-home {
    margin-top: 11rem; } }

.smart-home .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; }
  @media only screen and (min-width: 56.25em) {
    .smart-home .group {
      flex-direction: row;
      justify-content: flex-end;
      align-items: stretch;
      margin-left: auto;
      margin-right: 0; } }
  @media only screen and (min-width: 112.5em) {
    .smart-home .group {
      max-width: 165rem; } }

.smart-home .heading-secondary {
  margin-bottom: 0.3em; }

@media only screen and (min-width: 56.25em) {
  .smart-home .icon-block {
    margin-bottom: 10rem; } }

@media only screen and (min-width: 75em) {
  .smart-home .icon-block {
    margin-bottom: 23rem; } }

.smart-home__text {
  position: relative;
  z-index: 4;
  margin-bottom: -5rem; }
  @media only screen and (min-width: 56.25em) {
    .smart-home__text {
      max-width: 50rem;
      margin-bottom: 10rem;
      margin-right: -10rem; } }
  @media only screen and (min-width: 75em) {
    .smart-home__text {
      margin-right: -10rem; } }

.smart-home__windows {
  flex-grow: 1;
  background: url(../images/smart-home-bgr.jpg) no-repeat left center;
  width: 100%;
  background-size: cover;
  position: relative; }
  @media only screen and (min-width: 75em) {
    .smart-home__windows {
      max-width: 118rem; } }
  @media only screen and (min-width: 112.5em) {
    .smart-home__windows {
      max-width: 128rem; } }
  .smart-home__windows::after {
    content: '';
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.3) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.smart-home__points-list {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%; }

.smart-home__link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #00358d;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8rem;
  font-family: 'Fira Sans Extra Condensed', sans-serif; }
  @media only screen and (min-width: 75em) {
    .smart-home__link {
      font-size: 1.6rem;
      gap: 2rem; } }
  .smart-home__link:hover {
    color: #00c1ff;
    transition: none; }
    .smart-home__link:hover .icon-plus {
      transition: none;
      border-color: #00c1ff;
      color: #00c1ff; }

.smart-home__points-item {
  max-width: 20rem; }
  .smart-home__points-item .icon-plus::before {
    transition-delay: 0s; }
  .smart-home__points-item--first {
    margin-top: 14rem;
    margin-left: 10%; }
    @media only screen and (min-width: 75em) {
      .smart-home__points-item--first {
        margin-top: 20rem;
        margin-left: 20%; } }
  .smart-home__points-item--second {
    margin-left: 30%;
    margin-top: 1rem; }
    @media only screen and (min-width: 56.25em) {
      .smart-home__points-item--second {
        margin-left: 50%;
        margin-top: 3rem; } }
    @media only screen and (min-width: 75em) {
      .smart-home__points-item--second {
        margin-left: 40%; } }
  .smart-home__points-item--third {
    margin-left: 13rem;
    margin-top: 5rem;
    margin-bottom: 5rem; }
    @media only screen and (min-width: 56.25em) {
      .smart-home__points-item--third {
        margin-top: 4rem;
        margin-bottom: 0; } }
    @media only screen and (min-width: 75em) {
      .smart-home__points-item--third {
        margin-left: 22rem;
        margin-top: 10rem; } }
  .smart-home__points-item--fourth {
    text-align: right;
    margin-bottom: 3rem;
    margin-left: 14rem; }
    @media only screen and (min-width: 37.5em) {
      .smart-home__points-item--fourth {
        position: absolute;
        top: 0;
        right: 10%;
        margin: 0; } }
    @media only screen and (min-width: 56.25em) {
      .smart-home__points-item--fourth {
        right: 5%; } }
    @media only screen and (min-width: 75em) {
      .smart-home__points-item--fourth {
        top: -5rem; } }
    .smart-home__points-item--fourth .icon-plus {
      order: 2; }

.smart-home__points-ico {
  font-size: 2rem;
  width: 3.8rem;
  height: 3.8rem;
  border: 1px solid #00358d;
  background-color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0; }

.section-request {
  text-align: center;
  background: url(../images/request-bgr.png) no-repeat center top;
  margin-top: 10rem;
  background-size: 160%;
  padding: 70% 0 4rem;
  position: relative; }
  @media only screen and (min-width: 37.5em) {
    .section-request {
      padding-top: 40rem;
      background-size: 85rem; } }
  @media only screen and (min-width: 56.25em) {
    .section-request {
      padding-top: 50rem;
      background-size: 100rem; } }
  @media only screen and (min-width: 75em) {
    .section-request {
      margin-top: 20rem;
      padding-top: 50rem; } }
  .section-request__title {
    margin-bottom: 3rem;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    position: relative; }
    @media only screen and (min-width: 37.5em) {
      .section-request__title {
        margin-bottom: 5rem; } }
    @media only screen and (min-width: 75em) {
      .section-request__title {
        margin-bottom: 4rem; } }
    .section-request__title::before {
      content: '';
      display: block;
      background: url(../images/request-question.png) no-repeat;
      background-size: contain;
      width: 15rem;
      height: 2.2rem;
      position: absolute;
      top: -20rem;
      right: 0; }
      @media only screen and (min-width: 37.5em) {
        .section-request__title::before {
          width: 18rem;
          height: 3rem; } }
      @media only screen and (min-width: 56.25em) {
        .section-request__title::before {
          width: 28rem;
          height: 4rem;
          top: -25rem; } }
      @media only screen and (min-width: 75em) {
        .section-request__title::before {
          right: 0;
          top: -29rem; } }
  .section-request__subtitle {
    max-width: 89rem;
    line-height: 2.4rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -1.5rem; }
    .section-request__subtitle {
      font-size: 18px; }
      @media screen and (min-width: 320px) {
        .section-request__subtitle {
          font-size: calc( 18px + 6 * ((100vw - 320px) / 1480)); } }
      @media screen and (min-width: 1800px) {
        .section-request__subtitle {
          font-size: 24px; } }
    @media only screen and (min-width: 37.5em) {
      .section-request__subtitle {
        line-height: 2.6rem; } }
    @media only screen and (min-width: 56.25em) {
      .section-request__subtitle {
        line-height: 2.8rem;
        margin-bottom: 3rem; } }
    @media only screen and (min-width: 75em) {
      .section-request__subtitle {
        line-height: 3rem; } }
    @media only screen and (min-width: 112.5em) {
      .section-request__subtitle {
        line-height: 3.2rem; } }
    .section-request__subtitle::after {
      content: '';
      display: block;
      width: 6.2rem;
      height: 6rem;
      background: url(../images/request-arrow.png) no-repeat;
      background-size: cover;
      margin-left: auto;
      margin-right: auto;
      margin-top: 1.5rem;
      z-index: 1;
      position: relative;
      transform: translateX(3rem); }
      @media only screen and (min-width: 56.25em) {
        .section-request__subtitle::after {
          margin-top: -0.5rem;
          transform: none; } }

.statistics {
  padding: 10rem 0; }
  .statistics__list {
    column-count: 2; }
    @media only screen and (min-width: 75em) {
      .statistics__list {
        column-count: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10rem; } }
  .statistics__item {
    display: inline-block;
    padding: 0 1rem;
    width: calc(100% - 2rem); }
    .statistics__item:not(:first-child) {
      margin-top: 10rem; }
      @media only screen and (min-width: 75em) {
        .statistics__item:not(:first-child) {
          margin-top: 0;
          width: auto;
          padding: 0; } }
  .statistics__title {
    font-family: 'Fira Sans', sans-serif;
    line-height: 4.8rem;
    margin-bottom: 0.1em; }
    .statistics__title {
      font-size: 36px; }
      @media screen and (min-width: 320px) {
        .statistics__title {
          font-size: calc( 36px + 20 * ((100vw - 320px) / 1480)); } }
      @media screen and (min-width: 1800px) {
        .statistics__title {
          font-size: 56px; } }
  .statistics__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #00c1ff;
    line-height: 2.4rem; }
    .statistics__subtitle {
      font-size: 18px; }
      @media screen and (min-width: 320px) {
        .statistics__subtitle {
          font-size: calc( 18px + 6 * ((100vw - 320px) / 1480)); } }
      @media screen and (min-width: 1800px) {
        .statistics__subtitle {
          font-size: 24px; } }
    @media only screen and (min-width: 37.5em) {
      .statistics__subtitle {
        line-height: 2.6rem; } }
    @media only screen and (min-width: 56.25em) {
      .statistics__subtitle {
        line-height: 2.8rem; } }
    @media only screen and (min-width: 75em) {
      .statistics__subtitle {
        line-height: 3rem; } }
    @media only screen and (min-width: 112.5em) {
      .statistics__subtitle {
        line-height: 3.2rem; } }
  .statistics__text {
    font-size: 14px; }
    @media screen and (min-width: 320px) {
      .statistics__text {
        font-size: calc( 14px + 4 * ((100vw - 320px) / 1480)); } }
    @media screen and (min-width: 1800px) {
      .statistics__text {
        font-size: 18px; } }
  .statistics__text a {
    color: #001f52; }
    .statistics__text a:hover {
      color: #00c1ff; }
  .statistics .icon-block {
    margin-top: 3.5rem;
    margin-bottom: 3rem; }
    .statistics .icon-block .icon-plus {
      font-size: 2.8rem; }

:root {
  --swiper-theme-color: #00358d; }

.slider__block {
  overflow: hidden;
  margin-top: 3rem; }
  @media only screen and (min-width: 56.25em) {
    .slider__block {
      margin-top: 12rem; } }

.slider__text-box {
  display: flex;
  gap: 3rem;
  padding-top: 5rem;
  position: relative; }
  @media only screen and (min-width: 56.25em) {
    .slider__text-box {
      padding: 0 10rem 0;
      margin: 6rem auto 0;
      justify-content: center;
      width: 70rem; } }
  .slider__text-box .swiper-pagination {
    top: 2rem; }

.slider__text-item {
  font-size: 4rem; }
  .slider__text-item:not(.active) {
    display: none; }

.slider__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5em; }
  @media only screen and (min-width: 56.25em) {
    .slider__title {
      font-size: 2.4rem; } }

.slider__text {
  font-size: 1.4rem;
  line-height: 2rem; }
  @media only screen and (min-width: 56.25em) {
    .slider__text {
      font-size: 1.8rem;
      line-height: 2.4rem; } }

.slider__link {
  color: #001f52; }
  .slider__link:hover {
    color: #00c1ff; }

.slider .icon-block {
  margin-bottom: 1em; }
  @media only screen and (min-width: 56.25em) {
    .slider .icon-block {
      margin-bottom: 6rem; } }
  .slider .icon-block span {
    font-size: 2.6rem;
    color: #00358d; }
    @media only screen and (min-width: 56.25em) {
      .slider .icon-block span {
        font-size: 4rem; } }
