*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
.menu-btn{
	position: absolute;
	top: -7px;
	right: 25px;
	font-size: 40px;
	color: #ffffff;
	cursor: pointer;
	text-transform: uppercase;
}
.menu-btn:hover{
	color: #0D75AC;
}
.close-btn
{
	position: absolute;
	top: 25px;
	right: 25px;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
}
.side-bar
{
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100%;
	overflow-y: auto;
	background: #083D77;
	transition: 0.6s ease;
	transition-property: right;
}
.side-bar.active
{
	right: 0;
}
.side-bar .menu
{
	width: 100%;
	margin-top: 60px;
}
.side-bar .menu .item
{
	cursor: pointer;
	border-top:1px solid #0a498f;
	border-bottom:1px solid #06315f;
}
.side-bar .menu .item:first-child{
border-top:0;
}
.side-bar .menu .item:last-child{
border-bottom:0;
}

.side-bar .menu .item a 
{
	display: flex;
	align-items: center;
	text-decoration: none;
	line-height: 48px;
	color: #fff;
	padding: 4px 28px;
	font-size: 16px;
	font-weight: 500;
}
.side-bar .menu .item a:hover
{
	background: #e97725;
	transition: 0.4s;
}
.side-bar .menu .item i 
{
	margin-right: 14px;
}
.side-bar .menu .item a .dropdown
{
	position: absolute;
	right: 14px;
	transition: 0.4s;
}
.side-bar .menu .item a .dropdown.rotate
{
	transform: rotate(90deg);
}
.side-bar .menu .item .sub-menu
{
	display: none;
	background: rgba(255, 255, 255, 0.1);
}
.side-bar .menu .item .sub-menu a 
{
	padding-left: 60px;
}
.menu-btn i{
	padding-right: 5px;
}
