.about-main {
    position: relative;
    background: var(--primary-color);
    padding: 70px 0;
}

.about-main::before {
    content: "";
    background: url('../assets/patterns/a-r-pattern.svg') no-repeat right / contain;
    width: 100%;
    height: 400px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.about-main::after {
    content: "";
    background: url('../assets/patterns/a-l-pattern.svg') no-repeat left / contain;
    width: 100%;
    height: 400px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.about-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 40px;
}

.about-video {
    flex: 1;
    width: 100%;
    height: auto;
}

.about-video img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.about-contents {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main-title.about-title {
    justify-content: start;
    margin-bottom: 0;
}

.main-title.about-title h3 {
    color: var(--white-color);
}

.about-contents p {
    font-size: 18px;
    line-height: 36px;
    color: var(--white-color);
}

.about-items .vc-buttons {
    justify-content: start;
}

.btn-secondary {
    background: var(--primary-color) !important;
}


@media (max-width: 1400px) {
    .about-contents p {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 992px) {
    .about-items {
        flex-direction: column;
    }

    .about-contents {
        align-items: center;
    }

    .main-title.about-title {
        justify-content: center;
        margin-bottom: 0;
    }

    .about-contents p {
        font-size: 16px;
        line-height: 1.8;
        text-align: justify;
    }

    .about-items .vc-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-main {
        padding: 40px 0;
    }

    .about-main::before,
    .about-main::after {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-main {
        padding: 30px 0;
    }

    .about-items {
        padding: 0 24px;
    }

    .about-contents p {
        font-size: 15px;
    }

    .about-contents {
        border-radius: 20px;
    }

    .about-contents p {
        line-height: 30px;
        font-size: 16px;
        line-height: 1.8;
    }

    .about-video img {
        border-radius: 20px;
    }
}

@media (max-width: 390px) {

    .about-main::before,
    .about-main::after {
        height: 240px;
    }

    .about-items {
        border-radius: 24px;
        padding: 0 16px;
        gap: 24px;
    }

    .about-contents {
        border-radius: 18px;
        gap: 12px;
    }

    .about-contents p {
        font-size: 15px;
        line-height: 26px;
    }

}

@media (max-width: 375px) {

    .about-contents p {
        font-size: 14px;
        line-height: 25px;
    }
}