.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.chosen-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    z-index: 1010;
    width: 100%;
    border: 1px solid #aaa;
    border-top: 0;
    background: #fff;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    clip: rect(0, 0, 0, 0);
    -webkit-clip-path: inset(100% 100%);
    clip-path: inset(100% 100%);
}

.chosen-container.chosen-with-drop .chosen-drop {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
}

.chosen-container a {
    cursor: pointer;
}

.chosen-container .chosen-single .group-name, .chosen-container .search-choice .group-name {
    margin-right: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 400;
    color: #999;
}

.chosen-container .chosen-single .group-name:after, .chosen-container .search-choice .group-name:after {
    content: ":";
    padding-left: 2px;
    vertical-align: top;
}

.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    height: 25px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), to(#f4f4f4));
    background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 24px;
}

.chosen-container-single .chosen-default {
    color: #999;
}

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(./media/images/chosen-sprite.6768c197.png) -42px 1px no-repeat;
    font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
    background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
    background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%;
}

.chosen-container-single .chosen-single div b {
    display: block;
    width: 100%;
    height: 100%;
    background: url(./media/images/chosen-sprite.png) no-repeat 0 2px;
}

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap;
}

.chosen-container-single .chosen-search input[type=text] {
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #aaa;
    background: url(./media/images/chosen-sprite.png) no-repeat 100% -20px;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0;
}

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    -webkit-clip-path: inset(100% 100%);
    clip-path: inset(100% 100%);
}

.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 240px;
    -webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 5px 6px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default;
}

.chosen-container .chosen-results li.highlighted {
    background-color: #3875d7;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
    background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
    color: #fff;
}

.chosen-container .chosen-results li.no-results {
    color: #777;
    display: list-item;
    background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: 700;
    cursor: default;
}

.chosen-container .chosen-results li.group-option {
    padding-left: 15px;
}

.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline;
}

.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: auto;
    border: 1px solid #aaa;
    background-color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: linear-gradient(#eee 1%, #fff 15%);
    cursor: text;
}

.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type=text] {
    margin: 1px 0;
    padding: 0;
    height: 25px;
    outline: 0;
    border: 0 !important;
    background: 0 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #999;
    font-size: 100%;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0;
    width: 25px;
}

.chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 3px 20px 3px 5px;
    border: 1px solid #aaa;
    max-width: 100%;
    border-radius: 3px;
    background-color: #eee;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-size: 100% 19px;
    background-repeat: repeat-x;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    color: #333;
    line-height: 13px;
    cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
    word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    position: absolute;
    top: 4px;
    right: 3px;
    display: block;
    width: 12px;
    height: 12px;
    background: url(./media/images/chosen-sprite.png) -42px 1px no-repeat;
    font-size: 1px;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
    background-position: -42px -10px;
}

.chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    color: #666;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
    background: #d4d4d4;
}

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
    background-position: -42px -10px;
}

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0;
}

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default;
}

.chosen-container-active .chosen-single {
    border: 1px solid #5897fb;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #aaa;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #eee), color-stop(80%, #fff));
    background-image: linear-gradient(#eee 20%, #fff 80%);
    -webkit-box-shadow: 0 1px 0 #fff inset;
    box-shadow: 0 1px 0 #fff inset;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: none;
    background: 0 0;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 2px;
}

.chosen-container-active .chosen-choices {
    border: 1px solid #5897fb;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type=text] {
    color: #222 !important;
}

.chosen-disabled {
    opacity: 0.5 !important;
    cursor: default;
}

.chosen-disabled .chosen-single {
    cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default;
}

.chosen-rtl {
    text-align: right;
}

.chosen-rtl .chosen-single {
    overflow: visible;
    padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
    margin-right: 0;
    margin-left: 26px;
    direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
    margin-left: 38px;
}

.chosen-rtl .chosen-single div {
    right: auto;
    left: 3px;
}

.chosen-rtl .chosen-single abbr {
    right: auto;
    left: 26px;
}

.chosen-rtl .chosen-choices li {
    float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type=text] {
    direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
    margin: 3px 5px 3px 0;
    padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
    right: auto;
    left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
    margin: 0 0 4px 4px;
    padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
    padding-right: 15px;
    padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
    border-right: none;
}

.chosen-rtl .chosen-search input[type=text] {
    padding: 4px 5px 4px 20px;
    background: url(./media/images/chosen-sprite.png) no-repeat -30px -20px;
    direction: rtl;
}

.chosen-rtl.chosen-container-single .chosen-single div b {
    background-position: 6px 2px;
}

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
    background-position: -12px 2px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
    .chosen-container .chosen-results-scroll-down span, .chosen-container .chosen-results-scroll-up span, .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .chosen-container-single .chosen-search input[type=text], .chosen-container-single .chosen-single abbr, .chosen-container-single .chosen-single div b, .chosen-rtl .chosen-search input[type=text] {
        background-image: url(./media/images/chosen-sprite@2x.png) !important;
        background-size: 52px 37px !important;
        background-repeat: no-repeat !important;
    }
}
/************** Fonts *************/
/************** Breakpoints *************/
/************** Colors *************/
/************** Common *************/
/************** Default mixins *************/
.header__burger, .modal__close, .marketing .slick-dots button, .marketing .slick-arrow, .custom-slider .slick-dots button, .custom-slider .slick-arrow, .button {
    padding: 0;
    background: none no-repeat;
    appearance: none;
    border: 0;
}

.text-field {
    padding: 0;
    background: none no-repeat;
    appearance: none;
    border: 0;
}

.section-title {
    line-height: 1.2;
    font-size: 7.5vw;
    font-weight: 300;
    letter-spacing: 0.01em;
    color: #170b45;
}
@media screen and (min-width: 1025px) {
    .section-title {
        font-size: 2.8125rem;
    }
}

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

ul:not([class]) {
    list-style: none;
}
ul:not([class]) li {
    position: relative;
    padding: 0.625vw 0 0.625vw 5.3125vw;
}
@media screen and (min-width: 1025px) {
    ul:not([class]) li {
        padding: 0.25rem 0 0.25rem 1.0625rem;
    }
}
ul:not([class]) li:before {
    content: "";
    position: absolute;
    top: 4.0625vw;
    left: 0;
    width: 1.875vw;
    height: 1.875vw;
    background-color: #000;
    border-radius: 50%;
}
@media screen and (min-width: 1025px) {
    ul:not([class]) li:before {
        top: 0.8125rem;
        width: 0.375rem;
        height: 0.375rem;
    }
}

.orders__list, .application__list {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    line-height: 1.15;
    font-weight: 300;
}
@media screen and (min-width: 1025px) {
    .orders__list, .application__list {
        justify-content: space-between;
        line-height: 1;
    }
}

.orders__item, .application__item {
    display: flex;
    align-items: flex-start;
    width: 50%;
    min-height: 15vw;
    margin-bottom: 3.125vw;
}
@media screen and (min-width: 1025px) {
    .orders__item, .application__item {
        align-items: center;
        width: 44.5%;
        min-height: 2.4375rem;
        margin-bottom: 3.0625rem;
        padding-right: 3%;
    }
}

@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(./fonts/Roboto-Regular.woff2) format("woff2"), url(./fonts/Roboto-Regular.woff) format("woff");
}
@font-face {
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(./fonts/Roboto-Light.woff2) format("woff2"), url(./fonts/Roboto-Light.woff) format("woff");
}
a {
    color: #8467ee;
}
a:hover {
    text-decoration: underline;
}

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

p + p {
    margin-top: 4.0625vw;
    /*@media screen and (min-width: $desktopMax) {
      margin-top: rem(40);
    }*/
}
@media screen and (min-width: 1025px) {
    p + p {
        margin-top: 0.75rem;
    }
}

ul:not([class]) {
    margin: 1.875vw 0 0;
}
@media screen and (min-width: 1025px) {
    ul:not([class]) {
        margin-top: 0.75rem;
        letter-spacing: 0.02em;
    }
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.icon-up {
    width: 2.4285714286em;
    font-size: 0.7rem;
}

html {
    height: 100%;
    box-sizing: border-box;
}

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

ul[class],
ol[class] {
    list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

sup {
    vertical-align: text-top;
}

input,
button,
textarea,
select {
    font: inherit;
}

body {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    font-family: "Roboto", sans-serif;
    font-size: 4.375vw;
    font-size: clamp(14px, 4.375vw, 24px);
    line-height: 1.573;
    color: #373737;
    /* stylelint-disable-next-line */
}
@media screen and (min-width: 1025px) {
    body {
        font-size: 1.3125rem;
        line-height: 1.39;
    }
}
body.body--fixed {
    overflow-y: hidden;
}

.content-wrapper {
    width: 100%;
    max-width: 938px;
    margin: 0 auto;
    padding-right: 3.75vw;
    padding-left: 3.75vw;
    /*@media screen and (min-width: $desktop) {
      padding-right: rem($tabletPadding);
      padding-left: rem($tabletPadding);
    }*/
}
@media screen and (min-width: 1025px) {
    .content-wrapper {
        max-width: 1280px;
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
}
@media screen and (min-width: 1025px) {
    .content-wrapper--wide {
        max-width: 1886px;
    }
}

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

@media screen and (min-width: 1025px) {
    .main {
        overflow-x: hidden;
    }
}

.area-clickable:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.page-layout {
    position: relative;
}

/************** Common *************/
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 15vw;
    padding: 0 4.6875vw;
    font-size: 6.25vw;
    font-weight: bold;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 45px 3px rgba(86, 51, 154, 0.5);
    transition: background-color 180ms ease-out, color 180ms ease-out;
}
@media screen and (min-width: 1025px) {
    .button {
        height: 3.6875rem;
        padding: 0 3.125rem;
        font-size: 1.8125rem;
        letter-spacing: 0.0045em;
    }
}
.button.disabled {
    background-color: #cbc9d3;
    box-shadow: none;
}
.button:not(:disabled) {
    cursor: pointer;
}
a.button {
    text-decoration: none;
}

.button--primary {
    background: #7e60ec linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
}
@media screen and (max-width: 1024px) {
    .button--primary {
        border-radius: 0.5rem;
        background: #7e60ec;
    }
}
.button--secondary {
    background: #55edb1 linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
}
.button--small {
    letter-spacing: normal;
}
@media screen and (min-width: 1025px) {
    .button--small {
        height: 2.5625rem;
        padding: 0 2.8125rem;
        font-size: 1.3125rem;
    }
}

.checkbox {
    position: relative;
    min-height: 9.375vw;
    padding-left: 11.25vw;
}
@media screen and (min-width: 1025px) {
    .checkbox {
        min-height: 1.875rem;
        padding-left: 2.25rem;
    }
}
.checkbox__input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.checkbox__box {
    position: absolute;
    margin-top: 1.25vw;
    margin-left: -11.25vw;
    width: 7.5vw;
    height: 7.5vw;
    overflow: hidden;
    line-height: 1.45;
    font-size: 4.375vw;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    box-shadow: 0 0 0 1px #ddd;
}
@media screen and (min-width: 1025px) {
    .checkbox__box {
        margin-top: -0.125rem;
        margin-left: -2.25rem;
        width: 1.4375rem;
        height: 1.4375rem;
        font-size: 0.875rem;
    }
}
.checkbox:hover > .checkbox__box {
    background-color: #f9f9f9;
}
.checkbox__input:checked + .checkbox__box {
    box-shadow: 0 0 0 1px #e4e7ec;
    background-color: #e4e7ec;
}
@media screen and (max-width: 1024px) {
    .checkbox__input:checked + .checkbox__box {
        background-size: 5.625vw auto;
    }
}
.checkbox__input:disabled + .checkbox__box {
    box-shadow: 0 0 0 0.1em #9B9B9B;
}
.checkbox__input:disabled + .checkbox__box--blue {
    box-shadow: 0 0 0 0.1em #9B9B9B;
}
.checkbox__input:checked:disabled + .checkbox__box {
    background-color: #9B9B9B;
}
.checkbox__input:checked:disabled + .checkbox__box--blue {
    background-color: #9B9B9B;
}

.text-field {
    height: 5.625vw;
    padding: 0;
    font-size: 4.375vw;
    color: #373737;
    border: 0;
    border-bottom: 2px solid rgba(23, 11, 69, 0.12);
}
@media screen and (min-width: 1025px) {
    .text-field {
        height: 1.75rem;
        font-size: 1.3125rem;
    }
}
textarea.text-field {
    min-height: 6.5625vw;
    padding-top: 3.4375vw;
    resize: vertical;
    overflow: hidden;
}
@media screen and (min-width: 1025px) {
    textarea.text-field {
        min-height: 3.625rem;
        padding-top: 0.6875rem;
    }
}
textarea.text-field--expanded {
    min-height: 15.625vw;
    overflow: initial;
}
@media screen and (min-width: 1025px) {
    textarea.text-field--expanded {
        min-height: 5.625rem;
    }
}

.text-field:focus {
    outline: 0;
    border-color: #7e60ec;
}
.text-field:disabled::placeholder {
    opacity: 0.5;
}

.field {
    display: flex;
    margin-bottom: 6.25vw;
}
@media screen and (min-width: 1025px) {
    .field {
        width: 16.1875rem;
        margin-bottom: 2.375rem;
    }
}
.field--full-width {
    width: 100% !important;
}
.field .pre-label {
    margin-right: 3.125vw;
}
@media screen and (min-width: 1025px) {
    .field .pre-label {
        margin-right: 1.0625rem;
    }
}

.floating-label {
    position: relative;
    flex-grow: 1;
}
.floating-label__input {
    width: 100%;
}
.floating-label__input::placeholder {
    opacity: 0;
}
.floating-label__label {
    position: absolute;
    top: 0;
    left: 0;
    color: #9a9a9a;
    transform: translateY(0);
    transition-duration: 300ms;
}
.floating-label:focus-within > .floating-label__input, .floating-label__input:not(:placeholder-shown) {
    border-color: #7e60ec;
}
.floating-label:focus-within > .floating-label__label, .floating-label:has(.floating-label__input:not(:placeholder-shown)) .floating-label__label, .chosen-container.updated + .floating-label__label {
    font-size: 3.125vw;
    color: #7e60ec;
    transform: translateY(-11px);
}
@media screen and (min-width: 1025px) {
    .floating-label:focus-within > .floating-label__label, .floating-label:has(.floating-label__input:not(:placeholder-shown)) .floating-label__label, .chosen-container.updated + .floating-label__label {
        font-size: 0.8125rem;
        transform: translateY(-17px);
    }
}
.chosen-container + .floating-label__label {
    pointer-events: none;
}

.chosen-container {
    font-size: 4.375vw;
}
@media screen and (min-width: 1025px) {
    .chosen-container {
        font-size: 1.3125rem;
    }
}
.chosen-container .chosen-default span {
    display: none;
}
.chosen-container .chosen-single {
    height: 6.875vw;
    padding-left: 0;
    background: none;
    border: solid rgba(23, 11, 69, 0.12);
    border-width: 0 0 2px;
    border-radius: 0;
    box-shadow: none;
}
@media screen and (min-width: 1025px) {
    .chosen-container .chosen-single {
        height: 1.75rem;
    }
}
.chosen-container .chosen-drop {
    border-color: transparent;
    filter: drop-shadow(0 2.5vw 5vw rgba(0, 0, 0, 0.3));
}
@media screen and (min-width: 1025px) {
    .chosen-container .chosen-drop {
        filter: drop-shadow(0 0.5rem 1rem rgba(0, 0, 0, 0.3));
    }
}
.chosen-container .chosen-results {
    margin: 0;
    padding: 0;
}
.chosen-container .chosen-results li {
    padding: 3.75vw 5vw;
}
@media screen and (min-width: 1025px) {
    .chosen-container .chosen-results li {
        padding: 0.9375rem 1rem;
    }
}
.chosen-container .chosen-results li.highlighted {
    color: inherit;
    background: #f4f4f5;
}
.chosen-container.updated .chosen-single {
    border-color: #7e60ec;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    background-image: none;
    border-color: #7e60ec;
    border-width: 0 0 3px;
}

.locales {
    padding: 2.1875vw 0;
}
@media screen and (min-width: 1025px) {
    .locales {
        padding: 0.875rem 0;
    }
}
.locales__wrapper {
    display: flex;
    align-items: center;
}
.locales__item {
    position: relative;
    display: flex;
    flex: 1 1 50%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.locales__item::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 2.5vw;
    border-left: 0.9375vw solid transparent;
    border-right: 0.9375vw solid transparent;
    border-top: 0.9375vw solid currentColor;
    transform: translateY(0.9375vw);
}
@media screen and (min-width: 1025px) {
    .locales__item {
        flex: 0 1 auto;
        cursor: pointer;
    }
    .locales__item + .locales__item {
        margin-left: 2.25rem;
    }
    .locales__item::after {
        content: "";
        width: 0;
        height: 0;
        margin-left: 0.75rem;
        border-left: 0.25rem solid transparent;
        border-right: 0.25rem solid transparent;
        border-top: 0.25rem solid currentColor;
        transform: translateY(0.3125rem);
    }
}
.locales__item--active::after {
    transform: rotate(180deg) translateY(-0.9375vw);
}
@media screen and (min-width: 1025px) {
    .locales__item--active::after {
        transform: rotate(180deg) translateY(-0.375rem);
    }
}
.locales__item:first-of-type .locale-dropdown__list--expanded {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: max-content;
}
@media screen and (min-width: 1025px) {
    .locales__item:first-of-type .locale-dropdown__list--expanded {
        grid-template-columns: repeat(4, 1fr);
    }
}

.locale-dropdown__list {
    position: absolute;
    top: 4.375vw;
    left: 0;
    z-index: 2;
    display: none;
    padding: 2.1875vw 0;
    color: #7e60ec;
    background-color: #fff;
    border-radius: 3px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.24));
}
@media screen and (min-width: 1025px) {
    .locale-dropdown__list {
        top: 1.375rem;
        padding: 0.4375rem 0;
        transform: translate(1.375rem, -0.25rem);
    }
}
.locale-dropdown__list--expanded {
    display: block;
}
.locale-dropdown__item {
    padding: 1.875vw 5.625vw;
}
@media screen and (min-width: 1025px) {
    .locale-dropdown__item {
        padding: 0.6875rem 1.125rem;
    }
}
.locale-dropdown__item.active a {
    color: #170b45;
    text-decoration: none;
}

.social {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5.3125vw;
    margin-top: -5.3125vw;
}
@media screen and (min-width: 1025px) {
    .social {
        margin-left: -0.75rem;
        margin-top: -0.75rem;
    }
}
.social__item {
    margin-left: 5.3125vw;
    margin-top: 5.3125vw;
}
@media screen and (min-width: 1025px) {
    .social__item {
        margin-left: 0.75rem;
        margin-top: 0.75rem;
    }
}
.social__icon {
    width: 10vw;
    height: 10vw;
}
@media screen and (min-width: 1025px) {
    .social__icon {
        width: 1.625rem;
        height: 1.625rem;
    }
}

.copyright {
    margin-top: 6.25vw;
    padding: 3.125vw 0;
    font-size: 3.125vw;
    color: #fff;
    background-color: #000;
}
@media screen and (max-width: 1024px) {
    .copyright {
        letter-spacing: -0.01em;
    }
}
@media screen and (min-width: 1025px) {
    .copyright {
        margin-top: 0;
        padding: 0.375rem 0;
        font-size: 0.8125rem;
    }
}

/************** Other *************/
.analytics {
    position: relative;
    padding: 12.5vw 0 0;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .analytics {
        padding: 4.8125rem 0 0.9375rem;
    }
}
.analytics__title {
    margin-bottom: 5.3125vw;
}
@media screen and (min-width: 1025px) {
    .analytics__title {
        margin-bottom: 3.375rem;
    }
}

.application {
    position: relative;
    padding: 12.5vw 0 15.3125vw;
    color: #fff;
    background: #7e60ec linear-gradient(to top, #7d5fea 0%, #302063 100%);
}
@media screen and (max-width: 1024px) {
    .application {
        text-align: center;
    }
}
@media screen and (min-width: 1025px) {
    .application {
        padding: 8.75rem 0 8.625rem;
        overflow: hidden;
    }
}
.application:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(./media/images/D.png) no-repeat -121.875vw -59.375vw;
    background-size: 171.875vw;
}
@media screen and (min-width: 1025px) {
    .application:before {
        background-position: -13.125rem -18.75rem;
        background-size: 56.125rem;
    }
}
@supports (background-image: image-set(url("./media/images/D.webp") 1x)) {
    .application:before {
        background-image: url(./media/images/D.webp);
    }
}
.application__wrapper {
    position: relative;
}
@media screen and (min-width: 1025px) {
    .application__content {
        position: relative;
        margin: 0 0 0 33.1%;
    }
}
.application__title {
    margin-bottom: 4.375vw;
    color: inherit;
}
@media screen and (min-width: 1025px) {
    .application__title {
        margin-bottom: 1.4375rem;
    }
}
.application__text {
    margin-bottom: 12.1875vw;
}
@media screen and (min-width: 1025px) {
    .application__text {
        margin-bottom: 2.5rem;
        padding-right: 5%;
    }
}
.application__icon {
    width: 7.5vw;
    margin-top: 0.9375vw;
    margin-right: 4.6875vw;
}
@media screen and (min-width: 1025px) {
    .application__icon {
        width: 2.4375rem;
        margin-top: 0;
        margin-right: 1.25rem;
    }
}
.application__phones {
    width: 81.875vw;
    margin: 4.6875vw auto 0;
}
@media screen and (min-width: 1025px) {
    .application__phones {
        position: absolute;
        top: -3.375rem;
        left: -33.375rem;
        width: 26.1875rem;
        margin: 0;
    }
}
.application__phones img {
    display: block;
    width: 100%;
}

.couriers {
    padding-top: 13.4375vw;
    overflow: hidden;
}
@media screen and (max-width: 1024px) {
    .couriers {
        background: url(./media/images/map@2x.png) no-repeat center bottom -125px/250vw;
    }
}
@media screen and (min-width: 1025px) {
    .couriers {
        padding-top: 8.75rem;
        padding-bottom: 9.25rem;
        background-size: auto 120%;
    }
}
.couriers .content-wrapper {
    position: relative;
}
.couriers__content {
    position: relative;
}
@media screen and (min-width: 1025px) {
    .couriers__content {
        margin: 0 49% 0 0;
    }
}
.couriers__pic {
    position: relative;
    top: -21.875vw;
}
@media screen and (max-width: 1024px) {
    .couriers__pic {
        max-width: 100vw;
        height: 141.875vw;
    }
}
@media screen and (min-width: 1025px) {
    .couriers__pic {
        position: absolute;
        top: -7.75rem;
        right: -33.0625rem;
        width: 25.1875rem;
    }
}
.couriers__pic img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .couriers__pic img {
        position: relative;
        top: 15.9375vw;
        width: 100%;
    }
}
.couriers__pic--map {
    width: 81.25rem;
    right: -20rem;
    top: -8.75rem;
}
@media screen and (max-width: 1024px) {
    .couriers__pic--map {
        display: none;
    }
}
.couriers__title {
    margin-bottom: 5.9375vw;
}
@media screen and (max-width: 1024px) {
    .couriers__title {
        text-align: center;
    }
}
@media screen and (min-width: 1025px) {
    .couriers__title {
        margin-bottom: 2.125rem;
    }
}
.couriers__desc {
    margin-bottom: 10.9375vw;
}
@media screen and (max-width: 1024px) {
    .couriers__desc {
        text-align: center;
    }
}
@media screen and (min-width: 1025px) {
    .couriers__desc {
        margin-bottom: 3.4375rem;
    }
}
.couriers__list {
    line-height: 1.15;
    font-weight: 300;
    color: #170b45;
}
@media screen and (min-width: 1025px) {
    .couriers__list {
        line-height: 1;
    }
}
.couriers__list-item {
    display: flex;
    align-items: center;
}
.couriers__list-item + .couriers__list-item {
    margin-top: 10.625vw;
}
@media screen and (min-width: 1025px) {
    .couriers__list-item + .couriers__list-item {
        margin-top: 3.25rem;
    }
}
.couriers__list-pic {
    width: 7.5vw;
    margin-right: 4.6875vw;
}
@media screen and (min-width: 1025px) {
    .couriers__list-pic {
        width: 2.4375rem;
        margin-right: 1.25rem;
    }
}

.custom-slider__nav {
    position: relative;
    height: 8.75vw;
    margin: 0 0 8.125vw;
}
@media screen and (min-width: 1025px) {
    .custom-slider__nav {
        max-width: 58.875rem;
        height: 3.125rem;
        margin: 0 auto 1.0625rem;
    }
}
.custom-slider__wrapper {
    margin: 0 -3.75vw;
}
@media screen and (min-width: 1025px) {
    .custom-slider__wrapper {
        width: 100vw;
        margin: 0 0 0 calc((100vw - 1257px) / 2 * -1);
    }
}
@media screen and (min-width: 1441px) {
    .custom-slider__wrapper {
        margin-left: calc((100vw - 1257px) / 2 * -1);
    }
}
.custom-slider .slick-slide {
    width: 100vw;
}
@media screen and (min-width: 1025px) {
    .custom-slider .slick-slide {
        position: relative;
    }
}
@media screen and (min-width: 1441px) {
    .custom-slider .slick-slide {
        width: 30vw;
        min-height: 40.3125rem;
        margin: 0 7.3vw;
        transition: all 300ms linear;
    }
}
.custom-slider .slick-slide:not(.slick-current) {
    opacity: 0.6;
}
@media screen and (min-width: 1025px) {
    .custom-slider .slick-slide:not(.slick-current) .slide {
        padding: 12px;
    }
}
@media screen and (min-width: 1441px) {
    .custom-slider .slick-slide:not(.slick-current) .slide__text {
        display: none;
        opacity: 0;
    }
}
@media screen and (min-width: 1441px) {
    .custom-slider .slick-slide.slick-current .slide {
        width: 53vw;
        transform: translate(-11.6vw, 0);
        opacity: 1;
    }
}
.custom-slider .slick-arrow {
    position: absolute;
    top: 0.625vw;
    width: 12.5vw;
    height: 8.75vw;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
}
@media screen and (min-width: 1025px) {
    .custom-slider .slick-arrow {
        top: 0;
        width: 4rem;
        height: 2.8125rem;
    }
}
.custom-slider .slick-arrow:not(:disabled) {
    cursor: pointer;
}
.custom-slider .slick-prev {
    left: 0;
    background-image: url(./media/icons/left.svg);
}
.custom-slider .slick-next {
    right: 0;
    background-image: url(./media/icons/right.svg);
}
.custom-slider .slick-dots {
    display: flex;
    justify-content: center;
    text-align: center;
    list-style: none;
}
.custom-slider .slick-dots button {
    width: 3.75vw;
    height: 3.75vw;
    margin: 0.625vw;
    font-size: 0;
    background-color: transparent;
    border: 1.25vw solid #eaeaea;
    border-radius: 50%;
}
@media screen and (min-width: 1025px) {
    .custom-slider .slick-dots button {
        width: 1.1875rem;
        height: 1.1875rem;
        margin: 0.1875rem;
        border-width: 0.375rem;
    }
}
.custom-slider .slick-dots .slick-active button {
    background-color: #7e60ec;
    border-color: #7e60ec;
}

.slide {
    width: 100%;
    margin: 0 auto;
    padding: 5.625vw 3.75vw 3.75vw;
    background-color: rgba(212, 204, 242, 0.3);
}
@media screen and (min-width: 1025px) {
    .slide {
        padding: 2rem 1.375rem 1.4375rem;
        transition: all 300ms linear;
    }
}
@media screen and (min-width: 1441px) {
    .slide {
        position: relative;
        top: 0;
        left: 0;
        transform: translateY(120px);
        border-radius: 0.75rem;
    }
}
.slide__text {
    margin: 0 -1.5625vw 8.125vw;
}
@media screen and (min-width: 1025px) {
    .slide__text {
        margin: 0 6% 1rem;
    }
}
.slide__img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0px 5px 40px rgba(164, 234, 251, 0.5));
}

.design {
    padding: 7.1875rem 0 8.75rem;
}
.design-hidden-image {
    visibility: hidden;
    width: 0;
    height: 0;
}
.design-wrapper {
    width: 50%;
}
@media screen and (max-width: 1024px) {
    .design {
        padding: 1.5625rem 0 1.5625rem;
    }
    .design-wrapper {
        width: 100%;
    }
    .design-wrapper button, .design-wrapper a {
        width: 100%;
    }
}
.design p {
    font-size: 1.625rem;
}
@media screen and (max-width: 1024px) {
    .design p {
        font-size: 0.75rem;
        text-align: center;
    }
}
.design__selectors {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 2.5rem;
    margin: 1.875rem 0 5rem;
}
@media screen and (max-width: 1024px) {
    .design__selectors {
        margin: 0.625rem 0 1.75rem;
        row-gap: 1.1875rem;
        justify-items: center;
        display: none;
    }
}
.design .circle-btn, .design .outline {
    display: block;
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    cursor: pointer;
}
.design .circle-btn .outline, .design .outline .outline {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 6px solid #7e60ec;
    outline: none;
}
@media screen and (max-width: 1024px) {
    .design .circle-btn, .design .outline {
        width: 2.5rem;
        height: 2.5rem;
    }
    .design .circle-btn .outline, .design .outline .outline {
        border-width: 4px;
    }
}
.design .circle-btn input, .design .outline input {
    display: none;
}
.design .circle-btn input:checked ~ .outline, .design .outline input:checked ~ .outline {
    display: block;
}
.design__description {
    display: flex;
    justify-content: space-between;
    margin-top: 10rem;
}
@media screen and (max-width: 1024px) {
    .design__description {
        flex-direction: column;
        row-gap: 0.3125rem;
        margin-top: 2.0625rem;
    }
}
.design__description-block {
    display: flex;
    align-items: flex-start;
    column-gap: 0.9375rem;
}
.design__description-block img {
    width: 2.5rem;
}
@media screen and (max-width: 1024px) {
    .design__description-block p {
        text-align: left;
        font-size: 1rem;
    }
    .design__description-block img {
        width: 1.25rem;
    }
}
@media screen and (max-width: 1024px) {
    .design__text {
        display: none;
    }
}

.details {
    padding-bottom: 7.5rem;
}
.details h2 {
    text-transform: uppercase;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    color: #170b45;
}
.details p {
    font-size: 1.625rem;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .details {
        padding-bottom: 3.75rem;
    }
    .details h2 {
        font-size: 1.25rem;
    }
    .details p {
        font-size: 0.625rem;
    }
}
.details__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem 7.5rem;
    padding: 1.5625rem 5.625rem 8.75rem;
}
@media screen and (max-width: 1024px) {
    .details__steps {
        padding: 1.875rem 0 3.125rem;
        gap: 0.625rem 1.875rem;
    }
}
.details__steps-block {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.details__steps-block span {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0.9375rem;
    height: 5.75rem;
    width: 5.75rem;
    color: #fff;
    background-color: #55edb1;
    border-radius: 50%;
    font-size: 3.375rem;
}
@media screen and (max-width: 1024px) {
    .details__steps-block span {
        height: 1.75rem;
        width: 1.75rem;
        font-size: 1rem;
        top: 0.3125rem;
        left: -0.3125rem;
    }
}
.details__steps-block img {
    width: 12.5rem;
}
@media screen and (max-width: 1024px) {
    .details__steps-block img {
        width: 3.75rem;
    }
}
.details__steps p {
    margin: 0;
}
.details .pricing {
    list-style: none;
    padding-left: 0;
    font-size: 1.625rem;
}
.details .pricing__description {
    padding: 0.625rem 0 4.375rem;
}
@media screen and (max-width: 1024px) {
    .details .pricing__description {
        font-size: 0.75rem;
        padding: 0.4375rem 0 0.8125rem;
    }
}
.details .pricing li {
    display: flex;
    justify-content: space-between;
    padding: 2rem 2.375rem 1.875rem;
    border-top: 2px solid #cfcfcf;
}
.details .pricing li:last-of-type {
    border-bottom: 2px solid #cfcfcf;
}
@media screen and (max-width: 1024px) {
    .details .pricing li {
        padding: 0.8125rem 0.625rem 0.625rem;
    }
}
.details .pricing__type {
    padding: 2.375rem 2.375rem 2.125rem !important;
    font-size: 1.25rem;
    font-weight: bold;
    background-color: #f9f8fa;
    color: #cfcfcf;
    text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
    .details .pricing {
        font-size: 0.75rem;
    }
    .details .pricing__type {
        padding: 0.9375rem 0.625rem 0.625rem !important;
        font-size: 0.625rem;
    }
}
.details .pricing span {
    font-weight: bold;
}

.form-request__title {
    margin-bottom: 5vw;
    font-weight: bold;
}
@media screen and (min-width: 1025px) {
    .form-request__title {
        margin-bottom: 1.625rem;
    }
}
.form-request__select {
    border: none;
    border-bottom: 2px solid #e2e1e8;
    width: 100%;
    outline: none;
}
.form-request__success {
    display: none;
    padding: 10px;
    background: #44c592;
    border-radius: 10px;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.form-request__text {
    margin-bottom: 5vw;
    font-size: 3.125vw;
}
@media screen and (max-width: 1024px) {
    .form-request__text {
        line-height: 1.4;
    }
}
@media screen and (min-width: 1025px) {
    .form-request__text {
        margin-bottom: 2.5rem;
        padding-right: 1.375rem;
        font-size: 1rem;
    }
}
.form-request__form:after {
    content: "";
    display: block;
    clear: both;
}
.form-request__btn {
    float: right;
    margin-top: -0.9375vw;
}
@media screen and (max-width: 1024px) {
    .form-request__btn {
        height: 7.8125vw;
        padding: 0 5.3125vw;
        font-size: 4.0625vw;
        text-transform: uppercase;
    }
}
@media screen and (min-width: 1025px) {
    .form-request__btn {
        margin-top: -0.5rem;
    }
}

.intro {
    position: relative;
    color: #fff;
    background: url(/wp-content/uploads/2021/06/lighthouse.jpg);
    background-position: center;
    min-height: 486px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.intro-landing {
    padding: 1.875rem 0 17.8125rem;
}
@media screen and (max-width: 600px) {
    .intro {
        background-position: 60%;
    }
}
@media screen and (max-width: 1024px) {
    .intro {
        overflow: hidden;
    }
    .intro-landing {
        overflow: unset;
        padding-bottom: 1.875rem;
    }
}
@media screen and (min-width: 1025px) {
    .intro-landing {
        padding: 9.375rem 0 8.4375rem;
    }
}
.intro__wrapper {
    position: relative;
}
@media screen and (max-width: 1024px) {
    .intro__wrapper {
        display: flex;
    }
}
.intro__title {
    margin-bottom: 7.8125vw;
    line-height: 1.2;
    font-size: 7.5vw;
}
.intro__title-uppercase {
    text-transform: uppercase;
    margin-bottom: 1.5625rem;
    font-size: 1.25rem;
    font-weight: bold;
}
@media screen and (max-width: 1024px) {
    .intro__title {
        font-weight: 300;
    }
    .intro__title-uppercase {
        font-weight: bold;
    }
}
@media screen and (min-width: 1025px) {
    .intro__title {
        position: relative;
        z-index: 2;
        width: 72%;
        max-width: 44.0625rem;
        margin-bottom: 2.875rem;
        font-size: 3.625rem;
    }
    .intro__title-uppercase {
        font-size: 2.75rem;
        margin-bottom: 3.75rem;
    }
}
.intro__description {
    color: #55edb1;
    font-size: 2.25rem;
    width: 50%;
}
@media screen and (max-width: 1024px) {
    .intro__description {
        font-weight: 300;
        font-size: 1rem;
        width: 85%;
        margin: 0 auto;
    }
}
.intro__btn {
    padding: 0 3.75vw;
}
@media screen and (min-width: 500px) {
    .intro__btn {
        font-size: 1.8125rem;
        height: 3.6875rem;
        padding: 0 3.125rem;
        letter-spacing: 0.0045em;
    }
}
@media screen and (max-width: 1024px) {
    .intro__btn {
        position: relative;
        z-index: 2;
    }
}
@media screen and (min-width: 1025px) {
    .intro__btn {
        padding: 0 3.125rem;
    }
}
.intro__pic {
    position: absolute;
}
@media screen and (max-width: 1024px) {
    .intro__pic {
        bottom: -93.125vw;
        left: -29vw;
        width: 158vw;
    }
}
@media screen and (min-width: 1025px) {
    .intro__pic {
        bottom: -7.5625rem;
        left: auto;
        right: -12.5rem;
        width: 56.1875rem;
    }
}
.intro__pic img {
    display: block;
    width: 100%;
}
.intro__design {
    position: absolute;
    right: 0;
    top: -70px;
    width: 32rem;
    height: 64.5rem;
}
.intro__design img {
    position: absolute;
}
.intro__design-border {
    z-index: 1;
}
.intro__design-content {
    top: 22px;
    left: 29px;
    width: 89.5%;
}
@media screen and (max-width: 1024px) {
    .intro__design {
        position: relative;
        width: 16rem;
        height: 32.3125rem;
        inset: initial;
        margin-left: auto;
        margin-right: 1.25rem;
    }
    .intro__design-border {
        left: 0;
        height: 100%;
        position: static !important;
    }
    .intro__design-content {
        top: 0.75rem;
        left: 0.875rem;
        height: 97%;
    }
}
.intro__colors {
    display: none;
}
@media screen and (max-width: 1024px) {
    .intro__colors {
        padding: 1.75rem 0 0 0;
        display: block;
    }
    .intro__colors .circle-btn {
        margin-bottom: 1.25rem;
    }
    .intro__colors .circle-btn:last-child {
        margin-bottom: 0;
    }
}
.intro__circle {
    display: none;
    position: absolute;
    right: -1.25rem;
    top: -2.1875rem;
    background: #7e60ec;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    font-size: 0.875rem;
    color: #fff;
    text-align: center;
}
.intro__circle b {
    line-height: 1.875rem;
    font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
    .intro__circle {
        display: flex;
    }
}
@media screen and (max-width: 1024px) {
    .intro__block {
        display: flex;
        margin-top: 3.125rem;
        order: 3;
    }
}

.marketing {
    padding: 13.4375vw 0 15vw;
    text-align: center;
    color: #fff;
    background-color: #20183e;
}
@media screen and (min-width: 1025px) {
    .marketing {
        padding: 4rem 0 2.5rem;
    }
}
.marketing__title {
    margin-bottom: 3.4375vw;
    color: inherit;
}
@media screen and (min-width: 1025px) {
    .marketing__title {
        margin-bottom: 1.875rem;
    }
}
.marketing__text {
    margin-bottom: 5vw;
}
@media screen and (min-width: 1025px) {
    .marketing__text {
        margin: 0 18% 1rem;
    }
}
.marketing__nav {
    position: relative;
    height: 8.75vw;
    margin: 0 0 8.125vw;
}
@media screen and (min-width: 1025px) {
    .marketing__nav {
        max-width: 90rem;
        height: 3.125rem;
        margin: 0 0 2.25rem;
    }
}
@media screen and (max-width: 1024px) {
    .marketing__list {
        overflow: hidden;
        border-radius: 2.1875vw;
    }
}
@media screen and (min-width: 1025px) {
    .marketing__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}
.marketing .slick-arrow {
    position: absolute;
    top: 0.625vw;
    width: 12.5vw;
    height: 8.75vw;
    font-size: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
}
@media screen and (min-width: 1025px) {
    .marketing .slick-arrow {
        top: 0;
        width: 4rem;
        height: 2.8125rem;
    }
}
.marketing .slick-arrow:not(:disabled) {
    cursor: pointer;
}
.marketing .slick-prev {
    left: 0;
    background-image: url(./media/icons/left.svg);
}
.marketing .slick-next {
    right: 0;
    background-image: url(./media/icons/right.svg);
}
.marketing .slick-dots {
    display: flex;
    justify-content: center;
    text-align: center;
    list-style: none;
}
.marketing .slick-dots button {
    width: 3.75vw;
    height: 3.75vw;
    margin: 0.625vw;
    font-size: 0;
    background-color: transparent;
    border: 1.25vw solid #eaeaea;
    border-radius: 50%;
}
@media screen and (min-width: 1025px) {
    .marketing .slick-dots button {
        width: 1.1875rem;
        height: 1.1875rem;
        margin: 0.1875rem;
        border-width: 0.375rem;
    }
}
.marketing .slick-dots .slick-active button {
    background-color: #7e60ec;
    border-color: #7e60ec;
}

.marketing-slide {
    position: relative;
    width: 92.5vw;
    padding: 5.9375vw 3.125vw 66.875vw;
    line-height: 1.28;
    color: #373737;
    background-color: #fff;
}
@media screen and (min-width: 1025px) {
    .marketing-slide {
        width: calc(33.3% - 40px);
        margin: 0 0 3.75rem;
        padding: 2.75rem 0.625rem 21.7%;
        border-radius: 0.75rem;
    }
}
.marketing-slide__title {
    margin-bottom: 5.3125vw;
    font-weight: bold;
}
@media screen and (min-width: 1025px) {
    .marketing-slide__title {
        margin-bottom: 1.3125rem;
    }
}
.marketing-slide__text {
    position: relative;
    z-index: 2;
    margin-bottom: 5.9375vw;
}
@media screen and (min-width: 1025px) {
    .marketing-slide__text {
        max-width: 28.125rem;
        margin: 0 auto 0.625rem;
        font-size: 1.25rem;
    }
}
.marketing-slide__pic {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.marketing-slide__pic img {
    display: block;
    width: 100%;
}

.modal {
    position: relative;
    width: 95vw;
    max-height: 100%;
    background-color: #fff;
    border-radius: 1.875vw;
    filter: drop-shadow(0 1.5625vw 12.5vw rgba(23, 11, 69, 0.12));
    overflow-y: auto;
}
@media screen and (min-width: 1025px) {
    .modal {
        width: 40.375rem;
        border-radius: 0.75rem;
        filter: drop-shadow(0 5px 40px rgba(23, 11, 69, 0.12));
    }
}
.modal__close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10vw;
    height: 10vw;
    position: absolute;
    top: 2.5vw;
    right: 2.5vw;
    color: #9a9a9a;
    cursor: pointer;
}
@media screen and (min-width: 1025px) {
    .modal__close {
        top: 1.25rem;
        right: 1.25rem;
        width: 2.375rem;
        height: 2.375rem;
    }
}
.modal__close:hover {
    color: #373737;
}
.modal__close img {
    width: 50%;
    fill: currentColor;
}
@media screen and (min-width: 1025px) {
    .modal__close img {
        width: 68%;
    }
}
.modal__content {
    padding: 5.625vw 7.1875vw 7.5vw;
}
@media screen and (min-width: 1025px) {
    .modal__content {
        padding: 2.0625rem 2.3125rem 2.3125rem;
    }
}

.layout {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}
.layout.layout--show {
    display: flex;
}

.modules {
    padding: 12.5vw 0 11.25vw;
}
@media screen and (min-width: 1025px) {
    .modules {
        padding: 5.5625rem 0 3.75rem;
    }
}
@media screen and (min-width: 1025px) {
    .modules__wrapper {
        max-width: 91.875rem;
    }
}
.modules__title {
    margin: 0 5% 12.5vw;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .modules__title {
        max-width: 62.5rem;
        margin: 0 auto 2.1875rem;
    }
}
.modules__list {
    line-height: 1.4;
}
@media screen and (max-width: 1024px) {
    .modules__list {
        font-size: 5.625vw;
    }
}
@media screen and (min-width: 1025px) {
    .modules__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        font-weight: bold;
    }
}
@media screen and (max-width: 1024px) {
    .modules__item {
        display: flex;
        align-items: center;
        margin-bottom: 3.75vw;
    }
}
@media screen and (min-width: 1025px) {
    .modules__item {
        flex: 0 0 10.625rem;
        margin: 0 5.3% 2.25rem;
        text-align: center;
    }
}
@media screen and (max-width: 1024px) {
    .modules__pic {
        max-width: 10vw;
        margin-right: 5vw;
    }
}
@media screen and (min-width: 1025px) {
    .modules__pic {
        display: block;
        margin: 0 auto 0.5625rem;
        width: 9.375rem;
    }
}

.orders {
    padding: 12.5vw 0 2.1875vw;
    text-align: center;
    color: #fff;
    background-color: #20183e;
}
@media screen and (min-width: 1025px) {
    .orders {
        position: relative;
        padding: 10.4375rem 0 8.0625rem;
        text-align: left;
        /*background: #20183e url('./media/images/grad.png') no-repeat 0 0;*/
        background-image: radial-gradient(circle at -120% -350%, #51dfa9, #20183e);
        background-repeat: no-repeat;
    }
}
@media screen and (min-width: 1025px) {
    .orders__content {
        position: relative;
        margin: 0 0 0 37%;
    }
}
.orders__title {
    margin-bottom: 5.9375vw;
    color: inherit;
}
@media screen and (min-width: 1025px) {
    .orders__title {
        margin-bottom: 1.875rem;
    }
}
.orders__text {
    margin-bottom: 6.875vw;
}
@media screen and (min-width: 1025px) {
    .orders__text {
        margin-bottom: 3.4375rem;
    }
}
@media screen and (min-width: 1025px) {
    .orders__text p + p {
        margin-top: 2.25rem;
    }
}
@media screen and (min-width: 1025px) {
    .orders__item {
        width: 41.5%;
    }
}
.orders__icon {
    width: 7.5vw;
    margin-top: 0.9375vw;
    margin-right: 4.6875vw;
}
@media screen and (min-width: 1025px) {
    .orders__icon {
        width: 2.4375rem;
        margin-top: 0;
        margin-right: 1.25rem;
    }
}
.orders__pic {
    max-width: 100vw;
    margin: 2.1875vw -3.75vw 8.4375vw;
}
@media screen and (min-width: 1025px) {
    .orders__pic {
        position: absolute;
        top: -7.0625rem;
        left: -63.375rem;
        width: 57.75rem;
        margin: 0;
    }
}
.orders__pic img {
    display: block;
    width: 100%;
}

.price {
    padding: 0 0 13.125vw;
}
@media screen and (min-width: 1025px) {
    .price {
        padding: 0 0 4.75rem;
    }
}
.price__title {
    margin-bottom: 3.125vw;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .price__title {
        margin-bottom: 1.3125rem;
    }
}
.price__text {
    margin: 0 -0.9375vw 8.125vw;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .price__text {
        margin: 0 0 1.8125rem;
    }
}
@media screen and (min-width: 1025px) {
    .price__box {
        margin: 0 1.25rem;
    }
}
.price__notice {
    margin-top: 5.3125vw;
    font-weight: 700;
    color: #b1b1b1;
}
@media screen and (min-width: 1025px) {
    .price__notice {
        margin-top: 2.0625rem;
        margin-left: 1.125rem;
    }
}

.price-box {
    padding: 1.5625vw 3.4375vw 1.25vw;
    background-color: #fff;
    border-radius: 1.875vw;
    filter: drop-shadow(0 0.9375vw 6.25vw rgba(23, 11, 69, 0.12));
}
@media screen and (min-width: 1025px) {
    .price-box {
        display: flex;
        align-items: center;
        padding: 0.625rem 0.6875rem 2.3125rem;
        border-radius: 0.375rem;
        filter: drop-shadow(0 3px 20px rgba(23, 11, 69, 0.12));
    }
}
.price-box__sum {
    margin-bottom: 7.1875vw;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .price-box__sum {
        width: 22.5rem;
        margin-right: 2.875rem;
        margin-bottom: 0;
    }
}
.price-box__number {
    margin-bottom: -1.875vw;
    font-size: 34.375vw;
    font-weight: 700;
    line-height: 1;
    color: #55edb1;
}
@media screen and (min-width: 1025px) {
    .price-box__number {
        margin-bottom: -0.5rem;
        font-size: 11rem;
    }
}
.price-box__number sup {
    position: relative;
    top: 5.9375vw;
    left: -2.8125vw;
    font-size: 17.1875vw;
}
@media screen and (min-width: 1025px) {
    .price-box__number sup {
        top: 1.8125rem;
        left: -0.6875rem;
        font-size: 5.5rem;
    }
}
.price-box__title {
    margin-bottom: -1.25vw;
    font-size: 5.9375vw;
    font-weight: 700;
    color: #55edb1;
    text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
    .price-box__title {
        margin-bottom: -0.0625rem;
        font-size: 1.875rem;
    }
}
.price-box__subtitle {
    font-size: 2.5vw;
    font-weight: 400;
    color: #9a9a9a;
}
@media screen and (min-width: 1025px) {
    .price-box__subtitle {
        font-size: 0.8125rem;
    }
}
@media screen and (min-width: 1025px) {
    .price-box__descr {
        position: relative;
        top: 1rem;
        padding: 0.625rem 0;
    }
    .price-box__descr:before {
        content: "";
        position: absolute;
        top: -4%;
        left: -3.9375rem;
        width: 0.125rem;
        height: 104%;
        background-color: #cfcfcf;
    }
}
.price-box__list {
    margin-top: 0.625vw;
}
@media screen and (min-width: 1025px) {
    .price-box__list {
        margin-top: 0.125rem;
    }
}
.price-box__list li {
    position: relative;
    padding: 0.625vw 0 0.625vw 2.8125vw;
}
@media screen and (min-width: 1025px) {
    .price-box__list li {
        padding: 0.25rem 0 0.25rem 0.75rem;
    }
}
.price-box__list li:before {
    content: "•";
    position: absolute;
    top: -0.3125vw;
    left: 0;
    font-size: 5.625vw;
}
@media screen and (min-width: 1025px) {
    .price-box__list li:before {
        top: 0.1875rem;
        font-size: 1.4375rem;
    }
}

.website {
    padding: 13.4375vw 0 13.125vw;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .website {
        position: relative;
        padding: 7.5rem 0 8.375rem;
        text-align: left;
    }
}
@media screen and (min-width: 1025px) {
    .website__content {
        position: relative;
        margin: 0 31.5% 0 0;
    }
}
.website__title {
    margin-bottom: 6.25vw;
}
@media screen and (min-width: 1025px) {
    .website__title {
        margin-bottom: 2.0625rem;
    }
}
@media screen and (min-width: 1025px) {
    .website p {
        margin-top: 0.75rem;
    }
}
.website__pic {
    width: 93.125vw;
    margin: 8.125vw auto 8.4375vw;
}
@media screen and (min-width: 1025px) {
    .website__pic {
        position: absolute;
        top: -10.6875rem;
        right: -59.9375rem;
        width: 62.5625rem;
        margin: 0;
    }
}
.website__pic img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.kitchen {
    background-color: #42386b;
    background-image: radial-gradient(at 150% -210%, #b5b1c5 50px, #42386b 80%);
    background-repeat: no-repeat;
}
@media screen and (min-width: 1025px) {
    .kitchen {
        background-image: radial-gradient(circle at 90% -20%, #b5b1c5, #42386b);
        background-repeat: no-repeat;
        overflow: hidden;
    }
}
@media screen and (max-width: 1024px) {
    .kitchen {
        overflow: hidden;
        padding-top: 12.5vw;
        padding-bottom: 4.6875vw;
    }
}
@media screen and (min-width: 1025px) {
    .kitchen .content-wrapper {
        position: relative;
        height: 48rem;
        display: flex;
        align-items: center;
    }
}
@media screen and (min-width: 1025px) {
    .kitchen__content {
        position: relative;
        margin: 0 51% 0 0;
    }
}
.kitchen__title, .kitchen__desc {
    color: #fff;
}
@media screen and (max-width: 1024px) {
    .kitchen__title, .kitchen__desc {
        text-align: center;
    }
}
@media screen and (min-width: 1025px) {
    .kitchen__title, .kitchen__desc {
        position: relative;
        z-index: 1;
    }
}
.kitchen__title {
    margin-bottom: 5.625vw;
}
@media screen and (min-width: 1025px) {
    .kitchen__title {
        margin-bottom: 1.8125rem;
    }
}
@media screen and (max-width: 1024px) {
    .kitchen__desc {
        margin-bottom: 12.5vw;
    }
}
@media screen and (min-width: 1025px) {
    .kitchen__desc p {
        letter-spacing: 0.005em;
    }
    .kitchen__desc p + p {
        margin-top: 1.5rem;
    }
}
.kitchen__pic {
    width: 100vw;
    margin: 0 -3.75vw;
}
@media screen and (min-width: 1025px) {
    .kitchen__pic {
        position: absolute;
        right: -10rem;
        width: 50rem;
    }
}
@media screen and (max-width: 1024px) {
    .kitchen__pic img {
        position: relative;
        left: -14%;
        width: 154%;
        object-position: center;
    }
}
.kitchen__pic img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 1024px) {
    .kitchen__pic img {
        position: relative;
        left: -15%;
        width: 157%;
    }
}

.contacts {
    padding-top: 12.5vw;
    padding-bottom: 25vw;
    background-color: #f9f8fa;
}
@media screen and (min-width: 1025px) {
    .contacts {
        padding-top: 3.75rem;
        padding-bottom: 6.25rem;
    }
}
.contacts__title {
    margin-bottom: 3.4375vw;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .contacts__title {
        margin-bottom: 1.25rem;
        text-align: left;
    }
}
.contacts__text {
    margin-bottom: 9.0625vw;
    text-align: center;
}
@media screen and (max-width: 1024px) {
    .contacts__text {
        padding: 0 5%;
    }
}
@media screen and (min-width: 1025px) {
    .contacts__text {
        margin-bottom: 2.5rem;
        letter-spacing: 0.005em;
        text-align: left;
    }
}
@media screen and (min-width: 1025px) {
    .contacts__messengers {
        display: flex;
    }
}
@media screen and (max-width: 1024px) {
    .contacts__item + .contacts__item {
        margin-top: 7.5vw;
    }
}
@media screen and (min-width: 1025px) {
    .contacts__item + .contacts__item {
        margin-left: 1.5rem;
    }
}
.contacts__link {
    display: flex;
    align-items: center;
    font-size: 6.25vw;
}
@media screen and (min-width: 1025px) {
    .contacts__link {
        font-size: 1.3125rem;
    }
}
.contacts__link-icon {
    width: 10vw;
    height: 10vw;
    margin-right: 5.3125vw;
}
@media screen and (min-width: 1025px) {
    .contacts__link-icon {
        width: 1.625rem;
        height: 1.625rem;
        margin-right: 0.75rem;
    }
}
.contacts__btn {
    margin-top: 14.0625vw;
}
@media screen and (max-width: 1024px) {
    .contacts__btn {
        display: block;
        width: 100%;
    }
}
@media screen and (min-width: 1025px) {
    .contacts__btn {
        margin-top: 2.1875rem;
    }
}

.finance {
    padding: 14.375vw 0 9.6875vw;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .finance {
        padding: 5.0625rem 0 1.25rem;
    }
}
.finance__title {
    margin-bottom: 4.6875vw;
    text-align: center;
}
@media screen and (min-width: 1025px) {
    .finance__title {
        margin-bottom: 3.25rem;
    }
}
.finance__custom-slider {
    margin-bottom: 3.4375vw;
}
@media screen and (min-width: 1025px) {
    .finance__custom-slider {
        margin-bottom: 0rem;
    }
}

.header {
    position: sticky;
    top: -8.125vw;
    z-index: 5;
    color: #fff;
}
.header + .main {
    padding-top: 0;
}
@media screen and (min-width: 1025px) {
    .header {
        top: -2.625rem;
    }
}
.header__locales {
    font-size: 3.75vw;
    background-color: #000;
}
@media screen and (min-width: 1025px) {
    .header__locales {
        font-size: 0.875rem;
    }
}
.header__btn {
    display: none;
}
@media screen and (min-width: 1025px) {
    .header__btn {
        display: inline-flex;
        margin-left: auto;
        padding: 0 0.875rem;
    }
}
.header__home-link {
    display: inline-flex;
}
.header__user {
    display: inline-flex;
    margin-left: auto;
    padding: 0.6875rem 0.875rem;
    font-size: 14px;
}
.header__user a {
    font-weight: 700;
    color: #fff;
}

.header__logo {
    object-fit: contain;
    width: 21.875vw;
}
@media screen and (min-width: 1025px) {
    .header__logo {
        width: 10.25rem;
    }
}

.header__burger {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    width: 5vw;
    height: 3.125vw;
    background-color: inherit;
    border: 0;
    cursor: pointer;
}
.header__burger::after {
    content: "";
    position: absolute;
    width: calc(100% + 6.875vw);
    height: calc(100% + 6.875vw);
}
.header__burger:focus {
    outline: none;
}
.header__burger > span, .header__burger > span:before, .header__burger > span:after {
    position: relative;
    left: 0;
    width: 5vw;
    height: 2px;
    background-color: #fff;
    transition: top 0.25s ease-out, transform 0.25s ease-out;
}
.header__burger > span:before {
    content: "";
    position: absolute;
    top: -1.25vw;
}
.header__burger > span:after {
    content: "";
    position: absolute;
    top: 1.25vw;
}
.header__burger--open > span {
    background-color: transparent;
}
.header__burger--open > span:before {
    top: 0;
    transform: rotate(-45deg);
}
.header__burger--open > span:after {
    top: 0;
    transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
    .header__burger {
        display: none;
    }
}

.header-nav {
    padding: 3.125vw 0;
    background-color: #7e60ec;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.56);
}
@media screen and (min-width: 1025px) {
    .header-nav {
        padding: 0.6875rem 0;
    }
}
.header-nav__navigation {
    display: flex;
}
@media screen and (max-width: 1024px) {
    .header-nav__navigation {
        align-items: center;
        justify-content: space-between;
    }
}
.header-nav__list {
    display: none;
}
@media screen and (min-width: 1025px) {
    .header-nav__list {
        display: flex;
        margin-left: 5%;
    }
}
.header-nav__item {
    display: flex;
    align-items: center;
}
.header-nav__item--active {
    position: relative;
}
.header-nav__item--active::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.375rem;
    background-color: #55edb1;
    transform: translateY(0.6875rem);
}
.header-nav__item + .header-nav__item {
    margin-left: 2rem;
}
.header-nav__link {
    display: block;
    font-size: 1.3125rem;
    font-weight: 700;
    color: #fff;
}
.header-nav__link, .header-nav__link:hover {
    text-decoration: none;
}

.header__mob-button {
    display: none;
    color: #fff;
    text-decoration: none;
    background: #7e60ec;
    border-radius: 8px;
    padding: 9px 30px;
    font-size: 3vw;
    border: 0;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1025px) {
	.intro__title__wrapper {
		width: 69%;
	}
}
@media screen and (max-width: 600px) {
    .intro__btn {
        font-size: 1.2125rem;
        height: 3.6875rem;
        padding: 0 2.125rem;
        letter-spacing: 0.0045em;
    }
}

#map-clients {
	padding: 14.375vw 0 9.6875vw;
	padding-bottom: 0 !important; 
	background: #f9f8fa;
}
#map-clients .section-title {
    margin-bottom: 3.4375vw;
}

#team {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	padding: 14.375vw 0 9.6875vw;
}
@media screen and (min-width: 1025px) {
    #team, #map-clients {
        padding: 5.0625rem 0 1.25rem;
    }
	.team__text {
    	margin-left: 70px;
	}
}
#team .section-title {
    margin-bottom: 3.4375vw;
}
.team__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 120px;
}
.team__title {
    color: #49568a;
    font-weight: 600;
    text-align: center;
    margin: 0 0;
    margin-bottom: 3.4375vw;
}
.team__description {
    color: #9a9a9a;
    font-size: 28px;
    line-height: 32px;
    font-family: Roboto;
    font-weight: 400;
    margin: 0 0;
    margin-bottom: 63px;
}
.team__content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.team__text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.team__text:before {
    content: '';
    position: absolute;
    top: 5px;
    left: -64px;
    width: 40px;
    height: 40px;
    background: url(./images/quotes.jpg) no-repeat;
    background-size: 40px 40px;
}
.team__text p {
    color: #373737;
    font-weight: 400;
    margin-bottom: 29px;
    position: relative;
    margin: 0 0;
    margin-bottom: 20px;
}
.team__sign_grey {
    color: #9a9a9a;
    font-weight: 600;
    line-height: 14px;
    font-size: 14px;
}
.team__img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-left: 32px;
}
.team__img img {
    max-width: 320px;
    max-height: 320px;
}


@media screen and (max-width: 1024px) {
	.team__content {
		flex-wrap: wrap;
    	justify-content: center;
	}
	#team .section-title, .team__description {
		text-align: center; 
	}
	.team__text {
		margin-bottom: 30px;
	}
	.team__text:before {
		display: none;
	}
	.team__img img {
		max-width: 160px;
		max-height: 160px;
	}
}

@media screen and (max-width: 1024px) {
    .header__mob-button {
        display: block;
    }
}

.footer {
    background-color: #170b45;
}
.footer__locales {
    font-size: 3.75vw;
    background-color: #000;
}
@media screen and (min-width: 1025px) {
    .footer__locales {
        font-size: 1.125rem;
    }
}
.footer__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 7.8125vw;
}
@media screen and (min-width: 1025px) {
    .footer__head {
        display: block;
        grid-area: head;
        margin-bottom: 1.375rem;
        padding-top: 0.375rem;
        padding-left: 6%;
    }
}
.footer__logo, .footer__contacts {
    width: calc(50% - 4.375vw);
}
@media screen and (min-width: 1025px) {
    .footer__logo, .footer__contacts {
        width: auto;
    }
}
@media screen and (min-width: 1025px) {
    .footer__contacts {
        padding-top: 0.5rem;
        padding-left: 2.25rem;
    }
}
@media screen and (min-width: 1025px) {
    .footer__logo {
        max-width: 10.375rem;
    }
}
@media screen and (min-width: 1025px) {
    .footer__logo.orderx {
        padding-left: 2.25rem;
    }
}
.footer__nav {
    padding-top: 7.1875vw;
}
@media screen and (min-width: 1025px) {
    .footer__nav {
        display: grid;
        grid-template-rows: 2.5rem 1fr;
        grid-template-columns: 2.52fr 1fr 1.02fr;
        grid-template-areas: "menu locales head" "menu social head";
        align-items: start;
        padding-top: 1.125rem;
        row-gap: 2.6875rem;
    }
}
.footer__link {
    display: block;
    font-size: 4.375vw;
    line-height: 1.35;
}
@media screen and (min-width: 1025px) {
    .footer__link {
        line-height: 1.4;
        font-size: 1.125rem;
    }
}
.footer__link, .footer__link:hover {
    text-decoration: none;
}
.footer__link--mailto {
    color: #fff;
}
.footer__menu {
    margin-bottom: 8.125vw;
    column-count: 2;
    column-gap: 6.875vw;
}
@media screen and (min-width: 1025px) {
    .footer__menu {
        grid-area: menu;
        margin-bottom: 1.375rem;
        padding-right: 8%;
        font-size: 1.375rem;
        column-gap: 1.25rem;
    }
}
.footer__menu-item + .footer__menu-item {
    margin-top: 1.25vw;
}
@media screen and (min-width: 1025px) {
    .footer__menu-item + .footer__menu-item {
        margin-top: 0.625rem;
    }
}
@media screen and (min-width: 1025px) {
    .footer__locales {
        display: none;
    }
    .footer__locales .content-wrapper {
        padding: 0;
    }
    .footer__locales .locales__wrapper {
        display: block;
    }
    .footer__locales .locales__item .locale-dropdown__current {
        min-width: 135px;
    }
    .footer__locales .locales__item + .locales__item {
        margin-top: 0.75rem;
        margin-left: 0;
    }
}
.footer__locales--desktop {
    display: none;
}
@media screen and (min-width: 1025px) {
    .footer__locales--desktop {
        display: block;
        grid-area: locales;
        padding: 0.5rem 0 0;
        font-size: 1.125rem;
        background-color: inherit;
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 1024px) {
    .footer__social {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}
@media screen and (min-width: 1025px) {
    .footer__social {
        grid-area: social;
    }
}

/* imported from try-langing/styles.css (scoped with landing-v2-*) */
.landing-v2-header,
.landing-v2-hero,
.landing-v2-features,
.landing-v2-update-section {
    --landing-v2-font-family: "Inter", sans-serif;
    --landing-v2-color-text-primary: #1c1c1e;
    --landing-v2-color-text-secondary: #666;
    --landing-v2-color-accent: #7d5fe9;
    --landing-v2-color-secondary: #67e9b6;
    --landing-v2-color-white: #fff;
    --landing-v2-color-bg-light: #f7f7f7;
    --landing-v2-color-nav-pill: #e5e5e5;
}

.landing-v2-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--landing-v2-color-text-primary);
    font-family: var(--landing-v2-font-family);
    background-color: var(--landing-v2-color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.landing-v2-header .header__locales {
    display: none;
}

.landing-v2-header .header-nav {
    background-color: transparent;
    box-shadow: none;
    padding: 14px 0;
}

.landing-v2-header-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.landing-v2-header .header__logo {
    width: 180px;
    height: auto;
}

.landing-v2-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.landing-v2-header .header-nav__list {
    display: flex;
}

.landing-v2-header .header-nav__item + .header-nav__item {
    margin-left: 0;
}

.landing-v2-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--landing-v2-color-text-primary);
    text-decoration: none;
}

.landing-v2-nav-link:hover {
    color: var(--landing-v2-color-text-primary);
    text-decoration: none;
    opacity: 0.8;
}

.landing-v2-nav-pill {
    background-color: var(--landing-v2-color-nav-pill);
    padding: 8px 16px;
    border-radius: 20px;
}

.landing-v2-header .landing-v2-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 11px 20px;
    border-radius: 50px;
    border: none;
    background: var(--landing-v2-color-secondary);
    color: var(--landing-v2-color-white);
    font-family: var(--landing-v2-font-family);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    letter-spacing: normal;
    transition: transform 0.1s ease;
}

.landing-v2-header .landing-v2-header-btn:active {
    transform: scale(0.98);
}

.landing-v2-header .landing-v2-header-btn:hover {
    color: var(--landing-v2-color-white);
    text-decoration: none;
    opacity: 0.9;
}

.landing-v2-hero {
    padding: 100px 0 20px;
    text-align: left;
    background: url("./media/images/hero-bg.png") no-repeat top center;
    background-size: cover;
    font-family: var(--landing-v2-font-family);
}

.landing-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}

.landing-v2-hero-container {
    display: flex;
    align-items: center;
}

.landing-v2-hero-content {
    max-width: 760px;
}

.landing-v2-hero-title {
    font-size: clamp(56px, 4.4vw, 72px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--landing-v2-color-text-primary);
    margin: 0 0 32px;
}

.landing-v2-hero-description {
    font-size: 18px;
    line-height: 1.45;
    max-width: 760px;
    margin-bottom: 40px;
    color: var(--landing-v2-color-text-primary);
}

.landing-v2-hero-description p {
    margin: 0;
}

.landing-v2-hero-description strong {
    font-weight: 700;
}

.landing-v2-hero-title .text-accent {
    color: var(--landing-v2-color-accent);
    white-space: nowrap;
}

.landing-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: auto;
    min-height: 0;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background: none;
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--landing-v2-font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    letter-spacing: normal;
    transition: transform 0.1s ease;
}

.landing-v2-btn:active {
    transform: scale(0.98);
}

.landing-v2-btn-primary {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    background: var(--landing-v2-color-accent);
    color: var(--landing-v2-color-white);
    box-shadow: 0 4px 15px rgba(125, 95, 233, 0.3);
}

.landing-v2-btn-primary:hover {
    color: var(--landing-v2-color-white);
    text-decoration: none;
    opacity: 0.92;
}

.landing-v2-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.landing-v2-btn-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.landing-v2-btn-label {
    line-height: 1;
}

.landing-v2-features {
    padding: 60px 0 100px;
    background-color: var(--landing-v2-color-bg-light);
    font-family: var(--landing-v2-font-family);
}

.landing-v2-features-title {
    margin-bottom: 38px;
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--landing-v2-color-text-primary);
}

.landing-v2-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-v2-feature-item {
    display: block;
}

.landing-v2-feature-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    color: var(--landing-v2-color-text-primary);
    text-decoration: none;
    min-height: 100%;
}

.landing-v2-feature-link:hover {
    color: var(--landing-v2-color-text-primary);
    text-decoration: none;
    opacity: 0.9;
}

.landing-v2-feature-icon {
    width: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.landing-v2-feature-icon-image {
    max-width: 64px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.landing-v2-feature-text {
    min-width: 0;
}

.landing-v2-feature-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.landing-v2-feature-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: var(--landing-v2-color-text-primary);
}

.landing-v2-update-section {
    padding: 60px 0 100px;
    background-color: var(--landing-v2-color-bg-light);
    font-family: var(--landing-v2-font-family);
}

.landing-v2-update-card-large {
    background-color: var(--landing-v2-color-white);
    border-radius: 40px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 3fr 7fr;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.landing-v2-update-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.landing-v2-update-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-v2-update-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-v2-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 16px;
    background-color: rgba(125, 95, 233, 0.1);
    color: var(--landing-v2-color-accent);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.landing-v2-update-card-title {
    margin: 0 0 12px;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--landing-v2-color-text-primary);
}

.landing-v2-update-card-subtitle {
    margin: 0 0 32px;
    display: inline-block;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, var(--landing-v2-color-accent), var(--landing-v2-color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-v2-update-card-desc {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--landing-v2-color-text-secondary);
}

.landing-v2-update-card-desc p {
    margin: 0;
}

.landing-v2-update-card-desc p + p {
    margin-top: 14px;
}

.landing-v2-btn-text {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--landing-v2-color-accent);
    text-decoration: none;
}

.landing-v2-btn-text:hover {
    color: var(--landing-v2-color-accent);
    text-decoration: none;
    opacity: 0.8;
}


@media (min-width: 280px) and (max-width: 580px) {
    .landing-v2-hero {
        min-height: 500px;
    }
}

@media (min-width: 580px) and (max-width: 767px) {
    .landing-v2-hero {
        min-height: 650px;
    }
}

@media (min-width: 767px) {
    .landing-v2-hero {
        min-height: 750px;
    }
}

@media (min-width: 1400px) {
    .landing-v2-hero {
        background-size: 100% auto;
    }
}

@media (min-width: 1400px) {
    .landing-v2-hero {
        background-size: 1920px auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .landing-v2-hero-title {
        font-size: 72px;
    }

    .landing-v2-hero-description {
        font-size: 18px;
        max-width: 760px;
    }

    .landing-v2-btn-primary {
        font-size: 18px;
        padding: 14px 28px;
    }

    .landing-v2-update-card-large {
        padding: 80px 100px;
        gap: 60px;
    }

    .landing-v2-update-card-title {
        font-size: 56px;
    }

    .landing-v2-update-card-desc {
        font-size: 20px;
    }
}

@media (max-width: 1399px) {
    .landing-v2-hero-description {
        max-width: 680px;
    }
}

@media (max-width: 992px) {
    .landing-v2-header-navigation {
        flex-wrap: wrap;
        gap: 20px;
    }

    .landing-v2-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .landing-v2-header .header__logo {
        width: 164px;
    }

    .landing-v2-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-v2-update-card-large {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .landing-v2-update-card-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .landing-v2-hero {
        padding: 60px 0;
        text-align: center;
    }

    .landing-v2-hero-content {
        margin: 0 auto;
    }

    .landing-v2-hero-title {
        font-size: 48px;
    }

    .landing-v2-hero-description {
        font-size: 16px;
    }

    .landing-v2-features-title {
        font-size: 32px;
    }

    .landing-v2-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .landing-v2-nav {
        gap: 16px;
    }
}

@media (max-width: 500px) {
    .landing-v2-header .header__logo {
        width: 140px;
    }

    .landing-v2-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .landing-v2-btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .landing-v2-hero-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .landing-v2-update-card-large {
        padding: 24px;
        border-radius: 24px;
    }

    .landing-v2-update-card-title {
        font-size: 28px;
    }
}
