@import url(https://fonts.googleapis.com/css?family=Raleway:regular,500,600,700&display=swap);
@import url(https://fonts.googleapis.com/css?family=Poppins:300,regular&display=swap);
@import url(https://fonts.googleapis.com/css?family=Montserrat:700&display=swap);

@font-face {
    font-family: "TT Norms";
    font-display: swap;
    src: url(../fonts/TTNorms-Bold.woff2) format("woff2"), url(../fonts/TTNorms-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: "TT Norms";
    font-display: swap;
    src: url(../fonts/TTNorms-Light.woff2) format("woff2"), url(../fonts/TTNorms-Light.woff) format("woff");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: "TT Norms";
    font-display: swap;
    src: url(../fonts/TTNorms-Medium.woff2) format("woff2"), url(../fonts/TTNorms-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: "TT Norms";
    font-display: swap;
    src: url(../fonts/TTNorms-Regular.woff2) format("woff2"), url(../fonts/TTNorms-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

* {
    padding: 0;
    margin: 0;
    border: 0
}

*,
*::after,
*::before {
    box-sizing: border-box
}

*::after,
*::before {
    display: inline-block
}

body,
html {
    height: 100%;
    min-width: 320px
}

body {
    color: #fff;
    line-height: 1;
    font-family: Raleway;
    font-size: 1rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

button,
input,
textarea {
    font-family: Raleway;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent
}

input,
textarea {
    width: 100%
}

button,
option,
select {
    cursor: pointer
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit
}

body {
    background-color: #0f1119
}

.lock body {
    overflow: hidden;
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

@supports (overflow:clip) {
    .wrapper {
        overflow: clip
    }
}

.wrapper>main {
    flex: 1 1 auto
}

[class*=__container] {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 .9375rem
}

input[type=email],
input[type=tel],
input[type=text],
textarea {
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    border: 2px solid grey;
    height: 3em;
}

.input {
    border: 1px solid #e1e1e1;
    border-radius: .625rem !important;
    color: #fff;
    width: 100%;
    display: block;
    padding: 15px 22px;
    outline: 0;
    font-size: 16px;
    line-height: 19px;
    caret-color: inherit
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    color: rgba(255, 255, 255, .7)
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
    -ms-transition: opacity .3s;
    transition: opacity .3s;
    color: rgba(255, 255, 255, .7)
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
    -ms-transition: opacity .3s;
    transition: opacity .3s;
    color: rgba(255, 255, 255, .7)
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
    transition: opacity .3s;
    color: rgba(255, 255, 255, .7)
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
    opacity: 0
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
    opacity: 0
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
    opacity: 0
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
    opacity: 0
}

textarea.input {
    resize: none;
    padding: 0 0
}

.options {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.options__item {
    position: relative;
    cursor: pointer
}

.options__item:not(:last-child) {
    margin-bottom: em(5)
}

.options__input {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute
}

.options__input:focus-visible+.options__label:before {
    box-shadow: 0 0 5px #000
}

.options__input:checked+.options__label:after {
    -webkit-transform: scale(1);
    transform: scale(1)
}

.options__label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 10px
}

.options__label:before {
    content: "";
    align-self: flex-start;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    border: 1px solid #a7a9ac
}

.options__label:after {
    content: "";
    transition: all .3s ease 0s;
    -webkit-transform: scale(0);
    transform: scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #77243a;
    position: absolute;
    left: 5px;
    top: 5px
}

.ask-options {
    display: grid;
    margin: 0 auto;
    width: 100%;
    max-width: 20.3125rem;
    row-gap: .4375rem;
    position: relative;
    z-index: 5
}

.ask-options:not(:last-child) {
    margin-bottom: 1.5625rem
}

.ask-options__item {
    position: relative;
    cursor: pointer
}

.ask-options__item:not(:last-child) {
    margin-bottom: em(5)
}

.ask-options__input {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute
}

.ask-options__input:checked+.ask-options__label {
    background-color: #2857ff;
    color: #fff !important
}

.ask-options__label {
    text-align: left;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
    transition: all .3s;
    padding: .9375rem 1.875rem;
    background-color: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 5.5rem
}

.ask-options__text {
    font-size: 16px;
    line-height: 19px
}

.menu__list {
    display: flex
}

.menu__link {
    font-weight: 500;
    line-height: 1.0625rem;
    position: relative
}

.menu__link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #0f1119;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
    -webkit-transform-origin: left;
    transform-origin: left
}

.icon-menu {
    display: none
}

.spollers {
    display: grid
}

.spollers__item {
    font-size: 1.25rem;
    border-bottom: 1px dashed #2857ff;
    padding-top: 1.375rem;
    padding-bottom: 1.5625rem
}

.spollers__item:first-child {
    border-top: 1px dashed #2857ff
}

.spollers__title {
    padding-right: 3.125rem;
    outline: 0;
    width: 100%;
    cursor: default;
    text-align: left;
    border-radius: .3125rem;
    position: relative;
    list-style: none;
    font-family: "TT Norms";
    font-weight: 700;
    font-size: 24px;
    line-height: 28px
}

.spollers__title::-webkit-details-marker,
.spollers__title::marker {
    display: none
}

._spoller-init .spollers__title {
    cursor: pointer;
    transition: all .3s
}

._spoller-init .spollers__title::after,
._spoller-init .spollers__title::before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    background-color: #2857ff;
    height: 2px;
    border-radius: 10px;
    width: 15px;
    transition: -webkit-transform .5s ease 0s;
    transition: transform .5s ease 0s;
    transition: transform .5s ease 0s, -webkit-transform .5s ease 0s
}

._spoller-init .spollers__title::before {
    -webkit-transform: translate(-75%, -50%) rotate(40deg);
    transform: translate(-75%, -50%) rotate(40deg)
}

._spoller-init .spollers__title::after {
    -webkit-transform: translate(0, -50%) rotate(-40deg);
    transform: translate(0, -50%) rotate(-40deg)
}

._spoller-init .spollers__title._spoller-active {
    margin-bottom: 1.375rem
}

._spoller-init .spollers__title._spoller-active::before {
    background-color: #fff;
    -webkit-transform: translateX(-75%) rotate(-40deg);
    transform: translateX(-75%) rotate(-40deg)
}

._spoller-init .spollers__title._spoller-active::after {
    background-color: #fff;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg)
}

.spollers__body {
    border-radius: .3125rem;
    max-width: 34.375rem;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

.tabs__title {
    padding: 11px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    text-align: left;
    outline: 0
}

.tabs__title._tab-active {
    border: 1px solid #2857ff;
    background-color: #2857ff
}

.tabs__content {
    padding: 31px 29px 24px 30px;
    background-color: #23242a;
    border-radius: 18px;
    position: relative
}

.tabs__content::before {
    content: "";
    position: absolute;
    width: 4.06px;
    height: 78.83px;
    left: -2px;
    top: 19.3%;
    background-color: #2857ff;
    box-shadow: 0 0 11px #2857ff;
    border-radius: 52px
}

.tabs {
    display: flex;
    gap: 1.875rem;
    align-items: center
}

.tabs__navigation {
    flex: 0 0 31.623932%;
    display: grid;
    gap: .625rem
}

.tabs__title {
    display: flex;
    align-items: center;
    gap: 12px
}

.tabs__image {
    width: 65px;
    min-height: 65px;
    overflow: hidden;
    flex: 0 0 65px;
    border-radius: 7px;
    position: relative
}

.tabs__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.tabs__name {
    font-family: "TT Norms";
    font-weight: 700;
    font-size: 16px;
    line-height: 118.75%
}

.tabs__name:not(:last-child) {
    margin-bottom: .25rem
}

.tabs__year {
    white-space: nowrap;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 118.75%
}

.tabs__income {
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 118.75%
}

.tabs__income span {
    font-weight: 700
}

.review__text {
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 118.75%
}

.review__text:not(:last-child) {
    margin-bottom: 1.875rem
}

.ibg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.ibg--top {
    -o-object-position: top;
    object-position: top
}

.ibg--bottom {
    -o-object-position: bottom;
    object-position: bottom
}

.ibg--left {
    -o-object-position: left;
    object-position: left
}

.ibg--right {
    -o-object-position: right;
    object-position: right
}

.ibg--contain {
    -o-object-fit: contain;
    object-fit: contain
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    transition: all .3s;
    background-color: transparent
}

.header._header-scroll {
    background-color: #0f1119
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: .625rem;
    padding-bottom: .625rem;
    transition: all .3s
}

._header-scroll .header__container {
    padding-top: .3125rem;
    padding-bottom: .3125rem
}

.header__logo {
    flex: 0 0 15.982906%;
    padding-bottom: 5.299145%;
    position: relative;
    min-height: 3.25rem;
    min-width: 8.75rem;
    z-index: 5
}

.header__logo svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.footer {
    z-index: 50;
    padding-bottom: 3.125rem;
    padding-top: 3.125rem
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer__top:not(:last-child) {
    margin-bottom: 2.5rem
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .625rem
}

.footer__link {
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    color: #2857ff
}

.footer__button {
    display: flex;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    font-weight: 700;
    color: #fff;
    background-color: #ff3e32;
    border: 1px solid #ff3e32;
    border-radius: 9px;
    padding: 18px 52px;
    line-height: 115%;
    transition: all .3s
}

.footer__button--rv {
    color: #ff3e32;
    border: 1px dashed #ff3e32;
    background-color: transparent
}

.footer__logo {
    flex: 0 0 15.982906%;
    padding-bottom: 5.299145%;
    position: relative;
    min-height: 3.25rem;
    min-width: 8.75rem;
    z-index: 5
}

.footer__logo svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.menu-footer__list {
    display: flex
}

.menu-footer__link {
    font-weight: 500;
    line-height: 1.0625rem;
    position: relative
}

.menu-footer__link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all .3s;
    -webkit-transform-origin: left;
    transform-origin: left
}

.no-webp .page__head {
    background: url(../images/head-bg.png) 0 0/cover no-repeat
}

.page__head {
    padding-top: 7.1875rem;
    overflow: hidden
}

.head__container {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 80.6875rem
}

.content-head__title {
    font-weight: 600
}

.content-head__title:not(:last-child) {
    margin-bottom: 1rem
}

.content-head__text {
    max-width: 34.375rem;
    font-size: 24px
}

.content-head__text:not(:last-child) {
    margin-bottom: 1.875rem
}

.content-head__actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap
}

.content-head__button {
    display: flex;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    font-weight: 700;
    color: #fff;
    background-color: #ff3e32;
    border: 1px solid #ff3e32;
    border-radius: 9px;
    padding: 18px 52px;
    line-height: 115%;
    transition: all .3s
}

.content-head__button--rv {
    color: #ff3e32;
    border: 1px dashed #ff3e32;
    background-color: transparent
}

.video {
    flex: 0 0 49.651433%;
    width: 100%;
    position: relative;
    padding-bottom: 38.34237%;
    min-height: 340px
}

.video._play .video__play,
.video._play .video__preview {
    -webkit-transform: scale(0);
    transform: scale(0)
}

.video._play .video__video {
    -webkit-transform: translate(0, -50%) scale(1);
    transform: translate(0, -50%) scale(1)
}

.video__video {
    position: absolute;
    width: 100%;
    height: 57.627119%;
    min-height: 340px;
    z-index: 5;
    top: 50%;
    -webkit-transform: translate(0, -50%) scale(0);
    transform: translate(0, -50%) scale(0);
    left: 0;
    transition: all .3s
}

.video__preview {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    transition: all .3s;
    z-index: 7;
    -webkit-transform: scaleX(1.18) scaleY(1.23);
    transform: scaleX(1.18) scaleY(1.23)
}

.video__play {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 45.254237%;
    height: 45.254237%;
    transition: all .3s;
    z-index: 8
}

.video__play svg {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.video__play svg circle[r="90.75"] {
    transition: all .3s
}

.help {
    position: relative;
    overflow: hidden
}

.help::before {
    content: "";
    position: absolute;
    width: 374px;
    height: 374px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: -35%;
    background-color: #2857ff;
    -webkit-filter: blur(200px);
    filter: blur(200px)
}

.help__container {
    display: grid;
    position: relative;
    z-index: 10
}

.help__title {
    justify-self: center;
    display: inline-block;
    background-color: #2857ff;
    padding: 14px 33px;
    text-align: center;
    border-radius: .5625rem;
    font-family: "TT Norms";
    font-size: 16px;
    line-height: 107.74%
}

.help__title:not(:last-child) {
    margin-bottom: .4375rem
}

.help__subtitle {
    justify-self: center;
    font-family: "TT Norms";
    font-weight: 500;
    font-size: 32px;
    line-height: 107.74%;
    text-align: center;
    max-width: 28.75rem;
    font-weight: 600
}

.help__subtitle:not(:last-child) {
    margin-bottom: 1.125rem
}

.help__items {
    display: flex;
    margin: 0 -10px;
    flex-wrap: wrap
}

.help__items:not(:last-child) {
    border-bottom: 1px solid rgba(22, 29, 66, .16)
}

.help__item {
    flex: 0 1 25%;
    padding: 0 10px;
    display: grid;
    align-items: start;
    align-content: start
}

.help__number {
    text-align: center;
    margin: 0 -10px;
    font-family: Montserrat;
    font-weight: 700;
    font-size: 94px;
    line-height: 122.340426%;
    color: #2857ff;
    position: relative
}

.help__number::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    border: 1px dashed #2857ff
}

.help__number::after {
    content: "";
    position: absolute;
    width: 12.91px;
    height: 12.91px;
    left: 50%;
    bottom: -6px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #fff;
    box-shadow: 0 0 12px 4px #2857ff
}

.help__number:not(:last-child) {
    margin-bottom: 2.125rem
}

.help__title-item {
    font-family: "TT Norms";
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #fff
}

.help__title-item:not(:last-child) {
    margin-bottom: .625rem
}

.help__text {
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

.support {
    position: relative
}

.support::before {
    content: "";
    position: absolute;
    width: 564px;
    height: 564px;
    bottom: -50%;
    right: -74px;
    background: #2857ff;
    -webkit-filter: blur(250px);
    filter: blur(250px)
}

.support__container {
    position: relative;
    z-index: 5
}

.support__body {
    display: flex;
    position: relative
}

.support__body::before {
    content: "";
    position: absolute;
    width: 7.72px;
    height: 149.82px;
    left: -3.5px;
    top: 14.333895%;
    background: #2857ff;
    box-shadow: 0 0 11px #2857ff;
    border-radius: 52px
}

.support__image-block {
    flex: 0 1 48.71%;
    padding: 35px 0 35px 32px;
    overflow: hidden;
    background-color: #23242a;
    border-radius: 35px 0 0 35px
}

.support__image {
    overflow: hidden;
    border-radius: 18px 0 0 18px;
    width: 100%;
    height: 100%;
    position: relative
}

.support__image::before {
    content: "";
    position: absolute;
    width: 53.64px;
    height: 30.77px;
    top: 25px;
    left: 20px;
    background: url(../images/cisco-decor.svg) 0 0 no-repeat;
    z-index: 10
}

.support__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-position: right;
    object-position: right;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 9
}

.support__content {
    padding: 44px 10px 43px 27px;
    border-radius: 0 110px 35px 0;
    flex: 0 1 51.29%;
    background-color: #2857ff
}

.support__title {
    font-family: "TT Norms";
    font-weight: 300;
    font-size: 16px;
    line-height: 17px
}

.support__title:not(:last-child) {
    margin-bottom: .3125rem
}

.support__subtitle {
    font-family: "TT Norms";
    font-weight: 500;
    line-height: 108.333333%
}

.support__subtitle:not(:last-child) {
    margin-bottom: .9375rem
}

.support__info {
    font-family: "TT Norms";
    font-weight: 300;
    font-size: 1rem;
    line-height: 118.75%
}

.support__info:not(:last-child) {
    margin-bottom: 1.875rem
}

.support__items {
    display: flex;
    flex-direction: column;
    row-gap: 1.3125rem
}

.support__items:not(:last-child) {
    margin-bottom: 1.8125rem
}

.support__button {
    border: 1px dashed #fff;
    border-radius: 9px;
    padding: 20px 43px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    transition: all .3s
}

.item-support {
    display: flex;
    -webkit-column-gap: .875rem;
    -moz-column-gap: .875rem;
    column-gap: .875rem
}

.item-support__icon {
    flex: 0 0 26px
}

.item-support__title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.1875rem;
    color: #fff
}

.item-support__title:not(:last-child) {
    margin-bottom: .1875rem
}

.item-support__text {
    font-size: 1rem;
    line-height: 1.1875rem;
    color: #fff
}

.kpi {
    background-color: #2857ff
}

.kpi__container {
    padding-top: 2rem;
    padding-bottom: 2.0625rem;
    max-width: 80.6875rem
}

.kpi__title {
    font-weight: 500
}

.kpi__title:not(:last-child) {
    margin-bottom: 1.375rem
}

.kpi__items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    row-gap: 1.875rem;
    justify-content: center;
    align-items: center
}

.kpi__item {
    flex: 0 1 16.666%;
    padding: 0 10px
}

.kpi__image {
    position: relative;
    min-height: 40px
}

.kpi__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    min-height: 40px;
    -o-object-fit: contain;
    object-fit: contain
}

.steps {
    position: relative
}

.steps__container {
    display: grid
}

.steps__title {
    display: inline-flex;
    justify-self: center;
    background: #2857ff;
    border-radius: 9px;
    padding: 14px 44px;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 107.74%;
    text-align: center
}

.steps__title:not(:last-child) {
    margin-bottom: .4375rem
}

.steps__subtitle {
    justify-self: center;
    text-align: center;
    max-width: 28.75rem;
    font-weight: 600;
    font-family: "TT Norms";
    font-weight: 500;
    line-height: 107.74%;
    text-align: center
}

.steps__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -15px;
    row-gap: 2.625rem
}

.steps__item {
    padding: 0 15px;
    flex: 0 1 33.333%;
    display: flex
}

.steps__item--center {
    align-self: center
}

.steps__actions {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    margin-top: 2.0625rem;
    gap: 2.0625rem
}

.steps__button {
    justify-self: center;
    display: flex;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem;
    font-weight: 700;
    color: #fff;
    background-color: #ff3e32;
    border: 1px solid #ff3e32;
    border-radius: 9px;
    padding: 18px 52px;
    line-height: 115%;
    transition: all .3s;
    position: relative
}

.steps__button--rv {
    color: #ff3e32;
    border: 1px dashed #ff3e32;
    background-color: transparent
}

.item-step {
    position: relative;
    background-color: #23242a;
    border-radius: 18px;
    padding: 30px 40px 35px 32px;
    height: 100%
}

.item-step::before {
    content: "";
    position: absolute;
    width: 4.06px;
    height: 78.83px;
    top: 50%;
    left: -2px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: #2857ff;
    box-shadow: 0 0 11px #2857ff;
    border-radius: 52px
}

.item-step__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .625rem
}

.item-step__header:not(:last-child) {
    margin-bottom: .625rem
}

.item-step__title {
    font-family: Montserrat;
    font-weight: 700;
    line-height: 121.875%;
    color: rgba(255, 255, 255, .16)
}

.item-step__title:not(:last-child) {
    margin-bottom: .4375rem
}

.item-step__subtitle {
    font-family: "TT Norms";
    font-weight: 700;
    font-size: 16px;
    line-height: 19px
}

.item-step__subtitle:not(:last-child) {
    margin-bottom: .4375rem
}

.item-step__text {
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

.reviews {
    position: relative
}

.reviews::before {
    content: "";
    position: absolute;
    width: 374px;
    height: 374px;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background-color: #2857ff;
    -webkit-filter: blur(200px);
    filter: blur(200px)
}

.reviews__container {
    display: grid;
    position: relative
}

.reviews__title {
    justify-self: center;
    background-color: #2857ff;
    border-radius: 9px;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 107.74%;
    text-align: center;
    padding: 14px 32px
}

.reviews__title:not(:last-child) {
    margin-bottom: .4375rem
}

.reviews__subtitle {
    justify-self: center;
    max-width: 31.25rem;
    font-family: "TT Norms";
    font-weight: 500;
    line-height: 107.74%;
    text-align: center
}

.reviews__slider {
    position: relative
}

.reviews__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    -webkit-column-gap: .5rem;
    -moz-column-gap: .5rem;
    column-gap: .5rem
}

.swiper-button-next__icon svg,
.swiper-button-prev__icon svg {
    pointer-events: none
}

.swiper-button-next__icon svg circle,
.swiper-button-prev__icon svg circle {
    transition: all .3s;
    fill: transparent
}

.card-slider__items {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
    row-gap: 1.25rem
}

.card-slider__item {
    flex: 0 1 59%;
    padding: 0 15px
}

.card-slider__body-image {
    display: flex;
    -webkit-column-gap: 1.0625rem;
    -moz-column-gap: 1.0625rem;
    column-gap: 1.0625rem
}

.card-slider__titles {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 1.25rem
}

.card-slider__name {
    font-weight: 700;
    color: #112643
}

.card-slider__name:not(:last-child) {
    margin-bottom: .1875rem
}

.card-slider__year {
    color: #112643
}

.card-slider__bottom {
    font-size: 20px;
    color: #42a87b
}

.card-slider__bottom mark {
    background: 0 0;
    font-weight: 700;
    color: #42a87b
}

.card-slider__text {
    font-size: 16px;
    line-height: 19px;
    color: #112643
}

.card-slider__text:not(:last-child) {
    margin-bottom: 1.5625rem
}

.ask {
    position: relative
}

.ask::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -23.22695%;
    width: 564px;
    height: 564px;
    background-color: #2857ff;
    -webkit-filter: blur(250px);
    filter: blur(250px)
}

.ask__container {
    display: grid
}

.ask__title {
    justify-self: center;
    background-color: #2857ff;
    border-radius: 9px;
    padding: 14px 40px;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 107.74%;
    text-align: center
}

.ask__title:not(:last-child) {
    margin-bottom: .4375rem
}

.ask__subtitle {
    font-family: "TT Norms";
    font-weight: 500;
    line-height: 107.74%;
    text-align: center;
    justify-self: center;
    max-width: 40.625rem
}

.no-webp .ask__slider-container {
    background: url(../images/bg.png) 0 0/cover no-repeat
}

.ask__slider-container {
    min-width: 0;
    margin: 0 auto;
    max-width: 51.875rem;
    position: relative;
    width: 100%;
    border-radius: 1.125rem
}

.ask__slider-container::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 81.25%;
    top: 50%;
    left: -2px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: #2857ff;
    box-shadow: 0 0 11px #2857ff;
    border-radius: 52px
}

.ask__slider-container::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 81.25%;
    top: 50%;
    right: -2px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: #2857ff;
    box-shadow: 0 0 11px #2857ff;
    border-radius: 52px
}

.ask__slider {
    width: 100%
}

.item-ask {
    padding: 2.5rem .9375rem;
    height: 100%;
    max-width: 37.5rem;
    margin: 0 auto;
    text-align: center;
    display: grid;
    justify-content: center;
    align-items: center
}

.item-ask__ask-number {
    position: relative;
    z-index: 5;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
    font-feature-settings: "pnum" on, "lnum" on
}

.item-ask__ask-number:not(:last-child) {
    margin-bottom: .25rem
}

.item-ask__ask {
    position: relative;
    z-index: 5;
    font-family: "TT Norms";
    font-weight: 700;
    font-size: 24px;
    line-height: 116.666667%
}

.item-ask__ask:not(:last-child) {
    margin-bottom: 1.625rem
}

.item-ask__submit {
    margin: 0 auto;
    z-index: 5;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    font-weight: 700;
    background-color: #ff3e32;
    border: 1px solid #ff3e32;
    padding: 9px 34px;
    border-radius: 9px;
    font-family: "TT Norms";
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    transition: all .3s
}

.ask-swiper-button-next {
    margin: 0 auto;
    z-index: 5;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    font-weight: 700;
    background-color: #ff3e32;
    border: 1px solid #ff3e32;
    padding: 9px 34px;
    border-radius: 9px;
    font-family: "TT Norms";
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    transition: all .3s
}

.faq {
    position: relative
}

.faq__container {
    display: grid
}

.faq__title {
    justify-self: center;
    text-align: center;
    background-color: #2857ff;
    padding: 14px 103px;
    border-radius: 9px;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 107.74%
}

.faq__title:not(:last-child) {
    margin-bottom: .25rem
}

.faq__subtitle {
    font-family: "TT Norms";
    font-weight: 500;
    line-height: 107.74%;
    text-align: center;
    color: #fff
}

.faq__item {
    display: flex;
    margin: 0 -15px;
    padding-bottom: 1.25rem;
    border-top: 1px solid rgba(22, 29, 66, .16);
    padding-top: 1.6875rem
}

.faq__item:last-child {
    border-bottom: 1px solid rgba(22, 29, 66, .16)
}

.faq__ask-block {
    flex: 0 1 55%;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 50px 1fr;
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem
}

.faq__ask {
    font-weight: 700;
    color: #112643
}

.faq__answer {
    flex: 0 1 45%;
    padding: 0 15px;
    font-size: 16px;
    line-height: 19px;
    color: #112643
}

.feedback__container {
    max-width: 970px
}

.no-webp .feedback__body {
    background: url(../images/feedback-bg.png) 0 0/cover no-repeat
}

.feedback__body {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    border-radius: 20px
}

.feedback__content {
    padding: 0 15px;
    padding-bottom: 1.5625rem;
    flex: 0 1 46.410256%
}

.feedback__form {
    padding: 0 15px;
    flex: 0 1 53.589744%;
    max-width: 46.25rem;
    margin: 0 auto
}

.content-feedback__title {
    font-family: "TT Norms";
    font-weight: 500;
    line-height: 107.74%;
    text-align: center;
    max-width: 45rem;
    margin: 0 auto;
    font-weight: 600
}

.content-feedback__title:not(:last-child) {
    margin-bottom: 1rem
}

.content-feedback__subtitle {
    font-family: "TT Norms";
    font-weight: 400;
    line-height: 107.74%;
    text-align: center
}

.form-feedback__items {
    display: flex;
    margin: 0 -6px;
    flex-wrap: wrap;
    row-gap: .75rem
}

.form-feedback__items:not(:last-child) {
    margin-bottom: .75rem
}

.form-feedback__item {
    flex: 0 1 50%;
    padding: 0 6px;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

.form-feedback__item--widthfull {
    flex: 0 1 50%
}

.form-feedback__item--widthauto {
    flex: 0 1 50%
}

.form-feedback__actions {
    display: flex;
    align-items: center;
    margin-top: 2.0625rem;
    gap: 2.0625rem
}

.form-feedback__submit {
    margin: 0 auto;
    z-index: 5;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem;
    font-weight: 700;
    background-color: #ff3e32;
    border: 1px solid #ff3e32;
    padding: 18px 32px;
    border-radius: 9px;
    font-family: "TT Norms";
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    transition: all .3s;
    font-weight: 700;
    font-size: 20px;
    line-height: 23px
}

#tel.input::-webkit-input-placeholder {
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

#tel.input:-ms-input-placeholder {
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

#tel.input::-ms-input-placeholder {
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

#tel.input::placeholder {
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

.iti {
    display: block !important;
    color: #fff;
    font-family: "TT Norms";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
    background-color: transparent !important;
    border-radius: 0 !important
}

.iti__country-list {
    font-family: "TT Norms";
    font-weight: 400;
    color: #000;
    font-size: 16px;
    line-height: 19px;
    position: relative;
    z-index: 55;
    max-width: 350px;
    width: 100%;
    overflow-x: auto;
}

@media screen and (min-width: 768px) {
    .iti__country-list {
        height: 10em;
    }
}

.swiper {
    overflow: hidden
}

.swiper-initialized {
    touch-action: pan-y
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    display: flex;
    position: relative
}

.swiper-vertical .swiper-wrapper {
    flex-direction: column
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start
}

.swiper-initialized .swiper-slide {
    flex-shrink: 0
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-button-lock {
    display: none !important
}

@media (min-width:47.99875em) {
    .steps__button {
        white-space: nowrap
    }

    .form-feedback__submit {
        white-space: nowrap
    }
}

@media (min-width:61.99875em) {
    .card-slider__item:nth-child(1) {
        flex: 0 0 40.42735%
    }
}

@media (min-width:75em) {
    .menu__list {
        -webkit-column-gap: 3.125rem;
        -moz-column-gap: 3.125rem;
        column-gap: 3.125rem
    }

    .footer__button {
        font-size: 1.25rem
    }

    .menu-footer__list {
        -webkit-column-gap: 3.125rem;
        -moz-column-gap: 3.125rem;
        column-gap: 3.125rem
    }

    .page__head {
        padding-bottom: 3.4375rem
    }

    .page__help {
        padding-bottom: 5.4375rem
    }

    .page__steps {
        padding-top: 7.875rem
    }

    .page__steps {
        padding-bottom: 3.125rem
    }

    .page__reviews {
        padding-bottom: 3.125rem
    }

    .page__reviews {
        padding-top: 3.125rem
    }

    .page__ask {
        padding-top: 5rem
    }

    .page__ask {
        padding-bottom: 3.125rem
    }

    .page__faq {
        padding-top: 6.25rem
    }

    .page__faq {
        padding-bottom: 4.6875rem
    }

    .content-head {
        padding-bottom: 4.3125rem
    }

    .content-head__title {
        font-size: 3rem
    }

    .content-head__text {
        font-size: 1.5rem
    }

    .content-head__button {
        font-size: 1.25rem
    }

    .help__container {
        padding-top: 4.1875rem
    }

    .help__subtitle {
        font-size: 2rem
    }

    .help__items {
        padding-bottom: 1.6875rem
    }

    .help__items:not(:last-child) {
        margin-bottom: 1.75rem
    }

    .help__item {
        -webkit-column-gap: 2.625rem;
        -moz-column-gap: 2.625rem;
        column-gap: 2.625rem
    }

    .help__number {
        font-size: 5.875rem
    }

    .help__title-item {
        padding-left: 4.6875rem
    }

    .help__text {
        padding-left: 4.6875rem
    }

    .support__subtitle {
        font-size: 2.25rem
    }

    .kpi__title {
        font-size: 1.5rem
    }

    .steps__subtitle {
        font-size: 2rem
    }

    .steps__subtitle {
        font-size: 2.25rem
    }

    .steps__subtitle:not(:last-child) {
        margin-bottom: 2.9375rem
    }

    .steps__button {
        font-size: 1.25rem
    }

    .item-step__title {
        font-size: 4rem
    }

    .reviews__subtitle {
        font-size: 2rem
    }

    .reviews__subtitle:not(:last-child) {
        margin-bottom: 2.9375rem
    }

    .card-slider__name {
        font-size: 1.5rem
    }

    .card-slider__year {
        font-size: 1.25rem
    }

    .card-slider__bottom {
        font-size: 1.25rem
    }

    .ask__subtitle {
        font-size: 2rem
    }

    .ask__subtitle {
        font-size: 2.25rem
    }

    .ask__subtitle:not(:last-child) {
        margin-bottom: 2.6875rem
    }

    .faq__subtitle {
        font-size: 2rem
    }

    .faq__subtitle:not(:last-child) {
        margin-bottom: 5.4375rem
    }

    .faq__ask {
        font-size: 1.5rem
    }

    .content-feedback__title {
        font-size: 3rem
    }

    .content-feedback__subtitle {
        font-size: 1.5rem
    }
}

@media (max-width:62em) {
    .page__head {
        padding-bottom: 1.875rem
    }

    .content-head {
        padding-bottom: 1.875rem
    }
}

@media (max-width:48em) {
    .menu__list {
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem
    }

    .menu-footer__list {
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem
    }
}

@media (max-width:30em) {
    .footer__button {
        font-size: 1rem
    }

    .page__help {
        padding-bottom: 1.875rem
    }

    .page__steps {
        padding-top: 2.5rem
    }

    .page__steps {
        padding-bottom: 1.25rem
    }

    .page__reviews {
        padding-bottom: 1.875rem
    }

    .page__reviews {
        padding-top: 1.875rem
    }

    .page__ask {
        padding-top: 1.875rem
    }

    .page__ask {
        padding-bottom: 1.875rem
    }

    .page__faq {
        padding-top: 1.875rem
    }

    .page__faq {
        padding-bottom: 1.875rem
    }

    .content-head__title {
        font-size: 1.5rem
    }

    .content-head__text {
        font-size: 1.125rem
    }

    .content-head__button {
        font-size: 1rem
    }

    .help__container {
        padding-top: 1.875rem
    }

    .help__subtitle {
        font-size: 1.5rem
    }

    .help__items {
        padding-bottom: .9375rem
    }

    .help__items:not(:last-child) {
        margin-bottom: 1.25rem
    }

    .help__item {
        -webkit-column-gap: .9375rem;
        -moz-column-gap: .9375rem;
        column-gap: .9375rem
    }

    .help__number {
        font-size: 3.5rem
    }

    .help__title-item {
        padding-left: 1.25rem
    }

    .help__text {
        padding-left: 1.25rem
    }

    .support__subtitle {
        font-size: 1.5rem
    }

    .kpi__title {
        font-size: 1.125rem
    }

    .steps__subtitle {
        font-size: 1.625rem
    }

    .steps__subtitle {
        font-size: 1.5rem
    }

    .steps__subtitle:not(:last-child) {
        margin-bottom: 1.875rem
    }

    .steps__button {
        font-size: 1rem
    }

    .item-step__title {
        font-size: 2.25rem
    }

    .reviews__subtitle {
        font-size: 1.75rem
    }

    .reviews__subtitle:not(:last-child) {
        margin-bottom: 1.875rem
    }

    .card-slider__name {
        font-size: 1.25rem
    }

    .card-slider__year {
        font-size: 1.125rem
    }

    .card-slider__bottom {
        font-size: 1.125rem
    }

    .ask__subtitle {
        font-size: 1.75rem
    }

    .ask__subtitle {
        font-size: 1.5rem
    }

    .ask__subtitle:not(:last-child) {
        margin-bottom: 1.875rem
    }

    .faq__subtitle {
        font-size: 1.625rem
    }

    .faq__subtitle:not(:last-child) {
        margin-bottom: 2.5rem
    }

    .faq__ask {
        font-size: 1.125rem
    }

    .content-feedback__title {
        font-size: 1.5rem
    }

    .content-feedback__subtitle {
        font-size: 1.125rem
    }
}

@media (max-width:61.99875em) {
    .tabs {
        flex-direction: column
    }

    .tabs__navigation {
        display: flex;
        width: 100%
    }

    .tabs__title {
        width: 100%
    }

    .head__container {
        flex-direction: column
    }

    .help__item {
        flex: 0 1 50%
    }

    .support__image-block {
        display: none
    }

    .support__content {
        flex: 1 1 100%
    }

    .steps__item {
        flex: 0 1 50%
    }

    .reviews__actions {
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0)
    }

    .card-slider__items {
        justify-content: center;
        align-items: center
    }

    .card-slider__item:nth-child(1) {
        display: flex;
        justify-content: center;
        align-items: center
    }

    .card-slider__item:nth-child(2) {
        padding-bottom: 5rem
    }

    .card-slider__item {
        flex: 1 1 100%
    }
}

@media (max-width:47.99875em) {
    .menu__body {
        position: fixed;
        width: 100%;
        height: 100%;
        left: -100%;
        top: 0;
        overflow: auto;
        padding: 5.625rem .9375rem 1.875rem .9375rem;
        transition: left .3s;
        background-color: #0f1119
    }

    .menu__body::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 4.5rem;
        background-color: #0f1119;
        left: -100%;
        top: 0;
        transition: left .3s;
        z-index: 2
    }

    .menu-open .menu__body {
        left: 0
    }

    .menu-open .menu__body::before {
        left: 0
    }

    .menu__list {
        flex-direction: column;
        row-gap: 1.5625rem;
        text-align: center
    }

    .icon-menu {
        display: block;
        position: relative;
        width: 1.875rem;
        height: 1.125rem;
        z-index: 5
    }

    .icon-menu span,
    .icon-menu::after,
    .icon-menu::before {
        content: "";
        transition: all .3s ease 0s;
        right: 0;
        position: absolute;
        width: 100%;
        height: .125rem;
        background-color: #fff
    }

    .icon-menu::before {
        top: 0
    }

    .icon-menu::after {
        bottom: 0
    }

    .icon-menu span {
        top: calc(50% - .0625rem)
    }

    .menu-open .icon-menu span {
        width: 0
    }

    .menu-open .icon-menu::before {
        top: calc(50% - .0625rem);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    .menu-open .icon-menu::after {
        bottom: calc(50% - .0625rem);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .tabs__navigation {
        flex-direction: column;
        flex: 1 1 100%
    }

    .footer__top {
        flex-direction: column;
        row-gap: .625rem
    }

    .footer__bottom {
        flex-direction: column-reverse;
        row-gap: .625rem
    }

    .menu-footer__list {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        row-gap: .625rem
    }

    .help__item {
        flex: 1 1 100%
    }

    .help__item:not(:last-child) {
        border-bottom: 1px solid rgba(22, 29, 66, .16)
    }

    .kpi__item {
        flex: 0 1 33.333%
    }

    .steps__item {
        flex: 1 1 100%
    }

    .faq__item {
        flex-direction: column;
        row-gap: .9375rem
    }

    .form-feedback__inputs:not(:last-child) {
        margin-bottom: .75rem
    }
}

@media (max-width:47.99875em) and (any-hover:none) {
    .icon-menu {
        cursor: default
    }
}

@media (max-width:47.99875em) and (max-width:30em) {
    .help__item:not(:last-child) {
        padding-bottom: .9375rem
    }

    .help__item:not(:last-child) {
        margin-bottom: 1.25rem
    }
}

@media (max-width:29.99875em) {
    .video {
        min-height: 250px
    }

    .video__video {
        min-height: 250px
    }

    .kpi__item {
        flex: 0 1 50%
    }

    .card-slider__body-image {
        flex-direction: column;
        text-align: center;
        row-gap: .625rem
    }

    .form-feedback__item {
        flex: 1 1 100%
    }
}

@media (min-width:48em) and (max-width:75em) {
    @supports ((-moz-column-gap:clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem)) or (column-gap:clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem))) {
        .menu__list {
            -webkit-column-gap: clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem);
            -moz-column-gap: clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem);
            column-gap: clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem)
        }
    }

    @supports not ((-moz-column-gap:clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem)) or (column-gap:clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem))) {
        .menu__list {
            -webkit-column-gap: calc(1.25rem + 1.875 * (100vw - 48rem)/ 27);
            -moz-column-gap: calc(1.25rem + 1.875 * (100vw - 48rem)/ 27);
            column-gap: calc(1.25rem + 1.875 * (100vw - 48rem)/ 27)
        }
    }

    @supports ((-moz-column-gap:clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem)) or (column-gap:clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem))) {
        .menu-footer__list {
            -webkit-column-gap: clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem);
            -moz-column-gap: clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem);
            column-gap: clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem)
        }
    }

    @supports not ((-moz-column-gap:clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem)) or (column-gap:clamp(1.25rem, -2.0833333333rem + 6.9444444444vw, 3.125rem))) {
        .menu-footer__list {
            -webkit-column-gap: calc(1.25rem + 1.875 * (100vw - 48rem)/ 27);
            -moz-column-gap: calc(1.25rem + 1.875 * (100vw - 48rem)/ 27);
            column-gap: calc(1.25rem + 1.875 * (100vw - 48rem)/ 27)
        }
    }
}

@media (min-width:30em) and (max-width:75em) {
    @supports (font-size:clamp(1rem, 0.8333333333rem + 0.5555555556vw, 1.25rem)) {
        .footer__button {
            font-size: clamp(1rem, .8333333333rem + .5555555556vw, 1.25rem)
        }
    }

    @supports not (font-size:clamp(1rem, 0.8333333333rem + 0.5555555556vw, 1.25rem)) {
        .footer__button {
            font-size: calc(1rem + .25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-bottom:clamp(1.875rem, -0.5rem + 7.9166666667vw, 5.4375rem)) {
        .page__help {
            padding-bottom: clamp(1.875rem, -.5rem + 7.9166666667vw, 5.4375rem)
        }
    }

    @supports not (padding-bottom:clamp(1.875rem, -0.5rem + 7.9166666667vw, 5.4375rem)) {
        .page__help {
            padding-bottom: calc(1.875rem + 3.5625 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-top:clamp(2.5rem, -1.0833333333rem + 11.9444444444vw, 7.875rem)) {
        .page__steps {
            padding-top: clamp(2.5rem, -1.0833333333rem + 11.9444444444vw, 7.875rem)
        }
    }

    @supports not (padding-top:clamp(2.5rem, -1.0833333333rem + 11.9444444444vw, 7.875rem)) {
        .page__steps {
            padding-top: calc(2.5rem + 5.375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-bottom:clamp(1.25rem, 0.0000000625rem + 4.1666666667vw, 3.125rem)) {
        .page__steps {
            padding-bottom: clamp(1.25rem, .0000000625rem + 4.1666666667vw, 3.125rem)
        }
    }

    @supports not (padding-bottom:clamp(1.25rem, 0.0000000625rem + 4.1666666667vw, 3.125rem)) {
        .page__steps {
            padding-bottom: calc(1.25rem + 1.875 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-bottom:clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)) {
        .page__reviews {
            padding-bottom: clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)
        }
    }

    @supports not (padding-bottom:clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)) {
        .page__reviews {
            padding-bottom: calc(1.875rem + 1.25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-top:clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)) {
        .page__reviews {
            padding-top: clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)
        }
    }

    @supports not (padding-top:clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)) {
        .page__reviews {
            padding-top: calc(1.875rem + 1.25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-top:clamp(1.875rem, -0.2083333333rem + 6.9444444444vw, 5rem)) {
        .page__ask {
            padding-top: clamp(1.875rem, -.2083333333rem + 6.9444444444vw, 5rem)
        }
    }

    @supports not (padding-top:clamp(1.875rem, -0.2083333333rem + 6.9444444444vw, 5rem)) {
        .page__ask {
            padding-top: calc(1.875rem + 3.125 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-bottom:clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)) {
        .page__ask {
            padding-bottom: clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)
        }
    }

    @supports not (padding-bottom:clamp(1.875rem, 1.0416666667rem + 2.7777777778vw, 3.125rem)) {
        .page__ask {
            padding-bottom: calc(1.875rem + 1.25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-top:clamp(1.875rem, -1.0416666667rem + 9.7222222222vw, 6.25rem)) {
        .page__faq {
            padding-top: clamp(1.875rem, -1.0416666667rem + 9.7222222222vw, 6.25rem)
        }
    }

    @supports not (padding-top:clamp(1.875rem, -1.0416666667rem + 9.7222222222vw, 6.25rem)) {
        .page__faq {
            padding-top: calc(1.875rem + 4.375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-bottom:clamp(1.875rem, 0.0000000625rem + 6.25vw, 4.6875rem)) {
        .page__faq {
            padding-bottom: clamp(1.875rem, .0000000625rem + 6.25vw, 4.6875rem)
        }
    }

    @supports not (padding-bottom:clamp(1.875rem, 0.0000000625rem + 6.25vw, 4.6875rem)) {
        .page__faq {
            padding-bottom: calc(1.875rem + 2.8125 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.5rem, 0.5rem + 3.3333333333vw, 3rem)) {
        .content-head__title {
            font-size: clamp(1.5rem, .5rem + 3.3333333333vw, 3rem)
        }
    }

    @supports not (font-size:clamp(1.5rem, 0.5rem + 3.3333333333vw, 3rem)) {
        .content-head__title {
            font-size: calc(1.5rem + 1.5 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.125rem, 0.875rem + 0.8333333333vw, 1.5rem)) {
        .content-head__text {
            font-size: clamp(1.125rem, .875rem + .8333333333vw, 1.5rem)
        }
    }

    @supports not (font-size:clamp(1.125rem, 0.875rem + 0.8333333333vw, 1.5rem)) {
        .content-head__text {
            font-size: calc(1.125rem + .375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1rem, 0.8333333333rem + 0.5555555556vw, 1.25rem)) {
        .content-head__button {
            font-size: clamp(1rem, .8333333333rem + .5555555556vw, 1.25rem)
        }
    }

    @supports not (font-size:clamp(1rem, 0.8333333333rem + 0.5555555556vw, 1.25rem)) {
        .content-head__button {
            font-size: calc(1rem + .25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-top:clamp(1.875rem, 0.3333333333rem + 5.1388888889vw, 4.1875rem)) {
        .help__container {
            padding-top: clamp(1.875rem, .3333333333rem + 5.1388888889vw, 4.1875rem)
        }
    }

    @supports not (padding-top:clamp(1.875rem, 0.3333333333rem + 5.1388888889vw, 4.1875rem)) {
        .help__container {
            padding-top: calc(1.875rem + 2.3125 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.5rem, 1.1666666667rem + 1.1111111111vw, 2rem)) {
        .help__subtitle {
            font-size: clamp(1.5rem, 1.1666666667rem + 1.1111111111vw, 2rem)
        }
    }

    @supports not (font-size:clamp(1.5rem, 1.1666666667rem + 1.1111111111vw, 2rem)) {
        .help__subtitle {
            font-size: calc(1.5rem + .5 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-bottom:clamp(0.9375rem, 0.4375rem + 1.6666666667vw, 1.6875rem)) {
        .help__items {
            padding-bottom: clamp(.9375rem, .4375rem + 1.6666666667vw, 1.6875rem)
        }
    }

    @supports not (padding-bottom:clamp(0.9375rem, 0.4375rem + 1.6666666667vw, 1.6875rem)) {
        .help__items {
            padding-bottom: calc(.9375rem + .75 * (100vw - 30rem)/ 45)
        }
    }

    @supports (margin-bottom:clamp(1.25rem, 0.9166666667rem + 1.1111111111vw, 1.75rem)) {
        .help__items:not(:last-child) {
            margin-bottom: clamp(1.25rem, .9166666667rem + 1.1111111111vw, 1.75rem)
        }
    }

    @supports not (margin-bottom:clamp(1.25rem, 0.9166666667rem + 1.1111111111vw, 1.75rem)) {
        .help__items:not(:last-child) {
            margin-bottom: calc(1.25rem + .5 * (100vw - 30rem)/ 45)
        }
    }

    @supports ((-moz-column-gap:clamp(0.9375rem, -0.1875rem + 3.75vw, 2.625rem)) or (column-gap:clamp(0.9375rem, -0.1875rem + 3.75vw, 2.625rem))) {
        .help__item {
            -webkit-column-gap: clamp(.9375rem, -.1875rem + 3.75vw, 2.625rem);
            -moz-column-gap: clamp(.9375rem, -.1875rem + 3.75vw, 2.625rem);
            column-gap: clamp(.9375rem, -.1875rem + 3.75vw, 2.625rem)
        }
    }

    @supports not ((-moz-column-gap:clamp(0.9375rem, -0.1875rem + 3.75vw, 2.625rem)) or (column-gap:clamp(0.9375rem, -0.1875rem + 3.75vw, 2.625rem))) {
        .help__item {
            -webkit-column-gap: calc(.9375rem + 1.6875 * (100vw - 30rem)/ 45);
            -moz-column-gap: calc(.9375rem + 1.6875 * (100vw - 30rem)/ 45);
            column-gap: calc(.9375rem + 1.6875 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(3.5rem, 1.9166666667rem + 5.2777777778vw, 5.875rem)) {
        .help__number {
            font-size: clamp(3.5rem, 1.9166666667rem + 5.2777777778vw, 5.875rem)
        }
    }

    @supports not (font-size:clamp(3.5rem, 1.9166666667rem + 5.2777777778vw, 5.875rem)) {
        .help__number {
            font-size: calc(3.5rem + 2.375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-left:clamp(1.25rem, -1.0416666667rem + 7.6388888889vw, 4.6875rem)) {
        .help__title-item {
            padding-left: clamp(1.25rem, -1.0416666667rem + 7.6388888889vw, 4.6875rem)
        }
    }

    @supports not (padding-left:clamp(1.25rem, -1.0416666667rem + 7.6388888889vw, 4.6875rem)) {
        .help__title-item {
            padding-left: calc(1.25rem + 3.4375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (padding-left:clamp(1.25rem, -1.0416666667rem + 7.6388888889vw, 4.6875rem)) {
        .help__text {
            padding-left: clamp(1.25rem, -1.0416666667rem + 7.6388888889vw, 4.6875rem)
        }
    }

    @supports not (padding-left:clamp(1.25rem, -1.0416666667rem + 7.6388888889vw, 4.6875rem)) {
        .help__text {
            padding-left: calc(1.25rem + 3.4375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)) {
        .support__subtitle {
            font-size: clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)
        }
    }

    @supports not (font-size:clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)) {
        .support__subtitle {
            font-size: calc(1.5rem + .75 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.125rem, 0.875rem + 0.8333333333vw, 1.5rem)) {
        .kpi__title {
            font-size: clamp(1.125rem, .875rem + .8333333333vw, 1.5rem)
        }
    }

    @supports not (font-size:clamp(1.125rem, 0.875rem + 0.8333333333vw, 1.5rem)) {
        .kpi__title {
            font-size: calc(1.125rem + .375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.625rem, 1.375rem + 0.8333333333vw, 2rem)) {
        .steps__subtitle {
            font-size: clamp(1.625rem, 1.375rem + .8333333333vw, 2rem)
        }
    }

    @supports not (font-size:clamp(1.625rem, 1.375rem + 0.8333333333vw, 2rem)) {
        .steps__subtitle {
            font-size: calc(1.625rem + .375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)) {
        .steps__subtitle {
            font-size: clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)
        }
    }

    @supports not (font-size:clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)) {
        .steps__subtitle {
            font-size: calc(1.5rem + .75 * (100vw - 30rem)/ 45)
        }
    }

    @supports (margin-bottom:clamp(1.875rem, 1.1666666667rem + 2.3611111111vw, 2.9375rem)) {
        .steps__subtitle:not(:last-child) {
            margin-bottom: clamp(1.875rem, 1.1666666667rem + 2.3611111111vw, 2.9375rem)
        }
    }

    @supports not (margin-bottom:clamp(1.875rem, 1.1666666667rem + 2.3611111111vw, 2.9375rem)) {
        .steps__subtitle:not(:last-child) {
            margin-bottom: calc(1.875rem + 1.0625 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1rem, 0.8333333333rem + 0.5555555556vw, 1.25rem)) {
        .steps__button {
            font-size: clamp(1rem, .8333333333rem + .5555555556vw, 1.25rem)
        }
    }

    @supports not (font-size:clamp(1rem, 0.8333333333rem + 0.5555555556vw, 1.25rem)) {
        .steps__button {
            font-size: calc(1rem + .25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(2.25rem, 1.0833333333rem + 3.8888888889vw, 4rem)) {
        .item-step__title {
            font-size: clamp(2.25rem, 1.0833333333rem + 3.8888888889vw, 4rem)
        }
    }

    @supports not (font-size:clamp(2.25rem, 1.0833333333rem + 3.8888888889vw, 4rem)) {
        .item-step__title {
            font-size: calc(2.25rem + 1.75 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.75rem, 1.5833333333rem + 0.5555555556vw, 2rem)) {
        .reviews__subtitle {
            font-size: clamp(1.75rem, 1.5833333333rem + .5555555556vw, 2rem)
        }
    }

    @supports not (font-size:clamp(1.75rem, 1.5833333333rem + 0.5555555556vw, 2rem)) {
        .reviews__subtitle {
            font-size: calc(1.75rem + .25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (margin-bottom:clamp(1.875rem, 1.1666666667rem + 2.3611111111vw, 2.9375rem)) {
        .reviews__subtitle:not(:last-child) {
            margin-bottom: clamp(1.875rem, 1.1666666667rem + 2.3611111111vw, 2.9375rem)
        }
    }

    @supports not (margin-bottom:clamp(1.875rem, 1.1666666667rem + 2.3611111111vw, 2.9375rem)) {
        .reviews__subtitle:not(:last-child) {
            margin-bottom: calc(1.875rem + 1.0625 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.25rem, 1.0833333333rem + 0.5555555556vw, 1.5rem)) {
        .card-slider__name {
            font-size: clamp(1.25rem, 1.0833333333rem + .5555555556vw, 1.5rem)
        }
    }

    @supports not (font-size:clamp(1.25rem, 1.0833333333rem + 0.5555555556vw, 1.5rem)) {
        .card-slider__name {
            font-size: calc(1.25rem + .25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.125rem, 1.0416666667rem + 0.2777777778vw, 1.25rem)) {
        .card-slider__year {
            font-size: clamp(1.125rem, 1.0416666667rem + .2777777778vw, 1.25rem)
        }
    }

    @supports not (font-size:clamp(1.125rem, 1.0416666667rem + 0.2777777778vw, 1.25rem)) {
        .card-slider__year {
            font-size: calc(1.125rem + .125 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.125rem, 1.0416666667rem + 0.2777777778vw, 1.25rem)) {
        .card-slider__bottom {
            font-size: clamp(1.125rem, 1.0416666667rem + .2777777778vw, 1.25rem)
        }
    }

    @supports not (font-size:clamp(1.125rem, 1.0416666667rem + 0.2777777778vw, 1.25rem)) {
        .card-slider__bottom {
            font-size: calc(1.125rem + .125 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.75rem, 1.5833333333rem + 0.5555555556vw, 2rem)) {
        .ask__subtitle {
            font-size: clamp(1.75rem, 1.5833333333rem + .5555555556vw, 2rem)
        }
    }

    @supports not (font-size:clamp(1.75rem, 1.5833333333rem + 0.5555555556vw, 2rem)) {
        .ask__subtitle {
            font-size: calc(1.75rem + .25 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)) {
        .ask__subtitle {
            font-size: clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)
        }
    }

    @supports not (font-size:clamp(1.5rem, 1rem + 1.6666666667vw, 2.25rem)) {
        .ask__subtitle {
            font-size: calc(1.5rem + .75 * (100vw - 30rem)/ 45)
        }
    }

    @supports (margin-bottom:clamp(1.875rem, 1.3333333333rem + 1.8055555556vw, 2.6875rem)) {
        .ask__subtitle:not(:last-child) {
            margin-bottom: clamp(1.875rem, 1.3333333333rem + 1.8055555556vw, 2.6875rem)
        }
    }

    @supports not (margin-bottom:clamp(1.875rem, 1.3333333333rem + 1.8055555556vw, 2.6875rem)) {
        .ask__subtitle:not(:last-child) {
            margin-bottom: calc(1.875rem + .8125 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.625rem, 1.375rem + 0.8333333333vw, 2rem)) {
        .faq__subtitle {
            font-size: clamp(1.625rem, 1.375rem + .8333333333vw, 2rem)
        }
    }

    @supports not (font-size:clamp(1.625rem, 1.375rem + 0.8333333333vw, 2rem)) {
        .faq__subtitle {
            font-size: calc(1.625rem + .375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (margin-bottom:clamp(2.5rem, 0.5416666667rem + 6.5277777778vw, 5.4375rem)) {
        .faq__subtitle:not(:last-child) {
            margin-bottom: clamp(2.5rem, .5416666667rem + 6.5277777778vw, 5.4375rem)
        }
    }

    @supports not (margin-bottom:clamp(2.5rem, 0.5416666667rem + 6.5277777778vw, 5.4375rem)) {
        .faq__subtitle:not(:last-child) {
            margin-bottom: calc(2.5rem + 2.9375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.125rem, 0.875rem + 0.8333333333vw, 1.5rem)) {
        .faq__ask {
            font-size: clamp(1.125rem, .875rem + .8333333333vw, 1.5rem)
        }
    }

    @supports not (font-size:clamp(1.125rem, 0.875rem + 0.8333333333vw, 1.5rem)) {
        .faq__ask {
            font-size: calc(1.125rem + .375 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.5rem, 0.5rem + 3.3333333333vw, 3rem)) {
        .content-feedback__title {
            font-size: clamp(1.5rem, .5rem + 3.3333333333vw, 3rem)
        }
    }

    @supports not (font-size:clamp(1.5rem, 0.5rem + 3.3333333333vw, 3rem)) {
        .content-feedback__title {
            font-size: calc(1.5rem + 1.5 * (100vw - 30rem)/ 45)
        }
    }

    @supports (font-size:clamp(1.125rem, 0.875rem + 0.8333333333vw, 1.5rem)) {
        .content-feedback__subtitle {
            font-size: clamp(1.125rem, .875rem + .8333333333vw, 1.5rem)
        }
    }

    @supports not (font-size:clamp(1.125rem, 0.875rem + 0.8333333333vw, 1.5rem)) {
        .content-feedback__subtitle {
            font-size: calc(1.125rem + .375 * (100vw - 30rem)/ 45)
        }
    }
}

@media (min-width:62em) and (max-width:75em) {
    @supports (padding-bottom:clamp(1.875rem, -5.5769230769rem + 12.0192307692vw, 3.4375rem)) {
        .page__head {
            padding-bottom: clamp(1.875rem, -5.5769230769rem + 12.0192307692vw, 3.4375rem)
        }
    }

    @supports not (padding-bottom:clamp(1.875rem, -5.5769230769rem + 12.0192307692vw, 3.4375rem)) {
        .page__head {
            padding-bottom: calc(1.875rem + 1.5625 * (100vw - 62rem)/ 13)
        }
    }

    @supports (padding-bottom:clamp(1.875rem, -9.75rem + 18.75vw, 4.3125rem)) {
        .content-head {
            padding-bottom: clamp(1.875rem, -9.75rem + 18.75vw, 4.3125rem)
        }
    }

    @supports not (padding-bottom:clamp(1.875rem, -9.75rem + 18.75vw, 4.3125rem)) {
        .content-head {
            padding-bottom: calc(1.875rem + 2.4375 * (100vw - 62rem)/ 13)
        }
    }
}

@media (max-width:47.99875em) and (min-width:75em) {
    .help__item:not(:last-child) {
        padding-bottom: 1.6875rem
    }

    .help__item:not(:last-child) {
        margin-bottom: 1.75rem
    }
}

@media (max-width:47.99875em) and (min-width:30em) and (max-width:75em) {
    @supports (padding-bottom:clamp(0.9375rem, 0.4375rem + 1.6666666667vw, 1.6875rem)) {
        .help__item:not(:last-child) {
            padding-bottom: clamp(.9375rem, .4375rem + 1.6666666667vw, 1.6875rem)
        }
    }

    @supports not (padding-bottom:clamp(0.9375rem, 0.4375rem + 1.6666666667vw, 1.6875rem)) {
        .help__item:not(:last-child) {
            padding-bottom: calc(.9375rem + .75 * (100vw - 30rem)/ 45)
        }
    }

    @supports (margin-bottom:clamp(1.25rem, 0.9166666667rem + 1.1111111111vw, 1.75rem)) {
        .help__item:not(:last-child) {
            margin-bottom: clamp(1.25rem, .9166666667rem + 1.1111111111vw, 1.75rem)
        }
    }

    @supports not (margin-bottom:clamp(1.25rem, 0.9166666667rem + 1.1111111111vw, 1.75rem)) {
        .help__item:not(:last-child) {
            margin-bottom: calc(1.25rem + .5 * (100vw - 30rem)/ 45)
        }
    }
}

@media (any-hover:hover) {
    .ask-options__label:hover {
        background-color: rgba(255, 255, 255, .3)
    }

    .menu__link:hover::before {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .footer__button:hover {
        color: #ff3e32;
        border: 1px dashed #ff3e32;
        background-color: transparent
    }

    .footer__button--rv:hover {
        color: #fff;
        background-color: #ff3e32;
        border: 1px solid #ff3e32
    }

    .menu-footer__link:hover::before {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .content-head__button:hover {
        color: #ff3e32;
        border: 1px dashed #ff3e32;
        background-color: transparent
    }

    .content-head__button--rv:hover {
        color: #fff;
        background-color: #ff3e32;
        border: 1px solid #ff3e32
    }

    .video__play:hover svg circle[r="90.75"] {
        fill: #fff
    }

    .support__button:hover {
        color: #2857ff;
        background-color: #fff
    }

    .steps__button:hover {
        color: #ff3e32;
        border: 1px dashed #ff3e32;
        background-color: transparent
    }

    .steps__button--rv:hover {
        color: #fff;
        background-color: #ff3e32;
        border: 1px solid #ff3e32
    }

    .swiper-button-next__icon:hover svg circle,
    .swiper-button-prev__icon:hover svg circle {
        fill: #fff
    }

    .item-ask__submit:hover {
        color: #ff3e32;
        border: 1px dashed #ff3e32;
        background-color: transparent
    }

    .ask-swiper-button-next:hover {
        color: #ff3e32;
        border: 1px dashed #ff3e32;
        background-color: transparent
    }

    .form-feedback__submit:hover {
        color: #ff3e32;
        border: 1px dashed #ff3e32;
        background-color: transparent
    }
}

.webp .page__head {
    background: url(../images/head-bg.webp) 0 0/cover no-repeat
}

.webp .ask__slider-container {
    background: url(../images/bg.webp) 0 0/cover no-repeat
}

.webp .feedback__body {
    background: url(../images/feedback-bg.webp) 0 0/cover no-repeat
}