/* CSS Document */
html {
    scroll-behavior: smooth;
}

#reviewsBitrix24 {
    scroll-margin-top: 100px;
}

:root {
    --font-size-1: 27px;
    --line-height-1: 28px;
    --margin-b-title: 57px;
    --border-radius: 50px;
}

.page {
    font-size: 16px;
}

main.main {
    overflow: hidden;
}

@media (max-width: 1400px) {
    :root {
        --font-size-1: 25px;
        --line-height-1: 27px;
        --margin-b-title: 55px;
        --border-radius: 50px;

    }

    .page {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    :root {
        --margin-b-title: 30px;
        --font-size-1: 18px;
        --line-height-1: 20px;
        --border-radius: 30px;

    }

    .page {
        font-size: 14px;

    }

}


.main__team-b {
    padding: 100px 0;
}

.h2-title {
    margin-bottom: var(--margin-b-title);
}

@media (max-width: 1400px) {
    .main__team-b .two-column-text__desc {
        max-width: 495px;
    }

    .h2-title {

        max-width: 920px;
    }

    .main__team-b {
        padding: 120px 0;
    }
}

@media (max-width: 1200px) {
    .main__team-b .two-column-text__desc {
        max-width: 495px;
    }

    .main__team-b {
        padding: 57px 0;
    }
}

@media (max-width: 992px) {

    .main__team-b .two-column-text__title {
        max-width: 100%;
    }

    .main__team-b .two-column-text__desc {
        max-width: 100%;
    }

    .main__team-b {
        padding: 57px 0;
    }
}

.main ul li {
    padding-left: 43px;
    position: relative;
}

.main ul li::before {
    content: url(/local/templates/.default/images/redesign-2023/mark_li.svg);
    position: absolute;
    left: 0;
    top: 2px;
}

.main ul li:not(:last-child) {
    margin-bottom: 15px;
}

/* Header */

.header {
    position: relative;
    /*z-index: 3;*/
    z-index: 10;
}

.header__bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    /*padding: 25px 0;*/
}

.header__bar_default {
    display: flex;
}

.header__bar_fixed {
    display: none;
}

.header__outer .container {
    position: relative;
}

.header__outer.fixed .header__bar_default {
    display: none;
}

.header__outer.fixed .header__bar_fixed {
    display: flex;
}

.header__bar_fixed {
    justify-content: flex-start;
}

.header__bar_fixed .menu {
    margin-left: 75px;
}

.phone-wrapper {
    display: flex;
    align-items: center;
    gap: 31px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
}


.phone-wrapper .button {
    max-width: 210px;
}

.header__outer {
    z-index: 10;
}

.header__outer.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-color);
    box-shadow: 0px 4px 12px 0px rgba(217, 222, 228, 0.90);
    animation: slidein 1s ease-in-out;
}

.header__phone-mobile {
    display: none;
}

@keyframes slidein {
    from {
        transform: translateY(-100px);
    }

    to {
        transform: translateY(0);
    }
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 0 30px;
}

.menu a {
    color: var(--text-blue-green);
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.menu a:hover {
    color: #26BCF4;
}

.header__contacts-outer {
    text-align: right;
}

.header__contact-item {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--text-black);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.wa {
    display: flex;
    align-items: center;
    gap: 0 5px;
    color: var(--text-blue-green);
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.address {
    display: flex;
    align-items: center;
    gap: 0 5px;

}

.header__phones .address {
    justify-content: end;
}

.header__phones {
    display: flex;
    align-items: center;
    gap: 0 56px;
    width: 100%;
    max-width: 250px;
}

.phone a.zphone,
a.zphone {
    color: #003E59;
}

.phone-button {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 49px;
    height: 49px;
    width: 100%;
    border-radius: 50%;
    background: var(--blue);
    transition: 0.5s;
}

.phone-button:hover {
    background: var(--orange);
}


@media (max-width: 1200px) {
    .phone-wrapper .phone {
        display: none;
    }

    .phone-wrapper {
        justify-content: flex-end;
        max-width: 210px;
    }
}

@media (max-width: 576px) {
    .header__phone-mobile {
        display: block;
        margin-bottom: 20px;
        color: var(--dark-blue);
        font-size: 17px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        opacity: 1;
        transition: 0.5s;
    }

    .mobile-menu-show .header__phone-mobile {
        /*opacity: 0;*/
        display: none;
    }
}

/* Mobile menu */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100vh;
    padding-top: 95px;
    background: #ffffff;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-btn {
    position: relative;
    width: 30px;
    height: 30px;
    display: none;
}

.mobile-menu-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.mobile-menu-btn__close {
    opacity: 0;
}

.mobile-menu-btn.active .mobile-menu-btn__open {
    opacity: 0;
}

.mobile-menu-btn.active .mobile-menu-btn__close {
    opacity: 1;
}

.mobile-menu__list li a {
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: var(--text-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.mobile-menu__list ul {
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-menu__list li.active ul {
    display: block;
}

.mobile-menu__list ul li:not(:last-of-type) {
    margin-bottom: 15px;
}

.mobile-menu__list ul li a {
    color: var(--text-light-gray);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    transition: 0.5s;
}

.mobile-menu__list ul li a:hover {
    color: var(--blue);
}

.mobile-menu__list li.active svg {
    rotate: 90deg;
}

.mobile-menu__list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.mobile-menu__list {
    margin-bottom: 25px;
}

.mobile-menu__phone-inner {
    display: flex;
    align-items: center;
    gap: 0 24px;
    margin-bottom: 27px;
}

.mobile-menu__phone {
    color: var(--dark-blue);
    font-size: 17px;
    font-weight: 700;
}

.mobile-menu__address {
    color: var(--text-black);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

.socials-list {
    display: flex;
    gap: 0 25px;
}

.socials-list li path {
    fill: var(--dark-blue);
    transition: 0.5s;
}

.socials-list li:hover path {
    fill: var(--orange);
}

.mobile-menu__time {
    margin-top: 4px;
    margin-bottom: 17px;
    color: var(--text-light-gray);
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
}

@media (max-width: 1200px) {
    .phone-button_desktop {
        display: none;
    }

    .header__phones {
        max-width: none;
        width: unset;
    }
}

@media (max-width: 992px) {
    .header__contacts-outer,
    .menu,
    .header__phones {
        display: none;
    }

    .mobile-menu .menu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }
}

.logo {
    display: block;
}


/*button_24*/

.button_b24 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 219px;
    height: 59px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px;
    line-height: normal;
    transition: 0.5s;
    cursor: pointer;
    font-family: inherit;
}

.button_b24_white {
    color: #fff;
    background: var(--orange);
}

.button_b24_white:hover {
    color: var(--dark-blue);
    background: #fff;
}

.button_b24_orange {
    color: #fff;
    background: var(--orange);
}

.button_b24_orange:hover {
    background: var(--blue);
}

/*end button_24*/


/* main-slider */
.main__main-slider {
    margin-top: 54px;
    margin-bottom: 102px;
}

.banner_static {
    background: #fff;
    border-radius: 50px;
    padding: 102px 0px 0 49px;
    min-height: 533px;
    overflow: hidden;
    position: relative;
    min-height: 576px;
}

.banner_static::before {
    content: url(images/atom-figures.png);
    position: absolute;
    right: 0;
    bottom: -7px;
}

.banner_static_title {
    padding: initial;
    color: var(--text-black);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: 39px;
}

.banner_static_title_oneline {
    padding-left: 150px;
}

.banner_static_title_twoline span {
    color: var(--blue);
}

.banner_static_title_threeline {
    padding-left: 61px;
}

.banner_static_title_threeline span {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
}

.banner_static_text {
    color: var(--text-light-gray);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px; /* 147.059% */
    position: relative;
    max-width: 744px;
}

.button_static_text_orange {
    color: #fff;
    width: 100%;
    max-width: 283px;
    border-radius: 50px;
    background: #FF9706;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
    display: inline-block;
    padding: 2px 33px 12px;
    position: absolute;
    margin-left: 42px;
    transform: rotate(-6.263deg);
    top: 57px;
}

.button_static_text_orange:hover {
    background: var(--blue);
    cursor: pointer;
    transition: 0.5s;
}

.button_static_text_orange span {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: block;
    margin-bottom: -5px;
}

@media (max-width: 1420px) {
    .banner_static_title {
        font-size: 50px;
        line-height: 55px;
    }

    .banner_static_title_oneline,
    .banner_static_title_threeline {
        padding-left: 0;
    }

    .banner_static_title_threeline span {
        margin-left: 0;
    }
}


@media (max-width: 1200px) {
    .banner_static {
        padding: 50px 49px;

    }
}

@media (max-width: 992px) {
    .banner_static_text br {
        display: none;
    }

    .banner_static_title {
        font-size: 40px;
        line-height: 45px;
    }

    .banner_static_text_orange {
        position: initial;
        margin: 0;
        margin-top: 20px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .banner_static {
        min-height: initial;
    }

    .banner_static::before {
        display: none;
    }

    .banner_static_title {
        font-size: 30px;
        line-height: 35px;
    }

    .banner_static_text {
        font-size: 16px;
        line-height: 24px;
    }

    .banner_static_text_orange span {
        font-size: 30px;
    }

    .banner_static_title_oneline,
    .banner_static_title_twoline,
    .banner_static_title_threeline {
        display: inline;
    }
}

@media (max-width: 576px) {
    .banner_static {
        padding: 30px 15px;
        border-radius: 30px;
    }

    .banner_static_title {
        font-size: 25px;
        line-height: 30px;
    }

    .banner_static_text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* end main-slider */


/*all_style*/
.section_title {
    color: var(--text-black);
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 57px;
    margin-top: 0;
}

.section_title span {
    color: var(--blue);
}

@media (max-width: 1200px) {
    .section_title {
        font-size: 30px;
        line-height: 32px;
    }
}

@media (max-width: 992px) {
    .section_title {
        font-size: 25px;
        line-height: 28px;
        margin-bottom: 30px !important;
    }
}


/*b24_team_sert*/
.b24_team_sert {
    position: relative;
    z-index: 2;
}


.b24_team_sert .section_title {
    margin-bottom: 29px;
}

.b24_team_sert_text {
    color: var(--text-light-gray);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px; /* 147.059% */
}

@media (max-width: 992px) {
    .b24_team_sert_text {
        margin-bottom: 30px;
    }

}

/*end b24_team_sert*/


/*b24_thoughts*/
.b24_thoughts {
    padding-top: 147px;
    position: relative;
}

.b24_thoughts::before {
    content: url(images/cube_left.svg);
    display: block;
    position: absolute;
    left: -8px;
    top: -142px;
    z-index: -1;
}

.b24_thoughts_item {
    padding: 0 70px;
    min-height: 377px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff url(images/b24_thoughts_kv.png) no-repeat center;
    border-radius: 50px;
    margin-bottom: 30px;
}

.b24_thoughts_item_text {
    color: var(--text-black);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
}

.b24_thoughts_item_text ul {
    position: relative;
    min-height: 37px;
    display: block;
    width: 100%;
}

.b24_thoughts_item_text ul li:not(:last-child) {
    margin-bottom: 0;
}

.b24_thoughts_item_text ul li {
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 2s;
}

.b24_thoughts_item_text ul li.active {
    opacity: 1;
}

.b24_thoughts_item_text ul li::before {
    display: none;
}

.b24_thoughts_ansv {
    background: var(--dark-blue);
    padding-left: 55px;
    border-radius: 50px;
    min-height: 416px;
    position: relative;
    overflow: hidden;
}

.b24_thoughts_ansv::before {
    content: '';
    background: url(images/b24_thoughts_cube_pshar.svg) no-repeat center;
    width: 741px;
    height: 416px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

.b24_thoughts_ansv .section_title {
    color: #fff;
    margin-top: 90px;
    margin-bottom: 34px;
}

.b24_thoughts_ansv_text {
    color: #fff;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px; /* 147.059% */
    margin-bottom: 50px;
}

.b24_thoughts_ansv img {
    display: block;
}


@media (max-width: 992px) {
    .b24_thoughts_item {
        min-height: 250px;
        background-size: 35%;
        padding: 0px 30px;
    }

    .b24_thoughts_ansv .section_title {
        margin-top: 0;
    }

    .b24_thoughts_ansv {
        padding: 50px 30px;
        min-height: initial;
    }

    .b24_thoughts_item_text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .b24_thoughts_ansv::before {
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    .b24_thoughts_item {
        background-size: 50%;
    }
}

/*end b24_thoughts*/


/*rutina*/

.rutina_content {
    background: var(--dark-blue);
    border-radius: 50px;
    padding: 60px 60px 55px;
    position: relative;
    overflow: hidden;
}

.rutina_content::before {
    content: '';
    background: url(images/rutina.svg) no-repeat center;
    width: 690px;
    height: 415px;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
}

.rutina .section_title {
    position: relative;
    color: #fff;
    margin-bottom: 30px;
}

.rutina .section_title::before {
    content: '';
    display: inline-block;
    width: 170px;

}

.rutina .section_title span {
    position: absolute;
    top: -8px;
    left: -28px;
    color: #fff;
    border-radius: 50px;
    background: var(--orange);
    transform: rotate(-11.814deg);
    padding: 8px 23px;
}

.rutina_text {
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 41px;
}


@media (max-width: 1200px) {
    .rutina .section_title::before {
        width: 125px;
    }
}

@media (max-width: 992px) {
    .rutina_content::before {
        left: 0;
        top: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background-size: cover;
    }

    .rutina .section_title::before {
        width: 110px;
    }
}

@media (max-width: 768px) {
    .rutina_content {
        padding: 50px 30px;
    }
}

/*end rutina*/


/*niche_work*/
.niche_work_item {
    background: var(--dark-blue);
    border-radius: 40px;
    padding: 40px 40px 30px 45px;
    min-height: 346px;
}

.niche_work_item ul li {
    padding: 0;
    color: #fff;
}

.niche_work_item ul li:not(:last-child) {
    margin-bottom: 10px;
}

.niche_work_item ul li::before {
    display: none;
}

.niche_work_item_btn {
    margin-top: 50px;
}

.niche_work_item_btn .button_b24 {
    border-radius: 30px;
    height: 107px;
}

@media (max-width: 1200px) {
    .niche_work_item {
        margin-bottom: 30px;
    }

}

@media (max-width: 768px) {
    .niche_work_item {
        margin-bottom: 0px;
        border-radius: 0;
        padding: 15px 30px;
        min-height: initial;
    }

    .niche_work .row .col-md-6:first-child .niche_work_item {
        border-radius: 30px 30px 0 0;
        padding-top: 30px;
    }

    .niche_work .row .col-md-6:last-child .niche_work_item {
        border-radius: 0 0 30px 30px;
        padding-bottom: 30px;
    }
}

/*end niche_work*/


/*deploy_b24*/
.deploy_b24 .section_title {
    margin-bottom: 55px;
    color: #fff;
}

.deploy_b24_cont {
    background: var(--dark-blue);
    border-radius: 50px;
    padding: 50px 55px;
    position: relative;
    min-height: 550px;
    overflow: hidden;
}

.deploy_b24_cont::before {
    content: '';
    background: url(images/deploy_b24.svg) no-repeat center;
    width: 570px;
    height: 550px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.deploy_b24_text {
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .deploy_b24_cont {
        min-height: initial;
    }

    .deploy_b24_cont::before {
        left: 0;
        top: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background-size: cover;
    }
}

@media (max-width: 768px) {
    .deploy_b24_cont {
        padding: 50px 30px;
    }
}


/*end deploy_b24*/


/*feedback*/
.feedback {
    position: relative;
}

.feedback::before {
    content: url(images/mobius_strip_right.svg);
    display: block;
    position: absolute;
    right: -8px;
    bottom: calc(100% - 235px);
}

/*end feedback*/


/* perspective */
.perspective .h2-title {
    line-height: 57px;
}

.pesrpective_container {
    display: flex;
    flex-direction: column;

}

.perspective_title {
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    padding: 28px 0;
    margin-bottom: 15px;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.perspective_title.dark_blue {
    background-color: var(--dark-blue);
}

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

.pesrpective_list {
    background-color: #FFF;
    border-radius: var(--border-radius);
    padding: 40px 45px;
    flex-grow: 1;
}

.pesrpective_list ul li {
    padding-left: 66px;
}

.pesrpective_list ul li:not(:last-child) {
    margin-bottom: 20px;
}

.pesrpective_list ul li::before {
    top: 0;
    bottom: 0;
    margin: auto;
    height: 41px;
}

.pesrpective_list.pesrpective_list-left ul li:before {
    content: url(images/perspective/without.svg);
}

.pesrpective_list.pesrpective_list-right ul li:before {
    content: url(images/perspective/with.svg);
}

@media (max-width: 1400px) {
    .perspective .h2-title {
        line-height: 48px;
    }

    .perspective_title {
        padding: 32px;
        margin-bottom: 10px;
    }

    .pesrpective_list {
        padding: 43px 50px 70px 47px;
    }


}

@media (max-width: 1200px) {
    .perspective_container_data {
        min-width: 1260px;
    }

    .perspective_container_overflow {
        overflow: auto;
    }
}

@media (max-width: 767px) {
    .perspective .h2-title {
        line-height: normal;
    }

    .perspective_container_data {
        min-width: unset;
    }

    .perspective_container_data > .row {
        flex-wrap: nowrap;
    }

    .pesrpective_container {
        max-width: 315px;
    }

    .pesrpective_container:last-child {
        padding-left: 0;
    }

    .perspective_title {
        padding: 11px 50px;

    }

    .pesrpective_list {
        padding: 39px 20px 50px 20px;
    }

    .pesrpective_list.pesrpective_list-left ul li:before,
    .pesrpective_list.pesrpective_list-right ul li:before {
        width: 27px;
        height: 27px;
    }

    .pesrpective_list.pesrpective_list-left ul li:before {
        content: '';
        background: url(images/perspective/without.svg) no-repeat center;
    }

    .pesrpective_list.pesrpective_list-right ul li:before {
        content: '';
        background: url(images/perspective/with.svg) no-repeat center;
    }

    .pesrpective_list ul li {
        padding-left: 45px;
    }

    .pesrpective_list ul li::before {
        bottom: unset;
    }

}

/* end perspective */


/*cost_deployd_setting*/

.cost_deployd_setting_cont {
    background: var(--dark-blue);
    border-radius: 50px;
    padding: 50px 55px;
    position: relative;
    overflow: hidden;
}

.cost_deployd_setting_cont::before {
    content: '';
    background: url(images/perspective/form_footer_1.png) no-repeat;
    width: 570px;
    height: 550px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.cost_deployd_setting .section_title {
    color: #fff;
    margin-bottom: 28px;
}

.cost_deployd_setting_text {
    margin-bottom: 37px;
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px; /* 147.059% */
}

@media (max-width: 992px) {
    .cost_deployd_setting_cont::before {
        background: none;
        left: 0;
        top: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background-size: cover;
    }

    .cost_deployd_setting_text br {
        display: none;
    }

    .cost_deployd_setting .section_title span {
        color: #fff;
    }
}

@media (max-width: 768px) {
    .cost_deployd_setting_cont {
        padding: 50px 30px;
    }
}

/*end cost_deployd_setting*/

.button_top {
    display: none;
    outline: 0;
    border: 0;
    padding: 0;
    background: none;
    position: fixed;
    bottom: 100px;
    right: 245px;
    z-index: 10;
    width: 67px;
    height: 67px;
    border-radius: 100%;
    background: #eee;
    transition: 0.5s;
}

.button_top svg path {
    transition: 0.5s;
}

.button_top:hover {
    background: var(--dark-blue);
}

.button_top:hover svg path {
    fill: var(--bg-color);
}

/* .page .b24-widget-button-position-bottom-right {
    right: 245px;
    bottom: 198px;
} */

@media (max-width: 1400px) {
    .button_top {
        right: 60px;
    }

    .page .b24-widget-button-position-bottom-right {
        right: 60px;
    }
}

@media (max-width: 1200px) {
    .button_top {
        right: 41px;
    }

    .page .b24-widget-button-position-bottom-right {
        right: 41px;
    }
}

@media (max-width: 991px) {
    .button_top {
        right: 57px;
    }

    .page .b24-widget-button-position-bottom-right {
        right: 57px;
    }
}

@media (max-width: 767px) {
    .button_top {
        right: 64px;
    }

    .page .b24-widget-button-position-bottom-right {
        right: 64px;
    }
}

@media (max-width: 567px) {
    .button_top {
        right: 15px;
    }

    .page .b24-widget-button-position-bottom-right {
        right: 15px;
    }
}

/* Blue section */

.blue-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 90px;
    padding: 56px 50px 0;
    background: var(--dark-blue);
    border-radius: 50px;
}

.h2-title.blue-section__title {
    color: #ffffff;
}

.blue-section.main__section {
    margin-bottom: 151px;
}

.blue-section__button {
    max-width: 278px;
    position: relative;
    top: -30px;
}

@media (max-width: 1400px) {
    .blue-section.main__section {
        margin-bottom: 126px;
    }

    .blue-section__inner {
        padding: 55px 50px 2px;
    }
}

@media (max-width: 992px) {
    .blue-section__inner {
        gap: 35px;
        padding: 40px 20px 50px;
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .blue-section__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px 17px;
    }

    .blue-section.main__section {
        margin-bottom: 57px;
    }
}


.footer_soc-seti {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.footer_soc-seti svg {
    display: block;
}

.footer_soc-seti a:hover svg path {
    fill: var(--orange);
}

.footer {
    margin-top: 195px;
}

.footer__logo {
    margin-bottom: 90px;
}

.footer .footer__contact-item {
    justify-content: flex-start;
}

.footer-menu-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}

.footer-menu-item strong {
    margin-bottom: 17px;
}

.footer-menu-item li:not(:last-child) {
    margin-bottom: 9px;
}

.footer__bottom {
    margin-top: 66px;
}

@media (max-width: 1400px) {
    .footer {
        margin-top: 183px;
    }

    .footer__logo {
        margin-bottom: 54px;
    }

    .footer-menu-item strong {
        margin-bottom: 19px;
    }

    .footer-menu-item li:not(:last-child) {
        margin-bottom: 12px;
    }
}

@media (max-width: 1200px) {
    .footer {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .footer-menu-item__links {

        margin-bottom: 35px;
    }

    .footer__bottom {
        margin-top: 0px;
    }
}

.functionality {
    margin-bottom: 70px;
}

.functionality__title {
    margin: 25px 0;
    color: var(--text-black);
    font-size: 27px;
    font-weight: 600;
    line-height: 28px;
}

@media (max-width: 768px) {
    .functionality {
        margin-bottom: 40px;
    }

    .functionality__title {
        font-size: 19px;
        font-weight: 600;
        line-height: 24px;
    }
}

/* Services */
.services .row {
    gap: 30px 0;
}
.main__section{
	margin-top: 102px;
}

.services__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 470px;
    padding: 35px 45px;
    border-radius: var(--border-radius);
    background: #FFF;
    transition: 0.5s;
}

.services__item .h3-title span {
    color: var(--text-black);
    max-width: 200px;
}

.services__item-link {
    display: flex;
    justify-content: space-between;
    height: 56px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.services__item-svg-fill {
    fill: var(--blue);
    transition: 0.5s;
}

.services__item:hover .services__item-svg-fill {
    fill: var(--orange);
}


.services__item-description {
    display: block;
    color: var(--text-light-gray);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    transition: 0.5s;
    width: 100%;
    margin-top: 20px;
}


.services__item-price {
    color: var(--text-black);
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}

.services__item:hover .services__item-price {
    color: var(--orange);
}

.services__more-link {
    max-width: 201px;
    margin: 45px auto 0;
}
.services__title{
    margin-bottom:45px;
}
@media (max-width: 1400px) {
    /* .main__services {
        padding-top: 120px;
    } */
    .services__item-list li a {
        font-size: 15px;
    }

    .services__item-price {
        font-size: 30px;
    }

    .services__item {
        padding: 23px 45px 31px;
        height: 439px;
    }
}

@media (max-width: 1200px) {
    .services__item {
        border-radius: 30px;
        padding: 26px 20px;
    }
}

@media (max-width: 992px) {
    .services__title {
        margin-bottom: 30px;
    }

    .services__more-link {
        margin-top: 35px;
    }

}

@media (max-width: 767px) {
    /* .main__services {
        padding-top: 57px;
    } */
    .services__item-description {
        font-size: 16px;
        line-height: 15px;
        margin-top: 9px;
    }

    .services .row {
        gap: 15px 0;
    }

}

@media (max-width: 576px) {
    .services__item {
        padding: 22px 20px;
        height: unset;
        min-height: 328px;
    }

    .services__item-link {
        height: 33px;
    }

    .services__item-link svg {
        max-width: 33px;
    }

    .services__item-list li a {
        font-size: 13px;
    }

    .services__item-list li {
        line-height: 1;
    }

    .services__item-list li:not(:last-of-type) {
        margin-bottom: 10px;
    }

    .services__item-price {
        font-size: 21px;
    }

    .services__item-list {
        margin-bottom: 30px;
    }

    .services__more-link {
        max-width: 100%;
    }
}
.modal-menu{
    overflow-y: scroll;
    max-height: 850px;
      
}
.about-numbers .row {
    row-gap: 75px;
}

/*additional-services*/
.additional-services {
    /* margin-bottom: var(--margin-1); */
}

.additional-services-item {
    display: grid;
    grid-template-columns: 9fr 3fr;
    min-height: 62px;
    padding-left: 55px;
    font-weight: 300;
    font-size: 15px;
    line-height: 25px;
    color: #111;
    border-radius: 44px;
    background: #ffffff;
}

.additional-services-item:nth-child(2n) {
    background: transparent;
}

.additional-services-item div {
    display: flex;
    align-items: center;
    height: 100%;
}

.additional-services-item:not(.additional-services-item_head) div:last-child {
    font-weight: 900;
}

.additional-services-item_head {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #111;
}

@media (max-width: 991px) {
    .client-logos h2 {
        display: block;
    }

    .client-logos-outer h2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .additional-services-item {
        background: transparent;
    }

    .additional-services-item:nth-child(2n) {
        background: #ffffff;
    }

    div.wrapper .can-trust-us h2 {
        margin-bottom: 30px;
    }

    .additional-services-item.additional-services-item_head {
        display: none;
    }

    .additional-services-item {
        padding: 17px 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .additional-services-item div {
        color: #111;
        font-size: 13px;
        font-weight: 300;
        line-height: 15px;
        /* 115.385% */
    }

    .additional-services-item div:last-child {
        font-weight: 600;
    }

    .description_services span {
        color: #fff;
        border-radius: 15px;
        background: var(--orange);
        border: none;
        padding: 0px 5px 1px;
        background: none;
        color: #FF9706;
        font-weight: 900;
        white-space: normal;
    }

    .additional-services-inner {
        overflow-x: auto;
    }
}
.prise_buttons {
    position: relative;
    margin-top: 62px;
}
@media (max-width: 1367px) {
    .prise_buttons {
        margin-top: 50px;
    }
}
@media (max-width: 767px) {
    .prise_buttons {
        gap: 25px;
        display: flex
;
        flex-direction: column;
    }
}

.prise_buttons .button {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 292px;
    width: 100%;
    height: 62px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    border-radius: 50px;
    line-height: normal;
    transition: 0.5s;
    cursor: pointer;
    font-family: inherit;
    font-display: swap;
    margin-left: auto;
    margin-right: auto;
}
/*additional-services end*/

/*services__blue-section*/
.services__blue-section .blue-section__inner {
    padding: 62px 59px;
}
.blue-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 90px;
    padding: 79px 50px;
    background: var(--dark-blue);
    border-radius: 50px;
}
.h2-title.blue-section__title {
    color: #ffffff;
}
.services__blue-section .blue-section__title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 35px;
    line-height: 39px;
    color: #fff;
}

.services__blue-section .blue-section__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
}
.services__blue-section .blue-section__text strong {
    color: #26bcf4;
}
.new_content .blue-section__button {
    max-width: 387px;
    text-align: center;
    display: block;
    position: unset;
}
.blue-section__button {
    max-width: 221px;
}

.button_orange {
    background: var(--orange);
}
/*services__blue-section end*/

/*support-include*/
.support-include dt {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 25px;
    line-height: 28px;
    color: #111;
}
.wrapper .content_inner h2 {
    margin-top: 55px;
    margin-bottom: 57px;
}
.support-include dt strong {
    color: #26bcf4;
}
.support-include dd:not(:last-of-type) {
    margin-bottom: 40px;
}
.support-include dd {
    margin-left: 0;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
    color: #555;
}
/*support-include end*/

.new_content_completed .blue-item{
    min-height: 255px;
    height: 100%;
}
.new_content_completed .row{
    row-gap: 30px;
}
@media (max-width: 767px) {
    .new_content_completed .row{
        row-gap: 15px;
    }
}

.new_content_banner .deploy_b24_cont::before {
    content: '';
    background: url(/local/templates/bitrix24_2025/images/deploy_b24_new.png) no-repeat center;
    width: 680px;
    height: 416px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}
.new_content_banner .deploy_b24_cont {
    background: var(--dark-blue);
    border-radius: 50px;
    padding: 50px 55px;
    position: relative;
    min-height: 416px;
    overflow: hidden;
}
.new_content_banner .deploy_b24_text {
    color: #FFF;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 40px;
    line-height: 25px; /* 147.059% */
    max-width: 625px;
    width: 100%;
}
.new_content_banner .section_title strong{
    color: #26BCF4;
}
.new_content_banner .section_title{
    max-width: 625px;
    width: 100%;
    margin-bottom: 30px;
}
.new_content_banner .button_b24_white{
    color: #003E59;
    background: #fff;
}
.new_content_banner .button_b24_white:hover {
    color: #fff;
    background: var(--orange);
}
.feedback::before {
	display:none;
}
.feedback-slider__buttons{
	margin-bottom:42px;
}

.certificates-row {
    display: flex;
    align-items: center;
    gap: 0 49px;
    flex-wrap: wrap
}
.main__certificates ul li {
     margin-bottom: 15px; 
}
.main__certificates-row {
    margin-bottom: 58px
}

.certificates-row img {
    max-width: 100%
}
.main__certificates ul li::before {
    display: none;
}
.main__certificates ul li{
    padding-left: 0;
}

@media (max-width: 1367px) {
    .certificates-row {
        gap:28px
    }
}

@media (max-width: 576px) {
    .main__certificates-row {
        margin-bottom:35px
    }

    .certificates-row {
        gap: 15px 23px
    }

    .certificates-row li {
        width: calc(50% - 15px);
        text-align: center
    }
}
.question-answer::before {
    display: none;
}
.client-logos::before{
    display: none;
}