* {
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.header__hero {
    background: #000000eb;
    position: sticky;
    width: 100%;
    z-index: 2;
    top: 0;
}

.header__hero .navbar a img {
    width: 300px;
}

.hero_banner {
    background: url(../images/website_home_page.jpg);
    /*  linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), */
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 64vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero_banner1 {
    background: url(../images/sih24banner1.jpg ) no-repeat center !important;
    height:70vh;

    background-size: contain;
}
.hero_banner_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    padding-bottom: 20px;
}

.sih_overview_sec {
    padding: 50px 0px;
    background: #f3f9f8;
}

.head_line h4::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 50px;
    border-bottom: 4px solid #fcbf1e;
}

.head_line h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.35rem;
}

.team_cards_sec {
    padding: 50px 0px;
}

.team_cards_box_img {
    height: 350px;
    overflow: hidden;
}
.table_wrapper table td{ vertical-align: middle; }
.team_cards_box_img img:hover {
    transform: scale(1.1);
}

.team_cards_box_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all .2s; object-position: top;
}


.team_cards_box_contain {
    border-top: 0px solid !important;
    border: 2px dashed #fcbf1e;
    padding: 15px;
    border-radius: 0px 0px 17px 17px;
}

.team_cards_box_contain p {
    margin-bottom: 0px;
}

.dark_bg {
    background-color: #f3f9f8;
}

.sih_footer {
    background-color: #fcbf1e;
}

.sih_footer {
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}

.sih_footer_img {
    height: 100px;
    padding: 15px;
    /* background: #fff; */
    border: 1px solid #fff;
    margin: 0px 15px;
}

.sih_footer_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top__footer_sec {
    border-bottom: 15px solid #fcbf1e;
    padding: 20px;
}

.sih_top_footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sih_top_footer a {
    padding: 0px 11px;
    color: #000;
}

.sih_top_footer a i {
    font-size: 40px;
}

.vid_sec {
    padding: 50px 0px;
    background-color: #f3f9f8;
}

.vid__iframe iframe {
    width: 100%;
    height: 400px;
}

.table_btn a {
    background-color: #fab811;
    text-decoration: none;
    text-transform: capitalize;
    color: #000000;
}

.table_btn a:hover {
    background-color: #fab811;
}


.responsive .img img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}



/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}


/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}



/* Add Animation */
.modal-content,
#caption {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}


@-webkit-keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}


.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}


/* lightbox css start */

.photos-grid-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 0;
    align-items: start;

    @media (max-width: 580px) {
        grid-template-columns: 1fr;
    }

    .img-box {
        border: 1px solid #ffffff;
        position: relative;
    }

    .img-box:hover .transparent-box {
        background-color: rgba(0, 0, 0, 0.6);
    }

    .img-box:hover .caption {
        transform: translateY(-5px);
    }

    img {
        max-width: 100%;
        display: block;
        height: auto;
    }

    .caption {
        color: white;
        transition: transform 0.3s ease, opacity 0.3s ease;
        font-size: 1.5rem;
    }

    .transparent-box {
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        transition: background-color 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-photo {
        grid-row: 1;
        grid-column: 1;
    }

    .sub {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-gap: 0em;

        &:nth-child(0) {
            grid-column: 1;
            grid-row: 1;
        }

        &:nth-child(1) {
            grid-column: 2;
            grid-row: 1;
        }

        &:nth-child(2) {
            grid-column: 1;
            grid-row: 2;
        }

        &:nth-child(3) {
            grid-column: 2;
            grid-row: 2;
        }
    }
}


.hide-element {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

@media screen and (min-width: 1280px) {

    .container {
        margin: 0 auto;
        width: 1250px;
    }
}


@media (min-width: 960px) {
    .uk-child-width-1-3\@m>* {
        width: calc(100% * 1 / 4.001) !important;
    }
}

.pg_sbtitle h3 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: capitalize;
}
.navbar-links{color:#fff; text-decoration:none; font-size: 19px; }
    .navbar-links:hover{color:#fcbf1e !important; background-color: #fff;}
    .navbar>.container{justify-content: flex-start;gap:50px;}
    .nav-links{display:flex; align-items:center; justify-content: space-evenly; gap:30px; width: 50%;}
.theme1{border: 2px solid #e87024; border-radius: 10px; background-color: #fecdaf; padding: 30px; height: 100%;}
.theme1 h5{color: #113c7d; font-weight: 600; text-transform: uppercase; padding-top: 15px;}
.theme_class{width: 20% !important;}
.nav-links .navbar-links{background-color: #fcbf1e; color: #fff; padding: 10px 20px; border-radius: 10px;}
.nav-links     .navbar-links:hover{color:#fcbf1e !important; background-color: #fff;}


@media(max-width: 1199px){ 
    .team_cards_box_img { height: 300px;}
 }

 @media(max-width: 991px){ 
    .theme_class { width: 33.33% !important; margin-bottom: 24px; }
    .team_cards_box_img { height: 220px; }
    .nav-links{ width: 45%; }
 }

 @media(max-width: 767px){ 
    .theme_class { width: 100% !important; margin-bottom: 20px; }
    .navbar-links{ font-size: 16px; }
    .navbar-brand{ margin-right: 0; text-align: center; display: block; width: 100%; }
    .nav-links { width: 100%; gap: 0; }
    .navbar>.container{ gap: 10px; }
}