@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,regular,500,600,700&display=swap);

* {
    padding: 0;
    margin: 0;

    border: 0
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body,
html {
    scroll-behavior: smooth;
    height: 100%;
    min-width: 320px

}

body {
    color: #151426;
    line-height: 1;
    font-family: Inter;
    font-size: .875rem;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #e6e9f2
}

button,
input,
textarea {
    font-family: Inter;
    font-size: inherit
}

button {
    cursor: pointer;
    color: inherit;
    background-color: inherit
}

a {
    color: inherit
}

a:link,
a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top;
    max-width: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none
}

.wrapper {
    min-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;
    overflow: hidden
}

.wrapper > main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.wrapper > * {
    min-width: 0
}

[class*=__container] {
    max-width: 93.125rem;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0 6.25rem
}

.checkbox {
    position: relative
}

.checkbox:not(:last-child) {
    margin-bottom: .3125em
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0
}

.checkbox__input:checked + .checkbox__label:before {
    background: #151426
}

.checkbox__label {
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 10px
}

.checkbox__label:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    border: 1px solid #a7a9ac;
    padding: 3px
}

.checkbox__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 120%
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .8s ease 0s;
    transition: opacity .8s ease 0s;
    pointer-events: none;
    z-index: 149
}

.popup-show body::after {
    opacity: 1
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: visibility .8s ease 0s;
    transition: visibility .8s ease 0s;
    visibility: hidden;
    pointer-events: none
}

.popup .header {
    display: none
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto
}

.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.popup__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center
}

.popup__content {
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background-color: #eee;
    width: 100%;
    overflow: hidden
}

.lock .popup__content {
    visibility: visible
}

.popup .footer {
    display: none
}

.popup .social {
    margin-left: auto
}

.popup .social .social__list li:nth-child(1) {
    width: 5rem;
    height: 5rem
}

.popup .social .social__list li:nth-child(2) {
    width: 10rem;
    height: 10rem
}

.popup__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 53px;
    gap: 10px 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@supports (margin-bottom:clamp(0.625rem, -1.4583333333rem + 4.3402777778vw, 3.75rem)) {
    .popup__header {
        margin-bottom: clamp(.625rem, -1.4583333333rem + 4.3402777778vw, 3.75rem)
    }
}

@supports not (margin-bottom:clamp(0.625rem, -1.4583333333rem + 4.3402777778vw, 3.75rem)) {
    .popup__header {
        margin-bottom: calc(.625rem + 3.125 * (100vw - 48rem) / 72)
    }
}

.popup__checkboxes {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.popup__checkboxes .checkbox {
    border-radius: 50px;
    border: 1px solid rgba(21, 20, 38, .2)
}

.popup__checkboxes .checkbox.check,
.popup__checkboxes .checkbox:hover {
    background: #e6e9f2
}

.popup__checkboxes .checkbox.check label,
.popup__checkboxes .checkbox:hover label {
    overflow: hidden
}

.popup__checkboxes .checkbox label {
    width: 100%;
    height: 100%;
    padding: 10px 20px
}

.popup__checkboxes .checkbox label::before {
    display: none
}

.popup__checkboxes .checkbox__text {
    color: #151426;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%
}

.popup form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px
}

.popup__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@supports (gap:clamp(0.625rem, 0.4060218978rem + 1.0948905109vw, 1.5625rem)) {
    .popup__left {
        gap: clamp(.625rem, .4060218978rem + 1.0948905109vw, 1.5625rem)
    }
}

@supports not (gap:clamp(0.625rem, 0.4060218978rem + 1.0948905109vw, 1.5625rem)) {
    .popup__left {
        gap: calc(.625rem + .9375 * (100vw - 20rem) / 85.625)
    }
}

.popup__left a {
    color: #151426;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    text-transform: capitalize
}

.popup__right {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%
}

@supports (margin-bottom:clamp(0.625rem, 0.3330291971rem + 1.4598540146vw, 1.875rem)) {
    .popup__title {
        margin-bottom: clamp(.625rem, .3330291971rem + 1.4598540146vw, 1.875rem)
    }
}

@supports not (margin-bottom:clamp(0.625rem, 0.3330291971rem + 1.4598540146vw, 1.875rem)) {
    .popup__title {
        margin-bottom: calc(.625rem + 1.25 * (100vw - 20rem) / 85.625)
    }
}

.popup__title strong {
    color: #151426;
    white-space: nowrap;
    font-weight: 200
}

@supports (font-size:clamp(1.25rem, 0.6660583942rem + 2.9197080292vw, 3.75rem)) {
    .popup__title strong {
        font-size: clamp(1.25rem, .6660583942rem + 2.9197080292vw, 3.75rem)
    }
}

@supports not (font-size:clamp(1.25rem, 0.6660583942rem + 2.9197080292vw, 3.75rem)) {
    .popup__title strong {
        font-size: calc(1.25rem + 2.5 * (100vw - 20rem) / 85.625)
    }
}

.popup__title strong span {
    font-weight: 500
}

.popup__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh
}

.popup__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
}

.popup__col:nth-child(1) {
    background: #dfff5e
}

@supports (padding-left:clamp(0.0000000625rem, -2.7737225506rem + 13.8686130657vw, 11.875rem)) {
    .popup__col:nth-child(1) {
        padding-left: clamp(.0000000625rem, -2.7737225506rem + 13.8686130657vw, 11.875rem)
    }
}

@supports not (padding-left:clamp(0.0000000625rem, -2.7737225506rem + 13.8686130657vw, 11.875rem)) {
    .popup__col:nth-child(1) {
        padding-left: calc(.0000000625rem + 11.8749999375 * (100vw - 20rem) / 85.625)
    }
}

@supports (padding-right:clamp(0.0000000625rem, -1.4598539375rem + 7.29927vw, 6.25rem)) {
    .popup__col:nth-child(1) {
        padding-right: clamp(.0000000625rem, -1.4598539375rem + 7.29927vw, 6.25rem)
    }
}

@supports not (padding-right:clamp(0.0000000625rem, -1.4598539375rem + 7.29927vw, 6.25rem)) {
    .popup__col:nth-child(1) {
        padding-right: calc(.0000000625rem + 6.2499999375 * (100vw - 20rem) / 85.625)
    }
}

.popup__col:nth-child(2) {
    background: #e6e9f2
}

@supports (padding-left:clamp(0.0000000625rem, -1.4598539375rem + 7.29927vw, 6.25rem)) {
    .popup__col:nth-child(2) {
        padding-left: clamp(.0000000625rem, -1.4598539375rem + 7.29927vw, 6.25rem)
    }
}

@supports not (padding-left:clamp(0.0000000625rem, -1.4598539375rem + 7.29927vw, 6.25rem)) {
    .popup__col:nth-child(2) {
        padding-left: calc(.0000000625rem + 6.2499999375 * (100vw - 20rem) / 85.625)
    }
}

@supports (padding-right:clamp(0.0000000625rem, -2.7737225506rem + 13.8686130657vw, 11.875rem)) {
    .popup__col:nth-child(2) {
        padding-right: clamp(.0000000625rem, -2.7737225506rem + 13.8686130657vw, 11.875rem)
    }
}

@supports not (padding-right:clamp(0.0000000625rem, -2.7737225506rem + 13.8686130657vw, 11.875rem)) {
    .popup__col:nth-child(2) {
        padding-right: calc(.0000000625rem + 11.8749999375 * (100vw - 20rem) / 85.625)
    }
}

.form-popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px
}

.form-popup__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px
}

.form-popup__item label {
    text-transform: uppercase;
    color: rgba(0, 0, 0, .5);
    font-size: 14px;
    line-height: 130%
}

.form-popup__item input {
    padding: 10px;
    border-radius: 50px;
    border: 1px solid rgba(21, 20, 38, .5);
    background: 0 0;
    font-size: 18px
}

.form-popup__submit {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid #151426;
    font-size: 36px;
    -webkit-transition: .2s;
    transition: .2s;
    font-weight: 400;
    line-height: 120%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.form-popup__submit svg {
    fill: #151426;
    -webkit-transition: .2s;
    transition: .2s
}

.form-popup__text {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%
}

.form-popup__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

.form-popup__col {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%
}

[class*=-ibg] {
    position: relative
}

[class*=-ibg] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

[class*=-ibg_contain] img {
    -o-object-fit: contain;
    object-fit: contain
}

.select {
    position: relative
}

.select__body {
    position: relative
}

/* *******************
Select c dropdown на JS
******************* */

.dropdown {
    position: relative;
}

.dropdown__button {
    position: relative;
    display: block;
    width: 100%;
    text-align: left;

    /*background: #FFFFFF;*/
    /*border: 1px solid #7E9BBD;*/
    /*border-radius: 6px;*/
    /*height: 46px;*/

    /*padding-top: 13px;*/
    /*padding-bottom: 13px;*/
    /*padding-left: 20px;*/
    /*padding-right: 35px;*/

    /*font-weight: 500;*/
    /*font-size: 16px;*/
    /*line-height: 20px;*/

    cursor: pointer;
    /*color: inherit;*/
    text-align: left;
    /*border: 1px solid #d9d9d9;*/
    /*background-color: #fff;*/
    /*cursor: pointer;*/
    /*width: 100%;*/
    /*border-radius: 4px*/
    /*display: -webkit-box;*/
    /*display: -ms-flexbox;*/
    display: flex;
    /*-webkit-box-align: center;*/
    /*-ms-flex-align: center;*/
    align-items: center;
    /*height: 1.875rem;*/
    /*padding: 0 .9375rem;*/
    /*gap: .625rem;*/
    max-width: 110px;
    width: 100vw;
    column-gap: 80px;
    padding: 20px;
    /*@include adaptiveValue('column-gap', 80, 20);*/
    @include adaptiveValue('padding', 20, 10);
    @extend .frame;
    color: #151426;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase;
    border-radius: 3.125rem;
    background: rgba(251, 249, 249, 0.7);
    text-align: left;
    border: 1px solid #d9d9d9;
}

.dropdown__button:focus, .dropdown__button--active {
    outline: none;
    /*box-shadow: 0px 0px 0px 4px rgba(176, 198, 225, 0.6);*/
    box-shadow: none;
}

.dropdown__button::after {
    /*content: "";*/
    content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='20' height='11' viewBox='0 0 20 11' fill='none' ><path d='M19 10L10 1L1 10' stroke='black' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/> </svg> ");

    position: absolute;
    top: 50%;
    /*top: 0;*/
    right: 15px;
    transform: translateY(-50%);

    /* Рисуем треугольник */
    /*width: 0;*/
    /*height: 0;*/
    /*border-width: 10.4px 6px 0 6px;*/
    /*border-color: #79849B transparent transparent transparent;*/
    /*border-style: solid;*/

    /* Снимаем клик с треугольника */
    pointer-events: none;

    /*align-self: stretch;*/
    /*flex: 0 0 10px;*/
    /*transition: all 0.3s ease 0s;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    transform: rotate(180deg) translateY(50%);
    /*transform: rotate(-180deg);*/
}

.dropdown__button.dropdown__button--active::after {
    transform: rotate(0) translateY(-50%);
}

.dropdown__list {
    display: none;

    position: absolute;
    left: 0;
    top: 52px;

    margin: 0;
    padding: 0;
    list-style-type: none;

    /*background: #FFFFFF;*/
    /*box-shadow: 0px 4px 8px rgba(176, 198, 225, 0.6);*/
    overflow: hidden;

    border-radius: 6px;
    width: 100%;

    z-index: 1;
    top: calc(100% + 0.3125rem);
    border-radius: 24px;
    padding: 1.25rem;
    width: 100%;
    background-color: #FBF9F9;
    border: 1px solid #d9d9d9;
    color: #000;
}

.dropdown__list--visible {
    display: block;
}

.dropdown__list-item {
    margin: 0;
    padding: 0;
    /*border: 1px solid #7E9BBD;*/
    /*border-bottom: 0px;*/
    /*padding: 13px 20px;*/
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;

    &:hover {
        color: #2C2783;
        font-weight: 500;
    }
}

.dropdown__list-item:first-child {
    /*border-radius: 6px 6px 0 0;*/
}

.dropdown__list-item:last-child {
    /*border-radius: 0 0 6px 6px;*/
    /*border-bottom: 1px solid #7E9BBD;*/
}

.dropdown__list-item:hover {
    /*background: rgba(176, 198, 225, 0.26);*/
}

.dropdown__input-hidden {
    display: none;
}

.select__title {
    color: inherit;
    text-align: left;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    cursor: pointer;
    width: 100%;
    border-radius: 4px
}

.select__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1.875rem;
    padding: 0 .9375rem;
    gap: .625rem
}

.select__value > * {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.select__value:after {
    content: "";
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10px;
    flex: 0 0 10px;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    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;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

._select-open .select__value:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.select__value._select-pseudo-label::before {
    content: attr(data-pseudo-label);
    opacity: .5
}

.select__text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%
}

.select__options {
    color: #000;
    position: absolute;
    top: 29px;
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    left: 0;
    background-color: #fff;
    border-top: 0;
    border: 1px solid #d9d9d9;
    border-top: 0;
    padding: 10px 0 5px 0
}

.select__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px
}

.select__option {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 5px 15px;
    color: inherit
}

.select__option._select-selected {
    background-color: #eee
}

.select__row {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.select._select-open {
    z-index: 5
}

._select-tag {
    cursor: pointer
}

.title {
    line-height: 120%;
    text-transform: capitalize
}

@supports (font-size:clamp(2.25rem, 1.6076642336rem + 3.2116788321vw, 5rem)) {
    .title {
        font-size: clamp(2.25rem, 1.6076642336rem + 3.2116788321vw, 5rem)
    }
}

@supports not (font-size:clamp(2.25rem, 1.6076642336rem + 3.2116788321vw, 5rem)) {
    .title {
        font-size: calc(2.25rem + 2.75 * (100vw - 20rem) / 85.625)
    }
}

.section {
    min-height: 100vh;
    position: relative;
    z-index: 1
}

.pin-spacer {
    pointer-events: none
}

.subtext p {
    font-size: 1.75rem;
    font-weight: 200;
    text-align: justify;
    line-height: 180%

}

.subtext p span {
    font-weight: 500
}

.mobile {
    display: none
}

.frame,
.header__language .select__title,
.menu__list {
    white-space: nowrap;
    border-radius: 3.125rem;
    background: rgba(251, 249, 249, .7)
}

a {
    -webkit-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out
}

a:hover {
    color: #2c2783
}

.hero-card {
    position: relative;
    border-radius: .6875rem;
    max-width: 450px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, .4)), to(rgba(255, 255, 255, .4))), #f0f2f7;
    background: linear-gradient(0deg, rgba(255, 255, 255, .4) 0, rgba(255, 255, 255, .4) 100%), #f0f2f7
}

.hero-card__text {
    position: absolute;
    left: 0;
    width: 100%;
    top: 3.3125rem
}

.hero-card__text p {
    font-size: 1.75rem;
    font-weight: 200;
    text-align: center;
    line-height: 1.4
}

.hero-card__text p span {
    display: block;
    font-weight: 500
}

.service-card {
    border-radius: .75rem;
    border: .1875rem solid #fff;
    background: rgba(230, 233, 242, .5);
    padding: 2.1875rem 1.875rem;
    max-width: 495px;
    width: 100%;
    -webkit-transition: .2s;
    transition: .2s;
    cursor: pointer;
    position: relative
}

.service-card__link {
    position: absolute;
    opacity: 0;
    visibility: 0;
    pointer-events: none;
    right: -41px;
    top: -41px;
    width: 83px;
    height: 83px;
    border-radius: 50%;
    background: #151426;
    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: .125rem solid #fff;
    -webkit-transition: .3s;
    transition: .3s
}

.service-card__link span {
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration-line: underline;
    text-transform: capitalize;
    display: none
}

.service-card__link svg {
    fill: #fff
}

.service-card__link:hover span {
    display: block
}

.service-card__link:hover svg {
    display: none
}

.service-card__number {
    padding: 10px 25px;
    border-radius: 3.125rem;
    display: inline-block;
    max-width: 4.4375rem;
    background: #151426;
    margin-bottom: .9375rem;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4
}

.service-card__title {
    font-size: 1.5rem;
    line-height: 140%
}

.service-card__text p {
    color: rgba(21, 20, 38, .7);
    font-size: 1rem;
    line-height: 150%
}

.service-card:hover {
    background: #dfff5e
}

.service-card:hover .service-card__link {
    opacity: 1;
    pointer-events: all;
    visibility: visible
}

.group-item {
    background: #fff;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 15.1875rem
}

.advantage-card {
    cursor: pointer;
    background: center/cover no-repeat #ecff9e;
    max-width: 30.8125rem;
    width: 100%;
    max-height: 33.4375rem;
    height: 100%;
    padding: 3.625rem 2.8125rem
}

.advantage-card__inner {
    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-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: .625rem
}

.advantage-card__number {
    color: #fff;
    font-size: 2rem;
    padding: 0 1.875rem;
    max-width: 5.9375rem;
    line-height: 150%;
    border-radius: 3.125rem;
    background: #151426;
    margin-bottom: .3125rem
}

.advantage-card__title {
    font-size: 1.5rem;
    line-height: 140%
}

.advantage-card__text p {
    color: rgba(21, 20, 38, .7);
    font-size: 1rem;
    line-height: 150%
}

.header {
    font-size: 1.125rem;
    line-height: 1.4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 160px;
    z-index: 1
}

.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2.9375rem 0
}

.header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@supports (gap:clamp(0.625rem, -0.1049270073rem + 3.6496350365vw, 3.75rem)) {
    .header__actions {
        gap: clamp(.625rem, -.1049270073rem + 3.6496350365vw, 3.75rem)
    }
}

@supports not (gap:clamp(0.625rem, -0.1049270073rem + 3.6496350365vw, 3.75rem)) {
    .header__actions {
        gap: calc(.625rem + 3.125 * (100vw - 20rem) / 85.625)
    }
}

.header__phone a {
    white-space: nowrap;
    font-weight: 500
}

.header__language .select__value {
    padding: 0
}

.header__language .select__value::after {
    content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns=%27http://www.w3.org/2000/svg%27 version=%271.1%27 width=%2720%27 height=%2711%27 viewBox=%270 0 20 11%27 fill=%27none%27 ><path d=%27M19 10L10 1L1 10%27 stroke=%27black%27 stroke-width=%271%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27/> </svg>")
}

.header__language .select__title {
    max-width: 6.875rem;
    width: 100vw;
    color: #151426;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 140%;
    text-transform: uppercase
}

@supports ((-moz-column-gap:clamp(1.25rem, 0.3740875912rem + 4.3795620438vw, 5rem)) or (column-gap:clamp(1.25rem, 0.3740875912rem + 4.3795620438vw, 5rem))) {
    .header__language .select__title {
        -webkit-column-gap: clamp(1.25rem, .3740875912rem + 4.3795620438vw, 5rem);
        -moz-column-gap: clamp(1.25rem, .3740875912rem + 4.3795620438vw, 5rem);
        column-gap: clamp(1.25rem, .3740875912rem + 4.3795620438vw, 5rem)
    }
}

@supports not ((-moz-column-gap:clamp(1.25rem, 0.3740875912rem + 4.3795620438vw, 5rem)) or (column-gap:clamp(1.25rem, 0.3740875912rem + 4.3795620438vw, 5rem))) {
    .header__language .select__title {
        -webkit-column-gap: calc(1.25rem + 3.75 * (100vw - 20rem) / 85.625);
        -moz-column-gap: calc(1.25rem + 3.75 * (100vw - 20rem) / 85.625);
        column-gap: calc(1.25rem + 3.75 * (100vw - 20rem) / 85.625)
    }
}

@supports (padding:clamp(0.625rem, 0.4790145985rem + 0.7299270073vw, 1.25rem)) {
    .header__language .select__title {
        padding: clamp(.625rem, .4790145985rem + .7299270073vw, 1.25rem)
    }
}

@supports not (padding:clamp(0.625rem, 0.4790145985rem + 0.7299270073vw, 1.25rem)) {
    .header__language .select__title {
        padding: calc(.625rem + .625 * (100vw - 20rem) / 85.625)
    }
}

.header__language .select__options {
    top: calc(100% + .3125rem);
    border-radius: 24px;
    padding: 1.25rem;
    width: 100%;
    background-color: #fbf9f9
}

.header__language .select__option {
    padding: 0;
    background-color: #fbf9f9;
    -webkit-transition: color .2s ease-out;
    transition: color .2s ease-out;
    text-transform: uppercase;
    text-align: center
}

.header__language .select__option:hover {
    color: #2c2783;
    font-weight: 500
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1.25rem 1.875rem;
    padding: 1.25rem 5rem
}

@supports (padding-left:clamp(1.25rem, 0.3740875912rem + 4.3795620438vw, 5rem)) {
    .menu__list {
        padding-left: clamp(1.25rem, .3740875912rem + 4.3795620438vw, 5rem)
    }
}

@supports not (padding-left:clamp(1.25rem, 0.3740875912rem + 4.3795620438vw, 5rem)) {
    .menu__list {
        padding-left: calc(1.25rem + 3.75 * (100vw - 20rem) / 85.625)
    }
}

@supports (padding-right:clamp(1.25rem, 0.3740875912rem + 4.3795620438vw, 5rem)) {
    .menu__list {
        padding-right: clamp(1.25rem, .3740875912rem + 4.3795620438vw, 5rem)
    }
}

@supports not (padding-right:clamp(1.25rem, 0.3740875912rem + 4.3795620438vw, 5rem)) {
    .menu__list {
        padding-right: calc(1.25rem + 3.75 * (100vw - 20rem) / 85.625)
    }
}

.menu a {
    font-weight: 500;
    text-transform: capitalize
}

.icon-menu {
    display: none
}

.menu__body {
    -webkit-transition: .3s;
    transition: .3s
}

.menu-open .menu__body {
    right: 0
}

.services {
    position: relative
}

.services .services-scroll {
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    z-index: 0
}

.services .services-scroll canvas {
    height: 100%;
    width: 100%
}

body {
    overflow: hidden
}

.footer {
    z-index: 1
}

.hero {
    position: relative;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh
}

.no-webp .hero__main {
    background: url(../img/bg/bg-hero.png) left center/contain no-repeat
}

.hero__main {
    height: 100vh
}

.no-webp .hero .hero-hidden {
    background: url(../img/bg/bg-cube.png) center top/contain no-repeat #dfff5e
}

.hero .hero-hidden {
    position: absolute;
    left: 0;
    pointer-events: none;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    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 .hero-hidden__logo {
    overflow: hidden
}

.hero .hero-hidden__logo img {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.hero__container {
    height: 100%
}

.hero__inner {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*-webkit-box-align: end;*/
    /*-ms-flex-align: end;*/
    /*align-items: flex-end;*/
    padding: 5vh 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.25rem
}

.hero__text {
    margin-top: 40vh;
    position: relative;
    z-index: 1;
    /*margin-bottom: 10%*/
}

.hero__text p {
    line-height: 1.5
}

@supports (font-size:clamp(1.44375rem, 1.1678375912rem + 1.3795620438vw, 2.625rem)) {
    .hero__text p {
        font-size: clamp(1.44375rem, 1.1678375912rem + 1.3795620438vw, 2.625rem)
    }
}

@supports not (font-size:clamp(1.44375rem, 1.1678375912rem + 1.3795620438vw, 2.625rem)) {
    .hero__text p {
        font-size: calc(1.44375rem + 1.18125 * (100vw - 20rem) / 85.625)
    }
}

.hero__cards {
    margin-top: auto;
    position: relative;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.hero__cards .hero-card:nth-child(2) {
    width: 100%;
    bottom: 30%;
    z-index: -1;
    right: 30%;
    position: absolute;
    -webkit-transform: rotate(-13.571deg);
    -ms-transform: rotate(-13.571deg);
    transform: rotate(-13.571deg)
}

.advantage {
    margin-top: 100vh;
    z-index: 1;
    background: #dfff5e;
    position: relative;
    height: 3000px
}

.advantage .scroll-adv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.advantage__items {
    min-height: 100vh;
    height: 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;
    position: relative
}

.advantage__title {
    position: absolute;
    top: 50% !important;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-weight: 400;
    line-height: 150%;
    color: transparent;
    text-transform: capitalize;
    -webkit-text-stroke: .125rem rgba(21, 20, 38, .5)
}

@supports (font-size:clamp(0.625rem, -2.878649635rem + 17.5182481752vw, 15.625rem)) {
    .advantage__title {
        font-size: clamp(.625rem, -2.878649635rem + 17.5182481752vw, 15.625rem)
    }
}

@supports not (font-size:clamp(0.625rem, -2.878649635rem + 17.5182481752vw, 15.625rem)) {
    .advantage__title {
        font-size: calc(.625rem + 15 * (100vw - 20rem) / 85.625)
    }
}

.advantage .advantage-card {
    position: absolute;
    left: 40%;
    top: 60%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 6
}

.advantage .advantage-card:nth-child(2) {
    margin-top: -.9375rem;
    margin-left: .9375rem;
    z-index: 5
}

.advantage .advantage-card:nth-child(3) {
    margin-top: -1.875rem;
    margin-left: 1.875rem;
    z-index: 4
}

.advantage .advantage-card:nth-child(4) {
    margin-top: -2.8125rem;
    margin-left: 2.8125rem;
    z-index: 3
}

.advantage .advantage-card:nth-child(5) {
    margin-top: -3.75rem;
    margin-left: 3.75rem;
    z-index: 2
}

.advantage .advantage-card:nth-child(6) {
    margin-top: -4.6875rem;
    margin-left: 4.6875rem;
    z-index: 1
}

.services-scroll {
    pointer-events: none
}

.no-webp .services {
    background: url(../img/bg/bg-services.png) left center/contain no-repeat #e6e9f2
}

.services {
    padding: 8.125rem 0
}

.services__title {
    margin-bottom: 40px
}

.services__row {
    gap: .625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.services__text {
    max-width: 28.8125rem
}

.services__text p {
    font-size: 1.75rem;
    font-weight: 200;
    line-height: 180%
}

.services__text p span {
    font-weight: 500
}

.services__cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 2 ];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-top: 1.875rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.services__cards .service-card:nth-child(even) {
    -webkit-transform: translateY(5.625rem);
    -ms-transform: translateY(5.625rem);
    transform: translateY(5.625rem)
}

.no-webp .about {
    background: url(../img/bg/bg-about.png) right bottom/auto no-repeat
}

.about {
    padding-bottom: 8.125rem;
    background-color: #e6e9f2 !important;
    z-index: 1
}

.about__title {
    text-align: center;
    margin-bottom: 3.125rem
}

.about__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    margin-bottom: .9375rem
}

.about__text {
    margin-bottom: 30px
}

.about__description {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%
}

.about__description p {
    font-size: 1rem;
    line-height: 180%
}

.about__groups {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, .5fr));
    gap: 1rem 1.25rem
}

@supports (width:clamp(11.0625rem, 10.1427919708rem + 4.598540146vw, 15rem)) {
    .popup__logo {
        width: clamp(11.0625rem, 10.1427919708rem + 4.598540146vw, 15rem)
    }
}

@supports not (width:clamp(11.0625rem, 10.1427919708rem + 4.598540146vw, 15rem)) {
    .popup__logo {
        width: calc(11.0625rem + 3.9375 * (100vw - 20rem) / 85.625)
    }
}

.email {
    font-size: 28px
}

.footer {
    background: #dfff5e
}

.footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer__row--center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 800px;
}

.footer__title {
    font-weight: 100
}

.footer__subtitle:not(:last-child) {
    margin-right: 3.125rem
}

.footer__btn {
    border-radius: 3.125rem;
    border: .125rem solid #151426;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.25rem 1.875rem;
    font-size: 2.25rem;
    line-height: 120%
}

.footer__btn svg {
    margin-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.5rem;
    flex: 0 0 1.5rem;
    -webkit-transition: fill .2s ease-in-out;
    transition: fill .2s ease-in-out;
    fill: #151426
}

.footer__btn:hover svg {
    fill: #2c2783
}

.footer__logo {
    margin-bottom: 20px
}

@supports (width:clamp(11.25rem, 8.7828467153rem + 12.3357664234vw, 21.8125rem)) {
    .footer__logo {
        width: clamp(11.25rem, 8.7828467153rem + 12.3357664234vw, 21.8125rem)
    }
}

@supports not (width:clamp(11.25rem, 8.7828467153rem + 12.3357664234vw, 21.8125rem)) {
    .footer__logo {
        width: calc(11.25rem + 10.5625 * (100vw - 20rem) / 85.625)
    }
}

.footer__grid {
    padding-top: 2.5rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr)
}

.footer__grid dd,
.footer__grid dt,
.footer__grid li {
    font-size: 1.125rem;
    line-height: 140%
}

.footer__grid dl,
.footer__grid ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: .625rem
}

.footer__grid dt {
    font-weight: 600
}

.footer__inner {
    padding-top: 5.625rem;
    padding-bottom: 7.9375rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer__social {
    position: absolute;
    right: 0;
    bottom: 0
}

.footer__social li {
    border-radius: 50%;
    background-color: #151426;
    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
}

.footer__social li:nth-child(1) {
    width: 6.4375rem;
    height: 6.4375rem;
    position: absolute;
    bottom: 0;
    right: 13.75rem
}

.footer__social li:nth-child(2) {
    position: absolute;
    width: 10rem;
    height: 10rem;
    right: 3.75rem;
    bottom: 1.375rem
}

.social__list {
    position: relative
}

.social__list li {
    border-radius: 50%;
    background-color: #151426;
    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
}

.social__list li:nth-child(1) {
    width: 6.4375rem;
    height: 6.4375rem;
    position: relative
}

.social__list li:nth-child(2) {
    position: relative;
    width: 10rem;
    height: 10rem
}

.no-webp .error {
    background: url(../img/bg/bg-cube.png) center/contain no-repeat #dfff5e
}

.error__container {
    height: 100vh;
    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
}

.error__title {
    text-align: center
}

@supports (font-size:clamp(9.375rem, 7.9151459854rem + 7.299270073vw, 15.625rem)) {
    .error__title {
        font-size: clamp(9.375rem, 7.9151459854rem + 7.299270073vw, 15.625rem)
    }
}

@supports not (font-size:clamp(9.375rem, 7.9151459854rem + 7.299270073vw, 15.625rem)) {
    .error__title {
        font-size: calc(9.375rem + 6.25 * (100vw - 20rem) / 85.625)
    }
}

.error__text {
    text-align: center
}

.error__text:not(:last-child) {
    margin-bottom: 26px
}

.error__text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%
}

.error__text p span {
    display: block
}

.error__social ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.error__social li:nth-child(1) {
    top: 20px
}

.select {
    /* Растягиваем блок на 100% родительского блока, для правильного размещения кастомной стрелочки */
    width: 100%;

    /* Убираем браузерную стрелку */
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;

    /* Задаем свой фон и рамку */
    border: 1px solid #7E9BBD;
    border-radius: 6px;
    background-color: #fff;

    /* Отступы от рамки к тексту */
    padding: 10px 35px 10px 15px;

    /* Убираем баузерную обводку*/
    outline: none;

    cursor: pointer;
}

/* Убираем стрелочку в IE 10 и 11 */
.select::-ms-expand {
    display: none;
}

/* По клику - убираем обводку и добавляем свою*/
.select:focus {
    outline: none;
    box-shadow: 0px 0px 0px 1px #38577a, 0px 0px 10px #7e9bbd;
}

/* Делаем .select-wrapper родительским элементом для позиционирования "стрелочки" */
.select-wrapper {
    position: relative;
}

/* Рисуем стрелочку */
.select-wrapper::before {
    content: "";

    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);

    display: block;

    /* Рисуем треугольник */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10.4px 6px 0 6px;
    border-color: #7e9bbd transparent transparent transparent;

    /* Снимаем клик с треугольника */
    pointer-events: none;
}

.about,
.service-card {
    text-align: justify;
}

.politics {
    padding: 50px 0;
    font-family: 'Inter';
    text-align: justify;
}

.politics ul {
    padding: 20px 40px;
}


.politics a {
    font-size: 18px;
    line-height: 1.4;
    font-family: inherit;
    font-weight: 500;
    transition: 0.3s;
    text-decoration: underline;
}

.politics a:hover {
    color: #2c2783;
}

.politics ul li,
.politics p {
    font-size: 25px;
    line-height: 180%;
    font-weight: 200;
}

.politics ul li {
    list-style: disc;
    line-height: 1.5;
}

.politics h1 {
    text-align: center;
    font-weight: 600;
    font-size: 60px;
    margin-bottom: 20px;

}

.politics h3,
.politics h2 {
    font-weight: 400;
    font-size: 40px;
    padding: 0 40px;
}

.politics h3 {

    &::before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        position: relative;

        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #151426;
        margin-right: 10px;
    }
}
.politics__inner{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 992px) {
    .hero__text {
        flex: 0 1 60%;
    }
}

@media (max-width: 1440px) {
    .services__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    [class*=__container] {
        max-width: 1040px
    }

    .services__text {
        max-width: none;
        text-align: justify;
    }

    .footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }


    .popup__col {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .popup__col:nth-child(2) {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .popup__col:nth-child(2) .popup__title {
        margin-left: 0
    }

    .popup__checkboxes {
        -ms-grid-columns: auto;
        grid-template-columns: auto
    }

    .popup__title {
        max-width: 480px
    }

    .form-popup__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .form-popup input {
        width: 100%;
        max-width: 480px
    }

    .form-popup__col {
        width: 100%
    }

    .popup__col {
        gap: 20px
    }

    .popup__checkboxes .checkbox label {
        padding: 10px 20px
    }

    .form-popup__submit {
        padding: 10px 15px;
        font-size: 26px
    }

    .hero__cards .hero-card:nth-child(2) {
        bottom: 40%;
        right: 20%;
        transform: rotate(-8deg);
    }
}

@media (max-width: 1200px) {
    .header__container {
        padding: 0 50px;
    }

    .menu__list {
        padding: 20px;
    }
}

@media (max-width: 1025px) {
    .politics {
        padding: 20px 0;

    }
    .politics__inner {
        gap: 20px;
    }

    .politics h1 {
        font-size: 30px;
    }

    .politics h3,
    .politics h2 {
        padding:0 15px;
        font-size: 23px;
    }


    .politics a {
        word-break: break-all;
    }

    .politics ul {
        padding: 10px 20px;
    }

    .politics a,
    .politics ul li,
    .politics p {
        font-size: 16px;
    }

    .hero__text {
        margin-top: 0;

    }

    .icon-menu {
        display: block;
        position: relative;
        width: 4rem;
        height: 3.5rem;
        cursor: pointer;
        z-index: 5;
        border-radius: 50px;
        background: rgba(251, 249, 249, .7)
    }

    .icon-menu span,
    .icon-menu::after,
    .icon-menu::before {
        content: "";
        -webkit-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        position: absolute;
        width: 24px;
        height: .125rem;
        background-color: #000
    }

    .icon-menu::before {
        top: 20px
    }

    .icon-menu::after {
        bottom: 20px
    }

    .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: translateX(-50%) rotate(-45deg);
        -ms-transform: translateX(-50%) rotate(-45deg);
        transform: translateX(-50%) rotate(-45deg)
    }

    .menu-open .icon-menu::after {
        bottom: calc(50% - .0625rem);
        -webkit-transform: translateX(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
        transform: translateX(-50%) rotate(45deg)
    }

    .popup .header {
        display: block
    }

    .popup__logo {
        opacity: 0;
        pointer-events: none
    }

    .popup__col {
        padding-left: 20px !important;
        padding-right: 20px !important
    }

    @supports (padding-left:clamp(1.5rem, -0.5223420647rem + 8.6286594761vw, 5rem)) {
        [class*=__container] {
            padding-left: clamp(1.5rem, -.5223420647rem + 8.6286594761vw, 5rem)
        }
    }

    @supports not (padding-left:clamp(1.5rem, -0.5223420647rem + 8.6286594761vw, 5rem)) {
        [class*=__container] {
            padding-left: calc(1.5rem + 3.5 * (100vw - 23.4375rem) / 40.5625)
        }
    }

    @supports (padding-right:clamp(1.5rem, -0.5223420647rem + 8.6286594761vw, 5rem)) {
        [class*=__container] {
            padding-right: clamp(1.5rem, -.5223420647rem + 8.6286594761vw, 5rem)
        }
    }

    @supports not (padding-right:clamp(1.5rem, -0.5223420647rem + 8.6286594761vw, 5rem)) {
        [class*=__container] {
            padding-right: calc(1.5rem + 3.5 * (100vw - 23.4375rem) / 40.5625)
        }
    }

    .group-item {
        overflow: hidden
    }

    .group-item img {
        max-width: 152px
    }

    .footer__grid {
        -ms-grid-columns: (1fr) [ 2 ];
        grid-template-columns: repeat(2, 1fr)
    }

    .footer__col:last-child {
        -ms-grid-column: 2;
        grid-column-start: 2
    }

    .hero-hidden__logo {
        max-width: 690px
    }

    .hero__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    @supports (min-width:clamp(1.5rem, -0.5223420647rem + 8.6286594761vw, 5rem)) {
        [class*=__container] {
            min-width: clamp(1.5rem, -.5223420647rem + 8.6286594761vw, 5rem)
        }
    }

    @supports not (min-width:clamp(1.5rem, -0.5223420647rem + 8.6286594761vw, 5rem)) {
        [class*=__container] {
            min-width: calc(1.5rem + 3.5 * (100vw - 23.4375rem) / 40.5625)
        }
    }

    .hero__main {
        padding-top: 15vh
    }

    .hero__inner {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .hero__text {
        margin-right: auto
    }

    .hero__cards {
        padding-top: 300px
    }

    .desktop {
        display: none
    }

    .menu__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
        position: fixed;
        right: -100%;
        top: 129px;
        padding: 74px 50px 46px;
        background: #fff;
        z-index: 5;
        -webkit-transition: .3s;
        transition: .3s;
        border-radius: 25px 0 0 25px
    }

    @supports (padding-right:clamp(0.9375rem, -0.9064716312rem + 9.219858156vw, 5rem)) {
        .menu__body {
            padding-right: clamp(.9375rem, -.9064716312rem + 9.219858156vw, 5rem)
        }
    }

    @supports not (padding-right:clamp(0.9375rem, -0.9064716312rem + 9.219858156vw, 5rem)) {
        .menu__body {
            padding-right: calc(.9375rem + 4.0625 * (100vw - 20rem) / 44.0625)
        }
    }

    .menu__body.open {
        right: 0
    }

    .menu__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .menu__phone {
        padding: 30px 0;
        border-top: 1px solid rgba(21, 20, 38, .2);
        border-bottom: 1px solid rgba(21, 20, 38, .2)
    }

    .menu__phone ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px
    }

    .menu__lang ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .menu__lang ul li.active a {
        color: #151426
    }

    .menu__lang ul li a {
        color: rgba(21, 20, 38, .4);
        text-transform: uppercase
    }

    .mobile {
        display: block
    }
}

@media (max-width: 768px) {
    .about {
        padding-bottom: 50px
    }

    .about__groups {
        grid-template-columns: repeat(auto-fill, minmax(150px, .5fr))
    }

    .about__title {
        margin-bottom: 35px
    }

    .about__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 10px
    }

    .group-item {
        height: 160px
    }

    .group-item img {
        max-width: 130px
    }

    .hero-hidden__logo {
        max-width: 296px
    }

    .header__inner {
        padding: 40px 0
    }

    .header__logo {
        max-width: 160px
    }

    .menu__body {
        top: 131px;
        border-radius: 25px;
        width: 100vw
    }

    .menu__lang ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 30px
    }

    .hero-card {
        max-width: 204px
    }

    .hero-card__text p {
        font-size: 12.596px
    }

    .hero__inner {
        padding-bottom: 1vh
    }

    .hero__cards {
        margin-top: 100px;
        padding-top: 0;
        margin-left: auto
    }

    .hero__text p span {
        display: inline-block;
        margin-top: 40px;
        font-weight: 700;
        display: block
    }

    .hero__cards .hero-card:nth-child(2) {
        bottom: 50%;
        right: 50%
    }

    .advantage {
        padding: 80px 0;
        height: auto
    }

    .advantage__title {
        display: none
    }

    .advantage__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px
    }

    .advantage .advantage-card {
        position: relative;
        border-radius: 8px;
        border: 1.686px solid rgba(255, 255, 255, .5);
        padding: 25px 15px;
        left: 0;
        top: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

    .advantage .advantage-card__number {
        font-size: 14px;
        padding: 5px 13px;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content
    }

    .advantage .advantage-card__title {
        font-size: 16px
    }

    .advantage .advantage-card__text p {
        font-size: 14px
    }

    .advantage .advantage-card:nth-child(2),
    .advantage .advantage-card:nth-child(3),
    .advantage .advantage-card:nth-child(4),
    .advantage .advantage-card:nth-child(5),
    .advantage .advantage-card:nth-child(6) {
        margin-top: 0;
        margin-left: 0
    }

    .subtext p {
        font-size: 16px;
        font-weight: 200;
        line-height: 180%
    }

    .services {
        padding: 50px 0
    }

    .services__title {
        margin-bottom: 20px
    }

    .services__cards {
        -ms-grid-columns: auto;
        grid-template-columns: auto
    }

    .services__cards .service-card:nth-child(even) {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }

    .service-card {
        border-radius: 8px;
        padding: 25px 15px;
        max-width: none !important
    }

    .service-card__number {
        font-size: 14px;
        padding: 5px 13px;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content
    }

    .service-card__title {
        font-size: 16px;
        margin-bottom: 10px
    }

    .service-card__text p {
        font-size: 14px
    }

    .footer__inner {
        gap: 30px
    }

    .footer__title {
        margin-bottom: 10px
    }

    .footer__social {
        padding-top: 190px;
        position: relative;
        right: auto;
        bottom: auto
    }

    .footer__inner {
        padding: 50px 0
    }

    .footer__grid dd,
    .footer__grid dt,
    .footer__grid li {
        white-space: nowrap
    }

    .footer__subtitle,
    .footer__title {
        font-size: 24px
    }

    .footer__btn {
        padding: 9px 13px;
        font-size: 16px
    }

    .footer__btn svg {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 10px;
        flex: 0 0 10px
    }

    .popup__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .popup .error__social {
        display: none
    }

    .popup .footer {
        display: block
    }

    .popup__col:nth-child(2) .popup__header {
        display: none
    }

    .popup__col:nth-child(2) .popup__title strong {
        white-space: normal
    }

    .popup__checkboxes {
        width: 100%
    }

    .popup__checkboxes .checkbox__text {
        font-size: 14px
    }

    .popup__title strong {
        line-height: 1.2;
        font-size: 36px
    }
}

@media (max-width: 1025px) and (min-width: 64.0625em) {
    .menu__body {
        padding-right: inherit
    }
}

@media (any-hover: hover) {
    .form-popup__submit:hover {
        background: #fff;
        color: #2c2783
    }

    .form-popup__submit:hover svg {
        fill: #2c2783
    }

    .select__option:hover {
        background: #d9d9d9
    }
}

.webp .hero__main {
    background: url(../img/bg/bg-hero.webp) left center/contain no-repeat
}

.webp .hero .hero-hidden {
    background: url(../img/bg/bg-cube.webp) center top/contain no-repeat #dfff5e
}

.webp .services {
    background: url(../img/bg/bg-services.webp) left center/contain no-repeat #e6e9f2
}

.webp .about {
    background: url(../img/bg/bg-about.webp) right bottom/auto no-repeat
}

.webp .error {
    background: url(../img/bg/bg-cube.webp) center/contain no-repeat #dfff5e
}