.dsp-article {
}
.dsp-article .profile-box {
	display: flex;
	column-gap: 40px;
}
.dsp-article .profile-box p {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 5px;
	padding-bottom: 0px;
}
.dsp-article .profile-box .profile-pic-box {
	width: 30%;
	max-width: 180px;
}
.dsp-article .profile-box .profile-pic {
	position: relative;
	width: 175px;
	height: 175px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 50%;
	display: block;
	box-shadow: 0px 2px 18px 0px rgba(0,0,0,0.2);
}
.dsp-article .profile-box .profile-pic img {
	display: none;
}
.dsp-social-links {
	display: flex;
	column-gap: 10px;
	margin-top: 20px;
}



@media only screen and (max-width: 1300px){
.article .blog-left-side-filter {
	width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
    position: initial;
    height: auto;
}
.article .course-right-side{
	width: 100%;
	margin-left:0;
}
}
.blog-post-author{
	background: rgb(8 126 181 / 63%);
    position: absolute;
    bottom: 10px;
    right: 0px;
    padding: 0 10px;
    color: white;
	font-size: 18px;
}
.blogs-container {
	display: flex;
    flex-direction: column;
    align-items: initial;
}
.blogs-container .filter-checkbox input[type="checkbox"]{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	cursor: pointer;
}


.blogs-container .filter-checkbox input[type=checkbox] ~ label, .blogs-container .filter-checkbox input[type=checkbox] ~ span {
	opacity:0.8;
	cursor:pointer;
}

.blogs-container .filter-checkbox input[type=checkbox]:checked ~ label, .blogs-container .filter-checkbox input[type=checkbox]:checked ~ span  {
	opacity:1;
}

.blog-boxes {
	position:relative;
}

.blog-boxes #loading {
    color: #333;
    position: absolute;
    font-size: 50px;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: none;
    background: rgba(255,255,255,0.49804);
    z-index: 2;
}
.blog-boxes #loading i {
    margin: 13% auto;
    display: block;
    width: 69px;
}

.blog-box-list {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.blogs-section {
    flex-direction: row;
    flex-wrap: wrap;
    place-content: flex-start;
    display: grid;
    align-items: stretch;
    grid-template-columns: repeat(3,minmax(200px,1fr));
    grid-column-gap: 20px;
    /*grid-row-gap: 20px;*/
}
.blog-article {
    padding: 10px;
    vertical-align: top;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: center;
    background: #fff;
    border-radius: 5px;
	position:relative;
	margin-bottom: 20px;
}
.blog-post-meta {
	margin-top: 10px;
	font-size: 12px;
	display: block;
}

.blog-post-meta-item {
	display: inline-block;
    width: 50%;
    float: left;
}
.blog-post-meta-item:last-child {
padding-right: 5px;
    text-align: right;
	}
.blog-article-content {
	width: 100%;
}
.blog-article-content .grid-content-image {
	position:relative;
}
.blog-article-content .blog-info {
}

.blog-box-list .filter-bar,
.blog-box-list .pagination {
	width:100%;
}
.blog-box-list .filter-bar {
	display:none;
}

.blog-box-list .filter-bar:nth-of-type(1) {
	display:block;
}
.blog-tags {
    width: 100%;
    display: block;
	margin-top:7px;
}

.blog-categories a, .blog-tags a{
	color: white;
    background: #fd962f;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 10px;
}
.blog-article-content .blog-title{
    margin-bottom: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 80px;
    width: 100%; 
    overflow: hidden;
}

.blog-date {
	position: absolute;
    top: 0px;
    left: 10px;
    font-size: 16px;
    color: white;
    background-color: rgba(8,126,181, 0.63);
    padding: 10px 24px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    line-height: 1.25;
	text-align:center;
}
.blog-date span{
	display:block;
}
.blog-date span:nth-child(2){
	font-size: 30px;
}
.grid-content-image{
	margin-bottom: 10px;
}
@media screen and (max-width: 992px) {
	.blogs-section{
		grid-template-columns: repeat(2,minmax(200px,1fr));
	}
}
@media screen and (max-width: 500px) {
	.blogs-section{
		grid-template-columns: repeat(1,minmax(200px,1fr));
	}
}
.blog-left-side-filter .form-group .row-title,.blog-left-side-filter .filter-data ul{
	text-align: left;
}