.tabs {
	width: 100%;
	max-width: 1000px;
	margin: 50px auto;
}

.tab-header {
	display: flex;
	flex-wrap: wrap;
}

.tab-button {
	margin: 5px 5px;
	flex-grow: 1;
	background-color: #ccc;
	border: 0px solid #990a0a;
	color: #990a0a;
	font-size: 15px;
	font-weight: 600;
	padding: 10px;
	cursor: pointer;
	text-align: center;
	box-sizing: border-box;
	transition-duration: 0.2s;
	transition-timing-function: linear;
}

.tab-button:hover {
	color: #ccc;
	background-color: #990a0a;
}

.tab-button.active {
	background-color: #990a0a;
	color: white;
}

.tab-content {
	border-top: none;
	font-size: 17px;
	font-weight: 300;
	line-height: 30px;
	padding: 30px 20px 20px 20px;
}

.tab-content img {
	float: left;
	display: block;
	max-width: 350px;
	margin-right: 20px;
	margin-bottom: 20px;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
}

@media (max-width: 770px) {
	.tab-content {
		font-size: 16px;
}

.tab-content img {
	float: none;
	max-width: 100%;
	margin: 0 auto;
	text-align: center;
}