@font-face {
    font-family: "Helvetica Neue";
    src:
        local("Helvetica Neue"),
        url("../fonts/HelveticaNeueRoman.otf") format("opentype");
}

@font-face {
    font-family: "Helvetica Neue";
    src:
        local("Helvetica Neue Medium"),
        url("../fonts/HelveticaNeueMedium.otf") format("opentype");

    font-weight: 500;
}

@font-face {
    font-family: "Helvetica Neue";
    src:
        local("Helvetica Neue Thin"),
        url("../fonts/HelveticaNeueThin.otf") format("opentype");

    font-weight: 300;
}

@font-face {
    font-family: "Helvetica Neue";
    src:
        local("Helvetica Neue Bold"),
        url("../fonts/HelveticaNeueBold.otf") format("opentype");

    font-weight: 700;
}

@font-face {
    font-family: "Cinzel";
    src:
        local("Cinzel-Medium"),
        url("../fonts/Cinzel-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Cinzel";
    src:
        local("Cinzel-SemiBold"),
        url("../fonts/Cinzel-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@keyframes shake-it {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(30deg);
    }

    50% {
        transform: rotate(-30deg);
    }

    75% {
        transform: rotate(9deg);
    }

    95% {
        transform: rotate(-9deg);
    }

    100% {
        transform: rotate(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0px 0px 40px 0px rgba(180, 153, 107, 1);
    }

    50% {
        box-shadow: 0px 0px 50px 6px rgba(180, 153, 107, 1);
    }

    100% {
        box-shadow: 0px 0px 40px 0px rgba(180, 153, 107, 1);
    }
}

.header-new {
    .header__top {
        background-color: rgba(16, 55, 74, 1);

        .lg {
            top: 10px;
            left: 35px;
            width: auto;
            background-color: rgba(22, 71, 96, 1);
            border: none;
            border-radius: 15px;

            @media (max-width: 768px) {
                display: none;
            }
        }

        .lg__current {
            background-color: transparent;
        }

        .lg__current img {
            display: none;
        }

        .lg__current span {
            font-family: "Helvetica Neue", Helvetica, sans-serif;
            font-weight: 400;
            font-size: 15px;
            line-height: 15px;
        }
    }

    .header__logo {
        @media (max-width: 768px) {
            max-width: 62px;
        }
    }

    .header__menu > ul > li > a {
        position: relative;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 16px;
        color: rgba(23, 69, 92, 1);
        transition: color 0.2s;

        &:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -5px;
            overflow: hidden;
            visibility: hidden;
            height: 2px;
            width: 0;
            transform: translateX(-50%);
            background: rgba(180, 153, 107, 1);
            opacity: 0;
            transition: all 0.3s ease-in-out;
        }
    }

    .header__menu > ul > li.current-menu-item > a,
    .header__menu > ul > li:hover > a {
        &:after {
            visibility: visible;
            opacity: 1;
            overflow: visible;
            width: 100%;
        }
    }

    .header__phone {
        background-color: transparent;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        color: rgba(23, 69, 92, 1);
        gap: 10px;

        &::before {
            content: url("../img/ic_phone.svg");
            margin-top: 5px;
        }

        &:hover:before {
            animation: shake-it 0.4s;
        }

        &:hover {
            text-decoration: underline;
        }

        img {
            display: none;
        }

        span {
            @media (max-width: 768px) {
                display: block;
            }
        }
    }

    .header__bottom .container,
    .header__top .container {
        padding: 0 35px;

        @media (max-width: 768px) {
            padding: 0 18px;
        }
    }

    .header__top {
        padding: 0;
        .container {
            height: 48px;

            @media (max-width: 768px) {
                height: 20px;
            }
        }
    }
}

.first-block {
    .swiper-slide {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        padding-bottom: 70px;

        &:before {
            content: "";
            position: absolute;
            background: linear-gradient(
                357.13deg,
                rgba(21, 37, 46, 0.9) -2.67%,
                rgba(23, 69, 92, 0) 195.56%
            );
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            display: block;
            z-index: 0;
        }

        *:not(img) {
            position: relative;
            z-index: 1;
        }

        img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-fit: none;
            z-index: -1;
            background: linear-gradient(
                359.72deg,
                #10374a -57.87%,
                #17455c 123.87%
            );

            @media (max-width: 767px) {
                object-fit: cover;
            }
        }

        .title {
            max-width: 1210px;
            margin: 65px auto 35px;
            padding: 0 30px;
            text-align: center;
            font-family: "Cinzel", serif;
            font-weight: 500;
            font-size: 25px;
            line-height: 30px;
            color: #fff;

            @media (max-width: 767px) {
                margin-top: 35px;
            }

            @media (max-width: 375px) {
                padding: 0 20px;
            }

            h2 {
                margin-bottom: 20px;
                font-family: "Helvetica Neue", Helvetica, sans-serif;
                font-weight: 500;
                font-size: 50px;
                line-height: 60px;
                color: #fff;
                text-transform: none;

                @media (max-width: 992px) {
                    font-size: 35px;
                    line-height: 40px;
                }

                @media (max-width: 375px) {
                    font-size: 30px;
                    line-height: 32px;
                }
            }
            h2:first-child {
                margin-bottom: 0;
                color: rgba(223, 196, 150, 1);
            }

            p {
                font-family: "Cinzel", serif;
                font-weight: 500;
                font-size: 25px;
                line-height: 30px;
                text-transform: uppercase;
                color: #fff;

                @media (max-width: 375px) {
                    font-size: 20px;
                    line-height: 25px;
                }
            }
        }
    }

    .shiny-btn {
        display: block;
        width: 270px;
        margin: 35px auto;
        padding: 18px 22px;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #fff;
        border: 1px solid rgba(223, 196, 150, 1);
        background-color: rgba(180, 153, 107, 1);
        transition: background 0.2s;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0px 0px 50px 0px rgba(180, 153, 107, 1);
        animation: glow 3s infinite alternate;

        @media (max-width: 992px) {
            width: 270px;
            font-size: 20px;
            padding: 18px;
            text-align: center;
        }

        @media (max-width: 375px) {
            margin-top: 10px;
        }

        &:hover {
            background-color: rgb(212, 185, 137);
        }
    }

    .experts {
        margin-top: auto;
        margin-bottom: 22px;
        text-align: center;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 300;
        font-size: 20px;
        line-height: 30px;
        color: #fff;

        strong {
            font-weight: 500;
        }
    }

    .list {
        display: flex;
        margin: 0 auto;
        width: 396px;

        @media (max-width: 500px) {
            width: 340px;
        }

        img {
            position: static;
            width: 129px;
            height: 129px;
            object-fit: cover;
            border-radius: 50%;
            overflow: hidden;

            @media (max-width: 500px) {
                width: 100px;
                height: 100px;
            }

            &:not(:first-child) {
                margin-left: -30px;

                @media (max-width: 500px) {
                    margin-left: -20px;
                }
            }
        }
    }
}

.news-block {
    padding: 40px 0 70px;
    background-color: rgba(249, 249, 249, 1);

    .wrap {
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }
    }

    .title {
        margin: 20px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 50px;
        line-height: 120%;
        color: rgba(117, 156, 173, 1);

        @media (max-width: 992px) {
            font-size: 30px;
        }

        a {
            position: relative;
            font-family: "Helvetica Neue", Helvetica, sans-serif;
            text-decoration: none;

            &:after {
                content: "";
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 2px;
                bottom: -4px;
                left: 0;
                background-color: rgba(117, 156, 173, 1);
                transition: transform 0.25s ease-out;
                transform-origin: bottom right;
            }

            &:hover:after {
                transform: scaleX(1);
                transform-origin: bottom left;
            }
        }
    }

    .list {
    }

    .item {
        position: relative;

        &:hover .image {
            transform: scale(1.1);
        }
    }

    .link-stretch {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        display: block;
        background: linear-gradient(
            360deg,
            #10374a -19.85%,
            rgba(23, 69, 92, 0) 88.17%
        );
    }

    .thumb {
        background: linear-gradient(
            360deg,
            #10374a -19.85%,
            rgba(23, 69, 92, 0) 88.17%
        );
        aspect-ratio: 12 / 15;
        overflow: hidden;
    }

    .image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform ease-in-out 1.2s;
        transform: translateZ(0);
        will-change: transform;
    }

    .heading {
        position: absolute;
        left: 8%;
        bottom: 10%;
        overflow: hidden;
        z-index: 1;
        width: 84%;
        max-height: 101px;
        margin: 0;
        color: #fff;
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 125%;

        a {
            font-family: "Cinzel", serif;
            text-decoration: none;
            color: #fff;
        }
    }

    .swiper-pagination {
        display: none;
        position: relative;
        margin-top: 40px;

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgb(41, 104, 136);
        }

        .swiper-pagination-bullet-active {
            background-color: rgba(180, 153, 107, 1);
        }

        @media (max-width: 1024px) {
            display: block;
        }
    }
}

.reviews-block {
    padding: 30px 0 70px;
    background-color: rgba(21, 35, 43, 1);

    .wrap {
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }
    }

    .title {
        margin: 30px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 50px;
        line-height: 120%;
        color: rgba(180, 153, 107, 1);

        @media (max-width: 992px) {
            font-size: 30px;
        }

        a {
            position: relative;
            font-family: "Helvetica Neue", Helvetica, sans-serif;
            text-decoration: none;

            &:after {
                content: "";
                position: absolute;
                width: 100%;
                transform: scaleX(0);
                height: 2px;
                bottom: -4px;
                left: 0;
                background-color: rgba(180, 153, 107, 1);
                transition: transform 0.25s ease-out;
                transform-origin: bottom right;
            }

            &:hover:after {
                transform: scaleX(1);
                transform-origin: bottom left;
            }
        }
    }
    /*
    .list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 20px;

        @media (max-width: 1024px) {
            grid-template-columns: 1fr 1fr;
            row-gap: 20px;
        }

        @media (max-width: 767px) {
            grid-template-columns: 1fr;
        }
    }
*/

    .item {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 50px 30px;
        border: 1px solid rgba(23, 69, 92, 1);
    }

    .swiper-pagination {
        display: none;
        position: relative;
        margin-top: 40px;

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgb(41, 104, 136);
        }

        .swiper-pagination-bullet-active {
            background-color: rgba(180, 153, 107, 1);
        }

        @media (max-width: 1024px) {
            display: block;
        }
    }

    .name {
        margin: 10px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 25px;
        color: #fff;
    }

    .text {
        margin: 0 0 25px;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-size: 17px;
        font-weight: 300;
        line-height: 125%;
        color: rgba(117, 156, 173, 1);
    }

    .stars {
        display: flex;
        align-items: center;
        gap: 11px;
        margin-bottom: 15px;

        img {
            margin-top: -2px;
            width: 20px;
            filter: brightness(0) saturate(100%) invert(63%) sepia(30%)
                saturate(528%) hue-rotate(1deg) brightness(95%) contrast(87%);
        }

        span {
            font-family: "Helvetica Neue", Helvetica, sans-serif;
            font-size: 15px;
            font-weight: 500;
            line-height: 20px;
            color: rgba(117, 156, 173, 1);
        }
    }

    .google-logo {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-top: auto;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: 20px;
        color: #fff;
    }
}

.contact-form {
    padding: 30px 0 70px;

    .just-validate-error-field + span {
    }

    .just-validate-error-label {
        color: rgb(184, 17, 17) !important;
        margin-top: -10px;
        margin-bottom: 10px;
        margin-left: 50px;
    }

    .wrap {
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }
    }

    .title {
        margin: 30px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 50px;
        line-height: 120%;
        color: rgba(117, 156, 173, 1);

        @media (max-width: 992px) {
            font-size: 30px;
        }
    }

    form {
        display: flex;
        flex-direction: column;
    }

    label {
        position: relative;
    }

    input {
        width: 100%;
        padding: 38px 0px 38px 50px;
        margin-bottom: 24px;
        border: none;
        outline: none;

        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 100%;
        color: rgba(23, 69, 92, 1);
        background: rgba(249, 249, 249, 1);

        @media (max-width: 992px) {
            padding: 20px 0px 20px 30px;
        }
    }

    input::placeholder {
        opacity: 0;
    }
    span {
        position: absolute;
        top: 0;
        left: 50px;
        transform: translateY(40px);
        transition-duration: 300ms;

        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 100%;
        color: rgba(117, 156, 173, 1);
        pointer-events: none;

        @media (max-width: 992px) {
            transform: translateY(20px);
            left: 30px;
        }
    }

    label:focus-within > span,
    input:not(:placeholder-shown) + span {
        font-size: 16px;
        color: rgba(180, 153, 107, 1);
        transform: translateY(15px);

        @media (max-width: 992px) {
            opacity: 0;
        }
    }

    .form-footer {
        display: flex;
        align-items: center;
        margin-top: 42px;

        @media (max-width: 992px) {
            flex-direction: column;
            margin-top: 20px;
        }
    }

    .submit {
        padding: 36px 55px;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        color: #fff;
        background-color: rgba(180, 153, 107, 1);
        border: 1px solid rgba(223, 196, 150, 1);
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.2s;

        @media (max-width: 992px) {
            width: 100%;
            font-size: 20px;
            padding: 18px;
        }

        &:hover {
            background-color: rgba(223, 196, 150, 1);
        }

        &:active {
            transform: scale(0.98);
        }
    }

    .elizabeth {
        display: flex;
        align-items: center;
        margin-left: 21px;

        @media (max-width: 992px) {
            margin-left: 0;
            margin-top: 30px;
        }

        .thumb {
            margin-right: 22px;
            width: 100px;
            height: 100px;
            overflow: hidden;
            border-radius: 50%;
        }

        .text {
            max-width: 216px;
            font-family: "Helvetica Neue", Helvetica, sans-serif;
            font-weight: 400;
            font-size: 15px;
            line-height: 20px;
            color: rgba(23, 69, 92, 1);
        }

        .name {
            font-weight: 500;
        }
    }
}

.faq-block {
    padding: 30px 0 70px;
    background: linear-gradient(254.1deg, #17445a -69.97%, #10374a 72.24%);

    .wrap {
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }
    }

    .title {
        margin: 30px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 50px;
        line-height: 120%;
        color: rgba(117, 156, 173, 1);

        @media (max-width: 992px) {
            font-size: 30px;
        }
    }
}

.accordion {
    .question {
        position: relative;
        margin-bottom: 25px;
        border-bottom: 1px solid rgba(23, 69, 92, 1);

        &.opened {
            .arrow::after {
                transform: rotate(0);
            }
        }
    }

    .question-title {
        margin-bottom: 16px;
        padding-right: 15px;
        font-family: "Cinzel", serif;
        font-weight: 600;
        font-size: 25px;
        line-height: 30px;
        color: #fff;
        cursor: pointer;

        @media (max-width: 992px) {
            font-size: 18px;
            line-height: 24px;
        }
    }
    .question-answer {
        display: none;
        margin-bottom: 25px;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 300;
        font-size: 20px;
        line-height: 25px;
        color: #fff;

        @media (max-width: 992px) {
            font-size: 18px;
            line-height: 22px;
        }

        p {
            margin: 0;
        }
    }

    .arrow {
        position: absolute;
        right: 0;
        top: 10px;
        display: block;
        width: 10px;
        height: 10px;

        &:before {
            content: "";
            position: absolute;
            right: 0;
            display: block;
            width: 10px;
            height: 1px;
            background-color: #fff;
        }

        &:after {
            content: "";
            position: absolute;
            right: 0;
            display: block;
            width: 10px;
            height: 1px;
            background-color: #fff;
            transform: rotate(90deg);
            transition: transform 0.2s;
        }
    }
}

.legal-team-block {
    padding: 30px 0 70px;
    background: linear-gradient(254.1deg, #17445a -69.97%, #10374a 72.24%);

    .wrap {
        position: relative;
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }
    }

    .title {
        margin: 30px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 50px;
        line-height: 120%;
        color: rgba(180, 153, 107, 1);

        @media (max-width: 992px) {
            font-size: 30px;
        }
    }

    .navigation {
        position: absolute;
        right: 30px;
        top: 0;
        display: flex;
        justify-content: space-between;
        width: 125px;

        @media (max-width: 1024px) {
            display: none;
        }
    }

    .swiper-button-prev,
    .swiper-button-next {
        position: relative;
        top: auto;
        left: 0;
        margin: 0;
        width: 60px;
        height: 60px;
        background: rgba(23, 69, 92, 1);
        border-radius: 50%;
        transition: background 0.2s;

        &:hover {
            background: rgba(180, 153, 107, 1);
        }

        &:after {
            content: url(../img/ic_right-team-arrow.svg);
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 60px;
            margin: auto;
        }

        &:hover:after {
            content: url(../img/ic_right-team-arrow-active.svg);
        }
    }

    .swiper-button-prev {
        &:after {
            transform: rotate(180deg);
        }
    }

    .item {
        padding: 30px;
        border: 1px solid rgba(23, 69, 92, 1);
    }

    .info {
        display: flex;
        flex-direction: column;
    }

    .name {
        margin: 30px 0 15px;
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
        color: #fff;
    }

    .position {
        margin-bottom: 8px;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
        color: rgba(117, 156, 173, 1);
    }

    .link {
        align-self: flex-end;
        border-bottom-color: rgba(117, 156, 173, 1);

        &:hover {
            border-bottom: 1px solid transparent;

            span {
                color: #fff;
            }

            img {
                filter: brightness(0) saturate(100%) invert(100%) sepia(0%)
                    saturate(7500%) hue-rotate(147deg) brightness(117%)
                    contrast(110%);
            }
        }

        span {
            font-family: "Helvetica Neue", Helvetica, sans-serif;
            font-weight: 400;
            font-size: 16px;
            line-height: 120%;
            color: rgba(117, 156, 173, 1);
        }

        img {
            filter: none;
        }
    }

    .swiper-pagination {
        display: none;
        position: relative;
        margin-top: 40px;

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgb(41, 104, 136);
        }

        .swiper-pagination-bullet-active {
            background-color: rgba(180, 153, 107, 1);
        }

        @media (max-width: 1024px) {
            display: block;
        }
    }
}

.why-work {
    padding: 30px 0 70px;
    background: rgba(249, 249, 249, 1);

    .wrap {
        position: relative;
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }
    }

    .title {
        margin: 30px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 50px;
        line-height: 120%;
        color: rgba(117, 156, 173, 1);

        @media (max-width: 992px) {
            font-size: 30px;
        }
    }

    /* .reasons {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 23px;
    } */

    .item {
        display: flex;
        flex-direction: column;
        padding: 40px;
        background: #fff;
        height: auto;
    }

    .heading {
        display: flex;
        align-items: center;

        h4 {
            margin-left: 18px;
            font-family: "Cinzel", serif;
            font-weight: 500;
            font-size: 20px;
            line-height: 25px;
            color: rgba(23, 69, 92, 1);
        }
    }

    h3 {
        margin: 20px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
        color: rgba(23, 69, 92, 1);
    }
    p {
        margin: auto 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 300;
        font-size: 20px;
        line-height: 25px;
        color: rgba(23, 69, 92, 1);
    }

    .swiper-pagination {
        display: none;
        position: relative;
        margin-top: 40px;

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: rgb(41, 104, 136);
        }

        .swiper-pagination-bullet-active {
            background-color: rgba(180, 153, 107, 1);
        }

        @media (max-width: 1024px) {
            display: block;
        }
    }
}

.numbers-block {
    padding: 70px 0;

    .mobile-show {
        display: none;
    }

    @media (max-width: 1024px) {
        padding: 40px 0;
    }

    @media (max-width: 767px) {
        .mobile-show {
            display: block;
        }

        .mobile-hide {
            display: none;
        }
    }

    .wrap {
        display: flex;
        justify-content: space-between;
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }

        @media (max-width: 767px) {
            display: block;
        }
    }

    .left-col {
        max-width: 472px;
        margin-right: 30px;
        display: flex;
        flex-direction: column;

        @media (max-width: 767px) {
            margin-bottom: 20px;
        }
    }

    .right-col {
        max-width: 630px;
        display: flex;
        flex-direction: column;
    }

    .big-number {
        display: flex;
        align-items: center;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 500;
        font-size: 150px;
        line-height: 100%;
        color: rgba(180, 153, 107, 1);

        @media (max-width: 1050px) {
            font-size: 90px;
        }

        @media (max-width: 767px) {
            font-size: 100px;
        }

        @media (max-width: 375px) {
            font-size: 90px;
        }
    }

    .two-numbers {
        .big-number {
            color: rgba(117, 156, 173, 1);
        }
    }

    .text-under-number {
        margin-top: 16px;
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 25px;
        line-height: 30px;
        text-transform: uppercase;
        color: rgba(23, 69, 92, 1);

        @media (max-width: 767px) {
            margin-bottom: 20px;
        }

        strong {
            font-weight: 600;
        }
    }

    .small-text {
        margin-top: auto;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 300;
        font-size: 20px;
        line-height: 25px;
        color: rgba(23, 69, 92, 1);

        p {
            margin-bottom: 20px;
        }

        strong {
            font-weight: 500;
        }
    }

    .two-numbers {
        display: flex;
        justify-content: space-between;
        margin-top: 80px;

        @media (max-width: 767px) {
            margin-top: 20px;
            display: block;
        }

        .second .text-under-number {
            margin-left: 15px;

            @media (max-width: 767px) {
                margin-left: 0;
                margin-bottom: 20px;
            }
        }
    }
}

.practice-areas {
    padding: 30px 0 70px;
    background: linear-gradient(359.72deg, #10374a -57.87%, #17455c 123.87%);

    @media (max-width: 1024px) {
        overflow: hidden;
    }

    .wrap {
        position: relative;
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }
    }

    .title {
        margin: 30px 0;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 400;
        font-size: 50px;
        line-height: 120%;
        color: rgba(117, 156, 173, 1);

        @media (max-width: 992px) {
            font-size: 30px;
        }
    }

    .block {
        position: relative;
        display: flex;
        align-items: center;
        width: 314px;
        flex-shrink: 0;
        padding: 40px;
        text-decoration: none;
        background-color: rgba(16, 55, 74, 1);
        transition: background 0.2s;

        @media (max-width: 1415px) {
            width: calc(50% - 12px);
        }

        @media (max-width: 1024px) {
            width: auto;
        }

        &::after {
            content: url("../img/ic_angled-arrow.svg");
            position: absolute;
            top: 20px;
            right: 20px;
            opacity: 0;
            transition: opacity 0.2s;
        }

        &:hover {
            background-color: rgba(22, 75, 102, 0.52);

            &:after {
                opacity: 1;
            }
        }

        span {
            margin-left: 22px;
            font-family: "Cinzel", serif;
            font-weight: 500;
            font-size: 20px;
            line-height: 25px;
            text-transform: uppercase;
            color: #fff;

            @media (max-width: 1024px) {
                font-size: 18px;
                line-height: 22px;
            }
        }
    }

    .row {
        display: flex;
        gap: 24px;
        margin-bottom: 24px;

        @media (max-width: 1415px) {
            flex-wrap: wrap;
        }

        @media (max-width: 1024px) {
            display: grid;
            grid-template-columns: 1fr;
            gap: 17px;
            margin-bottom: 17px;
        }
    }

    .row:first-child {
        .block:first-child {
            width: 100%;
            flex-shrink: initial;

            @media (max-width: 1024px) {
                width: auto;
            }
        }

        .block:nth-child(1)::before {
            content: url(../img/ic_shield.svg);
        }

        .block:nth-child(2)::before {
            content: url(../img/ic_green-card.svg);
        }

        .block:nth-child(3)::before {
            content: url(../img/ic_magnet.svg);
        }

        .block:first-child span {
            display: block;
            max-width: 320px;
        }
    }

    .row:last-child {
        .block:last-child span {
            display: block;
            max-width: 320px;
        }

        .block:nth-child(1)::before {
            content: url(../img/ic_nurses.svg);
        }

        .block:nth-child(2)::before {
            content: url(../img/ic_family.svg);
        }

        .block:nth-child(3)::before {
            content: url(../img/ic_perfomance.svg);
        }

        .block:last-child {
            width: 100%;
            flex-shrink: initial;

            @media (max-width: 1024px) {
                width: auto;
            }
        }
    }
}

.case-strategy {
    max-width: 1330px;
    padding: 70px 0;
    margin: 70px auto 0;
    background: rgba(16, 55, 74, 1);

    @media (max-width: 1024px) {
        margin-top: 20px;
        padding: 30px 0;
    }

    .inner-wrap {
        max-width: 1158px;
        padding: 0 18px;
        margin: auto;
    }

    .text {
        margin-bottom: 25px;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 300;
        font-size: 45px;
        line-height: 55px;
        color: #fff;

        @media (max-width: 1024px) {
            font-weight: 700;
            font-size: 30px;
            line-height: 35px;
        }

        strong {
            font-weight: 500;
        }

        a {
            color: rgba(180, 153, 107, 1);
            text-decoration: none;
            transition: color 0.2s;

            &:hover {
                color: rgb(236, 189, 108);
            }
        }
    }

    .btn-blue {
        display: inline-block;
        margin-right: 20px;
        padding: 18px 22px;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: rgba(117, 156, 173, 1);
        background-color: rgba(23, 69, 92, 1);
        transition:
            background 0.2s,
            color 0.2s;
        border-radius: 50px;
        text-decoration: none;

        @media (max-width: 992px) {
            width: 100%;
            font-size: 20px;
            padding: 18px;
            margin-bottom: 20px;
            text-align: center;
        }

        &:hover {
            color: #fff;
            background-color: rgb(41, 109, 143);
        }
    }

    .btn-gold {
        display: inline-block;
        margin-right: 20px;
        padding: 18px 22px;
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        color: #fff;
        border: 1px solid rgba(223, 196, 150, 1);
        background-color: rgba(180, 153, 107, 1);
        transition: background 0.2s;
        border-radius: 50px;
        text-decoration: none;

        @media (max-width: 992px) {
            width: 100%;
            font-size: 20px;
            padding: 18px;
            margin-bottom: 20px;
            text-align: center;
        }

        &:hover {
            background-color: rgb(212, 185, 137);
        }
    }
}

.footer-new {
    padding: 70px 0 0 0;
    background: linear-gradient(141deg, #16435a 22.37%, #10374a 113.11%);

    @media (max-width: 1040px) {
        padding-top: 50px;
        display: block;
    }

    .wrap {
        display: flex;
        justify-content: space-between;
        max-width: 1400px;
        margin: auto;
        padding: 0 35px;

        @media (max-width: 1040px) {
            display: block;
        }

        @media (max-width: 1024px) {
            padding: 0 25px;
        }

        @media (max-width: 992px) {
            padding: 0 18px;
        }
    }

    .locations {
        display: flex;
        margin-bottom: 25px;
        padding: 40px 50px;
        background-color: rgba(16, 55, 74, 1);

        @media (max-width: 1040px) {
        }

        .icon {
            margin-right: 34px;
            padding: 5px 0 0 0;
        }

        .text {
            h4 {
                margin-bottom: 16px;
                font-family: "Cinzel", serif;
                font-weight: 500;
                font-size: 20px;
                line-height: 25px;
                color: #fff;
            }

            .location:not(:last-child) {
                margin-bottom: 17px;
            }

            .name {
                font-family: "Helvetica Neue", Helvetica, sans-serif;
                font-size: 20px;
                font-weight: 500;
                line-height: 25px;
                color: rgba(117, 156, 173, 1);
            }
            .address {
                font-family: "Helvetica Neue", Helvetica, sans-serif;
                font-size: 20px;
                font-weight: 300;
                line-height: 25px;
                color: rgba(117, 156, 173, 1);
            }
            .tel-text,
            .tel-text a {
                font-family: "Helvetica Neue", Helvetica, sans-serif;
                font-size: 20px;
                font-weight: 300;
                line-height: 25px;
                color: rgba(117, 156, 173, 1);
                text-decoration: none;
            }

            .tel-text a:hover {
                text-decoration: underline;
            }
        }
    }
    .email {
        display: flex;
        padding: 40px 50px;
        background-color: rgba(16, 55, 74, 1);

        .icon {
            margin-right: 26px;
            padding: 5px 0 0 0;
        }

        h4 {
            margin-bottom: 16px;
            font-family: "Cinzel", serif;
            font-weight: 500;
            font-size: 20px;
            line-height: 25px;
            color: #fff;
        }

        .email-text,
        .email-text a {
            font-family: "Helvetica Neue", Helvetica, sans-serif;
            font-size: 20px;
            font-weight: 300;
            line-height: 25px;
            color: rgba(117, 156, 173, 1);
            text-decoration: none;
        }

        .email-text a:hover {
            text-decoration: underline;
        }
    }

    .right-col {
        display: flex;
        flex-direction: column;

        @media (max-width: 1040px) {
            display: block;
            margin-top: 20px;
            text-align: center;
        }

        h4 {
            margin-bottom: 16px;
            font-family: "Cinzel", serif;
            font-weight: 500;
            font-size: 20px;
            line-height: 25px;
            color: #fff;
        }

        .menu {
            a {
                font-family: "Helvetica Neue", Helvetica, sans-serif;
                font-size: 20px;
                font-weight: 500;
                line-height: 30px;
                color: rgba(117, 156, 173, 1);
                text-decoration: none;
                transition: color 0.2s;

                &:hover {
                    color: rgba(180, 153, 107, 1);
                }
            }
        }
    }

    .socials {
        display: flex;
        gap: 20px;
        margin-top: auto;

        @media (max-width: 1040px) {
            margin: 40px auto 0;
            width: fit-content;
        }

        li:hover {
            animation: shake-it 0.4s;
        }
    }

    .footer-bottom {
        margin-top: 70px;
        padding: 40px 0;
        background-color: rgba(21, 35, 43, 1);

        @media (max-width: 1040px) {
            margin-top: 40px;
        }

        .copyright-text {
            font-family: "Helvetica Neue", Helvetica, sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 20px;
            color: rgba(117, 156, 173, 1);

            @media (max-width: 1040px) {
                text-align: center;
                margin-bottom: 20px;
            }
        }

        .policy {
            display: flex;
            gap: 20px;

            @media (max-width: 1040px) {
                width: fit-content;
                margin: auto;
            }

            @media (max-width: 767px) {
                flex-wrap: wrap;
                justify-content: center;
            }

            a {
                font-family: "Helvetica Neue", Helvetica, sans-serif;
                font-size: 15px;
                font-weight: 400;
                line-height: 20px;
                color: rgba(117, 156, 173, 1);
                text-decoration: none;
                transition: color 0.2s;

                &:hover {
                    color: rgba(180, 153, 107, 1);
                }
            }
        }
    }
}

.wrapper-new {
    margin-top: 163px;

    @media (max-width: 767px) {
        margin-top: 89px;
    }
}

.swiper-horizontal {
    overflow: hidden;
}
