
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    z-index: 9999;
    overflow: hidden;
}

.loader {
    width: 100%;
    height: auto;
    opacity: 0;
}

.progress-counter {
    position: absolute;
    top:70%;
    left: 50%;
    transform: translate(-70%, -50%);
    color: #fff;
    font-size: 35px;
    font-weight: 400;
    z-index: 1000;
    opacity: .85;
}

.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

.top-bar .logo {
    /* height: 40px; */
    height: 5.4vh;
}

.follow {
    display: flex;
    /* gap: 15px; */
    gap: 1vw;
    align-items: center;
}

.follow span{
    /* font-size: 18px; */
    font-size: 1.25vw;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    /* padding: 5px 10px; */
    padding: 5px 0.7vw;
    border-right: 1px solid #fff;
}

.socials {
    display: flex;
    /* gap: 15px; */
    gap: 1vw;
    color: #fff;
}

.socials a {
    color: #fff;
    /* font-size: 22px; */
    font-size: 1.5vw;
    transition: ease .25s;
}

.socials a:hover {
    color: #fff;
    scale: 1.3;
}

.bottom-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 50px 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.bottom-bar .email {
    color: #ffffff;
    /* font-size: 18px; */
    font-size: 1.25vw;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-bottom: 2px;
    transition: ease .25s;
}

.email:hover {
    transform: scale(1.2);
}

.bottom-bar .soon {
    /* font-size: 28px; */
    font-size: 1.95vw;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}



.soon, .soon::before, .soon::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .soon {position: absolute;bottom: 30px;right: 50px;color: transparent;}
  
  .soon::before {
    content: 'New website coming soon...';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    color: #fff;
    overflow: hidden;
    border-right: 5px solid #fff;
    white-space: nowrap;
    animation: type 6s steps(23) infinite;
  }
  
  @keyframes type {
    0% {
      width: 0;
    }
    50% {
      width: 100%;
    }
    75% {
        width: 100%;
      }
    100% {
      width: 0;
    }
  }
  

.container {
    width: 100vw;
    height: 100vh;
    padding: 30px;
}

.projects {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 2px solid #828282;
    border-radius: 30px;
    box-shadow: 5px 5px 45px 0 rgba(255, 255, 255, 0.35);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Hide all videos by default */
    transition: opacity 0.5s ease;
}

.video-bg.active {
    opacity: 1; /* Show active video */
}

.overlay-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    border-radius: 30px;
}

.overlay-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    border-radius: 30px;
}

.poster-info {
    position: absolute;
    /* bottom: 150px; */
    bottom: 20vh;
    /* left: 100px; */
    left: 7vw;
    display: flex;
    /* gap: 50px; */
    gap: 3.5vw;
    align-items: flex-end;
    z-index: 10;
}


.posters {
    display: flex;
    gap: 10px;
    justify-content: center;

}

.card {
    width: 220px;
    width: 15.3vw;
    height: 308px;
    height: 40.8vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 2;
}

.card.active {
    transform: scale(1.15);
    box-shadow: 10px 4px 14px rgba(0, 0, 0, 0.7);
    border: 1px solid #828282;
    z-index: 3;
}



.production-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    /* font-size: 18px; */
    font-size: 1.2vw;
    font-weight: 700;
    /* width: 120px; */
    width: 9vw;
    text-align: center;
    line-height: normal;
    text-transform: uppercase;
    padding: 5px 20px 0 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    background-color: #000000a9;
    opacity: 0;
    transition: ease .25s;
}

.card.active .production-status {
    opacity: 1;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-title {
    display: flex;
    align-items: flex-end;
    gap: 25px;
}

.video-title h1 {
    /* font-size: 60px; */
    font-size: 4.15vw;
    font-weight: 700!important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.video-label {
    /* padding: 5px 10px 0 10px; */
    padding: 5px 1vw 0 1vw;
    /*background: #fff;*/
    border-left: 1px solid #fff;
    color: #fff;
    /* font-size: 20px; */
    font-size: 1.4vw;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.video-description p{
    /* margin-top: 30px; */
    margin-top: 4vh;
    /* font-size: 18px; */
    font-size: 1.25vw;
    letter-spacing: 2px;
    margin-bottom: 0;
    /* max-width: 550px; */
    max-width: 35vw;
    /* min-height: 100px; */
    min-height: 13vh;
}


.controls {
    display: flex;
    gap:20px;
    z-index: 2;
    position: absolute;
    right: 125px;
    /*bottom: 150px;*/
    bottom: 20vh;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    padding:10px;
    border: 1px solid #fff;
    border-radius: 50px;
    cursor: pointer;
}


.bottom-bar-resp {
    display:none;
}
