.itcss__items {
	counter-reset: slide;
}

.itcss__item {
	counter-increment: slide;
}



.itcss__item>div {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	font-weight: bold;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateX(100px);
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

.itcss__item_active .itcss__text {
	animation-name: fadeIn;
	animation-duration: 2s;
}

img {
	display: inline-block;
	height: auto;
	max-width: 100%;
}

.itcss__item:nth-child(1) {
	background: linear-gradient(45deg, #085078 10%, #85d8ce 90%);
}

.itcss__item:nth-child(2) {
	background: linear-gradient(45deg, #085078 10%, #85d8ce 90%);
}

.itcss__item:nth-child(3) {
	background: linear-gradient(45deg, #085078 10%, #85d8ce 90%);
}

.itcss__item:nth-child(4) {
	background: linear-gradient(to right, #243B55, #141E30);
}

.itcss__item {
	height: 320px;
	overflow: hidden;
	position: relative;
}

.itcss__item_inner {
	position: absolute;
	left: 8%;
	right: 8%;
	top: 36px;
	bottom: 36px;
	overflow: hidden;
	color: #fff;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.itcss__item_img {
	flex: 0 0 100px;
	max-width: 100px;

}

.itcss__item_testimonial {
	flex: 1 0 0;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.itcss__item_name {
	font-size: 38px;
	font-weight: bold;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.8);
	color: #fff;
}

.itcss__item_post {
	font-size: 18px;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.8);
	display: none;
}

.itcss__item_text {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 35px;
	display: none;
}

@media (min-width: 576px) {
	.itcss__item {
		height: 310px;
	}

	.itcss__item_inner {
		flex-direction: row;
	}

	.itcss__item_testimonial {
		margin-left: 15px;
	}

	.itcss__item_img {
		flex: 0 0 150px;
		max-width: 150px;
		height: 200px;
	}

	.itcss__item_testimonial {
		text-align: left;
	}

	.itcss__item_post,
	.itcss__item_text {
		display: block;
	}
}

.btn {
	display: block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	color: #fff;
	background-color: #F15A22;
	text-decoration: none;
}

.btn:hover {	
	color: #fff;
	background-color: #db511f;
}

@media (max-width: 900px) {
	.itcss__item_name {
		font-size: 28px;
	}
}