@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* svg{
    width: 25px;
} */

/* css home_slider */
.hero_mobile{
    display: none;
}
.home_slider{
    height: 97vh;
    margin-top: 10px;
    margin-bottom: -11vh;
    position: relative;
}
.home_slider .home_list .home_item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.home_slider .home_list .home_item img{
    width: 100%;
    height: 78%;
    object-fit: cover;
    filter: brightness(0.8);
}
.mobile-btn{
    display: none;
}
.home_slider .home_list .home_item::after{
    home_content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 40%, transparent
    );
}
.home_slider .home_list .home_item .home_content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
    -webkit-text-stroke: 1px #0000000d;
}
.home_slider .home_list .home_item .home_content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.home_slider .home_list .home_item .home_content h2{
    font-size: 50px;
    margin: 0;
    color: white;
}

.home_slider .home_list .home_item .home_content p{
    color: white;
    font-weight: 600;
}
.home_slider .home_list .home_item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.home_slider .home_list .home_item.active p:nth-child(1),
.home_slider .home_list .home_item.active h2,
.home_slider .home_list .home_item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.home_slider .home_list .home_item.active h2{
    animation-delay: 1s;
}
.home_slider .home_list .home_item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: -124px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .home_item {
    width: 251px;
    height: 118px;  
    /* filter: brightness(0.5); */
    transition: transform 0.5s, filter 0.5s;
    flex-shrink: 0;
    transform: scale(0.9); /* zoomed out by default */
    background-color: white;
    border-radius: 17px;
    overflow: hidden;
}

.thumbnail .home_item.active {
    transform: scale(1); /* full size for active item */
    filter: brightness(1); /* optional: brighten active item */
}
.thumbnail .home_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* filter: brightness(0.9); */
}
.thumbnail .home_item.active{
    filter: brightness(0.9);
}
.thumbnail .home_item .home_content{
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* center text */
    color: #093c45;
    font-weight: 300;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* optional: lets clicks go through */
    text-align: center;
}
@media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
        display: none;
    }
    .home_slider .home_list .home_item .home_content h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
    .home_slider{
        width: 104%;
    }
    .home_slider .home_list .home_item img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: brightness(0.8) !important;
    }
    .hero_desk{
        display: none;
    }
    .hero_mobile{
        display: block;
    }
    .mobile-btn{
        display: block;
        position: absolute;
        bottom: -303px;
        left: 24%;
        transform: translateX(-50%);
        z-index: 1000;
        padding: 10px 20px;
       
    }
    .mobile-btn button{
        width: 100%;
        font-size: 20px;
        padding: 10px 34px;
        border-radius: 5px;
        background-color: #093c45;
        color: white;
        border: none;
    }
}


