.homepage_block {
	display: flex;
	flex-flow: row wrap;
	/* justify-content: space-between; */
	gap: 61px;
	margin-bottom: 100px;
}
.home_box {
	flex: 0 0 386px;
	min-height: 300px;
	background-color: #ccc;
	position: relative;
}
.home_box:before {
	content: '';
	display: block;
	background-color: black;
	width: 100%;
	height: 100%;
	opacity: .6;
	position: absolute;
}
.btn {
	position: absolute;
	bottom: -40px;
	right: 0;
}
.box_content {
	padding: 30px;
	color: white;
	position: absolute;
}
.box_content h2 {
	font-size: 28px;
}
.home_box img {
	position: absolute;
	bottom: -75px;
	left: -10px;
	z-index: 1;
	max-height: 130px;
  max-width: 235px;
  object-fit: contain;
}
@media only screen and (max-width: 1419px) {
  .home_box {
  	 flex-basis: 32%;
  }
  .home_box img {
		bottom: -60px;
	}
}
@media only screen and (max-width: 1199px) {
	.home_box {
		min-height: 191px;
	}
	.home_box img {
		max-width: 120px;
		max-height: 70px;
		bottom: -40px;
	  left: 40px;
	}
	.box_content {
		padding: 15px;
	}
	.box_content h2 {
		font-size: 20px;
		margin-bottom: .2em;
	}
	.box_content p {
		font-size: 14px;
	}
	.btn {
		bottom: -39px;
	}
}
@media only screen and (max-width: 999px) {
	.home_box img {
		bottom: -60px;
		left: 0;
	}
}
@media only screen and (min-width: 730px) and (max-width: 1200px) {
	.cms-index-index .main-container {
	    width: 100%;
	}
}
@media only screen and (max-width: 729px) {
	.homepage_block {
		display: block;
	}
	.home_box {
		flex: 0 1 320px;
		min-height: 220px;
		margin-bottom: 100px;
	}
	.box_content {
		padding: 30px;
	}
	.home_box img {
		bottom: -60px;
		left: 10px;
		max-width: 170px;
		max-height: 105px;
	}
}
@media only screen and (max-width: 369px) {
	.home_box img {
		width: 50%;
	}
}