/* Tab Button */
.logo-sticky img, .logo img {
	max-height: 120px;
}
.tab__button {
  height: 50px;
}
.list {
  display: flex;
  list-style: none;
  height: 100%;
}
.item {
  width: 100%;
  border: 0;
  border-left: 1px solid #ddd;
  height: 100%;
}
.button {
  cursor: pointer;
  appearance: none;
  border-radius: 0;
  border-style: none;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid transparent;
  transition: all .25s ease-in-out;
}
.button:hover {
  font-weight: bold;
  border-bottom: 2px solid #302766;
}
.button:focus {
  outline: none;
}
.is-current .button {
  color: #fff;
  background: #302766;
}
.is-current .button:hover {
  border-bottom: 2px solid transparent;
}

/* Tab Content */
.title {
  font-size: 25px;
  margin: 10px auto 20px;
}

.tab-section-start .tab .box li {
	padding: 10px;
    border-bottom: 1px solid #ccc;
    width: 100%;
}
.d3-o-centerpiece__hero .content-section {
	padding: 20px;
}
.d3-o-centerpiece__hero {
	-webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .16);
	box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .16);
}
/* Hero Video Section Start */
.video-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-left: 5%;
  color: white;
}

.video-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay */
  z-index: 1;
}

.video-section video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.video-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.video-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.video-content a.button {
  padding:0rem;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  display: inline;
}

.video-content a.button:hover {
  color: #302766;
  border-bottom: 0px;
}
/* Hero Video Section End */