.about-us {
    position: relative;
    width: 100%;
    background: var(--p-color);
    padding: 260px 0;
    z-index: 1;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../shape/t-shape.svg') no-repeat center top;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    transform: scale(1.01);
}

.about-us::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../shape/b-shape.svg') no-repeat center bottom;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    transform: scale(1.01);
}

.about-us-contents {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}


.about-us-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
    z-index: 1;
}

.about-us-r .section-title {
    margin-bottom: 0;
}

.about-us-r .section-title h3 {
    text-align: right;
    color: var(--w-color);
}

.about-us-r-content p {
    font-size: 18px;
    line-height: 36px;
    color: var(--w-color);
}

.about-us-r .a-buttons {
    justify-content: start;
}

.about-us-r {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.about-us-r::before {
    content: '';
    background: url('../patterns/a-pattern.webp') no-repeat center / contain;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.about-us-l {
    flex: 1;
}

.about-us-video {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.about-us-video img {
    width: 100%;
}

@media (max-width: 1400px) {

    .about-us-items {
        gap: 20px;
    }

    .about-us-r-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .about-us-r {
        gap: 16px;
    }
}

@media (max-width: 1200px) {
    .about-us {
        padding: 180px 0;
    }
}

@media (max-width: 992px) {


    .about-us-items {
        flex-direction: column;
        gap: 24px;
    }

    .about-us-r {
        align-items: center;
    }


    .about-us-r .a-buttons {
        justify-content: center;
    }

    .about-us-l {
        width: 100%;
    }

    .about-us-r-content p {
        text-align: center;
    }

}

@media (max-width: 768px) {
    .about-us {
        padding: 100px 0;
    }
    .about-us::before {
        top: 4px;
    }
    .about-us::after {
        bottom: 4px;
    }
}


@media (max-width: 576px) {}

@media (max-width: 480px) {

    .about-us {
        padding: 70px 0;
    }

    .about-us::before {
        top: 4px;
    }

    .about-us::after {
        bottom: 4px;
    }

    .about-us-video {
        border-radius: 32px;
    }
}

@media (max-width: 390px) {
    .about-us::after {
        bottom: 3px;
    }

    .about-us-r-content p {
        font-size: 15px;
    }

    .about-us-r .a-buttons {
        justify-content: center;
        width: 90%;
    }
}

@media (max-width: 360px) {}