.topo .container {
    display: flex;
    justify-content: center;
}

.topo__img{max-width:100%; max-height:450px;}

/*menu*/
.menu {
    display: flex;
    justify-content: center;
	min-height:42px;
    /* background: linear-gradient(180deg, rgba(255,0,0,1) 0%, rgba(124,0,0,1) 100%); */
}

.menu .container {
    padding: 10px;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.menu a {
    color: #fff;
    text-decoration: none;
	font-weight: bold;
    font-size: 14px;
}

@media (max-width: 720px) {
    .menu__item {
        width: 100%;
        text-align: center;
    }
	
	.menu a {padding: 7px 0px;}
}
/*end menu*/

