.about-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color);
    border-radius: 40px;
    padding: 20px;
    gap: 20px;
}

.about-video {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 32px;
    overflow: hidden;
}

.about-video img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.about-contents {
    flex: 1;
    background: var(--white-color);
    padding: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.main-title.about-title {
    justify-content: start;
    margin-bottom: 0;
}

.about-contents p {
    font-size: 18px;
    line-height: 40px;
}

.vc-buttons.vc-buttons-section {
    background: var(--tertiary-color);
}

.btn-secondary {
    background: var(--primary-color) !important;
}



@media (max-width: 1400px) {
    .about-contents p {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 1200px) {}

@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 {
        line-height: 30px;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {
    .about-items {
        border-radius: 30px;
        padding: 16px;
    }

    .about-contents p {
        font-size: 15px;
    }

    .about-contents {
        border-radius: 20px;
    }

    .about-video img {
        border-radius: 20px;
    }
}

@media (max-width: 390px) {
    .about-contents {
        padding: 16px;
    }

    .about-items {
        border-radius: 24px;
        padding: 10px;
        gap: 10px;
    }

        .about-contents {
        border-radius: 18px;
    }

    .about-contents p {
        font-size: 15px;
        line-height: 26px;
    }

}

@media (max-width: 375px) {

    .about-contents p {
        font-size: 14px;
        line-height: 25px;
    }
}