/* Homepage specific styling goes here. Excluded on all subpages */
/* For most builds, this stylesheet should be wiped and started fresh */

.menu_overlay{
	background-color: var(--primary-color);
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	transition: all 0.6s ease;
}

.menu_overlay.close{
	opacity: 0;
	pointer-events: none;
}

.overlay_head{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 50px 30px 30px 0;
}

.menus_wrapper{
	padding-left: 9%;
	margin-top: 5%;
}

.overlay_menu_big a{
	font-size: 28px;
	color: #fff;
}

.overlay_menu_small a{
	font-size: 20px;
	color: #fff;
}

.overlay_menu_big a:hover,
.overlay_menu_big a:focus,
.overlay_menu_small a:hover,
.overlay_menu_small a:focus{
	color: #ff6b92 !important;
}

.overlay_close{
	background-color: var(--secondary-color);
}

.overlay_close:hover,
.overlay_close:focus{
	background-color: #fff;
	color: var(--primary-color) !important;
}

@media screen and (min-width:769px){

	.overlay_head{
		padding: 50px 50px 30px 0;
	}

	.overlay_menu_big a{
		font-size: 36px;
	}
	
	.overlay_menu_small a{
		font-size: 24px;
	}

	.menus_wrapper{
		padding-left: 17%;
	}
}

@media screen and (min-width: 280px) and (max-width: 767px) {

.overlay_close {
	background-color: red;
}

}
