/* VIDEO BACKGROUND */

.video-bg{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

z-index:-2;

}



/* DARK OVERLAY */

body::before{

content:"";

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.55);

z-index:-1;

}



/* ABOUT SECTION */

.about-content{

min-height:100vh;

display:flex;
align-items:flex-start;

padding:120px 8% 60px 8%;

margin-top:40px;

}



/* GRID */

.about-container{

display:grid;
grid-template-columns:1fr 1fr;

width:100%;

}



/* TEXT */

.about-text{

max-width:650px;

font-size:18px;
line-height:1.9;

margin-left:auto;

}



/* TITLE */

.about-text h1{

font-size:60px;
margin-bottom:40px;

}



/* PARAGRAPHS */

.about-text p{

margin-bottom:28px;

}



/* MOBILE */

@media(max-width:900px){

.about-container{
grid-template-columns:1fr;
}

.about-text{
margin:auto;
text-align:center;
}

}