/*                              Styles for Desktop                                  */
/* Universal Components */
*{
    box-sizing: border-box;
}
html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.topNavbar {
    background-color: #183D8B;
    position: sticky;
    top: 0;
    height: 100px; 
    font-family: 'Alberto sans';
    font-size: 1.5rem ;
    z-index: 100;
}  
.bayardLogo {
    max-height: 70px;
}
.navbar-nav {
    width: 100%;
    justify-content: center;
}
.contentContainer{
    width: 100%;
    overflow-x: hidden;
}
.footer {
    height: 100px;
    font-family: 'Alberto sans';
    font-size: 1rem;
    width: 100%;
}
.managementLogoContainer{
    width: 120px;
    height: 70%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.termsLink:hover{
    color: blue;
}
.borderSpan{
    border-bottom: 3px solid hsl(221, 71%, 32%) !important;
    width: 70%;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Terms Page  */
.termsHeader{
    font-family: 'Poppins', sans-serif;
    font-size: 2.0rem;
    font-weight: bold;   
}
.termsSubheader{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
}
.termsText{
    font-family: 'Poppins', sans-serif;
    font-size: 1.0rem;
}




/*                              Styles for tablets                                  */
@media (max-width: 768px) {
/* Universal Components */
.topNavbar {
    background-color: #183D8B;
    position: sticky;
    top: 0;
    height: 100px; 
    font-family: 'Alberto sans';
    font-size: 1.5rem ;
    z-index: 100;
}  
.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #183D8B;
    z-index: 1;
}
.navbar-nav {
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}
.nav-link {
    font-family: 'Alberto sans';
    font-size: 18px;
    padding: 10px 0;
}
.footer {
    height: 65px;
    font-size: 15px;
}
.managementLogoContainer{
    width: 60%;
    height: 70%;
    padding: 0;
}
.borderSpan{
    border-bottom: 2px solid hsl(221, 71%, 32%) !important;
    width: 100%;
    margin-top: 7px;
    margin-bottom: 7px;
}

/* Terms Page  */
.termsHeader{
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;   
}
.termsSubheader{
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
}
.termsText{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

}



/*                              Styles for Mobile                                  */
@media (max-width: 600px) {
/* Universal Components */
.bayardLogo {
    max-height: 45px;
}
.footer {
    height: 65px;
    font-size: 9px;
}
.managementLogoContainer{
    width: 70%;
    height: 70%;
}
.borderSpan{
    border-bottom: 1px solid hsl(221, 71%, 32%) !important;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Terms Page  */
.termsHeader{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;   
}
.termsSubheader{
    font-family: 'Poppins', sans-serif;
    font-size: 1.0rem;
    font-weight: bold;
}
.termsText{
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
}

}