body,
html {
    font-family: "Montserrat", sans-serif;
    height: 100%;
    color: var(--first-color);
    scroll-behavior: smooth;
}

.container {
    max-width: 1590px;
    margin: 0 auto;
    padding: 0 45px 0 45px;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    /* --title-fz: clamp(1rem, 0.515rem + 2.07vw, 2.7rem); */
    --title-fz: clamp(1.75rem, 1.438rem + 1.39vw, 2.688rem);

    --descr-fz: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem);

    --main-color: #FE7401;
    --first-color: #000000;
    --second-color: #FFFFFF;

    --bg-color: #171717;
}

.body-overflow-hidden {
    overflow: hidden;
}

.title {
    font-size: var(--title-fz);
    font-weight: 600;
    line-height: normal;
}

.descr {
    font-size: var(--descr-fz);
    font-weight: 300;
    line-height: normal;
}

.btn {
    display: block;
    /* font-size: 24px; */
    font-size: clamp(0.75rem, 0.568rem + 0.78vw, 1.5rem);
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--second-color);
    background-color: var(--main-color);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    -webkit-transition: -webkit-transform .2s ease, -webkit-box-shadow .3s ease;
    transition: -webkit-transform .2s ease, -webkit-box-shadow .3s ease;
    -o-transition: transform .2s ease, box-shadow .3s ease;
    transition: transform .2s ease, box-shadow .3s ease;
    transition: transform .2s ease, box-shadow .3s ease, -webkit-transform .2s ease, -webkit-box-shadow .3s ease;
    padding: 17px 47px 17px 47px;
}

.btn:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-box-shadow: 2px 8px 12px rgba(225, 106, 9, 0.7);
    box-shadow: 2px 8px 12px rgba(225, 106, 9, 0.7);
}

/* cases */

.case {
    width: 100px;
    height: 83px;
    border: 1px solid var(--first-color);
    border-radius: 13px;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    padding: 15px 5px 15px 5px;
}

.cases__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    margin-top: 31px;
}

.case span {
    font-size: 24px;
    font-weight: 600;
}

.case__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
}

.case__descr {
    font-size: 20px;
    font-weight: 400;
}

/* cases */

/* tag */

.tags {
    max-width: 625px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.tag {
    display: inline-block;
    font-size: 19px;
    font-weight: 300;
    text-align: center;
    border: 1px solid var(--first-color);
    border-radius: 18px;
    padding: 2px 14px 2px 14px;
}

/* tag */

/* modal */

/* .modal {
    display: none;
    position: fixed;
    width: 100%;
    max-width: 529px;
    min-height: 345px;
    top: 60%;
    left: 50%;
    -webkit-transform: translate(-50%, -60%);
    -ms-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    padding: 60px 45px 60px 45px;
    z-index: 11;
}

.modal--active {
    display: block;
}

.modal__close {
    position: absolute;
    top: 30px;
    right: 22px;
    height: 30px;
    cursor: pointer
}

.modal__close span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: #000
}

.modal__close span:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(-45deg);
    -ms-transform: translateY(13px) rotate(-45deg);
    transform: translateY(13px) rotate(-45deg)
}

.modal__close span:nth-child(2) {
    -webkit-transform: translateY(12px) rotate(45deg);
    -ms-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg)
}

.modal .modal__btn {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.modal__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.modal__socials .header__links-social {
    width: 70px;
    height: 70px;
}

.modal__socials .header__links-social img {
    width: 100%;
    height: 100%;
}

.modal__img {
    margin-top: 58px;
} */

.modal {
    display: none;
    position: fixed;
    width: 100%;
    max-width: 480px;
    border-radius: 30px;
    box-shadow: 0px 0px 8px 1px rgb(13 17 19 / 20%);
    top: calc(50% + 47.5px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.modal--active {
    display: block;
}

.modal__top {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: #DDDDDD;
    padding-bottom: 3px;
}

.modal__wrapper {
    position: relative;
    padding: 0 42px;
}

.modal__top-close {
    display: none;
    position: absolute;
    width: 40px;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.modal__top .modal__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.modal__top::before {
    position: absolute;
    content: "";
    width: 350px;
    height: 435px;
    background-size: cover;
    background-image: url(../assets/images/modal-img.png);
    left: 0;
    top: 15px;
    z-index: 0;
}

.modal__top-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 24px;
    color: #132F48;
    text-align: end;
    margin-top: 164px;
}

.modal__top-title span {
    font-size: 23px;
    font-weight: 600;
}

.modal__top-block {
    max-width: 221px;
    background-color: var(--main-color);
    border-radius: 20px;
    align-self: end;
    /* padding: 14px 30px; */
    padding: 14px 20px;
    margin-top: 20px;
}

.modal__top-block p {
    font-size: 20px;
    color: #DDDDDD;
    line-height: 22px;
    text-align: end;
    margin-bottom: 0;
}

.modal__top-name {
    font-size: 21px;
    font-weight: 500;
    color: var(--second-color);
    z-index: 1;
    margin-top: 60px;
}

.modal__bottom {
    background-color: var(--second-color);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    /* padding: 60px 25px 50px 25px; */
    padding: 35px 0px 35px 0px;
}

.modal__bottom-btn {
    display: block;
    font-size: 20px;
    line-height: 15.5px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background-color: var(--main-color);
    border-radius: 15px;
    border: none;
    color: var(--second-color);
    padding: 18px 20px;
    margin: 0 auto;
}

.modal__bottom-text {
    font-size: 22px;
    color: var(--first-color);
    text-align: center;
    margin-top: 20px;
}

.modal__bottom-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.modal__bottom-socials-link img {
    width: 40px;
    height: 40px;
}

/* modal */

.circles-wrapper {
    background-image: url(../assets/icons/circles.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: transparent;
    /* z-index: 10; */
    z-index: 2;
}

.overlay--active {
    display: block;
}

/* Подробнее */

.more-details {
    display: none;
    position: fixed !important;
    width: 100%;
    max-width: 700px;
    height: 700px;
    top: calc(50% + 48px);
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F2F2F2;
    border-radius: 60px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    padding: 45px 55px;
    z-index: 11;
}

.simplebar-scrollbar::before {
    background-color: #A3195B !important;
    opacity: 1 !important;
    margin-top: 48px !important;
    margin-bottom: 45px !important;
}

.simplebar-scrollbar.simplebar-visible:before {
    opacity: 1 !important;
    transition-delay: 0s !important;
    transition-duration: 0s !important;
}

.more-details--active {
    display: block;
}

.more-details__close {
    display: none;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.more-details__title {
    font-size: 36px;
    font-weight: 700;
}

.more-details__price {
    font-size: 24px;
    font-weight: 700;
    color: #A3195B;
    margin-top: 15px;
}

.more-details__descr {
    font-size: 14px;
    margin-top: 15px;
}

.more-details__descr span {
    font-weight: 700;
}

.more-details__subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-top: 18px;
}

.sub-list {
    padding-left: 17px;
}

.more-details__list li::before,
.sub-list li::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 5px;
    left: 0;
    background-color: #FE7401;
    border-radius: 50%;
}

.sub-list li::before {
    width: 8px;
    height: 8px;
    background-color: #1E1E1E;
}

.more-details__list li,
.sub-list li {
    position: relative;
    font-size: 14px;
    padding-left: 26px;
    margin-top: 12px;
}

.more-details__list li span,
.sub-list li span {
    font-weight: 700;
}

.sub-list li {
    padding-left: 20px;
}

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

.sub-list li:not(:last-child) {
    margin-bottom: 8px;
}

/* Подробнее */

/* Анимация для модального окна */

.fade {
    -webkit-animation-name: fade;
    animation-name: fade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* fade */

@-webkit-keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 1;
    }
}

/* fade-out */

.fade-out {
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s;
}

@-webkit-keyframes fade-out {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Анимация для модального окна */

/* Hero */

.hero {
    position: relative;
    width: 100%;
}

.hero__first {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #DCDDD8 0%, #E4E4DA 100%);
    isolation: isolate;
}

.hero__first::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../assets/images/hero-bg.png) no-repeat center/cover;
    z-index: 0;
}

.hero__first::after {
    content: "";
    position: absolute;
    inset: 0;
    height: 491px;
    background: linear-gradient(0deg, #0A131D -8.39%, rgba(122, 117, 109, 0) 57%);
    transform: scaleY(-1);
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: normal;
    color-interpolation-filters: linearRGB;
}

.hero__first-wrapper {
    position: relative;
    min-height: 635px;
    z-index: 2;
}

.hero__first-info {
    padding-top: 36px;
}

.hero__first-title {
    max-width: 1100px;
    /* font-size: 50px; */
    font-size: clamp(1rem, 0.393rem + 3.04vw, 3.125rem);
    text-transform: uppercase;
    color: var(--second-color);
}

.hero__first-descr {
    max-width: 550px;
    color: var(--second-color);
    font-weight: 500;
    margin-top: 30px;
}

.hero__first-btn {
    position: absolute;
    /* font-size: 27px; */
    font-size: clamp(0.938rem, 0.723rem + 1.07vw, 1.688rem);
    /* min-height: 90px; */
    filter: drop-shadow(0px 16px 16px rgba(0, 0, 0, 0.09)) drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.1));
    bottom: 45px;
    left: 0px;
}

.hero__second {
    background-color: var(--bg-color);
}

.hero__second-wrapper {
    display: flex;
    min-height: 245px;
    padding: 40px 0px;
}

.hero__second-right {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 795px;
    padding-right: 70px;
}

.hero__second-right::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 167px;
    background-color: var(--second-color);
    top: 1px;
    right: 0;
}

.hero__second-title {
    /* font-size: 40px !important; */
    font-size: clamp(0.938rem, 0.491rem + 2.23vw, 2.5rem);
    color: var(--main-color);
    text-transform: uppercase;
}

.hero__second-descr {
    color: var(--second-color);
    margin-top: 15px;
}

.hero__second-left {
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.hero__second-left-descr {
    max-width: 570px;
    color: var(--second-color);
}

/* Hero */


/* advantages */

.advantages {
    background-color: #FFFFFF;
    background-image: url(../assets/icons/advantages-bg.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* padding: 65px 0 65px 0; */
    padding: 65px 0 0 0;
}

.advantages__title {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.advantages__title span {
    color: var(--main-color);
}

.advantages__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 24px;
    align-items: stretch;
    margin-top: 50px;
}

.advantages__item {
    width: calc(30% + 24px);
    flex-grow: 1;
    border-radius: 35px;
    transition: all .5s;
    padding: 40px 30px;
}

.advantages__item:hover .advantages__item-title,
.advantages__item:hover .advantages__item-descr {
    color: #FFFFFF;
}

.advantages__item:hover .advantages__item-icon {
    stroke: #FFFFFF;
}

.advantages__item-2:hover .advantages__item-icon g {
    stroke: #FFFFFF;
}

.advantages__item-6:hover .advantages__item-icon path {
    stroke: none;
    fill: #FFFFFF;
}

.advantages__item:not(.advantages__item-4) {
    background-color: #E0E0E0;
}

.advantages__item:hover:not(.advantages__item-4) {
    background-color: var(--main-color);
}

.advantages2 .advantages__item-4 {
    padding: 0;
}

.advantages2 .advantages__item-4 h2 {
    color: var(--main-color);
}

.advantages__item-4 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 0;
}

.advantages__item-4 h2 {
    /* font-size: 52px; */
    /* font-size: clamp(2.25rem, 1.917rem + 1.48vw, 3.25rem); */
    font-size: clamp(2.25rem, 1.875rem + 1.67vw, 3.375rem);
    font-weight: 700;
    line-height: 120%;
    color: var(--main-color);
}

.advantages__item-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto;
}

.advantages__item-title {
    /* font-size: 20px; */
    font-size: clamp(1.063rem, 0.42rem + 1.34vw, 1.25rem);
    font-weight: 700;
    color: #1E1E1E;
    text-align: center;
    margin-top: 24px;
}

.advantages__item-descr {
    font-size: 15px;
    font-weight: 400;
    color: #1E1E1E;
    text-align: center;
    text-wrap: pretty;
    margin-top: 24px;
}

/* advantages */

/* Experts */

.experts {
    position: relative;
    overflow: hidden;
    padding: 160px 0 160px 0;
}

.experts-circles::before {
    position: absolute;
    content: "";
    background-image: url(../assets/icons/Ellipse-1.svg);
    background-repeat: no-repeat;
    width: 760px;
    height: 760px;
    -webkit-transform: rotate(14deg);
    -ms-transform: rotate(14deg);
    transform: rotate(14deg);
    top: -14px;
    left: 0;
    z-index: -1;
}

.experts-circles::after {
    position: absolute;
    content: "";
    background-image: url(../assets/icons/Ellipse-2.svg);
    background-repeat: no-repeat;
    width: 760px;
    height: 760px;
    -webkit-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    transform: rotate(2deg);
    bottom: -374px;
    right: -123px;
    z-index: -1;
}

.expert-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* align-items: flex-start; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: 716px;
    gap: 45px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 23.2px -1px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 23.2px -1px rgba(0, 0, 0, 0.25);
    border-radius: 90px;
    padding: 44px 64px 44px 47px;
}

.expert-card__subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-top: 15px;
}

.expert-card__items {
    max-width: 680px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin-top: 20px;
}

.expert-card__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.expert-card__item-text {
    font-size: 20px;
    font-weight: 400;
}

.expert-card__item-img {
    width: 102px;
    height: 78px;
}

.expert-card__left {
    width: 100%;
    max-width: 574px;
}

.expert-card__img {
    position: relative;
}

.expert-card__img img {
    border-radius: 60px;
}

.expert-card__info {
    position: relative;
    width: 100%;
    bottom: 150px;
    left: 0px;
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85), transparent);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), to(transparent));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 27px 0px 50px 27px;
}

.expert-card__img,
.expert-card__img img {
    width: 100%;
    height: 593px;
    border-radius: 40px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

.expert-card__info-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--second-color);
}

.expert-card__info-post {
    font-size: 16px;
    font-weight: 300;
    color: var(--second-color);
}

.expert-card__right-descr {
    max-width: 722px;
    margin-top: 15px;
}

.expert-card__btn {
    margin-top: 31px;
}

/* Experts */

/* Documents */

.documents {
    background-color: var(--bg-color);
    padding: 160px 0 160px 0;
}

.documents__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 65px;
}

.documents__img {
    height: 856px;
}

.documents__img img {
    border-radius: 87px;
    height: 100%;
}

.documents__info {
    margin-top: 107px;
}

.documents__info-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--second-color);
}

.documents__list {
    max-width: 735px;
    list-style-type: decimal;
    padding-left: 30px;
    margin-top: 15px;
}

.documents__list li {
    font-size: 24px;
    font-weight: 400;
    color: var(--second-color);
    margin-bottom: 18px;
}

.documents__btn {
    margin-top: 35px;
}

/* Documents */

/* Contacts */

.contacts {
    padding: 65px 0 65px 0;
}

.contacts__title {
    position: relative;
    padding-left: 50px;
}

.contacts__title::before {
    position: absolute;
    content: "";
    background-image: url(../assets/icons/contacts-title-icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.contacts__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
}

.contacts__block {
    position: relative;
    width: 45%;
}

.contacts__block-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contacts__block-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 50px;
}

.contacts__block-item:not(:last-child) {
    margin-bottom: 30px;
}

.contacts__block-item.first {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contacts__block-item.first .contacts__block-item-tels {
    position: relative;
    padding: 0px 0px 3px 0px;
}

.contacts__block-item-tels {
    width: 100%;
    max-width: 195px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.contacts__block-item-tels a {
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
}

.contacts__block-item-tels a:hover {
    text-decoration: none;
}

.contacts__block-item-descr {
    font-size: 20px;
    font-weight: 400;
}

.contacts__block-adress {
    position: absolute;
    left: 0;
    bottom: 0;
}

.contacts__block-adress-text {
    max-width: 485px;
    font-size: 20px;
    font-weight: 400;
}

.contacts__block-adress-text span {
    display: block;
    font-size: 15px;
}

/* Contacts */

/* Achievements */

.achievements {
    position: relative;
    background-color: var(--bg-color);
    padding: 160px 0 160px 0;
}

.achievements__item-img {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.achievements__item-img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.achievements__item:nth-child(5) .achievements__item-img:hover rect.white {
    stroke: white;
}

.achievements__item:nth-child(5) .achievements__item-img:hover .white {
    fill: transparent;
}

.achievements__item-img:hover path {
    fill: white;
    stroke: white;
}

.achievements__item-img:hover path circle {
    stroke: white;
}

.achievements__item-img:hover g path {
    stroke: white;
    fill: #FE7401;
}

.achievements__item-img:hover circle {
    stroke: white;
}

.achievements__item-img:hover path rect {
    stroke: white;
}

.achievements__items::after {
    position: absolute;
    content: "";
    background-image: url(../assets/icons/15-1000-circles.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 170px;
    height: 340px;
    top: -27px;
    right: -180px;
}

.achievements__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.achievements__img {
    z-index: 2;
}

.achievements__img img {
    border-radius: 56px;
}

.achievements__items {
    position: relative;
    left: -190px;
    z-index: 3;


    padding-top: 72px;
}

.achievements__items::before {
    position: absolute;
    content: "";
    width: 563px;
    height: 2px;
    background-color: var(--main-color);
    top: 0;
    left: 190px;
}

.achievements__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 21px;
}

.achievements__item:not(:last-child) {
    margin-bottom: 27px;
}

.achievements__item-descr {
    max-width: 478px;
    font-size: clamp(0.875rem, 0.723rem + 0.65vw, 1.5rem);
    font-weight: 300;
    line-height: normal;
    color: var(--second-color);
}

.achievements__item-descr span {
    font-size: clamp(0.875rem, 0.723rem + 0.65vw, 1.5rem);
    font-weight: 600;
}

/* Achievements */

/* company-achievements */

.company-achievements__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
    margin-top: -2px;
}

.company-achievements__descr {
    max-width: 845px;
    /* font-size: 24px; */
    font-size: clamp(0.938rem, 0.801rem + 0.58vw, 1.5rem);
    font-weight: 400;
    line-height: 138%;
}

.company-achievements__list {
    max-width: 850px;
    border-top: 2px solid var(--main-color);
    padding-top: 25px;
    padding-left: 20px;
    margin-top: 25px;
}

.company-achievements__list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 813px;
    min-height: 84px;
    /* font-size: 24px; */
    font-size: clamp(0.938rem, 0.801rem + 0.58vw, 1.5rem);
    font-weight: 400;
    padding-left: 125px;
}

.company-achievements__list li:not(:last-child) {
    margin-bottom: 25px;
}

.company-achievements__list li::before {
    position: absolute;
    content: "";
    width: 101px;
    height: 83px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.company-achievements__list-1::before {
    background-image: url(../assets/icons/89reg.svg);
}

.company-achievements__list-2::before {
    background-image: url(../assets/icons/15let.svg);
}

.company-achievements__list-3::before {
    background-image: url(../assets/icons/arrowTop.svg);
}

.company-achievements__list-4::before {
    background-image: url(../assets/icons/pantheon.svg);
}

.company-achievements__list-5::before {
    background-image: url(../assets/icons/raex.svg);
}

.company-achievements__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

/* company-achievements */

/* team */

.team {
    background-color: var(--bg-color);
    padding: 160px 0 150px 0;
}

.team__title {
    color: var(--second-color);
}

.team__wrapper {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 50px 0 10px 70px;
    margin: 0 auto;
}

.team__wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(to top, var(--bg-color) 1%, transparent 1%), linear-gradient(to right, var(--main-color) 10%, transparent 10%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
    padding: 2px;
}

.team__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 35px;
    margin-top: 51px;
}

.team__item {
    width: 23%;
}

.team__item-img {
    display: block;
    width: 100%;
    min-height: 364px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 57px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.team__item-img-1 {
    background-image: url(../assets/images/team-MarinaBogatova.png);
}

.team__item:hover .team__item-img-1 {
    background-image: url(../assets/images/team-MarinaBogatova-white.png);
}

.team__item-img-2 {
    background-image: url(../assets/images/team-MariyaDyatlova.png);
}

.team__item:hover .team__item-img-2 {
    background-image: url(../assets/images/team-MariyaDyatlova-white.png);
}

.team__item-img-3 {
    background-image: url(../assets/images/team-Dmitrieva.png);
}

.team__item-img-3:hover {
    background-image: url(../assets/images/team-Dmitrieva-white.png);
}

.team__item-img-4 {
    background-image: url(../assets/images/team-VyacheslavMolchanov.png);
}

.team__item:hover .team__item-img-4 {
    background-image: url(../assets/images/team-VyacheslavMolchanov-white.png);
}

.team__item-img-5 {
    background-image: url(../assets/images/team-Sanygina.png);
}

.team__item-img-5:hover {
    background-image: url(../assets/images/team-Sanygina-white.png);
}

.team__item-img-6 {
    background-image: url(../assets/images/team-OlgaStoyka.png);
}

.team__item-img-6:hover {
    background-image: url(../assets/images/team-OlgaStoyka-white.png);
}

.team__item-img-7 {
    background-image: url(../assets/images/team-LudmilaTeterina.png);
}

.team__item-img-7:hover {
    background-image: url(../assets/images/team-LudmilaTeterina-white.png);
}

.team__item-name {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--second-color);
    padding-left: 20px;
    margin-top: 12px;
}

.team__item-post {
    display: block;
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: var(--second-color);
    border-left: 2px solid var(--main-color);
    padding-left: 20px;
    margin-top: 5px;
}

.team__link {
    position: relative;
    height: 100%;
    min-height: 364px;
    background-color: #E5E1D8;
    border-radius: 57px;
    transition: transform 0.3s;
    padding: 35px 36px 35px 36px;
}

.team__link:hover {
    transform: scale(1.05);
}

.team__link-arrow {
    position: absolute;
    width: 43px;
    height: 43px;
    background-repeat: no-repeat;
    background-size: cover;
    right: 36px;
    bottom: 36px;
    transition: transform 0.3s ease;
}

.team__link:hover .team__link-arrow {
    transform: translate(0px, 0px) rotate(45deg);
}

.team__link-num {
    font-size: 89px;
    font-weight: 600;
    color: var(--first-color);
    transition: color 0.3s ease;
}

.team__link-text {
    font-size: 27px;
    font-weight: 700;
    line-height: 37px;
    color: var(--first-color);
    transition: color 0.3s ease;
    margin-top: 10px;
}

.team__link-text span {
    display: block;
    font-size: 23px;
    font-weight: 500;
}

/* team */

/* webinars */

.webinars {
    padding: 160px 0;
}

.webinars__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 50px;
}

.webinars__video {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.webinars__info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.webinars__video video {
    width: 100%;
    border-radius: 60px;
}

.webinars__info-block {
    background-color: var(--main-color);
    border-radius: 53px;
    padding: 50px 65px 50px 65px;
}

.webinars__title {
    font-size: 35px;
    font-weight: 900;
    border-bottom: 1px solid var(--first-color);
}

.webinars__descr {
    font-weight: 900;
    margin-top: 13px;
}

.webinars__list {
    list-style-type: disc;
    padding-left: 78px;
    margin-top: 50px;
}

.webinars__list li {
    font-size: clamp(0.938rem, 0.801rem + 0.58vw, 1.5rem);
    font-weight: 400;
}

.webinars__right {
    max-width: 722px;
    min-height: 222px;
    border-radius: 53px;
    background-color: #6BDEE8;
    text-transform: uppercase;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    padding: 60px 138px 74px 138px;
}

.webinars__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.webinars__btn,
.webinars__link {
    font-size: clamp(0.938rem, 0.824rem + 0.57vw, 1.25rem);
    text-wrap: nowrap;
}

.webinars__btn {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--second-color);
    background-color: var(--main-color);
    border: none;
    border-radius: 20px;
    padding: 17px 47px 17px 47px;
}

.webinars__socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
    margin-top: 55px;
}

.webinars__social {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.webinars__social:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* webinars */

/* services */

.services {
    width: 100%;
    background-color: var(--bg-color);
    padding: 200px 0px 0px 0px;
}

.services__block {
    max-width: 970px;
    background: -o-linear-gradient(right, #FE7401 12.6%, #A3195B 100%);
    background: -webkit-gradient(linear, right top, left top, color-stop(12.6%, #FE7401), to(#A3195B));
    background: linear-gradient(270deg, #FE7401 12.6%, #A3195B 100%);
    border-radius: 49px;
    padding: 30px 10px 30px 10px;
    margin: 0 auto;
}

.services__block-title {
    text-align: center;
    color: var(--second-color);
}

.services__block-subtitle {
    font-size: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem);
    font-weight: 600;
    color: var(--second-color);
    text-align: center;
    margin-top: 10px;
}

.services__block-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin-top: 75px;
}

.services__block-item {
    font-size: clamp(0.75rem, 0.629rem + 0.52vw, 1.25rem);
    font-weight: 600;
    color: var(--second-color);
}

.services__block-item:not(:last-child) {
    border-right: 1px solid var(--second-color);
    padding-right: 15px;
}

.services__items {
    max-width: 970px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
    margin: 20px auto;
    margin-bottom: 0;
}

.services__item {
    width: 100%;
    max-width: 302px;
    font-size: 20px;
    font-weight: 600;
    color: var(--second-color);
    text-transform: uppercase;
    text-align: center;
    background-color: var(--main-color);
    border-radius: 28px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 26px 0 26px 0;
}

.services__item:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

/* services */

/* tariffs */

.tariffs {
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    padding: 65px 0 65px 0;
}

.tariffs__title {
    font-weight: 700;
    text-align: center;
    color: #000000;
}

.tariffs__tabs {
    width: 100%;
    max-width: 560px;
    display: flex;
    background-color: #F2F2F2;
    border-radius: 9px;
    margin: 35px auto;
    margin-bottom: 0;
}

.tariffs__tabs-btn {
    display: block;
    width: 100%;
    max-width: 280px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    background-color: #F2F2F2;
    border: none;
    border-radius: 9px;
    padding: 15px 53px;
}

.tariffs__tabs-btn:focus,
.tariffs__tabs-btn:focus-visible {
    outline: none;
}

.tariffs__tabs-btn.tariffs__tabs-btn--active {
    color: #FFFFFF;
    background-color: #F28C28;
    border-radius: 9px;
}

.tariffs__slider.swiper {
    position: absolute;
}

.tariffs .tariffs__slider {
    position: absolute;
    width: 100%;
    min-height: 757px;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
}

.tariffs__slider.tariffs__slider--active {
    visibility: visible;
    opacity: 1;
    position: static;
    z-index: 2;
}

.tariffs__items {
    display: flex;
    margin-top: 45px;
}

.tariffs__item {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    background-color: #F2F2F2;
    border-radius: 28px;
    padding: 60px 34px;
}

.tariffs__item.swiper-slide {
    display: flex;
}

.tariffs .tariffs__item.main {
    background-color: #A3195B;
    transform: scale(1.03);
}

.tariffs__item-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 120%;
    color: #1E1E1E;
}

.tariffs__item.main .tariffs__item-title {
    color: #FFFFFF;
}

.tariffs__item-price {
    font-size: 16px;
    font-weight: 600;
    color: #A3195B;
    margin-top: 12px;
}

.tariffs__item.main .tariffs__item-price {
    color: #FFFFFF;
}

.tariffs__item-descr {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #636363;
    margin-top: 30px;
}

.tariffs__item.main .tariffs__item-descr {
    color: #EBEBEB;
}

.tariffs__item-list {
    margin-top: 30px;
}

.tariffs__item-list li {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    color: #1E1E1E;
    text-wrap: balance;
    padding-left: 20px;
}

.tariffs__item-list li span {
    font-weight: bold;
}

.tariffs__item.main .tariffs__item-list li {
    color: #FFFFFF;
}

.tariffs__item-list li {
    margin-bottom: 20px;
}

.tariffs__item-list li::before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: #F28C28;
    border-radius: 50%;
    top: 3.3px;
    left: 0;
}

.tariffs__item-btn {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: #F28C28;
    border: none;
    border-radius: 10px;
    padding: 16px 57px;
    margin-top: auto;
}

.tariffs__slider-pagination {
    width: max-content !important;
    margin: 24px auto;
    margin-bottom: 0;
}

.tariffs__slider-pagination .swiper-pagination-bullet-active {
    background-color: #F28C28;
}

.tariffs__kp {
    width: 100%;
    max-width: 400px;
    display: block;
    background-color: #F28C28;
    border: none;
    border-radius: 38px;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    padding: 15px;
    margin: 60px auto;
    margin-bottom: 0;
}

/* tariffs */

/* Media */

@media(max-width: 1536px) {

    .modal {
        max-width: 400px;
    }

    .modal__top::before {
        width: 291px;
        height: 329.5px;
    }

    .modal__top-title {
        font-size: 27px;
        line-height: 19px;
        margin-top: 119px;
    }

    .modal__top-title span {
        font-size: 19px;
    }

    .modal__top-block {
        padding: 10px 25px;
    }

    .modal__top-block p {
        font-size: 16px;
        line-height: 18px;
    }

    .modal__top-name {
        font-size: 17px;
        margin-top: 40px;
    }

    .modal__bottom {
        padding: 30px 0px 30px 0px;
    }

    .modal__bottom-btn {
        font-size: 18px;
        /* padding: 12px 20px; */
    }

    .modal__bottom-text {
        font-size: 19px;
    }

    .modal__bottom-socials-link img {
        width: 35px;
        height: 35px;
    }

    .tariffs__slider {
        min-height: 629px;
    }

    .tariffs__item {
        min-height: 575px;
        padding: 35px;
    }

    .more-details {
        height: 550px;
        border-radius: 15px;
        padding: 40px 50px;
    }

    .more-details__title {
        font-size: 30px;
    }

    .more-details__price {
        font-size: 21px;
        margin-top: 8px;
    }

    .more-details__descr {
        margin-top: 10px;
    }

    .more-details__list li,
    .sub-list li {
        font-size: 13px;
    }

    .simplebar-scrollbar::before {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .advantages__item {
        padding: 25px 30px 25px 30px;
    }

    .advantages__item-icon {
        width: 60px;
        height: 60px;
    }

    .advantages__item-title,
    .advantages__item-descr {
        margin-top: 20px;
    }

}

@media(max-width: 1440px) {

    /* .modal {
        max-width: 450px;
        min-height: auto;
    }

    .modal__subtitle {
        font-size: 25px;
    }

    .modal__descr {
        font-size: 17px;
        margin-top: 50px;
    }

    .modal__form-input {
        height: 60px;
        font-size: 17px;
    }

    .modal__form-btn {
        font-size: 17px;
        height: 60px;
    }

    .modal__bottom {
        padding: 0 60px 60px 60px;
    }

    .modal__form-kp {
        font-size: 18px;
    } */

    .hero {
        background-size: 100% 69%;
    }

    .hero__first-descr {
        max-width: 490px;
    }

    .hero__first::before {
        background-position: 65% 50%;
    }

    .expert-card {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .expert-card__left {
        max-width: 400px;
        height: 495px;
    }

    .expert-card__img,
    .expert-card__img img {
        height: 100%;
    }

    .expert-card__img img {
        -o-object-fit: cover;
        object-fit: cover;
    }

    .expert-card__item-img {
        width: 60px;
        height: 60px;
    }

    .expert-card__subtitle,
    .expert-card__items {
        margin-top: 10px;
    }

    .expert-card__item-text {
        font-size: 17px;
    }

    .expert-card__items {
        max-width: 580px;
    }

    .expert-card__btn {
        margin-top: 35px;
    }

    .documents__img {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 35%;
        height: 665px;
    }

    .documents__info {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .documents__wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .documents__img img {
        -o-object-fit: cover;
        object-fit: cover;
        margin: 0 auto;
    }

    .documents__list li {
        font-size: 20px;
    }

    .documents__info {
        margin-top: 0;
    }

    .documents__info-title {
        font-size: clamp(0.938rem, 0.519rem + 1.78vw, 2.125rem);
    }

    .documents__list li {
        font-size: clamp(0.813rem, 0.658rem + 0.66vw, 1.25rem);
    }

    .contacts__block-item {
        gap: 19px;
    }

    .achievements__img {
        max-width: 493px;
    }

    .achievements__items::after {
        top: -27px;
        right: -135px;
        z-index: -1;
    }

    .achievements__items::before {
        width: 83%;
        left: 135px;
    }

    .achievements__items {
        left: -135px;
        padding-top: 60px;
    }

    .achievements__item:not(:last-child) {
        margin-bottom: 5px;
    }

    .achievements__item-img {
        width: 100%;
        max-width: 208px;
    }

    .company-achievements__descr {
        font-size: 18px;
    }

    .company-achievements__list li {
        font-size: 18px;
    }

    .company-achievements__list li::before {
        width: 95px;
        height: 77px;
    }

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

    .company-achievements__img img {
        max-width: 460px;
        min-height: 315px;
    }

    .company-achievements__info {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .team__items {
        column-gap: 50px;
    }

    .team__item {
        width: calc(34.6% - 50px);
    }

    .team__item-img {
        width: 100%;
        min-height: 364px;
        background-position: top;
    }

    .webinars__video {
        max-width: 650px;
    }

    .webinars__btn,
    .webinars__link {
        font-size: clamp(0.813rem, 0.746rem + 0.28vw, 1rem);
    }

    .tariffs .tariffs__slider {
        min-height: 785px;
    }

    .tariffs__item-list {
        margin-top: 20px;
    }

    .more-details__list li::before,
    .sub-list li::before {
        top: 3.6px;
    }

    .services {
        padding: 180px 0 0 0;
    }

    .advantages__item-title {
        font-size: 18px;
    }

}

@media(max-width: 1336px) {

    .hero__first::before {
        background-position: 75% 50%;
    }

    .hero__first-descr {
        max-width: 370px;
    }

    .advantages__item-4 {
        order: 1;
    }

    .advantages__item-1 {
        order: 2;
    }

    .advantages__item-2 {
        order: 3;
    }

    .advantages__item-3 {
        order: 4;
    }

    .advantages__item-5 {
        order: 5;
    }

    .advantages__item-6 {
        order: 6;
    }

    .advantages__item-7 {
        order: 7;
    }

    .advantages__item-8 {
        order: 8;
    }

}

@media(max-width: 1200px) {

    .expert-card__subtitle {
        font-size: 20px;
    }

    .expert-card__item {
        gap: 15px;
    }

    .expert-card__item-text {
        font-size: 15px;
    }

    .expert-card__item-img {
        width: 50px;
        height: 50px;
    }

    .expert-card__left {
        height: 445px;
    }

    .achievements__items::after {
        display: none;
    }

    .achievements__items {
        left: -100px;
    }

    .achievements__items::before {
        left: 100px;
    }

    .company-achievements__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .company-achievements__img {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .contacts__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 50px;
    }

    .contacts__block-item {
        gap: 50px;
    }

    .team__item {
        width: calc(34.9% - 50px);
    }

    .team__item-img {
        min-height: 336px;
    }

    .team__link {
        padding: 25px 25px 25px 25px;
    }

    .team__link-arrow {
        right: 30px;
        bottom: 30px;
    }

    .team__link {
        min-height: 336px;
    }

    .webinars__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .contacts__block {
        width: 100%;
    }

    .contacts__block-adress {
        position: relative;
        margin-top: 50px;
    }

    .webinars__video {
        max-width: 100%;
    }

    .webinars__btns {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .webinars__btns .webinars__btn,
    .webinars__btns .webinars__link {
        font-size: clamp(0.938rem, 0.824rem + 0.57vw, 1.25rem);
    }

}

@media(max-width: 1024px) {

    /* .modal__subtitle {
        font-size: 15px;
    }

    .modal__close {
        top: 28px;
        right: 22px;
        height: 25px;
    }

    .modal__form {
        margin-top: 25px;
        gap: 20px;
    }

    .modal__form-input {
        height: 50px;
    }

    .modal__form-btn {
        height: 50px;
        padding: 0;
    }

    .modal__form-kp {
        font-size: 13px;
    } */

    .hero {
        background-size: 100% 50%;
    }

    .hero__first {
        min-height: 463px;
    }


    .hero {
        min-height: -webkit-max-content;
        min-height: -moz-max-content;
        min-height: max-content;
        background-size: 100% 60%;
        padding-bottom: 160px;
    }

    .team__items {
        column-gap: 50px;
    }

    .team__item {
        width: calc(52.8% - 50px);
    }

    .team__item-img {
        background-position: 50% 0%;
    }

    .expert-card {
        padding: 35px 45px 35px 45px;
    }

    .expert-card__btn {
        margin-top: 23px;
    }

}

@media(max-width: 992px) {

    .experts,
    .achievements,
    .documents,
    .team,
    .webinars {
        padding: 100px 0 100px 0;
    }

    .hero__first::before {
        width: 100%;
        /* height: 100%; */
        background-image: url(../assets/images/hero-bg-tablet.png);
        background-position: center;
        background-size: contain;
    }

    .services {
        padding: 100px 0 0 0;
    }

    .btn {
        font-size: clamp(0.75rem, 0.72rem + 0.13vw, 0.875rem);
        padding: 15px 40px 15px 40px;
    }

    .case {
        width: 85px;
        height: 75px;
        font-size: 17px;
    }

    .case span {
        font-size: 21px;
    }

    .case__descr {
        font-size: 17px;
    }

    .hero {
        padding-bottom: 105px;
    }

    .hero__first::before {
        top: 50px;
        background-position: 80% 50%;
    }

    .hero__first-btn {
        bottom: 55px;
    }

    .expert-card {
        max-height: -webkit-max-content;
        max-height: -moz-max-content;
        max-height: max-content;
        gap: 30px;
        padding: 42px 45px 42px 45px;
    }

    .expert-card__right-title {
        font-size: 20px;
    }

    .expert-card__subtitle {
        font-size: 16px;
    }

    .expert-card__left {
        max-width: 230px;
        height: 340px;
    }

    .expert-card__info {
        bottom: 123px;
    }

    .expert-card__info-name {
        font-size: 15px;
    }

    .expert-card__info-post {
        font-size: 12px;
    }

    .experts-circles::after,
    .experts-circles::before {
        display: none;
    }

    .tag {
        font-size: 16px;
    }

    .company-achievements__img {
        width: 100%;
        height: 300px;
    }

    .company-achievements__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .company-achievements__img img {
        display: block;
        width: 48%;
        height: 315px;
        -o-object-fit: cover;
        object-fit: cover;
    }


    .documents__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .documents__img {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
        width: 100%;
        height: 300px;
    }

    .documents__img img {
        width: 100%;
    }

    .achievements__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .achievements__img {
        width: 100%;
        max-width: 100%;
        height: 300px;
    }

    .achievements__img img {
        width: 100%;
        height: 100%;
    }

    .achievements__items::before {
        display: none;
    }

    .achievements__items {
        left: 0;
    }

    .achievements__item-descr {
        max-width: 300px;
        font-size: 14px;
    }

    .achievements__item-descr span {
        font-size: 16px;
    }

    .team__wrapper {
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
        padding: 0 50px 0 50px;
    }

    .team__items {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        gap: 35px;
    }

    .team__item {
        width: calc(52% - 35px);
    }

    .team__item-img {
        width: 100%;
    }

    .team__wrapper::before {
        display: none;
    }

    .team__link {
        padding: 35px 36px 35px 36px;
    }

    .team__link-arrow {
        right: 36px;
        bottom: 36px;
    }

    .services__items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .tariffs .tariffs__slider {
        min-height: unset;
    }

    .advantages__item:not(.advantages__item-4) {
        padding: 20px;
    }

    .advantages__item-4 {
        padding-bottom: 10px;
    }

}

@media(max-width: 768px) {

    .container {
        padding: 0 15px 0 15px;
    }

    .hero {
        background-size: 100% 53%;
    }

    .hero__first {
        min-height: 369px;
    }

    .hero__first-info {
        float: left;
    }

    .hero__first-descr {
        width: 100%;
        max-width: 303px;
    }

    .hero__second-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .hero__second-title {
        text-wrap: nowrap;
    }

    .hero__second-left {
        padding-left: 0;
    }

    .hero__second-left-descr {
        margin-top: 5px;
    }

    .hero__second-right::after {
        width: 164px;
        height: 2px;
        top: 35px;
        bottom: 0;
        left: 0;
    }

    .hero__second-descr {
        padding-bottom: 20px;
    }

    .circles-wrapper {
        background-image: none;
    }

    .expert-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 590px;
        border-radius: 50px;
        padding: 20px 30px 20px 30px;
        margin: 0 auto;
    }

    .expert-card__img img {
        border-radius: 40px;
    }

    .expert-card__left {
        max-width: 265px;
        height: 290px;
    }

    .company-achievements__wrapper {
        padding: 0;
    }

    .company-achievements__img {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: -webkit-max-content;
        height: -moz-max-content;
        height: max-content;
    }

    .company-achievements__img img {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 490px;
    }

    .contacts__block-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .contacts__block-item:not(:last-child) {
        border-bottom: 1px solid black;
        padding-bottom: 15px;
    }

    .contacts__block-item.first {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .contacts__block-item.first .contacts__block-item-tels::after {
        display: none;
    }

    .contacts__block-title {
        font-size: clamp(0.813rem, 0.395rem + 1.78vw, 1.25rem);
    }

    .contacts__block-item-descr,
    .contacts__block-item-tels a,
    .contacts__block-adress-text,
    .contacts__block-email a {
        font-size: clamp(0.813rem, 0.574rem + 1.02vw, 1.063rem);
    }

    .contacts__block-adress-text span {
        font-size: 10px;
    }

    .webinars__btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .achievements__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .achievements__item:not(:last-child) {
        margin-bottom: 25px;
    }

    .achievements__item-img {
        display: block;
        width: 50%;
        border-top: 1px solid #FE7401;
        padding-top: 20px;
    }

    .achievements__item-descr {
        text-align: center;
    }

    .achievements__item-img {
        width: 54%
    }

    .team__item {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        width: 261px;
    }

    .services__block-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 50px;
    }

    .services__block-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--second-color);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .tag {
        font-size: 18px;
        text-align: unset;
    }

    .more-details {
        height: 450px;
        top: calc(50% + 57.5px);
    }

    .more-details__close {
        position: absolute;
        display: block;
    }

    .more-details__close svg {
        width: 100%;
        height: 100%;
    }

    .simplebar-scrollbar::before {
        height: 40px;
        margin-top: 80px !important;
        margin-bottom: 30px !important;
    }

    .advantages__items {
        flex-direction: column;
    }

    .advantages__item {
        width: 100%;
    }

    .advantages__item-4 h2 {
        text-align: center;
    }

    .advantages__item-4 h2 br {
        display: none;
    }

}

@media(max-width: 602px) {
    /* modal */

    .modal {
        max-width: 370px;
        top: calc(50% + 58.5px);
    }

    .modal__top .modal__wrapper {
        padding: 0 23px;
    }

    .modal__top-close {
        display: block;
    }

    .modal__top-title {
        font-size: 28px;
        margin-top: 120px;
    }

    .modal__top-block {
        padding: 10px 20px 10px 20px;
    }

    .modal__top-block p {
        font-size: 16px;
    }

    .modal__top::before {
        width: 250px;
        height: 294px;
        top: 15px;
    }

    .modal__top-name {
        font-size: 16px;
        margin-top: 5px;
    }

    .modal__bottom {
        padding: 23px 0px 23px 0px;
    }

    .modal__bottom-btn {
        width: 100%;
        font-size: 16px;
        padding: 15px 20px;
    }

    .modal__bottom-text {
        font-size: 17px;
    }

    /* modal */

    .hero__first::before {
        background-size: cover;
    }
    
}

@media(max-width: 430px) {

    .modal__top-title {
        font-size: 25px;
        line-height: 19px;
    }

    .modal__top-title span {
        font-size: 18px;
    }

    .modal__top::before {
        height: 292px;
    }

    .modal__top-name {
        margin-top: 5px;
    }

    .modal__bottom {
        padding: 30px 0px 30px 0px;
    }

    .modal__bottom-btn {
        width: 85%;
    }

    .modal__bottom-text {
        margin-top: 15px;
    }

    .experts,
    .documents,
    .achievements,
    .team,
    .webinars {
        padding: 50px 0 50px 0;
    }

    .services {
        padding: 50px 0 0 0;
    }

    .descr {
        font-size: 13px;
    }

    .btn {
        padding: 10px 30px 10px 30px;
    }

    .case {
        width: 82px;
        height: 58px;
        font-size: 13px;
        padding: 11px 5px 11px 5px;
    }

    .cases__block {
        gap: 10px;
    }

    .case__block {
        gap: 10px;
    }

    .case__descr {
        font-size: 12px;
        line-height: normal;
    }

    .case span {
        font-size: 15px;
    }

    .hero {
        background-size: 150% 55%;
        padding-bottom: 53px;
    }

    .hero__first {
        background: unset;
    }

    .hero__first-wrapper {
        min-height: 593px;
    }

    .hero__first::before {
        background: url(../assets/images/hero-bg-mob.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 596px;
        left: 0px;
        top: 0px;
    }

    .hero__first {
        min-height: 335px;
        padding: 0 10px;
    }

    .hero__second {
        gap: 15px;
        background-color: #000000;
        padding: 0 10px;
    }

    .hero__second-wrapper {
        gap: 0;
    }

    .hero__second-right {
        padding-right: 0;
    }

    .hero__second-title {
        max-width: 215px;
        text-align: center;
        text-wrap: wrap;
        margin: 0 auto;
        margin-bottom: 35px;
    }

    .hero__second-left-descr {
        text-align: center;
        line-height: 133%;
        margin-top: 30px;
    }

    .hero__second-right::after {
        width: 100%;
        top: 75px;
    }

    .hero__first-btn {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        border-radius: 25px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 50px;
        padding: 12px 24px !important;
    }

    .hero__first-btn.btn:hover {
        transform: translateX(-50%);
        left: 50%;
    }

    .expert-card__subtitle {
        font-size: 13px;
    }

    .expert-card__left {
        max-width: 100%;
        height: 260px;
    }

    .expert-card__items {
        gap: 0;
    }

    .expert-card__item-text {
        font-size: 11px;
    }

    .expert-card__right-title {
        font-size: 18px;
    }

    .expert-card__info-post {
        font-weight: 500;
    }

    .expert-card__img img {
        width: 100%;
        -o-object-position: top;
        object-position: top;
    }

    .expert-card__info {
        bottom: 110px;
    }

    #development .expert-card__info-post {
        font-size: 10px;
    }

    .expert-card__right-descr {
        margin-top: 20px;
    }

    .expert-card__btn {
        margin-top: 20px;
    }

    .team__item-img {
        width: 100%;
    }

    .tags {
        gap: 5px;
        margin-top: 20px;
    }

    .tag {
        font-size: 12px;
    }

    .company-achievements__descr {
        font-size: clamp(0.938rem, 0.801rem + 0.58vw, 1.5rem);
    }

    .company-achievements__list li {
        min-height: 53px;
        font-size: 12px;
        padding-left: 85px;
        margin-bottom: 10px;
    }

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

    .company-achievements__list li::before {
        width: 65px;
        height: 54px;
    }

    .documents__img {
        height: 260px;
    }

    .documents__img img {
        border-radius: 50px;
    }

    .documents__wrapper {
        gap: 53px;
    }

    .documents__list {
        padding-left: 15px;
    }

    .contacts__wrapper {
        gap: 35px;
    }

    .contacts__block-adress {
        margin-top: 35px;
    }

    .team__title {
        text-align: center;
    }

    .team__wrapper {
        padding: 0;
    }

    .team__items {
        padding: 0px 30px 0px 30px;
    }

    .team__item-name {
        font-size: 17px;
    }

    .team__item-post {
        font-size: 14px;
    }

    .team__item .team__item-img-1.active {
        background-image: url(../assets/images/team-MarinaBogatova-white.png) !important;
    }

    .team__item .team__item-img-2.active {
        background-image: url(../assets/images/team-MariyaDyatlova-white.png) !important;
    }

    .team__item .team__item-img-3.active {
        background-image: url(../assets/images/team-AlinaZudova-white.png) !important;
    }

    .team__item .team__item-img-4.active {
        background-image: url(../assets/images/team-VyacheslavMolchanov-white.png) !important;
    }

    .team__item .team__item-img-5.active {
        background-image: url(../assets/images/team-Sanygina-white.png) !important;
    }

    .team__link-text {
        margin-top: 0;
    }

    .team__link:hover {
        transform: unset;
    }

    .webinars__list {
        padding-left: 24px;
    }

    .webinars__wrapper {
        gap: 53px;
    }

    .webinars__btn {
        padding: 10px 30px 10px 30px;
    }

    .webinars__btns {
        gap: 15px;
    }

    .services__block-items {
        margin-top: 30px;
    }

    .services__items {
        -webkit-column-gap: 13px;
        -moz-column-gap: 13px;
        column-gap: 13px;
        row-gap: 15px;
        margin-top: 30px;
    }

    .services__item {
        width: 48%;
        max-width: 312px;
        font-size: 14px;
        padding: 12px 0 12px 0;
    }

    .services__block-item:not(:last-child) {
        padding-bottom: 10px;
    }

    .tariffs__tabs-btn {
        padding: 15px 5px;
    }

    .tariffs__item {
        min-height: 450px;
        border-radius: 15px;
        padding: 20px;
    }

    .tariffs__item-descr {
        margin-top: 20px;
    }

    .tariffs__item-btn {
        padding: 10px 15px;
    }

    .tariffs__kp {
        max-width: 300px;
        font-size: 16px;
        margin: 40px auto;
        margin-bottom: 0;
    }

    .more-details {
        height: 450px;
        padding: 20px;
        max-width: 350px;
    }

    .more-details__title {
        font-size: 18px;
    }

    .more-details__price {
        font-size: 14px;
        margin-top: 5px;
    }

    .more-details__descr {
        font-size: 13px;
        margin-top: 10px;
    }

    .more-details__subtitle {
        font-size: 16px;
    }

    .more-details__list li,
    .sub-list li {
        font-size: 13px;
    }

    .more-details__list li,
    .sub-list li {
        padding-left: 15px;
    }

    .more-details__list li::before,
    .sub-list li::before {
        width: 8px;
        height: 8px;
    }

    .sub-list {
        padding-left: 0;
    }

    .sub-list li::before {
        width: 6px;
        height: 6px;
        top: 6px;
    }

    .sub-list li {
        padding-left: 12px;
    }

    .advantages {
        padding: 0 0 50px 0;
    }

    .advantages .container {
        padding: 0 15px;
    }

    .advantages__title {
        font-size: 26px;
    }

    .advantages__item-title {
        font-size: 20px;
    }

    .advantages__item-descr {
        font-size: 15px;
        text-wrap: balance;
    }

    .company-achievements__img img {
        height: auto;
        min-height: auto;
    }

    .advantages__item:not(.advantages__item-4) {
        padding: 20px;
    }

    .advantages__item-4 {
        padding: 0;
    }

    .advantages__item-4 h2 br {
        display: block;
    }

}

@media(max-width: 393px) {

    .expert-card__right-title {
        font-size: 16px;
    }

    .tags {
        gap: 2px;
        margin-top: 20px;
    }

    .tag {
        font-size: 9.3px;
    }

    .team__items {
        padding: 15px;
    }

    .team__link-num {
        line-height: normal;
    }

}

@media(max-width: 375px) {

    .tariffs__tabs-btn {
        font-size: 13px;
    }

    /* .tariffs__kp {
        font-size: 14px;
    } */

}

@media(max-width: 360px) {

    .tariffs__tabs-btn {
        font-size: 12px;
    }

    .more-details {
        max-width: 330px;
    }

}

@media (hover: none) and (pointer: coarse) {

    .btn:hover {
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }

    .achievements__item-img:hover,
    .services__item:hover {
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
    }

    .modal__form-kp a:hover {
        border: 1px solid #171717;
    }

    .webinars__social:hover {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .contacts__block-item-tels a:hover {
        text-decoration: underline;
    }

    .achievements__item:nth-child(5) .achievements__item-img:hover rect.white {
        stroke: black;
    }

    .achievements__item:nth-child(5) .achievements__item-img:hover .white {
        stroke: black;
    }

    .achievements__item-img:hover path {
        fill: black;
        stroke: unset;
    }

    .achievements__item-img:hover path circle {
        stroke: black;
    }

    .achievements__item-img:hover g path {
        stroke: black;
        fill: transparent;
    }

    .achievements__item-img:hover circle {
        stroke: black;
    }

    .achievements__item-img:hover path rect {
        stroke: black;
    }

    .team__item:hover .team__item-img-1 {
        background-image: url(../assets/images/team-MarinaBogatova.png);
    }

    .team__item:hover .team__item-img-2 {
        background-image: url(../assets/images/team-MariyaDyatlova.png);
    }

    .team__item:hover .team__item-img-3 {
        background-image: url(../assets/images/team-AlinaZudova.png);
    }

    .team__item:hover .team__item-img-4 {
        background-image: url(../assets/images/team-VyacheslavMolchanov.png);
    }

    .team__item:hover .team__item-img-5 {
        background-image: url(../assets/images/team-Sanygina.png);
    }

    .advantages__item:hover .advantages__item-title,
    .advantages__item:hover .advantages__item-descr {
        color: #1E1E1E;
    }

    .advantages__item:hover .advantages__item-icon path {
        color: var(--main-color);
    }

    .advantages__item:hover:not(:nth-child(4)) {
        background-color: #E0E0E0;
    }

}