.simple-tabs {
	display: block;
	justify-content: center;
}

@media (min-width: 720px) {
	.simple-tabs {
		display: flex;
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.simple-tabs {
		display: block;
	}
}

.simple-tabs li {
	list-style: none;
	border: 0px none;
	background: transparent;
	font-size: 14px;
	transition: border 0.3s, background-color 0.3s;
	will-change: border-bottom;
	padding: 15px 20px;
	border: 1px solid transparent;
	font-weight: 500;
	margin: 0px;
}

.simple-tabs li:nth-child(2n) {
	margin: 0 40px;
}

.simple-tabs li.active,
.simple-tabs li:hover {
	color: #003963;
	cursor: pointer;
}

@media (min-width: 720px) {
	.menu-mobile-toggle {
		display: none;
	}
}

@media (max-width: 767px) {
	.menu-mobile-toggle {
		display: block;
	}
}

@media (max-width: 767px) {
	.menu-mobile-toggle {
		clear: both;
		float: none;
		margin: 0 auto;
		width: 100%;
		padding: 14px;
		background-color: #df7a1c;
		color: #333333;
		font-size: 14px;
		text-transform: uppercase;
		border-color: rgba(0, 0, 0, 0.1);
	}

	.tab__module {
		width: 100%;
		text-align: center;
	}

	.tab__item {
		text-align: center;
	}
}

.simple-responsive-tab {
	display: block;
	position: relative;
	background-color: #003963;
	color: #fff;
	padding: 12px 0;
	margin-bottom: 5px;
}

.simple-responsive-tab::before {
	right: 100%;
}

.simple-responsive-tab::after {
	left: 100%;
}

.simple-responsive-tab:before,
.simple-responsive-tab:after {
	content: "";
	position: absolute;
	bottom: 0;
	background: #003963;
	width: 100%;
	z-index: 99;
	height: 100%;
	top: 0;
}

@media (min-width: 720px) {
	.simple-responsive-tab {
		display: none;
	}
}

.simple-responsive-tab span {
	position: relative;
	display: block;
	text-transform: uppercase;
	font-size: 14px;
}

.simple-responsive-tab span:after {
	content: "Show +";
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	display: flex;
	align-items: center;
}

.simple-responsive-tab .active-content span:after {
	content: "Hide -";
}