header{
    position: fixed;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    width: 100vw;
    z-index: 1;
    opacity: .95;
	border-bottom: solid 2px #f0f0f0;
}

.menu {
    width: 70%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu .logo img{
    width: 200px;
    margin-right: 20px;
}

.menu ul{
    list-style: none;
}

.menu ul li {
    display: inline;
    margin: 20px;
}

.menu ul li a {
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 500;
	color: #4A5F5C;
}

.menu ul li a:hover{
    color: #919191;
	text-decoration: underline;
}

button.btn{
    cursor: pointer;
    background: white;
    border: solid .5px #ccc;
    padding: 15px 25px;
    border-radius: 30px;
    color: #ccc;
    font-size: 16px;
}

button.btn.green{
    color: white;
    background: #4A5F5C;
    border: solid 2px #4A5F5C;
}

button.btn.green:hover{
    color: #4A5F5C;
    background: white;
    border: solid 2px #4A5F5C;
    transition: .3s;
}

.material-symbols-outlined.menu-mobile{
    display: none;
    font-size: 35px;
    color: #4A5F5C;
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    .menu {
        position: relative;
        width: 100vw;
        padding: 30px;
    }
    .menu ul {
        list-style: none;
        position: absolute;
        display: none;
        top: 100%;
        left: 0;
        background-color: #4A5F5C;
        width: 100vw;
        margin: 0;
        text-align: center;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a{
        color: white;
    }

    .material-symbols-outlined.menu-mobile{
        display: block;
        font-size: 35px;
        color: #4A5F5C;
        cursor: pointer;
    }

    .visible{
        display: block !important;
    }
}