*{
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    overflow-x: hidden;
}

.navbar {
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo {
    transform: translateX(100px);
    font-size: 1.75rem;
    margin: 1.75rem;
}

.navbar-links ul {
    transform: translateX(-100px);
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    font-size: 1.25rem;
    text-decoration: none;
    color: white;
    padding: 2rem;
    display: block;
}

.navbar-links li:hover {
    background-color: black;
    opacity: 0.75;
}

.menu-btn {
    display: none;
    position: absolute;
    top: 2.5rem;
    right: 1.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 16px;
    cursor: pointer;
    transition: all .1s ease-in-out;
  }
  .menu-btn__burger {
    display: none;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 25px;
    transition: all .25s ease-in-out;
  }
  .menu-btn__burger::before,
  .menu-btn__burger::after {
    display: none;
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 25px;
    transition: all .1s ease-in-out;
  }
  .menu-btn__burger::before {
    transform: translateY(-8px);
  }
  .menu-btn__burger::after {
    transform: translateY(8px);
  }
  
  .menu-btn.open .menu-btn__burger {
    background: transparent;
    transform: translatex(0px);
  }
  .menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) 
  }
  .menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) 
  }


@media(max-width: 1050px) {

    .container .prev,
    .container .next {
        cursor: pointer;
        position: absolute;
        top: 35%;
        width: auto;
        padding: 16px;
        margin-top: -50px;
        color: white;
        font-weight: bold;
        font-size: 20px;
        border-radius: 0 3px 3px 0;
        user-select: none;
        -webkit-user-select: none;
    }

    .container .column {
        float: left;
        width: 10%;
    }

    .container .mySlides {
        margin-top:20%;
    }


    .logo {
        transform: translateX(-0px);
        font-size: 1.75rem;
        margin: 1.75rem;
    }

    .menu-btn {
        display: flex;
    }

    .menu-btn__burger {
        display: flex;
    }
    
    .menu-btn__burger::before,
    .menu-btn__burger::after {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }
    
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar-links ul {
        transform: translateX(-0px);
        width: 100%;
        flex-direction: column;
    }

    .navbar-links li {
        text-align: right;
    }

    .navbar-links li a {
        padding: .5rem 1rem;
    }

    .navbar-links li:hover {
        border-radius: 100px;
        background-color: black;
        opacity: 0.75;
    }

    .navbar-links.active {
        display: flex;
    }
   

}

.banner {
    position: fixed;
    margin: 0rem;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.banner video {
    margin: 0rem;
    display: flex;
    position: absolute;
    vertical-align: top;
    float: left;
    top: 0;
    left: 0;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.bg-overlay {
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    position: fixed;
    z-index: -1;
}

img {
    vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
    min-width: 68%;
    max-height: 100%;
    margin-top: 0.5rem;
    margin-left: 16%;
    margin-right: 16%;
    position: relative;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Container for image text */
/*.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}*/

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.column {
    float: left;
    width: 4%;
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}
