.about-us {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-us::before {
    content: '';
    background-image: url('../patterns/dpr.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    width: 136px;
    height: 172px;
    position: absolute;
    top: 30%;
    right: 0;
    z-index: -1;
}

.about-us::after {
    content: '';
    background-image: url('../patterns/hpl.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    width: 136px;
    height: 172px;
    position: absolute;
    top: 30%;
    left: 0;
    z-index: -1;
}

.about-us-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-us-video {
    border-radius: 32px;
    overflow: hidden;
}

.vdieo-shape {
	background: var(--p-color);
	height: 230px;
	border-radius: 0 32px 32px 0;
	position: absolute;
	left: 0;
	width: 50%;
	bottom: 100px;
	z-index: -1;
}

.about-us-item-r {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.about-us-item-r::before {
    content: '';
    background-image: url('../patterns/p-logo.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 314px;
    height: 194px;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}

.section-title.section-title-a h3 {
    text-align: right;
}

.about-us-item-r p {
    font-size: 16px;
    line-height: 2.1;
}

.main-buttons.main-buttons-a {
    justify-content: start;
}

.about-us-item-l {
    width: 100%;
    flex: 1;
}



@media (max-width: 1400px) {
    .about-us-item-l {
        width: 50%;
    }

    .about-us::before {
        right: -106px;
    }
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {

    .about-us-items {
        flex-direction: column;
        gap: 20px;
    }

    .section-title.section-title-a h3 {
        text-align: center;
    }

    .main-buttons.main-buttons-a {
        justify-content: center;
    }


    .about-us-item-l {
        width: 100%;
    }

    .about-us-video img {
        width: 100%;
    }

    .vdieo-shape {
        display: none;
    }

    .about-us::before {
        top: 40px;
    }

    .about-us::after {
        background-image: url('../patterns/dpl.svg');
        left: -106px;
        top: 40px;
    }

    .about-us-item-r p {

        text-align: center;
    }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {
    .main-buttons.main-buttons-a {
        justify-content: center;
        width: 80%;
    }

    .about-us-item-r {
        align-items: center;
    }

    .about-us-item-r p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-us::before,
    .about-us::after {
        top: 80px;
    }

    .about-us-item-r::before {
        background-size: 80%;
    }
}

@media (max-width: 480px) {}

@media (max-width: 400px) {}