* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "NotoSans", sans-serif;
    font-size: 14px;
}


.wrapper {
    width: 100%;
    margin-left: 0px;
    background-color: white;
}

.navbar-custom{
    background-color: #C0E6F5;
    height: 80px;
    
}

.navbar-header{
    font-size: 24px;
    margin-bottom: 0px;
    color: #0070C0;
    line-height:  80px;
    padding-left: 7%;
}

.container-privacy{
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
    
}

.title-header h2{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;

}

.title{
    font-size: 16px;
    color: #5F7D00;
    font-weight: bold;
    margin: 20px 0;
}

.phone,.fax{
    text-decoration: none;
}

.footer{
    background-color: #00B0F0;
    color: white;
    padding: 20px 0px;
}

.navbar-expand-lg .navbar-collapse{
    justify-content: center;
}
.navbar-nav{

    display: flex;
    align-items: center;
    flex-direction: row;
    width: 500px;
    justify-content: space-around;
    margin: 0 auto 10px auto;
}

.navbar-nav a {
    color: white;
    font-size: 14px;
}

.copy-text{
    color: white;
    font-size: 11px;
}

@media screen and (max-width: 768px){
    * {
        font-size: 12px;
    }

    .container-privacy{
        padding: 40px 10px;
    }

    .title{
        font-size: 14px;
    }
    .navbar-nav{
        width: 100%;
    }

    .navbar-nav a {
   
        font-size: 12px;
    }

    .copy-text{
        font-size: 9px;
    }
    
}