.tabs-container {
    display: flex;
    flex-direction: column;
    height: 625px;
    overflow: hidden;
}
.tabs-header {
    display: flex;
    flex-wrap: wrap;
    background: #333;
}
.tabs-header button {
    flex: 1;
    padding: 40px 12px;
    background: #444;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.tabs-header button.active {
    background: #0073e6;
}
.tabs-content {
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: 0 20px;
}
.tab-panel {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background: #f1f1f1;
}
.tab-panel.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
}
#main-tabs-section {
    padding: 0px !important;
}
#main-tabs-section .tabs-container {
    width: 100%;
    position: relative;
}
#tabs-section .video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
#tabs-section .tab-panel {
    justify-content: left;
    align-items: end !important;
    right: 0 !important;
}
#tabs-section .tabs-header {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0 auto;
    background: #fff0 !important;
}
#tabs-section .tabs-header button {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    border: 1px solid #fff;
    background-color: rgba(0,0,0,.5);
    transition: background-color .2s;
}
#tabs-section .tabs-header button:not(.active):hover {
    background-color: rgba(0,0,0,.75);
}
#tabs-section .tabs-header button.active {
    background: #bbb;
    color: black;
}
#tabs-section .tab-wrapper {
    width: 1300px;
    margin: 0 auto;
    max-width: 100%;
}
#tabs-section .title__wrapper {
    display: block !important;
    max-width: 330px;
    position: relative;
    bottom: 140px;
    padding-left: 20px;
}
#tabs-section .title__wrapper h2 {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 32px;
    line-height: 125%;
    text-transform: capitalize;
    color: #F8F8F8;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
}
#tabs-section .title__wrapper p {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #F8F8F8;
}
#tabs-section .tabs-header button:focus-visible,
#tabs-section .tabs-header button:focus {
    outline: 0px !important;
}

@media ( min-width: 1190px ) and ( max-width: 1360px ) {
   #tabs-section .title__wrapper {
        width: 80% !important;
        margin-left: 0px !important;
    }
    #tabs-section .tabs-header {
        width: 70% !important;
    } 
}
@media (max-width: 1189px) and (min-width: 768px) {
    #tabs-section .tabs-header {
        width: 85% !important;
    }
}

@media (max-width: 767px) {

}
@media (max-width: 480px) {
    #tabs-section .tabs-header {
        width: 100% !important;
    }
}

/* Video placeholder styles */
.video-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f0f0f0;
    color: #666;
    font-size: 18px;
    text-align: center;
}

.video-placeholder p {
    margin: 0;
    padding: 20px;
}

@media only screen and (max-width: 768px) {
    #tabs-section .tabs-header button {
        padding: 20px 12px;
        background-color: rgba(0,0,0,1);
        border: none;
        font-size: 16px;
        line-height: 1.2;
    }

    #tabs-section .title__wrapper {
        max-width: 80% !important;
    }
}