#main-video {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: calc(100vh - 120px);
    margin-top: 120px;
}

#about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 40px;
    min-height: 60vh;
}

#about div.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 60px;
	font-weight: 400;
    text-transform: uppercase;
}

.about-description {
    font-size: 30px;
    font-weight: 300;
}

@media (max-width: 1200px){
    .about-description{
        font-size: 25px;
    }
}

@media (max-width: 720px){
    .about-title{
        font-size: 30px;
    }
    .about-description{
        font-size: 20px;
    }
}

@media (max-width: 576px){
    .about-title{
        font-size: 25px;
    }
    .about-description{
        font-size: 20px;
    }
}