/* banner slider */
.slider {
    width: 100%;
    min-height: calc(100vh - 100px) ;
    position: relative;
}

.slider .list .item::before {
    content: '';
    position: absolute;
    z-index: 25;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.308);
}


.slider .list .item::after{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(0.25turn, #0000009d, #ebf8e100, #f69c3c00);
}
.slider .list {
    height: 100%;
}

.slider .list .item {
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item .content {
    position: absolute;
    left: 10%;
    top: 40%;
    width: 50%;
    max-width: 80%;
    z-index: 35;
    color: white;
}

.slider .list .item .content p{
    color: rgb(198, 198, 198);
}

.slider .list .item .content p:nth-child(1) {
    /* text-transform: uppercase;
    letter-spacing: 5px; */
}

.slider .list .item .content h2 {
    font-size: 60px;
    font-weight: 700;
    /* line-height: 70px; */
    text-transform: capitalize;
    margin-top: 10px;
}


.slider .list .item .banner-icon{
    height: 50px;
    width: 50px;
}
@media (max-width:500px){
    .slider .list .item .content h2 {
        font-size: 38px;
        
    }
}

.slider .list .item.active {
    opacity: 1;
    z-index: 50;
}


@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}


.slider .list .item.active .butn,
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h5,
.slider .list .item.active h2,
.slider .list .item.active p:nth-child(3) {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.9s .7s ease-in-out 1 forwards;
}

.slider .list .item.active .content h2 {
    animation-delay: 1.5s;
}

.slider .list .item.active .content p {
    animation-duration: 1.9s;
}

.slider .list .item.active .butn{
    animation-duration: 2s;
}

.arrows {
    position: absolute;
    bottom: 50px ;
    right: 80px;
    z-index: 100;
}

.arrows button {
    background-color: rgba(148, 148, 148, 0.333);
    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;
    right: 0;
    bottom: 200px;
    z-index: 50;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    height: auto;
    padding: 10px;
    box-sizing: border-box;


}

.thumbnail::-webkit-scrollbar {
    width: 0;
}

.thumbnail .item {
    width: 80px;
    height:80px;
    transition: .5s;
    flex-shrink: 0;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail .item.active {
    transform: scale(1.1);
    filter: brightness(1.5);
}

@media (max-width: 678px) {
    .thumbnail {
        bottom: 20px;
        justify-content: center;

    }

    .thumbnail .item {
        width: 70px;
        height:70px;
        transition: .5s;
        flex-shrink: 0;
    }


    .slider .list .item .content {
        top: 30%;
        width: 100%;
    }


    .arrows {
        display: none;
    }

}

@media screen and (max-width:1100px) {
    .slider .list .item .content {
        
        width: 80%;
        max-width: 65%;
        
    }
}

@media screen and (max-width:1000px) {
    .slider .list .item .content {
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-width: 95%;
        
    }
}

@media screen and (max-width:682px) {
    .slider .list .item .content {
        
        width: 100%;
    text-align: center;        
    }
}