:root {
            --spacing-card: 15%;
        }

        html {
            overflow-x: hidden !important;
            overflow-y: visible !important;
        }

        @keyframes slideUp {
            0% {
                transform: translateY(30px);
                opacity: 0;
            }

            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .Card {
            width: 100%;
        }

        .history-cards .icon img {
            width: 120px !important;
        }

        .history-cards .Card {
            padding: 3vw 3vw !important;
        }

        /* .listing {
        font-size: 1vw !important;
        line-height: 2vw !important;
    } */

        .history-cards .Card.card_1,
        .history-cards .Card.card_5,
        .history-cards .Card.card_9 {
            background-color: white;
        }

        .history-cards .Card.card_2,
        .history-cards .Card.card_6 {
            background-color: white;
        }

        .history-cards .Card.card_3,
        .history-cards .Card.card_7 {
            background-color: white;
        }

        .history-cards .Card.card_4,
        .history-cards .Card.card_8 {
            background-color: white;
        }

        .main {
            background: url(../images/banner-3.webp) #fff8ec;
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed;
            background-position: top;
        }

        @media (max-width: 1600px) {

            .history-cards .Card {
                height: 66vh;
            }
        }

        @media (max-width: 320px) {

            .history-cards .Card {
                height: 92vh;
            }
        }

        @media (max-width: 767px) {

            .listing {
                font-size: 1.7vh !important;
                line-height: 5vw !important;
            }

            .history-cards .icon img {
                width: 70px !important;
            }

            .history-cards .Card.card_1,
            .history-cards .Card.card_4 {
                border: .7vh solid #ecb250 !important;
            }

            .history-cards .Card.card_2,
            .history-cards .Card.card_5 {
                border: .7vh solid #003366 !important;
            }

            .history-cards .Card.card_3,
            .history-cards .Card.card_6 {
                border: .7vh solid #026fa5 !important;
            }

        }

        .desktop22 {
            display: block;
        }

        .mobile22 {
            display: none;
        }

        ul.listing>li:before {
            top: 1.6vh;
        }

        @media (max-width: 768px) {
            ul.listing>li:before {
                top: 0.5vh !important;
            }

            /* .history-cards p {
                font-size: 16px !important;
            } */

            .listing {
                font-size: 12px !important;
                line-height: 181% !important;
            }

            .desktop22 {
                display: none;
            }

            .mobile22 {
                display: block;
            }
        }

        @media screen and (min-width: 769px) and (max-width: 1200px) {

            ul.listing>li:before {
                top: .8vh !important;
            }
        }

        @media screen and (min-width: 425px) and (max-width: 768px) {
            ul.listing>li:before {
                top: 10px !important;
            }
        }

        @media screen and (min-width: 300px) and (max-width: 425px) {

            ul.listing>li:before {
                top: 6px !important;
            }
        }

        /* new data css start here */
        .admission-session h2 {
            font-family: 'Merriweather', serif;
        }

        .note-text {
            font-family: 'Lato' !important;
            font-weight: 600 !important;
            position: absolute;
            bottom: 0;
            left: 30%;
        }

        .right-border {
            position: relative;
            padding: 0px;
            margin-left: 23px;
        }

        .right-border::after {
            content: '';
            position: absolute;
            height: 0;
            width: 1px;
            border: 3px solid #ECB24F;
            border-radius: 40px 0 0 0;
            border-right: none;
            border-bottom: none;
            top: -5.2%;
            left: -2%;
            pointer-events: none;
            transition: none;
        }

        /* Animate when class is added */
        .right-border.animate-border::after {
            animation: localDrawLine 3s linear forwards;
        }

        @keyframes localDrawLine {
            0% {
                width: 1px;
                height: 0;
            }

            50% {
                width: 1px;
                height: 100%;
            }

            100% {
                width: 100%;
                height: 100%;
            }
        }

        @media only screen and (max-width: 1199px) {
            .single-card {
                height: 240px;
                width: 100%;
            }

            .single-card .img-box img {
                height: 100%;
                object-fit: cover;
                /* object-position: 0rem -2.5rem; */
            }

            .right-border::after {
                left: -4%;
            }

            .history-cards .Card {
                height: 58vh;
            }
            .note-text{
                left: 20%;
            }
        }

        .info-box {
            position: relative;
            margin-bottom: 100px !important;
        }

        .info-box .animated-line .img-section:before {
            border-radius: 0px 0px 20px 20px !important;
        }

        .info-content-box {
            position: absolute;
            top: 25%;
            left: 3%;
        }

        /* .info-content h2 {
            color: #FFF;
            text-align: justify;
            font-size: 2.2vw;
        } */

        .more-btn-new {
            display: flex !important;
            justify-content: flex-start;
        }

        .overlay-wrap {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        /* Dark gradient overlay */
        .img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,
                    rgba(6, 33, 51, 0.92) 0%,
                    /* deep blue */
                    rgba(6, 33, 51, 0.75) 35%,
                    /* smooth fade */
                    rgba(6, 33, 51, 0.35) 60%,
                    rgba(6, 33, 51, 0.05) 100%
                    /* almost transparent */
                );
            display: flex;
        }

        /* Keeps text above overlay */
        .info-content-box {
            position: relative;
            z-index: 2;
        }

        .mt-6 {
            margin-top: 5rem;
        }

        @media (max-width:767px) {
            .mt-6 {
                margin-top: 2rem;
            }

            .admission-session h2 {
                font-size: 4.5vw;
                line-height: 1.6;
            }

            .note-text {
                left: 3%;
                width: 94%;
            }

            .info-content-box {
                top: 15%;
                left: 5%;
            }

            .history-cards .Card {
                height: 60vh;
            }
        }

        /* new data css end here */
