* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #eaeaea;
    overflow: hidden;
}

.container {
    position: absolute;
    top: 0; 
    left: 0; 
   
    width: 100vw; 
    height: 100vh;
    background: #f5f5f5;
  
}

.container .slide .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease; 
    will-change: transform, opacity; 
   
background-size: cover;        
    background-position: center;   
    background-repeat: no-repeat;
    

    image-rendering: -webkit-optimize-contrast; 
    image-rendering: crisp-edges;
}



.slide .item:nth-child(1),
.slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slide .item:nth-child(3) { left: 60%; }
.slide .item:nth-child(4) { left: calc(60% + 220px); }
.slide .item:nth-child(5) { left: calc(60% + 440px); }
.slide .item:nth-child(n + 6) { left: calc(60% + 660px); opacity: 0; }


.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #ffffff;
    transform: translate(0, -50%);
    display: none;
    
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.slide .item:nth-child(2) .content {
    display: block;
}

.content .name {
    font-size: 62px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
    font-weight: 800; 
    font-size: 18px;
    object-fit: cover;
}

.content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background: #058eff; 
    color: #ffffff;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    object-fit: cover;
}

@keyframes animate {
    from { opacity: 0; transform: translate(0, 100px); filter: blur(33px); }
    to { opacity: 1; transform: translate(0); filter: blur(0); }
}


.button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 50px; 
}

.button button {
    width: 45px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #fff;
    cursor: pointer;
    margin: 0 5px;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
}

.button button:hover {
    background: #ff00dd;
    color: #000;
}