.home-current {
	margin-top: -1px;
	padding: 1px 0 40px;
	background-color: #c8eff8;
}
.home-current .block-item {
	width: calc(33.333% - 12px);
}
@media screen and (max-width: 1050px) {
	.home-current .block-item {
		height: 49vw;
	}
}
@media screen and (max-width: 767px) {
	.home-current .block-item {
		width: 100%;
		height: 118vw;
	}
	.home-current .block-item:not(:last-child) {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

.home-current .block-item:not(:last-child) {
	margin-right: 18px;
}
.home-current .block-item p {
	color: #3e3f44;
}

.home-current .container.center {
	margin-top: 48px;
}
.home-current .container.center .button {
	color: #3E3F44;
	cursor: pointer;
	font-size: 20px;
	line-height: 1.4;

	display: inline-block;
	border: 1px solid #3e3f44;
	padding: 14px 55px 13px 50px;
	background-color: transparent;
}
@media screen and (max-width: 500px) {
	.home-current .container.center .button {
		font-size: 16px;
	}
}
.home-current .container.center .button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: #0092c6;
	transition: .2s;
}
.home-current .container.center .button:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(/static/img/arrow-right-black.svg);
	background-repeat: no-repeat;
	background-position: center right 20px;
	transition-duration: .2s;
}
.home-current .container.center .button span {
	position: relative;
}
.home-current .container.center .button:hover {
	color: #FFF;
	border-color: #0092c6;
	transition: .2s;
}
.home-current .container.center .button:hover:before {
	width: 100%;
}
.home-current .container.center .button:hover:after {
	background-image: url(/static/img/arrow-right-white.svg);
}
