.comandcontthree {
 	position: relative;
	overflow: hidden;
	padding: 60px 0;
 }
.comandcontthree-item-wrap{
margin-bottom: 10px;
}
 .comandcontthree-tab__text {
	font-family: Roboto;
	font-size: 18px;
	font-weight: 100;
	color: #000000;
	text-align: center;
 }

 .comandcontthree-tab.comandcontthree-tab-active  .comandcontthree-tab__text {
 	 font-weight: 300;
 }

 .comandcontthree-tabs-wrap {
 	margin-bottom: 40px;
 }

.comandcontthree-tab {
	cursor: pointer;
	margin-bottom: 10px;
}

.comandcontthree-tab:last-child {
	margin-bottom: 0;
}

.comandcontthree-item {
	max-width: 350px;
	margin-bottom: 10px;
}

.comandcontthree-item-img-wrap {
	height: 370px;
	display: flex;
	overflow: hidden;
}

.comandcontthree-item-img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.comandcontthree-item__info {
	padding: 15px 0 15px 30px;
	background-color: #000;
}

.comandcontthree-item__info-job {
	font-family: Roboto;
	font-size: 14px;
	font-weight: 300;
	color: #aeaeae;
	text-transform: uppercase;
}

.comandcontthree-item__info-name {
	font-family: Roboto;
	font-size: 22px;
	font-weight: 500;
	color: #ffffff;
}

@media (min-width: 350px) {
	.comandcontthree-item {
	max-width: unset;
	width: 350px;
	}
	.comandcontthree-item-wrap {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (min-width: 480px) {
	.comandcontthree-item {
		margin: 10px;
	}
}

@media (min-width: 992px) {
	 .comandcontthree {
	padding: 100px 0;
 }
	.comandcontthree-tabs-wrap {
		display: flex;
		justify-content: center;
	}
	.comandcontthree-tab__text {
		display: inline-block;
		padding: 0 20px;
	}
	.comandcontthree-tab__line {
		display: inline-block;
		width: 2px;
		height: 12px;
		background-color: #bababa;
	}
	.comandcontthree-tab:last-child .comandcontthree-tab__line {
		display: none;
	}

}

@media (min-width: 1200px) {
	.comandcontthree-items-wrap {
		max-width: 1050px;
		margin: 0 auto;
	}
	.comandcontthree-item {
		position: relative;
		overflow: hidden;
		height: 454px;
		margin: 0;
	}
	.comandcontthree-item__info {
		position: absolute;
		bottom: 0;
		width: 100%;
		margin-bottom: -120px;
		transition: all 0.5s;
	}
	.comandcontthree-item-img-wrap {
		height: 454px;
		transition: all 1s;
	}
	.comandcontthree-item:hover .comandcontthree-item-img-wrap {
		height: 370px;
	}
	.comandcontthree-item:hover .comandcontthree-item__info {
		margin-bottom: 0;
	}
}