:root {
    --page-primary-bg: #015CEA;
    --page-secondary-bg: #EAF2FF;
    --text-theme: #000000;
    --text-grey: #3F4751;
    --tick-icon: url(../images/edu-images/check-icon.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background-color: var(--page-secondary-bg);
}

.text-theme {
    color: var(--text-theme);
}

.text-grey {
    color: var(--text-grey) !important;
}

.link-active,
.link-active:hover {
    color: var(--page-primary-bg) !important;
    text-decoration: underline !important;
}

.circle-icon,
.border-0 {
    border: none;
}

.button {
    border-radius: unset !important;
    font-family: 'Gilroy' !important;
    padding: 12px 16px !important;
}

.z-1 {
    position: relative;
    z-index: 1;
}

/* Hero Section */

.hero-section {
    background-image: url('../images/edu-images/banner-intro.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--white-color);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 4px auto 0 0;
    width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
}

/* Counter */

.counter-grid {
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    display: grid;
    gap: 20px;
}

.counter-theme {
    border-right: 1.5px solid #00000033;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.counter-text {
    color: var(--page-primary-bg);
}

.counter-text.percent::after {
    content: '%';
}

/* Service Wrapper */

.service--block {
    width: 100%;
    padding: 30px 30px;
    border: 1px solid #D4CBCB;
    background-color: transparent;
    transition: all 0.3s;
}

.service--icon {
    width: 100%;
    max-width: 100px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background-color: var(--page-secondary-bg);
    -webkit-clip-path: path("M59.6589 0.350726C74.8205 0.683989 80.0392 3.42858 88.9397 15.7073C97.2024 27.1059 103.424 40.6469 99.9905 54.3001C96.6307 67.6595 84.466 75.7507 72.2421 82.1017C59.3593 88.795 45.21 94.833 31.5759 89.8451C16.4368 84.3066 3.71762 71.7042 0.592979 55.8895C-2.4482 40.4972 6.71032 26.2868 16.6138 14.1175C26.3554 2.14712 44.2293 0.0115731 59.6589 0.350726Z");
    clip-path: path("M59.6589 0.350726C74.8205 0.683989 80.0392 3.42858 88.9397 15.7073C97.2024 27.1059 103.424 40.6469 99.9905 54.3001C96.6307 67.6595 84.466 75.7507 72.2421 82.1017C59.3593 88.795 45.21 94.833 31.5759 89.8451C16.4368 84.3066 3.71762 71.7042 0.592979 55.8895C-2.4482 40.4972 6.71032 26.2868 16.6138 14.1175C26.3554 2.14712 44.2293 0.0115731 59.6589 0.350726Z");
}

.service--block:hover {
    box-shadow: 0px 4px 20px 0px #005BE766;
    border-color: transparent;
}

.service--block:hover .service--icon {
    background-color: var(--page-primary-bg);
}

.service--block:hover .service--icon img {
    filter: invert();
}

/* Benefit Block */

.benefit-block {
    background-color: var(--white-color);
    padding: 30px 30px;
    box-shadow: 0px 0px 20px 0px #DDD9FB57;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.benefit-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-block:hover {
    background-color: var(--page-primary-bg);
}

.benefit-block:hover h4,
.benefit-block:hover p {
    color: var(--white-color) !important;
}

/* Choose Block */

.choose--wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.choose--block {
    display: grid;
    grid-template-columns: auto 450px;
    gap: 30px;
    transition: all 0.3s;
}

.choose--block.reverse--block{
    grid-template-columns: 450px auto;
}

.choose-content {
    border-radius: 20px;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s;
    background: #176AEB;
}

.choose--block:hover .choose-content {
    background-color: #D1E2FE;
}

.choose--block:hover .choose-content h4,
.choose--block:hover .choose-content p {
    color: var(--text-theme) !important;
}

/* CTA */

.cta-intro {
    background-image: url('../images/edu-images/cta-intro.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--page-primary-bg);
}

.cta-img {
    margin: -120px 0;
}

.cta-wrapper {
    background-image: url('../images/edu-images/cta-intro-2.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--page-secondary-bg);
    padding: 0 90px;
    border-radius: 30px;
}

.cta-img-2 {
    margin: -30px 0;
}

/* FAQ lock */

main .accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 24px;
}

/* Responsive */


@media (max-width: 1599px) {
    .padding-left {
        --page-width: 1200px;
        padding-left: calc(50% - (var(--page-width) / 2) + 12px);
    }
}


@media only screen and (max-width: 1399px) {

}

@media only screen and (max-width: 991px) {

    .text-align-center {
        text-align: center;
    }

    .tick-list {
        width: fit-content;
        margin-inline: auto;
    }

    .tick-list li {
        font-size: 18px;
    }

    .button {
        width: auto !important;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-grid .counter-theme:nth-child(2) {
        border: none;
    }

    .cta-wrapper {
        padding: 50px 20px;
        border-radius: 20px;
    }
}

@media only screen   and (max-width: 767px) {

    .choose--block {
        display: flex;
        flex-direction: column-reverse;
    }

    .choose--block.reverse--block {
        flex-direction: column;
    }

    .choose-img img {
        width: 100%;
    }

    .choose-content {
        padding: 20px 20px;
    }

    .counter-grid {
        gap: 20px 0px;
    }

    .counter-theme {
        padding: 0 10px;
    }

}