header {
    height: 650px;
    width: 100%;
    background: #000;
    position: relative;
}

nav {
    overflow: hidden;
    position: fixed;
    width: 100%;
    background: black;
    opacity: 0.9;
}

header li {
    float: right;
    font-size: 1em;
}

header li a {
    display: block;
    text-align: center;
    padding: 18px 35px;
    color: white;
}

header li a:hover {
    color: #d00a0a;
}
header li a:active {
    color: #d00a0a;
}

.header__navbar {
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background: black;
    opacity: 0.9;
}

#header__navbar--logo {
    width: 270px;
    height: 270px;
    margin-top: 158px;
    margin-left: 100px;
    position: relative;
    z-index: 10;
}

.hero__slider--texture {
    width: 100%;
    height: 100%;
    background: url(../img/silhouette-2589471_1280.jpg) no-repeat 50% 50%;
    position: absolute;
    left: 0;
    background-size: cover;
    z-index: 1;
    opacity: 0.9;
}

.hero__slider--slogan {
    position: relative;
}

.h__slogan--title {
    color: #d00a0a;
    font-size: 5vh;
    line-height: 1.8em;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    place-items: flex-end;
    font-family: 'Special Elite', cursive;
    margin-right: 11vw;
    margin-top: 5em;

}

.h__slogan--title span {
    color: #000;
    text-transform: lowercase;
    font-family: 'Potta One', cursive;
}

.ligne__1 {
    margin-right: 100px;
}

/*****************RESPONSIVE***********************/

.header__navbar-toggle {
    width: 40px;
    height: 60px;
    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 nav {
    transform: translateY(0);
}

@media only screen and (max-width: 1480px) {

    .header__navbar-toggle {
        display: flex;
        z-index: 1000;
        margin-right: 50px;
    }

    nav {
        transition: all 0.3s ease-in-out;
        transform: translateY(-100%);
        position: absolute;
        z-index: 20;
        top: 0;
        left: 0;
        opacity: 1;
    }

    nav ul {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        width: 100vw;
        height: 100vh;
        background: rgba(76, 175, 80, 0.1);
    }

    nav ul li a {
        margin: 20px 0;
        font-size: 24px;
        text-transform: uppercase;
    }

    nav ul li {
        clear: right;
    }

    #header__navbar--logo {
        margin-left: 0;
    }

}
@media only screen and (min-width: 1800px) {
	.h__slogan--title {
		line-height: 1.3em;
		font-size: 4vh;
		margin-top: 4em;
	}
}

@media only screen and (max-width: 1025px) {

     #header__navbar--logo {
        width: 200px;
        height: 200px;
        margin-top: 80px;
    }
	    .h__slogan--title {
        margin-right: 6vw;
		font-size: 4vh;
		margin-top: 3em;
    }
    
    .h__slogan--title {
        color: #fff;
    }

    .h__slogan--title span {
        color: #d00a0a;
    }
}

@media only screen and (max-width: 500px) {

    #header__navbar--logo {
        width: 125px;
        height: 125px;
        margin-top: 0;
    }

    .h__slogan--title {
        color: #fff;
        font-size: 5vh;
        font-weight: bolder;
        margin-right: 22vw;
        margin-top: 6em;
    }

    .h__slogan--title span {
        color: #d00a0a;
    }
}
@media only screen and (max-width: 400px) {
    .h__slogan--title {
        font-size: 4vh;
        margin-top: 10em;
    }
}
