/*Footer and Header/Navbar css*/
/*Nav Bar*/
*{
    box-sizing:border-box;
    
    font-family: Copperplate, "Copperplate Gothic Light", fantasy;
    /*font-family: "Comic Sans MS", "Comic Sans", cursive;*/
}
body{
    margin:0px;
    padding:0px;
}
#top-header{
    background-color: #3f5683;
    padding: .5rem;
}
#header-phone{
    color:white;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 20px;
}
.navbar{
    display:flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color:#df6231;
    box-shadow:0 15px 25px -15px #111, 0px -15px 10px -15px #111;
}
.brand-link{
    height: 100%;
}
.brand-title{
    font-size:2rem;
    padding-top: 1vh;
    display:inline-block;
    color:#df6231 !important;
    text-decoration: none !important;
}
.brand-logo{
    padding: 5px;
    height: 55px;
    width: 55px;
    float: left;
}
.active{
    background-color: #b8b8b82f;
}
.navbar-links ul{
    display:flex;
    margin:0px;
    padding:0px;
    font-size: 1.25rem;
}
.navbar-links li{
    list-style: none;
}
.navbar-links li a{
    text-decoration: none;
    color:#df6231;
    padding: 1rem;
    display:block;
}
.navbar-links li:hover{
    background-color: #b8b8b82f;
}

.toggle-button{
    position:absolute;
    top: 6.2vh;
    align-items: center;
    right:1rem;
    display:none;
    flex-direction: column;
    justify-content: space-between;
    width:2rem;
    height: 2%;
}
.toggle-button .bar{
    height: 3px;
    width: 100%;
    background-color: #df6231;
    border-radius: 10px;
}
@media (max-width:768px){
    .toggle-button{
        display:flex;
    }
    .navbar-links{
        display:none;
        width: 100%;
    }
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links ul{
        width: 100%;
        flex-direction: column;
    }
    .navbar-links li{
        text-align: center;
    }
    .navbar-links li a{
        padding:.5rem 1rem;
    }
    .navbar-links.active{
        display:flex;
    }
}
@media (max-width:430px){
    .brand-logo{
        display: none;
    }
}
@media (max-width:350px){
    .brand-title{
        font-size: 1rem;
    }
    .toggle-button{
        top:4.8vh;
    }
    .toggle-button .bar{
        height: 3px;
        width: 80%;
    }
}