body{
    background-color: black;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.backvideo{ 
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    object-fit: fill;
    z-index: -1;
}

.clock {
    position: absolute;
    font-size: 3cm;
    left: 100px;
    top: 95px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}


.container {
    width: 100vw;
    height: 100vh; 
    overflow: hidden; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.slider {
    position: absolute; 
    inset: 80px 200px 80px 80px; 
    background: transparent;
    border-radius: 20px;

}

.slider .slides{
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 240px;
    height: 320px;
    background: var(--img);
    background-size: cover;
    background-position: center;
    border-radius: 20px; 
    transition: 0.5s;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.slider .slides:nth-child(1),
.slider .slides:nth-child(2)
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(0);
    box-shadow: 0 25px 50px rgba(0,0,0,0);
    background-size: cover;
}

.slider .slides:nth-child(3)
{
    left: calc(50% + 450px);
    background-size: cover;
}

.slider .slides:nth-child(4)
{
    left: calc(50% + 700px);
    background-size: cover;
}

.slider .slides:nth-child(5)
{
    left: calc(50% + 1020px);
    background-size: cover;
    opacity: 0;
}

.buttons
{
    position: absolute;
    bottom: 15px;
    display: flex;
    gap: 20px;
}

.buttons span
{
    position: relative;
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(30px);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.buttons span::before
{
    content: '';
    position: absolute; 
    width: 15px; 
    height: 15px; 
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: rotate(315deg) translate(2px, 2px);
}

.buttons span:nth-child(2)::before{
    transform: rotate(135deg) translate(2px,2px);
}

.buttons span:active{
    opacity: 0,5;
}

.m{
    position: absolute;
    left: 110px;
    top: 220px;

}

#icon{
    width: 80px;
    cursor: pointer;
    opacity: 0.57;
}

.back{
    position: absolute;
    margin: auto;
    width: 118px;
    height: 50px;
    font-size: 20px;
    font-weight: 540;
    bottom: 15px;
    left: 35%;
    border-radius: 30px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(30px);
    color: rgba(255,255,255,0.8);
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
  }
  
.back:hover {
    background-color: rgba(255,255,255,0.2);
}
