.about-us {
    position: relative;
    background-image: url('../assets/patterns/pattern.svg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: inherit;
    width: 100%;
    height: 100%;
    background-color: var(--t-color);
    padding: 80px 0;
}

.about-us::before {
    content: '';
    position: absolute;
    background-image: url('../assets/shapes/t-shape.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: inherit;
    width: 100%;
    height: 20%;
    top: 0;
    z-index: 0;
}

.about-us::after {
    content: '';
    position: absolute;
    background-image: url('../assets/shapes/b-shape.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: inherit;
    width: 100%;
    height: 20%;
    bottom: 0;
    z-index: 0;
}

.about-us-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
    gap: 50px;
}

.about-us-video img {
    border-radius: 32px;
    width: 100%;
}

.about-us-title {
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-us-title h3 {
    color: var(--w-color) !important;
    font-size: 28px;
    font-weight: 700;
}

.about-us-contents {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}


.about-us-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--w-color);
}

.about-us-video {
    width: 100%;
    border-radius: 32px !important; 
    flex: 1;
    overflow: hidden;
}




@media (max-width: 1400px) {

    .about-us-content p {
        font-size: 16px;
        line-height: 1.9;
    }

    .about-us-contents {
        gap: 20px;
    }

    .about-us-items {
        padding: 80px 0 10px;
    }
}

@media (max-width: 1200px) {
    .about-us-title h3 {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .about-us::before {
        background-size: 1530px;
    }

    .section-arrow img {
        width: 70px;
    }

    .about-us-title h3 {
        font-size: 22px;
    }

    .about-us-items {
        padding: 40px 0 10px;
        flex-direction: column;
    }

    .about-us-video {
        width: 100%;
    }

    .main-buttons {
        justify-content: center;
    }

}

@media (max-width: 768px) {}

@media (max-width: 576px) {}

@media (max-width: 480px) {
    .about-us {
        padding: 70px 0 30px;
    }

    .about-us-title h3 {
        font-size: 20px;
    }
}

@media (max-width: 390px) {
    .about-us::before {
        background-size: 1280px;
    }

    .section-arrow img {
        width: 60px;
    }

    .about-us-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}