.container {
    position: relative;
    height: 100vh;
}
.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #101010;
    z-index: 100;
    animation: preload 2s 0.8s forwards cubic-bezier(0,0,0.2,1);
}
@keyframes preload {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}
.main-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.container .content {
    position: fixed;
    bottom: 40px;
    left: calc((100% - 1400px)/2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
}
.container .content p {
    font-size: 26px;
    font-weight: 300;
    max-width: 245px;
    transform: translateY(305px);
    color: #fff;
    animation: top 1.2s 1.5s forwards cubic-bezier(0,0,0.2,1);
}
@keyframes top {
    0% {
        transform: translateY(305px);
        opacity: 0.2;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.container .content .main-title {
    max-width: 810px;
}
.container .content .main-title div {
    height: 120px;
    margin-bottom: 10px;
    margin-right: 25px;
}
.container .content .main-title div span {
    font-size: 139px;
    line-height: 120px;
    color: #fff;
    letter-spacing: -4.27px;
}
.container .content .main-title div:first-child span:first-child {
    animation-delay: 1.5s;
}
.container .content .main-title div:first-child span:nth-child(2) {
    animation-delay: 1.53s;
}
.container .content .main-title div:first-child span:nth-child(3) {
    animation-delay: 1.56s;
}
.container .content .main-title div:first-child span:nth-child(4) {
    animation-delay: 1.59s;
}
.container .content .main-title div:first-child span:nth-child(5) {
    animation-delay: 1.62s;
}
.container .content .main-title div:first-child span:nth-child(6) {
    animation-delay: 1.65s;
}
.container .content .main-title div:nth-child(2) span:first-child {
    animation-delay: 1.68s;
}
.container .content .main-title div:nth-child(2) span:nth-child(2) {
    animation-delay: 1.71s;
}
.container .content .main-title div:nth-child(2) span:nth-child(3) {
    animation-delay: 1.74s;
}
.container .content .main-title div:nth-child(2) span:nth-child(4) {
    animation-delay: 1.77s;
}
.container .content .main-title div:nth-child(2) span:nth-child(5) {
    animation-delay: 1.8s;
}
.container .content .main-title div:nth-child(2) span:nth-child(6) {
    animation-delay: 1.83s;
}
.container .content .main-title div:nth-child(3) span:nth-child(1) {
    animation-delay: 1.86s;
}
.container .content .main-title div:nth-child(3) span:nth-child(2) {
    animation-delay: 1.89s;
}
.container .content .main-title div:nth-child(4) span:nth-child(1) {
    animation-delay: 1.92s;
}
.container .content .main-title div:nth-child(4) span:nth-child(2) {
    animation-delay: 1.95s;
}
.container .content .main-title div:nth-child(4) span:nth-child(3) {
    animation-delay: 1.98s;
}
.container .content .main-title div:nth-child(4) span:nth-child(4) {
    animation-delay: 2.01s;
}
.container .content .main-title div:nth-child(4) span:nth-child(5) {
    animation-delay: 2.04s;
}
.container .content .main-title div:first-child span:first-child {
    left: 20px;
}
@media screen and (max-width: 1400px) {
    .container .content {
        left: 0;
    }
    .container .content .main-title {
        max-width: 755px;
    }
}
@media screen and (max-width: 1050px) {
    .container .content {
        flex-direction: column;
    }
    .container .content p {
        margin-bottom: 30px;
    }
    .container .content .main-title {
        margin-left: auto;
        max-width: 680px;
    }
    .container .content .main-title div {
        height: 100px;
        margin-bottom: 0;
    }
    .container .content .main-title div span {
        font-size: 100px;
        line-height: 90px;
        letter-spacing: -2px;
    }
}
@media screen and (max-width: 768px) {
    .container .content {
        bottom: 20px;
    }
    .container .content p {
        font-size: 20px;
        max-width: 165px;
    }
    .container .content .main-title {
        max-width: 500px;
    }
    .container .content .main-title div {
        height: 70px;
        margin-bottom: 0;
    }
    .container .content .main-title div span {
        font-size: 69px;
        line-height: 60px;
        letter-spacing: -1.8px;
    }
    .container .content .main-title div:first-child span:first-child {
        left: 6px;
    }
}
@media screen and (max-width: 578px) {
    @keyframes top {
        0% {
            transform: translateY(305px);
            opacity: 0.2;
        }
        70% {
            opacity: 0.2;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    .container .content .main-title {
        margin-left: unset;
        margin-right: auto;
    }
}
@media screen and (max-height: 375px) {
    .container .content {
        flex-direction: row;
    }
    .container .content p {
        margin-bottom: 30px;
    }
}

