#header .header-logo-s {
    display: none;
}

.d-md-block-custom{
    display: block !important;
}

@media (max-width: 991px) {
    #header .header-logo-m {
        display: none;
    }

    #header .header-logo-s {
        display: block;
    }

    .d-md-block-custom{
        display: none !important;
    }
}


/*Vimeo*/

.video-background {
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -99;
}

.video-foreground,
.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .video-foreground {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-foreground {
        width: 300%;
        left: -100%;
    }
}

/*Vimeo*/



.language-switch ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    font-weight: 600;
}


.language-switch li {
    display: block;
    float: left;
    padding: 5px 10px;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
    margin-left: 0 !important;
    min-width: 100px;
}

.language-switch li:hover {
    background: #c5211d;
    cursor: pointer;
}

.language-switch li ul li:hover {
    background: rgba(0,0,0,0.1);
}

.language-switch li:hover a {
    color: #fff;
    text-decoration: none;
}

.language-switch ul li ul {
    background: #c5211d;
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1.8rem;
    left: 0;
    display: none;
}

.language-switch ul li:hover > ul,
.language-switch ul li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

.language-switch ul li ul li {
    clear: both;
    width: 100%;
}




figure table{
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 2rem;
  color: #212529;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

figure table > :not(caption) > *{
    border-width: 1px 0;
}

figure table tr{
    border-color: inherit;
    border-style: solid;
}

figure table th,
figure table td{
    border-color: rgba(0, 0, 0, 0.06);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    line-height: 26px;
    border-right: 1px solid #dee2e6;
}

figure table > :not(caption) > * > *{
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

