* {
	box-sizing: border-box;
}

.cb {
  clear: both;
}

.container {	
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 1140px;	
}

.container_item_left {
	float: left;	
	max-width: 150px;	
    }
	
.container_item_middle {
	float: left;	
	width: 88%;
    }
	
.container_item_right {
	float: left;
	max-width: 150px;
    }

.container img {
	max-height: 60px;
	padding: 0;		
	}

.collapsible_content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all .3s linear;
}

.collapsible--expanded .collapsible_content{
	max-height: 100vh;
	opacity: 1;
}

.collapsible--expanded .menu_icon{
	box-shadow: 0 0 3px 2px black;
	border-radius: 5px;
}

.menu {    
    background-color: rgb(255,255,255,1);
	border-top: 1px solid #751b1b;
	border-bottom: 1px solid #751b1b;	
	margin-left: auto;
	margin-right: auto;	
	width: 90%;    
}

.menu_icon {
	color: black;
	font-size: 1.2rem; 
	border: 1px solid black;
	padding: .5rem 1.5rem;
	border-radius: 3px;
	margin: 1rem;
	margin-left: 2rem;
	cursor: pointer;
	opacity: 0.5;
	transition: all .3s linear;	
}

.menu_items {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	padding: 0;
	row-gap: 1.6rem;
	opacity: 1;
}

.menu_link {
	color: black;
	font-family: "Lato", sans-serif;
	font-size: 24px;
	text-decoration: none;
	text-transform: uppercase;
}

.menu_last_element {
	padding-bottom: 2rem;
}

@media screen and (max-width: 500px) {
 .container img {
	max-height: 35px;
	padding-top: 15px;
	}
}

@media screen and (min-width: 900px) {
   .menu {
	   background-color: rgb(255,255,255,1);
   }
   .menu_items {
	   box-sizing: border-box;
	   column-gap: 1.5rem;
	   flex-direction: row;
	   justify-content: center;
	   max-height: 100%;
	   opacity: 1;
	   padding: 10px 0;
   }
   li.menu_item {
	   text-align: center;
	   width: 16%;	   
   }
   .menu_last_element {
	   padding-bottom: 0;
   }
   .menu_icon {
	   display: none;
   }
}