html {
    background: #E7E4DE;
}
body {
    position: relative;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(270deg, #43CED1 0%, rgba(67, 206, 209, 0) 103.3%);
}
p {
    margin: 0;
}
a:hover {
    color: #fff;
}

.bg-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
    background: url('../images/alecla-bg.jpg');
    background-position: center;
    background-size: cover;
    z-index: 0;
}
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: overlay;
    z-index: 0;
}

header {
    position: relative;
    padding: 70px 0;
}
header img {
    width: 300px;
}

main {
    position: relative;
}
main .intro-text,
main .intro-text b {
    font-family: 'EB Garamond';
    font-weight: 700;
    font-size: 38px;
    line-height: 90%;
    color: #fff;
    max-width: 700px;
    margin-bottom: 40px;
}
main .text {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #5FD8DD;
    max-width: 520px;
    margin-bottom: 30px;
}

footer {
    position: relative;
    padding: 30px 0;
    margin-top: auto;
}
footer p,
footer span {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 118%;
    letter-spacing: 0.026em;
    color: #fff;
    display: inline;
}
footer .separator {
    margin: 0 8px;
}
footer a {
    font-family: 'Poppins';
    font-weight: 700;
    font-size: 16px;
    line-height: 118%;
    letter-spacing: 0.026em;
    color: #4FE5E9;
}

@media screen and (max-width: 767px) {
    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .video-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    video {
        width: 130vh;
        height: 130vw;
        transform: rotate(-90deg) translate(-100%, 0);
        transform-origin: top left;
    }

    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1;
        padding: 26px 40px;
        transition: all 0.5s;
    }
    header.sticky {
        padding-top: 13px;
        padding-bottom: 13px;
        background: rgba(0, 67, 66, 0.3);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
    }
    header img {
        width: 260px;
        transition: all 0.5s;
    }
    header.sticky img {
        width: 214px;
    }

    main {
        padding: 0 60px 0 40px;
        margin: 120px 0 64px 0;
    }
    main .intro-text,
    main .intro-text b {
        font-weight: 400;
        font-size: 34px;
        line-height: 106%;
    }
    main .intro-text b {
        font-weight: 700;
    }
    main .text {
        font-size: 20px;
        line-height: 130%;
        color: #CBFDFF;
        margin-bottom: 24px;
    }

    footer {
        background: #161F27;
        padding: 26px 40px;
    }
    footer p,
    footer span {
        display: block;
    }
}
@media screen and (max-width: 399px) {
    video {
        width: 160vh;
    }
}
