.main-tab-content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.tab-bg{
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}

.main-tab-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  //z-index: 1;
}

.tabbed-bg{
  display: block;
  position: relative;
  top:0;
  left: 0;
  width: 100%;
  max-width: unset !important;
  height: auto;
}

.tabs-background{
  display: block;
  position: absolute !important;
  max-width: unset !important;
  width: 100vw;
  top: 0;
  left: 0;
 height: 100%;
 //z-index: 0;
 background-position: center center;
 background-repeat: no-repeat;
 background-size: cover;
}

.tabs-overlay{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000000;
  background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 16%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 1) 84%, rgba(0, 0, 0, 0) 100%);
}
.tab-group{
  display: flex;
  justify-content: center;
  align-items: center;  
  gap:40px;
}

.tab {
   border:0;
   text-align: center;
   line-height: 1.2em;
   cursor: pointer;
   font-weight: 700;
   color: #fff !important;
   
}

.tab-accent{
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 5px;
  height:5px;
  width:0;
  transition: all 0.5s;
  background-color: #FCAF17;
}

.tab.active .tab-accent{
  height:5px;
  width: 60px;
}

[role="tabpanel"] {
  max-width: unset;
  width: 100%;
}

