.header {
    position: fixed;
    background-color: rgb(23, 23, 23);
    width: 100%;
    z-index: 10;

    padding-left: 15px;
    padding-right: 15px;
}

.header .container-fluid>.d-flex {
    height: 64px;
}

.header .navbar-nav {
    list-style: none;
    display: flex;
}

.header .navbar-nav a,
#offset .navbar-nav a {
    color: white !important;
    box-shadow: none !important;
}
#offset .navbar-nav a{
    display: block;
    text-align: center;
    line-height: 200%;
    font-size: 18px;
}


.header .navbar-nav li {
    margin-left: 35px;
}

.header .d-flex {
    display: flex;
}

.header .align-items-center {
    align-items: center;
}

.header .justify-content-between {
    justify-content: space-between;
}
.header .language-link{
    border-radius: 100%;
    position: relative;
    overflow: hidden;
    margin-left: 30px;
}
.header .mobilnav{
    margin-left: 15px;
    display: none;
}
.header .mobilnav img{
    height: 24px;
}
@media (max-width: 1148px){
    .header .mobilnav{
        display: block;
    }
    .header .navbar-nav{
        display: none;
    }
}
#offset{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    background-color: black;
    min-height: 100vh;
    overflow: scroll;
    z-index: 999;
    padding-top: 100px;
    padding-bottom: 100px;
    visibility: hidden;
    box-shadow: none !important;
    transition: opacity .3s;
    opacity: 0;
}
#offset.active{
    visibility: visible;
    opacity: 1;
}
#offset a.close{
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
#offset a.close img{
    height: 28px;
}
.footer {
    font-size: .875rem;
    line-height: 1.8;
    background-color: #3e3e3e;
    color: #b3b3b3;
    padding: clamp(40px, 10vw, 80px) 0;
    text-transform: uppercase
}

.footer a {
    color: currentColor
}

.footer a:hover, .footer a:focus {
    color: #fff
}

.footer .h3, .footer .h4, .footer legend {
    color: currentColor
}

.footer__copyright {
    font-size: .75rem
}

@media (min-width: 1200px) {
    .footer__col {
        flex: 1
    }
}

.footer .form-control {
    border-color: #3e3e3e
}
