
.about-container{
    margin-top: 30px;
    width: 100%;
    height: 100vh;
    background-image: url("../../img/about/about.png");
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
.about-container::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px) saturate(1.5) brightness(0.7);
    z-index: -1;
}

.about-container .row{
    padding: 150px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.about-container .title{
    font-size: 18px;
}

.about-container .desc{
    font-size: 15px;
}

@media screen and (max-width: 800px) {

    .about-container .row{
        padding: 20px;
    }    

}