@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 
    Default color, sizes, overwrite classes
*/

:root {
    --primary-yellow-color: rgb(255, 255, 0);
    --primary-yellow-hover-color: rgb(228, 228, 1);
    --primary-red-color: rgb(227, 6, 19);
    --primary-red-light-color: rgb(201 166 166);
    --primary-grey-color: rgb(28, 164, 135);
    --primary-dark-grey-color: rgb(88, 88, 88);
    --primary-dark2-grey-color: rgb(122, 122, 122);
    --primary-blue-color: rgb(20, 6, 158);
    --primary-blue2-color: rgb(53, 33, 233);
    --primary-black-color: rgb(0, 0, 0);
    --bg-color: rgb(228, 253, 249);
    --color-white: rgb(255, 255, 255);
    --light-color-white: rgb(233, 242, 247);
    --default-font-size: 14px;
    --used-font-size: 18px;
    --border-radius: 20px;
}

.text-red { color: var(--primary-red-color) !important; }
.text-grey { color: var(--primary-grey-color) !important; }
.text-dark-grey { color: var(--primary-dark-grey-color) !important; }
.text-dark2-grey { color: var(--primary-dark2-grey-color) !important; }
.text-blue { color: var(--primary-blue-color) !important; }
.text-blue2 { color: var(--primary-blue2-color) !important; }
.text-yellow { color: var(--primary-yellow-color) !important; }
.text-white { color: var(--color-white) !important; }

.bg-color-theme-grey{
    background-color: var(--primary-grey-color);
}

.btn-outline-primary{
    border-color: var(--primary-grey-color);
    color: var(--primary-grey-color);
    background-color: transparent;
}

.btn-outline-primary:hover{
    border-color: var(--primary-dark-grey-color);
    color: var(--color-white);
    background-color: var(--primary-grey-color);
}

.carousel-indicators .bg-color-white {
    background-color: var(--color-white);
}

h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6,p,.body_text,.small_text{
    color: var(--primary-black-color);
}

.bg-color-theme-grey h1,.bg-color-theme-grey h2,.bg-color-theme-grey h3,.bg-color-theme-grey h4,.bg-color-theme-grey h5, .bg-color-theme-grey h6, .bg-color-theme-grey .h1, .bg-color-theme-grey .h2, .bg-color-theme-grey .h3, .bg-color-theme-grey .h4, .bg-color-theme-grey .h5, .bg-color-theme-grey .h6, .bg-color-theme-grey p, .bg-color-theme-grey .body_text, .bg-color-theme-grey .small_text {
    color: var(--color-white);
}
.h1 { font-size: 1.75rem; }
.h2 { font-size: 1.5rem; }
.h3 { font-size: 1.25rem; }
.h4 { font-size: 1rem; }
.body_text { font-size: 0.938rem; }
.small_text { font-size: 0.819rem; }

.font-weight-300 {
    font-weight: 300;
}

.saturate { filter: saturate(3); }
.grayscale { filter: grayscale(100%); }
.contrast { filter: contrast(160%); }
.brightness { filter: brightness(0.25); }
.blur { filter: blur(3px); }
.invert { filter: invert(100%); }
.sepia { filter: sepia(100%); }
.huerotate { filter: hue-rotate(180deg); }
.rss.opacity { filter: opacity(50%); }
html {
    scroll-behavior: smooth;
  }
body {
    background-color: var(--color-white);
    font-weight: var(--default-font-size);
    font-family: 'Ubuntu', Helvetica, sans-serif !important;
}

a { color: #000; }
p {
    color: var(--primary-black-color);
    font-size: var(--used-font-size);
    font-weight: 400;
}
.btn-red {
    font-weight: bold;
    background-color: var(--primary-red-color);
}
.color-red{
    color: var(--primary-red-color);
}
.fainted-text {
    font-size: 60px;
    font-weight: bolder;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(212,212,212);
}
.bg-yellow{
    background-color: var(--primary-yellow-color);
}
.btn.bg-yellow:hover{
    background-color: rgb(197, 197, 7);;
}
.min-h-300{
    min-height: 300px;
}
.min-h-400{
    min-height: 400px;
}
.border-radius-0 {
    border-radius: 0;
}
/* 
    Default color, sizes, overwrite classes end
*/



/* 
    NAVBAR RELATED CLASSES START
 */

.navbar ul li a {
    font-size: var(--used-font-size);
    font-weight: 400;
    color: var(--primary-black-color) !important;
}

.navbar ul li.active a {
    font-size: var(--used-font-size);
    font-weight: bolder;
}

.navbar a.nav-btn-link {
    text-decoration: none;
    color: var(--light-color-white) !important;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--primary-grey-color);
    padding: 5px 15px;
}
.navbar ul li a:hover{
    color: var(--primary-grey-color) !important;
}
.navbar a.nav-btn-link:hover {
    background-color: grey;
    color: var(--light-color-white) !important;
}
.navbar li.dropdown div a.dropdown-item {
    color: var(--color-white) !important;
}
.navbar li.dropdown div a.dropdown-item:hover {
    color: var(--primary-grey-color) !important;
}
.dropdown-menu {
    background-color: var(--primary-grey-color);
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--light-color-white);
}
/* 
    NAVBAR RELATED CLASSES END
 */


 /* 
    RECENT SECTION CLASSES START
 */
#recentUpdateSection {
    background-color: var(--primary-grey-color);
    border-radius: 25px;
    /* border-bottom: 10px solid var(--primary-yellow-color); */
    box-shadow: 0px 10px rgb(255 255 0);
    padding: inherit;
}
.updateSection .updateHeading h2 {
    color: var(--light-color-white);
    font-weight: bold;
}
.updateTitle {
    background-color: var(--light-color-white);
    color: var(--primary-grey-color);
    font-size: var(--used-font-size);
    width: fit-content;
    font-weight: 700;
    text-transform: uppercase;
}

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

.updatedescription {
    font-size: var(--used-font-size);
    color: var(--light-color-white);
}

.updateLink {
    text-decoration: underline;
    color: var(--primary-yellow-color);
    font-weight: 400;
    font-size: var(--used-font-size);
}
/* 
    RECENT SECTION CLASSES END
 */


 /* Breadcrum */
 .breadcrum-path a {
     color: var(--primary-blue-color);
 }

 .breadcrum-path a:hover{
     text-decoration: none;
     color: var(--primary-dark-grey-color);
 }

/* FACULTY CARD */

.faculty_card {
    border: 1px solid var(--primary-dark2-grey-color);
    border-radius: var(--border-radius);
    height: 100%;
}
faculty_card .card_img {
    flex: 1 1 auto;
}
.faculty_card .card_img img{
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}
.faculty_card .card_desc{
    padding: 15px 5px 5px 5px;
    /* min-height: 146px; */
    flex: 0 1 auto;
}

/* FACULTY CARD */


/* 
    ABOUT SECTION CLASSES START
 */
#aboutSection, #exploreSection {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerTitle {
    color: var(--primary-blue-color);
    text-transform: uppercase;
    font-weight: bolder;
    position: relative;
}
.undelineLine{
    position: relative;
}
.undelineLine::after {
    content: '';
    position: absolute;
    width: 140px;
    left: 0;
    bottom: -20px;
    padding-bottom: 10px;
    border-bottom: 10px solid var(--primary-red-color);
}

.aboutDesc {
    font-size: var(--used-font-size);
    font-weight: 400;
}

.bullet_list li i {
    color: var(--primary-red-color);
}

.bullet_list li {
    /* font-weight: bold; */
    padding: 5px 0;
    font-size: var(--used-font-size);
}

.aboutLink {
    text-decoration: underline;
    color: var(--primary-red-color);
    font-weight: 600;
    font-size: var(--used-font-size);
}
/* 
    ABOUT SECTION CLASSES START
 */


/*
    CHECKBOX RELATED CLASSES
*/

.checkboxlist label {
    font-weight: bold;
    font-size: var(--used-font-size);
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--primary-red-color);
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked~.checkmark {
    background-color: var(--primary-red-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 3px;
    top: 1px;
    width: 5px;
    height: 7px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* 
    CHECKBOX RELATED CLASSES END
 */




.section-head-undelineLine:after {
    content: '';
    width: 150px;
    border-bottom: 10px solid var(--primary-red-color);
    position: absolute;
    bottom: -40px;
}


.blank-vertical-line:after {
    content: '';
    position: absolute;
}


/* CARD RELATED CLASSES START*/
.dif-card {
    padding: 20px 10px;
    border-radius: var(--border-radius);;
    margin: 20px 0;
    text-align: center;
    border: 1px solid var(--primary-grey-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dif-card img {
    width: 130px;
}


.dif-card:hover{
    background-color: var(--primary-grey-color);
    color: var(--color-white);
    box-shadow: 0px 10px rgb(255 255 0);
    transition: all 0.3s;
}

.dif-card.active{
    background-color: var(--primary-grey-color);
    color: var(--color-white);
    box-shadow: 0px 10px rgb(255 255 0);
    transition: all 0.3s;
}

.dif-card:hover p {
    color: var(--color-white);
}

.dif-card:hover img {
    filter: invert(100%);
}
/* CARD RELATED CLASSES END*/

.vector-img img{
    border-radius: var(--border-radius);;
}

/*
    ACCORDION RELATED CLASSES START
*/
.accordian-section div.col-md-5{
    position: relative;
}
.accordion-div .card {
    border: 0;
    border-radius: var(--border-radius);;
    background-color: rgb(221,255,249);
}
.accordion-div .card .card-header {
    border: 0;
    border-radius: var(--border-radius);;
}
.accordion-div .card .card-header button, .card .card-body{
    background-color: rgb(221,255,249);
    border-radius: var(--border-radius);;
    padding-right: 35px !important;
}
.accordion-div .card .card-header button {
    font-weight: bold;
    word-wrap: break-word;
}
.accordion-div .card .card-header button.collapsed {
    font-weight: 400;
    background-color: var(--color-white);
    border-radius: 0;
    border-bottom: 1px solid #000;
}
.accordion-div .card:last-child .card-header button.collapsed{
    border: none;
}
.accordion-div .card .card-header button:focus{
    box-shadow: none;
}
.accordion-div .card .card-header h5{
    position: relative;
}
.accordion-div .card .card-header button::before{
    content: '';
    position: absolute;
    right: 22px;
    top: 27px;
    height: 25px;
    width: 25px;
    border: 2px solid var(--primary-red-color);
    border-radius: 10px;
    color: var(--primary-red-color);
    font-size: 25px;
}
.accordion-div .card .card-header button.collapsed::before{
    border: 2px solid var(--primary-grey-color);
    color: var(--primary-grey-color);
}
.accordion-div .card .card-header button::after{
    content: '-';
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 25px;
    color: var(--primary-red-color);
}
.accordion-div .card .card-header button.collapsed::after{
    content: '+';
    position: absolute;
    right: 27px;
    top: 20px;
    font-size: 25px;
    color: #1ea588;
}
.accordion-div .card-header h5 span, .accordion-div .card-body {
    font-size: 18px;
}
/* 
    ACCORDION RELATED CLASSES END
*/

.custom-input {
    border-radius: 0;
    padding: 25px 10px;
    font-weight: 500;
    border: none;
    box-shadow: 0px 1px 4px 1px #d1cbcb;
}


/* 
    FOOTER RELATED CLASSES START
*/
.footer, .bg-color-theme{
    background-color: #ddfff9;
    /* background-image: url('assets/img/bg-footer-vector.svg'); */
}
.footer-links li a{
    text-decoration: none;
    color: var(--primary-black-color);
    font-size: var(--used-font-size);
    font-weight: 400;
}
.footer-links li a:hover{
    color: var(--primary-grey-color);
}
.social-icons li a{
    color: rgb(16,60,51);
    text-decoration: none;
    font-size: var(--default-font-size);
}
.social-icons li a:hover{
    color: var(--primary-red-light-color);
}
#copyrightline {
    background-color: rgb(22,162,139);
}
#copyrightline a, #copyrightline p {
    font-size: 12px;
    color: var(--color-white);
    text-decoration: none;
}
/* 
    FOOTER RELATED CLASSES END
*/

/* 
    CAROUSEL RELATED CLASSES START
*/
.carousel-control-next, .carousel-control-prev {
    width: 50px;
    height: 50px;
    background-color: #7fffd461;
    border-radius: 50%;
    top: 50%;
    transform: translate(0%, -50%);
}
.carousel-control-next:hover, .carousel-control-prev:hover {
    background-color: rgba(255, 255, 0, 0.401);
}
.carousel-item img{
    float: right;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 50px;
    left: 0;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: left;
    margin-right: 0;
    margin-left: 0;
    list-style: none;
}
.carousel-indicators .active {
    background-color: var(--primary-red-color);
}
.carousel-indicators li {
    position: relative;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--primary-grey-color);
    border-radius: 50%;
}
.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    content: "";
}
.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 10px;
    height: 10px;
    content: "";
}
#carouselExampleIndicators2 ol.carousel-indicators {
    padding-left: 0;
}
/* 
    CAROUSEL RELATED CLASSES END
*/


.imglist{
    transform: rotate(180deg);
}
.imglist li {
    margin-left: -50px;
    transform: rotate(-180deg);
}
.small-img{
    border-radius: 50%;
    box-shadow: 0px 3px rgb(255 255 0);
}
.break-spaces {
    white-space: break-spaces;
}
.undelineLine.center::after {
    content: '';
    position: absolute;
    width: 140px;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -15px;
    padding-bottom: 10px;
    border-bottom: 10px solid var(--primary-red-color);
}


/*
    BORDER CARD CLASSES START
*/
.border_card {
    border: 1px solid var(--primary-grey-color);
    border-radius: var(--border-radius);;
    position: relative;
}


.border_card .gmap{
    border-radius: var(--border-radius);;
    width: 100%;
    height: 270px;
}

.location_icon i{
    position: absolute;
    bottom: -25px;
    font-size: 25px;
    left: 50%;
    transform: translate(-50%, 0);
    color: var(--color-white);
    background-color: var(--primary-grey-color);
    padding: 17px 22px;
    border-radius: 50%;
}
.location_icon a:hover i{ 
    background-color: var(--primary-dark-grey-color);
    color: var(--primary-yellow-color);
    bottom: -30px;
    transition: all .5s;
}

.border_card .card_subtitle {
    min-height: 140px;
}

.background-stl {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}
/*
    BORDER CARD CLASSES END
*/


/*
    TABEL RELATED CLASSES START
*/
.table-style {
    width: 100%;
}
.table-style thead, .table-style tbody tr:nth-of-type(even) {
    background-color: var(--primary-grey-color);
    color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0px 5px var(--primary-yellow-color);
}
.table-style tbody tr:nth-of-type(even) {
    color: var(--light-color-white);
}
.table-style thead th, .table-style tbody tr td {
    padding: 20px;
    text-align: center;
    border-left: 1px solid var(--color-white);
}
.table-style thead th:first-child, .table-style tbody tr td:first-child {
    border-top-left-radius: var(--border-radius);;
    border-bottom-left-radius: var(--border-radius);;
    border-left: none;
}
.table-style thead th:last-child, .table-style tbody tr td:last-child {
    border-top-right-radius: var(--border-radius);;
    border-bottom-right-radius: var(--border-radius);;
}
/*
    TABS RELATED CLASSES END
*/


/*
    TABS RELATED CLASSES START
*/
.tab-style li {
    margin: 0 5px 0 0;
    min-height: 55px;
}
.tab-style li a{
    text-decoration: none;
    padding: 15px 20px;
    background-color: var(--primary-yellow-color);
    font-size: 17px;
    font-weight: 500;
}
.tab-style li a:hover {
    background-color: var(--primary-yellow-hover-color);
    color: var(--primary-black-color);
}
.tab-style li a.active{
    background-color: var(--primary-grey-color);
    color: var(--color-white);
}
.tab-style-content {
    padding: 40px 0 0 0;
    color: var(--primary-grey-color);
}
.tab-style-content p {
    color: var(--primary-grey-color);
    font-size: 19px;
    font-weight: 400;
}
/*
    TABS RELATED CLASSES END
*/


/*
    GALLERY RELATED CLASSES START
*/
.img_gallery{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.img_gallery .img_box {
    padding: 5px;
    height: 220px;
    margin: 5px 0;
}
.tobii-zoom__icon {
    opacity: 0;
}
.img_gallery .img-radius {
    border-radius: 10px;
}
.img_gallery .img_height {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: inline-flex; */
}
.img_gallery .img_box a {
    width: 100%;
    height: 100%;
}
/*
    GALLERY RELATED CLASSES END
*/


.updateSection .parts {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



/* 
    ANIMATION RELATED CLASSES START
*/
.blink_menu {
    /*animation: blinker 0.5s linear infinite;*/
    /*background-color: var(--primary-grey-color);*/
    background-color: var(--primary-red-color);
  }
  
  @keyframes blinker {
    50% {
      /* opacity: 0; */
      background-color: var(--primary-yellow-color);
    }
  }
.opacity-0, .dif-card, .opacity-0-delay {
    opacity: 0;
}
.opacity-0.animated{
    opacity: 1;
    animation-duration: 2s;
}
.dif-card.animated {
    opacity: 1;
    transition: opacity calc(var(--i) + 2s);
    transition-delay: calc(var(--i) + 1s);
    animation-delay: calc(var(--i) + 1s);
}
.opacity-0-delay.animate__delay-1s {
    opacity: 1;
    transition: opacity 1s;
    animation-delay: 1s;
}
.img_box.animated {
    opacity: 1;
    transition: opacity 1s;
    transition-delay: calc(var(--img-num) * 2s);
    animation-delay: calc(var(--img-num) * 2s);
}
/* 
    ANIMATION RELATED CLASSES END
*/


/* 
    responsive classes 
*/

.responsive-img {
    width: 100%;
    height: fit-content;
}


html, body {
    overflow-x: hidden;
}




@media only screen and (max-width: 768px) {
    .one-cr {
        margin-top: 200px !important;
    }
    .carousel-caption img.rounded-circle{
        max-width: 100px;
        max-height: 100px;
    }
}
@media only screen and (max-width: 991px) {
    .navbar .navbar-nav.btns-section li {
        max-width: 220px;
        margin: 0;
        background-color: var(--primary-grey-color);
    }

    .counting_numbers p, .counting_numbers h1 {
        text-align: center;
    }
    .location_icon i{
        bottom: -28px;
        font-size: 30px;
        padding: 15px 20px;
    }

    .tab-style-content {
        padding: 20px 0 0 0;
    }
}
@media only screen and (max-width: 1200px) {
    .border_card .card_subtitle {
        font-size: 1.13rem;
    }
}
@media only screen and (max-width: 480px) {
    .one-cr {
        margin-top: 170px !important;
    }
    .carousel-caption img.rounded-circle {
        max-width: 60px !important;
        max-height: 60px !important;
    }
    .text-sm-center {
        text-align: center;
    }
    #designList form {
        max-width: 200px;
    }
    .fainted-text {
        font-size: 50px;
    }
    .table-style {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .updateSection {
        padding: 20px 30px;
    }

    .updateSection .sections .parts {
        padding-top: 20px;
        padding-bottom: 5px;
    }

    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-head-undelineLine:after {
        left: 32%;
    }

    .blank-vertical-line:after {
        width: 150px;
        top: 40%;
        left: 30%;
        border-right: 150px solid var(--primary-red-light-color);
        height: 2px;
    }
    .blank-vertical-line.white:after {
        width: 150px;
        top: 20%;
        left: 30%;
        border-right: 150px solid #fff;
        height: 2px;
    }

    .vector-img:after{
        width: calc(100% - 100px);
        min-height: 400px;
        content: '';
        position: absolute;
        right: 5px;
        top: 10%;
        border: 2px solid var(--primary-grey-color);
        border-radius: var(--border-radius);;
        z-index: -1;
    }
    .carousel-caption{
        position: absolute;
        top: 0%;
        left: 20px;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: left;
        align-items: flex-start;
        color: var(--primary-blue-color);
        margin-top: 130px;
    }
    .carousel-caption h1 {
        font-size: 20px;
        font-weight: bold;
    }
    .carousel-item img{
        /* float: left !important; */
        width: 100%;

    }
    .carousel-indicators {
        padding-left: 20px;
        bottom: 10px;
    }

    .mg-top-crs2 {
        left: 0px;
        margin-top: 0px !important;
    }
    .imglist li {
        margin-left: -20px;
    }
    .small-img{
        height: 40px;
    }
    .img-list-show{
        position: absolute;
        bottom: 0px;
        right: 50px;
    }

    .img_gallery .img_box { height: 250px;}
    .img_gallery .img_col_20 { width: 100%; }
    .img_gallery .img_col_25 { width: 25%; }
    .img_gallery .img_col_40 { width: 100%; }
    .img_gallery .img_col_50 { width: 50%; }
    .img_gallery .img_col_60 { width: 60%; }
    .img_gallery .img_col_75 { width: 75%; }
    .img_gallery .img_col_80 { width: 80%; }
    .img_gallery .img_col_100 { width: 100%; }
    .border-left-top {
        border-top: 2px solid var(--primary-grey-color);
    }

    .max-w-350{
        max-width: 350px;
    }

    .carousel-caption h1 {
        background: linear-gradient(to right, #f1eeee71 , #ffff0038);
    }


    .navbar .navbar-nav.btns-section li:hover{
        background-color: rgb(128 128 128);
    }
    .d-sm-none {
        visibility: hidden;
    }
}
@media only screen and (max-width: 404px) {
    #listCarousel .carousel-indicators {
        bottom: -30px;
    }
    .news_title_desc {
        font-size: 15px;
    }
    .dropdown-item {
        white-space: break-spaces;
    }
    li.dropdown div.dropdown-menu.show{
        max-width: 100%;
    }
}
@media only screen and (max-width: 404px) {
    .btns a.btn {
        font-size: 12px;
    }
}

@media only screen and (min-width: 480px) {
    .aboutTitle {
        max-width: 150px;
    }
    .updateSection {
        padding: 20px 30px;
    }

    .updateSection .sections .parts {
        padding-top: 20px;
        padding-bottom: 5px;
    }
    section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .section-head-undelineLine:after {
        left: 36%;
    }

    .blank-vertical-line:after {
        width: 150px;
        top: 40%;
        left: 30%;
        border-right: 150px solid var(--primary-red-light-color);
        height: 2px;
    }

    .blank-vertical-line.white:after {
        width: 150px;
        top: 60%;
        left: 30%;
        border-right: 150px solid #fff;
        height: 2px;
    }
    .vector-img:after{
        width: calc(100% - 100px);
        min-height: 450px;
        content: '';
        position: absolute;
        right: 50px;
        top: 10%;
        border: 2px solid var(--primary-grey-color);
        border-radius: var(--border-radius);;
        z-index: -1;
    }

    .carousel-caption{
        position: absolute;
        top: 0%;
        left: 20px;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: left;
        align-items: flex-start;
        color: var(--primary-blue-color);
        margin-top: 160px;
    }
    .carousel-caption h1 {
        font-size: 35px;
        font-weight: bold;
    }
    .carousel-indicators {
        padding-left: 20px;
    }

    .mg-top-crs2 {
        left: 0px;
        margin-top: 0px !important;
    }
    .imglist li {
        margin-left: -20px;
    }
    .small-img{
        height: 50px;
    }
    .img-list-show{
        position: absolute;
        bottom: 25px;
        right: 50px;
    }
    
    .img_gallery .img_box { height: 158px;}
    .img_gallery .img_col_20 { width: 33%; }
    .img_gallery .img_col_25 { width: 25%; }
    .img_gallery .img_col_40 { width: 66%; }
    .img_gallery .img_col_50 { width: 50%; }
    .img_gallery .img_col_60 { width: 60%; }
    .img_gallery .img_col_75 { width: 75%; }
    .img_gallery .img_col_80 { width: 80%; }
    .img_gallery .img_col_100 { width: 100%; }

    .border-left-top {
        border-top: 2px solid var(--primary-grey-color);
    }
}

@media only screen and (min-width: 768px) {
    .navbar {
        padding-top: 20px;
    }
    .updateSection {
        padding: 30px 60px;
    }

    .updateSection .sections .parts {
        padding-top: 30px;
        padding-bottom: 5px;
    }
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-head-undelineLine:after {
        left: 39%;
    }

    .blank-vertical-line:after {
        height: 150px;
        top: 40%;
        left: -190%;
        border-right: 2px solid var(--primary-red-light-color);
    }

    .blank-vertical-line.white:after {
        height: 150px;
        top: 20%;
        left: -220%;
        border-right: 2px solid #fff;
    }

    .vector-img:after{
        width: calc(100% - 50px);
        min-height: 300px;
        content: '';
        position: absolute;
        right: 0px;
        top: 10%;
        border: 2px solid var(--primary-grey-color);
        border-radius: var(--border-radius);;
        z-index: -1;
        margin-top: 170px;
    }

    .carousel-caption{
        position: absolute;
        top: 0%;
        left: 20px;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: left;
        align-items: flex-start;
        color: var(--primary-blue-color);
    }
    .carousel-caption h1 {
        font-size: 40px;
        font-weight: bold;
    }
    .carousel-indicators {
        padding-left: 20px;
    }

    .mg-top-crs2 {
        left: 0px;
        margin-top: 0px !important;
    }
    #carouselExampleIndicators2 ol.carousel-indicators {
        bottom: 0px;
    }

    .imglist li {
        margin-left: -20px;
    }
    .small-img{
        height: 50px;
    }
    .img-list-show{
        position: absolute;
        bottom: -15px;
        right: 10px;
    }

    .md-text-right{
        text-align: right;
    }
    .img_gallery .img_box { height: 220px;}
    .img_gallery .img_col_20 { width: 33%; }
    .img_gallery .img_col_25 { width: 25%; }
    .img_gallery .img_col_40 { width: 66%; }
    .img_gallery .img_col_50 { width: 50%; }
    .img_gallery .img_col_60 { width: 60%; }
    .img_gallery .img_col_75 { width: 75%; }
    .img_gallery .img_col_80 { width: 80%; }
    .img_gallery .img_col_100 { width: 100%; }

    .border-left-top {
        border-left: 2px solid var(--primary-grey-color);
        border-top: none;
    }
}

@media only screen and (min-width: 1024px) {
    #carouselList .carousel-indicators {
        bottom: 0;
    }
    .updateSection {
        padding: 46px 98px;
    }

    .updateSection .sections .parts {
        padding-top: 46px;
        padding-bottom: 5px;
    }
    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-head-undelineLine:after {
        left: 42%;
    }

    .blank-vertical-line:after {
        height: 150px;
        top: 40%;
        left: -110%;
        border-right: 2px solid var(--primary-red-light-color);
    }

    .blank-vertical-line.white:after {
        height: 150px;
        top: 20%;
        left: -150%;
        border-right: 2px solid #fff;
    }

    .vector-img:after{
        width: calc(100% - 50px);
        min-height: 350px;
        content: '';
        position: absolute;
        right: 10px;
        top: 0%;
        border: 2px solid var(--primary-grey-color);
        border-radius: var(--border-radius);;
        z-index: -1;
        margin-top: 170px;
    }

    .carousel-caption{
        position: absolute;
        top: 0%;
        left: 100px;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: left;
        align-items: flex-start;
        color: var(--primary-blue-color);
    }
    .carousel-caption h1 {
        font-size: 50px;
        font-weight: bold;
    }
    .carousel-indicators {
        padding-left: 100px;
    }

    .mg-top-crs2 {
        left: 0px;
        margin-top: 0px !important;
    }

    .imglist li {
        margin-left: -20px;
    }
    .small-img{
        height: 70px;
    }
    .img-list-show{
        position: absolute;
        bottom: -25px;
        right: 10px;
    }
    .img_gallery .img_box { height: 220px;}
    .img_gallery .img_col_20 { width: 20%; }
    .img_gallery .img_col_25 { width: 25%; }
    .img_gallery .img_col_40 { width: 40%; }
    .img_gallery .img_col_50 { width: 50%; }
    .img_gallery .img_col_60 { width: 60%; }
    .img_gallery .img_col_75 { width: 75%; }
    .img_gallery .img_col_80 { width: 80%; }
    .img_gallery .img_col_100 { width: 100%; }
}

@media only screen and (min-width: 1200px) {
    .imglist li {
        margin-left: -20px;
    }
    .small-img{
        height: 70px;
    }
    .img-list-show{
        position: absolute;
        bottom: 30px;
        right: 10px;
    }
    .mg-top-crs2 p {
        margin-top: 40px;
    }
}

@media only screen and (max-height: 625px) {
    .listCarousel{
        min-height: 625px;
    }
}

@media only screen and (min-height: 625px) {
    .listCarousel{
        min-height: 625px;
    }
}

/* 
    responsive classes end
*/

.imp-notification {
    height: 30px;
    max-width: 100%;
    color: #fff;
    background-color: #1ca487;
}

.right-auto {
    right: 6%;
}

.pad-lr {
    max-width: 350px;
}

.pad-lr2 {
    max-width: 350px;
}

.border-style {
    border: 5px solid yellow;
}

.stickyBtn {
    position: fixed;
    right: -50px;
    bottom: 50px;
    font-weight: 600;
    font-size: 11px;
    background-color: var(--primary-yellow-color);
    padding: 10px 15px;
    text-decoration: none;
    transform: rotate(270deg);
    z-index: 10;
}
.stickyBtn:hover{
    background-color: var(--primary-yellow-hover-color);
    text-decoration: none;
    color: var(--primary-blue2-color);
}
#footer{
    position: relative;
}
.goToTopBtn{
    padding: 10px 15px;
    background-color: var(--primary-yellow-color);
    border-radius: 50%;
    position: fixed;
    left: 20px;
    bottom: 50px;
    display: none;
}

.goToTopBtn i{
    font-weight: bold;
    font-size: 18px;
}

.goToTopBtn:hover{
    bottom: 55px;
    background-color: var(--primary-yellow-hover-color);
    transition: bottom .5s ease-in-out;
}

#important_notification + div {
    z-index: 999;
    left: 0;
    right: 0;
}

.navbar-Shadow{
    box-shadow: rgb(181 157 157 / 25%) 2px 3px 2px 1px;
}

#fixedNav{
    position:fixed;
    background-color:#ddfff9;
    z-index:999;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 4px 4px 3px #ede5e5;
}