:root {
    --primary-bg: #B8FB3C;
    --page-fade: #F7FFE9;
    --page-light: #FAFAFA;
    --page-dark: #070A0D;
    --tick-icon: url(../images/education-images/check-icon.webp);
    --tick-icon-2: url(../images/education-images/check-icon-2.webp);
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.padding-left {
    --page-width: 1600px;
    padding-left: calc(50% - (var(--page-width) / 2) + 12px);
}

.button_theme-secondary {
    justify-content: center !important;
}

.button {
    transition: all 0.3s;
}

.button-secondary {
    display: flex !important;
    align-items: center;
    gap: 20px;
    width: fit-content !important;
}

.button-secondary {
  color: #FFF;
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.button-secondary.button-icon::after {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-fade {
    background-color: var(--page-fade);
}

.primary-bg {
    background-color: var(--primary-bg);
}

.page-light {
    background-color: var(--page-light);
}

.page-dark {
    background-color: var(--page-dark);
}

.highlight-text {
    color: var(--primary-bg) !important;
}

.z-1 {
    position: relative;
   z-index: 1;
}

.img-blk {
    border-radius: 20px;
}

/* Banner */

.page-hero {
    padding-block: 20px 90px !important;
}

.banner-icon-1 {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.banner-icon-2 {
    position: absolute;
    right: -20%;
    bottom: 30%;
}

.tick-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 15px;
}

.tick-list li {
    font-size: 20px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--page-dark);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Video Block */

.video--block {
    position: relative;
}

.video--block > img {
    width: 100%;
}

.video--block video {
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
}

#videoToggle {
    position: absolute;
    inset: auto 0 20px 0 !important;
    margin: auto;
    width: 100px;
    height: 40px;
    min-width: 100px;
    border-radius: 10px;
    border: none;
    background: var(--primary-bg);
    display: flex;
    padding: 0 !important;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-theme) !important;
    font-weight: 600 !important;
    box-shadow: 0 0 0 20px rgba(74, 222, 128, 0);
}

/* Cerification Block */ 

.certi-intro {
    border-radius: 40px;
}

.certi--wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
    justify-content: center;
    align-items: center;
    align-content: center;
}

/* Steps Wrapper */

.step-padding {
    padding-bottom: 120px !important;
}

.steps--wrapper {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    margin: 120px 0 0 !important;
}

.step-arrow {
    position: absolute;
    inset: 0;
    margin: 20% auto auto;
}

.steps--wrapper li {
    background-color: var(--white-color);
    box-shadow: 0px 0px 24px 0px #00000026;
    border-radius: 30px;
    padding: 80px 30px 40px;
}

.steps--block {
    background-color: #FFEFE7;
    padding: 30px 30px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.steps--wrapper > li {
    width: 45%;
    position: relative;
    transform: rotate(9deg);
}

.steps--wrapper > li:nth-child(even) {
    margin-left: auto;
    transform: rotate(-7deg);
    margin-top: -130px;
}

.steps--wrapper li:nth-child(2) .steps--block,
.steps--wrapper li:nth-child(5) .steps--block {
    background-color: #E2E8FE;
}

.steps--wrapper li:nth-child(3) .steps--block {
    background-color: #F4E4FF;
}

/* Business Block */

.business--block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    background-color: transparent;
    border: 1px solid #DEDEDE;
}

.business--block:hover {
    transform: translateY(-5px);
    border-color: var(--primary-bg);
}

/* Packages Block */

.packages--block {
    background-color: #222;
    border-radius: 30px;
    padding: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.package-details .package-title {
    border-bottom: 1px solid #F2F2F2;
    padding: 0 0 30px;
}

.packages--block .tick-list {
    padding: 0;
}

.packages--block .tick-list li::before {
    background-image: var(--tick-icon-2);
}

.packages--block .tick-list li {
    color: var(--white-color);
}

.packages--block.premium--package::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 50px;
    border-radius: 30px 30px 0 0;
    background: #404040;
    backdrop-filter: blur(9px);
}

/* 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 {
    background-color: #F7FFE9;
    padding: 30px 30px;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* CTA Block */

.cta--wrap {
    padding: 60px 60px 0 60px;
    border-radius: 20px;
    background-color: var(--primary-bg);
}

.cta--blk {
    background: url(../images/education-images/cta-intro.webp), var(--primary-bg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 90px 90px;
}

/* Faq */

.accordion__heading {
    font-weight: 500 !important;
}

@media only screen  and (max-width: 1599px) {

    .banner-icon-1 {
        right: -40%;
        top: -10px;
    }

    h2, .h2 {
        font-size: clamp(32px, -17.76px + 4.9538vw, 68px);
    }

    .step-arrow {
        margin: 30% auto auto;
    }
}

@media only screen  and (max-width: 1200px) {

    .steps--wrapper li {
        padding: 20px 20px 20px;
    }

    .steps--wrapper > li:nth-child(even) {
        margin-top: -150px;
    }
}

@media only screen  and (max-width: 991px) {

    .banner-icon-1,
    .banner-icon-2 {
        display: none;
    }

    .text-align-center {
        text-align: center;
    }

    .steps--wrapper {
        margin: 50px 0 0 !important;
        gap: 40px;
    }

    .step-arrow {
        display: none;
    }

    .steps--wrapper > li {
        width: 100%;
        transform: unset !important;
        margin: 0 !important;
    }
}

@media only screen  and (max-width: 767px) {

    .certi--wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

}