@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.about-us-background {
    background: linear-gradient(135deg, #000000 -15.11%, #000000 51.40%);
    width: 100%;
    height: 100vh;

}

.about-us-container {
    display: flex;
}

.acc-containers {
    width: 50%;
    height: 100%;
    padding: 2rem;

}

.mv-container {
    width: 50%;
    height: 100%;
    padding: 2rem;
}

.about-us-background .white-box {
    margin: auto;
    width: 100%;
    /* background-color: #ffffff; */
    text-align: center;
    font-family: 'Poppins', sans-serif;
    padding: 1rem;
    color: #ffffff;
    animation: down-up 1.5s ease-in forwards;
}

@keyframes down-up {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }



    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.about-us-background .white-box p {
    text-align: justify;
    text-indent: 50px;
    margin: 1rem;
}

@media (max-width: 600px) {

    .about-us-background {

        height: 100%;

    }

    .about-us-container {
        flex-direction: column;
    }

    .acc-containers {
        width: 100%;
        height: 100%;
        padding: 1rem;

    }

    .mv-container {
        width: 100%;
        height: 100%;
        padding: 1rem;
    }
}

@media (max-width: 900px) and (min-width: 601px) {

    .about-us-background {

        height: 100vh;

    }

    .about-us-container {
        flex-direction: column;
    }

    .acc-containers {
        width: 100%;
        height: 100%;
        padding: 1rem;

    }

    .mv-container {
        width: 100%;
        height: 100%;
        padding: 1rem;
    }


}

@media (min-width: 901px) {
    .acc-containers {
        margin-top: 5rem;

    }

    .mv-container {
        margin-top: 5rem;
    }
}
