.widget-area .widget {
    margin-bottom: 40px;
    padding: 35px 30px 35px;
    background-color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
    background: #09132C;
}
.widget-area .widget h2 {
    position: relative;
    font-size: 20px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 600;
}
.widget-area .widget h2::before{
	content: '';
	position: absolute;
	height: 3px;
	width: 88px;
	bottom: -11px;
	background: #aec6ef;
}
.widget-area .widget h2::after{
	content: '';
	position: absolute;
	height: 8px;
	width: 8px;
	bottom: -13px;
	left: 0;
	border-radius: 50%;
	background-color: #0C5ADB;
	-webkit-animation: MOVE-BG 3s linear infinite alternate;
	-moz-animation: MOVE-BG 3s linear infinite alternate;
	-o-animation: MOVE-BG 3s linear infinite alternate;
	animation: MOVE-BG 3s linear infinite alternate;
}
@-webkit-keyframes MOVE-BG {
	from {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(88px);
		transform: translateX(88px);
	}
}
@keyframes MOVE-BG {
	from {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(88px);
		transform: translateX(88px);
	}
}
.widget-area .widget ul,
.widget-area .widget ol{
	margin: 0;
	padding: 0;
	list-style: none;
}
.widget-area .widget ul li a,
.widget-area .widget ol li a{
	color: #828fa0;
}
.widget-area .widget ul li a:hover,
.widget-area .widget ol li a:hover{
	color: #0C5ADB;
}
.blog-details .blog-content .entry-content p {
    color: #828fa0;
}

blockquote {
    margin: 35px  15px  35px;
    background: #0F1E32;
    padding: 30px 30px 15px;
    /* box-shadow: 0 0 5px; */
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    font-size: 21px;
}
.logged-in-as,
.logged-in-as a {
    color: #828fa0;
}
li.cat-item {
    margin: 8px 0px;
}














