/* ================================================== */
/* Big Tabs Section ================================= */
/* ================================================== */

.tabsSection {
	border: #003e7e solid 1px;
}

.tabsSection .tabButtonGrid {
	display: flex;
	flex-flow: row nowrap;
}

.tabsSection .tabButton {
	flex: 1 1 0px;
	padding: 15px;
	background-color: #003e7e;
	color: white;
	font-weight: 700;
	font-size: 20px;
	transition: background-color .3s, color .3s;
	white-space: normal;
	line-height: normal;
	border-left: 1px solid white;
	margin: 0;
	border-radius: 0;
}
.tabsSection .tabButton:first-child {
	border-left: none;
}
.tabsSection .tabButton:hover {
	background-color: #00254B;
}
.tabsSection .tabButton.active {
	transition: none;
	background-color: #fff;
	color: #003e7e;
}

.tabsSection .tabContent {
	padding: 30px 35px 10px;
}

@media (max-width: 767px) {
	.tabsSection .tabButtonGrid {
		flex-flow: column nowrap;
	}
	.tabsSection .tabButton {
		border-left: none;
		border-top: 1px solid white;
	}
	.tabsSection .tabButton:first-child {
		border-top: none;
	}
	.tabsSection .tabContent {
		padding: 25px 20px 0px;
	}
}

/* ================================================== */
/* ================================================== */
