a {
	text-decoration: none;
}

a:hover{
	text-decoration: none;
}

ul {
	padding-left: 0;
}
li {
	list-style: none;
}
* {
	box-sizing: border-box;
}
::selection {
	background-color: #EBEBF2;
	color: #83828D;
}

/* ==================================== */
/*		  	  Navigaton Menu
/* ==================================== */

.menu-wrap {
	background-color:rgba(27,163,221, 0.9);
	position: fixed;
	top: 0;
	height: 100%;
	width: 320px;
	margin-left: -320px;
	font-size: 1em;
	font-weight: 700;
	overflow: auto;
	transition: .25s;
	z-index: 10;
	opacity: 0;
}
.menu-show {
	margin-left: 0;
	box-shadow: 4px 2px 15px 1px #B9ADAD;
	opacity: 1;
}
.menu-sidebar {
	margin: 65px 0 0px 10px;
	position: relative;
	top: 70px;
}
.menu-sidebar li {
	padding: 10px 16px 0;
}
.menu-sidebar li > a {
	color: #f3f3f3;
	font-size: 16px;
	position: relative;
	font-family: 'Lato';
}

.menu-sidebar li > a::after {
	content: "";
	display: block;
	height: 0.15em;
	position: absolute;
	top: 100%;
	width: 100%;
	left: 50%;
	transform: translate(-50%);
	/*background-image: linear-gradient(to right, transparent 50.3%, #056e9a 50.3%);*/
	transition: background-position .2s .1s ease-out;
	background-size: 200% auto;
}
.menu-sidebar li > a:hover::after {
	background-position: -100% 0;

}
.menu-sidebar .menu-item-has-children {
	position: relative;
}
.menu-sidebar .menu-item-has-children .sub-menus {
	display: none;
}
.sidebar-menu-arrow::after {
	content: "\f107";
	font-family: 'FontAwesome';
	padding: 10px;
	color: #00567b;
	position: relative;
}
.sidebar-menu-arrow:hover::after {
	cursor: pointer;
	color: #fff;
}
.sidebar-menu-arrow:active::after {
	top: 2px;
}


/*Hamburger Button*/
.toggle-button {
    position: absolute;
    width: 44px;
    height: 40px;
    top: 87px;
    left: 10px;
    padding: 4px;
    transition: .25s;
    z-index: 15;
}
.toggle-button:hover {
	cursor: pointer;
}
.toggle-button .menu-bar {
	position: absolute;
	border-radius: 2px;
	width: 80%;
	transition: .5s;
}
.toggle-button .menu-bar-top {
	border: 4px solid #1ba3dd;
	border-bottom: none;
	top: 0;
}
.toggle-button .menu-bar-middle {
	height: 4px;
	background-color: #1ba3dd;
	margin-top: 7px;
	margin-bottom: 7px;
	top: 4px;
}
.toggle-button .menu-bar-bottom {
	border: 4px solid #1ba3dd;
	border-top: none;
	top: 22px;
}
.button-open {
	left: 260px;
	top:27px;
	position:relaive;
}
.button-open .menu-bar-top {
	border-color: #fff;
	transform: rotate(45deg) translate(8px, 8px);
	transition: .5s;
}
.button-open .menu-bar-middle {
	background-color: #fff;
	transform: translate(230px);
	transition: .1s ease-in;
	opacity: 0;
}
.button-open .menu-bar-bottom {
	border-color: #fff;
	transform: rotate(-45deg) translate(7px, -7px);
	transition: .5s;
}


@media (max-width:991px) {

.toggle-button{
	left:25px;
}

.button-open {
    left: 265px;
}

}

/*-- IPHONE 6 PLUS ---*/
@media (max-width: 420px) {
.toggle-button {
    left: 25px;
}

.button-open {
    left: 265px;
}

}



@media (max-width: 380px) {
.toggle-button {
    left: 25px;
}

.button-open {
    left: 265px;
}

}
