/* CSS Document */

.menu_items{
    display: flex; 
    align-items: center;
}	

.has_submenu{
	position: relative;
}

.has_submenu:hover > .sub, .has_submenu:hover {
	visibility: visible;
	opacity: 1;
}


.sub{
	position: absolute;
	background-color: white;
	z-index: 97;
	padding: 10px;
	left: 15px;
	top: 28px;
	max-height: calc(100vh - 40px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow: visible;
/*	border: 1px solid #fde7b1;*/
	border-radius: 10px;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0 0 0 0px rgb(0 0 0 / 10%), 0 0 10px rgb(0 0 0 / 10%);
	transition: opacity .2s ease-in-out;
}
.sub li{
	list-style: none;
	line-height: 40px;
	font-size: 15px;
	font-weight: bolder;
	white-space: nowrap;
	transition: color 0.3s ease;
}
.sub a{
	color: #0a0a0a;
	display: flex;
	align-items: center;
}


.sub a:hover{
	text-decoration: underline;
	color: #f84f5c;
}

.sub li a span{
	font-size: 16px;
}


.icon_nav_point{
	width: 18px;
	height: 18px;
	border-top: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
	background: white;
	transform: rotate(45deg);
}

.icon_arrow_down{
	width:12px;
	height:8px;
}


@media only screen and (max-width:767px){
	
	.menu_items{
		flex-direction: column;
		align-items: flex-start;
		margin: 40px 0;
	}	
	
	.menu_items a{
		margin: 5px 0;
		color: #0a0a0a;
		text-align: left;
		font-size: 30px;
		font-weight: 700;
		text-transform: uppercase;
	}	
	
	.menu_items a:hover{
		color: #EAA62E;
		text-decoration: none;
	}
	
    .sub{
		background-color: #ffffff;
		padding: 0;
		margin-bottom: 50px;
        position: relative;
        left: 0;
        top: 25px;
        max-height: calc(100vh - 40px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: visible;
        border: 0;
        filter:none;
        visibility:visible;
        opacity: 1;
        transition: opacity .2s ease-in-out;
		box-shadow: none;
    }
    .sub li{
        list-style: none;
        line-height: 40px;
        font-size: 15px;
        font-weight: bolder;
        white-space: nowrap;
        transition: color 0.3s ease;
    }
    .sub a{
		margin: 0;
        color: #0a0a0a;
        display: flex;
        align-items: center;
    }
	
    .has_submenu{
        text-align: left;
    }
	

	
	
	
}
