
.carousel{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    
}



.carousel .list .items:nth-child(1),
.carousel .list .items:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100vw;
    height: 100vh;
    position: relative;
    background-size: cover;
   
}


.items .content {
    position: absolute;
    top: 60%;
    left: 10%;
    transform: translateY(-100%);
    width:min(850px, 90%);
    margin: 0 auto;
    text-align: left;
    color: #fff;
   display: none;
}
.list .items:nth-child(1) .content{
   display: block;
}

.items .content .slide{
    font-size: 3rem;
    margin-bottom: 0.2rem;
    color: #fff;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.534);
    animation: animate 0.6s 1 forwards;
}
.items .content .heading{
    font-size: clamp(1.5rem, 2.8vw, 2.5rem);
    text-wrap: nowrap;
    text-transform: capitalize;
    margin-bottom: 0.81rem;
    color: #ffffffcb;
    font-weight: 900;
    text-shadow: 0 2px 5px rgba(240, 86, 188, 0.955);
    animation: animate 0.9s 1 forwards;
}
.items .content .des{
    font-size: clamp(1rem, 1vw, 1.1rem);
    line-height: 1.3rem;
    color: #d8d7d7;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
    animation: animate 1.2s 1 forwards;
}

.content .btn{
    display: inline-block;
    padding: 0.2rem 0.2rem;
    margin-top: 1rem;
    background: linear-gradient(90deg, #ff105f, #ffad06);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: animate 1.5s 1 forwards;
    z-index: 100;
   
}

.content .btn button{
    background: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    outline: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.5s;
    z-index: 10;
}
@keyframes animate{
    from{
        opacity: 0;
        transform: translate(0,100px);
        filter: blur(33px);
    
    }
    to{
        opacity: 1;
        transform: translateY(0,0);
        filter: blur(0);
    }
    
}

.arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10 !important;
    padding: 0 1rem;
}
.arrow button{
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 3rem;
    color: white;
    font-weight: 800;
    cursor: pointer;
    z-index: 101 !important;
}

.timerunning{
    position: absolute;
    z-index: 9999 !important;
    width: 0%;
    height: 4px;
    background-color: #ff3314cb;
    top: 0;
    left: 0;
    animation: runningTime 7s linear 1 forwards; 
}

@keyframes runningTime{
   from{
        width: 0%;
    }
    to{
        width: 100%;
    }
}

@media screen and (max-width: 768px){
    .carousel{
        height: 60vh;
        width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
   
    .items .content{
        top: 40%;
        width: 300px;
    }
    .content .btn button{
        padding: 0.5rem 0.8rem;
    }

    .arrow {
        padding: 0 0.5rem;
    }
    .arrow button{
        width: 40px;
        height: 40px;
        
    }
    
}