.banner-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    height: 500px;
    background-image: url('/static/media/pug/annapurna.jpg');
    background-size: cover;
    background-position: center;
}

.banner-container .overlay{
    background: #00000070;
    position: absolute;
    width: 100%;
    height: 100%;
}

.content{
    display: flex;
}

.left-content{
    width: 70%;
}

.right-content{
    width: 30%;
    text-align: center;
}

#intro p {
    margin-bottom: 0.8rem;
}

.image-container{
    width: 100%;
    height: 100%;
    overflow: hidden;
}

img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero{
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    color: white;
    top: 10%;
    z-index: 0;
}

.img-container {
    display: flex;
    gap: 10px; /* Space between the images */
    justify-content: center; /* Center the images horizontally */
    align-items: center; /* Align items vertically */
}

.image {
    flex: 1 1 auto; /* Make the images flexible */
    max-width: 100%; /* Prevent overflow */
    height: 400px; /* Set a fixed height for uniformity */
    object-fit: cover; /* Ensure the images fill the container proportionally */
}

.countdown-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.countDown {
    font-size: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-around;
    row-gap: 10px;
    column-gap: 20px;
    margin-bottom: 50px;
}

.countDown .countdown-cells {
    display: flex;
    margin: 0 1rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countDown .countdown-numbers {
    font-size: 3rem;
    font-weight: 600;
}

.home-content.mt-1 {
    margin-top: 1.5rem;
}

.conference-image-container{
    display: flex;
    flex-direction: column;
}

/* news/notice ticker */

#notices-banner {
    position: relative;
    height: 3rem;
}

#notices-banner .slides {
    position: absolute;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
}

#notices-banner .slides.show {
    transform: translateX(0);
}



.event-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.event-box {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.event-box h3{
    margin: 0px;
}


#img-slider {
    position: relative;
    min-height: 31rem;
}

#img-slider .slides {
    position: absolute;
    height: 30rem;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

#img-slider .slides.show {
    opacity: 1;

}

#img-slider .slide-btn {
    position: absolute;
    height: 100%;
    width: 5rem;
    z-index: 100;
    background: unset;
    border: none;
    cursor: pointer;
    color: white;
}

#img-slider .slide-btn.next {
    left: 100%;
    transform: translateX(-100%);
}

#img-slider .slide-btn.prev {
    left: 0;
}


div.logo-list {
    display: grid;
    gap: 1rem;
    place-content: center;
    grid-template-columns: repeat(3, 1fr);
}

div.logo-list img {
    height: 4rem;
    object-fit: contain;
}


@media (max-width: 700px) {
    .countDown{
        font-size: 12px;
    }

    .content{
        display: block;
    }

    .left-content{
        width: 100%;
    }
    .right-content{
        width: 100%;
    }
}

@media (max-width: 420px) {
    .banner-container{
        padding: 15% 0 15% 0;
    }
}
