.about-us .banner img{
	max-height: 600px;
	width: 100%;
	transition: opacity 0.3s ease;
  	opacity: 1;
  	min-height: 210px;
}

.about-us .banner img.fade {
  opacity: 0;
}

.tab-button-wrap {
	background-color: #292929;
    padding: 25px 0;
    position: relative;
    z-index: 1;
    transform: translateY(-4px);
	/* background: linear-gradient(90deg, #282828, #020202); */
}

.about-us .tab-buttons {
	justify-content: center;
  	white-space: nowrap;
    /* overflow-x: auto; */
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
	display: flex;
}

.about-us .tab-buttons li {
	list-style: none;
	display: inline-block;
}

.about-us .tab-buttons li button::before {
	content: "";
    position: absolute;
    z-index: -1;
    box-shadow: 0 2px 0px rgba(255, 255, 255, 0.3);
    top: 50%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    border-radius: 100px / 1px;
	opacity: 0;
    transition: 0.3s ease;
}

.about-us .tab-buttons li button::after {
	content: "";
    background: #292929;
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    bottom: -6px;
    margin-left: -6px;
    transform: rotate(45deg);
    box-shadow: inset 3px 3px 3px rgba(255, 255, 255, 0.3), inset 1px 1px 1px rgba(255, 255, 255, 0.5);
	transition: 0.3s ease;
	opacity: 0;
}

.about-us .tab-buttons li button.active::after,
.about-us .tab-buttons li button.active::before {
	opacity: 1;
}

.about-us .tab-buttons button {
	color: var(--color-2);
	position: relative;
	padding: 10px 20px 20px;
	font-size: 18px;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.about-us .tab-content {
	padding: 15px 0;
}

@media (max-width: 768px) {
	.about-us .tab-buttons {
		overflow-x: auto;
    	overflow-y: hidden;
	}

	.about-us .tab-buttons {
		border-bottom: none;
		justify-content: start;
	}

	.about-us .tab-buttons button {
		font-size: 15px;
	}
}