﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p {
    color: #000;
}

.nav-link {
    display: block;
    padding: 0.5rem 2.5rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.bg-aayaam {
    background: #ffb290;
    padding-top: 30px;
    padding-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-15 {
    margin-bottom: 15px;
}

.form-container-bg {
    background: url('../img/img-bg-final-2.jpg') no-repeat center center;
    background-size: cover; /* Makes image cover the container */
    border-radius: 10px;
    padding: 8px 8px;
    color: #fff;
}

.about-bg {
    /*background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url('../img/aayaam-about-bg.jpg') repeat center center;*/
    background: linear-gradient(rgb(203 203 203 / 50%), rgb(185 185 185 / 50%)), url(../img/aayaam-about-bg.jpg) repeat center center;
    background-size: cover; /* Makes image cover the container */
    border-radius: 10px;
    padding: 50px 50px;
    color: #fff;
}

@media(max-width:991px) {
    .about-bg {
        /*background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url('../img/aayaam-about-bg.jpg') repeat center center;*/
        background: linear-gradient(rgb(203 203 203 / 50%), rgb(185 185 185 / 50%)), url(../img/aayaam-about-bg.jpg) repeat center center;
        background-size: cover; /* Makes image cover the container */
        border-radius: 10px;
        padding: 0px 0px;
        color: #fff;
    }

    .exam-bg {
        background: orange;
        padding: 0px 0px;
        color: #000;
    }
}

.exam-bg {
    background: #ffb290;
    padding: 50px 50px;
    color: #000;
}

.exam-head {
    color: #a62320;
    text-align: center;
    margin-bottom: 30px;
}

.round-item {
    border: 1px solid #a62320;
    border-radius: 20px;
    color: #000;
    padding: 15px;
}

.round-item-contain1 {
    background: #fdc5ac;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 50%;
    padding: 10px;
}

.round-item-contain2 {
    background: #ffb3b1;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 50%;
    padding: 10px;
}

.round-item-contain3 {
    background: #f78584;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 50%;
    padding: 10px;
}



.col-sp {
    padding-top: 0px;
}

.aayaam-color {
    color: #a62320;
}

.exam-process {
    background-color: #fff0f0;
    border-radius: 20px;
    padding: 30px 40px;
}

@media(max-width:991px) {
    .exam-process {
        background-color: #fff0f0;
        border-radius: 20px;
        padding: 0px 0px;
    }
}

.features {
    background: #fff;
    color: #000;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 20px;
    border: 1px solid #a62320;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

    .features:hover {
        transform: scale(1.02);
    }

    .features .icon-text {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .features .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #ffc7c6;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; /* ✅ prevents shrinking when text gets large */
        transition: background-color 0.3s ease;
    }

    .features .icon-circle1 {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #ffb290;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; /* ✅ prevents shrinking when text gets large */
        transition: background-color 0.3s ease;
    }

    .features .icon-circle2 {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #9affb9;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; /* ✅ prevents shrinking when text gets large */
        transition: background-color 0.3s ease;
    }

    .features .icon-circle3 {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: #ffe5ef;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; /* ✅ prevents shrinking when text gets large */
        transition: background-color 0.3s ease;
    }

    .features .icon-circle svg {
        width: 32px !important; /* force fixed size */
        height: 32px !important;
        flex-shrink: 0; /* prevent shrinking */
        color: #333; /* default svg color */
        transition: color 0.3s ease;
    }

    .features .icon-circle1 svg {
        width: 32px !important; /* force fixed size */
        height: 32px !important;
        flex-shrink: 0; /* prevent shrinking */
        color: #333; /* default svg color */
        transition: color 0.3s ease;
    }

    .features .icon-circle2 svg {
        width: 32px !important; /* force fixed size */
        height: 32px !important;
        flex-shrink: 0; /* prevent shrinking */
        color: #333; /* default svg color */
        transition: color 0.3s ease;
    }

    .features .icon-circle3 svg {
        width: 32px !important; /* force fixed size */
        height: 32px !important;
        flex-shrink: 0; /* prevent shrinking */
        color: #333; /* default svg color */
        transition: color 0.3s ease;
    }

    .features:hover .icon-circle {
        background-color: #ff6b6b; /* hover bg */
    }

    .features:hover .icon-circle1 {
        background-color: #ea5e20; /* hover bg */
    }

    .features:hover .icon-circle2 {
        background-color: #68bf82; /* hover bg */
    }

    .features:hover .icon-circle3 {
        background-color: #ff2c7b; /* hover bg */
    }

    .features:hover .icon-circle svg {
        color: #fff; /* hover svg color */
    }

    .features:hover .icon-circle1 svg {
        color: #fff; /* hover svg color */
    }

    .features:hover .icon-circle2 svg {
        color: #fff; /* hover svg color */
    }

    .features:hover .icon-circle3 svg {
        color: #fff; /* hover svg color */
    }

.feature-sub-head {
    text-align: center;
    color: #a62320;
    margin-bottom: 20px;
}

.rewards-head {
    color: #000;
    text-align: center;
}

.rewards-div {
    padding: 20px;
    border-right: 1px solid #d7d6d6;
    border-bottom: 1px solid #d7d6d6
}

.rewards-div1 {
    padding: 32px;
    border-bottom: 1px solid #d7d6d6
}

.rewards-div2 {
    padding: 20px;
    border-right: 1px solid #d7d6d6
}

.rewards-div3 {
    padding: 20px;
}

.syllabus-head {
    text-align: center;
}

    .syllabus-head span {
        color: #a62320
    }

.syllabus {
    padding: 10px;
    border-radius: 20px;
    background-color: #fef0cc;
    border: 1px solid #a62320;
    transition: background-color 0.4s ease, transform 0.3s ease;
}

    .syllabus:hover {
        transform: scale(1.02);
    }

.rewards-svg {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 55px;
    font-size: 35px;
    height: 55px;
    background-color: rgb(230, 249, 239);
    color: var(--mts-colors-black);
}

.rewards-svg1 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 55px;
    font-size: 35px;
    height: 55px;
    background-color: rgb(237, 236, 255);
    color: var(--mts-colors-black);
}

.rewards-svg2 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 55px;
    font-size: 35px;
    height: 55px;
    background-color: rgb(255, 245, 208);
    color: var(--mts-colors-black);
}

.rewards-svg2 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 55px;
    font-size: 35px;
    height: 55px;
    background-color: rgb(255, 245, 208);
    color: var(--mts-colors-black);
}

.rewards-svg3 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 55px;
    font-size: 35px;
    height: 55px;
    background-color: rgb(255, 229, 239);
    color: var(--mts-colors-black);
}

.rewards-svg4 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 55px;
    font-size: 35px;
    height: 55px;
    background-color: rgb(255, 239, 224);
    color: var(--mts-colors-black);
}

.rewards-svg5 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 55px;
    font-size: 35px;
    height: 55px;
    background-color: rgb(230, 224, 255);
    color: var(--mts-colors-black);
}

svg {
    color: #000;
}

round-item-contain1 {
    color: #000;
}

.form-outer {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    /*background-color: rgba(254, 254, 254, 0.5) !important;*/
    border-radius: 40px;
    padding: 40px 20px;
}

    .form-outer h2 {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        font-size: 28px;
        line-height: 34px;
        font-weight: 600;
        color: #000000;
        text-align: center;
        /* text-shadow: 1px 1px rgba(0, 0, 0, 0.5); */
        margin: 0 0 30px 0;
    }

    .form-outer .form-group {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        margin: 0 0 25px 0;
    }

        .form-outer .form-group label {
            display: inline-block;
            width: 100%;
            vertical-align: top;
            font-size: 18px;
            line-height: 24px;
            color: #264796;
            font-weight: 500;
            margin: 0 0 6px 0;
        }

    .form-outer .form-check {
        margin: 0;
        padding: 0;
        margin-top: 5px;
    }

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem;
}

.form-outer .form-check .form-check-input {
    float: left;
    margin: 2px 10px 0 0;
    width: 16px;
    height: 16px;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}

.form-check-input[type=checkbox] {
    border-radius: .25em;
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-outer .form-group .form-check-label {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin: 0 0 2px 0;
    float: left;
    width: calc(100% - 28px);
    color: #000;
}

.stage-one {
    background: linear-gradient(to right, #ea6327, #ef9168);
    /* direction: to right, colors: dark green → light green */
    color: #fff; /* text color */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stage-trophy {
    text-align: center;
    padding: 20px;
}

.img-block {
    width: 56px; /* same as image width */
    height: 56px; /* same as image height */
    border-radius: 50%; /* makes it a perfect circle */
    background: #ffee62;
    display: inline-block; /* so it behaves like a span */
    text-align: center; /* centers inline content */
    line-height: 56px;
}

.stage-two {
    background: linear-gradient(to right, #a62320, #bb5c5a);
    /* direction: to right, colors: dark green → light green */
    color: #fff; /* text color */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.stage-one-ico {
    background: #fff;
    border-radius: 50%;
    padding: 10px;
}

.stage-arrow {
    text-align: center;
    color: #000;
    padding-top: 10px;
    padding-bottom: 10px;
}

.stage-q-block {
    text-align: center;
    color: #000;
    border-radius: 10px;
    border: 1px solid #a62320;
    padding-top: 10px;
    padding-bottom: 10px;
}

.form-outer .form-group label {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    font-size: 18px;
    line-height: 24px;
    color: #264796;
    font-weight: 500;
    margin: 0 0 6px 0;
}

.form-outer .form-group .form-check-outer .form-check-label {
    font-size: 16px;
}

.form-outer .form-group .form-check-label {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin: 0 0 2px 0;
    float: left;
    width: calc(100% - 28px);
    color: #000;
}

.form-outer .form-group label {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    font-size: 18px;
    line-height: 24px;
    color: #264796;
    font-weight: 500;
    margin: 0 0 6px 0;
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.form-outer .btn-outer .btn {
    display: inline-block;
    width: auto;
    background-color: #c42f24;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 30px;
    border: none;
    padding: 5px 40px;
}

.btn {
    display: inline-block;
    width: auto;
    background-color: #009c43;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 30px;
    border: none;
    padding: 5px 40px;
}

    .btn:hover {
        display: inline-block;
        width: auto;
        background-color: #a62320;
        font-size: 24px;
        line-height: 30px;
        font-weight: 500;
        color: #ffffff;
        border-radius: 30px;
        border: none;
        padding: 5px 40px;
    }

.btn2 {
    display: inline-block;
    width: auto;
    background-color: #a62320;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    padding: 5px 40px;
}

    .btn2:hover {
        display: inline-block;
        width: auto;
        background-color: #a62320;
        font-size: 24px;
        line-height: 30px;
        font-weight: 500;
        color: #ffffff;
        border-radius: 10px;
        border: none;
        padding: 5px 40px;
    }

.why-head {
    text-align: center;
    color: #000;
}

    .why-head span {
        color: #a62320;
    }

.form-outer .form-group .form-control {
    display: inline-block;
    width: 100%;
    height: 50px;
    vertical-align: top;
    font-size: 20px;
    color: #000;
    font-weight: 300;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 0 15px;
    outline: none !important;
    box-shadow: none !important;
}

.h2-bold {
    font-weight: 700;
}

.typed-word {
    border-right: 2px solid #333;
    padding-right: 5px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}
/* Optional: smaller padding for mobile */
@media (max-width: 767px) {
    .form-container-bg {
        padding: 10px 0px;
    }

    .col-sp {
        padding-top: 0px !Important;
    }

    .mb-40 {
        margin-bottom: 20px !important;
    }

    .form-outer {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        background-color: rgba(254, 254, 254, 0.5) !important;
        border-radius: 40px;
        padding: 15px 4px;
    }

    .cent-mob {
        text-align: center
    }
}
/* Smooth dropdown */
/*.dropdown-menu {
    display: none;
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}*/
/* Center menu links in mobile view */
@media (max-width: 991px) {
    .navbar-collapse {
        text-align: left;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }
}

.nav-sp {
    margin-left: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #c8e5a4;
    border: 1px solid #ccc;
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}

.marquee-item {
    display: inline-block;
    margin-right: 50px; /* spacing between items */
    font-size: 18px;
    padding: 0 10px;
    border-radius: 5px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}
/*.item-show {
    display: block;
}

@media(max-width:991px) {
    .item-show {
        display: none !important;
    }
}*/
/* Full-width breadcrumb section */
.breadcrumb-bg {
    position: relative;
    width: 100%;
    background: url('../img/breadcrumb-bg-fin.jpg') no-repeat center center;
    background-size: cover;
    padding: 90px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

    /* Overlay to darken the image */
    .breadcrumb-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5); /* adjust opacity */
        z-index: 0;
    }

    /* Heading and breadcrumb above overlay */
    .breadcrumb-bg > * {
        position: relative;
        z-index: 1;
    }

    /* Breadcrumb styling */
    .breadcrumb-bg .breadcrumb {
        background: rgba(0,0,0,0.3); /* optional light overlay behind breadcrumb */
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        display: inline-block;
        margin-top: 15px;
    }

    .breadcrumb-bg .breadcrumb-item + .breadcrumb-item::before {
        content: "›";
        color: #fff;
    }

@media (max-width: 576px) {
    .breadcrumb-bg {
        padding: 50px 15px;
    }

        .breadcrumb-bg .breadcrumb {
            font-size: 0.9rem;
        }
}

input[type="radio"] {
    margin-right: 8px; /* space after radio button */
}

label {
    margin-right: 20px; /* space after label */
}

.contact-head {
    color: #a62320;
}

.contact-svg {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
    line-height: 1em;
    flex-shrink: 0;
    color: rgb(255, 119, 0);
    margin-right: 0.75rem;
}

.contact-head span {
    color: #ea5e20
}

.bg-white {
    background: #ffffff;
    border-bottom: 1px solid #e7faee;
}

section.bannerSection {
    padding: 0 10px;
    background: linear-gradient(135deg, #c7e6a4, /* lighter #a7c957 */
    #ffd4a8, /* lighter #f4a261 */
    #f3a798 /* lighter #e76f51 */
    );
}

@media(max-width:991px) {
    section.bannerSection {
        padding: 0px
    }
}

.website-title {
    font-size: 48px;
    font-weight: 700;
    color: #00883c;
    padding-top: 20px;
    text-align: center;
    /* text-align: right; */
    /* margin-right: 150px; */
    /* margin-top: 50px; */
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    text-shadow: -2px -1px 0px rgb(234 196 196 / 30%);
}

@media(max-width:991px) {
    .website-title {
        font-size: 34px;
    }
}

.bannerForms {
    background: #0f4c5c;
    padding: 10px;
    max-width: 500px;
    /* max-width: 600px; */
    margin: 19px auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px 4px rgba(19, 35, 47, .3);
}

.reg-wrap {
    position: relative;
    margin: 0 auto 2rem;
    /* background: #00bcd44f; */
    background: #ffffff;
    /* width: 657px; */
    border-radius: 5px;
    /* box-shadow: 5px -7px 14px 1px #a09191; */
    padding: 15px;
    /* font-family: 'Helvetica Neue', Arial, Sans-Serif; */
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    transition: all 0.5s ease-in;
    z-index: 2;
}

@media(max-width:991px) {
    .reg-wrap {
        padding: 0px;
    }
}

.reg-wrap h2 {
    text-align: center;
    font-size: 2em;
    margin-top: 10px;
    color: #00883c;
    /* color: #ffe9e7; */
    font-weight: 800;
    /* text-shadow: -2px 4px 7px #244288; */
}

.reg-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: -webkit-linear-gradient(left, #27ae60 0%, #27ae60 20%, #8e44ad 20%, #8e44ad 40%, #3498db 40%, #3498db 60%, #e74c3c 60%, #e74c3c 80%, #f1c40f 80%, #f1c40f 100%);
    background: -moz-linear-gradient(left, #27ae60 0%, #27ae60 20%, #8e44ad 20%, #8e44ad 40%, #3498db 40%, #3498db 60%, #e74c3c 60%, #e74c3c 80%, #f1c40f 80%, #f1c40f 100%);
    height: 5px;
    border-radius: 5px 5px 0 0;
}

.singleSlider {
    width: 100%;
    height: auto;
}

    .singleSlider .swiper-slide {
        width: 100%;
        height: auto;
    }

    .singleSlider img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

.about-title-sec {
    margin-bottom: 37px;
}

    .about-title-sec > *:first-child {
        margin-top: -8px;
    }

.about-title-sec-head {
    color: #00883c;
}

    .about-title-sec-head span {
        color: #c1121f
    }

.about-title-sec p {
    margin-top: 25px;
}

.about-title-sec .campus-widget {
    padding: 0 60px;
}

    .about-title-sec .campus-widget .campus-widget-item {
        display: flex;
        max-width: 400px;
    }

        .about-title-sec .campus-widget .campus-widget-item .features-item-02__icon {
            margin-bottom: 26px;
        }

@media only screen and (max-width: 575px) {
    .about-title-sec .campus-widget .campus-widget-item {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {
    .about-title-sec .campus-widget .campus-widget-item__content {
        padding-left: 0;
        padding-top: 20px;
    }
}

.about-image {
    position: relative;
}

    .about-image .feature-image__shape-01 {
        width: 24px;
        height: 24px;
        background-color: #00883c;
        position: absolute;
        left: -60px;
        bottom: 190px;
    }

.feature-image__shape-02 {
    width: 24px;
    height: 24px;
    background-color: #ED3237;
    position: absolute;
    left: -36px;
    bottom: 166px;
}

@media (min-width: 576px) {
    .mt-sm-10 {
        margin-top: 3.125rem !important;
    }
}

.features-item-02 {
    background-color: #FFFFFF;
    padding: 31px 30px 33px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(51, 51, 51, 0.15);
}

.campus-widget-item__icon {
    flex-shrink: 0;
    font-size: 62px;
    color: #333;
    line-height: 0;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.features-item-02 + .features-item-02 {
    margin-top: 30px;
}

.why-bvn {
    background: #efffdb;
}

.about-image-04 {
    position: relative;
    z-index: 1;
    padding: 30px 0 40px;
}

.about-image-04__image {
    text-align: center;
}

.about-image-04__shape-01 {
    position: absolute;
    top: 0px !important;
    left: 0 !important;
    z-index: -1;
    transition: none;
}

.about-image-04__shape-02 {
    position: absolute;
    top: auto !important;
    left: auto !important;
    right: 50px;
    bottom: 0;
    transition: none;
}

.about-image-04__shape-03 {
    position: absolute;
    top: auto !important;
    left: 20px !important;
    bottom: 27%;
    width: 132px;
    height: 132px;
    border: 32px solid #00883c;
    border-radius: 50%;
    z-index: -1;
    transition: none;
}

.about-content-02 {
    padding-top: 24px;
}

.about-content-02__sub-title {
    font-size: 20px;
    line-height: 1.6em;
    color: #00883c;
    margin-bottom: 23px;
}

.about-content-02__main-title {
    font-size: 34px;
    line-height: 1.3;
    background-color: transparent;
    background-image: linear-gradient(-135deg, #E8445C 0%, #F2A42E 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

@media only screen and (max-width: 575px) {
    .about-content-02__sub-title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .about-content-02__main-title {
        font-size: 22px;
        line-height: 1.5;
    }
}

.bvn-box-item-03 {
    text-align: start;
    padding: 32px 30px 20px 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 2px 10px 0px rgba(51, 51, 51, 0.15);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.campus-widget {
    padding: 0 60px;
}

.campus-widget-item {
    display: flex;
}

.features-item-02__icon {
    margin-bottom: 26px;
}

.campus-widget-item__content {
    flex-grow: 1;
    padding-left: 22px;
}

.campus-widget-item__title {
    font-size: 18px;
    line-height: 1.6;
}

.campus-widget-item__content p {
    margin-top: 5px;
}

@media only screen and (max-width: 575px) {
    .campus-widget-item {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {
    .campus-widget-item__content {
        padding-left: 0;
        padding-top: 20px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

.bvn-box-section__title {
    color: #00883c;
    font-size: 16px;
}

.countdown-title__title {
    font-size: 32px;
    line-height: 1.4;
    margin-top: -8px;
}

.countdown-title p {
    margin-top: 12px;
}

.features-item-02 {
    background-color: #FFFFFF;
    padding: 31px 30px 33px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(51, 51, 51, 0.15);
}

.campus-widget-item__icon {
    flex-shrink: 0;
    font-size: 62px;
    color: #333;
    line-height: 0;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

features-item-02__title {
    font-size: 18px;
    line-height: 1.6;
}

.course-info__badge-text.badge-beginner {
    background: rgba(0, 136, 60, 0.15);
    color: #00883c;
}

.features-item-02 + .features-item-02 {
    margin-top: 30px;
}

.course-info__badge-text.badge-all {
    background: rgba(23, 184, 193, 0.15);
    color: #17b8c1;
}

.course-info__badge-text {
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    border-radius: 2px;
    padding: 2px 10px;
    background: #252525;
    color: #fff;
    margin-bottom: 10px;
}

.mt-20 {
    margin-top: 20px;
}
.section-title .pre-title {
    font-weight: 800;
    font-size: 16px;
    line-height: 26px;
    color: #009c43;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.section-title .title {
    margin-bottom: 0;
    font-size: 40px;
}

.mt--20 {
    margin-top: 20px !important;
}

.service-card-8 .inner {
    background: #EAF8F6;
    border-radius: 5px;
    text-align: center;
    padding: 30px;
    position: relative;
    transition: 0.4s;
    margin-bottom: 20px;
}

    .service-card-8 .inner .icon {
        position: relative;
        width: 75px;
        height: 75px;
        display: flex;
        align-items: center;
        background: #FFFFFF;
        border-radius: 100%;
        justify-content: center;
        margin: 0 auto;
    }

    .service-card-8 .inner .content {
        margin-top: 20px;
    }

        .service-card-8 .inner .content .title {
            font-weight: 700;
            font-size: 18px;
            line-height: 28px;
            margin-bottom: 5px;
        }

        .service-card-8 .inner .content span {
            font-weight: 500;
            font-size: 16px;
            line-height: 26px;
        }

    .service-card-8 .inner .hover-action {
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.4s;
        opacity: 0;
    }

        .service-card-8 .inner .hover-action .read-more-btn {
            width: 40px;
            height: 40px;
            background: #009c43;
            color: #fff;
            display: inline-block;
            line-height: 43px;
            border-radius: 100%;
            font-size: 20px;
        }

.service-card-8:hover .inner .hover-action {
    opacity: 1;
}

.service-card-8:hover .inner {
    padding-bottom: 50px;
    margin-bottom: -20px;
}

.service-card-8.shape-bg-2 .inner {
    background: #FFF3EE;
}

.service-card-8.shape-bg-3 .inner {
    background: #FAEFFA;
}

.service-card-8.shape-bg-4 .inner {
    background: #FFF1F1;
}

.service-card-8.shape-bg-5 .inner {
    background: #EFF4FC;
}

