* {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: black;
}

#Headlines {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1vh 1vh;
    font-family: sans-serif;
    font-size: .8;
    color: gray;
    margin-bottom: -1vh;
}




/* For Navbar animation*/

#navbarTwo {
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.20);

}

.navbarAlignment {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0% 10%;
}

.logo {
    object-fit: cover;
    height: 2.5rem;
    width: 100%;
    cursor: pointer;
}

.contacticon {
    height: 1.5rem;
    width: 2rem;
    object-fit: contain;
    cursor: pointer;
}

.contactbutton {

    text-decoration: none;
    color: black;
    font-size: 1rem;
    padding: 10px 10px;
    border-radius: 1vh;
    color: black;
    font-weight: 400;
}

/* For Navbar animation*/
.desktopMenuListItem {
    margin: .5px;
    cursor: pointer;
    position: relative;
    transform: translateZ(0);
    animation-duration: 1s;
    padding-bottom: .1rem;
    font-size: .9rem;
}



.desktopMenuListItem:before {
    content: "";
    position: absolute;
    z-index: -1;
    border-bottom: 3px solid #940a08;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: 300ms ease-out;
}


.desktopMenuListItem:hover::before {
    transform: scaleX(1);

}


/* Section 1*/

#sectionOne {
    height: 30vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)),
        url(/assets/aboutUsMedia/aboutusbackground.jpg);
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: center;
    padding: 2% 20%;
    z-index: -1;
    display: flex;
    justify-content: center;
}


.section1-text {
    text-align: center;
    color: white;
}

.sectionTwo {
    margin: 2% 10%;
}

.section2-text {
    font-size: 1rem;
    color: black;
    text-align: justify;
    text-justify: inter-word;

}

.bibiImg {
    min-width: 50vh;
    height: 70vh;
    border-radius: 40px;
}

.rowsalign {
    display: flex;
    align-items: center;
}