﻿@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");

html,
body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    --white-color: #ffffff;
    --black-color: #000000;
    --dark-green: rgb(3, 33, 39);
    --ligth-green: rgb(126, 214, 223);
    --light-grey: rgb(148, 163, 184);
    --middle-grey: rgb(102, 102, 102);
    --light-blue: rgb(237, 250, 250);
    --light-grey-var: rgb(247, 247, 247);
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    /* = 1.0000rem */
    color: var(--black-color);
}

    body.menu-open {
        overflow: hidden;
    }

.container {
    max-width: 77.5rem;
    /* 77.5000rem */
}

.btn {
/*    padding: 0.7rem 1rem;*/
    font-weight: 500;
    transition: all 0.3s ease;
    /*min-height: 3.0000rem;*/
}

.navbar {
    transition: all 0.3s ease;
    background-color: var(--dark-green);
}

    .navbar .nav-link,
    .navbar .navbar-brand {
        color: #ffffff;
        transition: color 0.5s ease;
        font-weight: 500;
        font-size: 0.875rem;
        /* 0.9375rem */
    }

        .navbar .nav-link:hover {
            text-decoration: underline;
        }

        .navbar .nav-link.active {
            color: var(--ligth-green);
        }

    .navbar.scrolled {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.1);
        /* 0.7500rem */
        z-index: 1000;
    }

        .navbar.scrolled.navbar-variant {
            box-shadow: none !important;
        }

    .navbar img {
        width: 100%;
        height: 100%;
        border-radius: inherit;
        object-position: center center;
        object-fit: cover;
        max-width: 9.0625rem;
        /* 9.0625rem */
        aspect-ratio: auto 300 / 75;
    }

    .navbar .logo-dark {
        display: none;
    }

    .navbar.scrolled .logo-dark {
        display: block;
    }

    .navbar.scrolled .logo-light {
        display: none;
    }

    .navbar.scrolled .nav-link,
    .navbar.scrolled .navbar-brand {
        color: var(--black-color) !important;
    }

        .navbar.scrolled .nav-link.active {
            color: var(--middle-grey) !important;
        }

    .navbar .btn {
        padding: 0.5rem 1rem;
        min-height: auto;
    }

.btn-variant {
    background: none;
    border: 0.0625rem solid var(--middle-grey);
    color: var(--middle-grey);
    font-size: 0.875rem;
    /* 0.8750rem */
    border-radius: 3.125rem;
    /* 3.1250rem */
}

    .btn-variant:active,
    .btn-variant:hover {
        color: var(--white-color);
        background-color: var(--middle-grey);
        text-decoration: none;
    }

.navbar.scrolled .btn-variant {
    color: var(--black-color);
    border-color: var(--black-color);
}

    .navbar.scrolled .btn-variant:active,
    .navbar.scrolled .btn-variant:hover {
        background-color: var(--black-color);
        color: var(--white-color);
    }

.btn-second {
    background: var(--ligth-green);
    color: var(--dark-green);
    border: 0.0625rem solid var(--ligth-green);
    font-size: 0.875rem;
    /* 0.8750rem */
    border-radius: 3.125rem;
    /* 3.1250rem */
}

    .btn-second:active,
    .btn-second:hover {
        background: var(--ligth-green);
        color: var(--dark-green);
        box-shadow: 0 0 0.5rem 0.3125rem rgba(126, 214, 223, 0.2);
        /* 0.5000rem 0.3125rem */
    }

.navbar.scrolled .btn-second {
    background-color: var(--black-color);
    color: var(--white-color);
    border-color: var(--black-color);
}

    .navbar.scrolled .btn-second:active,
    .navbar.scrolled .btn-second:hover {
        background: var(--middle-grey);
        color: var(--white-color);
        border-color: var(--middle-grey);
    }

.btn-gradient {
    outline-color: rgb(126, 214, 223);
    border-color: rgb(126, 214, 223);
    display: inline-block;
    font-weight: 500;
    border-image-slice: 1;
    font-size: 0.875rem;
    /* 0.8750rem */
    border-radius: 3.125rem;
    background: linear-gradient(90deg, rgb(126, 214, 223), rgb(191, 240, 203));
    color: var(--dark-green);
    text-decoration: none;
    position: relative;
    z-index: 0;
}

    .btn-gradient::active {
        color: var(--dark-green);
    }

    .btn-gradient::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        padding: 0.0625rem;
        border-radius: 3.1250rem;
        background: linear-gradient(90deg, #7ed6df, #bff0cb);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask-composite: exclude;
    }

    .btn-gradient:hover {
        background: linear-gradient(90deg, rgb(191, 240, 203), rgb(126, 214, 223));
        /* тёмно-зелёный текст при наведении */
        text-decoration: none;
        color: var(--dark-green);
    }

body.menu-open {
    overflow: hidden;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body.menu-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 61.9988rem) {

    .navbar-buttons {
        margin-top: 1.5625rem;
    }

        .navbar-buttons .btn {
            width: 50%;
        }


    .navbar.scrolled .navbar-collapse {
        background-color: var(--white-color);
    }

    .navbar-collapse.collapse {
        position: fixed;
        top: 4.5000rem;
        /* высота навбара — подстрой если нужно */
        left: 0;
        width: 100%;
        background-color: var(--dark-green);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        padding: 0.9375rem;
    }



    .navbar-collapse {
        padding: 0.9375rem;
        position: fixed;
        top: 4.5000rem;
        /* подстрой под высоту .navbar */
        left: 0;
        width: 100%;
        background-color: var(--dark-green);
        z-index: 1050;
        transform: translateY(-100%);
        transition: transform 0.3s ease !important;
        display: block !important;
        /* ключевая правка: всегда "block" */
        visibility: hidden;
        opacity: 0;
    }

        .navbar-collapse.show {
            transform: translateY(0);
            visibility: visible;
            opacity: 1;
        }

    .navbar-buttons .btn {
        width: 50%;
    }
}

.custom-toggler {
    position: relative;
    width: 1.8750rem;
    height: 1.5000rem;
    border: none;
    background: transparent;
    z-index: 1060;
}

.toggler-line {
    position: absolute;
    height: 0.1250rem;
    width: 100%;
    background: var(--white-color);
    left: 0;
    transition: all 0.3s ease;
    border-radius: 0.1250rem;
}

.navbar.scrolled .toggler-line {
    background-color: var(--dark-green);
}

.line1 {
    top: 0;
}

.line2 {
    top: 0.6875rem;
}

.line3 {
    bottom: 0;
}

.custom-toggler.open .line1 {
    transform: rotate(45deg);
    top: 0.6875rem;
}

.custom-toggler.open .line2 {
    opacity: 0;
}

.custom-toggler.open .line3 {
    transform: rotate(-45deg);
    bottom: 0.6875rem;
}

/* Hero */
.hero-section {
    padding: 4.25rem 0 6rem;
    /* 6.2500rem */
    overflow: hidden;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #032127 0%, #032127 79.9%, #ffffff 80%, #ffffff 100%);
}

    .hero-section h1 {
        font-family: "Manrope", sans-serif;
        font-size: 4.5rem;
        font-weight: 600;
        line-height: 1.1em;
    }

    .hero-section .btn {
        padding: 0.7rem 1.4rem;
    }

.gradient-text {
    background: linear-gradient(90deg, rgb(126, 214, 223), rgb(191, 240, 203));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.badge-hero {
    background-color: rgba(126, 214, 223, 0.15);
    border: 0.05rem solid rgba(126, 214, 223, 0.25);
    /* ~0.0500rem */
    color: var(--white-green);
    font-weight: 400;
    font-size: 0.875rem;
    /* 0.8750rem */
    padding: 0.3125rem 0.75rem;
    /* 0.3125rem 0.7500rem */
    line-height: 1;
    flex-wrap: nowrap;
}

@media (max-width: 61.9988rem) {
    .hero-section {
        padding: 2rem 0;
    }

        .hero-section h1 {
            font-size: 2.8750rem;
            font-weight: 600;
            line-height: 1.1em;
        }
}

@media (max-width: 35.9988rem) {
    .hero-section .hero-btns .btn {
        width: 100%;
    }

    .hero-section .hero-img {
        margin-bottom: -300px;
    }

    .hero-section .hero-img-wrap {
        min-height: 20.5625rem;
    }
}

.pricing-card {
    border-radius: 1rem;
    box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .pricing-card:hover {
        transform: scale(1.03);
    }

.contract-text {
    font-size: 1.125rem;
    /* около 1.0000rem */
    line-height: 1.6rem;
    /* межстрочный интервал 1.5000rem */
    color: rgba(237, 250, 250, 0.9);
    font-weight: 500;
}

    .contract-text .text-templates {
        font-size: 0.875rem;
    }

.mt-lg-6 {
    margin-top: 4.5rem !important;
    /* или нужное значение */
}

@media (max-width: 61.9988rem) {
    .mt-lg-6 {
        margin-top: 2rem !important;
    }
}

.hero-img-wrap {
    min-height: 29.3750rem;
    max-height: 34.3750rem;
    overflow: hidden;
    position: relative;
}

.hero-img {
    margin-bottom: -490px;
    width: 100%;
}

.hero-cover {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 10rem;
    /* 12.5000rem */
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 10%, #ffffff 70%);
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.client-slider-wrapper {
    background-color: #fff;
}

    .client-slider-wrapper h2 {
        font-weight: 600;
        font-size: 1.2500rem;
        color: var(--middle-grey, #666);
    }

.swiper-marquee {
    overflow: visible;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide img {
    max-width: 4.3750rem;
    max-height: 4.3750rem;
    width: 100%;
    object-fit: contain;
    display: block;
    aspect-ratio: auto 150 / 71;
}

.swiper {
    overflow-x: hidden;
}

.why-choose {
    padding: 6rem 0;
}

@media (max-width: 61.9988rem) {
    .why-choose {
        padding: 3rem 0 2rem;
    }
}

/* Professional. Effortless. Secure. */
.professional-block {
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(3, 33, 39, 0.03);
    border: 0.05rem solid rgba(3, 33, 39, 0.05);
    /* ~0.0500rem */
    font-weight: 400;
    font-size: 0.875rem;
    /* 0.8750rem */
    padding: 0.3125rem 0.75rem;
    /* 0.3125rem 0.7500rem */
    line-height: 1;
    flex-wrap: nowrap;
    height: min-content;
    max-height: 2.0000rem;
}

    .professional-block svg {
        fill: rgba(3, 33, 39, 0.8);
        width: 1.0000rem;
        height: 1.0000rem;
        flex-shrink: 0;
    }

.row-stress {
    background-color: var(--light-blue);
    overflow: hidden;
    padding: 2.0000rem 0 0 2.0000rem;
    position: relative;
    border-radius: 1.2500rem;
    color: var(--black-color);
}

@media (max-width: 47.9988rem) {
    .row-stress {
        padding: 1.2500rem 1.2500rem 0;
        width: 100%;
        margin: 0 auto;
    }
}

.half-block h3,
.row-stress h3 {
    font-size: 1.5000rem;
    font-weight: 600;
    color: var(--black-color);
}

.half-block span,
.row-stress span {
    color: var(--middle-grey);
}

.stress-free-img {
    border-top-left-radius: 0.6250rem;
    border-bottom-right-radius: 0.6250rem;
    box-shadow: 0 0.5000rem 1.5000rem #00000026;
    padding: 0.9375rem;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 0.6250rem;
    background-color: var(--white-color);
    max-height: 25.0000rem;
}

@media (max-width: 47.9988rem) {
    .stress-free-img {
        border-radius: 0.6250rem;
    }
}

.section-head h2.title {
    color: var(--black-color);
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 3.2500rem;
}

.section-head strong.subtitle {
    max-width: 25.0000rem;
    color: var(--middle-grey);
    font-weight: 400;
}

@media (max-width: 61.9988rem) {
    .section-head h2.title {
        font-size: 2.1250rem;
    }
}

/* Stress-Free Contracts с иконкой */
.stress-free-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.row-stress-box {
    display: flex;
    flex-direction: column;
    gap: 1.8750rem;
}

.stress-free-box .icon-box {
    background-color: var(--black-color);
    border-radius: 3.1250rem;
    width: 2.2500rem;
    height: 2.2500rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

    .stress-free-box .icon-box svg {
        stroke: var(--white-color);
        stroke-width: 10;
        width: 1.1250rem;
        height: 1.1250rem;
    }

.stress-free-box h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333333;
}

.stress-free-box p {
    margin-bottom: 0;
    color: #666666;
}

/* Картинка Stress-Free Contracts */
.stress-free-img img {
    width: 100%;
    border-radius: 0.7500rem;
    object-fit: contain;
    object-position: left top;
}

/* Колонки с блоками по 50% */
.half-block {
    margin-bottom: 3rem;
    color: #fff;
    border-radius: 1.2500rem;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.8750rem;
    justify-content: center;
    justify-self: start;
    overflow: hidden;
    padding: 2.0000rem 2.0000rem 0;
    position: relative;
    align-items: center;
    align-self: start;
}

@media (max-width: 47.9988rem) {
    .half-block {
        padding: 1.2500rem 1.2500rem 0;
        margin-bottom: 1rem;
    }
}

/* Specific background colors */
.bg-built {
    background-color: rgb(200, 242, 242);
}

.bg-fast {
    background-color: rgb(191, 240, 203);
}

/* Изображения для половинок */
.half-img {
    overflow: hidden;
    padding: 0.6250rem;
    max-height: 14.3750rem;
    border-top-left-radius: 0.6250rem;
    border-top-right-radius: 0.6250rem;
    box-shadow: 0 0.5000rem 1.5000rem #00000026;
    background-color: var(--white-color);
    position: relative;
    display: flex;
    justify-content: flex-start;
}

    .half-img img {
        width: 100%;
        border-radius: 0.7500rem;
        object-fit: cover;
        object-position: center top;
    }

/*features-section*/

.accordion-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2.0000rem;
    border-radius: 1.2500rem;
    background-color: rgb(247, 247, 247);
    height: 100%;
}

@media (max-width: 47.9988rem) {
    .accordion-img-wrap {
        padding: 0.9375rem;
    }

    .features-section .accordion-item {
        padding: 0.6250rem;
    }

    .features-section .accordion-button {
        padding: 0.3125rem;
    }

    .features-section .accordion-body {
        padding: 0.3125rem;
    }
}

.accordion-img-wrap img {
    max-width: 29.0000rem;
    width: 100%;
}

    .accordion-img-wrap img.img-accordion-4 {
        max-width: 31.2500rem;
    }

.features-section .accordion-item {
    border: 0 !important;
    padding: 0.8rem;
}

.features-section .accordion-body {
    padding-top: 0;
    color: var(--middle-grey);
}

.features-section .accordion-button {
    font-size: 1.2500rem;
    font-weight: 600;
    color: var(--black-color);
    gap: 0.7500rem;
    outline: none;
}

.accordion-button:active,
.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

.features-section .accordion-button::after {
    display: none;
}

.features-section .accordion-button:not(.collapsed) {
    background-color: rgb(237, 242, 250);
    box-shadow: none;
    border-radius: 0.6250rem;
    color: var(--black-color);
}

.features-section .accordion-item.open {
    background-color: rgb(237, 242, 250);
    border-radius: 0.6250rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0.0000rem 0.0000rem 0.0000rem 0.0000rem;
}

/*Pricing*/
.pricing-section {
    padding: 6.2500rem 0;
}

.pricing-card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.6875rem;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 1.5000rem 1.2500rem;
    position: relative;
    border-radius: 1.2500rem;
    text-align: left;
}

    .pricing-card:hover {
        transform: translateY(-0.5rem);
    }

    .pricing-card .icon-card {
        width: 4.5000rem;
        height: 4.5000rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--white-color);
        border-radius: 0.6250rem;
    }

    .pricing-card small {
        color: var(--middle-grey);
    }

    .pricing-card h5 {
        font-family: "Manrope", sans-serif;
        font-size: 2.0000rem;
        font-weight: 600;
    }

    .pricing-card .icon-card img {
        display: block;
        max-width: 2.3750rem;
    }

.pricing-card-text {
    font-size: 16;
    color: var(--middle-grey);
}

.pricing-card .plan-price {
    font-size: 2.7500rem;
    font-weight: 600;
}

    .pricing-card .plan-price span {
        font-weight: 400;
        font-size: 1.0000rem;
    }

.pricing-card strong {
    font-size: 1.2500rem;
    font-weight: 600;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5000rem;
    margin-bottom: 0.6250rem;
    color: var(--middle-grey);
}

.pricing-card .list-icon {
    width: 1.5000rem;
    height: 1.5000rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-green);
    border-radius: 3.1250rem;
}

.pricing-card-free {
    background-color: rgb(200, 242, 242);
    color: var(--black-color);
}

.pricing-card-growth {
    background-color: var(--dark-green);
    color: var(--white-color);
}

    .pricing-card-growth .pricing-card small {
        color: var(--white-color);
    }

    .pricing-card-growth .pricing-card-text {
        color: var(--white-color);
    }

    .pricing-card-growth .list-icon {
        background-color: var(--white-color);
    }

    .pricing-card-growth ul li {
        color: var(--white-color);
    }

    .pricing-card-growth small {
        color: var(--white-color);
    }

.pricing-card-business {
    background-color: rgb(191, 240, 203);
    color: var(--black-color);
}

    .pricing-card-business .plan-price span {
        color: var(--middle-grey);
    }

.btn-pricing {
    width: 100%;
    background-color: var(--black-color);
    color: var(--white-color);
    border: none;
    border-radius: 3.1250rem;
    padding: 1.0000rem 1.7500rem;
    font-size: 0.8750rem;
    font-weight: 500;
}

    .btn-pricing:active,
    .btn-pricing:hover,
    .btn-pricing:focus {
        background-color: var(--dark-green);
        color: var(--white-color);
    }

.pricing-card-growth .btn-pricing {
    background-color: var(--white-color);
    color: var(--black-color);
}

    .pricing-card-growth .btn-pricing:active,
    .pricing-card-growth .btn-pricing:hover,
    .pricing-card-growth .btn-pricing:focus {
        background-color: var(--white-color);
    }

/*agreements*/
.section-agreements {
    padding: 6.2500rem 0.9375rem;
    position: relative;
}

    .section-agreements .container {
        min-height: 500px;
    }

    .section-agreements .img-wrap {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .section-agreements .btn {
        padding: 0.7rem 1.4rem;
    }

    .section-agreements .overlay {
        background-color: rgba(0, 0, 0, 0.34);
        z-index: 2;
    }

    .section-agreements h2 {
        font-family: "Manrope", sans-serif;
        font-size: 3.2500rem;
        max-width: 37.5000rem;
        font-weight: 600;
        margin: 0 auto;
    }

@media (max-width: 61.9988rem) {
    .section-agreements h2 {
        font-size: 2.1250rem;
    }
}

.btn-outline-info {
    color: var(--ligth-green);
    /* светло-зелено-голубой */
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 3.125rem;
    outline-color: var(--ligth-green);
    border-color: var(--ligth-green);
    display: inline-block;
    font-weight: 500;
    border: 0.0625rem solid;
    border-image-slice: 1;
    font-size: 0.875rem;
    /* 0.8750rem */
}

    .btn-outline-info:active,
    .btn-outline-info:hover {
        background: var(--ligth-green);
        color: var(--dark-green);
    }

.agreements-logo {
    max-width: 8.1250rem;
}

.footer {
    padding: 6.2500rem 0 1.8750rem;
    background-color: var(--light-grey-var);
    color: var(--black-color);
}

    .footer p {
        max-width: 16.8750rem;
        width: 100%;
    }

    .footer h6 {
        margin-bottom: 0.6250rem;
    }

    .footer span {
        color: var(--black-color);
    }

.footer-logo {
    max-width: 6.2500rem;
}

.footer a {
    text-decoration: none;
    transition: all 0.4s ease;
    display: block;
    color: var(--middle-grey);
}

.footer ul li {
    font-size: 0.8750rem;
    color: var(--middle-grey);
    margin-bottom: 0.5000rem;
}

.footer a:hover {
    text-decoration: underline;
    color: var(--black-color);
}

/*Pricing Page*/
.pricing-page {
    padding-top: 7rem; /*10rem*/
}

.client-slider-wrapper h2 span {
    color: var(--black-color);
}

.pricing-page-choose {
    text-align: left;
    padding: 6rem 0;
}

@media (max-width: 61.9988rem) {
    .pricing-page-choose {
        padding: 5rem 0 3rem;
    }
}

.pricing-page-choose .subtitle {
    color: var(--middle-grey);
}

.pricing-page-choose .section-head {
    margin-bottom: 5rem;
}

@media (max-width: 61.9988rem) {
    .pricing-page-choose .section-head {
        margin-bottom: 2rem;
    }
}

.choose-icon {
    width: 48px;
    height: 48px;
}

.pricing-page-choose h6 {
    font-weight: 600;
    font-size: 20px;
}

/*section-faq*/
.section-faq {
    padding: 5rem 0 6rem;
}

@media (max-width: 61.9988rem) {
    .section-faq {
        padding: 3rem 0;
    }
}

.section-faq .accordion-item .accordion-button,
.section-faq .accordion-item {
    background-color: var(--light-grey-var);
}

.section-faq .accordion-item {
    margin-bottom: 20px;
    border: 0 !important;
}

    .section-faq .accordion-item:last-child {
        margin-bottom: 0;
    }

    .section-faq .accordion-item .accordion-button {
        box-shadow: none;
        font-weight: 600;
        font-size: 20px;
        color: var(--black-color);
    }

    .section-faq .accordion-item .accordion-body {
        padding-top: 0 !important;
        border: 0 !important;
        border-color: transparent;
    }

/*Features page*/
.features-tools {
    padding-top: 8rem;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

    .features-tools .container {
        border-bottom: 1px solid #0003;
        padding-bottom: 4rem;
    }

.section-head.head-page h1.title {
    font-size: 52px;
    max-width: 995px;
}

.head-page h3 {
    font-weight: 600;
    font-size: 44px;
}

.section-head.head-page .subtitle {
    max-width: 50rem;
}

.features-card {
    background-color: var(--light-grey-var);
    transition: all 0.3s ease;
    padding: 20px;
    cursor: pointer;
    color: var(--black-color);
    text-decoration: none;
}

    .features-card .btn {
        padding: 10px 16px;
        min-height: 40px;
    }

    .features-card:hover {
        background-color: rgb(237, 250, 250);
    }

.features-img-wrap {
    align-items: flex-start;
    display: flex;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    border-radius: 24px;
    height: 350px;
    justify-content: flex-start;
    overflow: hidden;
    padding: 15px;
    position: relative;
    border-radius: 24px;
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px 0px;
}

    .features-img-wrap img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: inherit;
        object-position: center center;
        object-fit: contain;
    }

.features-card h5 {
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
}

.features-card h6 {
    font-size: 18px;
    text-decoration: none;
}

.features-card p {
    color: var(--middle-grey);
    text-decoration: none;
}


@media (max-width: 61.9988rem) {
    .section-head.head-page h1.title {
        font-size: 2.1250rem;
    }
}

.section-product {
    padding-top: 8rem;
    padding-bottom: 3rem;
    margin-bottom: 4rem;
}

/*section-product-img*/
.section-product-img {
    height: 500px;
    border-radius: 20px;
}

    .section-product-img img {
        width: 100%;
    }

.section-product-img-wrapper.big-padding {
    padding-bottom: 47%;
}

.section-product-img-wrapper.middle-padding {
    padding-bottom: 16%;
}

.section-product-img-wrapper .product-img-1 {
    border-radius: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center center;
    object-fit: cover;
}

.product-img-2 {
    max-width: 1120px;
    position: relative;
    margin: 0 auto;
    display: block;
    /*  left: 50%;
    top: 70px;
    transform: translateX(-50%) translateY(-85%); */
    border-radius: 20px;
    bottom: 0;
    box-shadow: 0 8px 24px #00000026;
    margin-top: -450px;
}



@media (max-width: 61.9988rem) {
    .section-product-img {
        height: 300px;
    }

    .product-img-2 {
        max-width: 90%;
        margin-top: -253px;
    }
}

@media (max-width: 35.9988rem) {
    .section-product-img {
        height: 250px;
    }

    .product-img-2 {
        margin-top: -140px;
    }
}

/*Benefits*/

.key-benefits {
    padding: 5rem 0;
}

@media (max-width: 61.9988rem) {
    .key-benefits {
        padding: 3rem 0;
    }
}

.key-benefits .nav-pills {
    background-color: rgb(247, 247, 247);
    border-radius: 500px;
    padding: 8px;
}

.nav-pills button.active {
    background-color: var(--white-color) !important;
    border-radius: 50rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: .5rem .5rem;
}


@media (max-width: 61.9988rem) {
    .key-benefits .nav-pills {
        background-color: transparent;
    }
}

.key-benefits img {
    width: 100%;
    max-width: 575px;
    border-radius: 20px !important;
    height: 385px;
    width: 100%;
    border-radius: inherit;
    object-position: center center;
    object-fit: cover;
}

.tab-icon {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-grey-var);
}

    .tab-icon svg {
        max-width: 20px;
    }

.key-benefits .tab-content h5 {
    font-size: 24px;
}

.client-slider-variant {
    padding-top: 16rem;
}

@media (max-width: 767.98px) {
    .client-slider-variant {
        padding-top: 10rem;
    }

    .section-product {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .client-slider-variant {
        padding-top: 8.2rem;
    }
}

/*About Page*/
.mission-section .container {
    padding-bottom: 60px;
    border-bottom: 1px solid #0003;
}

.mission-section-item {
    background-color: rgb(247, 247, 247);
    border-radius: 20px;
    padding: 32px;
}

    .mission-section-item h4 {
        font-family: "Manrope", sans-serif;
        font-weight: 600;
        font-size: 32px;
    }

.section-join {
    padding: 60px 0;
}

    .section-join h3 {
        font-family: "Manrope", sans-serif;
    }

/*contracts page*/
.card-img-hover {
    transition: transform 0.3s ease;
}

    .card-img-hover:hover {
        transform: scale(1.05);
    }

/*Contact*/
.contact-section {
    padding-bottom: 5rem;
}

    .contact-section h3 {
        font-family: "Manrope", sans-serif;
        font-weight: 600;
        font-size: 44px;
    }

    .contact-section a {
        color: var(--black-color);
        transition: all 0.4s ease;
        text-decoration: none;
    }

    .contact-section .list-unstyled h6 {
        font-weight: 600;
        font-size: 20px;
    }

    .contact-section a:hover {
        text-decoration: underline;
        color: var(--dark-green);
    }

.contact-form {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px 0px;
    padding: 40px;
    border-radius: 20px;
    background-color: var(--white-color);
}

@media (max-width: 575.98px) {
    .contact-form {
        padding: 20px;
    }

    .contact-section {
        padding-bottom: 3rem;
    }
}

.form-control {
    background-color: rgb(247, 247, 247);
}

.form-label {
    color: var(--middle-grey);
    font-size: 14px;
    font-weight: 400;
}

/*Blog*/
.section-blog .card {
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
}

    .section-blog .card .card-img-wrap {
        position: relative;
        /*max-height: 440px;
        overflow: hidden;
        min-height: 440px;*/
    }

        .section-blog .card .card-img-wrap img {
            width: 100%;
            /*position: absolute;
            height: 100%;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            object-position: center center;
            object-fit: cover;*/
            display: block;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

    .section-blog .card h5 {
        font-family: "Manrope", sans-serif;
        height: 24px;
        overflow: hidden;
        position: relative;
        font-size: 20px;
        font-weight: 600;
    }


    .section-blog .card p {
        height: 40px;
        overflow: hidden;
        position: relative;
        width: 100%;
        font-size: 14px;
    }

.blog-item-section {
    padding-bottom: 4rem;
}


.blog-item-section,
.container,
.row {
    overflow: visible;
    /* или не указан вовсе */
}

    .blog-item-section h2 {
        font-weight: 700;
        font-size: 24px;
    }

    .blog-item-section h3 {
        font-weight: 600;
        font-size: 52px;
    }

    .blog-item-section .img-blog {
        display: block;
        max-width: 400px;
        margin: 0 auto 30px;
    }

.blog-img-wrap {
    position: relative;
    padding: 15px;
    min-height: 400px;
    max-height: 400px;
    margin: 30px 0;
    overflow: hidden;
}

    .blog-img-wrap img {
        width: 100%;
        position: absolute;
        object-fit: cover;
        object-position: center center;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
    }

.blogs-section-cards {
    text-align: left;
}

    .blogs-section-cards h3 {
        font-weight: 600;
        font-size: 48px;
    }

#sticky-nav.fixed {
    position: fixed;
    top: 20px;
    /* или 0 */
    width: 300px;
    /* установи ширину вручную или через JS */
    z-index: 1020;
}


@media (max-width: 767.98px) {
    #sticky-nav {
        display: none;
    }
}

.career-item-page {
    padding-top: 4rem;
}

    .career-item-page h1 {
        font-family: "Manrope", sans-serif;
        font-weight: 600;
        font-size: 54px;
    }

@media (max-width: 767.98px) {
    .career-item-page h1 {
        font-size: 32px;
    }
}

.careers-card {
    background-color: rgb(247, 247, 247);
    min-height: 309px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
    text-decoration: none;
}

    .careers-card h5 {
        color: var(--black-color);
    }

    .careers-card p {
        color: rgb(102, 102, 102);
    }

    .careers-card .badge {
        background-color: rgb(102, 102, 102) !important;
        border-radius: 4px;
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
