.menu{
	background-color: #0266B1;
	color: #fff;
	position: relative;
}
.menu:after{
	content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background-color: #0266B1;
    top: 0;
    z-index:-1;
    left: -50%;
}
.menu .li-menu {
	padding: 5px 5px 5px 5px;
	position: relative;
}
.menu .li-menu a{
	font-size: 25px;
	font-family: Tungsten-Medium;
	text-transform: uppercase;
	padding: 5px 10px;
	border: solid 1px;
	border-color: transparent;
	transition: 0.3s;
	position: relative;
	color: rgba(255,255,255,0.7);
}
.menu .li-menu a:focus{
	background-color: transparent;
}
.menu .li-menu a:after,
.menu .li-menu a:before{
	content: '';
    position: absolute;
	border: 1px solid transparent;
    width: 0;
    height: 0;
}
.menu .li-menu a:before{
	top: 0;
    left: 0;
}
.menu .li-menu a:after{
	bottom: 0px;
	right: 0px;
}
.menu .li-menu.active a:before,
.menu .li-menu.active a:after{
	width: 100%;
	height: 100%;
}
.menu .li-menu.active a:before{
	border-top-color: rgba(255,255,255,0.7);
    border-right-color: rgba(255,255,255,0.7);
    transition: width 0.10s ease-out, height 0.10s ease-out 0.10s;
}
.menu .li-menu.active a:after{
	border-bottom-color: rgba(255,255,255,0.7);
    border-left-color: rgba(255,255,255,0.7);
    transition: border-color 0s ease-out 0.20s, width 0.10s ease-out 0.20s, height 0.10s ease-out 0.30s;
}
.section-menu .close-div i{
	display: table;
	margin-right: 10px;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
}
.main-menu .sub-menu .sub-menu-list{
    float: left;
    padding: 15px 8px;
    font-family: PublicoText-Bold;
    font-size: 14px;
	color: #0266B1;
	position: relative;
	transition: 0.3s;
}
.main-menu .sub-menu .sub-menu-list:after{
	content: "";
	position: absolute;
	right: 0px;
	height: 20px;
	width: 1px;
	background-color: #0266B1;
	top: 15px;
	transform: rotate(21deg);
}
.main-menu .sub-menu .sub-menu-list:nth-child(1){
	padding-left: 0px;
}
.main-menu .sub-menu .sub-menu-list:nth-last-child(1){
	padding-right: 0px;
}
.main-menu .sub-menu .sub-menu-list:nth-last-child(1):after{
	display: none;
}
.sub-menu .container{
	padding: 0px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.section-menu{
	background-color: #000;
	position: fixed;
	width: 300px;
	left: -300px;
	top: 0px;
	height: 100%;
	background-color: #fff;
	transition: 0.3s;
	z-index: 100;
}
.section-menu.active{
	left: 0px;
}
.section-menu .header-1{
	height: 83px;
    background-color: #FED200;
    display: flex;
    align-items: center;
    justify-content: center;
	border-right: solid 2px #fff;
}
.section-menu .header-1 img{
	max-width: 100%;
}
.section-menu .close-div{
	width: 100%;
	background-color: #0266B1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 42px;
	border-right: solid 2px #fff;
}
.section-menu .menu-section{
	height: calc(100vh - 83px - 42px);
	display: flex;
    flex-flow: column;
    background-color: #0266B1;
	border-right: solid 2px #fff;
	overflow-y: auto;
}
.section-menu .menu-section .li-menu{
	height: 40px;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0px 10px;
	background-color: #294b82;
	border-top: solid 2px #0266B1;
	position: relative;
	font-size: 16px;
	transition: 0.3s;
}
.section-menu .menu-section .active .li-menu{
	background-color: #e2e2e2;
	color: #294b82;
}
.section-menu .menu-section .li-menu a{
	height: 100%;
	display: flex;
	align-items: center;
}
.section-menu .menu-section .li-menu i{
	display: none;
}
.section-menu .menu-section .has-sub .li-menu i{
	position: absolute;
	height: 100%;
	right: 0px;
	top: 0px;
	display: flex;
	align-items: center;
	width: 40px;
	justify-content: center;
	background-color: #1980ce;
	transition: 0.3s;
	color: #fff;
	cursor: pointer;
}
.menu-section .sub-menu-section a.sub-menu-list{
    background-color: #0266B1;
    color: rgba(255, 255, 255, 0.86);
    padding-left: 20px;
    border-top: solid 1px #1980ce;
    height: 30px;
    align-items: center;
	transition: 0.3s;
	display: flex;
}
.menu-section .sub-menu-section a.sub-menu-list.active{
	background-color: #0b5994;
}
.menu-section .li-menu-outer.active .sub-menu-section{
    display: block;
}
.menu-section .li-menu-outer .sub-menu-section{
	display: none;
}
.menu-section .sub-menu-section a.sub-menu-list:nth-child(1){
    border: none;
}
@media screen and (min-width: 990px){
	.menu .li-menu:hover a:before,
	.menu .li-menu:hover a:after{
		width: 100%;
		height: 100%;
	}
	.menu .li-menu:hover a:before{
		border-top-color: rgba(255,255,255,0.7);
		border-right-color: rgba(255,255,255,0.7);
		transition: width 0.10s ease-out, height 0.10s ease-out 0.10s;
	}
	.menu .li-menu:hover a:after{
		border-bottom-color: rgba(255,255,255,0.7);
		border-left-color: rgba(255,255,255,0.7);
		transition: border-color 0s ease-out 0.20s, width 0.10s ease-out 0.20s, height 0.10s ease-out 0.30s;
	}
	.menu .li-menu a:hover{
		background-color: transparent;
	}
	.main-menu .sub-menu .sub-menu-list:hover{
		color: rgba(2, 102, 177, 0.83);
	}
	.menu-section .sub-menu-section a.sub-menu-list:hover{
		background-color: #0b5994;
	}
	.section-menu .menu-section .li-menu i:hover{
		background-color: #347aaf
	}
	.section-menu .menu-section .li-menu:hover{
		background-color: #e2e2e2;
		color: #294b82;
	}

}
@media screen and (max-width: 990px){
	.menu,
	.header-1 .col-1 .section-header,
	.header-1 .col-3 .header-newspaper,
	.header-1 .col-3 .date-header,
	.header-1 .col-3 .header-weather
	{
		display: none;
	}
	.header-1{
		padding: 10px 10px;
	}
	.header-1 .col-2{
		width: auto;
	}
	.header-1 .col-2 a span:nth-child(1){
		font-size: 35px;
	}
	.header-1 .col-2 a span:nth-child(2){
		font-size: 31px;
	}
	.header-1 .col-1{
		width: auto;
		margin-right: 10px;
	}


.main-menu .sub-menu .sub-menu-list{
    padding: 10px 6px;
    font-family: PublicoText;
    font-size: 12px;
}
.main-menu .sub-menu .sub-menu-list:after{
	height: 16px;
	top: 9px;
}

.sub-menu .container{
	padding: 0px 5px;
}

}
@media screen and (max-width: 769px){

	.header-1{
		padding: 0px 10px;
	}

	.header-1 .col-2{
		justify-content: flex-start;
	}
	.header-1 .col-2 a span:nth-child(1){
		font-size: 18px;
	}
	.header-1 .col-2 a span:nth-child(2){
		font-size: 15px;
		display: flex;
		align-items: flex-end;
		padding-top: 0px;
		padding-bottom: 0px;
		align-items: center;
		margin-top: 6px
	}
	.header-1 .col-3 .search{
		border: 0px;
	}
	.section-menu.active{
		background-color: #0266B1;
	}


.main-menu .sub-menu .sub-menu-list{
    float: none;
	display: inline-block;
    padding: 5px 0px;
	margin: 0px 5px;
    font-size: 10px;
	border-bottom: solid 1px #0266B1;
}
.main-menu .sub-menu .sub-menu-list:after{
	display: none;
}
.main-menu .sub-menu .sub-menu-list:nth-child(1){
	padding-left: 10px;
}
.main-menu .sub-menu .sub-menu-list:nth-last-child(1){
	padding-right: 10px;
}
.main-menu .sub-menu .sub-menu-list:nth-last-child(1):after{
	display: none;
}
.sub-menu .container{
	padding: 0px 0px;
	display: block;
}

}
