.about-hero{
    position: relative;
    height: 97vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

/* VIDEO */
.bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* OVERLAY */
.about-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(104, 46, 2, 0.5);
    z-index: -1;
}

/* CURVE */
.about-hero::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    border-radius: 100% 100% 0 0;
    transform: scaleX(1.1);
    z-index: 1;
}

/* CONTENT */
.about-contents{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.about-contents h4{
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-contents h1{
    font-size: 60px;
    margin-bottom: 20px;
}

.about-contents-p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}
 

 @media (max-width: 1100px){
    .about-contents h1{
        font-size: 48px;
    }

    .about-contents h4{
        font-size: 18px;
    }

    .about-contents-p{
        font-size: 16px;
    }
}
@media (max-width: 800px){

    .about-hero{
        height: 85vh;
    }

    .about-contents h1{
        font-size: 36px;
    }

    .about-contents h4{
        font-size: 16px;
    }

    .about-contents-p{
        font-size: 15px;
        line-height: 1.6;
    }

    .btn{
        padding: 12px 28px;
        font-size: 14px;
    }
}
@media (max-width: 480px){

    .about-hero{
        height: 80vh;
    }

    .about-contents h1{
        font-size: 29px;
    }

    .about-contents h4{
        font-size: 17px;
        letter-spacing: 1px;
    }

    .about-contents-p{
        font-size: 16px;
        line-height: 1.5;
    }

	.about-hero::after {  transform: scaleX(1.4);}
}