#header {
    position: relative;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
    background-image: url('../img/Accud-Website-Background.jpg');
}

    #header 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%);
    }
    
    @media (max-width: 767px){
        #header {
            background-image: url('../img/Accud-LP-Mobile-Slide-2023-1.jpg');
        }
        #header video {
            display: none;
        }
    }

#header .container {
    position: relative;
    z-index: 2;
}

#header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0,0,0);
    opacity: 0.35;
    z-index: 1;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.table-scroll {
    max-height: 450px;
    overflow: auto;
}

#specTable thead th {
    top: 0;
    position: sticky;
    z-index: 10;
    background-color: #0a4166;
    color: #ffffff !important;
}

#specTable thead th:first-child {
    left: 0;
    z-index: 20;
}

#specTable tbody td {
    white-space: nowrap;
    min-width: 100px;
    overflow-wrap: break-word;
}

#specTable tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 10;
    background-color: #ffffff;
}
.darkview {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: .4375rem;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: opacity 0.2s linear 0s;
    -webkit-transition: opacity 0.2s linear 0s;
    -moz-transition: opacity 0.25s linear 0s;
    -o-transition: opacity 0.25s linear 0s;
    box-shadow: 3px 3px 15px rgba(10,65,102,0.45);
}
.darkview:hover {
	opacity: 1;
}

.meta-link {
    color: #ffffff;
}

.meta-link:hover {
    color: #337ab7;
}