@font-face {
    font-family: Roche-Sans;
    src: url(/fonts/Roche-sans.woff2);
  }

html {
    height: 100vh;
    background: url(/img/bg.png);
    background-size: cover;
}

body {
    background-color: #0000;
}

.header {
    background-color: white;
    display: flex;
    box-shadow: 5px 2px 20px 20px #cddbe76b;
    margin-bottom: 40px;
    padding: 34px 55px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.switcher {
    display: flex;
    flex-direction: row-reverse;
    margin-right: 125px;
    align-items: center;
    font-size: 18px;
    color: #BFC6DB;
}

.switcher img {
    height: 70px;
}

.switcher ul {
    list-style: none;
    margin: 0 35px 0 0;
    padding: 0;
    text-align: right;
    font-family: Roche-Sans;
}

.hide-small {
    display: block;
}

.hide-big {
    display: none;
}

.options {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row-reverse;
}

.vid-switch {
    cursor: pointer;
    transition: 0.2s;
}

.vid-switch.active {
    color: #001B70;
}


span {
    display: block;
    margin: 5px 0;
}

.country-picker {
    width: 33%;
    margin: 0 auto;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.video-wrap {
    width: 100%;
    margin: 50px auto 0;
}

.carousel {
    width: 250px;
    margin: 20px auto 0;
}

.slick-slide {
    cursor: pointer;
}

.slick-track {
    margin:auto !important;
}

.slick-prev:before,
.slick-next:before {
    color: #000000;
    opacity: 1;
    font-size: 34px;
}

.slick-current .flag {
    width: 70%;
}

.slick-current span {
    font-weight: bold;
}

.slick-arrow {
    width: 34px;
    height: 34px;
}

.slick-prev {
    left: -45px;
}

.slick-next {
    right: -45px;
}

@media only screen and (max-width: 1440px) {
    .logo {
        width: 15%;
    }

    .video-wrap {
        width: 70%;
        margin: 0 auto 0;
    }

    #vid {
        height: 400px;
    }
}

@media only screen and (max-width: 900px) {

    .header {
        padding: 10px 15px;
    }

    .logo {
        width: 30%;
    }

    span {
        font-size: 15px;
    }

    .country-picker {
        width: 50%;
    }

    .vid {
        height: 450px;
    }

    .video-wrap {
        width: 85%;
        margin: 0 auto;
    }

    .switcher {
        margin-right: 25px;
    }
}

@media only screen and (max-width: 700px) {
    .header {
        flex-direction: column;
    }

    .logos {
        width: 100%;
    }

    .options {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: unset;
    }

    span {
        font-size: 12px;
    }

    .roche-wrap {
        margin-top: 10px;
        width: 100%;
    }

    .roche {
        margin: 0 auto;
    }

    .hide-small {
        display: none;
    }

    .hide-big {
        display: block;
        margin-left: 40px;
    }

    .roche.hide-big {
        margin: unset;
    }

    .lh-logo {
        height: 70px;
    }

    .country-picker {
        width: 80%;
    }

    .logo {
        width: 50%;
    }
    
    .logos img {
        height: 50px;
    }

    .video-wrap {
        width: 100%;
    }

    .carousel {
        width: 230px;
    }

    #vid {
        height: 320px;
    }

    .switcher {
        display: block;
        margin: 0;
    }

    .switcher img {
        display: block;
        margin: 6px auto;
        height: 50px;
    }

    .switcher ul {
        margin: 0;
        text-align: center;
    }

}

@media only screen and (max-width: 375px) {

    #vid {
        height: 270px;
    }

}