.case-detail-block {
/*	display: block;
	width: 100%;
	max-width: 780px;
	margin: 0 auto;*/
	background-color: #fff;
}
.case-detail-block .header {
	position: relative;
	height: 400px;
	padding: 0 60px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	text-align: center;
	background: no-repeat center / cover;
}
.case-detail-block .header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(170, 0, 0, .35);
}
.case-detail-block .header .case-title {
	position: relative;
	color: #fff;
	font-family: "GothamPro";
	font-size: 30px;
	font-weight: 900;
	line-height: 36px;
	text-transform: uppercase;
}



.case-detail-block .body {
	color: #555859;
}
.case-detail-block .body .title {
	color: #4c4c4c;
	font-family: "GothamPro";
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
}
.case-detail-block .body .content {
	font-size: 14px;
}
.case-detail-block .body .tasks a,
.case-detail-block .body .process a {
    color: #e82517;
}
.case-detail-block .body .tasks {
	padding: 20px 60px 10px;
	background:
		linear-gradient(#f3eeee,#f3eeee) repeat-y left / 230px 100%,
		linear-gradient(#f7f6f6, #f7f6f6) repeat-y 230px / 230px 100%
		#fcf8f8;
}
.case-detail-block .body .tasks .content {
	display: grid;
	grid-column-gap: 20px;
	grid-template-columns: 1fr 1fr;
}

.case-detail-block .body .process {
	padding: 30px 60px;
}

.case-detail-block .body .result {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: 1fr 1fr;
	padding: 0 60px;
	background: linear-gradient(to right, #e31a0b 50%, transparent 50%);
}
.case-detail-block .body .result .info {
	padding: 30px 0 10px;
	color: #fff;
}
.case-detail-block .body .result .info .title {
	color: #fff;
}

.case-detail-block .body .result .order {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
.case-detail-block .body .result .order .text {
	margin-top: 10px;
	color: #555859;
	font-size: 14px;
}


.case-detail-block .footer {
	padding: 0 60px;
	background: linear-gradient(#f0392b,#f0392b) repeat-y left / 200px 100% #e82517;
}

.case-detail-block .footer .result-items {
	min-height: 200px;
	color: #fff;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
/* 	justify-content: space-evenly; */
	justify-content: space-between;
}

.case-detail-block .footer .result-items .item {
/* 	width: 25%; */
	padding: 20px 0;
	text-align: center;
}
.case-detail-block .footer .result-items .item .icon {
	width: 52px;
	height: 52px;
	margin: 0 auto;
	background: no-repeat center / contain;
}
.case-detail-block .footer .result-items .item:nth-child(1) .icon {
	background-image: url(../img/content/cases/full/icons/icon1.svg);
}
.case-detail-block .footer .result-items .item:nth-child(2) .icon {
	background-image: url(../img/content/cases/full/icons/icon2.svg);
}
.case-detail-block .footer .result-items .item:nth-child(3) .icon {
	background-image: url(../img/content/cases/full/icons/icon3.svg);
}
.case-detail-block .footer .result-items .item:nth-child(4) .icon {
	background-image: url(../img/content/cases/full/icons/icon4.svg);
}
.case-detail-block .footer .result-items .item .title {
	margin-top: 15px;
	font-family: "GothamPro";
	font-size: 20px;
	font-weight: 700;
}
.case-detail-block .footer .result-items .item .text {
	margin-top: 5px;
	font-size: 12px;
}


@media (max-width: 767px) {
	.case-detail-block .footer .result-items .item {
		width: 50%;
	}
}
@media (max-width: 575px) {
	.case-detail-block .header,
	.case-detail-block .body .tasks,
	.case-detail-block .body .process,
	.case-detail-block .body .result,
	.case-detail-block .footer {
		padding-left: 20px;
		padding-right: 20px;
	}
	.case-detail-block .header {
		height: 300px;
	}
	.case-detail-block .header .case-title {
		font-size: 24px;
	}
	.case-detail-block .body .tasks .content {
		display: block;
	}
	.case-detail-block .body .result {
		grid-template-rows: 1fr 1fr;
		grid-template-columns: none;
		background: linear-gradient(to bottom, #e31a0b 50%, transparent 50%);
	}
}
