/* the news */
/* the news > carousel */
#section-news .owl-stage {
  display: flex;
  height: unset;
}
#section-news .owl-item {
  display: flex;
}
#section-news .owl-nav {
	width: 100%;
	position: absolute;
	top: 50%;
}
#section-news .owl-prev:focus,
#section-news .owl-next:focus {
	outline: 0;
}
#section-news .owl-prev:focus,
#section-news .owl-next:focus {
	outline: 0;
}
#section-news .owl-prev i,
#section-news .owl-next i {
	font-size: 1.5rem;
	color: rgb(187, 187, 187);
	transition: all .3s ease-out;
}
#section-news .owl-prev:hover i,
#section-news .owl-next:hover i {
	color: rgb(91, 91, 91);
	transform: scale(120%);
}
#section-news .owl-prev {
	position: absolute;
	left: -30px;
}
#section-news .owl-next{
	position: absolute;
	right: -30px;
}
/* the news > cards */
#section-news .card {
	padding: 0;
	border-radius: 5px;
	overflow: hidden;
}
#section-news .card p {
	margin-bottom: 15px;
	font-size: 1rem;
	line-height: 1.6rem;
}
#section-news .card a {
	display: flex;
	color: black;
	border: none;
	justify-content: center;
}
#section-news .card .card-img {
	max-height: 200px;
	overflow: hidden;
	border-radius: 0;
}
#section-news .card .card-body {
	/* padding: 10px 20px 20px 20px; */
}
#section-news .card h2.card-title {
	margin-bottom: 20px;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 1.15rem;
	font-weight: 800;
}
#section-news .card h2.card-title:before {
	display: none;
}



.share-icons-container {
	margin-top: -5px;
	margin-right: -18px;
	cursor: pointer;
	border-radius: 4px 4px 0 0;
	position: relative;
	float: right;
	font-size: 1.25rem;
	transition: all .1s ease-out;
}
.share-icons-open {
	width: 34px;
	padding: 3px 8px 1px;
}
.share-icons-container:hover {
	background-color: rgba(95, 95, 95, .95);
	background-color: rgba(0 ,123, 255, .95);
	color: rgba(255 ,255, 255, .75);
}
.share-icons-container .share-icons {
	padding: .25rem .5rem;
	border-radius: 0px 0 4px 4px;
	position: absolute;
	z-index: 1;
	right: 0;
	width: 34px;
	height: 0;
	overflow: hidden; 
	transition: all .1s ease-out;
}
.share-icons-container:hover .share-icons {
	background-color: rgba(95, 95, 95, .95);
	background-color: rgba(0 ,123, 255, .95);
	color: white;
	height: 100px;
	overflow: visible; 
}
.share-icons-container .share-icons .st-custom-button {
	color: rgba(255 ,255, 255, .55);
	transition: all .1s ease-out;
}
.share-icons-container .share-icons .st-custom-button:hover {
	color: white;
}