:root {
    --color-red: #253c80;
    --color-black: #000000;
    --color-white: #ffffff;
}

@font-face {
  font-family: 'HelixRegular';
    src: url('../fonts/helix/Hellix-Regular.woff2') format('woff2'),
        url('../fonts/helix/Hellix-Regular.woff') format('woff'),
        url('../fonts/helix/Hellix-Regular.otf') format('opentype'),
        url('../fonts/helix/Hellix-Regular.ttf') format('ttf');
}
@font-face {
  font-family: 'HelixMedium';
  src: url('../fonts/helix/Hellix-Medium.woff2') format('woff2'),
        url('../fonts/helix/Hellix-Medium.woff') format('woff'),
        url('../fonts/helix/Hellix-Medium.otf') format('opentype'),
        url('../fonts/helix/Hellix-Medium.ttf') format('ttf');
}
@font-face {
  font-family: 'HelixSemiBold';
  src: url('../fonts/helix/Hellix-SemiBold.woff2') format('woff2'),
        url('../fonts/helix/Hellix-SemiBold.woff') format('woff'),
        url('../fonts/helix/Hellix-SemiBold.otf') format('opentype'),
        url('../fonts/helix/Hellix-SemiBold.ttf') format('ttf');
}
@font-face {
  font-family: 'HelixBold';
  src: url('../fonts/helix/Hellix-Bold.woff2') format('woff2'),
        url('../fonts/helix/Hellix-Bold.woff') format('woff'),
        url('../fonts/helix/Hellix-Bold.otf') format('opentype'),
        url('../fonts/helix/Hellix-Bold.ttf') format('ttf');
}
@font-face {
  font-family: 'HelixBlack';
  src: url('../fonts/helix/Hellix-Black.woff2') format('woff2'),
        url('../fonts/helix/Hellix-Black.woff') format('woff'),
        url('../fonts/helix/Hellix-Black.otf') format('opentype'),
        url('../fonts/helix/Hellix-Black.ttf') format('ttf');
}

@font-face {
  font-family: 'samsungRegular';
 src: url('../fonts/samsungsharpsans.otf') format('opentype');
}
@font-face {
  font-family: 'samsungMedium';
 src: url('../fonts/samsungsharpsans-medium.otf') format('opentype');
}
@font-face {
  font-family: 'samsungBold';
 src: url('../fonts/samsungsharpsans-bold.otf') format('opentype');
}


body {
    font-family: 'samsungRegular';
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    overflow-x: hidden;
    color: #253c80;
}
body p{ font-family: 'HelixRegular';}

.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;
    background: linear-gradient(190deg, rgb(238 71 53) 0%, rgb(253 187 45) 100%);
    transition: 0.9s;
}

.header.scrolled {
    background: linear-gradient(190deg, rgb(238 71 53) 0%, rgb(253 187 45) 100%);
    border-color: #ddd;
}

.qsLogo {
    margin-top: -8px;
    margin-left: 15px;
}

.nav-link {
    padding: 20px 13px !important;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: normal;
    color: #fff; font-weight: 600;
}

.nav-link:hover,
.nav-link:focus,
.navbar-nav .nav-link.show {
    color: var(--color-red);
}

.cta-btn {
    color: #fff;
    font-weight: bold;
}

.cta-btn small {
    display: block;
    font-size: 12px;
    line-height: 12px;
    font-weight: normal;
    color: #fff
}

/* .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);
} */

.bnrDeskImg img{width: 100%;max-width: 100%;}

.heroBanner__content h1 {
    font-size: 70px;
    font-weight: 800;
    line-height: 70px;
    margin: 20px 0;
    color: var(--color-red);
    letter-spacing: -10px;
}
.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-bg-type: rgb(37 60 128 / 11%);}
.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: auto;
}
.gymSportImgs .row>div{padding: 0 0 !important; margin: 0 0 !important;}
.table-responsive~ul li{font-family: 'HelixRegular';}

.marquee-vertical {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: block;
    flex-direction: column;
    animation: scroll-up 30s linear infinite;
    -webkit-animation: scroll-up 30s linear infinite;
    transform: translateY(10px) !important;
}


.marquee-content-2 {
    display: flex;
    flex-direction: column;
    animation: scroll-down 20s linear infinite;
    -webkit-animation: scroll-down 20s linear infinite;
    transform: translateY(10px) !important;
}

.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%;
    height: 100%;
    object-fit: cover;
}

@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: 1.1;
    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 .para_sec, .vcMessageSection__content--msg .para_sec p span{ position: relative; }
.vcMessageSection__content--msg .para_sec p .quote2::after {
    content: '"';
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    position: absolute;
}

.vcMessageSection__content--msg .para_sec p .quote1::before {
    content: '"';
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    left: -25px; top: 1px;
}

.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; text-align: justify;
}

.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: 15px !important;
}

.swiper-button-next {
    right: 15px !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;
    min-height: 315px;
    object-fit: cover;
}

.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: #191d3d; padding: 70px 0 0;
}
.copyright_sec{ margin: 40px 0 0; padding: 20px 0; border-top: 1px solid #fff; }
.copyright_sec p{ font-size: 14px; color: #fff; margin-bottom: 0; }

.footer-links h6 {
    color: var(--color-red);
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: start !important;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
    text-align: start !important;
}

.footer-links li a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    text-align: start !important;
    padding-left: 0;
}
.footer-links .social-nav li a{    text-align: center !important;}

.footer-links p {
    color: var(--color-white);
    font-weight: 300;
    font-size: 14px;
        text-align: start;
}

.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;
}
.mapSec .map{
    height: 200px;
    overflow: hidden;
}



/* inner pages */

.innerPageBanner {
    padding: 180px 0 100px;
    background: #f99d2f65;
}

.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: #253c80;
    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: 600;
    line-height: 18px;
    color: #111;
    /* border: 0; */
    vertical-align: middle !important;
    font-family: 'HelixRegular';
}
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
  }
  th, td {
    border: 1px solid #163d80;
    padding: 8px 12px;
    text-align: center;
  }
  th {
    background-color: #163d80;
    color: #fff;
  }
  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  tbody tr:nth-child(odd) {
    background-color: #fff;
  }
  td:first-child {
    font-weight: bold;
    background-color: #f1f1f1;
  }
  td[rowspan] {
    font-weight: bold;
    background-color: #e6e6e6;
  }
  .sub-header td:nth-child(2),
  .bold{font-weight: bold;}
  img{max-width: 100%;}
  .gmsprtImg{height: 100%;}
  .gmsprtImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.myList li {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
    font-weight: 500;
    color: #000;
    font-family: 'HelixRegular';
}

.myList li::before {
    content: '';
    background: url('https://www.cuchd.in/orientation-schedule-2025/assets/images/checkbox.svg');
    height: 20px;
    width: 20px;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0;
}


.myList-2 li::before {
    background: url('https://www.cuchd.in/orientation-schedule-2025/assets/images/close.svg');
    background-size: cover;
}

.myList-3 li::before {
    background: url('https://www.cuchd.in/orientation-schedule-2025/assets/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: 600;
}

.custom-list-style {
    padding: 0;
    margin: 0;
}

.custom-list-style li {
    list-style-type: none;
    font-size: 14px;
    font-weight: 600;
    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 */

.committeeLogs img{width: 150px;height: 125px;object-fit: contain;background: #fff;}
.footer-links h6{color: #fff;font-weight: 500;font-size: 16px;}
.servicesSection .mySwiper .swiper-wrapper{justify-content: center;}
.custom-list-style li .shineEffect{padding: 2px 5px;    font-size: 12px;border-radius: 5px;    text-transform: capitalize;}

.widget ul {
        list-style: none;
    padding: 0;
}
.social-nav li {
    float: left;
    margin: 10px 0 0 8px;
    list-style: none;
}
.social-links {
    padding: 0;
    margin: -10px 0 0 -10px
}

.social-links li {
    float: left;
    margin: 10px 0 0 10px;
    list-style: none;
    position: relative;
    padding: 0;
    text-align: center;
    border-radius: 50%
}

.social-links li a {
    display: block;
    line-height: 35px;
    font-size: 13px;
    position: relative;
    text-align: center;
    z-index: 0;
    width: 35px;
    border-radius: 50%;
    color: #fff
}

.social-nav {
    padding: 0;
    list-style: none;
    margin: -10px 0 0 -10px
}

.social-nav li {
    float: left;
    margin: 10px 0 0 8px;
    list-style: none
}

.social-nav a {
    display: inline-block;
    float: left;
    width: 40px;
    height: 40px;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    background: #000;
    position: relative;
    transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s
}

.model-2 a {
    overflow: hidden;
    font-size: 20px;
    border-radius: 4px
}

.model-2 a:hover {
    background: #fff;
    text-shadow: 0px 0px #d4d4d4, 1px 1px #d4d4d4, 2px 2px #d4d4d4, 3px 3px #d4d4d4, 4px 4px #d4d4d4, 5px 5px #d4d4d4, 6px 6px #d4d4d4, 7px 7px #d4d4d4, 8px 8px #d4d4d4, 9px 9px #d4d4d4, 10px 10px #d4d4d4, 11px 11px #d4d4d4, 12px 12px #d4d4d4, 13px 13px #d4d4d4, 14px 14px #d4d4d4, 15px 15px #d4d4d4, 16px 16px #d4d4d4, 17px 17px #d4d4d4, 18px 18px #d4d4d4, 19px 19px #d4d4d4, 20px 20px #d4d4d4, 21px 21px #d4d4d4, 22px 22px #d4d4d4, 23px 23px #d4d4d4, 24px 24px #d4d4d4, 25px 25px #d4d4d4, 26px 26px #d4d4d4, 27px 27px #d4d4d4, 28px 28px #d4d4d4, 29px 29px #d4d4d4, 30px 30px #d4d4d4
}

.model-2 .twitter {
    background: #00ACED;
    text-shadow: 0px 0px #0087ba, 1px 1px #0087ba, 2px 2px #0087ba, 3px 3px #0087ba, 4px 4px #0087ba, 5px 5px #0087ba, 6px 6px #0087ba, 7px 7px #0087ba, 8px 8px #0087ba, 9px 9px #0087ba, 10px 10px #0087ba, 11px 11px #0087ba, 12px 12px #0087ba, 13px 13px #0087ba, 14px 14px #0087ba, 15px 15px #0087ba, 16px 16px #0087ba, 17px 17px #0087ba, 18px 18px #0087ba, 19px 19px #0087ba, 20px 20px #0087ba, 21px 21px #0087ba, 22px 22px #0087ba, 23px 23px #0087ba, 24px 24px #0087ba, 25px 25px #0087ba, 26px 26px #0087ba, 27px 27px #0087ba, 28px 28px #0087ba, 29px 29px #0087ba, 30px 30px #0087ba
}

.model-2 .twitter:hover {
    color: #00ACED
}

.model-2 .facebook {
    background: #3B579D;
    text-shadow: 0px 0px #2d4278, 1px 1px #2d4278, 2px 2px #2d4278, 3px 3px #2d4278, 4px 4px #2d4278, 5px 5px #2d4278, 6px 6px #2d4278, 7px 7px #2d4278, 8px 8px #2d4278, 9px 9px #2d4278, 10px 10px #2d4278, 11px 11px #2d4278, 12px 12px #2d4278, 13px 13px #2d4278, 14px 14px #2d4278, 15px 15px #2d4278, 16px 16px #2d4278, 17px 17px #2d4278, 18px 18px #2d4278, 19px 19px #2d4278, 20px 20px #2d4278, 21px 21px #2d4278, 22px 22px #2d4278, 23px 23px #2d4278, 24px 24px #2d4278, 25px 25px #2d4278, 26px 26px #2d4278, 27px 27px #2d4278, 28px 28px #2d4278, 29px 29px #2d4278, 30px 30px #2d4278
}

.model-2 .youtube {
    background: #EB3939;
    text-shadow: 0px 0px #D12323, 1px 1px #D12323, 2px 2px #D12323, 3px 3px #D12323, 4px 4px #D12323, 5px 5px #D12323, 6px 6px #D12323, 7px 7px #D12323, 8px 8px #D12323, 9px 9px #D12323, 10px 10px #D12323, 11px 11px #D12323, 12px 12px #D12323, 13px 13px #D12323, 14px 14px #D12323, 15px 15px #D12323, 16px 16px #D12323, 17px 17px #D12323, 18px 18px #D12323, 19px 19px #D12323, 20px 20px #D12323, 21px 21px #D12323, 22px 22px #D12323, 23px 23px #D12323, 24px 24px #D12323, 25px 25px #D12323, 26px 26px #D12323, 27px 27px #D12323, 28px 28px #D12323, 29px 29px #D12323, 30px 30px #D12323
}

.model-2 .instagram {
    background: #F76618;
    text-shadow: 0px 0px #DC550D, 1px 1px #DC550D, 2px 2px #DC550D, 3px 3px #DC550D, 4px 4px #D12323, 5px 5px #DC550D, 6px 6px #DC550D, 7px 7px #DC550D, 8px 8px #DC550D, 9px 9px #DC550D, 10px 10px #DC550D, 11px 11px #DC550D, 12px 12px #DC550D, 13px 13px #DC550D, 14px 14px #DC550D, 15px 15px #DC550D, 16px 16px #DC550D, 17px 17px #DC550D, 18px 18px #DC550D, 19px 19px #DC550D, 20px 20px #DC550D, 21px 21px #DC550D, 22px 22px #DC550D, 23px 23px #DC550D, 24px 24px #DC550D, 25px 25px #DC550D, 26px 26px #DC550D, 27px 27px #DC550D, 28px 28px #DC550D, 29px 29px #DC550D, 30px 30px #DC550D
}

.model-2 .facebook:hover {
    color: #3B579D
}

.model-2 .google {
    background: #DD4A3A;
    text-shadow: 0px 0px #c23122, 1px 1px #c23122, 2px 2px #c23122, 3px 3px #c23122, 4px 4px #c23122, 5px 5px #c23122, 6px 6px #c23122, 7px 7px #c23122, 8px 8px #c23122, 9px 9px #c23122, 10px 10px #c23122, 11px 11px #c23122, 12px 12px #c23122, 13px 13px #c23122, 14px 14px #c23122, 15px 15px #c23122, 16px 16px #c23122, 17px 17px #c23122, 18px 18px #c23122, 19px 19px #c23122, 20px 20px #c23122, 21px 21px #c23122, 22px 22px #c23122, 23px 23px #c23122, 24px 24px #c23122, 25px 25px #c23122, 26px 26px #c23122, 27px 27px #c23122, 28px 28px #c23122, 29px 29px #c23122, 30px 30px #c23122
}

.model-2 .google:hover {
    color: #DD4A3A
}

.model-2 .linkedin {
    background: #007BB6;
    text-shadow: 0px 0px #005983, 1px 1px #005983, 2px 2px #005983, 3px 3px #005983, 4px 4px #005983, 5px 5px #005983, 6px 6px #005983, 7px 7px #005983, 8px 8px #005983, 9px 9px #005983, 10px 10px #005983, 11px 11px #005983, 12px 12px #005983, 13px 13px #005983, 14px 14px #005983, 15px 15px #005983, 16px 16px #005983, 17px 17px #005983, 18px 18px #005983, 19px 19px #005983, 20px 20px #005983, 21px 21px #005983, 22px 22px #005983, 23px 23px #005983, 24px 24px #005983, 25px 25px #005983, 26px 26px #005983, 27px 27px #005983, 28px 28px #005983, 29px 29px #005983, 30px 30px #005983
}

.model-2 .linkedin:hover {
    color: #007BB6
}

.model-2 .pinterest {
    background: #CB2026;
    text-shadow: 0px 0px #9f191e, 1px 1px #9f191e, 2px 2px #9f191e, 3px 3px #9f191e, 4px 4px #9f191e, 5px 5px #9f191e, 6px 6px #9f191e, 7px 7px #9f191e, 8px 8px #9f191e, 9px 9px #9f191e, 10px 10px #9f191e, 11px 11px #9f191e, 12px 12px #9f191e, 13px 13px #9f191e, 14px 14px #9f191e, 15px 15px #9f191e, 16px 16px #9f191e, 17px 17px #9f191e, 18px 18px #9f191e, 19px 19px #9f191e, 20px 20px #9f191e, 21px 21px #9f191e, 22px 22px #9f191e, 23px 23px #9f191e, 24px 24px #9f191e, 25px 25px #9f191e, 26px 26px #9f191e, 27px 27px #9f191e, 28px 28px #9f191e, 29px 29px #9f191e, 30px 30px #9f191e
}
.offcanvas-body ul.list-unstyled{display: flex;}
.footer-links.FtrCntct li {
       margin-bottom: 0px;
}
.footer-links.FtrCntct li a small{color: #fff;    margin-right: 10px;}
.footer-links.FtrCntct ul{margin-top: 20px !important;}
.instFeed img{width: 100%;}
.instaPost{padding: 80px 0px;}
.mapSec{
    position: relative;
    width: 70%;
    margin-top: -150px;
}


@media only screen and (max-width: 1599px) {
    .nav-link {
        padding: 20px 12px !important;
    }

    .swiper-button-next {
        right: 20px !important;
    }

    .swiper-button-prev {
        left: 20px !important;
    }
    .nav-link { padding: 20px 10px !important; font-size: 12px;}
}

@media only screen and (max-width: 1399px) {
    .nav-link {
        padding: 20px 9px !important;
        font-size: 12px;
        letter-spacing: 1px;
    }

    .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: 70px;
        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;
    }
    .footer-links li a{ word-break: break-all; }

    .navbar-toggler,
    .navbar-toggler:focus {
        background: #fff;
        padding: 7px 9px;
        border: 0;
        box-shadow: none;
    }
    .social-nav a{ width: 37px; }
    .nav-link{ color: var(--color-red); }

    .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) {
    .mapSec{width: 100%;margin-top: 25px;}
    .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-top: 30px;
    }

    .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;
    }
}
.gallerySection{overflow: hidden;}
@media only screen and (max-width: 767px) {
    .heroBanner{padding-top: 65px;}
    .myList li{font-size: 14px;line-height: 1.5;padding-left: 30px;}
    .myList li::before{height: 16px;width: 16px;}
    .custom-list-style li .shineEffect{font-size: 10px;}
    .sideLogo{text-align: center;}
    .os-logo {
        width: 270px;
    }
    .myList li::before{ top: 0; }

    .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) {
    .servicesSection .mySwiper .swiper-wrapper{justify-content: normal;}
    .cuLogo {
        width: 127px;
    }

    .qsLogo {
        width: 82px;
        margin-left: 5px;
    }

    .heroBanner__content h1 {
        font-size: 55px;
        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 h4 {
        font-size: 18px;
        line-height: 19px;
    }

    .vcMessageSection__content--msg p, .aboutSection__Content 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: 25px;
    }
    .mapSec{ margin-top: 0; }
    .py-100 {
        padding: 50px 0
    }

    .modal-body {
        padding: 30px !important
    }

    .modal-body p {
        font-size: 14px;
    }

    .modal-body strong {
        font-size: 16px;
    }
    .footer{ padding-bottom: 0; }
    .copyright_sec p{ font-size: 13px; }
    .copyright_sec{ padding: 15px 0 }
    .nav-link { padding: 12px 0 !important; }

    .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;
    }
    .vcMessageSection .row{ flex-direction: column-reverse; }
    .innerPageBanner__content h1 br{ display: none; }
}
