/* About Us */
.about-us {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 170px;
    background: linear-gradient(215deg, #346DFE, #373737, #373737);
}

.about-us::before {
    content: "";
    background-image: url('../assets/shape/arrow-shape.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 270px;
    height: 143px;
    position: absolute;
    top: -58px;
    right: clamp(20px, 10vw, 180px);
}

.about-us-contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 90px;
}

.about-us-items {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-us-content p {
    color: var(--w-color);
    line-height: 32px;
}

.about-us-video {
    flex: 1;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media (max-width: 1400px) {
    .about-us {
        height: 510px;
        margin-top: 150px;
    }

    .about-us::before {
        transform: scale(0.7);
        top: -62px;
        right: clamp(12px, 0vw, 150px);
    }

    .about-us-content p {
        line-height: 28px;
        font-size: 15px;
    }

    .about-us-items {
        flex: 1.5;
    }
}

@media (max-width: 1200px) {
    .about-us {
        width: 100%;
        height: 440px;
        margin-top: 120px;
    }

    .about-us::before {
        transform: scale(0.6);
        top: -63px;
        right: clamp(12px, 0vw, 150px);
    }

    .about-us-content p {
        line-height: 24px;
        font-size: 14px;
    }

    .about-us-items {
        flex: 1.2;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {

    .about-us {
        width: 100%;
        height: 100%;
        margin-top: 120px;
        padding: 80px 0;
    }

    .about-us::before {
        top: -62px;
        right: 50%;
        transform: translateX(50%) scale(0.7);
    }

    .about-us-contents {
        gap: 52px;
        flex-direction: column;
    }

    .about-us-video {
        width: 60%;
    }

    .hv-hero-buttons {
        justify-content: center;
    }

    .about-us-items {
        flex: 1;
        margin-top: 0;
    }

    .hv-hero-buttons.hv-hero-buttons-a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-us {
        margin-top: 80px;
        padding: 60px 0;
    }

    .about-us::before {
        top: -64px;
        transform: translateX(50%) scale(0.6);
    }

}

@media (max-width: 576px) {

    .about-us-content p {
        font-size: 16px;
        line-height: 32px;
    }

    .about-us-video {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-us {
        margin-top: 80px;
        padding: 50px 0 10px;
    }

    .about-us-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .about-us-contents {
        gap: 40px;
        flex-direction: column;
    }

    .hv-hero-buttons.hv-hero-buttons-a .hv-btn {
        width: 160px !important;
        height: 48px !important;
    }
}

@media (max-width: 414px) {
    .about-us::before {
        top: -65px;
        transform: translateX(50%) scale(0.5);
    }

    .about-us-contents {
        gap: 20px;
        flex-direction: column;
    }

    .about-us-content p {
        font-size: 14px;
        line-height: 20px;
    }

}

@media (max-width: 390px) {
    .about-us {
        margin-top: 80px;
        padding: 10px 0 10px;
    }

    .about-us-contents {
        margin-top: 40px;
    }
}

@media (max-width: 375px) {

    .about-us-content p {
        font-size: 13px;
        line-height: 20px;
    }

    .hv-hero-buttons.hv-hero-buttons-a .hv-btn {
        width: 160px !important;
        height: 44px !important;
    }
}

@media (max-width: 360px) {
    .about-us-content p {
        line-height: 24px;
        font-size: 13px;
        line-height: 19px;
    }

}