* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Familjen Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #253D84;
    display: flex;
}

.left-side {
    width: 50%;
    height: 100%;
    background: #253D84;
    padding: 2vw 0vh 2vw 4vh;
}

.right-side {
    width: 50%;
    height: 100%;
    background: #BBBBF5;
    overflow: hidden;
}

.right-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('/assets/pattern.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    z-index: 0;
}

.video-wrapper {
    position: relative;
    width: 25vw;
    height: 44.44444444vw;
    left: 12vw;
    top: 7vh;
}

.video-frame-behind {
    position: absolute;
    width: 100%;
    height: calc(100% - 2.5vh);
    background: #253D84;
    top: 3.5vh;
    left: -2.5vh;
    z-index: 1;
}

.video-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #253D84;
    border: 0.5vw solid #253D84;
    overflow: hidden;
    z-index: 2;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    width: 5vw;
    height: 5vw;
    left: 13vw;
    top: 34vh;
    background: #FFFFFF;
    transform: rotate(90deg);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.logo img {
    width: 8.61vw;
}

.main-title {
    width: calc(100% - 2.5vw);
    margin-top: 16.7vh;
    font-size: 6vw;
    line-height: 100%;
    color: #FFFFFF;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: relative;
}

.cta-button {
    background: #8E8EF2;
    color: #FFFFFF;
    font-size: 1.85vw;
    line-height: 100%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 3.7vh;
}

.arrow {
    height: 100%;
    display: flex;
    align-items: center;
    width: 1.5vw;

    img {
        height: 1.5vh;
        width: 1.5vw;
    }
}

.footer {
    position: absolute;
    bottom: 4.4vh;
    font-size: 1.75vw;
    line-height: 100%;
    color: #FFFFFF;
}

/* Media query for responsive design */
@media (max-width: 768px) {

    .container {
        flex-direction: column;
    }

    .left-side, .right-side {
        width: 100%;
    }

    .left-side {
        height: auto;
    }

    .right-side {
        height: inherit;
    }

    .left-side {
        padding: 3vh 3vh;
    }

    .right-container {
        background-position: center;
    }

    .video-wrapper {
        width: 60vw;
        height: 106.66666667vw;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .logo img {
        width: 28vw;;
    }

    .main-title {
        margin-top: 6vh;
        font-size: 11vw;
    }

    .cta-button {
        font-size: 6vw;
    }

    .arrow {
        width: 3vw;

        img {
            height: 2vh;
            width: 3vw;
        }
    }

    .footer {
        font-size: 5.5vw;
        position: relative;
        bottom: unset;
        margin: 4vh 0 3vh 0;
    }

    .video-container {
        width: 100%;
        height: 100%;
        border: 1.5vw solid #253D84;
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
    }

    .video-frame-behind {
        width: 100%;
        height: calc(100% - 3vh);
        top: 4vh;
        left: -3vw;
    }



    
}
