*{
    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) {

    .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: relative;
    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;
}

.text-container {
    z-index: -1;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 75%;
}

.text-container span {
    color: white;
    text-transform: uppercase;
    display: block;
}

.text1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    position: relative;
    background-color: transparent;
}


.text-container-2 {
    z-index: -1;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}

.text-container-2 span {
    color: lightskyblue;
    display: block;
}

.text2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-top: 10rem;
    position: relative;
    background-color: transparent;
}

