@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



p {
    margin-bottom: 0px;
}

.main {
    font-family: 'Arial', sans-serif;
    background-color: rgb(224, 221, 221);
}

/* NavBar */

nav{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

i {
    color: #fe0000;
}

.nav_1 {
    width: 80%;
    margin: auto;
}

.head_font{
    font-size: 15px;
    color: #fe0000;
    font-weight: 800;
}
.calender_1{
    height: 15px; 
    width: 80px;
    font-size: 13px;
    font-weight: 800;
    color: #fe0000;
}

.navbar {
    animation: slideDown 0.8s ease-out;
}

.logo_size {
    height: 50px; 
    width: 250px;
}

.date_picker_1 {
    cursor: pointer; 
    font-size: 20px;
}


.thumbnails::-webkit-scrollbar {
    height: 8px;
}

.thumbnails::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.thumbnails::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.footer_1 {
    color: #fe0000;
     text-align: center;
}




@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.thumbnails {
    display: flex;
    flex-wrap: nowrap;
    padding: 0;
    justify-content: flex-start;
    flex-direction: column;
    overflow-y: scroll;
    padding-right: 15px;
    height: 1900px;
}

.thumbnail {
    list-style: none;
    cursor: pointer;
    padding: 0px;
    /* margin-right: 5px; */
    margin-bottom: 20px;
}

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


.num_thumb {
    color: #fe0000; 
    text-align: center;
    font-size: 13px;
}

.splide__arrow {
    background: #c3c3c3; 
    padding: 1rem;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 55%; 
    font-size: 1.5rem;
    transform: translateY(-50%);
    z-index: 10;
    opacity: 0; 
    animation: fadeIn 5s forwards; 
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.8); /* Start with a smaller size */
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1); /* End with normal size */
    }
}

.splide__arrow--prev {
    left: 10%; 
}

.splide__arrow--next {
    right: 2%;
}

.splide__arrow:hover {
    background: #ff3333; 
    transform: translateY(-50%) scale(1.1); 
    transition: all 0.3s ease; 
}


@media (max-width: 1400px) {
    .thumbnails {
        height: 1400px;
    }

}

@media (max-width: 1200px) {
    .thumbnails {
        height: 1300px;
    }

    .splide__arrow--prev {
        left: 9%; 
    }
    
    .splide__arrow--next {
        right: 1%;
    }

    .num_thumb{
        font-size: 9px;
    }
    
}


@media (max-width: 992px) {
    .thumbnails {
        height: 992px;
    }

    .splide__arrow--prev {
        left: 17%; 
    }
    
}


@media (max-width: 768px) {

    .head_font{
        font-size: 11px;
    }

    .nav_1 {
        width: 95%;
        margin: auto;
    }

    .calender_1{
        font-weight: 400px;
    }

    #datepicker{
        font-weight: 700;
        font-size: 13px;
        width: 76px;
    }

    .splide__arrow{
        padding: 0.5rem;
        font-size: 1rem;
    }

    .thumbnails {
        height: 700px;
    }

    .footer_1 {
        font-size: 10px;
    }

    .num_thumb{
        font-size: 7px;
    }
   
   

}


@media (max-width: 576px ) {
    
    #datepicker{
        font-weight: 700;
        font-size: 9px;
        width: 56px;
    }

    .thumbnails {
        display: none;
    }

    
.splide__arrow--prev {
    left: 1%; 
}

.splide__arrow--next {
    right: 1%;
}

.head_font{
    font-size: 9px;
}

.splide__arrow {
top: 55%;
}

    
}

