/* CSS Document */
@keyframes mainAnim{
	
	from{
		opacity: 0;
/*		transform: translateY(-3%);			*/
	}
	to{
		opacity: 1;
/*		transform: translateY(0%);		*/
	}
	
}


.menu_items{
    display: flex; 
    align-items: center;
	justify-content: space-between;
	width: 60%;
	animation: mainAnim 1s ease-in-out alternate;
}	

.menu_items a{
    margin: 0 10px;
    color: #0a0a0a;
    text-align: left;
	font-weight: bolder;
}	

.has_submenu{
	position: relative;
}

.has_submenu:hover > .sub, .has_submenu:hover .icon_nav_point_container, .header .in .row_2 .sub:hover{
	visibility: visible;
	opacity: 1;
}


.sub{
	border-radius: 2px;
	position: absolute;
	z-index: 97;
	padding: 15px;
	left: 0;
/*	top: 105%;*/
	background: #FFFFFF;
	max-height: calc(100vh - 40px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow: visible;
	border: 1px solid #59b2e4;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
	visibility: hidden;
	opacity: 0;
	transition: opacity .3s 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{
	margin: 0 !important;
	padding: 0 5px !important;
	color: #1b1b1b !important;
	display: flex;
	align-items: center;
}

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

.icon_nav_point_container{
	display: none !important;
	width: 50px;
	height: 12px;
	position:absolute;
	justify-content: center;
	z-index:99;
	visibility: hidden;
	opacity: 0;
	transition: opacity .2s ease-in-out;
}

.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:1300px){
	
	.menu_items{
		display: none;
		padding: 30px;
		flex-direction: column;
		align-items: flex-start;
	}	
	
	.menu_items a{
		margin: 10px 0;
		color: #FFFFFF;
		text-align: left;
	}	
	
	.menu_items a:hover{
		color: #EAA62E;
		text-decoration: none;
	}
	
    .sub{
	
	background: none ;
		top: 0;
		margin-bottom: 10px;
		padding: 10px 0 0 0;
        position: relative;
        left: 0;
        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;
    }
    .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: #FAFAFA;
        display: flex;
        align-items: center;
    }
	
    .has_submenu{margin-top: 10px;
        text-align: left;
    }
	
	.icon_nav_point_container{
		display: none
	}
	
	
	
}

@media screen and (min-width:768px) and (max-width:1024px){
	
	.menu_items{
		padding: 30px;
		flex-direction: column;
		align-items: flex-start;
	}	
	
	.menu_items a{
		margin: 10px 0;
		color: #FFFFFF;
		text-align: left;
	}	
	
	.menu_items a:hover{
		color: #EAA62E;
		text-decoration: none;
	}
	
}