/*
Theme Name: Bootscore

Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/

/*
body {
	direction: rtl;
	unicode-bidi: embed;
}
*/



/* About Block */
.about .card {
	padding: 15px;
	border-radius: 5px;
	background: white;
	box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, .1);
}

.about .card-title {
	color: #24554C;
	font-size: 16px;
	line-height: 150%;
}

.about .card-text {
	font-size: 12px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

/* About Block */


/* Articles Block */
.blogs {
	.card {
		border-radius: 0;
	}

	.img-card {
		height: 80px;
	}

	.img-card img {
		margin-top: -80px;
	}

	.card-text {
		font-size: 11px;
		color: #909090;
	}

	.card-title {
		font-size: 13px;
		font-weight: bold;
		line-height: 1.8;
	}

}

/* Articles Block */