.button_container {
	position: fixed;
    width: 65px;
    height: 47px;
    z-index: 9999;
    right: 0px;
    top: 0px;
    cursor: pointer;
    -webkit-transition: opacity .25s;
    transition: opacity .25s;
    background: #20378d;
    padding-left: 15px;     border-bottom-left-radius: 10px;
}
.button_container span {
	width: 33px;
	height: 2px;
	position: absolute;
	background: #fff;
	transition: all .35s ease;
	/* border-bottom: 1px solid #000; */
	margin-top: 10px;
}
.top {
	top: 0px;
}
.button_container:hover .top {
	top: 2px;
}
.button_container.active:hover .top {
	top: 0px
}
.middle {
	top: 10px;
}
.bottom {
	top: 20px;
}
.button_container:hover .bottom {
	top: 18px;
}
.button_container.active:hover .bottom {
	top: 20px;
}
.button_container.active .top {
	-webkit-transform: translateY(10px) translateX(0) rotate(45deg);
	transform: translateY(10px) translateX(0) rotate(45deg);
	background: white;
}
.button_container.active .middle {
	opacity: 0;
}
.button_container.active .bottom {
	-webkit-transform: translateY(-10px) translateX(0) rotate(-45deg);
	transform: translateY(-10px) translateX(0) rotate(-45deg);
	background: white;
}
.button_container.active {
	/* right: 19px; */
}
.overlay {
	position: fixed;
	background-size: cover;
	visibility: hidden;
	width: 100%;
	height: 0%;
	background: rgb(32,55,141);
background: linear-gradient(98deg, rgba(32,55,141,1) 0%, rgba(50,84,210,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d93f44', endColorstr='#aa1d21', GradientType=1 );
	left: 0px;
	top: 0px;
	opacity: 0;
	overflow-y: hidden;
	-webkit-transition: opacity .35s, height .35s, visibility .35s;
	transition: opacity .35s, height .35s, visibility .35s;
	z-index: 1;
}
.overlay.open {
	height: 100%;
	opacity: 10;
	visibility: visible;
	z-index: 99;
}
.cntrz {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	height: 100%;
	width: 100%;
	z-index: 1;
}
.menu_main {
	text-align: right;
}
.menu_main li {
	font-size: 18px;
	line-height: 49px;
	color: #ffffff;
	border-right: 1px solid #4e54d4;
	padding-right: 21px;
}

.menu_main li a {
	   color: #899be2;
	   text-transform: uppercase;
	   font-size: 23px;
	   letter-spacing: 1px;
	   font-weight: 100;
}

 .menu_main li a i {  
 	 color: #99abed;
 }

.menu_main li a:hover {
	color:#647ee5;
}

.active_menu {
	color:white !important;
}


.menu_address p {
	line-height: 34px;
    color: #899be2;
    margin-top: 8px;
	    font-size: 19px; font-family: 'Roboto', sans-serif;

}
.menu_address p i{ color:#99abed;;}

.menu_address p a {
    color: #899be2;

}


.menu_address p a:hover {
    color: #fff;

}















