.about-us {
    position: relative;
    width: 100%;
    margin-top: 300px;
}

.about-us-contents {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../patterns/arpattern.svg') no-repeat right / contain;
    z-index: -1;
    top: 20%;
    right: 0;
    height: 260px;
}

.about-us::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../patterns/alpattern.svg') no-repeat left / contain;
    z-index: -1;
    top: 20%;
    left: 0;
    height: 260px;
}

.a-shape {
    background: var(--p-color);
    width: 50%;
    height: 460px;
    border-radius: 50px 0 0 50px;
    position: absolute;
    right: 0;
    top: 10px;
    z-index: -2;
}

.about-us-items {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 50px;
    z-index: 1;
}

.about-us-r-content p {
    font-size: 18px;
    line-height: 36px;
    color: var(--w-color);
}

.about-us-r {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.about-us-r .section-title h3 {
    color: var(--w-color);
}

.about-us-l {
    flex: 1;
}

.about-us-video {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

@media (max-width: 1400px) {

    .about-us {
        margin-top: 120px;
        overflow: hidden;
    }

    .a-shape {
        height: 380px;
    }

    .about-us::before,
    .about-us::after {
        height: 170px;
        top: 30%;
    }

    .about-us::before {
        right: -50px;
    }

    .about-us::after {
        left: -50px;
    }

    .about-us-contents::before,
    .about-us-contents::after {
        height: 260px;
        transform: translateY(20%);
    }

    .about-us-contents {
        padding: 20px;
    }

    .about-us-items {
        gap: 40px;
    }

    .about-us-r-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .about-us-r {
        gap: 16px;
    }
}

@media (max-width: 1200px) {
    .about-us {
        margin-top: 70px;
        overflow: hidden;
        padding: 20px 0 20px;
    }

    .about-us-items {
        gap: 40px;
        padding: 0;
    }

    .about-us-contents::before,
    .about-us-contents::after {
        height: 220px;
        transform: translateY(30%);
    }

    .about-us-contents::before {
        right: -40px;
    }

    .about-us-contents::after {
        left: -40px;
    }

}

@media (max-width: 992px) {
    .about-us {
        padding: 0 32px !important;
    }

    .about-us-contents::before,
    .about-us-contents::after {
        height: 190px;
        transform: translateY(30%);
    }

    .about-us-contents {
        padding: 50px 0;
    }

    .about-us-items {
        flex-direction: column;
        gap: 24px;
    }

    .about-us-r {
        align-items: center;
    }

    .about-us-l {
        width: 100%;
    }

    .a-shape {
        display: none;
    }

    .about-us::before,
    .about-us::after {
        display: none;
    }

    .about-us-contents {
        background: var(--p-color);
        border-radius: 40px;
        padding: 32px 0;
    }

    .about-us-r .section-title h3 {
        color: var(--w-color);
    }

    .about-us-r-content p {
        text-align: center;
        color: var(--w-color);
    }

}

@media (max-width: 768px) {

    .about-us-contents::before,
    .about-us-contents::after {
        height: 190px;
        transform: translateY(40%);
    }
}

@media (max-width: 576px) {

    .about-us-contents::before,
    .about-us-contents::after {
        height: 190px;
        transform: translateY(50%);
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 0 24px !important;
    }

    .about-us-contents::before,
    .about-us-contents::after {
        height: 190px;
        transform: translateY(60%);
    }

    .about-us-contents {
        padding: 16px 0;
    }

    .about-us-video {
        border-radius: 32px;
    }
}

@media (max-width: 390px) {

    .about-us-contents::before,
    .about-us-contents::after {
        height: 170px;
        transform: translateY(80%);
    }

    .about-us-r-content p {
        font-size: 15px;
    }
}

@media (max-width: 360px) {

    .about-us-contents::before,
    .about-us-contents::after {
        height: 150px;
        transform: translateY(100%);
    }
}