@import "fonts.css";

/*Стили с сайта start*/
html {
    font-family: 'Montserrat';
    font-style: normal;
    color: #14203C;
}

img {
    max-width: 100%;
    height: auto;
}

/*Пример хедера*/
.example-header {
    height: 117px;
    border-bottom: 2px #F7F7F7 solid;
}
/*end*/

:root {
    --accentOrange: #FF0B35;
    --redColor: #FF1736;
    --lightPink: #FFE5E7;
    --accentBlue: #0188FF;
    --brightBlue: #01FDFF;
    --strongBlue: #2703FF;
    --fillBlue: #0068FF;
    --lightBlue: #E9F2FF;
    --simpleOrange: #FF8F4B;
    --secondOrange: #FF6600;
    --lightYellow: #FFF2D7;
    --bgLight: #F9F9F9;
    --bgLightWhite: #FDFDFD;
    --bgLightGrey: #EEF1F7;
    --bgLightBlue: #E8F0FF;
    --defaultGrey: #DAD9D9;
    --lightGrey: #E7E7E7;
    --darkGrey: #B5B5B5;
    --black: #0A0505

}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.custom-container {
    max-width: 1180px;
    padding: 0 20px;
    margin: 0 auto;
}

.section-odd {
    border-radius: 20px;
    background-color: var(--bgLight);
}

.section-title {
    margin: 0;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.23;
    color: #000;
}

.custom-button {
    text-decoration: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 64px;
    font-family: "Montserrat", sans-serif;
    border: 2px solid transparent;
    border-radius: 20px;
    background-color: transparent;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: .5s ease;
    cursor: pointer;
}

.custom-button_fill {
    background-color: var(--accentOrange);
    color: #fff;
}

.custom-button_fill:hover {
    background-color: var(--accentBlue);
}

.custom-button_border {
    border-color: var(--accentOrange);
    color: var(--accentOrange);
    background-color: #FFFFFF;
}

.custom-button_border:hover {
    color: #FFFFFF;
    background-color: var(--accentOrange);
}

.custom-button_white {
    background-color: #FFFFFF;
    color: var(--strongBlue);
}

.custom-button_white:hover {
    background-color: var(--strongBlue);
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.shape-button {
    position: relative;
    max-width: 475px;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: .5s ease;
}

.shape-button:hover .shape-button__long {
    background-color: var(--accentBlue);
}

.shape-button:hover .shape-button__arrow svg {
    fill: var(--accentBlue);
}

.shape-button__long {
    width: 396px;
    height: 100%;
    background-color: var(--accentOrange);
    border: 1px solid transparent;
    color: #fff;
    border-radius: 20px;
}

.shape-button__arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 100%;
}

.shape-button__arrow svg {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    fill: var(--accentOrange);
}

.shape-button__arrow-icon {
    position: absolute;
    left: 28px;
    z-index: 2;
    background-image: url("../assets/images/icons/arrow-white.svg");
    width: 32px;
    height: 31px;
    background-repeat: no-repeat;
}

.shape-button__long.custom-button {
    transition: none;
}

.slider-arrow {
    padding: 0;
    border: none;
    background: transparent;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.slider-arrow:after {
    content: '';
    display: block;
    width: 10px;
    height: 17px;
    background-image: url("../assets/images/icons/shevron-black.svg");
    background-repeat: no-repeat;
}

.slider-arrow_next {
    rotate: 180deg;
    right: 0;
}

.slider-arrow_prev {
    left: 0;
}


.gradient-frame {
    position: relative;
}

.gradient-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(0deg, #FF0B35, #FF8F4B, #01FDFF, #0068FF);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.callback-form__btns {
    position: relative;
    border: none;
    padding: 0;
    margin: 0 0 39px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.callback-form__variant {
    position: relative;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    cursor: pointer;
}

.callback-form__variant span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 13px;
    border: 1px solid var(--strongBlue);
    border-radius: 20px;
    transition: .3s ease-out;
}

.callback-form__variant input {
    position: absolute;
    z-index: -1;
}


.callback-form__variant input:checked + span {
    background-color: var(--fillBlue);
    text-shadow: 1px 0 0 #fff;
    color: #fff;
}

.callback-form__variant input:focus-visible + span {
    border-color: var(--accentOrange);
}

.callback-form__field-block {
    max-width: 753px;
    width: 100%;
    margin: 0 auto;
    padding: 66px 40px;
    border: 1px solid var(--defaultGrey);
    border-radius: 20px;
    background-color: #fff;
    color: #000;
}

.callback-form__fields {
    display: flex;
    flex-direction: column;
    gap: 59px;
}

.form-item {
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.form-item__field {
    border-radius: 0;
    width: 100%;
    height: 25px;
    padding: 0;
    border: none;
    border-bottom: 2px solid #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    text-align: center;
}

.form-item__field:focus-visible {
    outline: none;
    border-color: #000;
}

.form-item__field:focus + .form-item__label  {
    translate: 0 -20px;
    font-size: smaller;
}

.form-item__field.error {
    border-color: red;
}

.error-input {
    position: absolute;
    left: 50%;
    translate: -50% 0;
    bottom: -16px;
    font-size: 12px;
    color: red;
    width: 100%;
    text-align: center;
}

.form-item__label.filled {
    translate: 0 -20px;
    font-size: smaller;
}

.form-item__label {
    position: absolute;
    bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    text-align: center;
    transition: .3s ease-in;
}

.callback-form__tip {
    display: block;
    margin: 15px 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
}

.callback-form__custom-button {
    max-width: 419px;
    width: 100%;
    margin: 35px auto 27px;
}

.callback-form__text {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.21;
    text-align: center;
}

.callback-form__text a {
    color: inherit;
}


/*Первая секция*/
.new-hero {
    position: relative;
    overflow: hidden;
    min-height: 684px;
}


.new-hero::before {
    content: "";
    position: absolute;
    left: -306px;
    top: -344px;
    display: block;
    width: 1037px;
    height: 1035px;
    background-image: url("../assets/images/bg-img@1x.png");
    background-repeat: no-repeat;
}


.quote-block {
    position: absolute;
    border-radius: 10px;
    backdrop-filter: blur(42px);
    z-index: 2;
    opacity: 0;
    transition: .3s ease;
}

.quote-block::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(26deg, #016CFF, #FFFFFF);
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.quote-block__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quote-block__text {
    position: relative;
    quotes: none;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    font-style: italic;
}

.quote-block__text::before {
    content: "“";
    position: absolute;
    top: 0;
    left: 4px;
}

.quote-block__text::after {
    content: "”";
    position: absolute;
    bottom: -11px;
    right: 0;
}

.quote-block_gazprom {
    top: 36px;
    right: 335px;
    max-width: 291px;
    padding: 5px 26px 16px;
    background: linear-gradient(138.90deg, rgb(255, 255, 255) -18.276%,rgba(255, 255, 255, 0.7) 7.717%,rgba(255, 255, 255, 0) 114.844%);
}

.quote-block_avito {
    bottom: 32px;
    right: 27px;
    max-width: 324px;
    padding: 17px 5px 18px;
    background: linear-gradient(138.90deg, rgb(255, 255, 255) -17.814%,rgba(255, 255, 255, 0.7) 8.046%,rgba(255, 255, 255, 0) 114.62%);
}

.quote-block_avito::before {
    background: linear-gradient(268deg, #016CFF, #FFFFFF);
}

.quote-block_avito .quote-block__text {
    max-width: 90%;
}

.quote-block_avito .quote-block__text::after {
    bottom: -3px;
    right: -10px;
}

.new-hero__info {
    max-width: 480px;
    padding-top: 60px;
    padding-left: 6px;
}

.new-hero__title-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 1.2;
    color: #000;
}

.hero-title_blue span {
    display: block;
    color: var(--accentBlue);
}

.new-hero__desc {
    margin: 0;
    max-width: 396px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.new-hero__buttons {
    position: relative;
    z-index: 3;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.new-hero__image {
    position: absolute;
    top: 30px;
    right: -58px;
    background-image: image-set(
            url("../assets/images/first-img@1x.webp") type("image/webp") 1x,
            url("../assets/images/first-img@2x.webp") type("image/webp") 2x,
            url("../assets/images/first-img@1x.png") type("image/png") 1x,
            url("../assets/images/first-img@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
    width: 808px;
    height: 809px;
}


.new-hero__custom-button {
    max-width: 475px;
    width: 100%;
}

/*Вторая секция*/
.pluses {
    background-color: var(--accentBlue);
    padding: 20px 0;
}

.pluses__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding-left: 5px;
}

.pluses-card {
    position: relative;
    min-width: 338px;
    max-width: 391px;
    display: flex;
    gap: 5px;
    border-radius: 20px;
    padding: 20px 20px 17px;
    background-color: #fff;
    color: #000;
    line-height: 1.22;
}

.pluses-card__icon {
    position: relative;
    width: 47px;
    min-width: 47px;
    height: 47px;
    background: radial-gradient(50.00% 50.00% at 50% 50%,rgba(1, 253, 255, 0.6),rgba(1, 253, 255, 0) 100%);
    border-radius: 50%;
}

.pluses-card__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.pluses-card_manager .pluses-card__icon::after {
    background-image: url("../assets/images/icons/person-blue.svg");
    width: 19px;
    height: 21px;
}

.pluses-card_price .pluses-card__icon::after {
    background-image: url("../assets/images/icons/settings-blue.svg");
    width: 25px;
    height: 22px;
}

.pluses-card_analysis .pluses-card__icon::after {
    background-image: url("../assets/images/icons/okay-blue.svg");
    width: 23px;
    height: 23px;
}

.pluses-card__title {
    position: relative;
    margin: 0;
    display: inline;
    font-size: 25px;
    font-weight: 700;
}

.pluses-card__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--brightBlue);
}

.pluses-card:first-child .pluses-card__title::after {
    width: 208px;
}

.pluses-card:nth-child(2) {
    padding-bottom: 110px;
}

.pluses-card:nth-child(3) {
    padding-bottom: 21px;
}

.pluses-card__text {
    margin: 15px 0 0;
    font-size: 18px;
    font-weight: 400;
}

.pluses-card__badge {
    position: absolute;
    bottom: 26px;
    right: 30px;
    width: 157px;
    height: 59px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    box-shadow: inset 0 -1px 8px 0 rgba(0, 0, 0, 0.1);
    background-color: var(--simpleOrange);
    color: #fff;
    text-align: center;
    rotate: 4deg;
}

.pluses-card__badge-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.21;
}

.pluses-card__badge-price {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.19;
}

.pluses-card__badge-currency {
    font-size: 31px;
    font-weight: 300;
    line-height: 1.19;
}

.pluses-card__badge-bottom {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
}


/*Третья секция*/
.advantages {
    padding: 80px 0;
}

.advantages__content {
    border-radius: 20px;
    padding: 41px 50px 41px 44px;
    background-color: #fff;
}

.advantages__section-title {
    padding-left: 13px;
    margin-bottom: 44px;
}

.advantages__row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.advantage-card__keeper {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.advantage-card {
    position: relative;
    display: flex;
    width: 325px;
    padding-left: 65px;
}

.advantage-card__badge {
    position: absolute;
    left: 1px;
    top: 2px;
    z-index: 1;
    width: 157px;
}

.advantage-card__badge-top {
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    border: 1px solid var(--simpleOrange);
    border-bottom: none;
    border-radius: 19px;
    background-color: #fff;
}

.advantage-card__badge::after {
    content: '';
    position: absolute;
    border-bottom: 1px solid var(--simpleOrange);
    width: 47px;
    height: 80px;
    left: 0;
    bottom: 0;
    border-radius: 19px 19px 0 19px;
}

.advantage-card__badge-corner {
    position: absolute;
    top: 80px;
    width: 66px;
    height: 22px;
    border: 1px solid var(--simpleOrange);
    border-bottom: none;
    border-top-right-radius: 19px;
    background-color: #fff;
    border-left: none;
    border-top: none;
}

.advantage-card__badge-bottom {
    position: absolute;
    border-top: 1px solid var(--simpleOrange);
    width: 44px;
    bottom: -29px;
    left: 19px;
    height: 30px;
    border-radius: 0 19px 19px 19px;
}

.advantage-card__badge-circle {
    position: relative;
    width: 49px;
    height: 45px;
    border-radius: 23px;
    background: radial-gradient(50.00% 50.00% at 50% 50%,rgb(79, 172, 253),rgba(84, 175, 255, 0) 100%);
    margin-left: 9px;
}

.advantage-card__content {
    position: relative;
    z-index: 2;
    border: 2px solid var(--accentBlue);
    border-radius: 19px;
    background-color: var(--bgLightWhite);
    flex-grow: 1;
    padding-top: 13px;
    overflow: hidden;
}

.advantage-card__top {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    height: 260px;
}

.advantage-card__info {
    position: relative;
    overflow: hidden;
}

.advantage-card__visual {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 21px;
    opacity: 1;
    transition: .3s ease-in-out;
}

.advantage-card__hidden {
    position: absolute;
    height: calc(100% - 48px);
    left: 0;
    top: 0;
    padding: 0 19px 44px 17px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    background: #fff;
    translate: -500px 0;
    opacity: 0;
    transition: .3s ease;
}

.advantage-card__hidden.show {
    translate: 0 0;
    opacity: 1;
}

.advantage-card__hidden p {
    margin: 0;
}

.advantage-card__text {
    flex-grow: 1;
    color: #000;
    padding-left: 17px;
}

.advantage-card__title {
    font-size: 60px;
    font-weight: 300;
    line-height: 1.21;
}

.advantage-card__desc {
    margin: 15px 0 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.22;
}

.advantage-card__bottom {
    padding: 13px 0 18px 17px;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.advantage-card__keeper .advantage-card__bottom {
    background-color: #EEF1F7;
}

.advantage-card__btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    background: transparent;
    padding: 0;
    border: none;
    color: var(--accentBlue);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.21;
    cursor: pointer;
}

.advantage-card__btn::after {
    content: "";
    display: block;
    background-image: url("../assets/images/icons/arrow-blue-small.svg");
    width: 11px;
    height: 10px;
}

.advantage-card_company .advantage-card__top {
    overflow: hidden;
    border-radius: 19px;
}

.advantage-card_company .advantage-card__image-wrap {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

.advantage-card_company .advantage-card__image-wrap img {
    border-radius: 19px;
}

.advantage-card_amount, .advantage-card_hours  {
    width: 370px;
}

.advantage-card_amount .advantage-card__content,
.advantage-card_hours .advantage-card__content {
    width: 300px;
}

.advantage-card__badge-circle::before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
}

.advantage-card_company .advantage-card__badge-circle::before {
    left: 4px;
    bottom: 6px;
    background-image: url("../assets/images/icons/case.svg");
    width: 41px;
    height: 40px;
}

.advantage-card_publish .advantage-card__badge-circle::before {
    right: 6px;
    bottom: 0;
    background-image: url("../assets/images/icons/rocket.svg");
    width: 45px;
    height: 45px;
}

.advantage-card_amount .advantage-card__badge-circle::before {
    left: 2px;
    bottom: -3px;
    background-image: url("../assets/images/icons/books.svg");
    width: 48px;
    height: 47px;
}

.advantage-card_hours .advantage-card__badge-circle::before {
    left: 2px;
    bottom: -1px;
    background-image: url("../assets/images/icons/star.svg");
    width: 45px;
    height: 46px;
}

/*Четвертая секция*/
.functions {
    padding: 80px 0;
}

.functions__content {
    position: relative;
    padding: 0 10px;
}

.functions__section-title {
    margin: 0 0 69px;
}

.functions__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.functions__list-keeper {
    display: flex;
    gap: 19px;
}

.functions-item {
    display: flex;
    gap: 19px;
}

.item-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 53px;
    height: 33px;
    border: 2px solid var(--secondOrange);
    border-radius: 55px;
    color: var(--secondOrange);
    font-size: 22px;
    font-weight: 500;
    line-height: 0;
}

.item-num span {
    font-size: 20px;
}

.functions-item__desc {
    position: relative;
    margin: 0;
    padding: 0 0 10px 16px;
    max-width: 370px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.functions-item__desc::before {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -6px;
    background-repeat: no-repeat;
    background-size: contain;
}

.functions-item:nth-child(1) .functions-item__desc::before {
    background-image: url("../assets/images/icons/arrow-f1.svg");
    width: 590px;
    height: 74px;
}

.functions-item:nth-child(2) .functions-item__desc::before {
    background-image: url("../assets/images/icons/arrow-f2.svg");
    width: 575px;
    height: 58px;
}

.functions-item:nth-child(3) .functions-item__desc::before {
    background-image: url("../assets/images/icons/arrow-f3.svg");
    width: 620px;
    height: 58px;
}

.functions-item:nth-child(5) .functions-item__desc::before {
    background-image: url("../assets/images/icons/arrow-f4.svg");
    width: 628px;
    height: 79px;
}

.functions__list-keeper .functions-item:nth-child(1) .functions-item__desc::before {
    background-image: url("../assets/images/icons/arrow-f5.svg");
    width: 435px;
    height: 75px;
}

.functions__list-keeper .functions-item:nth-child(2) .functions-item__desc::before {
    background-image: url("../assets/images/icons/arrow-f6.svg");
    width: 427px;
    height: 102px;
}

.functions__image-block {
    position: absolute;
    right: 10px;
    top: 47px;
    width: 479px;
    height: 446px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: image-set(
            url("../assets/images/shining-red-circle@1x.webp") type("image/webp") 1x,
            url("../assets/images/shining-red-circle@2x.webp") type("image/webp") 2x,
            url("../assets/images/shining-red-circle@1x.png") type("image/png") 1x,
            url("../assets/images/shining-red-circle@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
}

.functions__image-bg {
    position: relative;
    width: 333px;
    height: 337px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

.functions__image-top {
    display: block;
    width: 100%;
    height: 247px;
    background-image: image-set(
            url("../assets/images/kp-image@1x.webp") type("image/webp") 1x,
            url("../assets/images/kp-image@2x.webp") type("image/webp") 2x,
            url("../assets/images/kp-image@1x.png") type("image/png") 1x,
            url("../assets/images/kp-image@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
    margin-bottom: 9px;
}

.functions__image-button {
    width: 100%;
    padding: 0 27px 21px;
}

.functions__custom-button {
    border-right: 11px;
    max-width: 278px;
    width: 100%;
    height: 60px;
    text-transform: uppercase;
}


/*Секция Выбор контента*/
.selection {
    padding: 80px 0 0;
}

.selection__content {
    padding: 0 5px;
}

.selection__bg {
    position: relative;
    z-index: 2;
}

.selection__top {
    background-color: var(--fillBlue);
    height: 236px;
    border-radius: 26px;
    padding: 28px 0 0;
}

.selection__section-title {
    color: #FFFFFF;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}

.selection__tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 6px 0;
    border: 2px solid #FFFFFF;
    border-radius: 100px;
}

.selection__tab {
    border-radius: 100px;
    background-color: transparent;
    border: none;
    width: 301px;
    padding: 6px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    cursor: pointer;
    transition: .3s ease-in;
}

.selection__tab.current {
    background-color: #fff;
    color: #000000;
}

.selection__description {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 15px 0 0;
}

.selection__desc-col {
    width: 301px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    color: #FFFFFF;
}

.selection__desc-col p {
    margin: 0;
    width: 100%;
}

.selection__bottom {
    position: relative;
    background-color: var(--fillBlue);
    border-radius: 0 0 26px 26px;
    height: 70px;
    margin: 0 auto;
    max-width: 970px;
}

.concave-inside {
    position: absolute;
    background-color: #FFFFFF;
    width: 30px;
    height: 30px;
    bottom: 0;
    left: 0;
    border-top-left-radius: 500px;
}

.right-concave {
    background-color: var(--fillBlue);
    width: 30px;
    height: 30px;
    position: absolute;
    right: -30px;
}

.left-concave {
    background-color: var(--fillBlue);
    width: 30px;
    height: 30px;
    position: absolute;
    left: -30px;
    rotate: 90deg;
}

.selection__frame {
    padding: 127px 0 40px;
    position: relative;
    top: -87px;
    z-index: 1;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.selection-slider {
    overflow: initial;
}

.selection-slide {
    display: block;
    max-width: 219px;
    border-radius: 6px;
    box-shadow: 0 7px 20px -4px rgba(32, 31, 49, 0.2);
    overflow: hidden;
}

.selection-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.selection__info-box {
    display: none;
    text-align: center;
    color: #000000;
}

.selection__info-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.selection__info-text {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

.selection-slider__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.selection .slider-arrow {
    display: none;
}

.js-content {
    display: none;
}
.js-content.current {
    display: block;
}


/*Секция Инструменты*/
.tools {
    margin-bottom: 40px;
    margin-top: -7px;
}

.tools .section-odd {
    padding: 94px 0 0;
}

.tools__content {
    padding: 0 6px 0 4px;
}

.tools__section-title {
    max-width: 817px;
    margin: 0 0 30px;
}

.grid-mosaic {
    display: grid;
    grid-template-columns: minmax(100px, 305px) 1fr;
    gap: 20px;
}

.grid-mosaic__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.grid-mosaic__left {
    position: relative;
}

.grid-mosaic__top {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(200px, 305px) 1fr;
}

.grid-mosaic__bottom {
    display: grid;
    grid-template-columns: 1fr minmax(200px, 305px);
    gap: 25px;
}

.grid-mosaic__stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mosaic-card {
    border-radius: 20px;
    padding: 25px 18px 15px 30px;
    color: var(--black);
}

.mosaic-card__title {
    margin: 0;
    font-size: 41px;
    line-height: 1.21;
    font-weight: 700;
}

.mosaic-card__content {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.mosaic-card strong {
    font-weight: 600;
}

.mosaic-card p {
    margin: 0;
}

.mosaic-card ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0 0 0 19px;
}

.mosaic-card_pink {
    background-color: var(--lightPink);
}

.mosaic-card_blue {
    background-color: var(--lightBlue);
}

.mosaic-card_yellow {
    background-color: var(--lightYellow);
}
.mosaic-card_image {
    position: relative;
    overflow: hidden;
}

.mosaic-card_image::after {
    content: '';
    position: absolute;
}

.grid-mosaic__left .mosaic-card {
    height: 607px;
}

.grid-mosaic__left .mosaic-card_image::after {
    right: 17px;
    bottom: -45px;
    width: 232px;
    height: 232px;
    background-image: image-set(
            url("../assets/images/webinar@1x.webp") type("image/webp") 1x,
            url("../assets/images/webinar@2x.webp") type("image/webp") 2x,
            url("../assets/images/webinar@1x.png") type("image/png") 1x,
            url("../assets/images/webinar@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
    background-size: contain;
}

.grid-mosaic__bottom .mosaic-card_image::after {
    right: 38px;
    bottom: 8px;
    width: 226px;
    height: 226px;
    background-image: image-set(
            url("../assets/images/bookclub@1x.webp") type("image/webp") 1x,
            url("../assets/images/bookclub@2x.webp") type("image/webp") 2x,
            url("../assets/images/bookclub@1x.png") type("image/png") 1x,
            url("../assets/images/bookclub@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
    background-size: contain;
}

.grid-mosaic__left .mosaic-card__title {
    margin-bottom: 55px;
}

.grid-mosaic__top .mosaic-card__title {
    margin-bottom: 30px;
}

.grid-mosaic__bottom .mosaic-card__title {
    margin-bottom: 15px;
}

.grid-mosaic__image {
    position: absolute;
    left: -157px;
    bottom: -161px;
    z-index: 1;
    width: 639px;
    height: 652px;
    background-image: image-set(
            url("../assets/images/lightning@1x.webp") type("image/webp") 1x,
            url("../assets/images/lightning@2x.webp") type("image/webp") 2x,
            url("../assets/images/lightning@1x.png") type("image/png") 1x,
            url("../assets/images/lightning@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
    background-size: contain;
}

.tools__attention {
    position: relative;
    z-index: 2;
    padding: 21px 0;
    background-color: var(--strongBlue);
}

.tools__attention-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tools__attention-text {
    margin: 0;
    max-width: 560px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
}

.tools__custom-button {
    max-width: 544px;
    width: 100%;
}

/*Секция Как происходит подключение библиотеки*/
.integration {
    padding: 63px 0 130px;
}

.integration__box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 85px 50px;
}

.integration__section-title {
    margin-bottom: 77px;
}

.step-card {
    display: flex;
    align-items: center;
}

.step-card__left {
    position: relative;
}

.step-card__circle {
    position: relative;
    width: 264px;
    height: 264px;
    border-radius: 50%;
    border: 1px solid var(--simpleOrange);
}

.step-card__circle::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50.00% 50.00% at 50% 50%,rgba(255, 168, 0, 0.6),rgba(255, 184, 0, 0.12) 67%,rgba(255, 199, 0, 0) 100%);
}

.step-card__title {
    position: relative;
    overflow: hidden;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin: 0 0 20px;
}

.step-card__title:before {
    content: '';
    position: absolute;
    left: -3px;
    top: 16px;
    width: 16px;
    height: 34px;
    background-color: var(--simpleOrange);
}

.step-card__title span {
    display: inline-block;
    background-color: var(--simpleOrange);
    border-radius: 100px;
    padding: 3px 13px;
}

.step-card__title span:nth-child(2) {
    margin-top: -5px;
}

.step-card__title img {
    margin-left: 3px;
    height: 100%;
}

.step-card__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    list-style-type: none;
}

.step-card__list li {
    position: relative;
    padding-left: 28px;
}

.step-card__list li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 13px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #000000;
}

.step-card_one .step-card__right {
    max-width: 280px;
}

.step-card_two .step-card__right {
    max-width: 282px;
}

.step-card_three .step-card__right {
    max-width: 472px;
}

.step-card__pic {
    position: absolute;
    z-index: 2;
}

.step-card__pic img {
    width: 100%;
}

.step-card_one .step-card__pic {
    top: -85px;
    left: 17px;
    width: 195px;
}

.step-card_two .step-card__pic {
    top: -63px;
    width: 279px;
}

.step-card_three .step-card__pic {
    top: -81px;
    width: 263px;
    height: 389px;
}

.step-card_three .step-card__title {
    max-width: 260px;
}


/*Секция Сопровождение*/
.support {
    margin-bottom: 40px;
    background-color: var(--bgLightBlue);
    border-radius: 20px;
}
.support__top {
    padding: 60px 0 67px;
    border-radius: 20px;
    box-shadow: 0 4px 5px 0 rgba(0, 104, 255, 0.3);
    background-color: var(--bgLightBlue);
    overflow-x: hidden;
}

.support__bottom {
    padding: 53px 0 64px;
}

.support__section-title {
    margin: 0 0 20px;
}

.support__subtitle {
    margin: 0;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
}

.support__box {
    position: relative;
    margin-top: 68px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
}

.support ul, .support ol {
    list-style-type: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support__list {
    padding: 0 0 0 19px;
    counter-reset: counter1;
}

.support-item {
    position: relative;
    counter-increment: counter1;
    padding-left: 72px;
    max-width: 564px;
}

.support-item__num {
    position: absolute;
    top: 3px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 53px;
    height: 33px;
    border: 2px solid var(--secondOrange);
    border-radius: 55px;
    color: var(--secondOrange);
    font-size: 22px;
    font-weight: 500;
    line-height: 0;
}

.support-item__num span {
    font-size: 20px;
}

.support-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -15px;
    width: 568px;
    height: 8px;
    background-image: url("../assets/images/icons/gradien-arrow.svg");
    background-repeat: no-repeat;
}

.support-item__desc {
    margin: 0;
}

.support__image {
    position: absolute;
    right: -76px;
    bottom: -36px;
    width: 640px;
    height: 585px;
    background-image: image-set(
            url("../assets/images/complete-support@1x.webp") type("image/webp") 1x,
            url("../assets/images/complete-support@2x.webp") type("image/webp") 2x,
            url("../assets/images/complete-support@1x.png") type("image/png") 1x,
            url("../assets/images/complete-support@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
    background-size: contain;
}

.support__info {
    max-width: 542px;
}

.support__bottom .support__box {
    padding: 0 9px 0 37px;
}

.support__bottom .support__image {
    position: static;
    width: 513px;
    height: 536px;
    background-image: image-set(
            url("../assets/images/tg-channel@1x.webp") type("image/webp") 1x,
            url("../assets/images/tg-channel@2x.webp") type("image/webp") 2x,
            url("../assets/images/tg-channel@1x.png") type("image/png") 1x,
            url("../assets/images/tg-channel@2x.png") type("image/png") 2x
    );
}

.support__bottom .support__subtitle {
    max-width: 355px;
    margin-bottom: 49px;
}

.support-item-simple {
    position: relative;
    padding-left: 72px;
}

.support-item-simple::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 53px;
    height: 33px;
    border: 2px solid var(--secondOrange);
    border-radius: 55px;
    background-image: url("../assets/images/icons/arrow-orange.svg");
    background-repeat: no-repeat;
    background-position: center;
}


/*Секция Интерфейс*/

.interface {
    padding: 40px 0 319px;
}

.interface__content {
    padding: 0 6px 0 4px;
}

.interface__section-title {
    margin: 0 0 60px;
}

.interface__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.interface-item {
    position: relative;
}

.interface-item__top {
    min-height: 377px;
    padding: 30px 32px 30px 38px;
    border: 2px solid transparent;
    border-radius: 33px;
    background-color: #fff;
    color: #000;
}

.interface-item__title {
    position: relative;
    margin: 0 0 22px;
    padding-left: 92px;
    font-size: 41px;
    font-weight: 700;
    line-height: 1.21;
}

.interface-item__title::before {
    content: "";
    position: absolute;
    top: 0;
}

.interface-item__desc {
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.interface-item__bottom {
    position: absolute;
    left: 80px;
    top: calc(100% - 103px);
    width: 478px;
    height: 343px;
    border-radius: 33px;
    background-image: url("../assets/images/icons/herringbone-white.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.interface-item__image {
    background-size: contain;
    background-repeat: no-repeat;
}

.interface-item__image img {
    width: 100%;
}

.interface-item_blue .interface-item__top {
    border-color: var(--fillBlue);
}

.interface-item_blue .interface-item__bottom {
    background-color: var(--fillBlue);
}

.interface-item:first-child .interface-item__top {
    max-width: 464px;
}

.interface-item:first-child .interface-item__bottom{
    padding: 21px 32px 18px 35px;
}

.interface-item:first-child .interface-item__image {
    max-width: 411px;
}

.interface-item:first-child .interface-item__title::before {
    background-image: image-set(
            url("../assets/images/case-blue@1x.png") type("image/png") 1x,
            url("../assets/images/case-blue@2x.png") type("image/png") 2x
    );
    width: 106px;
    height: 89px;
    left: -25px;
}

.interface-item_orange .interface-item__top {
    border-color: var(--simpleOrange);
}

.interface-item_orange .interface-item__bottom {
    background-color: var(--simpleOrange);
}

.interface-item:nth-child(2) .interface-item__top {
    max-width: 492px;
}

.interface-item:nth-child(2) .interface-item__bottom{
    padding: 27px 19px 11px 34px;
}

.interface-item:nth-child(2) .interface-item__image {
    max-width: 425px;
}

.interface-item:nth-child(2)  .interface-item__title::before {
    background-image: image-set(
            url("../assets/images/okay-img@1x.png") type("image/png") 1x,
            url("../assets/images/okay-img@2x.png") type("image/png") 2x
    );
    width: 95px;
    height: 95px;
    left: -20px;
}

/*Секция Менеджеры*/

.managers {
    padding: 40px 0;
}

.managers__content {
    padding: 0 3px 0 8px;
}

.managers__section-title {
    margin: 0 0 35px;
}

.managers__block {
    display: flex;
    justify-content: space-between;
}

.managers__top {
    color: #000000;
    line-height: 1.2;
    margin-bottom: 70px;
    padding-left: 4px;
}

.managers__info-title {
    margin: 0 0 20px;
    font-size: 25px;
    font-weight: 600;
}

.managers__desc {
    position: relative;
    margin: 0;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 400;
    max-width: 400px;
}

.managers__desc::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: calc(100% + 6px);
    width: 4px;
    border-radius: 4px;
    background-color: var(--accentBlue);
}

.managers__tabs {
    display: flex;
    align-items: center;
}

.managers__tab {
    background-color: #FFFFFF;
    padding: 0;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid #FF0032;
    overflow: hidden;
    cursor: pointer;
    transition: .3s ease
}

.managers__tab:nth-child(n+2) {
    margin-left: -26px;
}

.managers__tab img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.managers__tab .managers__tab-circle {
    display: block;
    width: 100%;
    height: 100%;
    border: 0 solid #FFFFFF;
}

.managers__tab.current .managers__tab-circle {
    border-width: 2px;
}

.manager-card {
    width: 660px;
    border: 1px solid var(--fillBlue);
    border-radius: 20px;
    box-shadow: 0 2px 4px 0 rgba(1, 136, 255, 0.5);
    padding: 13px 15px 4px 18px;
    display: none;
    justify-content: space-between;
    gap: 15px 27px;
    color: #000000;
    grid-template-columns: 200px minmax(200px, 398px);
}

.manager-card.current {
    display: grid;
}

.manager-card__right {
    max-width: 398px;
}

.manager-card__left {
    grid-row: span 2;
}

.manager-card__image-wrap {
    position: relative;
}

.manager-card__personal {
    order: 3;
}

.manager-card-rect {
    position: absolute;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fillBlue);
}

.manager-card__button {
    border: none;
    bottom: 20px;
    right: 0;
    width: 41px;
    height: 48px;
    cursor: pointer;
}

.manager-card__button::after {
    content: '';
    width: 24px;
    height: 24px;
    min-width: 17px;
    min-height: 17px;
    background-image: url("../assets/images/icons/arrow-white.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.manager-card__pattern {
    top: 0;
    left: 0;
    width: 62px;
    height: 80px;
}

.manager-card__pattern::after { 
    content: '';
    width: 66px;
    height: 69px;
    background-image: image-set(
            url("../assets/images/lightning-small@1x.png") type("image/png") 1x,
            url("../assets/images/lightning-small@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
    background-position: 40%;
}

.manager-card__quote {
    margin: 0;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.manager-card__photo {
    mask-image: url("../assets/images/icons/mask-image.svg");
    mask-repeat: no-repeat;
    width: 202px;
    height: 354px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 20% center;
}

.manager-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.manager-card__name {
    margin: 0 0 7px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--fillBlue);
}

.manager-card__place {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.manager-card__desc {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}


/*Секция Есть вопросы*/
.questions {
    padding: 60px 0 155px;
    background-color: var(--bgLightBlue);
}

.questions__wrapper {
    padding: 0 6px 0 4px;
}

.questions__content {
    position: relative;
    height: 629px;
    background-image: image-set(
        url("../assets/images/bg-question@1x.webp") type("image/webp") 1x,
        url("../assets/images/bg-question@2x.webp") type("image/webp") 2x,
        url("../assets/images/bg-question@1x.png") type("image/png") 1x,
        url("../assets/images/bg-question@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
}

.questions__left {
    max-width: 414px;
    height: 100%;
    padding: 40px 0 44px 55px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    line-height: 1.2;
}

.questions__section-title {
    margin: 0 0 33px;
    color: #fff;
}

.questions__subtitle {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.questions__img-wrap {
    margin: 0 0 21px;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    border: 2px solid var(--redColor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.questions__image {
    border-radius: 50%;
    overflow: hidden;
    width: 165px;
    height: 165px;
}

.questions__desc strong {
    font-size: 20px;
    font-weight: 700;
}

.questions__desc p {
    margin: 7px 0 0;
    font-size: 18px;
    font-weight: 400;
}

.questions__callback-form {
    position: absolute;
    top: 119px;
    right: 27px;
    max-width: 629px;
    padding: 0;
}


/*Секция Кейсы*/
.cases {
    padding: 40px 0;
}

.cases__wrapper {
    padding: 0 10px;
}

.cases__content {
    position: relative;
    border-radius: 20px;
    min-height: 720px;
    background-image: image-set(
            url("../assets/images/cases-bg@1x.webp") type("image/webp") 1x,
            url("../assets/images/cases-bg@2x.webp") type("image/webp") 2x,
            url("../assets/images/cases-bg@1x.png") type("image/png") 1x,
            url("../assets/images/cases-bg@2x.png") type("image/png") 2x
    );
    background-repeat: no-repeat;
}

.cases__section-title {
    padding: 35px 0 0 57px;
}

.cases__list {
    position: relative;
    z-index: 3;
    padding: 62px 0 0 78px;
    display: flex;
    flex-direction: column;
}

.cases-item {
    position: relative;
    max-width: 491px;
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
}

.cases-item:not(:last-child) {
    padding-bottom: 68px;
}

.cases-item__line {
    position: absolute;
    left: -19px;
    top: 9px;
    width: 2px;
    height: 100%;
    background-color: var(--strongBlue);
}

.cases-item__line::before,  .cases-item__line::after{
    content: "";
    position: absolute;
    left: -4px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--strongBlue);
}

.cases-item__line::before {
    top: 0;
}

.cases-item__line::after {
    bottom: 0;
}

.cases-item:last-child .cases-item__line{
    display: none;
}

.cases-item__title {
    margin: 0 0 14px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.cases-item__highlight {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--brightBlue);
    border-radius: 15px;
    font-weight: 600;
    color: #000;
}

.cases-item__desc {
    margin: 15px 0 11px;
    font-weight: 400;
}

.cases-item__link {
    color: inherit;
    font-weight: 600;
}

/*Секция Отзывы*/
.reviews {
    padding: 40px 0;
}

.reviews__content {
    padding: 0 10px;
}

.reviews__section-title {
    margin: 0 0 30px;
}

.reviews__slider-wrap {
    position: relative;
    border: 1px solid var(--darkGrey);
    border-radius: 15px;
    padding: 28px 0 42px 30px;
    background-color: #fff;
}

.reviews-slider {
    padding-top: 56px;
}

.reviews-slide {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-slide__company {
    width: 282px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 73px;
    font-weight: 700;
    line-height: 1.21;
    color: #000;
}

.reviews-slide__company span {
    word-break: break-word;
}

.reviews-slide__company img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reviews-slide__info {
    max-width: 760px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.reviews-slide__info p {
    margin: 0;
}

.reviews-slider .slider-arrow {
    display: none;
}

.reviews__slider-wrap .swiper-scrollbar.swiper-scrollbar-horizontal {
    bottom: auto;
    top: 38px;
    left: 30px;
    width: calc(100% - 30px);
    height: 3px;
    background-color: var(--lightGrey);
    cursor: pointer;
}

.reviews__slider-wrap .swiper-scrollbar-drag {
    top: -5px;
    height: 15px;
    background-color: var(--accentBlue);
}

.reviews__custom-button {
    margin: 30px auto 0;
    max-width: 295px;
    width: 100%;
}

/*Секция Клиенты*/
.clients {
    padding: 40px 0 80px;
}

.clients__content {
    padding-left: 10px;
}

.clients__section-title {
    margin: 0 0 41px;
}

.clients__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}


/*Секция с формой*/
.callback {
    padding: 60px 0 30px;
    background-color: var(--bgLightBlue);
}

.callback__section-title {
    margin: 0 0 5px;
    text-align: center;
}

.callback__section-title span {
    font-size: smaller;
    font-weight: 400;
}

.callback__subtitle {
    display: block;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
    text-align: center;
}

.callback__callback-form {
    padding-top: 30px;
}

.custom-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 30;
    width: 100%;
    border-radius: 20px;
    background-color: var(--bgLightBlue);
}

.custom-popup.show {
    display: block;
}

.custom-popup__close {
    position: absolute;
    top: 6px;
    right: 18px;
    padding: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--strongBlue);
    border-radius: 1000px;
    background-color: transparent;
    cursor: pointer;
}

.custom-popup__close::before {
    content: "";
    display: block;
    width: 34px;
    height: 36px;
    background-image: url("../assets/images/icons/close-black.svg");
    background-repeat: no-repeat;
}

.custom-popup__content {
    padding: 61px 0 101px;
    text-align: center;
    color: #000;
}

.custom-popup__section-title {
    display: block;
    margin-bottom: 20px;
}

.custom-popup__desc {
    margin: 0;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

/*Media*/
@media (min-width: 1270px) {
    .new-hero::before {
        left: -20%;
    }
    .new-hero__image {
        right: 0;
    }
}
@media (min-width: 1400px) {
    .new-hero::before {
        left: -15%;
    }
}
@media (min-width: 1490px) {
    .new-hero::before {
        left: -10%;
    }
}
@media (min-width: 1600px) {
    .new-hero {
        max-width: 1920px;
        margin: 0 auto;
    }
    .new-hero::before {
        left: 0;
    }
    .new-hero__image {
        right: 120px;
    }
}

@media(max-width: 1180px) {
    .step-card__circle {
        width: 200px;
        height: 200px;
    }

    .step-card_one .step-card__pic {
        width: 155px;
        top: -73px;
    }

    .step-card_two .step-card__pic {
        width: 200px;
        top: -49px;
    }

    .step-card_three .step-card__pic {
        width: 200px;
        top: -63px;
    }

    .integration__box {
        gap: 45px 0;
    }

    .callback-form__btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .selection-slider__row {
        gap: 30px;
    }
}

@media(max-width: 1170px) {
    .functions__image-block {
        width: 430px;
        height: 430px;
        background-size: contain;
    }

    .interface-item__bottom {
        left: 0;
    }

    .questions__content {
        background-size: contain;
        background-position: center;
    }

    .questions__left {
        padding: 40px 0 44px 25px;
        justify-content: center;
        gap: 10px;
    }

    .questions__callback-form {
        max-width: 500px;
    }

    .new-hero__image {
        right: -158px;
        z-index: 1;
    }

    .new-hero__info {
        position: relative;
        z-index: 2;
    }

}

@media(max-width: 1100px) {
    .pluses-card {
        min-width: auto;
        max-width: 33%;
    }

    .advantages__row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .advantage-card__keeper {
        flex-direction: row;
    }

    .advantage-card__keeper .advantage-card__info {
        height: 100%;
    }

    .advantage-card__visual {
        height: 100%;
    }

    .functions-item:nth-child(1) .functions-item__desc::before{
        width: 400px;
        height: 45px;
    }

    .functions-item:nth-child(2) .functions-item__desc::before {
        width: 400px;
        height: 40px;
    }

    .functions-item:nth-child(3) .functions-item__desc::before {
        width: 400px;
        height: 40px;
    }

    .functions-item:nth-child(5) .functions-item__desc::before {
        width: 580px;
        height: 50px;
    }

    .functions__list-keeper {
        flex-direction: column;
        gap: 30px;
    }

    .functions__list-keeper .functions-item:nth-child(1) .functions-item__desc::before{
        width: 400px;
        height: 57px;
    }

    .functions__list-keeper .functions-item:nth-child(2) .functions-item__desc::before{
        background-image: url("../assets/images/icons/arrow-f2.svg");
        width: 400px;
        height: 40px;
    }

    .functions__image-block {
        right: 0;
        top: 20%;
    }

    .selection__bottom {
        max-width: 845px;
    }

    .selection-slider__row {
        gap: 20px;
    }

    .selection__tab {
        width: 250px;
        font-size: 20px;
    }

    .selection__desc-col {
        font-size: 14px;
        width: 250px;
    }

    .selection__description {
        padding: 5px 0 0;
    }

    .selection-slide {
        max-width: 200px;
    }

    .mosaic-card__title {
        font-size: 32px;
    }

    .grid-mosaic__top {
        grid-template-columns: 1fr;
    }

    .grid-mosaic__bottom {
        grid-template-columns: 1fr;
    }

    .grid-mosaic__image {
        bottom: auto;
        width: 500px;
        height: 500px;
        left: -98px;
    }

    .grid-mosaic__bottom .mosaic-card_image::after {
        right: -51px;
        bottom: -107px;
    }

    .mosaic-card_image .mosaic-card__content {
        max-width: 400px;
    }

    .interface-item__bottom {
        width: 378px;
        height: 300px;
        display: flex;
        align-items: center;
        left: 50%;
        translate: -50% 0;
    }

    .interface-item {
        padding-bottom: 30px;
    }

    .interface-item:first-child .interface-item__top {
        max-width: none;
    }

    .interface-item:nth-child(2) .interface-item__top {
        max-width: none;
    }

    .support__image {
        width: 500px;
    }

    .support__bottom .support__image {
        width: 400px;
    }

    .manager-card {
        width: 500px;
    }
}

@media(max-width: 990px) {
    .section-title {
        font-size: 42px;
    }

    .new-hero {
        padding: 30px 0 66px;
    }

    .new-hero::before {
        display: none;
    }

    .new-hero__image-block {
        position: relative;
        left: -16%;
        top: -75px;
    }

    .new-hero__image {
        position: static;
        width: 623px;
        height: 440px;
        background-image: image-set(
                url("../assets/images/first-img-mobile@1x.webp") type("image/webp") 1x,
                url("../assets/images/first-img-mobile@2x.webp") type("image/webp") 2x,
                url("../assets/images/first-img-mobile@1x.png") type("image/png") 1x,
                url("../assets/images/first-img-mobile@2x.png") type("image/png") 2x
        );

    }

    .quote-block {
        opacity: 1;
    }

    .quote-block_avito {
        max-width: 224px;
        right: -160px;
    }

    .quote-block_gazprom {
        top: 100px;
        right: auto;
        left: 95px;
        max-width: 200px;
    }

    .quote-block_avito .quote-block__text::after {
        bottom: -13px;
        right: 26px;
    }

    .quote-block__text::before {
        left: 11px;
    }

    .quote-block__text::after {
        right: 26px;
    }

    .new-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .new-hero__info {
        padding: 0;
        max-width: 100%;
        text-align: center;
    }

    .new-hero__title-block {
        align-items: center;
    }

    .new-hero__buttons {
        margin-top: -50px;
    }

    .pluses__row {
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }

    .pluses-card {
        min-width: auto;
        max-width: 40%;
    }

    .pluses-card:nth-child(3) {
        max-width: 80%;
    }

    .pluses-card__text {
        font-size: 16px;
    }

    .advantage-card__keeper {
        gap: 14px;
    }

    .advantage-card_company, .advantage-card_publish {
        width: 301px;
    }

    .advantage-card_amount, .advantage-card_hours {
        width: 328px;
    }

    .advantage-card__hidden {
        padding: 0 10px 0 10px;
        font-size: 16px;
    }

    .functions-item__desc::before{
        display: none;
    }

    .functions__image-block {
        width: 304px;
        height: 282px;
    }

    .functions__image-bg {
        width: 213px;
        height: 215px;
    }

    .functions__image-top {
        height: 154px;
        background-size: contain;
    }

    .functions__image-button {
        padding: 0 17px 13px 18px;
    }

    .functions__custom-button {
        font-size: 13px;
        height: 38px;
        border-radius: 7px;
    }

    .selection__bottom {
        max-width: 620px;
    }

    .selection__tab {
        width: 200px;
    }

    .selection__desc-col {
        width: 210px;
    }

    .selection__description {
        padding: 0;
    }

    .selection__frame {
        min-height: 400px;
    }

    .selection-slide {
        max-width: 150px;
    }

    .interface-item__title {
        font-size: 32px;
    }

    .interface-item__desc {
        font-size: 18px;
    }

    .interface-item:nth-child(2) .interface-item__title::before {
        width: 80px;
    }

    .interface-item:first-child .interface-item__title::before {
        width: 90px;
    }

    .interface-item__bottom {
        width: 90%;
        top: calc(100% - 130px);
    }

    .step-card__list {
        max-width: 300px;
    }

    .support-item::after {
        width: 100%;
        background-size: contain;
        left: 0;
    }

    .support-item {
        max-width: 400px;
    }

    .support__image {
        width: 400px;
    }

    .support__bottom .support__image {
        width: 100%;
        max-width: 300px;
    }

    .mosaic-card_image .mosaic-card__content {
        max-width: 400px;
    }

    .mosaic-card_image {
        padding-right: 100px;
    }

    .grid-mosaic__bottom .mosaic-card_image::after {
        right: -42px;
        bottom: -52px;
        width: 168px;
        height: 123px;
    }

    .interface-item:nth-child(1) .interface-item__image,
    .interface-item:nth-child(2) .interface-item__image {
        max-width: 100%;
    }

    .interface-item__top {
        padding: 20px;
    }

    .interface-item:first-child .interface-item__bottom,
    .interface-item:nth-child(2) .interface-item__bottom {
        padding: 15px;
    }

    .questions {
        border-radius: 10px;
        background-color: var(--strongBlue);
    }

    .questions__content {
        background-image: none;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .questions__callback-form {
        position: static;
        max-width: 100%;
    }

    .questions__left {
        padding: 0;
        text-align: center;
    }

    .questions__img-wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .managers__block {
        flex-direction: column;
        gap: 50px;
    }

    .managers__desc {
        max-width: 100%;
    }

    .manager-card {
        width: 100%;
        max-width: 660px;
    }

    .cases__content {
        background-position-x: 20%;
    }
}

@media(max-width: 767px) {
    .section-title {
        font-size: 38px;
    }

    .error-input {
        font-size: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .quote-block__text {
        font-size: 14px;
    }

    .quote-block__text::before {
        left: 25px;
    }

    .quote-block_avito .quote-block__text::after {
        bottom: -10px;
        right: 36px;
    }

    .quote-block__text::after {
        right: 40px;
        bottom: -10px;
    }

    .new-hero__image-block {
        position: static;
    }

    .quote-block_gazprom {
        top: 36%;
        left: 20px;
        max-width: 200px;
    }

    .quote-block_avito {
        right: 20px;
        bottom: 36%;
    }

    .new-hero__image {
        position: relative;
        left: -22%;
        top: -102px;
    }

    .pluses__row {
        flex-direction: column;
    }

    .pluses-card {
        max-width: 100%;
        padding: 20px 14px 20px;
    }

    .pluses-card:nth-child(3) {
        max-width: 100%;
    }

    .pluses-card__text {
        font-size: 18px;
    }

    .advantages__row {
        flex-direction: column;
        align-items: center;
    }

    .advantage-card__keeper {
        flex-direction: column;
    }

    .functions__list {
        display: block;
    }

    .functions__image-block {
        position: static;
        margin: 0 auto 30px;
    }

    .functions-item {
        width: 100%;
    }

    .functions-item:not(:last-child) {
        margin-bottom: 30px;
    }

    .functions-item__desc {
        max-width: 500px;
    }

    .selection__tabs {
        display: none;
    }

    .selection__bottom {
        display: none;
    }

    .selection__top {
        height: auto;
        padding: 20px 13px;
    }

    .selection__section-title {
        margin: 0;
    }

    .selection__slider-wrapper {
        position: relative;
    }

    .selection .slider-arrow {
        display: flex;
    }

    .selection__variant {
        display: block;
        padding: 0 20px;
    }

    .selection-slider {
        overflow: hidden;
    }

    .selection__variant:not(:last-child) {
        margin-bottom: 15px;
    }

    .selection__info-box {
        display: block;
    }

    .selection__frame {
        min-height: auto;
        display: block;
    }

    .selection-slider {
        padding-top: 20px;
        max-width: 400px;
    }

    .selection-slide {
        max-width: none;
    }

    .selection-slider__row {
        gap: initial;
        justify-content: initial;
    }

    .grid-mosaic__image {
        display: none;
    }

    .grid-mosaic {
        grid-template-columns: 1fr;
    }

    .grid-mosaic__bottom .mosaic-card_image::after {
        right: 0;
        bottom: 0;
    }

    .grid-mosaic__left .mosaic-card {
        height: auto;
    }

    .grid-mosaic__left .mosaic-card_image::after {
        height: 170px;
        right: -95px;
        bottom: 0;
    }

    .interface__row {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 192px;
    }

    .interface-item {
        max-width: 350px;
        width: 100%;
    }

    .interface-item__bottom {
        width: 100%;
        height: 252px;
        justify-content: center;
    }

    .interface-item:nth-child(1) .interface-item__image,
    .interface-item:nth-child(2) .interface-item__image {
        height: 100%;
    }

    .interface-item:first-child .interface-item__bottom {
        padding: 15px 15px 13px 18px;
    }

    .interface-item:nth-child(2) .interface-item__bottom {
        padding: 24px 12px 23px 13px;
    }

    .interface-item__image img {
        height: 100%;
    }

    .support__box {
        flex-direction: column;
    }

    .support__bottom .support__box {
        padding: 0;
        margin: 0;
        flex-direction: column-reverse;
        gap: 21px;
    }

    .support__list {
        padding: 0;
    }

    .support-item::after {
        display: none;
    }

    .support__image {
        position: static;
        width: 328px;
        height: 326px;
        margin: 0 auto;
    }

    .support__bottom .support__image {
        width: 284px;
        height: 296px;
    }

    .support-item {
        max-width: 100%;
    }

    .support__bottom .support__subtitle {
        max-width: 100%;
    }

    .reviews {
        position: relative;
        z-index: 3;
    }

    .reviews-slider {
        padding-top: 0;
    }

    .reviews__slider-wrap .swiper-scrollbar.swiper-scrollbar-horizontal {
        display: none;
    }

    .reviews__slider-wrap {
        padding-right: 30px;
    }

    .reviews-slide {
        flex-direction: column;
    }

    .reviews-slider .slider-arrow {
        display: flex;
        top: 54px;
    }

    .reviews-slider .slider-arrow_next {
        right: 20px;
    }

    .reviews-slider .slider-arrow_prev {
        left: 20px;
    }

    .reviews-slide__company {
        min-height: 90px;
    }

    .section-keeper {
        overflow: hidden;
    }

    .cases__wrapper {
        position: relative;
        padding: 0 0 200px;
        margin: 0 -20px;
    }

    .cases__wrapper::after {
        content: "";
        position: absolute;
        right: -150px;
        bottom: -196px;
        width: 490px;
        height: 583px;
        background-image: image-set(
            url("../assets/images/cases-image-mobile@1x.webp") type("image/webp") 1x,
            url("../assets/images/cases-image-mobile@2x.webp") type("image/webp") 2x,
            url("../assets/images/cases-image-mobile@1x.png") type("image/png") 1x,
            url("../assets/images/cases-image-mobile@2x.png") type("image/png") 2x
        );
        background-repeat: no-repeat;
    }

    .cases__section-title {
        color: #FFFFFF;
    }

    .cases__content {
        background-color: var(--fillBlue);
        background-image: none;
        overflow: hidden;
    }

    .cases .gradient-frame::after{
        display: none;
    }

    .cases__list {
        padding: 40px 0 0 40px;
    }

    .cases-item {
        max-width: 400px;
        font-size: 18px;
    }
}

@media(max-width: 560px) {
    .section-title {
        font-size: 20px;
        line-height: 1.2;
    }

    .custom-button {
        height: 46px;
        font-size: 14px;
        border-radius: 14px;
    }

    .shape-button {
        height: 46px;
        max-width: 100%;
    }

    .shape-button__arrow {
        width: 56px;
    }

    .shape-button__arrow-icon {
        left: 22px;
        width: 21px;
        height: 21px;
        background-size: contain;
    }

    .shape-button__long {
        width: 281px;
    }

    .custom-popup__content {
        padding: 26px 0 14px;
    }

    .custom-popup__section-title {
        margin-bottom: 9px;
    }

    .custom-popup__close {
        top: 7px;
        right: 12px;
        width: 30px;
        height: 30px;
    }

    .custom-popup__close::before {
        width: 18px;
        height: 19px;
        background-size: contain;
    }

    .custom-popup__desc {
        font-size: 18px;
        max-width: 207px;
        margin: 0 auto;
    }

    .new-hero {
        min-height: auto;
    }

    .hero-title {
        font-size: 25px;
    }

    .new-hero__title-block {
        gap: 10px;
    }

    .new-hero__desc {
        font-size: 18px;
        width: 100%;
    }

    .quote-block__text {
        font-size: 8px;
        line-height: 1.1;
        margin-top: 6px;
    }

    .new-hero__buttons {
        margin-top: -135px;
        padding-left: 4px;
        gap: 11px;
    }

    .new-hero__custom-button {
        max-width: 100%;
    }

    .quote-block_gazprom {
        top: 268px;
        left: 45px;
        max-width: 92px;
        padding: 7px 11px 12px;
    }

    .quote-block__container img {
        max-width: 47px;
    }

    .quote-block__text::before {
        left: 5px;
    }

    .quote-block_avito {
        bottom: 189px;
        right: 25px;
        max-width: 98px;
        padding: 11px 10px 12px 9px;
    }

    .quote-block_avito .quote-block__text::before {
        left: -5px;
    }

    .quote-block_avito .quote-block__text::after {
        bottom: -6px;
        right: -4px;
    }

    .quote-block__text::after {
        right: 4px;
        bottom: -5px;
    }

    .new-hero__image {
        top: -143px;
        left: auto;
        right: 99px;
    }

    .callback-form__field-block {
        padding: 30px 0;
    }

    .form-item__field {
        border-width: 1px;
        font-size: 16px;
    }

    .form-item__label {
        font-size: 16px;
        line-height: 1.25;
    }

    .callback-form__fields {
        gap: 32px;
    }

    .callback-form__tip {
        margin: 20px auto 0;
        font-size: 14px;
        max-width: 194px;
    }

    .callback-form__custom-button {
        margin: 25px auto 20px;
        max-width: 305px;
    }

    .callback-form__text {
        font-size: 12px;
        line-height: 1.25;
    }

    .pluses {
        padding: 20px 0 15px;
    }

    .pluses__row {
        padding: 0;
        gap: 15px;
    }

    .pluses-card:nth-child(2) {
        padding-bottom: 96px;
    }

    .pluses-card:nth-child(3) {
        padding-bottom: 15px;
    }

    .pluses-card__title {
        display: block;
        max-width: 247px;
    }

    .pluses-card:nth-child(2) .pluses-card__title {
        max-width: 226px;
    }

    .advantages {
        padding: 25px 0 39px;
    }

    .advantages__content {
        padding: 13px 0 20px;
    }

    .advantages__row, .advantage-card__keeper {
        gap: 20px;
    }

    .advantages__section-title{
        margin-bottom: 20px;
        padding: 0;
        text-align: center;
    }

    .advantage-card {
        padding-left: 68px;
    }

    .advantage-card_company, .advantage-card_publish,
    .advantage-card_hours, .advantage-card_amount {
        width: auto;
        max-width: 301px;
    }

    .advantage-card__badge {
        left: 3px;
    }

    .advantage-card_company .advantage-card__content{
        width: 297px;
    }

    .advantage-card__title {
        font-size: 40px;
        line-height: 1.22;
    }

    .advantage-card__top {
        height: 252px;
        margin: 0;
    }

    .advantage-card__desc {
        margin: 5px 0 0;
    }

    .advantage-card__visual {
        gap: 5px;
    }

    .advantage-card__image-wrap {
        height: 217px;
        width: 100%;
    }

    .advantage-card__image-wrap img {
        height: 100%;
    }

    .advantage-card_publish .advantage-card__content {
        padding: 0;
    }

    .advantage-card_publish .advantage-card__top {
        display: block;
        padding: 25px 15px 0 18px;
        margin-bottom: 10px;
    }

    .advantage-card_amount .advantage-card__content, .advantage-card_hours .advantage-card__content {
        width: auto;
        max-width: 233px;
    }

    .advantage-card_amount .advantage-card__text, .advantage-card_hours .advantage-card__text {
        margin-bottom: 10px;
        padding-right: 13px;
    }

    .advantage-card__hidden {
        font-size: 13px;
    }

    .functions {
        padding: 40px 0 31px;
    }

    .functions__content {
        padding: 0;
    }

    .functions-item {
        gap: 15px;
        padding: 0;
    }

    .functions__section-title {
        margin-bottom: 40px;
        text-align: center;
    }

    .functions-item__desc {
        font-size: 18px;
    }

    .functions-item:not(:last-child) {
        margin-bottom: 10px;
    }

    .functions__image-block {
        margin: 30px auto;
    }

    .functions__list-keeper {
        gap: 0;
    }

    .functions-item__desc {
        padding: 0;
    }

    .selection {
        padding: 31px 0 0;
    }

    .selection__content {
        padding: 0;
    }

    .selection__frame {
        padding: 98px 0 35px;
        top: -78px;
    }

    .selection__variant {
        padding: 0 7px;
    }

    .selection-slider {
        max-width: 218px;
    }

    .tools {
        margin: -35px 0 0;
        padding-bottom: 13px;
    }

    .tools .section-odd {
        padding: 22px 0 0;
    }

    .tools__content {
        padding: 0;
        overflow: hidden;
    }

    .tools__section-title {
        padding-right: 7px;
        margin-bottom: 22px;
    }

    .grid-mosaic__left .mosaic-card {
        min-height: 349px;
    }

    .mosaic-card {
        padding: 22px 21px 21px 30px;
    }

    .mosaic-card__title {
        font-size: 20px;
        line-height: 1.2;
    }

    .mosaic-card__content {
        font-size: 18px;
    }

    .grid-mosaic__left .mosaic-card__title,
    .grid-mosaic__top .mosaic-card__title,
    .grid-mosaic__bottom .mosaic-card__title {
        margin-bottom: 20px;
    }

    .grid-mosaic__left .mosaic-card_image::after {
        background-image: image-set(
                url("../assets/images/webinar@1x-mobile.webp") type("image/webp") 1x,
                url("../assets/images/webinar@2x-mobile.webp") type("image/webp") 2x,
                url("../assets/images/webinar@1x-mobile.png") type("image/png") 1x,
                url("../assets/images/webinar@2x-mobile.png") type("image/png") 2x
        );
        height: 170px;
        right: 16px;
        bottom: -6px;
    }

    .grid-mosaic__bottom .mosaic-card_image::after {
        background-image: image-set(
                url("../assets/images/bookclub@1x-mobile.webp") type("image/webp") 1x,
                url("../assets/images/bookclub@2x-mobile.webp") type("image/webp") 2x,
                url("../assets/images/bookclub@1x-mobile.png") type("image/png") 1x,
                url("../assets/images/bookclub@2x-mobile.png") type("image/png") 2x
        );
        right: 18px;
        bottom: 6px;
    }

    .grid-mosaic__bottom .mosaic-card_image {
        min-height: 277px;
    }

    .grid-mosaic__right {
        margin-bottom: 27px;
    }

    .tools__attention-row {
        flex-direction: column;
        gap: 22px;
        align-items: center;
    }

    .tools__attention-text {
        max-width: 302px;
        text-align: center;
        font-size: 18px;
    }

    .tools__custom-button {
        max-width: 198px;
        height: 54px;
        border-radius: 9px;
    }

    .interface {
        padding: 13px 0 27px;
    }

    .interface__content {
        padding: 0;
    }

    .interface__row {
        gap: 20px;
    }

    .interface__section-title {
        margin-bottom: 20px;
    }

    .interface-item {
        display: flex;
        flex-direction: column;
        padding-bottom: 0;
        border: 2px solid transparent;
        border-radius: 33px 33px 36px 36px;
        overflow: hidden;
    }

    .interface-item_blue {
        border-color: var(--fillBlue);
    }

    .interface-item_orange {
        border-color: var(--simpleOrange);
    }

    .interface-item__top {
        padding: 5px 10px 12px 10px;
        text-align: center;
        border: none;
        min-height: auto;
    }

    .interface-item__bottom {
        position: static;
        translate: none;
    }

    .interface-item__title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .interface-item__title br {
        display: none;
    }

    .interface-item:first-child .interface-item__title {
        padding: 88px 0 0;
    }

    .interface-item:first-child .interface-item__title::before {
        width: 106px;
        left: 50%;
        translate: -50% 0;
    }

    .interface-item:nth-child(2) .interface-item__title {
        padding: 95px 0 0;
    }

    .interface-item:nth-child(2) .interface-item__title::before {
        width: 95px;
        left: 50%;
        translate: -50% 0;
    }

    .questions {
        padding: 20px 0;
    }

    .questions__section-title {
        margin-bottom: 12px;
    }

    .questions__subtitle {
        font-size: 18px;
    }

    .questions__left {
        gap: 20px;
    }

    .questions__img-wrap {
        width: 123px;
        height: 123px;
        margin: 0 auto 10px;
    }

    .questions__image {
        width: 115px;
        height: 115px;
    }

    .questions__desc strong {
        font-size: 18px;
    }

    .questions__desc p {
        font-size: 16px;
    }

    .integration {
        padding: 35px 0 33px;
    }

    .integration__section-title {
        text-align: center;
        margin-bottom: 45px;
    }

    .step-card__circle {
        width: 148px;
        height: 148px;
    }

    .step-card__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .step-card_one .step-card__title {
        width: 220px;
    }

    .step-card__title:before {
        height: 28px;
        left: -5px;
    }

    .step-card__list {
        gap: 5px;
    }

    .step-card__title span {
        padding: 3px 10px;
    }

    .step-card {
        align-items: flex-start;
        position: relative;
        padding-left: 130px;
    }

    .integration__box {
        gap: 52px;
    }

    .step-card__left {
        position: absolute;
        left: 0;
        top: -13px;
    }

    .step-card_one {
        padding-left: 122px;
    }

    .step-card_one .step-card__pic {
        width: 109px;
        height: 222px;
        top: -46px;
        left: 9px;
    }

    .step-card_two .step-card__pic {
        width: 156px;
        height: 216px;
        top: -41px;
        left: -12px;
    }

    .step-card_three .step-card__pic {
        width: 147px;
        height: 218px;
        top: -40px;
        left: -8px;
    }

    .step-card__title img {
        width: 15px;
        height: 15px;
    }

    .step-card_two .step-card__right {
        max-width: 265px;
    }

    .step-card_three .step-card__title {
        margin-left: 5px;
    }

    .support__subtitle {
        font-size: 18px;
    }

    .support__box {
        margin-top: 34px;
        font-size: 16px;
        line-height: 1.25;
        gap: 10px;
    }

    .support__bottom .support__box {
        padding-left: 4px;
    }

    .support__section-title {
        margin-bottom: 15px;
        padding-left: 4px;
    }

    .support {
        background-color: transparent;
        margin: 0;
    }

    .support__top {
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        overflow: hidden;
    }

    .support__top .support__box {
        padding-bottom: 258px;
    }

    .support__list {
        padding-left: 4px;
    }

    .support-item {
        padding-left: 50px;
    }

    .support-item__num {
        font-size: 16px;
        min-width: 37px;
        width: 37px;
        height: 23px;
    }

    .support-item__num span {
        font-size: 15px;
    }

    .support__bottom {
        background-color: var(--bgLightBlue);
        padding: 69px 0 37px;
        border-radius: 5px;
    }

    .support__bottom .support__subtitle {
        margin-bottom: 21px;
    }

    .support__simple-list {
        padding: 0;
    }

    .support-item-simple {
        padding-left: 56px;
    }

    .support-item-simple::before {
        box-sizing: border-box;
        top: 0;
        width: 41px;
        height: 25px;
        background-size: 18px 14px;
    }

    .support ul, .support ol {
        gap: 10px;
    }

    .support__top .support__image {
        position: absolute;
        bottom: -47px;
        left: 50%;
        translate: -50% 0;
        top: auto;
        right: auto;
    }

    .managers {
        padding: 31px 0 18px;
    }

    .managers__section-title {
        margin: 0 0 20px;
        padding-left: 4px;
    }

    .managers__content {
        padding: 0;
    }

    .managers__info-title {
        font-size: 19px;
        margin-bottom: 20px;
    }

    .managers__desc {
        font-size: 18px;
    }

    .managers__top {
        margin-bottom: 20px;
    }

    .managers__tab {
        width: 68px;
        height: 68px;
    }

    .managers__block {
        gap: 28px;
    }

    .managers__right {
        margin: 0 -20px;
    }

    .manager-card {
        justify-content: flex-start;
        grid-template-columns: 141px 184px;
        padding: 20px;
        gap: 17px 11px;
        max-width: 375px;
        width: 100%;
        margin: 0 auto;
    }

    .manager-card__personal {
        order: 3;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .manager-card__right {
        grid-column: span 2;
    }

    .manager-card__quote {
        font-size: 14px;
        line-height: 1.2;
    }

    .manager-card__left {
        order: 2;
        grid-row: auto;
    }

    .manager-card__photo {
        mask-image: url("../assets/images/icons/mask-image-mobile.svg");
        width: 136px;
        height: 163px;
    }

    .manager-card__pattern {
        width: 42px;
        height: 54px;
    }

    .manager-card__pattern::after {
        width: 45px;
        height: 46px;
        background-size: contain;
    }

    .manager-card__image-wrap {
        width: fit-content;
    }

    .manager-card__button {
        bottom: 3px;
        width: 28px;
        height: 32px;
    }

    .manager-card__button::after {
        width: 17px;
        height: 16px;
    }

    .manager-card__place {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .manager-card__desc {
        font-size: 14px;
    }

    .callback {
        position: relative;
        padding: 31px 0 0;
        margin-bottom: 31px;
        border-right: 10px;
        min-height: 675px;
    }

    .callback__section-title {
        margin-bottom: 15px;
    }

    .callback__subtitle {
        font-size: 18px;
    }

    .callback__callback-form {
        padding-top: 11px;
    }

    .callback-form__variant {
        font-size: 16px;
    }

    .callback-form__btns {
        gap: 5px 10px;
        margin: 0;
        padding-bottom: 30px;
    }

    .callback-form__variant span {
        padding: 5px 8px;
    }

    .callback .callback-form__field-block {
        position: absolute;
        left: 0;
        padding: 30px 20px;
        max-width: 100%;
    }

    .callback .form-item__field {
        height: 23px;
    }

    .callback .callback-form__tip {
        margin-top: 15px;
    }

    .callback .callback-form__custom-button {
        margin-bottom: 15px;
        max-width: 301px;
    }

    .clients {
        padding: 14px 0 20px;
    }

    .clients__section-title {
        margin-bottom: 20px;
        text-align: center;
    }

    .clients__list {
        gap: 15px 7px;
    }

    .clients__content {
        padding-left: 0;
    }

    .client-item_sportmaster {
        width: 117px;
        height: 19px;
    }
    .client-item_mts {
        width: 24px;
        height: 24px;
    }
    .client-item_sogaz {
        width: 67px;
        height: 14px;
    }
    .client-item_cherkizovo {
        width: 98px;
        height: 23px;
    }
    .client-item_kaspersky {
        width: 82px;
        height: 17px;
    }
    .client-item_x5 {
        width: 73px;
        height: 22px;
    }
    .client-item_ingosstrah {
        width: 117px;
        height: 13px;
    }
    .client-item_omk {
        width: 70px;
        height: 21px;
    }
    .client-item_rusal {
        width: 59px;
        height: 32px;
    }

    .reviews {
        padding: 0 0 14px;
    }

    .reviews__content {
        padding: 0;
    }

    .reviews__slider-wrap {
        margin: 0 -20px;
        padding: 0 0 20px;
    }

    .reviews__section-title {
        text-align: center;
        margin: 0 auto 15px;
        max-width: 75%;
    }

    .reviews-slide__company {
        font-size: 73px;
    }

    .reviews-slide__info {
        font-size: 16px;
        max-width: 316px;
        margin: 0 auto;
        text-align: center;
    }

    .reviews-slider .slider-arrow_next {
        right: 20px;
    }

    .reviews-slider .slider-arrow_prev {
        left: 20px;
    }

    .reviews__custom-button {
        margin-top: 15px;
        max-width: 235px;
        font-size: 16px;
        height: 50px;
    }

    .cases {
        padding: 0;
    }

    .cases__content {
        background-color: transparent;
        background-image: image-set(
                url("../assets/images/case-bg-mobile@1x.webp") type("image/webp") 1x,
                url("../assets/images/case-bg-mobile@2x.webp") type("image/webp") 2x,
                url("../assets/images/case-bg-mobile@1x.png") type("image/png") 1x,
                url("../assets/images/case-bg-mobile@2x.png") type("image/png") 2x
        );
        background-position: 5%;
        width: 100%;
    }

    .cases__wrapper::after {
        right: -116px;
        bottom: -123px;
    }

    .cases__section-title {
        color: #000000;
        padding: 13px 0 0 100px;
    }

    .cases__list {
        padding: 32px 0 0 35px;
    }

    .cases-item {
        max-width: 350px;
    }

    .cases-item__title {
        font-size: 20px;
    }

    .cases-item__highlight {
        font-size: 20px;
        max-width: 290px;
    }

    .cases-item__desc {
        margin-bottom: 15px;
    }

    .cases-item:not(:last-child) {
        padding-bottom: 64px;
    }

    .cases-item:not(:first-child) {
        margin-top: -8px;
    }

    .cases__wrapper {
        padding-bottom: 300px;
    }

}

@media(max-width: 360px) {
    .shape-button__long {
        width: 250px;
    }

    .new-hero .custom-button {
        font-size: 12px;
    }

    .new-hero__desc {
        font-size: 16px;
    }

    .pluses-card__text {
        font-size: 14px;
    }

    .pluses-card__title {
        font-size: 20px;
    }

    .pluses-card__badge {
        bottom: 12px;
    }

    .advantage-card__badge {
        display: none;
    }

    .advantage-card {
        padding-left: 0;
    }

    .advantage-card_company, .advantage-card_publish, .advantage-card_hours, .advantage-card_amount {
        width: 280px;
    }

    .advantage-card_amount .advantage-card__content, .advantage-card_hours .advantage-card__content {
        width: 280px;
        max-width: none;
    }

    .advantage-card_company .advantage-card__image-wrap img {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }

    .functions__image-block {
        width: 100%;
    }

    .mosaic-card {
        padding-left: 10px;
        padding-right: 10px;
    }

    .mosaic-card__content {
        font-size: 16px;
    }

    .interface-item__desc {
        font-size: 16px;
    }

    .interface-item:nth-child(1) .interface-item__image, .interface-item:nth-child(2) .interface-item__image {
        height: auto;
    }

    .callback-form__custom-button {
        max-width: 90%;
    }

    .step-card__list {
        font-size: 14px;
    }

    .step-card_one .step-card__pic {
        width: 77px;
        height: auto;
        top: -11px;
    }

    .step-card_two .step-card__pic {
        width: 113px;
        height: auto;
        top: -13px;
        left: -2px;
    }

    .step-card_three .step-card__pic {
        width: 116px;
        height: auto;
        top: -20px;
    }

    .step-card {
        padding-left: 97px;
    }

    .step-card__title {
        font-size: 16px;
    }

    .step-card__title:before {
        height: 24px;
    }

    .step-card_one {
        padding-left: 80px;
    }

    .support__bottom .support__image {
        width: 100%;
    }

    .manager-card {
        grid-template-columns: 1fr;
    }

    .manager-card__right {
        grid-column: auto;
    }

    .cases-item__highlight {
        font-size: 16px;
        max-width: 237px;
    }

    .cases-item {
        font-size: 16px;
        padding-right: 10px;
    }

    .cases__wrapper::after {
        bottom: -190px;
    }
}