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

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

body {
    background: #dddddd;
}

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

:root {
    --main-color: #1d92dd;
    --secondary-color: #FFFFFF;
    --dark-color: #1e1e1e;

    --bg-border-color: #dddddd;

    --section-padding: 100px 0 100px 0;
}

.title {
    font-size: clamp(1.625rem, 1.097rem + 2.25vw, 3.125rem);
    font-weight: 500;
}

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

.btn {
    position: relative;
    display: block;
    max-width: 315px;
    -ms-flex-line-pack: center;
    align-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    line-height: 19px;
    border: 1px solid var(--main-color);
    border-radius: 2px;
    color: var(--secondary-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: transparent;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    cursor: pointer;
    z-index: 1;
    padding: 15px 23px 15px;
    margin: 0 auto;
    margin-top: 50px;
}

.btn::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: var(--main-color);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: -webkit-transform 150ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
    transition: -webkit-transform 150ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
    -o-transition: transform 150ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
    transition: transform 150ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
    transition: transform 150ms cubic-bezier(0.1, 0.7, 0.6, 0.9), -webkit-transform 150ms cubic-bezier(0.1, 0.7, 0.6, 0.9);
    z-index: -1;
}

.btn:hover::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.btn:hover {
    color: var(--secondary-color);
}

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

@font-face {
    font-family: 'Raleway';
    src:
        url('Raleway-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* modal-banner */

.modal-banner {
    display: none;
    position: fixed;
    width: 100%;
    max-width: 390px;
    border-radius: 30px;
    background-color: var(--secondary-color);
    box-shadow: 0px 0px 8px 1px rgb(13 17 19 / 20%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    padding: 56px 35px 20px 35px;
}

.modal-banner--active {
    display: block;
}

.modal-banner__trigger,
.modal-banner__trigger2 {
    cursor: pointer;
}

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

.modal-banner__close svg {
    width: 30px;
    height: 30px;
}

.modal-banner__img {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    top: -39px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
}

.modal-banner__title {
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

.modal-banner__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);
    color: var(--secondary-color);
    border-radius: 15px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 18px 20px;
    margin: 0px auto;
}

.modal-banner__text {
    font-size: 14px;
    color: #1E1E1E;
    text-align: center;
    margin-top: 20px;
}

.modal-banner__socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.modal-banner__socials a {
    transition: 0.3s;
}

.modal-banner__socials a:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.modal-banner__socials-link img {
    width: 35px;
    height: 35px;
}

/* modal-banner */

/* products */

.products {
    padding: var(--section-padding);
}

.products__title {
    font-size: clamp(1.063rem, 0.722rem + 1.7vw, 2rem);
    font-weight: 500;
    line-height: normal;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.4;
    border-bottom: 2px solid var(--main-color);
    border-top: 2px solid var(--main-color);
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 60px;
}

.products__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
}

.products__item {
    position: relative;
    width: 48%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background: -webkit-gradient(linear, left top, right top, color-stop(27%, rgba(10, 41, 68, 1)), color-stop(49%, rgba(20, 48, 73, 1)), color-stop(91%, rgba(10, 39, 64, 1)));
    background: -o-linear-gradient(left, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background: linear-gradient(90deg, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background-color: #071827;
    overflow: hidden;
    transition: all .3s;
    padding: 0px 47px 35px 50px;
}

.products__item:hover {
    transform: scale(1.02) !important;
}

.products__item-title {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 445px;
    /* font-size: 32px; */
    font-size: clamp(1.063rem, 0.722rem + 1.7vw, 2rem);
    line-height: 36px;
    font-weight: 400;
    color: var(--secondary-color);
    z-index: 2;
    padding-top: 41px;
    margin-bottom: 19px;
}

.products__item-descr {
    position: relative;
    max-width: 435px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    font-size: 16px;
    line-height: 135%;
    color: var(--secondary-color);
    z-index: 2;
    margin-bottom: 16px;
}

.products-arrow-icon {
    position: relative;
    display: block;
    width: 39px;
    height: 21px;
    background-image: url(../assets/icons/arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    float: right;
    color: var(--secondary-color);
    z-index: 2;
    margin-top: 10px;
    margin-left: 14px;
}

.products__item-img {
    position: absolute;
    width: 277px;
    height: 270px;
    -webkit-transform: rotate(285deg);
    -ms-transform: rotate(285deg);
    transform: rotate(285deg);
    right: -40px;
    bottom: -55px;
    background-image: url(../assets/images/abstract-shape.png);

    background-size: cover;
    -webkit-transition: 1s opacity ease;
    -o-transition: 1s opacity ease;
    transition: 1s opacity ease;
    will-change: transform, opacity;
    opacity: 0;
}

.products__item:hover .products__item-img {
    opacity: 0.8;
}

/* Achievements */

.achievements {
    position: relative;
    margin-top: 100px;
}

.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 {
    background: rgb(56, 56, 56);
    background: -webkit-gradient(linear, left top, right top, color-stop(27%, rgba(10, 41, 68, 1)), color-stop(49%, rgba(20, 48, 73, 1)), color-stop(91%, rgba(10, 39, 64, 1)));
    background: -o-linear-gradient(left, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background: linear-gradient(90deg, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    overflow: hidden;
    padding: var(--section-padding);
}

.company-achievements__title {
    font-weight: 600;
    color: var(--secondary-color);
}

.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: 20px;
}

.company-achievements__descr {
    /* max-width: 845px; */
    max-width: 686px;
    font-size: clamp(0.938rem, 0.907rem + 0.13vw, 1.063rem);
    font-weight: 400;
    line-height: 138%;
    color: var(--secondary-color);
    margin-top: 12px;
}

.company-achievements__descr span {
    font-weight: 600;
}

.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: clamp(0.875rem, 0.799rem + 0.32vw, 1.188rem);
    font-weight: 500;
    color: var(--secondary-color);
    padding-left: 125px;
}

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

.company-achievements__list-icon {
    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-icon rect,
.company-achievements__list-icon path {
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.company-achievements__list li:hover .company-achievements__list-icon rect {
    stroke: var(--main-color);
}

.company-achievements__list-4:hover .company-achievements__list-icon path {
    stroke: var(--main-color);
}

.company-achievements__list li:hover .company-achievements__list-icon path {
    fill: var(--main-color);
}

.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__img img {
    border-radius: 15px;
    transition: all .3s;
}

/* company-achievements */

/* team */

.team {
    padding: var(--section-padding);
}

.team__title {
    color: var(--dark-color);
    border-bottom: 2px solid #1d92dd;
    padding-bottom: 19px;
}

.team__descr {
    font-size: clamp(1rem, 0.848rem + 0.65vw, 1.625rem);
    color: var(--dark-color);
    margin-top: 25px;
}

.team__wrapper {
    position: relative;
}

.team__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 35px;
    margin-top: 50px;
}

.team__item {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team__item-img-wrapper {
    border-radius: 15px;
    overflow: hidden;
}

.team__item-img {
    display: block;
    width: 100%;
    height: 275px;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all .3s;
    transition: transform 0.4s ease;
}

.team__item:hover .team__item-img-wrapper {
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.team__item:hover .team__item-img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.team__item-name {
    transition: color 0.3s ease;
}

.team__item:hover .team__item-name {
    color: var(--main-color);
}

.team__item-info {
    border-left: 2px solid var(--main-color);
    padding-left: 20px;
    margin-top: 30px;
}

.team__item-name {
    font-size: clamp(0.938rem, 0.21rem + 3.64vw, 1.188rem);
    font-weight: 600;
    color: var(--dark-color);
    transition: all .3s;
    margin-top: 12px;
}

.team__item-post {
    position: relative;
    font-size: clamp(0.813rem, 0.631rem + 0.91vw, 0.875rem);
    font-weight: 500;
    color: var(--dark-color);
    text-wrap: pretty;
    margin-top: 5px;
}

.team__slider-controls {
    justify-content: end;
    margin-top: 50px;
}

/* team */

/* consultation */

.consultation {
    background: -webkit-gradient(linear, left top, right top, color-stop(27%, rgba(10, 41, 68, 1)), color-stop(49%, rgba(20, 48, 73, 1)), color-stop(91%, rgba(10, 39, 64, 1)));
    background: -o-linear-gradient(left, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background: linear-gradient(90deg, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    padding: var(--section-padding);
}

.consultation__title {
    color: var(--secondary-color);
    font-size: clamp(1.5rem, 1.214rem + 1.22vw, 2.313rem);
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 20px;
}

.consultation__descr {
    max-width: 900px;
    font-size: clamp(1.063rem, 1.04rem + 0.09vw, 1.125rem);
    line-height: 135%;
    color: #EFEFEF;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
}

/* forWho */

.forWho {
    padding: var(--section-padding);
}

.forWho__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.forWho__title {
    color: var(--dark-color);
}

.forWho__items {
    margin-top: 60px;
}

.forWho__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 275px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    background: -webkit-gradient(linear, left top, right top, color-stop(27%, rgba(10, 41, 68, 1)), color-stop(49%, rgba(20, 48, 73, 1)), color-stop(91%, rgba(10, 39, 64, 1)));
    background: -o-linear-gradient(left, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background: linear-gradient(90deg, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background-color: #071827;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .15);
    border-radius: 15px;
    transition: all .3s;
    padding: 20px;
}

.forWho__item::after {
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 20px;
    right: 20px;
}

.forWho__item-1::after {
    background-image: url(../assets/icons/business.svg);
}

.forWho__item-2::after {
    background-image: url(../assets/icons/assets.svg);
}

.forWho__item-3::after {
    background-image: url(../assets/icons/divided.svg);
    width: 90px;
    height: 80px;
}

.forWho__item-4::after {
    background-image: url(../assets/icons/protection.svg);
}

.forWho__item-5::after {
    background-image: url(../assets/icons/structured.svg);
}

.forWho__item-6::after {
    background-image: url(../assets/icons/property.svg);
}

.forWho__item-7::after {
    background-image: url(../assets/icons/parents.svg);
}

.forWho__item-8::after {
    background-image: url(../assets/icons/parents.svg);
}

.forWho__item-9::after {
    background-image: url(../assets/icons/hide.svg);
}

.forWho__item-10::after {
    background-image: url(../assets/icons/civilServant.svg);
}

.forWho__item-num {
    height: 100%;
    font-size: 36px;
    font-weight: 500;
    line-height: 37.8px;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--main-color);
}

.forWho__item-info {
    height: 100%;
    border-left: 1px solid var(--main-color);
    padding-left: 20px;
}

.forWho__item-title {
    /* font-size: 28px; */
    font-size: clamp(0.938rem, 0.801rem + 0.58vw, 1.5rem);
    font-weight: 700;
    line-height: 33.6px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #f7f7f7;
}

.forWho__item-descr {
    max-width: 357px;
    /* font-size: 16px; */
    font-size: clamp(0.875rem, 0.831rem + 0.19vw, 1rem);
    font-weight: 400;
    line-height: 19.2px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #f7f7f7;
    margin-top: 20px;
}

.slider-controls__next,
.slider-controls__prev {
    width: 45px;
    height: 45px;
    border: 2px solid #989797;
    border-radius: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.slider-controls {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider-controls__next:hover,
.slider-controls__prev:hover {
    border: 2px solid var(--main-color);
}

.slider-controls__next:hover path,
.slider-controls__prev:hover path {
    fill: var(--main-color);
}

.slider-controls__next:focus {
    outline: none;
}

.slider-controls .slider-controls__pagination {
    width: auto;
}

.slider-controls__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.slider-controls__pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.contacts {
    background: -webkit-gradient(linear, left top, right top, color-stop(27%, rgba(10, 41, 68, 1)), color-stop(49%, rgba(20, 48, 73, 1)), color-stop(91%, rgba(10, 39, 64, 1)));
    background: -o-linear-gradient(left, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background: linear-gradient(90deg, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    padding: 100px 0 100px 0;
}

.contacts__title {
    color: #f7f7f7;
}

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

.contacts__block-title {
    position: relative;
    font-size: 24px;
    line-height: 29px;
    color: var(--main-color);
    padding-left: 30px;
    margin-bottom: 11px;
}

.contacts__block-title::before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.contacts__block-title-1::before {
    background-image: url(../assets/icons/geo.svg);
}

.contacts__block-title-2::before {
    background-image: url(../assets/icons/tel.svg);
}

.contacts__block-title-3::before {
    background-image: url(../assets/icons/mail.svg);
}

.contacts__block-descr {
    color: var(--secondary-color);
}

/* cases */

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

.cases__title {
    color: var(--dark-color);
}

.cases__items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.cases__item {
    position: relative;
    width: 48.7%;
    min-height: 258px;
    background: linear-gradient(90deg, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background-color: #071827;
    border-radius: 15px;
    padding: 40px;
}

.cases__item::after {
    position: absolute;
    content: "";
    width: 170px;
    height: 170px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    transition: all .3s;
    bottom: 27px;
    right: 40px;
}

.cases__item:hover::after {
    opacity: 1;
}

.cases__item-1::after {
    background-image: url(../assets/icons/cash-icon.svg);
}

.cases__item-2::after {
    background-image: url(../assets/icons/lf.svg);
}

.cases__item-3::after {
    background-image: url(../assets/icons/manage-lf.svg);
    bottom: 39px;
    right: 29px;
}

.cases__item-4::after {
    background-image: url(../assets/icons/nko-icon-hands.svg);
    bottom: -17px;
    right: 39px;
}

.cases__item-title {
    font-weight: 600;
    /* font-size: 55px; */
    font-size: clamp(2.688rem, 2.473rem + 1.07vw, 3.438rem);
    line-height: normal;
    color: var(--main-color);
}

.cases__item-descr {
    max-width: 64%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    /* font-size: 28px; */
    font-size: clamp(1.438rem, 1.348rem + 0.45vw, 1.75rem);
    font-weight: 400;
    margin-top: 25px;
}

/* cases */

/* faq */

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

.faq__title {
    position: relative;
    color: var(--dark-color);
    text-align: center;
}

.faq__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--main-color);
}

.faq__items {
    width: 100%;
    max-width: 960px;
    counter-reset: num;
    margin: 50px auto;
    margin-bottom: 0;
}

.faq__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f7fa;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.faq__item:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq__item--active {
    transform: scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq__item:not(:last-child) {
    margin-bottom: 15px;
}

.faq__item-header {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-color);
    transition: all .3s;
    padding: 20px 20px 20px 65px;
}

.faq__item-header::before {
    position: absolute;
    content: counter(num);
    counter-increment: num;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #FFFFFF;
    background-color: var(--main-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.faq__item-header:hover {
    color: var(--main-color);
}

.faq__item-descr {
    max-height: 0;
    font-size: 16px;
    color: var(--dark-color);
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 69px;
}

.faq__item-descr p {
    margin-bottom: 10px;
}

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

.faq__item-descr p {
    font-size: 16px;
    font-weight: 400;
}

.faq__item--active .faq__item-descr {
    padding: 0px 61px 20px 69px;
}

.faq__item--active .faq__item-header {
    color: var(--main-color);
}

/* faq */

/* info */

.info {
    overflow: hidden;
    padding: 0 0 100px 0;
}

.info__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 200px;
}

.info__num {
    position: absolute;
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    background-color: var(--bg-border-color);
    border: 35px solid var(--bg-border-color);
    border-radius: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.info__num span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 230px;
    background: linear-gradient(90deg, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background-color: #071827;
    border-radius: 100%;
    font-size: 65px;
    font-weight: 700;
    color: var(--main-color);
}

.info__block {
    position: relative;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: linear-gradient(90deg, rgba(10, 41, 68, 1) 27%, rgba(20, 48, 73, 1) 49%, rgba(10, 39, 64, 1) 91%);
    background-color: #071827;
    border-radius: 15px;
}

.info__block-1 {
    padding: 100px 85px 55px 55px;
}

.info__block-1 .info__block-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 40px;
    left: 56px;
}

.info__block-2 {
    padding: 100px 55px 55px 85px;
}

.info__block-2 .info__block-icon {
    position: absolute;
    width: 100px;
    height: 66px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 40px;
    right: 56px;
}

.info__block-icon path {
    transition: all .3s;
}

.info__block:hover .info__block-icon path {
    fill: #FFFFFF;
}

.info__block-title {
    font-size: 35px;
    font-weight: 500;
    line-height: normal;
    color: var(--main-color);
}

.info__block-subtitle {
    font-size: 25px;
    font-weight: 500;
    margin-top: 5px;
}

.info__block-1 .info__block-title,
.info__block-1 .info__block-subtitle {
    text-align: left;
}

.info__block-2 .info__block-title,
.info__block-2 .info__block-subtitle {
    text-align: right;
}

/* info */

/* modal */

.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;
    margin-top: 20px;
}

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

.modal__top-name {
    font-size: 21px;
    font-weight: 500;
    color: #DDDDDD;
    z-index: 1;
    margin-top: 60px;
}

.modal__bottom {
    background-color: #143049;
    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: #DDDDDD;
    padding: 18px 20px;
    margin: 0 auto;
}

.modal__bottom-text {
    font-size: 22px;
    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 */

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: transparent;
}

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

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

.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;
    }
}

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

.overlay--active {
    display: block;
    z-index: 2;
}

@media(max-width: 1536px) {

    .modal {
        max-width: 400px;
    }

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

    .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;
    }

}

@media(max-width: 1536px) {

    .services__item {
        padding: 30px 40px;
    }

    .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: 7px;
    }

    .company-achievements__list-icon {
        width: 85px;
        height: auto;
    }

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

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

}

@media(max-width: 1200px) {

    .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;
    }

    .company-achievements__title {
        text-align: center;
    }

    .company-achievements__wrapper {
        margin-top: 50px;
    }

}

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

@media(max-width: 992px) {

    .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;
    }

    .team__item-img {
        height: 250px;
    }

    .info__wrapper {
        flex-direction: column;
        padding-top: 35px;
    }

    .info__block {
        display: block;
        width: 100%;
        justify-content: flex-start;
    }

    .info__block-1 {
        padding: 60px 45px 85px 60px;
    }

    .info__block-2 {
        padding: 85px 45px 60px 60px;
    }

    .info__block-1,
    .info__block-2 {
        min-height: 273px;
    }

    .info__block-1 .info__block-icon {
        width: 130px;
        height: 145px;
        top: 72px;
        right: 46px;
        left: unset;
    }

    .info__block-2 .info__block-icon {
        width: 165px;
        height: 108px;
        top: 100px;
        right: 45px;
    }

    .info__block-title {
        font-size: clamp(1.938rem, 1.807rem + 0.61vw, 2.188rem);
    }

    .info__block-2 .info__block-title,
    .info__block-2 .info__block-subtitle {
        text-align: start;
    }

    .info__block-2 .info__block-title {
        max-width: 220px;
    }

    .info__num {
        width: 180px;
        height: 180px;
        top: 39%;
        border: 20px solid var(--bg-border-color);
    }

    .info__num span {
        width: 135px;
        height: 135px;
        font-size: 50px;
    }

}

@media(max-width: 768px) {

    .products__item:hover .products__item-img,
    .products__item-img {
        opacity: 0.5;
    }

    .company-achievements {
        padding: 60px 0;
        margin-top: 0;
    }

    .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;
    }

    .company-achievements__img {
        padding: 0 50px 0px 50px;
    }

    .company-achievements__img img {
        max-height: 375px;
    }

    .info__block-1 {
        padding: 60px 177px 85px 45px;
    }

    .info__block-2 {
        padding: 85px 216px 60px 45px;
    }

    /* modal */

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

    .modal-banner__close {
        display: block;
        width: 30px;
        height: 30px;
        top: 13px;
        right: 13px;
    }

    /* modal */

}

@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 */

    .company-achievements__img {
        padding: 0;
    }

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

    .forWho__items {
        margin-top: 30px;
    }

    .slider-controls {
        display: none;
    }

    .info__block-1 {
        padding: 50px 190px 85px 50px;
    }

    .info__block-title {
        /* font-size: 30px; */
        font-size: clamp(1.438rem, 0.344rem + 4.07vw, 1.875rem);
    }

    .info__block-subtitle {
        /* font-size: 22px; */
        font-size: clamp(1rem, 0.063rem + 3.49vw, 1.375rem);
    }

    .info__block-1 .info__block-icon {
        width: 20%;
        height: 35%;
    }

    .info__block-2 .info__block-icon {
        width: 26%;
        height: 28%;
    }

    .info__num {
        font-size: 55px;
    }

}

@media(max-width: 600px) {

    .info__block .info__block-icon {
        display: none;
    }

    .info__block-1 {
        padding: 50px 50px 85px 50px;
    }

    .info__block-2 {
        padding: 140px 50px 60px 45px;
    }

    .info__block-1 .info__block-title,
    .info__block-1 .info__block-subtitle,
    .info__block-2 .info__block-title,
    .info__block-2 .info__block-subtitle {
        text-align: center;
    }

    .info__block-2 .info__block-title {
        max-width: 100%;
    }

}

@media(max-width: 430px) {

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

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

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

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

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

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

    .modal__bottom-btn {
        width: 85%;
    }

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

    .products {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .products__title {
        margin-bottom: 40px;
    }

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

    .products__item-title {
        line-height: 25px;
    }

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

    .company-achievements {
        padding: 40px 0 30px 0px;
        margin-top: 0;
    }

    .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;
    }

    .company-achievements__list-icon {
        width: 62px;
        height: 51px;
    }

    .company-achievements__title {
        max-width: 300px;
        margin: 0 auto;
    }

    .company-achievements__wrapper {
        margin-top: 40px;
    }

    .company-achievements__img img {
        min-height: 275px;
        max-height: unset;
    }

    .team {
        padding: 40px 0;
        margin-top: 0;
    }

    .team__title {
        font-size: clamp(1.625rem, 1.097rem + 2.25vw, 3.125rem);
        font-weight: 600;
        line-height: 37px;
    }

    .team__wrapper {
        margin-top: 0;
    }

    .team__item-img {
        height: 290px;
    }

    .team__item-info {
        padding-left: 10px;
        margin-left: 5px;
    }

    .team__item-post {
        margin-top: 0;
    }

    .consultation {
        padding: 40px 0px;
        margin-top: 0px;
    }

    .forWho {
        padding: 40px 0;
        margin-top: 0;
    }

    .forWho__title {
        font-weight: 600;
    }

    .forWho__item {
        height: 200px;
    }

    .forWho__item-title {
        line-height: 25px;
    }

    .forWho__item-num {
        font-size: 25px;
    }

    .forWho__item::after {
        width: 50px;
        height: 60px;
        left: 9px;
    }

    .contacts {
        padding: var(--section-padding);
    }

    .contacts__wrapper {
        gap: 30px;
    }

    .contacts__block-title {
        font-size: 21px;
    }

    .cases {
        padding: 0px 0 40px 0;
    }

    .cases__title {
        font-weight: 600;
        text-align: center;
    }

    .cases__item {
        width: 100%;
        min-height: 230px;
    }

    .cases__item-title span {
        display: block;
    }

    .cases__item-descr {
        max-width: 67%;
    }

    .cases__item::after {
        width: 105px;
        height: 105px;
        bottom: 108px;
        right: 40px;
        opacity: 1;
    }

    .cases__item-2::after {
        bottom: 85px;
        right: 40px;
    }

    .cases__item-3::after {
        bottom: 84px;
        right: 32px;
    }

    .cases__item-4::after {
        bottom: 86px;
        right: 39px;
    }

    .info {
        padding: 0px 0 80px 0;
    }

    .info__block-1,
    .info__block-2 {
        min-height: auto;
    }

    .info__block-1 {
        padding: 40px 20px 73px 20px;
    }

    .info__block-2 {
        padding: 89px 20px 45px 20px;
    }

    .info__num {
        width: 140px;
        height: 140px;
        font-size: 45px;
        border: 15px solid var(--bg-border-color);
    }

    .info__num span {
        width: 110px;
        height: 110px;
        font-size: 40px;
    }

    .modal-banner__close {
        top: 15px;
        right: 15px;
    }

    .modal-banner__close svg {
        width: 30px;
        height: 30px;
    }

    .modal-banner__btn {
        width: 85%;
    }

    .modal-banner__text {
        margin-top: 15px;
    }

    .faq__item-descr {
        padding-right: 25px;
        padding-left: 25px;
    }

    .faq__item--active .faq__item-descr {
        padding: 0px 25px 25px 25px;
    }

}

@media(max-width: 375px) {

    .team__item-img {
        height: 230px;
    }

    .cases__item {
        min-height: 226px;
    }

    .cases__item-descr {
        max-width: 72%;
    }

    .cases__item-2::after {
        bottom: 58px;
        right: 40px;
    }

    .cases__item-3::after {
        bottom: 66px;
        right: 40px;
    }

    .cases__item-4::after {
        bottom: 59px;
    }

}

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

    .company-achievements__list li:hover .company-achievements__list-icon rect {
        stroke: var(--secondary-color);
    }

    .company-achievements__list-4:hover .company-achievements__list-icon path {
        stroke: var(--secondary-color);
    }

    .company-achievements__list li:hover .company-achievements__list-icon path {
        fill: var(--secondary-color);
    }

    .btn:hover:before {
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
    }

    .main-menu__header-close path,
    .main-menu__header-close circle {
        stroke: var(--main-color);
    }

    .modal-banner__socials a:hover {
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset;
    }

}