html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}
/*
.marquee {   
    overflow: hidden;
    color: #fff;   
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 2s linear infinite;
    -webkit-animation: scroll-left 2s linear infinite;
    animation: scroll-left 20s linear infinite;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.marquee:hover {
    animation-play-state: paused;
}
*/
.read_more {
    background-color: #258cfb;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 15px;
    text-decoration: none;
}
.news_p {
    color: white;
    background-color: #d70f87;
    text-align: center;
    font-size: large;
    line-height: 1;
    height: 72px;
    padding: 20px;
}
.news_td {
    width: 85%;
    padding-left: 10px;
}
.explore_tiles {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    background-color: #258cfb;
    text-align: center;
    border: 1px solid #bbbbbb;
}
    .explore_tiles:hover {
        transform: scale(0.8); /* Reduce size by 20% */
    }

.gallery-container {
    overflow-x: auto;
    white-space: nowrap;
   
    border-radius: 8px;
}

.gallery {
    display: inline-flex;
    flex-wrap: nowrap;
}

.gallery-item {
    display: inline-block;
    margin-right: 10px;
    width: 300px; /* Adjust the width as needed */
    height: 200px; /* Adjust the height as needed */
    position: relative;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.gallery-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for Firefox */
.gallery-container {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.footer_col12 {
    flex: 0 0 100%;
    max-width: 100%;
    color: white;
    padding-top: 25px;
    padding-bottom: 0px;
    font-size: small;
    text-align:center;
}
.page_header {
    
    background-image: url(../img/slider1.jpg);
    background-blend-mode: overlay;
    background-size: cover;
    height: 30vw;
    position: relative;
}
    .page_header h1 {
        position: absolute;
        color: white;
        bottom: 0px;
        left: 0px;
        /* transform: translate(-50%, -50%); */
        /* width: 312px; */
        text-align: center;
        background: #000000a3;
        margin: 0px;
        padding: 5px 5px 5px 15px;
        font-weight: bold;
    }
.display-4
{
    font-size:2.5rem;
}

.news-container {
    height: 300px; /* Adjust height as needed */
    overflow: hidden; /* Hide content that exceeds the container */
    position: relative;
}

    .news-container table {
        animation: scroll-up 10s linear infinite;
        margin: 0;
        padding: 0;
    }

    /* When the mouse hovers over the container, pause the scrolling animation */
    .news-container:hover table {
        animation-play-state: paused;
    }

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}
.cbse_head {
    font-size: 18px;
    font-weight: bold;
    color: coral;
    background-color: blanchedalmond;
    padding: 0px 20px;
    margin: 0px auto;
    text-align: center;
    width: 300px;
}
.aff_no {
    font-size: 14px;
    font-weight: bold;
    color: black;
    width: 300px;
    text-align: center;
    margin: 0 auto;
}