.img-with-content {
	padding: 10px 0 10px;
}

.img-with-content .wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.img-with-content .item {
	position: relative;
} 

.img-with-content .one .item {
	width: 100%;
}

.img-with-content .two .item {
	width: calc(50% - 5px);
}

.img-with-content .three .item {
	width: calc(33.33% - 6.66666666667px);
}

.img-with-content .four .item {
	width: calc(25% - 7.5px);
}

.img-with-content .content {
	position: absolute;
	top: 30px;
	left: 30px;
}

.img-with-content .content h3{
	/*   font-size: 20.8px; */
	font-size: 1.3em;
	margin-bottom: 15px;
}

.img-with-content .item a:hover {
	opacity: .8;
	text-decoration: underline;
}

.img-with-content .content h3,
.img-with-content .content h4{
	font-weight: 400;
}

.img-with-content .item i {
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 0;
	color: #fff;
	background: #2379ac;
	font-size: 1.5em;
	line-height: 1;
	padding: 5px 10px;
	width: 35px;
}

@media(max-width: 767px){
	.img-with-content .one .item,
	.img-with-content .two .item,
	.img-with-content .three .item,
	.img-with-content .four .item,
	.img-with-content .item {
		width: 100%;
	}

