.header{
    color: white;
    z-index: 9;
    display: block;
    position: fixed;
    width: 100%;
    height: 93px;
    top: 0;
    left: 0;
    transition: all 200ms ease;
    background-color: black;
}

.header--transparent{
    background-color: transparent;
}

.header.scrolled{
    background-color: black;
    border-bottom: solid 1px #515151;
}

.header .btn{
    padding: .3rem 1rem;
}

.menu-toggle{
    width: 1.6rem;
    height: 1.6rem;
}

.menu-toggle svg{
    width: 1.6rem;
    height: 1.6rem;
    fill: white;
    transition: all 200ms ease;
}

.menu-toggle svg:hover{
    cursor: pointer;
    fill: #e8c490;
}






.image-wrapper-logo{
    width: 200px;
    height: 50px;
    transition: all 300ms ease;
}

@media screen and (min-width: 768px) {
    .image-wrapper-logo{
        margin-left: 4rem;
    }
}

.image-wrapper-logo img{
    width: 200px;
    height: 50px;
}

.image-wrapper-logo:hover{
    transform: scale(1.02);
}








.header-sidebar{
    position: fixed;
    top: 0rem;
    left: -50rem;
    width: 20rem;
    height: 100%;
    background-color: white;
    box-shadow: 0 0 5px #ddd;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    transition: all 600ms ease;
    z-index: 10;
    font-size: 1.4rem;
}

.header-sidebar.active{
    left: 0;
}

.header-sidebar .sidebar-toggle{
    width: 1.6rem;
    height: 1.6rem;
    transition: all 200ms ease;
}

.header-sidebar .sidebar-toggle:hover{
    fill: #e8c490;
    cursor: pointer;
}

.header-sidebar ul{
    padding-left: 0;
    margin: 0;
}

.header-sidebar ul li{
    list-style-type: none;
    margin-bottom: .8rem;
}

#menu-primary-menu a{
    font-weight: 500;
}

.header-sidebar a{
    color: black;
    text-decoration: none;
    transition: all 200ms ease;
    font-size: 1.4rem;
}

.header-sidebar a:hover{
    color: #e8c490;
}

.header-social-item{
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
}

.header-social-item a{
    fill: #e8c490;
    width: 1.8rem;
    height: 1.8rem;
}

.header-social-item a:hover{
    fill: #888;
}

.video-header{
    width: 100vw;
    height: 100vh;
    margin-top: -93px;
    position: relative;
    overflow: hidden;
    background-color: black;
}

.video-header__placeholder,
.video-header__video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-header__placeholder{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
    background-color: black;
}


.video-header__placeholder.hidden{
    opacity: 0.25;
    transform: scale(1.05);
    pointer-events: none;
}

.video-header p{
    line-height: 2.6rem;
    font-weight: 100;
}

.video-header__video iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    pointer-events: none;
    border: 0;
}

/*CONTENT*/
.video-header__content{
    position: relative;
    width: 100%;
    height: 100%;
    color: white;
    z-index: 2;
}

.video-header__content h1{
    font-style: italic;
    letter-spacing: .5rem;
    font-weight: 100;
}

.video-header__content p{
    font-size: 1.6rem;
}

.video-header__content .btn{
    padding: .9rem 1rem;
}

/*LOGOS*/
.video-header__logos{
    position: absolute;
    width: 100%;
    bottom: 1rem;
    z-index: 2;
}

.video-header__logos img{
    width: 50%;
    height: auto;
}

/*PROJECTS*/
.header-project{
    padding: 3rem 0;
    text-align: center;
}

@media screen and (min-width: 992px){
    .header-project{
        padding: 8rem 0;
    }
}

.extended-header{
    position: relative;
    padding: 14rem 0 8rem 0;
    color: white;
    margin-top: -93px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.extended-header .container{
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 992px){
    .extended-header .container{
        padding: 0 15rem;
    }
}

.extended-header p{
    font-size: 1.6rem;
    font-weight: 300;
}

.extended-header .btn{
    padding: .9rem 1rem;
}

.extended-header__overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.86);
}