@import url('https://fonts.googleapis.com/css2?family=K2D:wght@400;500;700&amp;family=Poppins:wght@300;400;500;600;700&amp;display=swap');

:root {
    --white: #fff;
    --black: #000;
    --primary: #e12727;
    --secondary: #3c0303;
    --para: #404040;
}


::selection {
    background-color: var(--primary);
    color: var(--white);
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: 10px;
    scrollbar-color: var(--primary) var(--white);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: var(--white);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 1rem;
    border: 2px solid var(--white);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    overflow-wrap: break-word;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

p {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--para);
}

a,
button {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul,
ol,
dl,
address,
label,
figure {
    margin-bottom: 0;
}

section {
    position: relative;
}

.themeBtn,
.themeBtn2 {
    color: var(--white);
    background-color: var(--primary);
    border: 3px solid var(--primary);
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    transition: 0.3s all;
    font-weight: 600;
    text-transform: capitalize;
}

.themeBtn:hover,
.themeBtn2:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--white);
}

.themeBtn2 {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.themeBtn2:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.padd-y {
    padding: 4rem 0;
}

.navbar-brand img {
    transition: 0.3s ease-in-out;
    max-width: 160px;
}

header {
    padding: 1rem 0;
    transition: 0.3s ease-in-out;
    background: linear-gradient(90deg, #fff, #ebf2fa, #fff);
}

.navbar-nav {
    gap: 1rem 1rem;
    justify-content: space-between;
    /* width: 100%; */
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    text-transform: capitalize;
    line-height: 1;
    padding: 0;
    position: relative;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .dropdown-item:hover {
    color: var(--primary);
}

header .menuBtn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.headerCall {
    color: var(--secondary);
    font-weight: 700;
    display: flex;
    align-items: end;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.headerCall:hover {
    color: var(--primary);
}

.headerCall:hover span i {
    color: var(--secondary);
}

.headerCall span i {
    transform: rotate(90deg);
    color: var(--primary);
    font-size: 1.85rem;
}

/* banner */
.banner {
    background: url(../images/banner.webp)center/cover no-repeat;
    padding: 6rem 0;
}

.banner h1 {
    font-size: 44px;
    color: var(--black);
    padding-left: 0;
}

.bannerVideo {
    width: 100%;
    object-fit: cover;
}

.span-gradiant {
    color: var(--primary);
    background: linear-gradient(90deg, rgb(225 39 39) 0%, rgb(185 17 17) 35%, rgb(60 3 3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span {
    font-weight: 700;
}

.banner-form {
    background-color: var(--primary);
    padding: 2rem;
    border-radius: 0.9375rem;
}

.banner-form h2 {
    color: var(--white);
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.banner-form p {
    color: var(--white);
    text-align: center;
}

.banner-form :is(input, textarea) {
    display: block;
    width: 100%;
    padding: 0.5rem 0.625rem;
    outline: none;
    border: none;
    border-radius: 0.625rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.banner-form :is(input, textarea)::placeholder {
    color: var(--secondary);
}

.banner-form .themeBtn2 {
    width: 100%;
}

.hand-img {
    position: absolute;
    left: 70%;
    bottom: -26%;
}

.offer-sec h2 {
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.offer-img {
    width: 100%;
    object-fit: cover;
}

.support {
    margin-bottom: 2rem;
}

.support h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary);
}

.support p {
    font-size: 1.125rem;
}

.offers {
    background-color: #faecec;
    border-radius: 0.9375rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.offers img {
    margin-bottom: 1rem;
}

.offers h3 {
    font-size: 2.125rem;

}

.offers p {
    font-size: 1.12rem;
}

.offer-sec ul {
    position: relative;
}

.offer-sec ul li {
    margin-bottom: 1rem;
    position: sticky;
    top: 30px;
}

/* our-subject-sec */
.our-subject-sec {
    background-color: #080312;
    padding: 7rem 0 6rem;
}

.our-subject-title h2 {
    font-size: 4rem;
    font-weight: 600;
    color: var(--white);
}

.subject-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.subject-list-card {
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 0.875rem;
    background: transparent;
    position: relative;
}

.subject-list-card:hover {
    /* background: linear-gradient(90deg, rgb(225 39 39) 0%, rgb(185 17 17) 35%, rgb(60 3 3) 100%); */
}

.subject-list-card:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(7%) saturate(2%) hue-rotate(158deg) brightness(107%) contrast(100%);
}

.subject-list-card figcaption {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-transform: capitalize;
}

/* enlist-sec */
.enlist-sec {
    padding: 4rem 0;
    background: url("../images/enlist-sec-bg.webp") no-repeat, center;
    background-size: cover;
}

.enlist-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}

/* our-foremost-sec */
/* .our-foremost-sec {
    background: url("../images/foremost-sec-bg.html") no-repeat;
    background-size: cover;
    background-position: center;
} */

.foremostImg img {
    mix-blend-mode: darken;
    width: 100%;
    object-fit: cover;
}

.foremost-content h3 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary);
    text-transform: capitalize;
    margin-bottom: 0;
}

.foremost-content p {
    margin: 2rem 0;
}

.foremost-info .mail,
.foremost-info .number {
    font-size: 1.85rem;
    font-weight: 600;
}

.foremost-info .mail {
    color: var(--primary);
    text-decoration: underline !important;
}

.foremost-info .number {
    color: var(--secondary);
}

/* our-track-record */
.our-track-record {
    background: url("../images/track-record-bg.webp") no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
}

.track-content h3 {
    font-size: 3.375rem;
    color: var(--white);
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}

.trackCard {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 0.875rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trackCard *,
.headerCall *,
.subject-list-card {
    transition: all 300ms ease-in-out;
}

.trackCard-content h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 1rem 0;
}

.trackCard-content h6 {
    font-size: 1rem;
    margin: 0;
}

.trackCard:hover {
    background-color: var(--black);
}

.trackCard:hover .trackCard-img img {
    filter: brightness(0) invert(100%) brightness(101%);
}

.trackCard:hover .trackCard-content :is(h4, h6) {
    color: var(--white);
}

/* Universities */

.topUniversities {
    background: url(../images/university-bg.webp) center/cover;
    padding-top: 5rem
}

.topUniversities h2 {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
}

.bookCarousel {
    position: relative;
    z-index: 1
}

.cityMap {
    position: relative;
    display: flex;
    overflow: hidden
}

.cityMap .screen {
    animation: 30s linear infinite moveOn;
    flex: 0 0 70%
}

.cityMap .map-markers {
    position: absolute;
    top: 5rem;
    left: 50%;
    animation: 3s ease-in-out infinite moveUpDown
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(-1rem) translateX(-50%)
    }

    50% {
        transform: translateY(0) translateX(-50%)
    }
}

@keyframes moveOn {
    0% {
        transform: translateX(-100%)
    }
}

.reviews-sec {
    overflow: hidden;
}

.reviews-sec h2 {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    color: var(--secondary);
}

.reviews-sec .row .col-lg-9 p {
    margin: 2rem 0;
    text-align: center;
}

.reviews-slider .slick-list {
    overflow: visible;
}

.reviews-slider .slick-slide.slick-active .reviews {
    filter: blur(0);
}

.reviews {
    background-color: #eff9ff;
    padding: 2rem;
    border-radius: 15px;
    border-right: 5px solid var(--primary);
    border-bottom: 5px solid var(--primary);
    filter: blur(6px);
}

.reviews div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews h4 {
    font-size: 1.25rem;
    color: var(--primary);
}

.reviews p span {
    color: var(--primary);
    font-size: 1.25rem;
}

.reviews-sec .slick-slide {
    margin: 0 27px;
}

.reviews-inner-sec {
    padding-bottom: 2rem;
}

.experts-sec {
    padding-top: 6rem;
    background: url(../images/expert-bg.webp) no-repeat;
    background-size: cover;
}

.experts-sec img {
    margin: auto;
    margin-top: 4rem;
}

.experts-sec h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 600;
}

.experts-sec h2 span {
    font-weight: 600 !important;
}

.experts-sec p {
    color: var(--white);
}

.expert-quotes {
    position: relative;
}

.expert-quotes h6 {
    background-color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.85rem 1rem;
    margin-bottom: 0;
    width: fit-content;
    border-radius: 0.75rem;
    position: absolute;
    text-align: center;
    line-height: 1.5;
    animation: ease-in-out infinite moveUpDown;
}

.expert-quotes h6::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2rem;
    clip-path: polygon(48% 70%, 75% 100%, 45% 100%);
    background-color: var(--primary);
    width: 80px;
    height: 80px;
}

.expert-quotes h6:nth-child(1) {
    top: 10.5rem;
    left: 30%;
    animation-duration: 4s;
}

.expert-quotes h6:nth-child(2) {
    top: 6.5rem;
    left: 58%;
    padding: 0.85rem 1.25rem;
    border-radius: 1.25rem;
    animation-duration: 6s;
}

.expert-quotes h6:nth-child(2)::before {
    clip-path: polygon(75% 75%, 50% 100%, 50% 75%);
    bottom: -1rem;
    left: 0;
}

.expert-quotes h6:nth-child(3) {
    top: 10.75rem;
    right: 16%;
    animation-duration: 8s;
}

.expert-quotes h6:nth-child(3)::before {
    clip-path: polygon(73% 100%, 50% 100%, 72% 78%);
    bottom: 0;
    left: -3.125rem;
    right: unset;
}

/* payment-method-sec */
.payment-method-sec {
    background-color: #fdfdfd;
}

.payment-method-title h2 {
    font-size: 3.5rem;
    font-weight: 600;
    text-transform: capitalize;
}

.payment-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
}

.payment-categories-card figcaption {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 2rem;
}

/* footer */
.footer {
    background: #080312;
    background-size: cover;
    background-position: center;
    padding-top: 4rem;
}

.footer :is(p, .copyRight li a) {
    color: #ffffff;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons li a, .reviews div span {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--secondary);
    border-right-width: 4px;
    border-bottom-width: 4px;
}

.quickLinks h3,
.footerInfo h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary);
}

.quickLinks li a,
.footerInfo li a {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
}

.quickLinks li a:hover {
    color: var(--primary);
}

.footerInfo li a:first-child {
    margin-bottom: 0.25rem;
    overflow-wrap: anywhere;
}

.copyRight {
    border-top: 1px solid #dbe3df;
    padding: 1rem 0;
    margin-top: 1rem;
}

.copyRight ul {
    gap: 1rem;
}

.copyRight p,
.copyRight li a {
    font-weight: 500;
}

.copyRight p a {
    color: var(--primary);
}

/* inner-pages */
.online-class-banner {
    background: url(../images/online-class-bg.webp)center/cover no-repeat;
}

.online-class-content h1 {
    font-size: 3.5rem;
    font-weight: 400;
}

.online-class-content p {
    margin: 1rem 0 1.5rem;
    width: 85%;
}

.online-class-img img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.online-class-form {
    border-radius: 0.75rem;
    border: 3px solid var(--secondary);
    background-color: var(--primary);
    padding: 2.5rem 1.75rem;
    box-shadow: 0px 10px 70px var(--secondary);
    position: relative;
}

.online-class-form h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

.online-class-form .cap-img {
    position: absolute;
    right: -3.5rem;
    top: -3rem;
    -webkit-animation: pulse 5s linear infinite;
    animation: pulse 5s linear infinite;
}

.online-class-form form :is(input, select)::placeholder {
    color: #170546;
}

.online-class-form form :is(input, select, button) {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 1.125rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #170546;
    background-color: var(--white);
    border: none;
    outline: none !important;
    border-radius: 0.5rem;
    accent-color: #170546;
}

.online-class-form form button {
    color: var(--white);
    background-color: var(--secondary);
    margin-top: 1.5rem;
}

.icons {
    position: relative;
}

.icons img {
    position: absolute;
    z-index: 1;
    -webkit-animation: pulse linear infinite;
    animation: pulse linear infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(0, 15px);
        transform: translate(0, 15px);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(0, 15px);
        transform: translate(0, 15px);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.icons img:nth-child(1) {
    left: 3rem;
    top: 3rem;
    animation-duration: 3.5s;
}

.online-class-banner .icons img:nth-child(2) {
    left: 36%;
    top: 36rem;
}

.icons img:nth-child(2) {
    animation-duration: 4.5s;
}

.icons img:nth-child(3) {
    right: 3rem;
    top: 10rem;
    animation-duration: 6s;
}

.variety-sec .icons img:nth-child(1) {
    left: 3rem;
    top: -3rem;
}

.variety-sec .icons img:nth-child(2) {
    right: 3rem;
    top: 16rem;
}

.assistance-sec .icons img:nth-child(1),
.assistance-sec .icons img:nth-child(2) {
    top: unset;
    bottom: -1rem;
}

.assistance-sec .icons img:nth-child(1) {
    left: 3rem;
}

.assistance-sec .icons img:nth-child(2) {
    right: 10rem;
}

.our-subject-sec .icons img:nth-child(1) {
    left: 10rem;
    top: 8rem;
}

.our-subject-sec .icons img:nth-child(2) {
    right: 16rem;
    top: 30rem;
}

.enlist-sec .icons img:nth-child(1) {
    left: 22%;
    top: 10rem;
}

.enlist-sec .icons img:nth-child(2) {
    right: 16%;
    top: 6rem;
}

.our-track-record .icons img:nth-child(1) {
    left: 6.25%;
    top: -1.25rem;
    width: 80px;
}

.our-track-record .icons img:nth-child(2) {
    right: 8%;
}

.reviews-sec .icons img:nth-child(1) {
    left: unset;
    right: 8%;
    top: 10rem;
}

.promising-sec .icons img:nth-child(1) {
    left: 10%;
    top: -2.5rem;
}

.promising-sec .icons img:nth-child(2) {
    right: 19%;
    top: 4rem;
}

.benefit-sec .icons img:nth-child(1) {
    left: 8%;
    top: 34rem;
}

.benefit-sec .icons img:nth-child(2) {
    right: 37%;
    top: -2rem;
}

.payment-method-sec .icons img:nth-child(1) {
    left: 12%;
    top: 18rem;
}

.payment-method-sec .icons img:nth-child(2) {
    right: 12%;
    top: 2rem;
}

/* variety-sec */
.variety-card {
    padding: 1.5rem;
    background: var(--primary);
    height: 100%;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}

.variety-card:hover {
    transform: translateY(-20px);
    /* background: linear-gradient(90deg, rgba(38, 169, 226, 1) 0%, rgba(44, 133, 196, 1) 35%, rgba(40, 72, 154, 1) 100%) !important; */
}

.variety-card:hover::before {
    transform: scale(2);
}

.variety-sec .row .col-lg-3:nth-child(even) .variety-card {
    background: var(--secondary);
}

.variety-card::before {
    content: "";
    background: url(../images/card-shape.html)center/cover no-repeat;
    position: absolute;
    top: -5rem;
    right: -4rem;
    width: 200px;
    aspect-ratio: 1;
    transition: all 300ms ease-in-out;
}

.variety-card h3 {
    font-size: 1.325rem;
    font-weight: 500;
    line-height: 1.5;
}

.variety-card p {
    margin-bottom: 0;
}

/* assistance-sec */
.assistance-sec {
    background: url(../images/assistance-bg.webp)center/cover no-repeat;
}

.assistance-img {
    height: 100%;
}

.assistance-img img {
    box-shadow: 12px 12px 0px var(--primary);
    border-radius: 1.25rem;
    overflow: hidden;
    mix-blend-mode: darken;
    border: 1px solid #CED0D0;
    height: 100%;
    object-fit: cover;
}

.assistance-content h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.assistance-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.assistance-content h2 span {
    font-weight: 700;
}

.assistance-content p {
    font-size: 1.125rem;
}

/* our-track-inner */
.our-track-inner {
    background: url(../images/our-track-inner-bg.html)center/cover no-repeat;
}

/* promising-sec */
.promising-sec {
    background: url(../images/promising-bg.html)100% 100%/cover no-repeat;
}

.promising-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 6rem;
}

.promising-content h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* benefit-sec */
.benefit-sec {
    background: url(../images/expert-bg.webp)center/cover no-repeat;
}

.benefit-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.benefit-sec .online-class-form {
    background-color: var(--white);
    border-color: var(--secondary);
    box-shadow: none;
}

.benefit-sec .online-class-form form :is(input, select) {
    background-color: #f0f1f7;
}


/* about-us */
.subHeading {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: capitalize;
}

.innerBanner {
    background: url(../images/expert-bg.webp)top/cover no-repeat;
}

.innerBanner-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
}

.unlock-content h2 {
    font-size: 3.5rem;
}

.discount {
    background-color: var(--primary);
    padding: 1.25rem 0;
}

.discount-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    white-space: nowrap;
}

.discount-item {
    flex: 0 0 50%;
}

.discount-heading h3 {
    font-size: 1.85rem;
    font-weight: 700;
    filter: brightness(0) saturate(100%) invert(4%) sepia(76%) saturate(3773%) hue-rotate(220deg) brightness(76%) contrast(115%);
    margin: 0;
}

.discount-heading h3 span img {
    width: 40px;
    aspect-ratio: 1;
    object-fit: cover;
    margin-right: 0.5rem;
}

.discount-two {
    background-color: var(--secondary);
}

.discount-two h3 {
    filter: brightness(0) saturate(100%) invert(96%) sepia(1%) saturate(1002%) hue-rotate(314deg) brightness(119%) contrast(100%);
}

.customer-counter {
    background-color: #fbeded;
    padding: 4rem 3rem;
    height: 100%;
    border-radius: 1.625rem;
}

.customer-counter h3 {
    font-size: 3.5rem;
    font-weight: 700;
}

.customer-counter h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

/* our-priority */
.our-priority {
    background-color: #fcfefd;
}

.our-priority .foremost-content h3 {
    font-size: 3.5rem;
}

.blur-zero {
    filter: blur(0);
}

.reviews-student-page .reviews {
    margin-top: 2rem;
}

/* .reviews-sec-bg {
    background: url(../images/foremost-sec-bg.html)center/cover no-repeat;
} */

.reviews div img {
    width: 86px;
    aspect-ratio: 1;
    object-fit: cover;
}

/* contact-sec */
.contact-sec h2 {
    font-size: 3.25rem;
    font-weight: 600;
}

.contactForm {
    margin-top: 2rem;
}

.contactForm input {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1.5rem;
    border-radius: 2rem;
    color: var(--secondary);
    border: 2px solid #e4e7ea;
    font-weight: 600;
    outline: none;
}

.contactForm input::placeholder {
    color: var(--secondary);
}

/* faq-sec */
.faq-title h2 {
    font-size: 3rem;
    font-weight: 600;
}

.faq-sec #accordion .card:last-child {
    border-bottom: 2px solid var(--secondary);
}

.faq-sec .card-header {
    background: 0 0;
    border: none;
    outline: 0 !important;
    padding: 1.75rem 0;
}

.faq-sec .card-header a {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: 600;
    padding: 0 1.25rem 0 0;
    transition: .3s
}

.faq-sec .card {
    transition: .3s;
    border-top: 2px solid var(--secondary) !important;
    background: var(--white);
    color: var(--para);
    font-size: 1rem;
    border: none;
    border-radius: 0;
}

.faq-sec .card-body {
    padding: 0;
}

.faq-sec .card-header a.card-link.collapsed:after {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    right: 20px;
    color: var(--secondary);
}

.faq-sec .card-header a.card-link:after {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    position: absolute;
    right: 20px;
    color: var(--primary);
}


.navbar-toggler {
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: var(--white);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

#mypopup .modal-content {
    background-color: transparent;

}

#mypopup .online-class-form {
    box-shadow: none;
}

#mypopup .popup-close {
    width: 50px;
    border-radius: 50%;
    aspect-ratio: 1;
    position: absolute;
    top: -3%;
    left: 94%;
    z-index: 1;
    border: 4px solid var(--primary);
    background-color: #fff;
    color: var(--primary);
    font-weight: 900;
    font-size: 1.15rem;
    outline: none;
}
section.banner .list {
    display: flex;
    gap: 40px;
    margin-bottom: 15px;
}

section.banner .list ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.subject-list-card:after {
    content: '';
    height: 0;
    width: 0;
    background: linear-gradient(90deg, rgb(225 39 39) 0%, rgb(185 17 17) 35%, rgb(60 3 3) 100%);
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 10px;
    z-index: -1;
    transition: .4s all ease-in-out;
}

.subject-list-card:hover:after {
    width: 100%;
    height: 100%;
}
.subject-list-card img {
    transition: .6s all ease-in-out;
}

.form-inline.menuBtn.call-area {gap: 30px;}

.thankyou_sec {
    padding: 40px 0;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.main-thankyou {
    text-align: center;
}
.main-content__checkmark {
    font-size: 9.75rem;
    line-height: 1;
    color: var(--primary);
}
.site-header__title {
    font-size: 6.5rem;
    font-weight: 700;
    line-height: 1.1;
}
.main-content__body {
    margin: 20px 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
}
.subject-list a{
    display: block;
}

.footer-main img {
    width: 50%;
}

.float {
    font-weight: 600;
    vertical-align: middle;
    padding: 8px 16px 10px;
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #023838;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    z-index: 100;
    text-decoration: none;
}

.float i {
    margin-right: 10px;
    font-size: 22px;
    position: relative;
    top: 2px;
    color: #25D366;
}