.care-pictures {

}
.care-picture-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: 564px;
	height: 100%;
	margin-bottom: 15px;
	overflow: hidden;
}
.care-picture-wrap > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.care-tabs {
	margin-top: 82px;
	margin-bottom: 69px;
}
.care-tab-wrapper {
	/* display: flex;
	justify-content: space-around; */
	margin-bottom: 15px;
}
.care-tab {
	display: block;
	width: 100%;
	/* margin: 0 15px; */
	padding: 20px 0;
	border: 3px solid #000;
	border-radius: 10px;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	color: #434343;
	background-color: #fff;
	transition: color .3s, background-color .3s;
}
.care-tab:focus {
	text-decoration: none;
}
.care-tab.active {
	color: #fff;
	background-color: #000;
}
.care-content {
	display: none;
}
.care-content.active {
	display: block;
}

@media screen and (max-width: 1199px) {
	.care-picture-wrap {
		max-height: 467px;
	}
}

@media screen and (max-width: 991px) {
	.care-tabs {
		margin-bottom: 66px;
	}
	.care-picture-wrap[class*="col-"] {
		max-height: 375px;
		padding-right: 10px;
		padding-left: 10px;
	}
	.care-tab-wrapper[class*="col-"] {
		padding-right: 10px;
		padding-left: 10px;
	}
}

@media screen and (max-width: 768px) {
	.care-picture-wrap {
		height: 70vw;
	}
	.care-tabs {
		margin-top: 50px;
	}
	.care-tab {
		padding: 16px 0;
		font-size: 15px;
	}
}