/*header*/

.header{
    height: 90px;
    width: 100%;
    background-color: dimgrey;
    position: relative;
}

.header__texture{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.header__mask{
    position: absolute;
    bottom: 0;
    background: 0 0;
    height: 42px;
    width: 100%;
    z-index: 10;
}

.header__navbar{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header__navbar--logo-title{
    color: white;
    font-size: 28px;
}


.header__navbar--logo-title:hover{
    color: orangered;
    text-decoration-color: orangered;
}


.header__navbar--logo-link{
    color: white;
    text-decoration: none;
}


.header__navbar--menu-link{
    margin-left: 40px;
    color: white;
    text-decoration: none;
}

.header__navbar--menu-link:hover{
    color:orangered;
    text-decoration-color: orangered;
}



.header__navbar-toggle{
    width: 40px;
    height: 60px;
    display: flex;
    align-items: center;
    display: none;
    cursor: pointer;
}

.header__navbar-toggle-icons, .header__navbar-toggle-icons:before, .header__navbar-toggle-icons:after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 5px;
    background: #fff;
    position: relative;
}

.header__navbar-toggle-icons:before{top: 10px;}
.header__navbar-toggle-icons:after{top: -14px;}

.is-open .header__navbar--menu{
    transform: translateY(0);
}

@media only screen and (max-width: 950px){
    .container{
        width: 100%;
        padding: 0 20px;
    }


    .header__navbar-toggle{
        display: flex;
        z-index: 1;
    }

    .header__navbar--menu{
        transform: translateY(-100%);
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: absolute;
        width: 100vw;
        height:  100vh;
        background: grey;
        top: 0; left: 0;
    }

    .header__navbar--menu-link{
        margin: 20px 0;
        font-size: 24px;

    }
}