@charset "UTF-8";
:root {
  --font-family: "Roboto";
  --content-width: 1340px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --text: #0F1010;
  --grey: #404040;
  --greylight: #666D6D;
  --greybtn: #E0E2E2;
  --main: #0260E8;
  --lightmain: #EDF4FF;
  --bg: #fff;
  --underline: #f2f3f3;
  --bggrey: #f9fafb;
}

/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: thin;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: medium;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: bold;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/../fonts/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
  font-style: black;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

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

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
}

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

a {
  text-decoration: none;
}

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

.footer {
  margin-top: auto;
}

.main {
  margin-top: 85px;
}
@media (max-width: 767px) {
  .main {
    margin-top: 68px;
  }
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

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

.orange {
  color: var(--orange-color);
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-a-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-a-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-j-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-j-sb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-j-sa {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.header {
  width: 100%;
  height: 85px;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--underline);
  background-color: #fff;
  z-index: 100;
}
@media (max-width: 767px) {
  .header {
    height: 68px;
  }
}
.header.active {
  border: none;
}
.header__wrapper {
  max-width: 1390px;
  padding: 0 25px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  width: 100%;
}
@media (max-width: 1440px) {
  .header__wrapper {
    padding: 0 15px;
  }
}
.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 1023px) {
  .header__menu {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    position: fixed;
    width: 100%;
    left: 0;
    top: 85px;
    background-color: #fff;
    padding: 24px 15px;
    border-bottom: 1px solid var(--underline);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media (max-width: 767px) {
  .header__menu {
    height: calc(100% - 68px);
    top: 68px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.header__menu.active {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.header__menu .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
}
@media (max-width: 1023px) {
  .header__menu .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}
.header__menu .menu__list .list__item.item-sub svg {
  margin: 0 0 3px 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1023px) {
  .header__menu .menu__list .list__item.item-sub svg {
    display: none;
  }
}
.header__menu .menu__list .list__item.item-sub.active .item__submenu {
  visibility: visible;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}
.header__menu .menu__list .list__item.item-sub.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header__menu .menu__list .list__item .item__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--text);
  padding: 0 3px;
}
@media (max-width: 1023px) {
  .header__menu .menu__list .list__item .item__link {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
  }
}
.header__menu .menu__list .list__item .item__link:hover {
  color: var(--main);
}
.header__menu .menu__list .list__item .item__link.active {
  font-weight: 600;
}
.header__menu .menu__list .list__item .item__submenu {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  visibility: hidden;
  position: absolute;
  border: 1px solid var(--underline);
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 24px;
  -webkit-box-shadow: 2px 5px 13px 0 rgba(12, 32, 60, 0.06);
  box-shadow: 2px 5px 13px 0 rgba(12, 32, 60, 0.06);
  margin-top: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1023px) {
  .header__menu .menu__list .list__item .item__submenu {
    visibility: visible;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    position: relative;
    border: none;
    margin-top: 0;
    padding-bottom: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.header__menu .menu__list .list__item .item__submenu .submenu__list {
  display: -ms-grid;
  display: grid;
  gap: 12px;
}
@media (max-width: 1023px) {
  .header__menu .menu__list .list__item .item__submenu .submenu__list {
    gap: 16px;
  }
}
.header__menu .menu__list .list__item .item__submenu .submenu__list .list__item .item__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}
@media (max-width: 1023px) {
  .header__menu .menu__list .list__item .item__submenu .submenu__list .list__item .item__link {
    font-size: 16px;
  }
}
.header__menu .menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .header__menu .menu__wrapper {
    margin-top: auto;
    display: -ms-grid;
    display: grid;
    width: 100%;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .header__menu .menu__wrapper .btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 1023px) {
  .header__burger {
    width: 30px;
    height: 27px;
    cursor: pointer;
    background: transparent;
    border: none;
    position: relative;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-left: auto;
  }
  .header__burger .burger__line, .header__burger .burger__line:after, .header__burger .burger__line:before {
    width: 30px;
    height: 3px;
  }
  .header__burger .burger__line {
    position: relative;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    background: var(--greylight);
    -webkit-transition: all 0ms 300ms;
    transition: all 0ms 300ms;
    display: block;
    border-radius: 3px;
  }
  .header__burger .burger__line.animate {
    background: transparent;
  }
  .header__burger .burger__line:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    border-radius: 3px;
    background: var(--greylight);
    -webkit-transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__burger .burger__line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 3px;
    background: var(--greylight);
    -webkit-transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__burger .burger__line.animate:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__burger .burger__line.animate:before {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}

.footer {
  padding: 60px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  margin-top: 100px;
}
@media (max-width: 1440px) {
  .footer {
    margin-top: 40px;
  }
}
@media (max-width: 1023px) {
  .footer {
    margin-top: 0;
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .footer {
    margin-top: 0;
  }
}
.footer__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 200px 280px 1fr;
  grid-template-columns: 1fr 200px 280px 1fr;
  gap: 30px;
}
@media (max-width: 1023px) {
  .footer__wrapper {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
  }
}
@media (max-width: 1023px) {
  .footer__column.column-big {
    display: contents;
  }
}
@media (max-width: 767px) {
  .footer__column.column-big .footer__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 767px) {
  .footer__column.column-big .footer__logo .logo__img {
    width: 107px;
  }
}
.footer__column.column-big .footer__privacy {
  margin-top: 40px;
  font-size: 12px;
  line-height: 170%;
  display: -ms-grid;
  display: grid;
  gap: 4px;
}
@media (max-width: 1023px) {
  .footer__column.column-big .footer__privacy {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3/1/4/3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .footer__column.column-big .footer__privacy {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-top: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 7px;
  }
}
.footer__column.column-big .footer__privacy .privacy__link {
  display: block;
  color: var(--greylight);
  font-weight: 400;
}
@media (max-width: 767px) {
  .footer__column.column-big .footer__privacy .privacy__link {
    text-decoration: underline;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }
}
.footer__column.column-big .footer__privacy .privacy__link:hover {
  color: var(--grey);
}
@media (max-width: 1023px) {
  .footer__column.column-contact {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media (max-width: 767px) {
  .footer__column.column-contact {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
  }
}
.footer__column.column-contact .contact__list {
  display: -ms-grid;
  display: grid;
  gap: 6px;
}
@media (max-width: 1023px) {
  .footer__column.column-social {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 767px) {
  .footer__column.column-social {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.footer__column.column-social .social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
@media (max-width: 767px) {
  .footer__column.column-social .social__list {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer__column.column-social .social__title {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer__column.column-address {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(140, 157, 173, 0.7490196078);
  z-index: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup__wrapper {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 580px;
  flex: 0 0 580px;
}
@media (max-width: 767px) {
  .popup__wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 95%;
    flex: 0 0 95%;
    margin: 0 15px;
  }
}
.popup__close {
  position: absolute;
  right: 20px;
  top: 17px;
  padding: 4px;
  z-index: 2;
  stroke: var(--greylight);
}
@media (max-width: 1023px) {
  .popup__close {
    top: 10px;
    right: 22px;
  }
}
@media (max-width: 767px) {
  .popup__close {
    right: 10px;
  }
}
.popup__close:hover svg {
  stroke: var(--main);
}
.popup__form.form__container {
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 1440px) {
  .popup__form.form__container {
    gap: 16px;
  }
}
@media (max-width: 1023px) {
  .popup__form.form__container {
    padding: 40px 20px;
  }
}
@media (max-width: 1440px) {
  .popup__form.form__container .form__group .form__checkbox-label {
    font-size: 14px;
  }
}
@media (max-width: 1440px) {
  .popup__form.form__container .form__group .form__input {
    margin-top: 2px;
  }
}
.popup__form .form__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  color: var(--text);
  margin: 0;
  max-width: 500px;
}
@media (max-width: 1440px) {
  .popup__form .form__title {
    font-size: 20px;
  }
}
.popup__form .form__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: var(--text);
  margin-top: -10px;
}
@media (max-width: 1440px) {
  .popup__form .form__text {
    font-size: 16px;
  }
}

.canihave_widget {
  z-index: 0;
}

.hero {
  margin-top: 60px;
}
@media (max-width: 1023px) {
  .hero {
    margin-top: 30px;
  }
}
.hero__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 512px;
  grid-template-columns: 1fr 512px;
  gap: 60px;
}
@media (max-width: 1279px) {
  .hero__wrapper {
    gap: 40px;
  }
}
@media (max-width: 1023px) {
  .hero__wrapper {
    -ms-grid-columns: 1fr 300px;
    grid-template-columns: 1fr 300px;
  }
}
@media (max-width: 767px) {
  .hero__wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.hero__column {
  display: -ms-grid;
  display: grid;
}
.hero__title {
  color: #000;
  font-size: 35px;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .hero__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    text-transform: uppercase;
  }
}
.hero__title span {
  border-radius: 20px;
  background: #0260E8;
  padding: 5px 10px;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero__title span {
    font-size: 22px;
  }
}
.hero__info {
  font-size: 24px;
  line-height: 120%;
  margin-top: 50px;
}
@media (max-width: 1440px) {
  .hero__info {
    margin-top: 25px;
  }
}
@media (max-width: 1023px) {
  .hero__info {
    font-size: 18px;
  }
}
.hero__info span {
  font-weight: 700;
  text-transform: uppercase;
}
.hero__text {
  font-size: 24px;
  font-weight: 500;
  margin-top: 50px;
}
@media (max-width: 1440px) {
  .hero__text {
    margin-top: 25px;
  }
}
@media (max-width: 1023px) {
  .hero__text {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .hero__text br {
    display: none;
  }
}
.hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: auto;
}
@media (max-width: 1440px) {
  .hero__btns {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .hero__btns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.hero__btns .btns__item .btn {
  width: 100%;
  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;
}
.hero__under {
  color: #898B8B;
  font-size: 18px;
  line-height: 130%;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .hero__under {
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero__img {
    margin: 0 auto;
    display: block;
  }
}

.grow {
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .grow {
    padding: 0 15px;
  }
}
.grow .container-blue {
  border-radius: 50px;
  border: 3px solid #0260E8;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFF), to(#FFF)), #FFF;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
  padding: 20px 20px 48px;
  display: none;
}
.grow__title {
  text-align: center;
}
.grow__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}
@media (max-width: 1023px) {
  .grow__text {
    font-size: 16px;
  }
}
.grow__graph {
  margin-top: 50px;
}
@media (max-width: 1023px) {
  .grow__graph {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .grow__graph {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 62px 1fr;
    grid-template-columns: 62px 1fr;
    direction: rtl;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .grow__graph .graph__img {
    width: 62px;
  }
}
.grow__graph .graph__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  font-size: 20px;
  font-weight: 500;
  line-height: 130%;
  gap: 40px;
}
@media (max-width: 1023px) {
  .grow__graph .graph__wrapper {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .grow__graph .graph__wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }
}
.grow__info {
  font-size: 24px;
  line-height: 120%;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .grow__info {
    font-size: 20px;
    text-align: left;
  }
}
.grow__info span {
  text-transform: uppercase;
  font-weight: 700;
}
.grow__desc {
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .grow__desc {
    font-size: 20px;
    text-align: left;
  }
}
.grow__btn {
  margin: 20px auto 0 auto;
  display: none !important;
}

.why {
  margin-top: 80px;
}
.why .container {
  position: relative;
}
.why .container:after {
  content: "";
  width: 350px;
  height: 366px;
  border-radius: 30px;
  background: linear-gradient(137deg, #0260E8 39.85%, #013682 127.55%);
  position: absolute;
  right: 0;
  bottom: -90px;
  z-index: -1;
}
@media (max-width: 767px) {
  .why .container:after {
    width: 314px;
    height: 380px;
    bottom: -46px;
  }
}
.why__wrapper {
  border-radius: 30px;
  border: 1px solid #0260E8;
  background-color: #ffffff;
  padding: 20px;
  margin-right: 162px;
}
@media (max-width: 767px) {
  .why__wrapper {
    margin-right: 0;
  }
}
.why__title {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .why__title {
    text-align: center;
  }
}
.why__list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

@media (max-width: 1279px) {
  .can {
    margin-top: 160px;
  }
}
.can__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 459px 1fr;
  grid-template-columns: 459px 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 28px;
}
@media (max-width: 1279px) {
  .can__wrapper {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.can__column {
  padding: 20px;
  position: relative;
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1279px) {
  .can__column {
    max-width: 600px;
    margin: 30px auto 0 auto;
    font-size: 16px;
  }
}
.can__column:after {
  content: "";
  width: calc(100% + 93px);
  height: 411px;
  position: absolute;
  z-index: -1;
  border-radius: 30px;
  background: linear-gradient(339deg, #0260E8 51.53%, #013682 163.21%);
  left: -20px;
  top: -20px;
}
@media (max-width: 767px) {
  .can__column:after {
    width: calc(100% + 20px);
    left: -10px;
  }
}
.can__column .column__img {
  margin-top: 20px;
}
.can__title {
  color: #fff;
  margin-bottom: 20px;
}
.can__get {
  border-radius: 30px;
  border: 1px solid #0260E8;
  background: #FFF;
  padding: 20px 30px;
  margin-top: 22px;
  font-size: 24px;
  line-height: 120%;
}
@media (max-width: 1279px) {
  .can__get {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    font-size: 20px;
  }
}
.can__get .get__text {
  color: #0260E8;
  font-size: 22px;
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 1279px) {
  .can__get .get__text {
    font-size: 18px;
  }
}
.can__get .get__desc {
  color: #898B8B;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (max-width: 1279px) {
  .can__get .get__desc {
    font-size: 16px;
  }
}
.can__get .get__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  font-size: 20px;
  margin-top: 20px;
}
@media (max-width: 1279px) {
  .can__get .get__list {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .can__get .get__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
  }
}
.can__get .get__list .list__item:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 3/1/4/3;
}
@media (max-width: 767px) {
  .can__get .get__list .list__item:nth-child(5) {
    grid-area: auto;
  }
}
.can__get .get__list .list__item:nth-child(6) {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 4/1/5/3;
}
@media (max-width: 767px) {
  .can__get .get__list .list__item:nth-child(6) {
    grid-area: auto;
  }
}
.can__get .get__list .list__item span span {
  color: #898B8B;
}
.can__get .get__btn {
  margin-top: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .can__get .get__btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.cost__title {
  text-align: center;
}
.cost__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 70px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 1279px) {
  .cost__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 1023px) {
  .cost__wrapper {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 23px;
    margin-top: 30px;
  }
}
.cost__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
  height: 260px;
  border-radius: 15px;
  background: #0260E8;
  color: #FFF;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px;
}
@media (max-width: 1279px) {
  .cost__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(25% - 90px);
    flex: 0 0 calc(25% - 90px);
  }
}
@media (max-width: 767px) {
  .cost__item {
    width: 176px;
    height: 176px;
    font-size: 16px;
  }
}
.cost__item span {
  font-size: 24px;
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .cost__item span {
    font-size: 18px;
    margin-bottom: 35px;
  }
}
.cost__item span.big {
  font-size: 50px;
}
.cost__item span.big span {
  font-size: 30px;
}
.cost__text, .cost__analytics {
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .cost__text, .cost__analytics {
    font-size: 16px;
  }
}
.cost__text {
  margin-top: 55px;
}
@media (max-width: 767px) {
  .cost__text {
    margin-top: 30px;
  }
}
.cost__analytics {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cost__analytics {
    margin-top: 30px;
  }
}
.cost__analytics span {
  font-weight: 700;
}
.cost__btn {
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1023px) {
  .cost__btn {
    margin: 30px auto 0 auto;
  }
}

@media (max-width: 1023px) {
  .reg {
    margin-top: 80px;
  }
}
.reg__title {
  text-align: center;
}
.reg__wrapper {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  margin-top: 30px;
}
.reg__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .reg__text {
    font-size: 18px;
  }
}
.reg__item {
  border-radius: 15px;
  border: 1px solid #0260E8;
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.reg__item .item__num {
  color: #fff;
  font-size: 42px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--main);
  border-radius: 50%;
}
@media (max-width: 1023px) {
  .reg__item .item__num {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60px;
    flex: 0 0 60px;
    height: 60px;
    font-size: 30px;
  }
}
.reg__item .info__step {
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
  color: var(--main);
}
@media (max-width: 1023px) {
  .reg__item .info__step {
    font-size: 20px;
  }
}
.reg__item .info__text {
  font-size: 22px;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .reg__item .info__text {
    font-size: 16px;
  }
}
.reg__help {
  border-radius: 30px 30px 0px 30px;
  border: 1px solid #0260E8;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFF), to(#FFF)), #000;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #000;
  text-align: center;
  margin-top: 30px;
  margin-left: auto;
  float: right;
  width: 782px;
  padding: 20px;
}
@media (max-width: 1023px) {
  .reg__help {
    width: 100%;
    max-width: 500px;
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .reg__help {
    max-width: 265px;
  }
}
.reg__help .help__title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 1023px) {
  .reg__help .help__title {
    font-size: 20px;
  }
}
.reg__help .help__text {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .reg__help .help__text {
    font-size: 16px;
  }
}
.reg__help .help__text p {
  margin: 0;
}

.warm {
  margin-top: 280px;
}
.warm__title span {
  font-weight: 700;
}
.warm__wrapper {
  margin-top: 60px;
}
.warm__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1279px) {
  .warm__item {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.warm__item:nth-child(2) {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 30px;
}
.warm__item:nth-child(2) .item__info {
  left: inherit;
  right: 0;
  width: 750px;
  padding-left: 40px;
}
@media (max-width: 1440px) {
  .warm__item:nth-child(2) .item__info {
    padding-left: 100px;
    padding-right: 15px;
    width: 700px;
  }
}
@media (max-width: 1279px) {
  .warm__item:nth-child(2) .item__info {
    width: 100%;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    padding-left: 15px;
  }
}
.warm__item:nth-child(3) {
  margin-top: 30px;
}
.warm__item:nth-child(3) .item__info {
  width: 790px;
  padding-left: 40px;
}
@media (max-width: 1279px) {
  .warm__item:nth-child(3) .item__info {
    padding-left: 15px;
    width: 100%;
  }
}
@media (max-width: 1279px) {
  .warm__item .item__img {
    margin: 15px auto 0 auto;
  }
}
.warm__item .item__info {
  position: absolute;
  padding: 20px 15px 20px 15px;
  border-radius: 10px;
  border: 1px solid #0260E8;
  background: #FFF;
  z-index: -1;
  width: 890px;
  left: 0;
  top: 52px;
  font-size: 20px;
  line-height: 120%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1440px) {
  .warm__item .item__info {
    padding-right: 100px;
  }
}
@media (max-width: 1279px) {
  .warm__item .item__info {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .warm__item .item__info {
    font-size: 16px;
  }
}
.warm__item .item__info span {
  font-weight: 700;
}
.warm__item .item__num {
  color: #0260E8;
  font-size: 40px;
  font-weight: 600;
  line-height: 130%;
}
@media (max-width: 767px) {
  .warm__item .item__num {
    font-size: 36px;
  }
}
.warm__perc {
  border-radius: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(#0260E8), to(#0260E8)), #FFF;
  background: linear-gradient(0deg, #0260E8 0%, #0260E8 100%), #FFF;
  color: #fff;
  padding: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  max-width: 782px;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .warm__perc {
    font-size: 14px;
  }
}
.warm__perc .perc__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  margin: 0 0 20px 0;
}
@media (max-width: 1023px) {
  .warm__perc .perc__title {
    font-size: 16px;
  }
}
.warm__desc {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  max-width: 864px;
  margin: 60px auto 0 auto;
}
@media (max-width: 1023px) {
  .warm__desc {
    font-size: 16px;
  }
}
.warm__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0 auto;
}

.price {
  border: 1px solid #0260E8;
  padding: 64px 0;
}
.price__title {
  text-align: center;
  margin: 0;
}
.price__title a {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .questions {
    padding: 0 15px;
  }
}
.questions__wrapper {
  max-width: 548px;
  padding: 31px 10px;
  margin: 0 auto;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #0260E8;
}
.questions__text {
  font-size: 20px;
}
@media (max-width: 1023px) {
  .questions__text {
    font-size: 16px;
  }
}
.questions__form {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  margin-top: 30px;
}
.questions__form .form__input {
  border-radius: 5px;
  border: 1px solid #0260E8;
  padding: 13px 10px;
  background: #FFF;
  width: 322px;
  font-size: 18px;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .questions__form .form__input {
    font-size: 16px;
  }
}
.questions__form .form__input::-webkit-input-placeholder {
  color: #898B8B;
}
.questions__form .form__input::-moz-placeholder {
  color: #898B8B;
}
.questions__form .form__input:-ms-input-placeholder {
  color: #898B8B;
}
.questions__form .form__input::-ms-input-placeholder {
  color: #898B8B;
}
.questions__form .form__input::placeholder {
  color: #898B8B;
}
.questions__form .form__submit {
  border-radius: 30px;
  border: 1px solid #FFF;
  padding: 15px 30px;
  color: #fff;
  background: #0260E8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.questions__form .form__text {
  color: #898B8B;
  text-align: center;
  font-size: 16px;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .questions__form .form__text {
    font-size: 14px;
  }
}

.reviews__title {
  text-align: center;
}
.reviews__item {
  border-radius: 15px;
  border: 1px solid #D7D7D7;
  background: #F7F7F7;
  padding: 20px;
  max-width: 90%;
  min-height: 184px;
}
@media (max-width: 1279px) {
  .reviews__item {
    max-width: 85%;
  }
}
@media (max-width: 767px) {
  .reviews__item {
    max-width: 60%;
    padding: 10px 20px;
    height: auto;
  }
}
.reviews__item .item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .reviews__item .item__name {
    font-size: 18px;
  }
}
.reviews__item .item__text {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}
@media (max-width: 1023px) {
  .reviews__item .item__text {
    font-size: 14px;
  }
}
.reviews .swiper-button-next:after, .reviews .swiper-rtl .swiper-button-prev:after, .reviews .swiper-button-next:after, .reviews .swiper-button-prev:after {
  font-size: 0;
  min-width: 50px;
  height: 115px;
  background-size: contain;
  background-repeat: no-repeat;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='116' viewBox='0 0 50 116' fill='none'%3E%3Cpath d='M15 98L35 58L15 18' stroke='%23898B8B' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media (max-width: 1023px) {
  .reviews .swiper-button-next:after, .reviews .swiper-rtl .swiper-button-prev:after, .reviews .swiper-button-next:after, .reviews .swiper-button-prev:after {
    min-width: 40px;
    height: 90px;
  }
}
.reviews .swiper-button-next:hover:after {
  background-size: contain;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='115' viewBox='0 0 50 115' fill='none'%3E%3Cpath d='M15 97.5L35 57.5L15 17.5' stroke='%230260E8' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.reviews .swiper-button-prev:hover:after {
  background-size: contain;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='115' viewBox='0 0 50 115' fill='none'%3E%3Cpath d='M15 97.5L35 57.5L15 17.5' stroke='%230260E8' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.reviews .swiper-button-prev:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.list-check .list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  .list-check .list__item {
    font-size: 16px;
  }
}
.list-check .list__item:before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='38' viewBox='0 0 38 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d_31_1344)'%3E%3Ccircle cx='19' cy='15' r='15' fill='%230160E8'/%3E%3Cpath d='M12.6509 15.4831L16.884 19.7163L25.3503 11.25' stroke='white' stroke-width='2.51957' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_31_1344' x='0' y='0' width='38' height='38' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset dy='4'/%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_31_1344'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_31_1344' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: contain;
}

.subtitle {
  font-size: 30px;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 20px;
  margin-top: 0;
}
@media (max-width: 1279px) {
  .subtitle {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .subtitle {
    font-size: 20px;
  }
}

.blue {
  color: var(--main);
}

@media (max-width: 1023px) {
  .form {
    background-color: var(--lightmain);
    margin-top: 0;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .form {
    padding-top: 40px;
  }
}
.form__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 1279px) {
  .form__wrapper {
    -ms-grid-columns: 446px 1fr;
    grid-template-columns: 446px 1fr;
  }
}
@media (max-width: 1023px) {
  .form__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.form__info {
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .form__info {
    width: 550px;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .form__info {
    width: 100%;
  }
}
.form__info .info__logo {
  font-weight: 900;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--grey);
}
.form__info .info__logo .blue {
  color: var(--main);
}
.form__info .info__title {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  color: var(--text);
  margin: 12px 0 0 0;
}
@media (max-width: 1023px) {
  .form__info .info__title {
    font-size: 24px;
    line-height: 120%;
  }
}
.form__info .info__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin-top: 14px;
}
@media (max-width: 1023px) {
  .form__info .info__text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .form__info .info__text {
    display: none;
  }
}
.form__container {
  border-radius: 10px;
  padding: 52px 32px;
  background-color: var(--lightmain);
  display: -ms-grid;
  display: grid;
  gap: 24px;
  position: relative;
}
@media (max-width: 1023px) {
  .form__container {
    padding: 0 0 60px 0;
    width: 550px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .form__container {
    width: 100%;
    padding-bottom: 40px;
  }
}
.form__container .form__group .form__label {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #344054;
  display: block;
  padding-left: 3px;
}
.form__container .form__group .form__label .required {
  color: var(--main);
}
.form__container .form__group .form__input {
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #d0d5dd;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  margin-top: 6px;
  font-size: 16px;
}
.form__container .form__group .form__input:focus {
  outline: 1px solid var(--main);
}
.form__container .form__group .form__checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
  /* стили для чекбокса, находящегося в состоянии checked */
}
.form__container .form__group .form__checkbox + label::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.form__container .form__group .form__checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: #b3d7ff;
}
.form__container .form__group .form__checkbox:not(:disabled):active + label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.form__container .form__group .form__checkbox:focus + label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form__container .form__group .form__checkbox:focus:not(:checked) + label::before {
  border-color: #80bdff;
}
.form__container .form__group .form__checkbox:disabled + label::before {
  background-color: #e9ecef;
}
.form__container .form__group .form__checkbox:checked + label::before {
  border-color: #0b76ef;
  background-color: #0b76ef;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.form__container .form__group .form__checkbox-label {
  font-size: 16px;
  line-height: 150%;
  color: #475467;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .form__container .form__group .form__checkbox-label {
    display: block;
  }
}
.form__container .form__group .form__checkbox-label .form__link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  color: #475467;
  font-weight: 400;
  margin-left: 4px;
}
@media (max-width: 767px) {
  .form__container .form__group .form__checkbox-label .form__link {
    display: block;
    margin-left: 24px;
  }
}
.form__container .form__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 8px;
}
.form__container .just-validate-error-label {
  font-size: 14px;
  line-height: 143%;
  padding-left: 3px;
}
@media (max-width: 1023px) {
  .form__container .just-validate-error-label {
    font-size: 12px;
  }
}
.form__success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form__success.active {
  opacity: 1;
  visibility: visible;
}
.form__success .success__img {
  height: 200px;
}
.form__success .success__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  margin-top: 24px;
  color: var(--main);
  max-width: 300px;
}

#questions-recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.blog {
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .blog .container {
    padding-right: 0;
  }
}
.blog__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
}
@media (max-width: 1023px) {
  .blog__category {
    overflow-x: scroll;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
@media (max-width: 767px) {
  .blog__category {
    gap: 35px;
  }
}
.blog__category .category__item {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}
.blog__category .category__item:hover {
  color: var(--main);
}
.blog__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px 70px;
  margin-top: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .blog__article {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 20px;
  }
}
.blog__article .article__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 380px;
  flex: 0 0 380px;
}
@media (max-width: 1023px) {
  .blog__article .article__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 320px;
    flex: 0 0 320px;
    max-width: 320px;
  }
}
.blog__article .article__item .item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  margin-top: 4px;
}
.blog__article .article__item .item__row .item__cat .cat__item {
  color: #0260E8;
}
.blog__article .article__item .item__row .item__views {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9FA5A5;
  gap: 5px;
  margin-left: auto;
}
.blog__article .article__item .item__row .item__date {
  color: #9FA5A5;
  margin-left: 20px;
}
.blog__article .article__item .item__title {
  color: #0F1010;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 5px 0 0 0;
}
.blog__more {
  padding: 15px 70px;
  border-radius: 30px;
  background: #0260E8;
  margin: 30px auto 0 auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
}

.page__body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--main-color);
}
@media (max-width: 1023px) {
  .page__body {
    font-size: 14px;
  }
}
.page__body.no-scroll {
  overflow: hidden;
}

h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  margin: 0;
}
@media (max-width: 1440px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 24px;
  }
}

.btn {
  padding: 14px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 14px;
  border-radius: 30px;
  background: transparent;
  text-decoration: none;
  line-height: 100%;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn {
    padding: 14px 20px;
  }
}
.btn.white {
  border: 1px solid var(--greybtn);
  color: var(--text);
  background-color: #fff;
}
.btn.white:hover {
  background-color: #fbfbfb;
}
.btn.blue {
  border: 1px solid var(--main);
  color: #fff;
  background-color: var(--main);
}
.btn.blue:hover {
  background: #085dd8;
  border: 1px solid #085dd8;
}
.btn.trans {
  border: 1px solid var(--greybtn);
  color: var(--text);
}
.btn.trans:hover {
  background-color: #fbfbfb;
}

a {
  font-weight: 500;
  line-height: 130%;
  color: var(--main);
  text-decoration: none;
}

section {
  margin-top: 150px;
}
@media (max-width: 1440px) {
  section {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  section {
    margin-top: 40px;
  }
}
/*# sourceMappingURL=main.css.map */