html, body {
    overflow-x: hidden;
}

html, body {
    margin: 0;
    padding: 0;
}

.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 200px;
    z-index: 3;
    cursor: pointer;
}

.logo {
    transition: transform 0.3s ease-in-out;
}

    .logo:hover {
        transform: scale(1.1);
    }












.copy {
    width: 100%;
    height: 85px;
    background: linear-gradient(90deg, #3A1F6B, #1B073A);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #949494;
    font-size: 9px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 50px;
}

    .copy a {
        color: #949494;
        text-decoration: none;
    }

        .copy a:hover {
            text-decoration: underline;
        }













.mobile-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    margin-top: 0;
}





.textbox {
    position: absolute;
    top: 80px;
}

.textbox1 {
    position: absolute;
    top: 150px;
}

.h1home {
    position: absolute;
    top: 80px;
    left: 680px;
    justify-content: center;
    font-family: Calibri;
    color: white;
}

.phome {
    position: absolute;
    top: 125px;
    left: 580px;
    justify-content: center;
    font-family: Calibri;
    color: white;
    white-space: nowrap;
}

.photos {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    margin-top: 0;
    padding: 20px 0;
    gap: 120px;
    padding-left: 60px;
    padding-top: 150px;
}



.display {
    position: relative;
    width: 18.5%;
    height: 400px;
    border-radius: 45px;
    background-color: black;
    text-align: center;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .display:hover {
        transform: scale(1.05) !important;
    }



.displayxl {
    position: relative;
    width: 36%;
    height: 400px;
    border-radius: 45px;
    background-color: black;
    text-align: center;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

    .displayxl:hover {
        transform: scale(1.05);
    }


.img-inside {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}









.display:hover .img-inside {
    opacity: 0.5;
}



.displayxl:hover .img-inside {
    opacity: 0.5;
}







.studios {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #C9A96E;
    font-size: 25px;
    z-index: 2;
}




























.loginlogo {
    position: absolute;
    left: 1200px;
    width: 100px;
    top: 100px;
    height: 25px;
    font-size: 18px;
    padding: 10px 0px;
    border: 2px solid white;
    border-radius: 25px;
    background-color: rgba(60, 26, 124, 0);
    color: white;
    outline: none;
    cursor: pointer;
    font-display: auto;
    font-family: 'Arial Rounded MT', Arial, Helvetica, sans-serif, Calibri;
    justify-content: flex-end;
    text-align: center;
    text-decoration: none;
    display: block;
}


.signuplogo {
    position: absolute;
    left: 1085px;
    width: 100px;
    top: 100px;
    height: 25px;
    font-size: 18px;
    padding: 10px 0px;
    border: 2px solid white;
    border-radius: 25px;
    background-color: rgba(204,204,204,0);
    color: white;
    outline: none;
    cursor: pointer;
    font-display: auto;
    font-family: 'Arial Rounded MT', Arial, Helvetica, sans-serif;
    justify-content: flex-end;
    text-align: center;
    text-decoration: none;
}




.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }




.hero {
    position: relative;
    width: 80%;
    min-height: 100vh;
    margin: 225px auto 0 auto;
    border-radius: 45px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-video,
.bg-video-phone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: blur(0px);
    opacity: 1;
    transition: 1s;
}

.title {
    color: white;
    font-size: 100px;
    font-weight: bold;
    z-index: 2;
    text-align: center;
    letter-spacing: 2px;
    font-family: Calibri;
    opacity: 0;
    transform: translateY(100px);
    transition: 1s;
    position: absolute;
}



.video-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #3A1F6B, #1B073A);
    opacity: 0.35;
    z-index: 1;
}

.bg-video.scrolled {
    filter: blur(15px);
    opacity: 0.15;
}

.hero.scrolled {
    filter: blur(8px);
    transition: 1s;
}

.title.show {
    opacity: 1;
    transform: translateY(0);
}


.logo,
.loginlogo,
.signuplogo {
    z-index: 3;
}





.bg-video {
    display: block;
}

.bg-video-phone {
    display: none;
}




@media (max-width: 768px) { 


    .logo {
        left: 20px;
        top: 20px;
        width: 200px;
    }

    .signuplogo {
        top: 90px;
        left: calc(20px + 200px + 35px);
        background-color: rgba(60, 26, 124, 1);
    }

    .mobile-bg {
        display: none;
    }

    .page3,
    .samsung,
    .google {
        left: 50%;
        transform: translateX(-50%);
        width: 80vw;
        height: 80vw;
        max-width: 320px;
        max-height: 320px;
        background-color: rgba(255,255,255,0);
    }

    .page3 {
        top: 120px;
    }

    .samsung {
        top: 280px;
    }

    .google {
        top: 450px;
    }












    .copy {
        width: 100%;
        height: 50px;
        background-color: rgba(60, 26, 124, 0.1 );
        display: flex;
        align-items: center;
        justify-content: center;
        color: #949494;
        font-size: 5px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
        margin-top: 50px;
    }

        .copy a {
            color: #949494;
            text-decoration: none;
        }

            .copy a:hover {
                text-decoration: underline;
            }


























    .loginlogo {
        display: none;
    }








    .hero {
        height: 20dvh;
    }

    .bg-video {
        display: none;
    }

    .bg-video-phone {
        display: none;
    }

    .video-overlay {
        display: none;
    }
}


