/* ABOUT US =======================================================================================================*/

.aboutus .aboutus-container {
    padding: 100px 0;
    margin: 0;
    width: 100%;
    max-width: 60%;
    height: auto;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.aboutus .aboutus-logo {
    margin: 50px 0;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.aboutus .txt-header {
    color: white;
    font-size: 32px;
    text-align: center;
    font-weight: 500;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
}

.aboutus .txt-desc-container {
    color: white;
    width: 100%;
    height: auto;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 100px;
    padding: 0 20px;
    column-count: 2;
    column-gap: 40px;
}

/* ====================================================================================== */

@media all and (max-width: 1400px) {
    .aboutus .aboutus-container {
        max-width: 70%;
    }
}

@media all and (max-width: 1000px) {
    .aboutus .aboutus-container {
        max-width: 80%;
    }
}

@media all and (max-width: 900px) {
    .aboutus .txt-desc-container {
        column-count: 1;
        margin-bottom: 0px;
    }
}

@media all and (max-width: 580px) {
    .aboutus .aboutus-container {
        max-width: 100%;
    }
}

@media all and (max-width: 400px) {}