header {
    background-color: white;
    color: blue;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    position: fixed;
    height: 118px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 1px 5px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}
header a{
    text-decoration: none;
}
header a:visited{
    color: blue;
}
.header-top{
    width: 100%;
    max-width: 1124px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 16px 12px 18px 12px;
    padding: 0px 5px;
}
.company-logo{
    height:56px;
}
.logo{
    height: 100%;
}
.phone-number, .email{
    font-size: 12px;
}


.social-media{
    display: flex;
    flex-direction: row;
}
.logo-div{
    height: 36px;
    margin-left: 8px;
}
.social-logo{
    height: 100%;
    cursor: pointer;
}
nav{
    width: 100%;
    max-width: 960px;
    margin-bottom: 8px;
}
.sections{
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
}
.sections li{
    cursor: pointer;
}
.sections li:hover{
    text-decoration: underline 2px rgb(231, 196, 0);
}
.nav-link{
    padding: 6px 12px;
    border-radius: 20px;
}
.nav-link.active{
    color: rgb(231, 196, 0);
    box-shadow: 0px 2px 4px rgba(0,0,0,0.15);
    font-size: 15px;
}

/* Hide mobile icons by default */
.mobile-menu-icon,
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 38px;
    color: blue;
    z-index: 101;
    cursor: pointer;
}

/* Mobile styles for screens less than 700px */
@media (max-width: 700px) {
    header{
        height: 80px;
    }
    .phone-number.regular,
    .email.regular,
    .social-media.regular {
        display: none !important;
    }
    .email.mobile, 
    .phone-number.mobile,
    .social-media.mobile {
        margin: 15px 0px;
        padding: 0px 15px;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background-color: white;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
    }

    nav.active {
        transform: translateX(0);
    }

    .sections {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
    }

    .sections li {
        margin: 15px 0;
    }

    .mobile-menu-icon {
        display: block;
    }

    .mobile-menu-close {
        display: block;
        right: 22px;
    }
}
@media (min-width: 701px) {
    .mobile-menu-icon,
    .mobile-menu-close, 
    .email.mobile, 
    .phone-number.mobile,
    .social-media.mobile {
        display: none !important;
    }
}