.bg-video {
    position: absolute;
    top: 40%;
    left: 50%;
    height: 120%;
    width: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}
.shadow {
    position: absolute;
    top: 40%;
    left: 50%;
    height: 120%;
    width: 100%;
    transform: translate(-50%, -50%);
    background: #00000033;
    z-index: -1;
}

.main {
    position: relative;
    height: 100vh;
}

.main__text-box {
    height: 70vh;
    display: flex;
    align-items: center;
}

.main__text {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 60px;
    line-height: 140%;
    text-align: center;
    padding-left: 11%;
    padding-right: 11%;
}



@media (max-width: 1024px) { 
    .main__text {
        font-size: 40px;
        line-height: 56px;
    }
}

@media (max-width: 768px) { 
    .main__text {
        font-size: 30px;
        line-height: 42px;
    }

    .main__text-box {
        height: 65vh;
    }
}

@media (max-width: 360px) { 
    .main__text {
        font-size: 24px;
        line-height: 34px;
    }
}