/*MARGINS*/
html {
    margin: 0;
}

body {
    margin: 0%;
}

/*max-width*/
.max-width {
    overflow: hidden;
    max-width: 1400px;
    margin: auto;
}

.max-width-quote {
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}

/*NAVBAR*/
ul {
    z-index: 1;
    position: fixed;
    top: 0;
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

li h3 {
    float: left;
    display: block;
    color: Black;
    text-align: center;
    margin-left: 18px;
    margin-right: 32px;
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 400;
}

li a {
    background-color: white;
    float: left;
    display: block;
    color: rgb(86, 86, 86);
    text-align: center;
    margin-top: 6px;
    padding: 20px 40px;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 300;
}

li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    text-decoration-color: #277FC4;
}

.current {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    text-decoration-color: #277FC4;
}

li button {
    float: right;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-top: 16px;
    margin-left: 3%;
    margin-right: 18px;
    padding: 12px;
    border-radius: 8px;
    color: white;
    border: none;
    background-color: #277FC4;
    transition-duration: 0.4s;
}

li button:hover {
    background-color: #4D9CDA;
    transition-duration: 0.4s;
}


.hamburger {
    display: none;
}

/*FOOTER*/
.footer {
    margin: 0;
    padding: 3% 0% 1% 0%;
    background-color: #F3F0EF;
    text-align: center;
}

.footer-button {
    margin-right: 1%;   
}

.footer-button-last {
    margin: 0%;   
}

.footer-text {
    font-family: "DM Sans", sans-serif;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
}

.footer-link {
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    color: #277FC4;
}

.footer-link:hover {
    text-decoration: underline;
    text-decoration-color: #277FC4;
}

/*NavBar*/
@media screen and (max-width: 1290px) {
    li a {
        display: none;
    }

    li button {
        display: none;
    }

    .hamburger { 
        display: block;
        float: right;
        margin-top: 20px;
        margin-right: 18px;
        width: 36px;
    }
}

/*NavBar*/
@media screen and (max-width: 1290px) {
    /*should change links and button when the UL is class="responsive"*/
    .topnav.responsive {
        position: fixed;
    }

    .topnav.responsive .hamburger {
        content: url("close.svg");
        position: absolute;
        right: 0;
        top: 0;
    }

    .topnav.responsive li #home {
        margin-top: 70px;
        text-align: center;
    }

    .topnav.responsive li a {
        margin-top: 0px;
        float: none;
        display: block;
        text-align: center;
    }

    .topnav.responsive li button {
        float: none;
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
}