﻿.page {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #212121;
}

h1 {
    font-size: 52px;
    line-height: 68px;
}

h2 {
    color: #155036;
    font-size: 40px;
    line-height: 52px;
    padding: 0;
    margin: 0;
}

h3 {
    color: #155036;
    font-size: 24px;
    line-height: 40px;
    padding: 0;
    margin: 0;
}

.btn {
    line-height: normal;
}

.link {
    color: #2563EB !important;
    display: inline-block;
}

.header-section {
    background: linear-gradient(166.29deg, #FFFFFF 52.16%, #B3D3BF 104.21%);
    border-radius: 0 0 40px 40px;
    padding: 80px 0;
}

    .header-section h2 {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 24px;
    }

    .header-section .title-highlight {
        color: #155036;
    }

    .header-section .descr {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 32px;
    }

    .header-section .right-col {
        display: flex;
        justify-content: flex-end;
    }

.statistics-section {
    padding: 80px;
}

    .statistics-section .descr {
        font-size: 16px;
        line-height: 32px;
        margin-top: 16px;
    }

    .statistics-section .btn {
        margin-top: 24px;
    }

.customers-section {
    padding: 80px 0;
    text-align: center;
}

    .customers-section h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 32px;
    }


.features-section {
    padding: 80px 0;
}

    .features-section h2.main {
        text-align: center;
    }

    .features-section .content {
        margin-top: 80px;
    }

        .features-section .content h2 {
            color: #000;
            text-align: left;
            margin-top: 24px;
        }

        .features-section .content .row:not(:first-of-type) {
            margin-top: 120px;
        }

    .features-section .descr {
        font-size: 18px;
        line-height: 32px;
        margin-top: 24px;
    }

    .features-section .link {
        font-size: 18px;
        line-height: 32px;
        margin-top: 24px;
    }

.cta-section {
    background: linear-gradient(99.19deg, #001E11 -19.76%, #416B58 105.7%);
    color: #fff;
    padding-right: 64px;
}

    .cta-section img {
        width: 100%;
    }

    .cta-section h2 {
        color: #fff;
        margin-bottom: 24px;
    }

    .cta-section .descr {
        font-size: 18px;
        line-height: 32px;
    }

    .cta-section .btn {
        margin-top: 24px;
    }

.feature-list-section {
    background-color: #F5F5F5;
    padding: 120px 0;
}

    .feature-list-section h2 {
        text-align: center;
        margin-bottom: 40px;
    }

    .feature-list-section .row > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }

    .feature-list-section .card {
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        flex: 1;
        background-color: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 16px;
        padding: 24px;
        margin-top: 24px;
        cursor: pointer;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

        .feature-list-section .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background-color: var(--feature-color, #155036);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .feature-list-section .card:hover,
        .feature-list-section .card:focus-within {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

            .feature-list-section .card:hover::before,
            .feature-list-section .card:focus-within::before {
                opacity: 1;
            }

            .feature-list-section .card:hover .header .arrow,
            .feature-list-section .card:focus-within .header .arrow {
                color: #212121;
            }

    .feature-list-section .header {
        display: flex;
        justify-content: space-between;
    }

    .feature-list-section .icon-container {
        background-color: var(--feature-color, #155036);
        width: 48px;
        height: 48px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .feature-list-section .icon-container img {
            max-width: 24px;
        }

    .feature-list-section .arrow {
        color: #686868;
        display: block;
        font-size: 1.2em;
        transition: color 0.2s ease;
    }

    .feature-list-section .content {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 24px;
    }

        .feature-list-section .content h3 {
            color: #212121;
            font-size: 18px;
            line-height: 24px;
        }

        .feature-list-section .content .descr {
            color: #686868;
            font-size: 16px;
            line-height: 22px;
            margin-top: 16px;
        }

        .feature-list-section .content .link-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            transition: gap 0.2s ease;
        }

    .feature-list-section .card:hover .link-container,
    .feature-list-section .card:focus-within .link-container {
        gap: 16px;
    }

    .feature-list-section .content .link {
        color: #2563EB;
        line-height: normal;
        font-weight: 500;
        text-decoration: none;
    }

        .feature-list-section .content .link:hover {
            text-decoration: underline;
        }

    .feature-list-section .content .link-container .arrow {
        color: #2563EB;
        margin-left: 0;
    }

    .feature-list-section .modal-dialog {
        max-width: 640px;
        width: calc(100% - 32px);
        margin-left: auto;
        margin-right: auto;
    }

    .feature-list-section .modal-content {
        border: none;
        border-radius: 16px;
        overflow: hidden;
    }

    .feature-list-section .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        background-color: var(--feature-color, #155036);
        color: #fff;
        font-size: 24px;
        line-height: 32px;
        font-weight: bold;
        border-bottom: none;
        border-radius: 16px 16px 0 0;
        padding: 24px 32px;
    }

        .feature-list-section .modal-header .modal-header-title {
            flex: 1;
            min-width: 0;
        }

        .feature-list-section .modal-header .icon-container {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.3);
            flex-shrink: 0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
        }

            .feature-list-section .modal-header .icon-container img {
                max-width: 36px;
                filter: brightness(0) invert(1);
            }

        .feature-list-section .modal-header .close-container {
            flex-shrink: 0;
            margin-left: 16px;
        }

            .feature-list-section .modal-header .close-container .close-btn {
                width: 40px;
                height: 40px;
                background-color: rgba(255, 255, 255, 0.3);
                padding: 0;
                margin: 0;
                border: none;
                border-radius: 50%;
                color: #fff;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
                transition: background-color 0.2s ease;
            }

                .feature-list-section .modal-header .close-container .close-btn:hover,
                .feature-list-section .modal-header .close-container .close-btn:focus {
                    background-color: rgba(255, 255, 255, 0.3);
                    outline: none;
                }

                .feature-list-section .modal-header .close-container .close-btn .material-icons {
                    font-size: 20px;
                    line-height: 1;
                }

    .feature-list-section .modal-body {
        color: #686868;
        font-size: 14px;
        line-height: 22px;
        padding: 32px;
    }

        .feature-list-section .modal-body .label {
            color: #212121;
            font-size: 16px;
            line-height: 24px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .feature-list-section .modal-body .content {
            font-size: 14px;
            line-height: 20px;
            border-top: solid 1px #E5E5E5;
            margin-top: 24px;
            padding: 24px 0;
        }

        .feature-list-section .modal-body ul {
            margin: 0;
        }

        .feature-list-section .modal-body li:not(:first-of-type) {
            margin-top: 2px;
        }

        .feature-list-section .modal-body .tip {
            color: #155036;
            border: solid 2px #155036;
            border-radius: 8px;
            padding: 24px;
            display: flex;
            align-items: flex-start;
        }

            .feature-list-section .modal-body .tip img {
                width: 24px;
                margin-top: 4px;
                margin-right: 24px;
            }

        .feature-list-section .modal-body .btn {
            margin-top: 32px;
        }

.new-features-section {
    padding: 80px 0 120px 0;
}

    .new-features-section h2 {
        text-align: center;
    }

    .new-features-section .content {
        margin-top: 40px;
    }

    .new-features-section .item {
        font-size: 18px;
        line-height: 32px;
        margin-top: 48px;
    }

        .new-features-section .item h4 {
            font-size: 24px;
            line-height: 34px;
        }

    .new-features-section .btn-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 80px;
    }

        .new-features-section .btn-container .btn {
            height: auto !important;
            text-wrap-mode: wrap;
            padding-left: 24px;
            padding-right: 24px;
        }

.solutions-cards-section {
    background-color: #E8EEEB;
    padding: 80px 0;
}

    .solutions-cards-section h3 {
        color: #155036 !important;
    }

.testimonials-section {
    padding: 80px 0;
}

    .testimonials-section h2 {
        color: #155036;
        text-align: center;
        margin-bottom: 32px;
    }

    .testimonials-section .slider-widget {
        width: 100%;
    }

    .testimonials-section .slider-panel {
        width: 100%;
        overflow-x: hidden;
    }

        .testimonials-section .slider-panel.dragable {
            overflow-x: hidden;
        }

    .testimonials-section .slider-panel-track {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        min-width: 100%;
        max-width: none;
        padding: 4px 8px 4px 4px;
        gap: 30px;
        box-sizing: border-box;
    }

    .testimonials-section .slider-control-panel {
        margin-top: 24px;
    }

    .testimonials-section .item-card {
        box-sizing: border-box;
        flex-shrink: 0;
        min-width: 0;
        overflow-wrap: break-word;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
        padding: 48px;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .testimonials-section .company-name {
        font-size: 18px;
        line-height: 32px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .testimonials-section .customer-container {
        font-size: 14px;
        line-height: normal;
        font-weight: 700;
        margin-top: 16px;
        display: flex;
        align-items: center;
    }

        .testimonials-section .customer-container .img-container {
            margin-right: 8px;
        }

            .testimonials-section .customer-container .img-container img {
                height: 80px;
            }

    .testimonials-section .customer-job-title {
        margin-top: 8px;
    }

.case-studies-section {
    padding: 80px 0;
}

    .case-studies-section h2 {
        color: #155036;
        text-align: center;
        margin-bottom: 40px;
    }

    .case-studies-section .slider-widget {
        width: 100%;
    }

    .case-studies-section .slider-panel {
        width: 100%;
        overflow-x: hidden;
    }

        .case-studies-section .slider-panel.dragable {
            overflow-x: hidden;
        }

    .case-studies-section .slider-panel-track {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        min-width: 100%;
        max-width: none;
        padding: 4px 8px 4px 4px;
        gap: 30px;
        box-sizing: border-box;
    }

    .case-studies-section .slider-control-panel {
        margin-top: 32px;
    }

    .case-studies-section .item-card {
        box-sizing: border-box;
        flex-shrink: 0;
        min-width: 0;
        overflow-wrap: break-word;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
        padding: 48px;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .case-studies-section .item-card .img-container {
            max-width: 100%;
        }

            .case-studies-section .item-card .img-container img {
                width: 100%;
                max-height: 300px;
                height: auto;
                object-fit: cover;
            }

        .case-studies-section .item-card h5 {
            color: #155036;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .case-studies-section .item-card h4 {
            color: #212121;
            font-size: 24px;
            line-height: 32px;
            margin: 16px 0;
        }

        .case-studies-section .item-card .description {
            margin-bottom: 16px;
        }

        .case-studies-section .item-card a {
            color: #155036 !important;
            font-weight: 500;
        }

.support-section {
    margin-bottom: 0;
}

.page-template-productPageTemplate footer.eri-footer {
    margin-top: -40px;
}

.page-template-productPageTemplate .support-section {
    padding-bottom: 120px;
}


@media (prefers-reduced-motion: reduce) {
    .feature-list-section .card {
        transition: box-shadow 0.2s ease;
    }

        .feature-list-section .card:hover,
        .feature-list-section .card:focus-within {
            transform: none;
        }
}

@media (min-width: 1400px) {
    .header-section .left-col {
        padding-right: 40px;
    }
}

@media (max-width: 1400px) {
    h1 {
        font-size: 48px;
        line-height: 60px;
    }

    .statistics-section {
        padding: 80px 0;
    }

    .features-section .content .row:not(:first-of-type) {
        margin-top: 80px;
    }

    .cta-section .descr-col {
        padding: 32px 0;
    }

    .feature-list-section {
        padding: 96px 0;
    }
}

@media (min-width: 1200px) {
    .features-section h2.main {
        width: 70%;
    }

    .new-features-section .content {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .case-studies-section .item-card,
    .testimonials-section .item-card {
        flex: 0 0 calc((100% - 60px) / 3);
        width: calc((100% - 60px) / 3);
        max-width: calc((100% - 60px) / 3);
    }
}

@media (max-width: 1200px) {
    .statistics-section {
        padding: 64px 0;
    }

        .statistics-section .right-col {
            margin-top: 16px;
        }

    .customers-section {
        padding: 64px 0;
    }

    .features-section {
        padding: 64px 0;
    }

        .features-section .content {
            margin-top: 64px;
        }

            .features-section .content .row:not(:first-of-type) {
                margin-top: 56px;
            }

    .feature-list-section {
        padding: 64px 0;
    }

    .new-features-section {
        padding: 80px 0;
    }

        .new-features-section .content {
            margin-top: 24px;
        }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .case-studies-section .item-card,
    .testimonials-section .item-card {
        flex: 0 0 calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }
}

@media (min-width: 992px) {
}

@media (max-width: 991px) {
    h2 {
        font-size: 36px;
        line-height: 48px;
    }

    .header-section .right-col {
        margin-top: 48px;
    }

    .img-col {
        margin-top: 40px;
    }

    .cta-section {
        padding: 0;
    }

        .cta-section .descr-col {
            padding: 56px;
        }

    .new-features-section .content {
        margin-top: 0;
    }

    .case-studies-section {
        padding-top: 0;
    }

        .case-studies-section .item-card,
        .testimonials-section .item-card {
            flex: 0 0 calc(100% - 8px);
            width: calc(100% - 8px);
            max-width: calc(100% - 8px);
        }
}

@media (min-width: 768px) {
}

@media (max-width: 767px) {
    h1 {
        font-size: 36px;
        line-height: 48px;
    }

    h2 {
        font-size: 34px;
        line-height: 44px;
    }

    .statistics-section {
        padding: 56px 0;
    }

    .customers-section {
        padding: 56px 0;
    }

    .features-section {
        padding: 56px 0;
    }

        .features-section .content {
            margin-top: 56px;
        }

    .feature-list-section {
        padding: 56px 0;
    }

    .new-features-section .btn-container {
        margin-top: 64px;
    }

    .testimonials-section {
        padding: 64px 0;
    }

    .case-studies-section {
        padding: 0 0 64px 0;
    }
}

@media (min-width: 576px) {
}

@media (max-width: 575px) {
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .header-section {
        padding: 32px 0 40px 0;
    }

        .header-section h2 {
            font-size: 20px;
            line-height: 32px;
            margin-bottom: 16px;
        }

        .header-section .descr {
            font-size: 18px;
            line-height: 32px;
        }

        .header-section .btn {
            width: 100%;
        }

    .statistics-section {
        padding: 40px 0;
    }

        .statistics-section .btn {
            width: 100%;
        }

    .customers-section {
        padding: 40px 0;
    }

    .features-section {
        padding: 40px 0 48px 0;
    }

        .features-section .content {
            margin-top: 40px;
        }

            .features-section .content h3 {
                font-size: 20px;
                line-height: 32px;
            }

            .features-section .content h2 {
                margin-top: 16px;
            }

        .features-section .link {
            margin-top: 40px;
        }

    .cta-section .btn {
        width: 100%;
    }

    .feature-list-section {
        padding: 40px 0;
    }

        .feature-list-section h2 {
            margin-bottom: 16px;
        }

        .feature-list-section .content h3 {
            font-size: 16px;
            line-height: 24px;
        }

        .feature-list-section .content .descr {
            font-size: 14px;
            line-height: 22px;
        }

        .feature-list-section .content .link-container {
            margin-top: 32px;
        }

        .feature-list-section .content .link {
            font-size: 14px;
            line-height: normal;
        }

        .feature-list-section .modal-body .btn {
            width: 100%;
        }

    .new-features-section {
        padding: 64px 0;
    }

        .new-features-section > .container {
            padding: 0 40px;
        }

        .new-features-section .item {
            margin-top: 32px;
        }

            .new-features-section .item h4 {
                margin-bottom: 8px;
            }

        .new-features-section .btn-container {
            margin-top: 48px;
        }

        .new-features-section .btn {
            width: 100%;
        }

    .testimonials-section {
        padding: 56px 0;
    }

        .testimonials-section .testimonial {
            font-size: 18px;
            line-height: 32px;
        }

    .case-studies-section {
        padding: 0 0 56px 0;
    }

        .case-studies-section .item-card {
            padding: 24px;
        }

    .page-template-productPageTemplate .support-section {
        padding-bottom: 72px;
    }
}
