.about-us {
    position: relative;
    width: 100%;
}

.about-us-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.about-us-r {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.about-us-r::before {
    content: '';
    background: url('../patterns/pattern.svg') no-repeat center/contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about-us-l {
    border-radius: 32px;
    overflow: hidden;
    flex: 1;
}

.about-us-items .v-buttons {
    justify-content: start;
}

.about-us-r p {
    font-size: 20px;
    line-height: 38px;
}






@media (max-width: 1400px) {}

@media (max-width: 1200px) {
    .about-us-r p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 992px) {
    .about-us-items {
        flex-direction: column;
    }

    .about-us-r {
        flex: 1;
    }

    .about-us-l {
        flex: 1;
        width: 100%;
    }

    .about-us-items .v-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-us-r p {
        line-height: 32px;
    }
}

@media (max-width: 576px) {
    .about-us-r p {
        font-size: 16px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {}

@media (max-width: 400px) {}