  .tabs .nav-tabs {
    margin-top: 10px;
    border-bottom: none;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

/* full-width bottom border */
.tabs .nav-tabs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ececec;
    z-index: -1;
}

/* equal width tabs */
.tabs .nav-tabs .nav-item {
    flex: 1 1 auto;
    max-width: 324px;
    text-align: center;
}

.tabs .nav-tabs .nav-link {
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    color: #000;
    padding: 12px 20px 8px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
}

.tabs .nav-tabs .nav-link.active,
.tabs .nav-tabs .nav-link:hover {
    color: #003594;
}

/* full-width stacked tabs (mobile and tablet) */
@media (max-width: 991px) {
	.tabs .nav-tabs {
		flex-direction: column;
		align-items: stretch;
	}

	.tabs .nav-tabs .nav-item {
		width: 100%;
		max-width: none;
		border-bottom: 4px solid #ececec;
	}

	.tabs .nav-tabs .nav-link {
		border-width: 0 0 4px 0;
		border-style: none none solid none;
		border-color: transparent;
		margin-bottom: -4px;
	}

	.tabs .nav-tabs .nav-link.active,
	.tabs .nav-tabs .nav-link:hover {
		background-color: #003594;
		color: #fff;
	}

	.tabs .nav-tabs::after {
		display: none;
	}
}

.tabs .tab-content {
	padding: 20px 10px;
}