header h1 {
    color: white;
    font-size: 25px;
    font-weight: normal;
    margin-top: 0px;
}

header ul {
    list-style: none;
    padding: 0;
    justify-content: space-between;
    
}

header ul li {
    color: white;
    border-bottom: dotted 1px;
    font-size: 13px;
    margin: 8px;
    float: left;
}

header {background-color: #7A5353;}

.menu{
    position: fixed;
    height: 65px;
    width: 100%;
    padding: 5px 0px;
    display: flex;
    z-index: 999999;
}

.logo{
    width: auto;
    float: left;
    margin-left: 5%;
    margin-right: auto;
}

.gl_menu{
    width: auto;
    margin-right: 7px;
    position: absolute;
    bottom: 0;
    right: 5px;
}
footer {
    display: block;
    padding-top: 10px;
}

header h1 a {
    display: flex;
    width: 90%;
    margin-top: 8px;
}

header h1 a div {
    display: flex;
    justify-content: center;
    align-items: center;
    width:65%;
}

.company_logo {
    width: 10%;
}

header h1 a div img {
    max-width: 100%;
}

@media only screen and (min-width: 415px) {
    header .logo{
        display: flex;
        align-items: center;
    }
    header h1{
        font-size: 28px;
        margin: auto;
        display: flex;
    }
    .gl_menu{
        right: 30px;
    }
    header h1 a {
        width: 30%;
        margin-top: 0;
    }
}    