*{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@font-face {
    font-family: 'DanmarkURWlight';
    src: url('Fonts/Fontspring-DEMO-danmarkurw-lig.otf')
}
.title-bar{
    background-color: #E9E6DE;
    color: #80496B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-family: Arial, sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 20px;
}
.title-bar .left{
    display: flex;
    align-items: center;
    padding-left: 0px;
}
.title-bar .right{
    display: flex;
    align-items: center;
    padding-right: 50px;
}
.title-bar .left span{
    margin-left: 30px;
    display: flex;
    align-items: center;
}
.title-bar .left span img{
    display: inline-block;
}
.title-bar .left span a{
    display: inline-block;
    color: #80496B;
    text-decoration: none;
    margin-left: 3px;
}
.title-bar .right a{
    color: #80496B;
    text-decoration: none;
    margin-left: 15px;
}
.fa.fa-phone {
    margin-right: 5px;
}
.fa.fa-envelope {
    margin-right: 5px;
}

.logo {
    width: 500px;
}
.body {
    margin-top: 200px;
    background-color: #ebe6d1;
}
.promotions-bar{
    background-color: #f5f1e9;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-family: Arial, sans-serif;
    position: fixed;
    width: 100%;
    z-index: 998;
    height: 40px;
}










.menu-button{
    display: none;
}

@media(max-width: 1035px){
    .hideOnMobile{
        display: none;
    }
    .menu-button{
        display: block;
    }
    .logo {
        width: 300px;
    }
    nav li {
        height: 100px;
    }
}
@media(max-width: 400px){
    .sidebar-menu{
        width: 100%;
    }
}
.hideOnMobile:hover{
    background-color:#b3a16d;
    color: black;
    height: 40px;
}