.about-container {
    background-color: #fff;
    display: flex;
    align-items: center;
    position: absolute;
    top: 280vh;
    overflow: visible;
    width: 100vw;
    height: 80vh;
    left: 50%;
    box-shadow: 0px 0px 50px 15px rgba(0,0,0,1);
    transform: translateX(-50%);
}

.about-desc-container {
    overflow: visible;
}

.about-img {
    width: 50%;
    height: 100%;
    object-fit: contain;
    transition: 500ms ease-in-out;
}

.about-right-container {
    position: absolute;
    left: 50%;
    width: 50%;
    height: 100%;
}

.about-desc-container {
    position: absolute;
    align-items: center;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 70%;
}

.about-title {
    font-size: 64px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-desc {
    text-align: left;
    margin: 50px auto;
    width: 100%;
    font-size: 22px;
}

.about-line {
    width: 40%;
    height: 2px;
    background-color: #3cc7ad;
}

@media screen and (max-width: 720px) {
    .about-title {
        font-size: 40px;
    }
    .about-desc {
        font-size: 20px;
    }
}

@media screen and (max-width: 450px) {
    .about-title {
        font-size: 40px;
    }
    .about-desc {
        font-size: 14px;
        margin: 5px auto;
    }
}