:root {
    --color-red: #d00000;
    --color-black: #000000;
    --color-white: #ffffff;
}


body {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    overflow-x: hidden;
}

.header {
    transition: ease-in-out 0.4s;
    -webkit-transition: ease-in-out 0.4s;
    -moz-transition: ease-in-out 0.4s;
    -ms-transition: ease-in-out 0.4s;
    -o-transition: ease-in-out 0.4s;
    border-bottom: 1px solid transparent;
}

.scrolled {
    background: var(--color-white);
    border-color: #ddd;
}

.qsLogo {
    margin-top: -8px;
    margin-left: 15px;
}

.nav-link {
    padding: 20px 35px !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: normal;
    color: var(--color-black);
}

.nav-link:hover,
.nav-link:focus,
.navbar-nav .nav-link.show {
    color: var(--color-red);
}

.cta-btn {
    color: var(--color-red);
    font-weight: bold;
}

.cta-btn small {
    display: block;
    font-size: 12px;
    line-height: 12px;
    font-weight: normal;
    color: var(--color-black);
}

.heroBanner {
    height: 100vh;
    min-height: 768px;
    overflow: hidden;
    position: relative;
}

.heroBanner .container {
    position: relative;
    z-index: 1;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.heroBanner::before {
    content: '';
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 250px;
    z-index: 10;
}


.heroBanner::after {
    content: '';
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 1) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 250px;
    z-index: 10;
}

.heroBanner__content h1 {
    font-size: 130px;
    font-weight: 800;
    line-height: 70px;
    margin: 20px 0;
    color: var(--color-red);
    letter-spacing: -10px;
}

.heroBanner__content h1 span {
    font-family: "WindSong", cursive;
    font-size: 56px;
    font-weight: 300;
    color: var(--color-black);
    letter-spacing: 0;
}

.heroBanner__content p {
    font-size: 26px;
    line-height: 30px;
    font-weight: 300;
    margin-top: 20px;
}

.swiper {
    width: 600px;
    height: 300px;
}

.marquee-vertical {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    animation: scroll-up 30s linear infinite;
    -webkit-animation: scroll-up 30s linear infinite;
}


.marquee-content-2 {
    display: flex;
    flex-direction: column;
    animation: scroll-down 20s linear infinite;
    -webkit-animation: scroll-down 20s linear infinite;
}

.marquee-vertical .item {
    margin: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.marquee-vertical .item img {
    width: 100%;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}


.py-100 {
    padding: 100px 0
}

.main-heding {
    font-size: 66px;
    line-height: 58px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -3px;
}

.aboutSection__Content h4 {
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    color: var(--color-red);
    margin: 30px 0;
}

.aboutSection__Content p {
    font-size: 20px;
    font-weight: 300;
    line-height: 28px;
}

.vcMessageSection {
    background: var(--color-red);
}

.vcMessageSection__content--msg p {
    font-size: 24px;
    font-weight: 300;
    line-height: 32px;
    position: relative;
    margin-bottom: 30px;
}

.vcMessageSection__content--msg p::after {
    content: '"';
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    position: absolute;
}

.vcMessageSection__content--msg p::before {
    content: '"';
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    left: -30px;
}

.vcMessageSection__content--msg h3 {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.vcMessageSection__content--msg h3 span {
    display: block;
    font-size: 24px;
    font-weight: 300;
}

.vcMessageSection__content--msg small {
    display: block;
    font-size: 18px;
    font-weight: 300;
}


.vcMessageSection__image img {
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.cta-btn-sm {
    background: var(--color-red);
    border-color: var(--color-white);
    color: var(--color-white);
    padding: 7px 20px;
    font-weight: 300;
}

.cta-btn-sm:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-black);
}

.close-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 15px;
    background: var(--color-red);
    border: 0;
    box-shadow: none;
    opacity: 1;
    border-top-right-radius: .4rem;
}

.shape {
    width: 100px;
}

.modal-body p {
    font-size: 18px;
    font-weight: 300;
}

.modal-body strong {
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
}

.modal-body h4 {
    font-weight: bold;
    font-size: 30px;
    line-height: 30px;
}



.swiper-slide {
    display: flex;
}

.swiper-slide .card {
    width: 100%;
}


.swiper-button-prev {
    left: -70px !important;
}

.swiper-button-next {
    right: -70px !important;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #ffffff;
    height: 50px !important;
    width: 50px !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    top: 52%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    color: #111;
}


.servicesSection .card img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.servicesSection .card a {
    color: var(--color-black);
    text-decoration: none;
}


.committeesSection {
    background: #f4f4f4;
}

.committeeLogs {
    gap: 10px;
}

.committeeLogs img {
    border: 1px solid #ddd;
    width: 11.82222%;
}

.gallerySection img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}


.footer {
    background: var(--color-black);
}

.footer-links h6 {
    color: var(--color-red);
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.footer-links li {
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-links li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 300;
}

.footer-links p {
    color: var(--color-white);
    font-weight: 300;
    font-size: 14px;
}

.map iframe {
    width: 100%;
    height: 350px;
}


.dropdown-menu {
    width: 280px;
}

.dropdown-item {
    font-size: 14px;
    font-weight: 300;
    padding: 7px 20px;
    color: var(--color-black);
}

.dropdown-menu small {
    padding: 7px 20px;
    font-size: 12px;
    color: var(--color-red);
}


.cuMap-section__in {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}


#goTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    font-size: 18px;
    border: none;
    background-color: var(--color-red);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    height: 50px;
    width: 50px;
}

#goTopBtn:hover {
    background-color: #555;
}



/* inner pages */

.innerPageBanner {
    padding: 180px 0 100px;
    background: #f4ffee;
}

.innerPageBanner__content h1 {
    font-size: 64px;
    line-height: 55px;
    font-weight: bold;
    margin-bottom: 20px;
}

#example_info {
    font-size: 14px;
    text-align: center;
    background: #c12222;
    border-radius: 10px 10px 0 0;
    color: #fff;
    padding: 0;
}

#example_paginate {
    text-align: center;
    background: #5d5b5a;
    border-radius: 0 0 10px 10px;
    padding: 10px;
    color: #fff;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
}

#example_paginate a {
    color: #fff;
    font-size: 14px;
    margin: 0 10px;
    cursor: pointer;
}

.table th {
    background: #5d5b5a;
    font-size: 12px;
    font-weight: 600;
    line-height: 15px;
    text-transform: uppercase;
    border: 0 !important;
    vertical-align: middle !important;
    color: var(--color-white);
}

.table td {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    color: #111;
    border: 0;
    vertical-align: middle !important;
}


.myList li {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    font-weight: 300;
    color: #000;
}

.myList li::before {
    content: '';
    background: url('../images/checkbox.svg');
    height: 20px;
    width: 20px;
    background-size: cover;
    position: absolute;
    top: -2px;
    left: 0;
}


.myList-2 li::before {
    background: url('../images/close.svg');
    background-size: cover;
}

.myList-3 li::before {
    background: url('../images/checkbox.svg');
    background-size: cover;
}

.accordion .card-header button {
    padding: 0;
    font-size: 15px;
    color: #5c5a59;
    font-weight: 600;
    padding: 12px 20px;
}


.head-title {
    font-size: 18px;
    font-weight: 300;
}

.custom-list-style {
    padding: 0;
    margin: 0;
}

.custom-list-style li {
    list-style-type: none;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 12px;
    position: relative;
}

.custom-list-style li::before {
    content: '-';
    margin-right: 5px;
}

.page-heading h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 30px;
}

.breadcrumb.d-inline-flex.bg-transparent {
    font-size: 14px;
}

.hostelContact li a {
    text-decoration: none;
    color: #fff;
    background: #000;
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 5px;
}

/* inner pages */


@media only screen and (max-width: 1599px) {
    .nav-link {
        padding: 20px 18px !important;
    }

    .swiper-button-next {
        right: 20px !important;
    }

    .swiper-button-prev {
        left: 20px !important;
    }
}

@media only screen and (max-width: 1399px) {
    .nav-link {
        padding: 20px 9px !important;
        font-size: 12px;
        letter-spacing: 2px;
    }

    .cta-btn {
        font-size: 15px;
    }

    .main-heding {
        font-size: 54px;
        line-height: 49px;
    }

    .cuLogo {
        width: 150px;
    }

    .qsLogo {
        width: 96px;
        margin-left: 5px;
    }

    .heroBanner__content h1 {
        font-size: 100px;
        line-height: 60px;
    }

    .heroBanner__content p {
        font-size: 20px;
        line-height: 24px;
    }

    .innerPageBanner__content h1 {
        font-size: 54px;
        line-height: 45px;
    }

    .page-heading h2 {
        font-size: 26px;
        line-height: 25px;
    }
}

@media only screen and (max-width: 1199px) {
    .marquee-vertical .item {
        height: 350px;
    }

    .main-heding {
        font-size: 44px;
        line-height: 39px;
    }

    .aboutSection__Content p {
        font-size: 16px;
        line-height: 23px;
    }

    .aboutSection__Content h4 {
        font-size: 24px;
        line-height: 25px;
    }

    .vcMessageSection__content--msg p {
        font-size: 18px;
        line-height: 26px;
    }

    .vcMessageSection__content--msg h3 {
        font-size: 30px;
    }

    .vcMessageSection__content--msg h3 span {
        font-size: 20px;
    }

    .vcMessageSection__content--msg small {
        font-size: 15px;
    }

    .py-100 {
        padding: 70px 0
    }

    .navbar-toggler,
    .navbar-toggler:focus {
        background: #fff;
        padding: 7px 9px;
        border: 0;
        box-shadow: none;
    }

    .offcanvas-header {
        padding: 30px;
    }

    .offcanvas-body {
        padding: 0 30px;
    }

    .nav-link {
        padding: 15px 0 !important;
    }

    .offcanvas-title {
        font-size: 18px;
    }

    .innerPageBanner__content h1 {
        font-size: 48px;
        line-height: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .heroBanner__content {
        padding: 130px 0 40px;
    }

    .heroBanner__content p {
        max-width: 450px;
        margin: auto;
    }

    .heroBanner {
        min-height: 900px;
    }

    .main-heding {
        font-size: 36px;
        line-height: 36px;
    }

    .vcMessageSection__content--msg {
        text-align: center;
        margin-bottom: 40px;
    }

    .vcMessageSection__content--msg p {
        max-width: 560px;
        margin: auto;
        margin-bottom: 15px;
    }

    .vcMessageSection__content--msg p::before {
        position: static;
    }

    .committeeLogs img {
        width: 18%;
    }

    .modal-body p {
        font-size: 16px;
    }

    .modal-body strong {
        font-size: 18px;
    }

    .modal-body h4 {
        font-size: 22px;
        line-height: 22px;
    }

    .innerPageBanner__content h1 {
        font-size: 40px;
        line-height: 30px;
    }

    .sideLogo {
        margin-top: 40px;
    }

    .cuMap-section__in {
        height: 400px;
    }
}

@media only screen and (max-width: 767px) {
    .os-logo {
        width: 270px;
    }

    .main-heding {
        font-size: 30px;
        line-height: 32px;
        letter-spacing: -1px;
    }

    .footer-links li,
    .footer-links p {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .close-btn {
        padding: 3px;
        background: var(--color-red);
        border-radius: 7px;
        right: 10px;
        top: 10px;
    }
    .close-btn svg {
        width: 24px;
        height: 24px
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px !important;
        height: 40px !important;
    }

    .innerPageBanner {
        padding: 140px 0 50px;
    }

    .innerPageBanner__content h1 {
        font-size: 34px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .cuLogo {
        width: 127px;
    }

    .qsLogo {
        width: 82px;
        margin-left: 5px;
    }

    .heroBanner__content h1 {
        font-size: 78px;
        line-height: 50px;
    }

    .heroBanner__content h1 span {
        font-size: 40px;
    }

    .os-logo {
        width: 228px;
    }

    .heroBanner__content p {
        font-size: 16px;
        line-height: 19px;
    }

    .marquee-vertical .item {
        height: 170px;
        margin: 3px;
    }

    .main-heding {
        font-size: 26px;
        line-height: 27px;
        margin-bottom: 20px;
    }

    .shape {
        width: 80px;
    }

    .aboutSection__Content p {
        font-size: 14px;
        line-height: 19px;
    }

    .aboutSection__Content h4 {
        font-size: 18px;
        line-height: 19px;
    }

    .vcMessageSection__content--msg p {
        font-size: 16px;
        line-height: 23px;
    }

    .vcMessageSection__content--msg h3 {
        font-size: 20px;
    }

    .vcMessageSection__content--msg h3 span {
        font-size: 16px;
    }

    .vcMessageSection__content--msg small {
        font-size: 13px;
    }

    .committeeLogs img {
        width: 31%;
    }

    .footer-links h6 {
        margin-bottom: 15px;
    }

    .footer-links {
        margin-bottom: 32px;
    }

    .py-100 {
        padding: 50px 0
    }

    .modal-body {
        padding: 30px !important
    }

    .modal-body p {
        font-size: 14px;
    }

    .modal-body strong {
        font-size: 16px;
    }

    .modal-body h4 {
        font-size: 20px;
        line-height: 20px;
    }

    .innerPageBanner__content h1 {
        font-size: 28px;
        line-height: 28px;
    }

    .page-heading h2 {
        font-size: 22px;
        line-height: 23px;
    }

    .cuMap-section__in {
        height: 250px;
    }
}