/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
:root {
  --font-family: "Onest", sans-serif;
  --content-width: calc(1170 / 16 * 1rem);
  --container-offset: calc(35 / 16 * 1rem);
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --scroll-bar-width: 0px;
  --dark-bg-color: #1D1B1F;
  --light-bg-color: #E7ECF9;
  --accent-bg-color: #D9E1F8;
  --dark-text-color: #1A1A1A;
  --light-text-color: #F3F6FF;
  --accent-text-color: #335FFF;
  --accent-hover-color: #1547E1;
  --light-line-color: #8A859F;
  --accent-line-color: rgba(51, 95, 255, 0.3);
  --swiper-theme-color: var(--accent-text-color);
  --swiper-pagination-bullet-inactive-color: #c6cad6;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-size: calc(6 / 16 * 1rem);
  --swiper-pagination-bullet-horizontal-gap: calc(3 / 16 * 1rem);
  --swiper-navigation-size: calc(35 / 16 * 1rem);
}
@media (max-width: 42.5rem) {
  :root {
    --container-offset: calc(15 / 16 * 1rem);
  }
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/../fonts/onest-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/../fonts/onest-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/../fonts/onest-semibold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/../fonts/onest-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
*,
*::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%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--light-bg-color);
  -webkit-tap-highlight-color: transparent;
}

.page__body {
  margin: 0;
  min-width: 22.5rem;
  min-height: 100%;
  font-size: 1rem;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
}

.site-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

.main {
  margin-top: 5.625rem;
}

header,
section,
footer {
  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: -0.0625rem;
  border: 0;
  padding: 0;
  width: 0.0625rem;
  height: 0.0625rem;
  clip: rect(0 0 0 0);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}
.container__slim {
  width: 100%;
  padding: 0 2.5rem;
}
@media (max-width: 60rem) {
  .container__slim {
    padding: 0 1.875rem;
  }
}
@media (max-width: 42.5rem) {
  .container__slim {
    padding: 0 0.9375rem;
  }
}

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

.button {
  display: inline-block;
  font-size: 1rem;
  line-height: 150%;
  color: white;
  background: var(--accent-text-color);
  padding: 1rem;
  min-width: 15rem;
  border-radius: 0.625rem;
  -webkit-transition: background 0.3s ease 0s, color 0.3s ease 0s, border 0.3s ease 0s;
  transition: background 0.3s ease 0s, color 0.3s ease 0s, border 0.3s ease 0s;
  border: 0.0625rem solid transparent;
  cursor: pointer;
}
@media (any-hover: hover) {
  .button:hover {
    background: var(--accent-hover-color);
  }
}
.button:focus {
  outline: none;
  background: var(--accent-hover-color);
  color: var(--light-text-color);
}
.button--min {
  padding: 0.4375rem 1.5625rem;
  min-width: 0;
}
.button--light {
  border: 0.0625rem solid var(--accent-text-color);
  color: var(--accent-text-color);
  background: transparent;
}
@media (any-hover: hover) {
  .button--light:hover {
    color: white;
    border: 0.0625rem solid transparent;
    background: #335FFF;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.logo svg {
  fill: var(--dark-text-color);
  width: 9.8125rem;
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
}
@media (max-width: 60rem) {
  .logo svg {
    width: 8.0625rem;
    height: 1.375rem;
  }
}
@media (max-width: 42.5rem) {
  .logo svg {
    width: 6.8125rem;
    height: 1.1875rem;
  }
}
.logo svg:not(:last-child) {
  margin-bottom: 1.6875rem;
}
@media (max-width: 42.5rem) {
  .logo svg:not(:last-child) {
    margin-bottom: 1.125rem;
  }
}
.logo__desc {
  font-size: 0.875rem;
  line-height: 130%;
  max-width: 20.625rem;
  color: var(--light-text-color);
}
@media (max-width: 42.5rem) {
  .logo__desc {
    font-size: 0.75rem;
    max-width: 80%;
  }
}

.favicon {
  width: 1.875rem;
  height: 1.875rem;
  fill: none;
}

.burger {
  --burger-width: 83px;
  --burger-height: 31px;
  --burger-line-height: 5px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: var(--light-line-color);
  background: transparent;
  cursor: pointer;
}
@media (any-hover: hover) {
  .burger:hover:not(.burger--active)::before, .burger:hover:not(.burger--active)::after {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .burger:hover:not(.burger--active) .burger__line {
    -webkit-transform: scale(1) translateY(-50%) translateX(0);
    -ms-transform: scale(1) translateY(-50%) translateX(0);
    transform: scale(1) translateY(-50%) translateX(0);
  }
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background: currentColor;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.burger::before {
  top: 0;
}
.burger::after {
  top: calc(100% - var(--burger-line-height));
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background: currentColor;
  -webkit-transform: scale(1) translateY(-50%) translateX(0.625rem);
  -ms-transform: scale(1) translateY(-50%) translateX(0.625rem);
  transform: scale(1) translateY(-50%) translateX(0.625rem);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.burger--active::before, .burger--active::after {
  width: 1.0625rem;
  height: 0.09375rem;
  top: 50%;
  left: calc(50% - 0.625rem);
  color: var(--accent-text-color);
}
@media (max-width: 42.5rem) {
  .burger--active::before, .burger--active::after {
    left: calc(50% - 0.4375rem);
  }
}
.burger--active::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger--active::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger--active .burger__line {
  -webkit-transform: scale(0) translateY(-50%) translateX(0);
  -ms-transform: scale(0) translateY(-50%) translateX(0);
  transform: scale(0) translateY(-50%) translateX(0);
  color: var(--accent-text-color);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 42.5rem) {
  .burger {
    --burger-width: 62px;
    --burger-height: 23px;
    --burger-line-height: 4px;
  }
}
.heading {
  padding: 5rem 0 5rem;
  max-width: 57.5rem;
}
@media (max-width: 42.5rem) {
  .heading {
    padding: 3.75rem 0;
  }
}

.title {
  margin: 0;
  font-weight: 600;
  color: var(--dark-text-color);
}
.title__gradient {
  background: -webkit-gradient(linear, left top, right top, from(var(--light-text-color)), color-stop(34%, var(--accent-text-color)));
  background: linear-gradient(90deg, var(--light-text-color) 0%, var(--accent-text-color) 34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1.title,
h2.title {
  font-size: 3rem;
  line-height: 108%;
}
@media (max-width: 60rem) {
  h1.title,
  h2.title {
    font-size: 2.75rem;
    line-height: 118%;
  }
}
@media (max-width: 42.5rem) {
  h1.title,
  h2.title {
    font-size: 1.875rem;
    line-height: 123%;
  }
}
h1.title .title__accent,
h2.title .title__accent {
  color: var(--accent-text-color);
}
h1.title:not(:last-child),
h2.title:not(:last-child) {
  margin-bottom: 0.9375rem;
}
@media (max-width: 42.5rem) {
  h1.title:not(:last-child),
  h2.title:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}

h3.title {
  font-size: 2rem;
  line-height: 100%;
}
@media (max-width: 60rem) {
  h3.title {
    font-size: 1.5rem;
    line-height: 108%;
  }
}
h3.title:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 42.5rem) {
  h3.title:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}

.subtitle {
  margin: 0;
  font-size: 1.25rem;
  line-height: 130%;
  color: var(--dark-text-color);
}
@media (max-width: 60rem) {
  .subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 42.5rem) {
  .subtitle {
    font-size: 0.875rem;
  }
}
.subtitle:not(:last-child) {
  margin-bottom: 0.625rem;
}

.text {
  margin: 0;
  font-size: 1rem;
  line-height: 130%;
  color: var(--dark-text-color);
}
@media (max-width: 60rem) {
  .text {
    font-size: 0.875rem;
  }
}
.text:not(:last-child) {
  margin-bottom: 0.9375rem;
}
@media (max-width: 60rem) {
  .text:not(:last-child) {
    margin-bottom: 0.625rem;
  }
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--accent-text-color);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.link svg {
  margin-left: 0.5rem;
  margin-top: -0.125rem;
}
@media (any-hover: hover) {
  .link:hover {
    color: var(--accent-hover-color);
  }
  .link:hover svg {
    -webkit-transform: translateX(0.3125rem);
    -ms-transform: translateX(0.3125rem);
    transform: translateX(0.3125rem);
    stroke: var(--accent-hover-color);
  }
}

.arrow-circle-light {
  width: 2.1875rem;
  height: 2.1875rem;
  fill: transparent;
  stroke: var(--accent-text-color);
  -webkit-transition: stroke 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: stroke 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: stroke 0.3s ease 0s, transform 0.3s ease 0s;
  transition: stroke 0.3s ease 0s, transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.625rem;
  background: var(--light-bg-color);
  border: 0.0625rem solid var(--accent-line-color);
  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;
}
.icon svg {
  width: 1.625rem;
  height: 1.625rem;
  fill: var(--accent-text-color);
}

.emoji {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 3.5rem;
  height: 6.375rem;
  width: 6.375rem;
  display: inline-block;
  text-align: center;
  border: 0.0625rem solid var(--light-line-color);
  border-radius: 50%;
}
.emoji::before {
  content: "";
  display: block;
  width: 100%;
  margin-top: 20%;
}

.grid,
.grid > *,
.grid__cell > *:not(:last-child) {
  position: relative;
}
.grid::before,
.grid > *::before,
.grid__cell > *:not(:last-child)::before {
  content: "";
  display: block;
  bottom: 0;
  position: absolute;
  left: calc((100vw - var(--content-width)) / 2 * -1 - 0.0625rem);
  width: 100vw;
  border-bottom: 0.0625rem solid var(--light-line-color);
  pointer-events: none;
}
@media (max-width: 77.5rem) {
  .grid::before,
  .grid > *::before,
  .grid__cell > *:not(:last-child)::before {
    left: calc(var(--container-offset) * -1 - 0.0625rem);
  }
}

.grid {
  border-right: 0.0625rem solid var(--light-line-color);
  border-left: 0.0625rem solid var(--light-line-color);
}
.grid::before {
  top: 0;
  bottom: auto;
}
.grid__cell > *:not(:last-child) {
  border-right: 0.0625rem solid var(--light-line-color);
}
@media (max-width: 42.5rem) {
  .grid__cell > *:not(:last-child) {
    border-right: 0;
  }
}

.bg-line-top {
  position: relative;
}
.bg-line-top::before {
  content: "";
  display: block;
  top: 0;
  position: absolute;
  left: calc((100vw - var(--content-width)) / 2 * -1 - 0.0625rem);
  width: 100vw;
  border-bottom: 0.0625rem solid var(--light-line-color);
  pointer-events: none;
}
@media (max-width: 77.5rem) {
  .bg-line-top::before {
    left: calc(var(--container-offset) * -1 - 0.0625rem);
  }
}
.bg-line-bottom {
  position: relative;
}
.bg-line-bottom::after {
  content: "";
  display: block;
  bottom: 0;
  position: absolute;
  left: calc((100vw - var(--content-width)) / 2 * -1 - 0.0625rem);
  width: 100vw;
  border-bottom: 0.0625rem solid var(--light-line-color);
  pointer-events: none;
}
@media (max-width: 77.5rem) {
  .bg-line-bottom::after {
    left: calc(var(--container-offset) * -1 - 0.0625rem);
  }
}
.bg-line-center {
  position: relative;
}
.bg-line-center::before {
  content: "";
  display: block;
  top: 0;
  left: 50%;
  height: 100%;
  position: absolute;
  border-right: 0.0625rem solid var(--light-line-color);
  pointer-events: none;
}

.container__slim .bg-line-bottom::after {
  -webkit-transform: translateX(-2.5rem);
  -ms-transform: translateX(-2.5rem);
  transform: translateX(-2.5rem);
}
@media (max-width: 60rem) {
  .container__slim .bg-line-bottom::after {
    -webkit-transform: translateX(-1.875rem);
    -ms-transform: translateX(-1.875rem);
    transform: translateX(-1.875rem);
  }
}
@media (max-width: 42.5rem) {
  .container__slim .bg-line-bottom::after {
    -webkit-transform: translateX(-0.9375rem);
    -ms-transform: translateX(-0.9375rem);
    transform: translateX(-0.9375rem);
  }
}
.container__slim .bg-line-top::before {
  -webkit-transform: translateX(-2.5rem);
  -ms-transform: translateX(-2.5rem);
  transform: translateX(-2.5rem);
}
@media (max-width: 60rem) {
  .container__slim .bg-line-top::before {
    -webkit-transform: translateX(-1.875rem);
    -ms-transform: translateX(-1.875rem);
    transform: translateX(-1.875rem);
  }
}
@media (max-width: 42.5rem) {
  .container__slim .bg-line-top::before {
    -webkit-transform: translateX(-0.9375rem);
    -ms-transform: translateX(-0.9375rem);
    transform: translateX(-0.9375rem);
  }
}

.swiper--navigation {
  overflow: visible;
  overflow-x: clip;
}
.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
}
.swiper-button-prev, .swiper-button-next {
  top: calc(var(--swiper-navigation-size) * -1 / 2 + -1.875rem);
  width: var(--swiper-navigation-size);
}
@media (any-hover: hover) {
  .swiper-button-prev:hover, .swiper-button-next:hover {
    color: var(--accent-hover-color);
  }
  .swiper-button-prev:hover svg, .swiper-button-next:hover svg {
    stroke: var(--accent-hover-color);
  }
}
.swiper-button-prev {
  left: 0;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.swiper-button-next {
  right: auto;
  left: 3.75rem;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -1.75rem;
}

.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: var(--light-text-color);
  color: var(--dark-text-color);
  padding: 1rem;
  min-height: 3.5rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  line-height: 171%;
  width: 100%;
}
.input::-webkit-input-placeholder {
  color: var(--light-line-color);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.input::-moz-placeholder {
  color: var(--light-line-color);
  -moz-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.input:-ms-input-placeholder {
  color: var(--light-line-color);
  -ms-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.input::-ms-input-placeholder {
  color: var(--light-line-color);
  -ms-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.input::placeholder {
  color: var(--light-line-color);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.input::-webkit-search-decoration, .input::-webkit-search-cancel-button, .input::-webkit-search-results-button, .input::-webkit-search-results-decoration {
  display: none;
}
@media (any-hover: hover) {
  .input:hover {
    outline: none;
  }
  .input:hover::-webkit-input-placeholder {
    color: var(--dark-text-color);
  }
  .input:hover::-moz-placeholder {
    color: var(--dark-text-color);
  }
  .input:hover:-ms-input-placeholder {
    color: var(--dark-text-color);
  }
  .input:hover::-ms-input-placeholder {
    color: var(--dark-text-color);
  }
  .input:hover::placeholder {
    color: var(--dark-text-color);
  }
}
.input:focus {
  outline: none;
}
.input:focus::-webkit-input-placeholder {
  color: var(--dark-text-color);
}
.input:focus::-moz-placeholder {
  color: var(--dark-text-color);
}
.input:focus:-ms-input-placeholder {
  color: var(--dark-text-color);
}
.input:focus::-ms-input-placeholder {
  color: var(--dark-text-color);
}
.input:focus::placeholder {
  color: var(--dark-text-color);
}

.checkbox {
  position: relative;
}
.checkbox__input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  border: none !important;
}
.checkbox__input:checked + .checkbox__content::after {
  opacity: 1;
}
.checkbox__input:disabled + .checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}
.checkbox__content {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkbox__content::before {
  content: "";
  position: relative;
  left: 0;
  top: 0;
  border: none;
  width: 1.25rem;
  height: 1.25rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: var(--light-text-color);
  border-radius: 0.3125rem;
  margin-right: 0.4375rem;
}
.checkbox__content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9InBhdGgtMS1pbnNpZGUtMV8yMjFfNTQ2MiIgZmlsbD0id2hpdGUiPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTE0IDAuNzEzMTMzTDUuMDU3NDQgMTBMMCA0Ljc0NzgzTDAuNjg2Njk0IDQuMDM0N0w1LjA1NzQ0IDguNTczNzNMMTMuMzEzMyAwTDE0IDAuNzEzMTMzWiIvPgo8L21hc2s+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTQgMC43MTMxMzNMNS4wNTc0NCAxMEwwIDQuNzQ3ODNMMC42ODY2OTQgNC4wMzQ3TDUuMDU3NDQgOC41NzM3M0wxMy4zMTMzIDBMMTQgMC43MTMxMzNaIiBmaWxsPSIjMzM1RkZGIi8+CjxwYXRoIGQ9Ik0xNCAwLjcxMzEzM0wyMS4yMDMzIDcuNjQ5NDFMMjcuODgyNCAwLjcxMzEzNEwyMS4yMDMzIC02LjIyMzE0TDE0IDAuNzEzMTMzWk01LjA1NzQ0IDEwTC0yLjE0NTg5IDE2LjkzNjNMNS4wNTc0NCAyNC40MTdMMTIuMjYwOCAxNi45MzYzTDUuMDU3NDQgMTBaTTAgNC43NDc4M0wtNy4yMDMzNCAtMi4xODg0NEwtMTMuODgyNSA0Ljc0NzgzTC03LjIwMzM0IDExLjY4NDFMMCA0Ljc0NzgzWk0wLjY4NjY5NCA0LjAzNDdMNy44OTAwMyAtMi45MDE1OEwwLjY4NjY5NSAtMTAuMzgyM0wtNi41MTY2NCAtMi45MDE1OEwwLjY4NjY5NCA0LjAzNDdaTTUuMDU3NDQgOC41NzM3M0wtMi4xNDU5IDE1LjUxTDUuMDU3NDQgMjIuOTkwN0wxMi4yNjA4IDE1LjUxTDUuMDU3NDQgOC41NzM3M1pNMTMuMzEzMyAwTDIwLjUxNjYgLTYuOTM2MjdMMTMuMzEzMyAtMTQuNDE3TDYuMTA5OTcgLTYuOTM2MjdMMTMuMzEzMyAwWk02Ljc5NjY2IC02LjIyMzE0TC0yLjE0NTg5IDMuMDYzNzJMMTIuMjYwOCAxNi45MzYzTDIxLjIwMzMgNy42NDk0MUw2Ljc5NjY2IC02LjIyMzE0Wk0xMi4yNjA4IDMuMDYzNzJMNy4yMDMzNCAtMi4xODg0NEwtNy4yMDMzNCAxMS42ODQxTC0yLjE0NTg5IDE2LjkzNjNMMTIuMjYwOCAzLjA2MzcyWk03LjIwMzM0IDExLjY4NDFMNy44OTAwMyAxMC45NzFMLTYuNTE2NjQgLTIuOTAxNThMLTcuMjAzMzQgLTIuMTg4NDRMNy4yMDMzNCAxMS42ODQxWk0tNi41MTY2NSAxMC45NzFMLTIuMTQ1OSAxNS41MUwxMi4yNjA4IDEuNjM3NDZMNy44OTAwMyAtMi45MDE1OEwtNi41MTY2NSAxMC45NzFaTTEyLjI2MDggMTUuNTFMMjAuNTE2NiA2LjkzNjI3TDYuMTA5OTcgLTYuOTM2MjdMLTIuMTQ1ODkgMS42Mzc0NkwxMi4yNjA4IDE1LjUxWk02LjEwOTk3IDYuOTM2MjdMNi43OTY2NiA3LjY0OTQxTDIxLjIwMzMgLTYuMjIzMTRMMjAuNTE2NiAtNi45MzYyN0w2LjEwOTk3IDYuOTM2MjdaIiBmaWxsPSIjMzM1RkZGIiBtYXNrPSJ1cmwoI3BhdGgtMS1pbnNpZGUtMV8yMjFfNTQ2MikiLz4KPC9zdmc+Cg==");
  background-position: center;
  background-size: 0.875rem 0.625rem;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.checkbox__content {
  font-size: 0.875rem;
  line-height: 143%;
  color: var(--light-line-color);
}
.checkbox__link {
  color: inherit;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
@media (max-width: 42.5rem) {
  .form__body {
    margin-bottom: 1.875rem;
  }
}
.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 42.5rem) {
  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.form__row:not(:last-child) {
  margin-bottom: 1.25rem;
}
.form__row .form__label {
  max-width: 15.5rem;
}
@media (max-width: 42.5rem) {
  .form__row .form__label {
    max-width: 25.375rem;
  }
}
.form__row .form__label:not(:last-child) {
  margin-bottom: 0;
  margin-right: 1.5rem;
}
@media (max-width: 42.5rem) {
  .form__row .form__label:not(:last-child) {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
}
.form__label {
  width: 100%;
  max-width: 25.375rem;
}
.form__label:not(:last-child) {
  margin-bottom: 1.5rem;
}
.form__button {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.form__button:not(:last-child) {
  margin-bottom: 0.9375rem;
}
@media (max-width: 25rem) {
  .form__button {
    width: 100%;
  }
}
.form__link {
  color: inherit;
}
.form .just-validate-error-label {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: var(--accent-text-color) !important;
}

.tag {
  border: 0.0625rem solid var(--accent-line-color);
  border-radius: 0.625rem;
  padding: 0.625rem;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--dark-text-color);
}
.tag__accent {
  color: var(--accent-text-color);
}

.card {
  position: relative;
  width: 100%;
  border: 0.0625rem solid var(--accent-line-color);
  border-radius: 0.8125rem;
  background: var(--light-bg-color);
  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;
  padding: 2.25rem 1.625rem 1.625rem;
  max-width: 23.125rem;
}
@media (max-width: 60rem) {
  .card {
    padding: 1.625rem;
  }
}
.card--accent {
  background: var(--accent-bg-color);
}
.card:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.card__favicon:not(:last-child) {
  margin-bottom: 1.25rem;
}
.card__tag {
  background: var(--accent-bg-color);
}
.card__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(5rem, auto);
  grid-template-columns: 1fr minmax(5rem, auto);
}
.card__item:last-child .card__text {
  margin-bottom: 0;
}
.card__item .card__text:first-child {
  margin-right: 1.25rem;
}
.card__item .card__text:last-child {
  text-align: right;
}
.card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 130%;
}
.card__text:not(:last-child) {
  margin-bottom: 0.625rem;
}
.card__text--accent {
  color: var(--accent-text-color);
}
.card__text--pink {
  color: #FF8583;
}
.card__emoji {
  border-color: var(--accent-line-color);
  vertical-align: middle;
}
.card__title {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 108%;
  margin-bottom: 1.0625rem;
}
.card--min {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 1.0625rem 1.25rem;
  max-width: 21.5rem;
  text-align: right;
}
.card--min .card__emoji {
  font-size: 1.875rem;
  width: 3.125rem;
  height: 3.125rem;
  margin-right: 1.25rem;
}
.card--min .card__text:first-child {
  color: var(--light-line-color);
}
.card--large {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  max-width: 18.75rem;
}
.card--large .emoji {
  margin-bottom: 1.6875rem;
}

.map {
  width: 100%;
  height: 33.75rem;
}
@media (max-width: 42.5rem) {
  .map {
    height: 22.75rem;
  }
}
.map__marker {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: var(--light-text-color);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--light-bg-color);
  color: var(--light-text-color);
  height: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 100;
  -webkit-transition: background 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: background 0.3s ease 0s, border-color 0.3s ease 0s;
  border-bottom: 1px solid var(--light-line-color);
}
.header--dark:not(.menu--active) {
  background: var(--dark-bg-color);
  border-color: var(--accent-line-color);
}
.header--dark:not(.menu--active) .logo svg {
  fill: #ffffff;
}
.header--dark:not(.menu--active) .header__wrapper {
  border-color: var(--accent-line-color);
}
.header--dark:not(.menu--active) .header__wrapper.bg-line-center::before {
  border-color: var(--accent-line-color);
}
.header.menu--active .header__nav {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.header.menu--active .header__logo svg {
  fill: var(--dark-text-color);
}
.header.menu--active .nav__list,
.header.menu--active .nav .button {
  -webkit-animation: show 0.3s ease-in forwards 0.3s;
  animation: show 0.3s ease-in forwards 0.3s;
}
.header.menu--active .header__wrapper.bg-line-center::before {
  border-color: var(--accent-line-color);
}
.header__container {
  position: relative;
}
.header__wrapper {
  width: 100%;
  height: 100%;
  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;
  -webkit-transition: border-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-left: 1px solid var(--light-line-color);
}
.header__wrapper.bg-line-center::before {
  left: auto;
  right: 0;
  border-right: 1px solid var(--light-line-color);
}
@media (max-width: 90rem) {
  .header__wrapper.bg-line-center::before {
    right: 6.875rem;
  }
}
.header__logo {
  z-index: 50;
}
.header__bar {
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 90rem) and (max-width: 90rem) {
  .header__bar > *:not(:last-child) {
    margin-right: 1.25rem;
  }
}
@media (max-width: 90rem) and (max-width: 60rem) {
  .header__bar > *:not(:last-child) {
    margin-right: 1.875rem;
  }
}
@media (max-width: 90rem) and (max-width: 42.5rem) {
  .header__bar > *:not(:last-child) {
    margin-right: 3.125rem;
  }
}
@media (max-width: 25rem) {
  .header__bar .button {
    display: none;
  }
}
.header__burger {
  position: absolute;
  right: calc(var(--burger-width) * -1 + -1.4375rem);
}
@media (max-width: 90rem) {
  .header__burger {
    position: relative;
    right: calc(var(--burger-width) * -1 + 1.875rem);
  }
}
@media (max-width: 60rem) {
  .header__burger {
    right: calc(var(--burger-width) * -1 + 2.5rem);
  }
}
@media (max-width: 42.5rem) {
  .header__burger {
    right: -0.3125rem;
  }
}
.header .bg-line-top::before {
  border-color: var(--accent-line-color);
}
.header .bg-line-bottom::after {
  border-color: var(--accent-line-color);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--light-bg-color);
  z-index: 10;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  padding-top: 5.625rem;
  overflow: hidden;
}
.nav .bg-line-top::before {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.nav .button {
  display: none;
  min-width: 9.375rem;
  margin-top: auto;
  margin-bottom: auto;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 25rem) {
  .nav .button {
    display: block;
  }
}
.nav__container {
  height: 100%;
}
.nav__container::after {
  top: -0.0625rem;
  border-bottom: 0.0625rem solid rgba(138, 133, 159, 0.4);
  z-index: 100;
}
.nav__wrapper {
  height: 100%;
  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;
}
.nav__list {
  margin: 2.5rem 0 7.5rem 0;
  opacity: 0;
  visibility: hidden;
}
.nav__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.nav__link {
  font-weight: 600;
  font-size: 1rem;
  line-height: 150%;
  color: var(--dark-text-color);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .nav__link:hover {
    color: var(--light-line-color);
  }
}

@-webkit-keyframes show {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes show {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
.hero {
  background: var(--dark-bg-color);
  margin-top: -5.625rem;
}
.hero__container {
  position: relative;
}
.hero__wrapper {
  position: relative;
  padding-top: 5.625rem;
  border-left: 1px solid var(--accent-line-color);
}
.hero__wrapper.bg-line-center::before {
  left: auto;
  right: 0;
}
@media (max-width: 90rem) {
  .hero__wrapper.bg-line-center::before {
    right: 6.875rem;
  }
}
@media (max-width: 42.5rem) {
  .hero__wrapper.bg-line-center::before {
    display: none;
  }
}
.hero__title {
  padding: 3.75rem 0 3.75rem;
  min-height: 27.875rem;
  font-size: 3.625rem;
  line-height: 90%;
  max-width: 32.5rem;
  color: var(--light-text-color);
}
@media (max-width: 60rem) {
  .hero__title {
    min-height: 0;
    font-size: 3.125rem;
    line-height: 104%;
  }
}
@media (max-width: 25rem) {
  .hero__title {
    font-size: 2rem;
    line-height: 116%;
    padding: 2.5rem 0 0;
    margin-bottom: 1rem;
  }
  .hero__title.bg-line-bottom::after {
    display: none;
  }
}
.hero__content {
  padding: 2.25rem 0 3.75rem;
  min-height: 17.25rem;
}
@media (max-width: 60rem) {
  .hero__content {
    min-height: 0;
  }
}
@media (max-width: 25rem) {
  .hero__content {
    padding: 0;
  }
  .hero__content.bg-line-bottom::after {
    display: none;
  }
}
.hero__card {
  width: 60rem;
  height: 28.75rem;
  position: absolute;
  top: 13.75rem;
  right: 0;
  -webkit-transform: translateX(30%);
  -ms-transform: translateX(30%);
  transform: translateX(30%);
}
@media (max-width: 75rem) {
  .hero__card {
    width: 80%;
    height: 38.3333333333%;
    top: 18.75rem;
  }
}
@media (max-width: 60rem) {
  .hero__card {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    top: auto;
    right: auto;
    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: 100%;
    max-width: 60rem;
    height: auto;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
}
.hero__lottie {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero__lottie--desktop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 60rem) {
  .hero__lottie--desktop {
    display: none;
  }
}
.hero__lottie--mobile {
  display: none;
}
@media (max-width: 60rem) {
  .hero__lottie--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hero__text {
  margin: 0;
  font-size: 1rem;
  line-height: 130%;
  color: var(--light-text-color);
  max-width: 26.25rem;
}
.hero__text:not(:last-child) {
  margin-bottom: 1.8125rem;
}
@media (max-width: 25rem) {
  .hero__text:not(:last-child) {
    margin-bottom: 1.625rem;
  }
}
.hero__link:not(:last-child) {
  margin-bottom: 1.8125rem;
}
.hero__bottom {
  padding: 1.875rem 0 2.5rem;
  min-height: 13.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 60rem) {
  .hero__bottom {
    min-height: 0;
  }
}
@media (max-width: 42.5rem) {
  .hero__bottom {
    padding: 1.875rem 0;
  }
}
@media (max-width: 60rem) {
  .hero__bottom.bg-line-center::before {
    height: 0.0625rem;
    top: 0;
    left: calc(var(--container-offset) * -1 - 0.0625rem);
    width: 100vw;
    border-bottom: 0.0625rem solid var(--light-line-color);
    -webkit-transform: translateX(-1.875rem);
    -ms-transform: translateX(-1.875rem);
    transform: translateX(-1.875rem);
  }
}
@media (max-width: 42.5rem) {
  .hero__bottom.bg-line-center::before {
    -webkit-transform: translateX(-0.9375rem);
    -ms-transform: translateX(-0.9375rem);
    transform: translateX(-0.9375rem);
  }
}
.hero__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 130%;
  color: var(--light-line-color);
  max-width: 24.5625rem;
}
.hero__desc:not(:last-child) {
  margin-bottom: 1rem;
}
.hero__swiper {
  margin: 0 -2.4375rem;
  padding: 5rem 0 9.125rem;
}
@media (max-width: 90rem) {
  .hero__swiper {
    margin-right: 4.5rem;
  }
}
@media (max-width: 60rem) {
  .hero__swiper {
    margin: 0 -1.8125rem;
    margin-right: 5.0625rem;
    padding: 3.75rem 0 6.25rem;
  }
}
@media (max-width: 42.5rem) {
  .hero__swiper {
    margin: 0 -1.875rem 0 -0.875rem;
  }
}
@media (max-width: 25rem) {
  .hero__swiper {
    padding: 2.8125rem 0 5.625rem;
  }
}
.hero__swiper .swiper-pagination {
  bottom: 5rem;
}
@media (max-width: 60rem) {
  .hero__swiper .swiper-pagination {
    bottom: 3.125rem;
  }
}
.hero__swiper .swiper-slide {
  margin: auto;
}
.hero__logo {
  width: 100%;
  padding: 0 2.1875rem;
}
@media (max-width: 42.5rem) {
  .hero__logo {
    padding: 0 0.9375rem;
  }
}
.hero .bg-line-top::before, .hero .bg-line-center::before {
  border-color: var(--accent-line-color);
}
.hero .bg-line-bottom::after {
  border-color: var(--accent-line-color);
}

@media (max-width: 60rem) {
  .benefits {
    margin-bottom: 5rem;
  }
}
@media (max-width: 42.5rem) {
  .benefits {
    margin-bottom: 3.75rem;
  }
}
.benefits__title:not(:last-child) {
  margin-bottom: 0.375rem;
}
.benefits__services {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  border-left: 0.0625rem solid var(--light-line-color);
}
@media (max-width: 42.5rem) {
  .benefits__services {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.benefits__name {
  border-right: 0.0625rem solid var(--light-line-color);
  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;
  min-height: 10rem;
  padding: 1.875rem 0;
}
@media (max-width: 42.5rem) {
  .benefits__name {
    min-height: 8.75rem;
  }
}
@media (max-width: 42.5rem) {
  .benefits__name:nth-child(1), .benefits__name:nth-child(2) {
    border-bottom: 0.0625rem solid var(--light-line-color);
  }
}
.benefits__name:not(:last-child) {
  margin-bottom: 0;
}
.benefits__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 60rem) {
  .benefits__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.benefits__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4.375rem 1.25rem 3.75rem 0;
}
.benefits__item.bg-line-bottom::after {
  display: none;
}
@media (max-width: 60rem) {
  .benefits__item {
    padding: 3.125rem 0;
  }
  .benefits__item.bg-line-bottom::after {
    display: block;
  }
}
@media (max-width: 42.5rem) {
  .benefits__item {
    padding: 1.875rem 0;
  }
}
.benefits__item:nth-child(odd) {
  border-right: 0.0625rem solid var(--light-line-color);
}
@media (max-width: 60rem) {
  .benefits__item:nth-child(odd) {
    border-right: 0;
  }
}
.benefits__item:nth-child(even) {
  padding-left: 2.6875rem;
}
@media (max-width: 60rem) {
  .benefits__item:nth-child(even) {
    padding-left: 0;
  }
}
.benefits__emoji {
  margin-right: 1.5625rem;
}
@media (max-width: 60rem) {
  .benefits__emoji {
    margin-right: 1.25rem;
  }
}
.benefits__content {
  max-width: 23.75rem;
}
.offers {
  background: var(--accent-bg-color);
  overflow: inherit;
  padding-bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .offers {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 42.5rem) {
  .offers__heading {
    padding: 3.75rem 0 2.5rem;
  }
}
.offers__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 50rem) {
  .offers__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.offers__list {
  width: 100%;
  margin-right: 1.875rem;
  position: sticky;
  top: 0;
  max-width: 35.625rem;
}
@media (max-width: 50rem) {
  .offers__list {
    margin-right: 0;
    max-width: 100%;
  }
}
.offers__item {
  padding: 3.75rem 2.5rem;
  border: 0.0625rem solid var(--light-line-color);
  position: sticky;
  top: calc(var(--header-height) * 2);
  background: var(--accent-bg-color);
}
@media (max-width: 60rem) {
  .offers__item {
    padding: 1.875rem;
  }
}
.offers__item:not(:last-child) {
  border-bottom: none;
}
.offers h3.offers__title {
  max-width: 25rem;
}
@media (max-width: 60rem) {
  .offers h3.offers__title {
    max-width: 100%;
  }
}
.offers__text {
  max-width: 25rem;
}
@media (max-width: 60rem) {
  .offers__text {
    max-width: 100%;
  }
}
.offers__picture {
  position: sticky;
  top: calc(var(--header-height) * 2);
  margin-right: -19.5rem;
}
@media (max-width: 112.5rem) {
  .offers__picture {
    width: calc((100vw - var(--scroll-bar-width)) * 0.4904255319);
    height: calc((100vw - var(--scroll-bar-width)) * 0.3989361702);
    margin-right: calc((100vw - var(--scroll-bar-width) - var(--content-width)) / 2 * -1);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 90rem) {
  .offers__picture {
    width: calc((100vw - var(--scroll-bar-width)) * 0.4895833333);
    height: calc((100vw - var(--scroll-bar-width)) * 0.4326388889);
  }
}
@media (max-width: 77.5rem) {
  .offers__picture {
    margin-right: -2.1875rem;
  }
}
@media (max-width: 60rem) {
  .offers__picture {
    width: calc((100vw - var(--scroll-bar-width)) * 0.484375);
    height: calc((100vw - var(--scroll-bar-width)) * 0.534375);
  }
}
@media (max-width: 50rem) {
  .offers__picture {
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
    position: static;
  }
}
@media (max-width: 42.5rem) {
  .offers__picture {
    max-width: 100vw;
    width: calc(100% + 0.9375rem);
    height: 35rem;
    margin-right: -0.9375rem;
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 25rem) {
  .offers__picture {
    height: 25rem;
  }
}
.offers__image {
  -o-object-position: left;
  object-position: left;
  width: 100%;
  height: 100%;
}

.steps__container {
  margin-bottom: 5rem;
}
.steps__row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
}
@media (max-width: 50rem) {
  .steps__row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.steps__row:not(:last-child) .steps__col:first-child::before {
  height: calc(100% - 1.5rem);
}
.steps__row:not(:last-child) .steps__col:first-child::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.5rem;
  height: 0.3125rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOCIgaGVpZ2h0PSI1IiB2aWV3Qm94PSIwIDAgOCA1IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNC41IDMuNVYzSDMuNVYzLjVINC41Wk0zLjY0NjQ1IDQuMzUzNTVDMy44NDE3MSA0LjU0ODgyIDQuMTU4MjkgNC41NDg4MiA0LjM1MzU1IDQuMzUzNTVMNy41MzU1MyAxLjE3MTU3QzcuNzMwOCAwLjk3NjMxMSA3LjczMDggMC42NTk3MjggNy41MzU1MyAwLjQ2NDQ2NkM3LjM0MDI3IDAuMjY5MjA0IDcuMDIzNjkgMC4yNjkyMDQgNi44Mjg0MyAwLjQ2NDQ2Nkw0IDMuMjkyODlMMS4xNzE1NyAwLjQ2NDQ2NkMwLjk3NjMxMSAwLjI2OTIwNCAwLjY1OTcyOCAwLjI2OTIwNCAwLjQ2NDQ2NiAwLjQ2NDQ2NkMwLjI2OTIwNCAwLjY1OTcyOCAwLjI2OTIwNCAwLjk3NjMxMSAwLjQ2NDQ2NiAxLjE3MTU3TDMuNjQ2NDUgNC4zNTM1NVpNMy41IDMuNVY0SDQuNVYzLjVIMy41WiIgZmlsbD0iIzhBODU5RiIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  left: 2.96875rem;
  bottom: 1.375rem;
}
.steps__row:last-child .steps__col {
  padding: 5rem 0rem 0;
}
.steps__row:last-child .steps__col:first-child .steps__item:last-child {
  position: relative;
}
.steps__row:last-child .steps__col:first-child .steps__item:last-child::after {
  content: "";
  display: block;
  top: 0;
  left: 3rem;
  height: 100vh;
  position: absolute;
  border-right: 0.375rem solid var(--light-bg-color);
  pointer-events: none;
  z-index: -1;
}
.steps__col {
  position: relative;
  padding: 5rem 0rem;
}
.steps__col.bg-line-center::before {
  left: 3.1875rem;
  z-index: -10;
}
.steps__col:nth-child(even) {
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
@media (max-width: 50rem) {
  .steps__col:nth-child(even) {
    display: none;
  }
}
.steps__step {
  position: absolute;
  top: 0;
  left: 3.1875rem;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: var(--light-bg-color);
  z-index: 10;
  color: var(--accent-text-color);
}
.steps__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.steps__item:not(:last-child) {
  margin-bottom: 1.0625rem;
}
.steps__emoji {
  margin-right: 1.5625rem;
  background: var(--light-bg-color);
}
@media (max-width: 42.5rem) {
  .steps__emoji {
    margin-right: 1.25rem;
  }
}
.steps__clients .tag {
  background: var(--accent-bg-color);
}
.steps__person {
  position: absolute;
  width: 8.125rem;
  height: 8.125rem;
}
@media (max-width: 60rem) {
  .steps__person {
    width: 6.875rem;
    height: 6.875rem;
  }
}
.steps__person:nth-child(1) {
  left: -13.75rem;
  top: -3.75rem;
}
@media (max-width: 60rem) {
  .steps__person:nth-child(1) {
    left: auto;
    top: auto;
    right: -6.25rem;
    bottom: -4.375rem;
  }
}
.steps__person:nth-child(1) .tag {
  bottom: 0.625rem;
  right: -4.0625rem;
}
@media (max-width: 60rem) {
  .steps__person:nth-child(1) .tag {
    bottom: -1.25rem;
  }
}
.steps__person:nth-child(2) {
  right: -8.75rem;
  top: 0;
}
@media (max-width: 60rem) {
  .steps__person:nth-child(2) {
    right: -7.5rem;
    top: -3.75rem;
  }
}
.steps__person:nth-child(2) .tag {
  top: 0.625rem;
  right: -4.0625rem;
}
.steps__person:nth-child(3) {
  left: -15rem;
  bottom: -4.375rem;
}
@media (max-width: 60rem) {
  .steps__person:nth-child(3) {
    bottom: auto;
    left: -10rem;
    top: 0.625rem;
  }
}
.steps__person:nth-child(3) .tag {
  bottom: 0.625rem;
  right: -4.0625rem;
}
.steps__person .tag {
  position: absolute;
}
.steps__tags {
  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;
  margin-left: 7.9375rem;
  margin-top: -0.3125rem;
}
.steps__tags .tag {
  color: var(--accent-text-color);
  border-color: var(--accent-text-color);
}
.steps__tag:not(:last-child) {
  margin-bottom: 1rem;
}
.steps__icons {
  position: absolute;
  left: 50%;
  top: 50%;
}
.steps__icons::before, .steps__icons::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 9.375rem;
  height: 9.375rem;
  border-radius: 50%;
  border: 0.0625rem solid var(--accent-line-color);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 60rem) {
  .steps__icons::before, .steps__icons::after {
    width: 8.125rem;
    height: 8.125rem;
  }
}
.steps__icons::after {
  width: 15.625rem;
  height: 15.625rem;
}
@media (max-width: 60rem) {
  .steps__icons::after {
    width: 12.5rem;
    height: 12.5rem;
  }
}
.steps__icon {
  position: absolute;
  z-index: 10;
}
.steps__icon:nth-child(1) {
  top: -8.125rem;
  right: -8.125rem;
}
.steps__icon:nth-child(2) {
  top: -6.25rem;
  left: -9.6875rem;
}
@media (max-width: 60rem) {
  .steps__icon:nth-child(2) {
    top: -4.375rem;
    left: -8.125rem;
  }
}
.steps__icon:nth-child(3) {
  bottom: -5rem;
  left: -5rem;
}
@media (max-width: 60rem) {
  .steps__icon:nth-child(3) {
    bottom: -4.375rem;
  }
}
.steps__icon:nth-child(4) {
  bottom: -6.25rem;
  right: -8.75rem;
}
@media (max-width: 60rem) {
  .steps__icon:nth-child(4) {
    bottom: -7.5rem;
    right: -8.125rem;
  }
}
.steps__card .tag {
  position: absolute;
}
.steps__card .tag:nth-child(1) {
  top: -5rem;
  left: -1.875rem;
}
.steps__card .tag:nth-child(2) {
  top: -1.25rem;
  right: -4.375rem;
}
@media (max-width: 60rem) {
  .steps__card .tag:nth-child(2) {
    top: -4.375rem;
    right: -1.25rem;
  }
}
.steps__card .tag:nth-child(3) {
  bottom: -1.25rem;
  left: -6.25rem;
}
@media (max-width: 60rem) {
  .steps__card .tag:nth-child(3) {
    bottom: -2.5rem;
    left: -3.125rem;
  }
}
.steps__card .tag:nth-child(4) {
  bottom: -4.375rem;
  right: 1.875rem;
}
@media (max-width: 60rem) {
  .steps__card .tag:nth-child(4) {
    bottom: -3.125rem;
  }
}

.feedback {
  background: var(--accent-bg-color);
}
.feedback__wrapper {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-left: 0.0625rem solid var(--light-line-color);
  border-right: 0.0625rem solid var(--light-line-color);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 60rem) {
  .feedback__wrapper {
    border-right: none;
  }
}
@media (max-width: 42.5rem) {
  .feedback__wrapper {
    border-right: 0.0625rem solid var(--light-line-color);
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.feedback .bg-line-top::before {
  top: 5rem;
}
@media (max-width: 42.5rem) {
  .feedback .bg-line-top::before {
    top: 3.75rem;
  }
}
.feedback .bg-line-bottom::after {
  bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .feedback .bg-line-bottom::after {
    bottom: 3.75rem;
  }
}
.feedback__heading {
  padding: 3.75rem 1.25rem 3.75rem 0;
  border-right: 0.0625rem solid var(--light-line-color);
}
@media (max-width: 42.5rem) {
  .feedback__heading {
    border-right: none;
    padding: 1.875rem 0 2.5rem;
  }
}
.feedback__form {
  padding: 3.75rem 2.5rem;
}
@media (max-width: 60rem) {
  .feedback__form {
    padding-right: 0;
    margin-right: -1.875rem;
  }
}
@media (max-width: 42.5rem) {
  .feedback__form {
    margin-right: 0;
    padding: 0;
    margin-bottom: 1.875rem;
  }
}
.feedback__form .button {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.feedback .title__gradient {
  background: -webkit-gradient(linear, left top, right top, from(#557AFF), color-stop(82%, var(--accent-text-color)));
  background: linear-gradient(90deg, #557AFF 0%, var(--accent-text-color) 82%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects__container {
  padding-bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .projects__container {
    padding-bottom: 3.75rem;
  }
}
.projects__body {
  margin-top: calc(var(--swiper-navigation-size) + 1.875rem);
  margin-bottom: 1.5rem;
}
.projects__swiper {
  border-right: 0.0625rem solid var(--light-line-color);
  border-left: 0.0625rem solid var(--light-line-color);
}
.projects__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (50%)[2];
  grid-template-columns: repeat(2, 50%);
}
@media (max-width: 42.5rem) {
  .projects__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.projects__row {
  padding: 3.75rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 60rem) {
  .projects__row {
    padding: 3.75rem 1.875rem;
  }
}
@media (max-width: 42.5rem) {
  .projects__row {
    padding: 1.875rem 0.9375rem;
  }
}
.projects__row:nth-child(1), .projects__row:nth-child(2) {
  border-bottom: 0.0625rem solid var(--light-line-color);
}
@media (max-width: 42.5rem) {
  .projects__row:nth-child(1), .projects__row:nth-child(2) {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 60% 40%;
    grid-template-columns: 60% 40%;
    gap: 1.25rem;
  }
}
.projects__row:nth-child(1) {
  border-bottom: 0;
}
.projects__row:nth-child(odd) {
  border-right: 0.0625rem solid var(--light-line-color);
}
@media (max-width: 42.5rem) {
  .projects__row:nth-child(odd) {
    border-right: none;
    padding-bottom: 0;
  }
}
@media (max-width: 42.5rem) {
  .projects__col .emoji {
    width: 3.75rem;
    height: 3.75rem;
    font-size: 1.875rem;
  }
}
.projects__col:first-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.projects__col:not(:last-child) {
  margin-right: 1.25rem;
}
.projects__col:not(:last-child) .text {
  max-width: 16.25rem;
}
.projects__list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(6.25rem, 1fr));
  gap: 1.25rem;
  padding-top: 0.875rem;
}
.projects__score {
  font-weight: 600;
  font-size: 24px;
  line-height: 108%;
  color: var(--accent-text-color);
}
.projects__score:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.projects__desc {
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--dark-text-color);
}
.projects__desc:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.clients__swiper {
  border-right: 0.0625rem solid var(--light-line-color);
  border-left: 0.0625rem solid var(--light-line-color);
}
.clients .swiper-slide:nth-child(odd) {
  border-right: 0.0625rem solid var(--light-line-color);
}
@media (max-width: 50rem) {
  .clients .swiper-slide:nth-child(odd) {
    border-right: 0;
  }
}
.clients .swiper-slide:nth-child(even) {
  border-right: 0.0625rem solid transparent;
}
.clients__wrapper {
  padding: 2.8125rem 1.25rem 3.75rem 2.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 60rem) {
  .clients__wrapper {
    padding: 2.8125rem 1.25rem 3.75rem 1.5625rem;
  }
}
@media (max-width: 42.5rem) {
  .clients__wrapper {
    padding: 1.875rem;
  }
}
@media (max-width: 25rem) {
  .clients__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.clients__avatar {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 1.5625rem;
}
@media (max-width: 25rem) {
  .clients__avatar {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
}
.clients__image {
  width: 100%;
  max-width: 6.25rem;
  max-height: 6.25rem;
}
.clients h3.clients__title {
  font-size: 1.5rem;
  line-height: 108%;
  margin-top: 0.875rem;
  margin-bottom: 0.3125rem;
}
@media (max-width: 25rem) {
  .clients h3.clients__title {
    margin-top: 0;
  }
}
.clients__subtitle {
  margin: 0;
  font-size: 0.875rem;
  line-height: 130%;
  color: #728297;
  margin-bottom: 0.9375rem;
}
.clients__text:not(:last-child) {
  margin-bottom: 0.625rem;
}
.clients__link {
  font-size: 14px;
  line-height: 130%;
  color: var(--accent-text-color);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .clients__link:hover {
    color: var(--accent-hover-color);
  }
}

.works {
  background: var(--accent-bg-color);
}
.works h3.works__title {
  max-width: 21.25rem;
}
@media (max-width: 42.5rem) {
  .works h3.works__title {
    max-width: 70%;
  }
}
.works__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  padding: 3.75rem 0 5.3125rem;
  -webkit-column-gap: 10.625rem;
  -moz-column-gap: 10.625rem;
  column-gap: 10.625rem;
}
@media (max-width: 60rem) {
  .works__grid {
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
  }
}
@media (max-width: 42.5rem) {
  .works__grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding: 3.75rem 0;
  }
}
.works__col {
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}
@media (max-width: 42.5rem) {
  .works__col:not(:last-child) {
    margin-bottom: 3.75rem;
  }
}
.works__col:nth-child(1) .works__icon {
  right: calc(-3.5rem + -1.875rem);
  bottom: -1.25rem;
}
@media (max-width: 60rem) {
  .works__col:nth-child(1) .works__icon {
    bottom: auto;
    top: -1.25rem;
    right: -1.5625rem;
  }
}
@media (max-width: 42.5rem) {
  .works__col:nth-child(1) .works__icon {
    top: -2.5rem;
    right: 1.25rem;
  }
}
@media (max-width: 42.5rem) {
  .works__col:nth-child(1) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
  }
}
.works__col:nth-child(3) {
  margin-top: -1.25rem;
}
@media (max-width: 60rem) {
  .works__col:nth-child(3) {
    margin-top: 0;
  }
}
@media (max-width: 42.5rem) {
  .works__col:nth-child(3) {
    -ms-grid-row: 4;
    -ms-grid-row-span: 1;
    grid-row: 4/5;
  }
}
@media (max-width: 42.5rem) {
  .works__col:nth-child(5) {
    -ms-grid-row: 6;
    -ms-grid-row-span: 1;
    grid-row: 6/7;
    margin-bottom: 0;
  }
}
.works__col:nth-child(even) {
  margin-bottom: 3.75rem;
}
@media (max-width: 60rem) {
  .works .card--min:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.works .card--min:nth-child(1) {
  margin-left: auto;
}
@media (max-width: 42.5rem) {
  .works .card--min:nth-child(1) {
    margin-right: auto;
    margin-left: auto;
  }
}
.works .card--min:nth-child(1) .works__icon {
  right: calc(-3.5rem / 2);
  top: calc(-3.5rem + 0.625rem);
}
@media (max-width: 42.5rem) {
  .works .card--min:nth-child(1) .works__icon {
    right: -0.625rem;
  }
}
.works .card--min:nth-child(2) {
  margin-left: 5%;
}
@media (max-width: 60rem) {
  .works .card--min:nth-child(2) {
    margin-left: 0;
  }
}
@media (max-width: 42.5rem) {
  .works .card--min:nth-child(2) {
    margin-left: auto;
  }
}
.works .card--min:nth-child(3) {
  margin: 0 auto;
}
@media (max-width: 42.5rem) {
  .works .card--min:nth-child(3) {
    margin-left: 0;
  }
}
.works .card--min:nth-child(3) .works__icon {
  right: calc(-3.5rem / 2 - 0.625rem);
  top: calc(-3.5rem + 0.625rem);
}
@media (max-width: 60rem) {
  .works .card--min:nth-child(3) .works__icon {
    right: calc(-3.5rem / 2 - 0.625rem);
  }
}
@media (max-width: 42.5rem) {
  .works .card--min:nth-child(3) .works__icon {
    top: auto;
    right: -0.625rem;
    bottom: -2.5rem;
  }
}
.works .card--large {
  margin-left: auto;
}
@media (max-width: 60rem) {
  .works .card--large {
    margin: 0 auto;
    margin-top: 3.125rem;
  }
}
@media (max-width: 42.5rem) {
  .works .card--large {
    margin-top: 0;
  }
}
.works .card--large .works__icon {
  left: -55%;
  top: calc(-3.5rem + 0.625rem);
}
@media (max-width: 77.5rem) {
  .works .card--large .works__icon {
    left: -30%;
  }
}
@media (max-width: 60rem) {
  .works .card--large .works__icon {
    left: -1.25rem;
    top: -1.875rem;
  }
}
.works__tag {
  margin-bottom: 1.875rem;
  color: var(--accent-text-color);
}
.works__text {
  max-width: 18.75rem;
}
@media (max-width: 42.5rem) {
  .works__text {
    max-width: 70%;
  }
}
.works__icon {
  position: absolute;
}
.works .bg-line-bottom::after {
  top: 0;
  bottom: auto;
}
@media (max-width: 42.5rem) {
  .works .bg-line-center::before {
    display: none;
  }
}

.breadcrumbs {
  margin-bottom: 1rem;
}
@media (max-width: 42.5rem) {
  .breadcrumbs {
    margin-bottom: 3.75rem;
  }
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumbs__item {
  margin-top: 0.9375rem;
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 1.25rem;
}
.breadcrumbs__link {
  font-size: 14px;
  line-height: 243%;
  color: #728297;
}
.breadcrumbs__link svg {
  width: 1.5625rem;
  fill: #728297;
  margin-right: 0.9375rem;
}
.graph-modal__container {
  width: 32rem;
  padding: 2.5rem 2rem;
  border: 1px solid #C6CAD6;
  background-color: var(--light-bg-color);
}
.graph-modal__close {
  top: 0.8125rem;
  right: 0.8125rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: none;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .graph-modal__close:hover {
    -webkit-transform: rotate(90deg) scale(1.1);
    -ms-transform: rotate(90deg) scale(1.1);
    transform: rotate(90deg) scale(1.1);
  }
}
.graph-modal__close:focus {
  outline: none;
  -webkit-transform: rotate(90deg) scale(1.1);
  -ms-transform: rotate(90deg) scale(1.1);
  transform: rotate(90deg) scale(1.1);
}
.graph-modal__close svg {
  stroke: var(--accent-text-color);
}
.graph-modal__content {
  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;
}
.graph-modal__title {
  margin: 0;
  width: 100%;
  font-weight: 600;
  font-size: 2rem;
  line-height: 100%;
  color: #17213b;
}
.graph-modal__title:not(:last-child) {
  margin-bottom: 2rem;
}
.graph-modal__body {
  text-align: center;
}
.graph-modal__body:not(:last-child) {
  margin-bottom: 2.1875rem;
}
.graph-modal__body .graph-modal__title {
  font-size: 1.5rem;
}
.graph-modal__body .graph-modal__title:not(:last-child) {
  margin-bottom: 1rem;
}
.graph-modal__text {
  margin: 0;
  font-size: 1rem;
  line-height: 150%;
  color: #17213B;
}
.graph-modal__text:not(:last-child) {
  margin-bottom: 1rem;
}
.graph-modal__button {
  min-width: 6.875rem;
}
.graph-modal .form__body {
  margin-bottom: 2rem;
}
.graph-modal .form__label {
  max-width: 100%;
}
.graph-modal .form__button {
  width: 100%;
}
.graph-modal .form__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 143%;
  color: var(--light-line-color);
}

.footer {
  background: var(--dark-bg-color);
  color: var(--light-text-color);
}
.footer__wrapper {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  border-left: 1px solid var(--accent-line-color);
  border-right: 1px solid var(--accent-line-color);
}
@media (max-width: 42.5rem) {
  .footer__wrapper {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.footer__form {
  padding: 3.75rem 0 3.75rem;
}
.footer__heading {
  padding: 0;
  margin-bottom: 3.125rem;
}
@media (max-width: 42.5rem) {
  .footer__heading {
    margin-bottom: 2.5rem;
  }
}
.footer__title {
  color: var(--light-text-color);
  max-width: 42.5rem;
}
.footer__body {
  padding: 5rem 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4375rem;
}
@media (max-width: 42.5rem) {
  .footer__body {
    padding: 3.75rem 0 1.25rem;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__body > * {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.footer__logo svg {
  fill: #ffffff;
  width: 6.3125rem;
}
@media (max-width: 60rem) {
  .footer__nav {
    -ms-grid-column-align: start;
    justify-self: start;
  }
}
.footer__nav .footer__link {
  white-space: nowrap;
}
.footer__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4375rem;
}
@media (max-width: 60rem) {
  .footer__list {
    -ms-grid-columns: (auto)[3];
    grid-template-columns: repeat(3, auto);
    gap: 1.4375rem 2.75rem;
  }
}
@media (max-width: 25rem) {
  .footer__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 0.9375rem;
  }
}
.footer__link {
  font-size: 14px;
  line-height: 130%;
  color: var(--light-text-color);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__link:hover {
    color: var(--light-line-color);
  }
}
.footer__bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  padding: 1.375rem 0;
  gap: 1.4375rem;
}
@media (max-width: 42.5rem) {
  .footer__bottom {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding: 3.75rem 0 0;
    gap: 0.625rem;
  }
}
.footer__bottom .footer__link,
.footer__bottom .footer__text {
  color: var(--light-line-color);
}
.footer__bottom .footer__link {
  -ms-grid-column-align: end;
  justify-self: end;
}
@media (max-width: 42.5rem) {
  .footer__bottom .footer__link {
    -ms-grid-column-align: start;
    justify-self: start;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.footer .bg-line-top::before, .footer .bg-line-center::before {
  border-color: var(--accent-line-color);
}
.footer .bg-line-bottom::after {
  border-color: var(--accent-line-color);
}

.contacts__body {
  margin-bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .contacts__body {
    margin-bottom: 3.75rem;
  }
}
.contacts__item {
  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: 3.75rem 0.625rem;
}
@media (max-width: 53.75rem) {
  .contacts__item {
    -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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 3.75rem 0.625rem 3.75rem 1.875rem;
  }
}
@media (max-width: 42.5rem) {
  .contacts__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3.75rem 1.25rem 3.75rem 3.125rem;
  }
}
@media (max-width: 25rem) {
  .contacts__item {
    padding: 3.75rem 1.25rem 3.75rem 1.875rem;
  }
}
.contacts__emoji {
  margin-right: 1.5625rem;
}
@media (max-width: 60rem) {
  .contacts__emoji {
    width: 5.3125rem;
    height: 5.3125rem;
    font-size: 2.8125rem;
    margin-right: 0.75rem;
  }
}
@media (max-width: 53.75rem) {
  .contacts__emoji {
    margin-right: 0;
    margin-bottom: 0.9375rem;
  }
}
@media (max-width: 42.5rem) {
  .contacts__emoji {
    margin-right: 0.75rem;
    margin-bottom: 0;
  }
}
.contacts__text {
  margin: 0;
  font-size: 14px;
  line-height: 130%;
  color: #728297;
}
.contacts__text:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.contacts__link {
  font-size: 16px;
  line-height: 130%;
  color: var(--dark-text-color);
}
.contacts__map::before {
  bottom: -0.0625rem;
}
.contacts .grid__cell {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 42.5rem) {
  .contacts .grid__cell {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.contacts .grid__cell > *:not(:last-child)::before {
  display: none;
}
@media (max-width: 42.5rem) {
  .contacts .grid__cell > *:not(:last-child)::before {
    display: block;
  }
}

.tariffs .grid__cell {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 71.25rem) {
  .tariffs .grid__cell {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 42.5rem) {
  .tariffs .grid__cell {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.tariffs .grid__cell > *:not(:last-child)::before {
  display: none;
}
@media (max-width: 42.5rem) {
  .tariffs .grid__cell > *:not(:last-child)::before {
    display: block;
  }
}
@media (max-width: 71.25rem) {
  .tariffs .grid__cell > *:nth-child(even) {
    border-right: none;
  }
}
@media (max-width: 71.25rem) {
  .tariffs .grid__cell > *:nth-child(odd)::before {
    display: block;
  }
}

.tariff {
  padding: 2.1875rem;
}
@media (max-width: 42.5rem) {
  .tariff {
    padding: 1.875rem;
  }
}
.tariff__wrapper {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 18.4375rem;
  height: 100%;
}
.tariff__emoji {
  margin-bottom: 1.25rem;
}
.tariff__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.tariff__title {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 108%;
}
.tariff__title:not(:last-child) {
  margin-bottom: 0.625rem;
}
.tariff__subtitle {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent-text-color);
}
.tariff__subtitle:not(:last-child) {
  margin-bottom: 1.5625rem;
}
.tariff__list:not(:last-child) {
  margin-bottom: 1.5625rem;
}
.tariff__item {
  font-size: 0.875rem;
  line-height: 130%;
}
.tariff__item:not(:last-child) {
  margin-bottom: 0.625rem;
}
.tariff__button {
  min-width: 0;
  margin-top: auto;
}

.faq {
  margin-bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .faq {
    margin-bottom: 3.75rem;
  }
}

.about {
  margin-bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .about {
    margin-bottom: 3.75rem;
  }
}
.about__text {
    padding: 1.875rem;
}

.technology {
  margin-bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .technology {
    margin-bottom: 3.75rem;
  }
}
.technology__text {
    padding: 1.875rem;
}

.blogs {
  margin-bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .blogs {
    margin-bottom: 3.75rem;
  }
}
.blogs__body {
  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;
}
.blogs__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.0625rem solid var(--light-line-color);
  border-left: 0.0625rem solid var(--light-line-color);
  margin-bottom: 5rem;
}
@media (max-width: 60rem) {
  .blogs__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 42.5rem) {
  .blogs__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 3.75rem;
  }
}
.blogs__item {
  border-bottom: 0.0625rem solid var(--light-line-color);
  border-right: 0.0625rem solid var(--light-line-color);
}
.blogs__item.hidden {
  display: none;
}
.blogs .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.blogs .opacityCard {
  -webkit-animation-name: opacityCard;
  animation-name: opacityCard;
}

@-webkit-keyframes opacityCard {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes opacityCard {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.card-blogs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.875rem;
  height: 100%;
  position: relative;
}
@media (max-width: 42.5rem) {
  .card-blogs {
    padding: 1.25rem;
  }
}
@media (any-hover: hover) {
  .card-blogs:hover .card-blogs__image {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.card-blogs__time {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 130%;
  text-align: center;
  color: #728297;
}
.card-blogs__time:not(:last-child) {
  margin-bottom: 1rem;
}
.card-blogs__title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
}
.card-blogs__title:not(:last-child) {
  margin-bottom: 0.5rem;
}
.card-blogs__text {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 130%;
}
.card-blogs__text:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 42.5rem) {
  .card-blogs__text:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
.card-blogs__thumbnail {
  position: relative;
  width: 100%;
  border-radius: 0.625rem;
  overflow: hidden;
  margin-top: auto;
  margin-bottom: 1.5rem;
}
.card-blogs__image {
  width: 100%;
  height: 14.375rem;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.card-blogs__link {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}
.card-blogs__link::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}

.article {
  margin-bottom: 5rem;
}
@media (max-width: 42.5rem) {
  .article {
    margin-bottom: 3.75rem;
  }
}
.article__container {
  max-width: calc(50rem + var(--container-offset) * 2);
}
.article__head {
  background: var(--accent-bg-color);
  padding: 3.75rem 0;
  margin-bottom: 3.75rem;
}
@media (max-width: 42.5rem) {
  .article__head {
    margin-bottom: 2.5rem;
  }
}
.article__time {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 130%;
  text-align: center;
  color: #728297;
}
.article__time:not(:last-child) {
  margin-bottom: 1.5rem;
}
.article h1.article__title {
  margin: 0;
  font-weight: 600;
  font-size: 3rem;
  line-height: 108%;
}
.article h1.article__title:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 60rem) {
  .article h1.article__title {
    font-size: 44px;
    line-height: 118%;
  }
}
@media (max-width: 42.5rem) {
  .article h1.article__title {
    font-size: 30px;
    line-height: 123%;
  }
}
.article__title {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 81%;
}
.article__title:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 42.5rem) {
  .article__title {
    font-size: 20px;
    line-height: 130%;
  }
}
.article__subtitle {
  margin: 0;
  font-size: 1.5rem;
  line-height: 108%;
}
.article__subtitle:not(:last-child) {
  margin-bottom: 46px;
}
@media (max-width: 42.5rem) {
  .article__subtitle {
    font-size: 20px;
    line-height: 130%;
  }
  .article__subtitle:not(:last-child) {
    margin-bottom: 25px;
  }
}
.article picture {
  display: inline-block;
}
.article picture:not(:last-child) {
  margin-bottom: 3.75rem;
}
@media (max-width: 42.5rem) {
  .article picture:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.article__image {
  width: 100%;
  max-height: 27.5rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.article__image:not(:last-child) {
  margin-bottom: 3.75rem;
}
@media (max-width: 42.5rem) {
  .article__image:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.article__section:not(:last-child) {
  margin-bottom: 3.75rem;
}
@media (max-width: 42.5rem) {
  .article__section:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
.article__text {
  margin: 0;
  font-size: 16px;
  line-height: 193%;
}
.article__text:not(:last-child) {
  margin-bottom: 0.9375rem;
}
@media (max-width: 42.5rem) {
  .article__text:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}