*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.menu{
	top: 10px;
    width: 900px;
    height: 50px;
	left: 210px;
    background: #FF7600;
    display: flex;
    justify-content: space-around;
    align-items: center;
	z-index: 10000000;
    border:3px thin #F28B30;
    border-bottom-left-radius: 40px 40px;
    border-bottom-right-radius: 40px 40px;
    box-shadow: 1px 2px 2px #A36024;
	position: fixed;
}
.Logo{
    color: rgb(44, 44, 44);
    font-size: 1.5em;
}
.nav {
    display: flex;
    align-items: center;
}
.nav ol{
    display: flex;
    list-style: none;
}
.nav ol li{
    margin: 1em;
}
.nav ol li a{
    text-decoration: none;
    padding: 0.2em 1.2em 0.4em 1.2em;
    border-radius: 10px 10px 0 0;
    color: white;
    transition: all .4s;
    position: relative;
    z-index: 1;
	font-size: 1.1em;
	text-shadow: 2px 2px #A04C02
}

.nav ol li a::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    border-radius: 10px 10px 0 0;
    background: #853333;
    transform-origin: bottom;
    background: linear-gradient(to right, #21002A, #260032, #52006A); 
    transform: scaleY(0);
    z-index: -1;
    transition: all .4s;
}
.nav ol li a:hover::before{
    transform: scaleY(1);
}
.nav ol li a:hover{
    color: white;
}

.btn{
    position: relative;
    width: 25px;
    height: 25px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    display: none;
}
.btn::before{
    content: '\f0c9';
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    font-size: 0.5em;
}



@media (max-width: 1200px){
    .btn{
        display: flex;
        z-index: 100;
    }
    .nav{
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        background: #F8F8F8;
        transform: translateY(-110%);
        transition: all .4s;
    }
    input:checked ~ .nav{
        transform: translateY(0%);
    }
    input:checked::before{
        content: '\f00d';
    }
}
@media (max-width: 700px){
    .nav ol{
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 600px){
.menu {display: none}
	 }