body {
    font-family: "Montserrat", sans-serif;
    background:#fff;
    scroll-behavior: smooth;
}


.btn-style-one {
    display: block;
    width: 250px;
    color: #000;
    font-size: 18px;
    background: #fff;
    border-radius: 6px;
    font-weight: 700;
    padding: 8px 20px;
    transform: scale(1);
    transition: all ease .3s;
}

.btn-style-one:hover {
    transform: scale(0.9);
    background: #000;
    color: #fff !important;
}

.btn-style-two {
    display: block;
    width: 250px;
    color: #fff !important;
    font-size: 18px;
    background: #000;
    border-radius: 6px;
    font-weight: 700;
    padding: 8px 20px;
    transform: scale(1);
    transition: all ease .3s;
}

.btn-style-two:hover {
    transform: scale(0.9);
    background: #BF0015;
    color: #fff !important;
}

.btn-style-three {
    display: block;
    width: 250px;
    color: #000;
    font-size: 18px;
    background: #fff;
    border-radius: 6px;
    font-weight: 700;
    padding: 8px 20px;
    transform: scale(1);
    transition: all ease .3s;
}

.btn-style-three:hover {
    transform: scale(0.9);
    background: #BF0015;
    color: #fff !important;
}


.color-red {
    color: #BF0015;
}


/*header section starts*/
header.main-header {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    padding: 20px 0 20px;
}

header.main-header .btn.btn-style-one {
    display: block;
    padding: 10px;
    background: lch(0 0 0 / 0.40);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid lch(100 0 0 / 0.5);
    border-radius: 10px;
}

@media screen and (max-width: 767px) {
    header.main-header .logo {
        padding: 0 20px;
    }


}

/*header section ends*/


/*hero section starts*/

section.banner-section {
    position: relative;
    padding: 110px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

section.banner-section .banner-cont h1 {
    font-size: 40px;
    color: #fff;
    font-weight: 700;
}

section.banner-section .banner-cont h1 .fz-one {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
}

section.banner-section .banner-cont h1 .fz-three {
    background: #BF0015;
    padding: 2px 15px;
}

section.banner-section .banner-cont h1 .fz-four {
    display: block;
    margin-top: 8px;
}

section.banner-section .banner-cont .text-one h2 {
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin-top: 30px;
}

section.banner-section .banner-cont .text-one h2 .fz-two {
    display: block;
    font-size: 18px;
    font-weight: 500;
}

section.banner-section .text-one img {
    width: 75%;
    display: block;
}


section.banner-section .text-one h3 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
}

section.banner-section .text-one h3 a {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    border: 1px solid #fff;
    margin-left: 10px;
    border-radius: 10px;
    transition: all ease .3s;
}

section.banner-section .text-one h3 a:hover {
    color: #000;
    background: #fff;
}

@media screen and (max-width: 767px) {

    section.banner-section .banner-cont h1 {
        font-size: 24px;
    }

    section.banner-section .banner-cont h1 .fz-one {
        font-size: 22px;
    }

    section.banner-section .banner-cont .text-one h2 {
        font-size: 24px;
    }

    section.banner-section .banner-cont .text-one h2 .fz-two {
        font-size: 16px;
    }

    section.banner-section .text-one img {
        width: 100%;
    }

    section.banner-section .text-one h3 {
        font-size: 22px;
    }

    section.banner-section .text-one h3 a {
        display: block;
        margin-top: 15px;
        margin-left: 0;
    }


}


/*hero section ends*/


/*nav list section starts*/
section.nav-list-section {
    position: relative;
    padding: 15px 25px 15px;
    background: #D9D9D9;
    top: 0;
    z-index: 99;
}

section.nav-list-section .container-fluid {
    background: #000;
    padding: 20px;
    border-radius: 15px;
}

section.nav-list-section ul {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.nav-list-section ul li {
    padding: 0 15px;
    border-right: 1px solid #ffffff96;
}

section.nav-list-section ul li a {
    color: #fff !important;
    font-size: 18px;
    text-decoration: none !important;

}

section.nav-list-section ul li a:hover {
    opacity: 0.7;
    text-decoration: none !important;

}

section.nav-list-section ul li:last-child {
    border: 0;
}

@media screen and (max-width: 767px) {

    section.nav-list-section {
        padding: 10px 5px 10px;
    }

    section.nav-list-section ul li a {
        color: #fff;
        font-size: 13px;
    }

    section.nav-list-section ul li {
        width: 50%;
        padding: 0px 5px;
        border: 1px solid #ffffff96;
        border-top: 0px;
        border-left: 0;
    }

    section.nav-list-section ul {
        flex-wrap: wrap;
    }

    section.nav-list-section ul li:nth-child(2) {
        border-right: 0px;
    }

    section.nav-list-section ul li:nth-child(3) {
        border-bottom: 0px;
    }

    section.nav-list-section .container-fluid {
        padding: 10px 10px;
    }


}

/*nav list section ends*/


/* payment box section start  */

section.payment-banner {
    background: #D9D9D9;
    position: relative;
    padding: 40px 0 60px;
}

section.payment-banner .payment-box {
    position: relative;
    background: #811812;
    background: linear-gradient(90deg, rgba(129, 24, 18, 1) 0%, rgba(191, 0, 21, 1) 47%, rgba(129, 24, 18, 1) 100%);
    border-radius: 10px;
    padding: 30px 30px 60px;
    box-shadow: 0 0px 50px 0 rgb(0 0 0 / 41%);
}

section.payment-banner .payment-box h2 {
    font-size: 26px;
    color: hsl(0deg 0% 100% / 60%);
    font-weight: 700;
}

section.payment-banner .payment-box h2 span {
    display: block;
    font-size: 40px;
    color: #fff;
}

section.payment-banner .btn-pm {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -20px;
}

@media (max-width: 767px) {
    section.payment-banner .payment-box {
        padding: 20px 20px 30px;
    }

    section.payment-banner .payment-box h2 {
        font-size: 22px;
    }

    section.payment-banner .payment-box h2 span {
        font-size: 28px;
    }


}

/* payment box section end */


/*counter section starts*/

section.count-section {
    position: relative;
    padding: 20px 0 60px;
    background: #d9d9d9;
}

section.count-section .row>div {
    max-width: 20%;
    flex: 0 0 25%;
}

section.count-section .count-dv {
    height: 100%;
    width: 100%;
    padding: 15px;
    border: 2px solid #000;
    border-radius: 6px;
    text-align: center;
    background: #fff;
    box-shadow: 0 0px 50px 0 rgb(0 0 0 / 30%);
}

section.count-section .count-dv:hover {
    background: #BF0015;
    transition: all ease .3s;
    border-color: #fff;
}

section.count-section .count-dv:hover * {
    color: #fff;
    transition: all ease .3s;
    border-color: #fff;
}

section.count-section .count-gd svg {
    color: #BF0015;
    height: 35px;
    margin-top: 15px;
}

section.count-section .count-dv h3 {
    font-size: 26px;
    color: #BF0015;
    font-weight: 700;
}

section.count-section .count-dv p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}


@media (max-width: 767px) {

    section.count-section .row>div {
        max-width: 100%;
        flex: 0 0 100%;
    }

    section.count-section {
        overflow: hidden;
    }

    section.count-section .flickity-viewport {
        overflow: visible;
    }

    section.count-section .flickity-button:focus {
        outline: 0;
        box-shadow: 0 0 0 0 #19f;
    }

    section.count-section .flickity-button {
        position: absolute;
        background: hsl(0deg 0% 0% / 75%);
        border: none;
        color: #ffffff;
    }

}


/*counter section ends*/


/*courses sction starts*/
section.courses-section {
    position: relative;
    padding: 40px 0 60px;
    background: #d9d9d9;
}

section.courses-section .heade-dv h2 {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000;
    overflow: hidden;
}

section.courses-section .heade-dv h2 .fz-two {
    display: block;
    margin: auto;
    font-size: 32px;
    position: relative;
}

section.courses-section .heade-dv h2 .fz-two:before {
    content: "";
    position: absolute;
    left: -63%;
    top: 20px;
    width: 100%;
    height: 4px;
    background: #00000099;
}

section.courses-section .heade-dv h2 .fz-two:after {
    content: "";
    position: absolute;
    right: -63%;
    top: 20px;
    width: 100%;
    height: 4px;
    background: #00000099;
}

section.courses-section .course-content {
    padding-bottom: 70px;
    height: 100%;
    background: lch(100 0 0 / 0.4);
    box-shadow: 0px 0px 30px 0px #00000057;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

section.courses-section .course-cont {
    padding: 15px;

}

section.courses-section .course-cont .text-one {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
    margin-top: 15px;
}

section.courses-section .course-cont .text-two {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 15px;
}

section.courses-section .course-cont h3 {
    font-size: 18px;
    margin-top: 30px;
}

section.courses-section .course-cont h4 {
    font-size: 20px;
    color: #000;
    font-weight: 700;
}

section.courses-section .course-cont h4 span {
    font-weight: 500;
}

section.courses-section .course-sub-dv {
    padding: 15px 20px;
    text-align: right;
    background: #fff;
    margin: 0;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
}

section.courses-section .course-sub-dv a {
    font-size: 20px;
    color: #000;
    font-weight: 500;
    display: block;
}

section.courses-section .course-sub-dv a:hover {
    text-decoration: none;
}

section.courses-section .course-sub-dv a i {
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    margin-left: 10px;
}

section.courses-section .course-content * {
    /*transition: all ease .2s;*/
}

section.courses-section .course-content:hover {
    background: #000;
}

section.courses-section .course-content:hover .course-cont {
    background: #000;
}

section.courses-section .course-content:hover .course-cont * {
    color: #fff;
}


section.courses-section .course-content:hover .course-sub-dv {
    background: lch(100 0 0 / 0.1);
}

section.courses-section .course-content:hover .course-sub-dv a {
    color: #fff;
}

section.courses-section .course-content:hover .course-sub-dv a i {
    background: #BF0015;
}


@media (max-width: 767px) {

    section.courses-section {
        overflow: hidden;
    }

    section.courses-section .flickity-viewport {
        overflow: visible;
    }

    section.courses-section .flickity-button:focus {
        outline: 0;
        box-shadow: 0 0 0 0 #19f;
    }

    section.courses-section .flickity-button {
        display: none;
    }

    section.courses-section .heade-dv h2 {
        font-size: 26px;
    }

    section.courses-section .heade-dv h2 .fz-two {
        font-size: 24px;
    }

    section.courses-section .heade-dv h2 .fz-two:before,
    section.courses-section .heade-dv h2 .fz-two:after {
        top: 15px;
        width: 85%;
    }
section.courses-section .course-cont {
    height: 240px;
}

}


/*courses sction ends*/


/*Eligibility section starts*/
section.eligibility-section {
    position: relative;
    background: #d9d9d9;
    padding: 25px 0 60px;
}

section.eligibility-section .elg-cont {
    padding: 20px 60px;
    border: 1px solid #000;
    border-radius: 15px;
}

section.eligibility-section .elg-cont h2 {
    font-size: 20px;
    text-align: left;
    margin: 0;
    font-weight: 500;
}

section.eligibility-section .elg-cont h2 span {
    font-weight: 700;
}


@media (max-width: 767px) {
    section.eligibility-section .elg-cont {
        padding: 15px 15px;
    }

    section.eligibility-section .elg-cont h2 {
        font-size: 16px;
    }


}


/*Eligibility section ends*/


/*credit journey section starts*/

section.credit-journey-section {
    position: relative;
    padding: 60px 0;
}


section.credit-journey-section .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 7%;
    max-width: 7%;
}

section.credit-journey-section .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 10.833%;
    max-width: 10.833%;
}

section.credit-journey-section h2 {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
}

section.credit-journey-section h3 {
    font-size: 26px;
    text-align: center;
    font-weight: 700;
}

section.credit-journey-section .progress-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 20px auto;
}


section.credit-journey-section .progress-circle svg {
    transform: rotate(90deg);
    width: 100%;
    height: 100%;
}


section.credit-journey-section .progress-circle circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}


section.credit-journey-section .progress-bg {
    stroke: #e9ecef;
}


section.credit-journey-section .progress-bar {
    stroke: url(#gradient);
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.2s ease-out;
}


section.credit-journey-section .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: #000000ba;
    line-height: normal;
}

section.credit-journey-section .progress-value {
    display: none;
}

section.credit-journey-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

section.credit-journey-section p {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

section.credit-journey-section .next-animation {
    display: flex;
    align-items: center;
    margin-top: 70px;
}


section.credit-journey-section .m_scroll_arrows {
    display: block;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(-45deg);
    /* IE 9 */
    -webkit-transform: rotate(-45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-45deg);

    border-right: 5px solid #000;
    border-bottom: 5px solid #000;
    margin: 0 0 3px 4px;
    border-radius: 2px;
    width: 16px;
    height: 16px;
}


section.credit-journey-section .unu {
    margin-left: 0;
}

section.credit-journey-section .unu,
section.credit-journey-section .doi,
section.credit-journey-section .trei {
    -webkit-animation: mouse-scroll .9s infinite;
    -moz-animation: mouse-scroll .9s infinite;
    animation: mouse-scroll .9s infinite;

}

section.credit-journey-section .unu {
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -webkit-animation-direction: alternate;

    animation-direction: alternate;
    animation-delay: alternate;
}

section.credit-journey-section .doi {
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -webkit-animation-direction: alternate;

    animation-delay: .2s;
    animation-direction: alternate;

    margin-left: 0;
}

section.credit-journey-section .trei {
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -webkit-animation-direction: alternate;

    animation-delay: .3s;
    animation-direction: alternate;


    margin-left: 0;
}


@-webkit-keyframes mouse-scroll {

    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes mouse-scroll {

    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes mouse-scroll {

    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mouse-scroll {

    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}


@media (max-width: 767px) {
    section.credit-journey-section h2 {
        font-size: 26px;

    }

    section.credit-journey-section h3 {
        font-size: 16px;
    }

    section.credit-journey-section .col-md-2 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.credit-journey-section .col-md-1 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.credit-journey-section .next-animation {
        margin: 25px auto;
        text-align: center;
        display: block;
        width: 18px;
    }

    section.credit-journey-section .m_scroll_arrows {
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    section.credit-journey-section p {
        border: 0;
    }


}


/*credit journey section ends*/


/*awards section starts*/
section.awards-section {
    position: relative;
    padding: 60px 0;
    background: #000;
}


:root {
    --color-text: #19232b;
    --color-bg: #e3e4e;
    --color-bg-accent: #000;
    --size: clamp(10rem, 0rem + 20vmin, 60rem);
    --gap: calc(var(--size) / 7);
    --duration: 30s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
}

section.awards-section .award-slider {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

section.awards-section .slide-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

section.awards-section .slide img {
    height: 100px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

@media (prefers-reduced-motion: reduce) {
    section.awards-section .slide-track {
        animation-play-state: paused;
    }
}


@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start));
    }

    to {
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        transform: translateY(var(--scroll-start));
    }

    to {
        transform: translateY(var(--scroll-end));
    }
}

/* Element styles */
section.awards-section .award-slider .slide {
    display: grid;
    place-items: center;
    width: var(--size);
    fill: var(--color-text);
    background: var(--color-bg-accent);
    aspect-ratio: 16/9;
    padding: calc(var(--size) / 50);
    border-radius: 0.5rem;
}


@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}


@media (max-width: 767px) {}


/*awards section ends*/


/*online right section starts*/

section.onlineright-section {
    position: relative;
    padding: 0;
    background: #000;
}

section.onlineright-section h2 {
    font-size: 46px;
    color: #fff;
    font-weight: 400;
}

section.onlineright-section h3 {
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    margin-top: 15px;
}


@media (max-width: 767px) {
    section.onlineright-section h2 {
        font-size: 30px;
    }

    section.onlineright-section h3 {
        font-size: 20px;
    }


}


/*online right section ends*/


/*Designed section starts*/

section.designed-section {
    position: relative;
    background: #000;
    padding: 60px 0;
}

section.designed-section h2 {
    font-size: 34px;
    text-align: center;
    color: #fff;
    margin-bottom: 45px;
}

section.designed-section .row>div {
    flex: 0 0 20%;
    max-width: 20%;
}

section.designed-section .des-dvs h3 {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    border-left: 2px solid #cc0000;
    margin-left: 0px;
    padding-left: 15px;
}

section.designed-section .des-dvs p {
    font-size: 14px;
    margin-left: 15px;
    color: #ffffff8a;
}


@media (max-width: 767px) {
    section.designed-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    section.designed-section .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.designed-section .flickity-button {
        display: none;
    }

    section.designed-section .flickity-page-dots .dot {
        background: #fff;
    }

}


/*Designed section ends*/


/*why persue section starts*/

section.why-persue-section {
    position: relative;
    background: #000;
}

section.why-persue-section .container-fluid {
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
}

section.why-persue-section .row>div {
    max-width: 20%;
    flex: 0 0 20%;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
}

section.why-persue-section .row>div:last-child {
    align-items: end;
}

section.why-persue-section .row>div:nth-child(3n) {
    align-items: center;
}

section.why-persue-section .persue-cont {
    background: #BBBBBB;
    padding: 15px;
    margin: 10px 0;
    height: 190px;
    width: 100%;
}

section.why-persue-section .persue-cont p {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    line-height: normal;
}

section.why-persue-section .persue-cont p span {
    font-weight: 700;
}

section.why-persue-section .persue-head {
    padding: 20px;
    background: #000;
    border: 5px solid #fff;
}

section.why-persue-section .persue-head h2 {
    font-size: 32px;
    color: #ffffffa3;
    font-weight: 700;
}

section.why-persue-section .persue-head h2 span {
    color: #ffffff;
}

section.why-persue-section .persue-head p {
    font-size: 16px;
    color: #fff;
}

@media (max-width: 767px) {
    section.why-persue-section {
        padding: 15px;
    }

    section.why-persue-section .row>div {
        max-width: 50%;
        flex: 0 0 50%;
    }

    section.why-persue-section .row>div:nth-child(3n) {
        max-width: 100%;
        flex: 0 0 100%;
    }

    section.why-persue-section .persue-head h2 {
        font-size: 26px;
    }

    section.why-persue-section .persue-head p {
        margin: 0;
    }

    section.why-persue-section .container-fluid {
        padding: 15px;
        border-radius: 10px;
    }

    section.why-persue-section .persue-cont p {
        font-size: 14px;
    }

    section.why-persue-section .persue-cont {
        padding: 10px;
        margin: 5px 0;
        height: 295px;
        width: 100%;
    }

    section.why-persue-section .row>div.order-4,
    section.why-persue-section .row>div.order-2 {
        padding-right: 5px;
    }

    section.why-persue-section .row>div.order-3,
    section.why-persue-section .row>div.order-5 {
        padding-left: 5px;
    }

    section.why-persue-section .persue-head {
        padding: 10px;
        margin-bottom: 5px;
    }

}


/*why persue section ends*/


/*online degree section starts*/

section.online-degree-section {
    position: relative;
    background: #000;
    padding: 80px 0;
}

section.online-degree-section h2 {
    font-size: 34px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
}

section.online-degree-section h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

section.online-degree-section p {
    font-size: 16px;
    color: #ffffff8f;
}

section.online-degree-section .cer-img {
    box-shadow: -35.81px -35.81px 268.6px 0px hsl(247deg 87% 51% / 25%);
}

section.online-degree-section .cer-img img {
    box-shadow: 35.81px 35.81px 268.6px 0px hsl(358.84deg 99.95% 40.41% / 50%);
}

section.online-degree-section h4 {
    font-size: 32px;
    text-align: center;
    color: #ffffffd9;
    font-weight: 700;
}

section.online-degree-section .rule-one {
    border-color: #ffffffa1;
    opacity: 1;
    border-width: 4px;
}


@media (max-width: 767px) {

    section.online-degree-section h2 {
        font-size: 26px;

    }

    section.online-degree-section img {
        width: 30px;
        margin-left: auto;
        display: block;
        margin-top: 5px;
    }

    section.online-degree-section h3 {
        font-size: 18px;
    }

    section.online-degree-section h4 {
        font-size: 28px;
    }
}

/*online degree section ends*/


/*top partenrs section starts*/
section.top-partners-section {
    position: relative;
    padding: 60px 0;
    background: #DFDFDF;
    overflow: hidden;
}

section.top-partners-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}


section.top-partners-section .partner-sub-slider {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);

}

section.top-partners-section .partner-sub-slider .partner {
    display: grid;
    place-items: center;
    width: var(--size);
    fill: var(--color-text);
    background: #DFDFDF;
    aspect-ratio: 16/9;
    padding: calc(var(--size) / 100);
    border-radius: 0.5rem;
}

section.top-partners-section .rule-one {
    border-width: 4px;
    border-color: #000;
    opacity: 0.2;
}

section.top-partners-section .partner-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}

section.top-partners-section .partner img {
    height: 100px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

@media (prefers-reduced-motion: reduce) {
    section.top-partners-section .partner-track {
        animation-play-state: paused;
    }
}


@media (max-width: 767px) {}


/*top partenrs section ends*/


/*learning Experience section start*/


section.learning-section {
    background: #dfdfdf;
    position: relative;
    padding: 10px 0 60px;
    overflow: hidden;
}

section.learning-section .lear-cont .row>div {
    flex: 0 0 16.66%;
    max-width: 16.66%;
    padding: 8px;
}

section.learning-section .learn-img .col-md-4 {
    flex: 0 0 33.3%;
    max-width: 33.3%;
    padding: 0 8px;
}

section.learning-section .learn-img .col-md-8 {
    flex: 0 0 66.7%;
    max-width: 66.7%;
    padding: 0 8px;
}

section.learning-section .lear-cont {
    margin-top: -255px;
}

section.learning-section .learn-img h2 .fz-one {
    font-size: 26px;
    color: #000;
    opacity: 0.5;
    font-weight: 600;
}

section.learning-section .learn-img h2 .fz-two {
    display: block;
    font-size: 36px;
    font-family: serif;
}

section.learning-section .learn-img h3 {
    font-size: 20px;
    color: #000;
    line-height: 30px;
    margin: 0;
}

section.learning-section .feature-card {
    background: #DCC9CB;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 250px;
    padding: 10px;
}

section.learning-section .feature-card h4 {
    font-size: 16px;
}

section.learning-section .feature-card p {
    font-size: 16px;
    font-weight: 500;
}

section.learning-section .feature-card:hover {
    background: #b71c1c;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 4px 60px oklch(0.51 0.21 26.69 / 0.6);
}

section.learning-section .feature-card .dot {
    width: 20px;
    height: 20px;
    background: #b71c1c;
    border-radius: 50%;
}

section.learning-section .feature-card:hover .dot {
    background: #fff;
}

section.learning-section .feature-card.active .dot {
    background: #fff;
}

section.learning-section .lear-cont .row>div:first-child {
    margin-left: 33.33%;
}

@media (max-width: 767px) {

    section.learning-section .lear-cont .row>div {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 8px;
    }

    section.learning-section .lear-cont {
        margin-top: 15px;
    }

    section.learning-section .learn-img .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.learning-section .learn-img .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    section.learning-section .learn-img h3 {
        margin-left: 20px;
        text-align: left;
        font-size: 14px;
    }

    section.learning-section .learn-img h2 .fz-two {
        font-size: 30px;
    }

    section.learning-section h2 {

        margin-left: 20px;
    }

    section.learning-section .learn-img h3 br {
        display: none;
    }

    section.learning-section .lear-cont .row>div:first-child {
        margin-left: 0%;
    }

    section.learning-section .flickity-viewport {
        overflow: visible;
    }

    section.learning-section .flickity-button {
        display: none;
    }

    section.learning-section .feature-card h4 {
        font-size: 20px;
    }

    section.learning-section .feature-card p {
        font-size: 16px;
    }

    section.learning-section .feature-card {
        padding: 15px;
    }

}


/*learning Experience section end*/


/* admission  process section start */

section.admission-process {
    background: #dfdfdf;
    padding: 0 0 60px;
}

section.admission-process .row>div {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 25px;
}

section.admission-process h2 {
    font-size: 40px;
    color: #000;
    font-weight: 700;
}

section.admission-process h3 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

section.admission-process .step {
    text-align: left;
    position: relative;
}

section.admission-process .step-title {
    font-size: 22px;
    color: lab(0 0 0 / 0.4);
    position: relative;
    margin-bottom: 8px;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-left: 10px;
}

section.admission-process .step-title::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 18px;
    width: 5px;
    height: 24px;
    background: #d32f2f;
    transform: rotate(30deg);
}

section.admission-process .step h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 6px;
}

section.admission-process .step p {
    color: #333;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 600;
}

@media (max-width: 767px) {

    section.admission-process h2 {
        font-size: 32px;
    }

    section.admission-process h2 span {
        display: block;
    }

    section.admission-process h3 {
        font-size: 16px;
    }

    section.admission-process .row>div {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 25px;
    }

    section.admission-process .row {
        justify-content: left !important;
    }


}


/* admission  process section end */


/* empowering section start  */
section.empowering-section {
    background: #dfdfdf;
    position: relative;
    padding: 0 0 60px;
}

section.empowering-section .container {
    background: lch(100 0 0 / 0.60);
    padding: 20px;
    border-radius: 25px;
}

section.empowering-section h2 {
    font-size: 50px;
}

section.empowering-section p {
    font-size: 30px;
    font-weight: 600;
}


@media (max-width: 767px) {
    section.empowering-section {
        padding: 0px 10px 60px;
    }

    section.empowering-section h2 {
        font-size: 30px;
    }

    section.empowering-section p {
        font-size: 18px;
    }

    section.empowering-section h2 br,
    section.empowering-section p br {
        display: none;
    }

}


/* empowering section end */


/*why choose section starts*/

section.whychoose-section {
    position: relative;
    padding: 0px 0px 60px;
    background: #dfdfdf;
}


section.whychoose-section .gradient_box {
    background: linear-gradient(90deg, rgba(129, 24, 18, 1) 0%, rgba(191, 0, 21, 1) 47%, rgba(129, 24, 18, 1) 100%);
    border-radius: 25px;
    color: #fff;
    height: auto;
    padding: 40px;
}

section.whychoose-section .gradient_box h2 {
    font-size: 46px;
}

section.whychoose-section .gradient_box h3 {
    font-size: 30px;
    opacity: 0.8;
    font-weight: 600;
}

section.whychoose-section .gradient_box a {
    font-weight: 600;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
    width: fit-content;
    padding: 10px 40px;
    color: #000;
}

section.whychoose-section .gradient_box hr {
    border: 1px solid rgba(0, 0, 0, 0.8);
}

section.whychoose-section .whybtn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
}

@media (max-width: 767px) {
    section.whychoose-section .gradient_box {
        padding: 25px 25px 40px;
    }

    section.whychoose-section .gradient_box h2 {
        font-size: 28px;
    }

    section.whychoose-section .gradient_box h3 {
        font-size: 18px;
    }

    section.whychoose-section .gradient_box a {
        padding: 10px 10px;
        font-size: 16px;
    }


}


/*why choose section ends*/


/*footer section starts*/
footer.footer-section {
    position: relative;
    padding: 0px 0 15px;
    background: #dfdfdf;
    overflow: hidden;
}

footer.footer-section .footer-left h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
}

footer.footer-section .footer-left p {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

footer.footer-section .footer-left img {
    width: 175px;
}

footer.footer-section .footer-right p {
    font-size: 24px;
    color: #000;
}

footer.footer-section .footer-right h3 {
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

footer.footer-section .footer-right h3 a {
    font-size: 36px;
    display: block;
    font-weight: 700;
    color: #0000007d;
    transition: all ease 0.3s;
}

footer.footer-section .footer-right h3 a:hover {
    text-decoration: none;
    color: #BF0015;
}

footer.footer-section .footer-right h4 {
    font-size: 22px;
    color: #000;
    font-weight: 500;
}

footer.footer-section .footer-right h4 a {
    font-size: 22px;
    font-weight: 600;
    color: #0000007d;
    transition: all ease 0.3s;
}

footer.footer-section .footer-right h4 a:hover {
    text-decoration: none;
    color: #BF0015;
}

footer.footer-section .copyright {
    position: relative;
    padding: 15px 0 0;
    text-align: center;
    border-top: 4px solid #00000057;
    margin-top: 15px;
}

footer.footer-section .copyright p {
    font-size: 16px;
    color: #000000bf;
    margin: 0;
    font-weight: 500;
}
@media (max-width: 767px) {
footer.footer-section {
    padding-bottom: 60px;
}
}
/*footer section ends*/


/*form css starts*/

section.banner-section .banner-form {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-top: 40px;
}

section.banner-section .register-panel h2 {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

section.banner-section .ctplqryformbtn {
    display: block;
    color: #fff;
    width: 100%;
    font-size: 18px;
    background: #000;
    border-radius: 6px;
    border: 1px solid #000;
    font-weight: 700;
    padding: 8px 20px;
    transform: scale(1);
    transition: all ease .3s;
}

section.banner-section .ctplqryformbtn:hover {
    transform: scale(0.98);
    background: #BF0015;
    color: #fff;
    border: 1px solid #BF0015;
}

@media (max-width: 767px) {
    section.banner-section .banner-form {
        margin-top: 0;
    }
}


/*form css ends*/


/* call button start  */

.callbutton {
    position: fixed;
    bottom: 25px;
    z-index: 2200000;
    right: 25px;
    background: #BF0015;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    animation: blink 1s ease-in-out infinite none;
}

.callbutton a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.callbutton a:hover {
    text-decoration: none;
    color: #fff;
}


@keyframes blink {
    0% {
        box-shadow: 0 0 0 0 rgb(191 0 21 / 0.4);
    }

    100% {
        box-shadow: 0 0 0 16px rgb(191 0 21 / 0.03);
    }
}
@media (max-width: 767px) {
.callbutton {
    bottom: 75px;
}

}

/* call now button end  */


/*fixed apply now button starts*/
.fixed-applynpe a {
    display: block;
    background: #aa0914;
    color: #fff !important;
    font-size: 16px;
    padding: 10px;
    font-weight: 700;
    border-radius: 0px;
}
.fixed-applynpe {
    display: none;
}
@media (max-width: 767px) {
.fixed-applynpe {
    position: fixed;
    bottom: 0;
    z-index: 99;
    width: 100%;
}

.fixed-applynpe {
    display: block;
}
}

/*fixed apply now button ends*/

/*page loader css starts*/
#page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000f0;
    z-index: 99999999;
}

#page-loader .loading-text {
    font-size: 18px;
    color: #fff;
    margin-top: 40px;
    opacity: 0.7;
}

#page-loader .loader {
    font-size: 10px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.1s infinite ease;
    transform: translateZ(0);
}

@keyframes mulShdSpin {

    0%,
    100% {
        box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
    }

    12.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
    }

    25% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    37.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    62.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    75% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
    }

    87.5% {
        box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
    }
}

/*page loader css ends*/





section.empowering-section h2 span {
    display: block;
}
section.empowering-section h2 br {
    display: none;
}
@media screen and (min-width: 1199.98px) and (max-width: 1399.98px) {


/*.order-1 {
    -ms-flex-order: 1;
    order: 1 !important;
}
.order-2 {
    -ms-flex-order: 2;
    order: 2 !important;
}
.order-3 {
    -ms-flex-order: 3;
    order: 3 !important;
}
.order-4 {
    -ms-flex-order: 4;
    order: 4 !important;
}
.order-5 {
    -ms-flex-order: 5;
    order: 5 !important;
} */

section.banner-section {
    padding: 50px 0 60px;
}
section.banner-section .banner-cont h1 {
    font-size: 34px;
}
section.banner-section .banner-cont .text-one h2 {
    font-size: 26px;
}
section.banner-section .banner-cont .text-one h2 .fz-two {
    font-size: 16px;
}
section.banner-section .text-one img {
    width: 60%;
}
header.main-header .btn.btn-style-one {
    padding: 6px;
    font-size: 16px;
}

section.nav-list-section ul li a {
    font-size: 16px;
}
section.count-section .count-dv p {
    font-size: 14px;
}
section.count-section .count-dv h3 {
    font-size: 24px;
}
section.courses-section {
    padding: 10px 0 60px;
}



section.courses-section .heade-dv h2 {
    font-size: 34px;
}
section.courses-section .heade-dv h2 .fz-two {
    font-size: 26px;
}

section.credit-journey-section .progress-circle {
    width: 90px;
    height: 90px;
}


section.credit-journey-section .col-md-2,
section.credit-journey-section .col-md-1 {
    padding: 0 5px;
}

section.credit-journey-section h4 {
    font-size: 16px;
}

section.credit-journey-section p {
    font-size: 18px;
}
section.credit-journey-section .next-animation {
    margin-top: 60px;
    transform: scale(0.7);
}
section.onlineright-section h2 {
    font-size: 42px;
}
section.designed-section .des-dvs h3 {
    font-size: 18px;
}
section.why-persue-section .persue-head {
    height: calc(100% - 15px);
}
section.why-persue-section .row>div:nth-child(3n) {
    align-items: center;
    max-width: 30%;
    flex: 0 0 30%;
}
section.why-persue-section .row>div {
    max-width: 17.5%;
    flex: 0 0 17.5%;
}
section.why-persue-section .persue-cont {
    height: 155px;
}
section.designed-section .des-dvs p {
    font-size: 12px;
}
section.learning-section .feature-card p {
    font-size: 12px;
}
section.learning-section .feature-card .dot {
    width: 10px;
    height: 10px;
}
section.learning-section .feature-card h4 {
    font-size: 14px;
}

section.online-degree-section .container {
    max-width: 100%;
    padding: 0 25px;
}

section.why-persue-section {
    padding: 0 25px;
}
section.online-degree-section h2 {
    font-size: 28px;
}

section.online-degree-section h4 {
    font-size: 26px;

}
section.courses-section .col-md-3 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}
section.courses-section .course-cont h3 {
    font-size: 16px;
}
section.courses-section .course-cont h4 {
    font-size: 18px;

}
section.why-persue-section .persue-cont p {
    font-size: 12px;
}
section.courses-section .flickity-viewport {
    overflow: visible;
}
section.designed-section  .col-md-3 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}
section.learning-section .lear-cont {
    margin-top: -215px;
}

section.learning-section .learn-img h2 .fz-two {
    font-size: 34px;
}

section.learning-section .learn-img .col-md-8 .col-md-8 {
    padding: 0 15px;
    flex: 0 0 60%;
    max-width: 60%;
}
section.learning-section .learn-img .col-md-8 .col-md-4 {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 15px;
}
section.learning-section .feature-card {
    height: 205px;
}

section.admission-process .container {
    max-width: 100%;
}
section.empowering-section h2 {
    font-size: 40px;
}

section.empowering-section p {
    font-size: 24px;
}

section,
header.main-header {
    overflow: hidden;
}

footer.footer-section .container {
    max-width: 100%;
    padding: 0 30px;
}



}


@media screen and (min-width: 1023.98px) and (max-width: 1199.98px) {



section.courses-section .heade-dv h2 {
    font-size: 34px;
}
section.courses-section .heade-dv h2 .fz-two {
    font-size: 26px;
}

section.credit-journey-section .progress-circle {
    width: 90px;
    height: 90px;
}


section.credit-journey-section .col-md-2,
section.credit-journey-section .col-md-1 {
    padding: 0 5px;
}

section.credit-journey-section h4 {
    font-size: 16px;
}

section.credit-journey-section p {
    font-size: 18px;
}
section.credit-journey-section .next-animation {
    margin-top: 60px;
    transform: scale(0.7);
}
section.onlineright-section h2 {
    font-size: 34px;
}
section.designed-section .des-dvs h3 {
    font-size: 18px;
}
section.why-persue-section .persue-head {
    height: calc(100% - 15px);
}
section.why-persue-section .row>div {
    max-width: 33%;
    flex: 0 0 33%;
}
section.why-persue-section .persue-cont {
    height: 180px;
}

section.designed-section .row>div {
    flex: 0 0 33%;
    max-width: 33%;
}

section.online-degree-section .container {
    max-width: 100%;
    padding: 0 25px;
}

section.why-persue-section {
    padding: 0 25px;
}
section.online-degree-section h2 {
    font-size: 28px;
}

section.online-degree-section h4 {
    font-size: 26px;

}
section.courses-section .col-md-3 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}

section.courses-section .flickity-viewport {
    overflow: visible;
}
section.designed-section  .col-md-3 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}
section.learning-section .lear-cont {
    margin-top: -190px;
}

section.learning-section .lear-cont .row>div {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 8px;
}
section.learning-section .learn-img h2 .fz-two {
    font-size: 34px;
}

section.learning-section .learn-img .col-md-8 .col-md-8 {
    padding: 0 15px;
    flex: 0 0 60%;
    max-width: 60%;
}
section.learning-section .learn-img .col-md-8 .col-md-4 {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 15px;
}
section.learning-section .feature-card {
    height: 185px;
}

section.admission-process .container {
    max-width: 100%;
}
section.empowering-section h2 {
    font-size: 40px;
}

section.empowering-section p {
    font-size: 24px;
}

section,
header.main-header {
    overflow: hidden;
}

footer.footer-section .container {
    max-width: 100%;
    padding: 0 30px;
}



}




@media screen and (min-width: 767.98px) and (max-width: 1023.98px) {

section.courses-section .heade-dv h2 {
    font-size: 34px;
}
section.courses-section .heade-dv h2 .fz-two {
    font-size: 26px;
}
section.courses-section .course-cont h4 {
    font-size: 16px;
}
section.credit-journey-section .progress-circle {
    width: 90px;
    height: 90px;
}


section.credit-journey-section .col-md-2,
section.credit-journey-section .col-md-1 {
    padding: 0 5px;
}

section.credit-journey-section h4 {
    font-size: 16px;
}

section.credit-journey-section p {
    font-size: 18px;
}
section.credit-journey-section .next-animation {
    margin-top: 60px;
    transform: scale(0.7);
}
section.onlineright-section h2 {
    font-size: 34px;
}
section.designed-section .des-dvs h3 {
    font-size: 18px;
}
section.why-persue-section .persue-head {
    height: calc(100% - 15px);
}
section.why-persue-section .row>div {
    max-width: 33%;
    flex: 0 0 33%;
}
section.why-persue-section .persue-cont {
    height: 200px;
}

section.designed-section .row>div {
    flex: 0 0 33%;
    max-width: 33%;
}

section.online-degree-section .container {
    max-width: 100%;
    padding: 0 25px;
}

section.why-persue-section {
    padding: 0 25px;
}
section.online-degree-section h2 {
    font-size: 28px;
}

section.online-degree-section h4 {
    font-size: 26px;

}
section.courses-section .col-md-3 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}
section.courses-section .course-cont {
    height: 230px;
}
section.courses-section .flickity-viewport {
    overflow: visible;
}
section.designed-section  .col-md-3 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}
section.learning-section .lear-cont {
    margin-top: 30px;
}

section.learning-section  .col-md-3 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}

section.learning-section .learn-img .col-md-8 .col-md-8 {
    padding: 0 15px;
    flex: 0 0 60%;
    max-width: 60%;
}
section.learning-section .learn-img .col-md-8 .col-md-4 {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 15px;
}


section.admission-process .container {
    max-width: 100%;
}
section.empowering-section h2 {
    font-size: 40px;
}

section.empowering-section p {
    font-size: 24px;
}

section,
header.main-header {
    overflow: hidden;
}
section.count-section .col-md-2 {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}
section.count-section .count-dv {
    height: 220px;
}
section.count-section .flickity-viewport {
    overflow: visible;
}
footer.footer-section .container {
    max-width: 100%;
    padding: 0 30px;
}

}