:root {
    --page-primary-bg: linear-gradient(270deg, #59389C 0%, #3739A8 100%);
    --page-secondary-bg: linear-gradient(270deg, rgba(89, 56, 156, 0.05) 0%, rgba(55, 57, 168, 0.05) 100%);
    --page-fade: #E0F2FF;
    --text-theme: #1E1E1E;
    --text-grey: #50565D;
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-light {
    color: #7E7E7E !important;
}

.text-grey {
    color: var(--text-grey);
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    border: 1px solid #ffffff;
    background-color: #ffffff30 !important;
    font-weight: 600 !important;
    backdrop-filter: blur(8px);
}

.highlight-text {
    background: linear-gradient(270deg, #59389C 0%, #3739A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

@keyframes pulso-effect {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

h1,h2,h3,h4,h5,h6 {
    color: var(--text-theme) !important;
}

.section-wrapper h1,
.section-wrapper .h1,
.section-wrapper h2,
.section-wrapper .h2,
.section-wrapper h3,
.section-wrapper .h3,
.section-wrapper h4,
.section-wrapper .h4,
.section-wrapper h5,
.section-wrapper .h5,
.section-wrapper h6,
.section-wrapper .h6,
p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

.blur--effect {
    filter: blur(6px);
}

.qoute-link {
    background: linear-gradient(270deg, #59389C 0%, #3739A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}

/* Hero Intro */

.hero-intro {
    background-image: url(../images/edulead-images/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Client Slider */

.client--slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.client--block {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 15px 15px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    border: 1px solid #eee;
}

/* Business Block */

.busniess-block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 30px;
    transition: all 0.3s;
    background-color: var(--white-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.alternate--block .busniess-block {
    background: var(--page-secondary-bg);
}

.business-icon {
    width: 100px;
    height: 100px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0px 4px 10px 0px #0000001A;
    background-color: var(--white-color);
}

.busniess-block::before {
    content: '';
    width: 100%;
    height: 0%;
    inset: 0 auto auto;
    margin: auto;
    position: absolute;
    opacity: 0;
    transition: ease-in-out 0.3s;
    background: var(--page-primary-bg);
    border-radius: 30px 30px 250px 250px;
}

.busniess-block:hover::before {
    border-radius: 30px 30px !important;
    height: 100%;
    opacity: 1;
}

.busniess-block:hover h4,
.busniess-block:hover p {
    color: var(--white-color) !important;
}

/* Packages Intro */

.packages--block {
    border-radius: 30px;
    padding: 5px;
    height: 100%;
    background: var(--page-primary-bg);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.package--header {
    padding: 20px 20px 30px;
    min-height: 180px;
}

.package-badge {
    border: 1px solid var(--white-color);
    background-color: #43288E;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 17px;
    margin: 0 0 20px 10px;
    display: inline-block;
}

.package-details {
    padding: 30px 30px;
    background: var(--white-color);
    border-radius: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.package-details .button-primary {
    border-radius: 30px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.package-features {
    padding: 30px 0 0;
    border-top: 1px solid #CCCCCC;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 18px;
    font-weight: 400 !important;
}

/* Service Wrappper */

.service--wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Review Slider */

.review--slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.review--block {
    padding: 30px 30px;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(270deg, rgba(89, 56, 156, 0.05) 0%, rgba(55, 57, 168, 0.05) 100%);
}

/* CTA */

.cta--block {
    background-image: url(../images/edulead-images/cta-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.cta--block.block-2 {
    background-image: url(../images/edulead-images/cta-intro-2.webp);
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !important;
}

/* Responsive */

@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
    
    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 991px) {

    .spacer-xl {
        padding: 70px 0;
    }

    .tick-list {
        width: fit-content;
        margin-inline: auto;
    }

    .busniess-block {
        padding: 20px 20px;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

    .package-details {
        padding: 20px 20px;
    }

    .package--header {
        min-height: unset;
    }

    .service--wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    
    .mb-50 {
        margin-bottom: 30px !important;
    }

    .section-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 19px !important;
        line-height: 30px;
    }

    .package-badge {
        padding: 5px 16px;
        font-size: 14px;
        margin: 0 0 20px 10px;
    }
}