header {
    background-color: white;
    padding: 0 1em;
}
header h1{
    margin: 0;
}
header h1 a{
    text-decoration: none;
    color: #082e63;
    letter-spacing: 0.2em;
}
header h1 a:hover{
    color: #082e63;
}
header section:nth-of-type(2){
    padding-top: 0.5em;
}
header section:nth-of-type(2) .subtitle .dispo{
    font-size: 0.6em;
    margin-top: 0.5em;
	padding : 0.5em 1em;
    color: white;
    display: block;
	letter-spacing: 0.5em;
	background-color : #082e63;
	border-radius: 0.3em;
}
header section:nth-of-type(3){
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
header section:nth-of-type(3) nav{
    width: 100%;
}
header section:nth-of-type(3) nav ul li{
    padding: 0.2em;
}
header .toggler {
    display: flex;
    width: 100%;
  }
header #button, #button-close {
    padding: 0.3em;
    border: 1px solid  white;
    border-radius: 0.3em;
    text-decoration: none;
    background-color: white;
    color: #082e63;
    transition: all ease-in-out 0.6s;
}
header #button:hover, header #button-close:hover {
    background-color: #09b1ea;
}
header #button-close{
    display: none;
}
header section:nth-of-type(3) a {
    letter-spacing: 0.2em;
    font-size: 0.8em;
    color: #082e63;
}
header section a:hover{
    text-decoration: none;
}
header section p {
    display: contents;
}
header .underline-menu li {
    position: relative;
    margin: 0 1.5em;
}
header .underline-menu li::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #b9a3a3;
    transform: scaleX(0);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.underline-menu li:hover::after, .underline-menu li:hover a{
    color: #b9a3a3;
    transform: scaleX(1);
}
header ul {
    padding: 0; margin: 0;
    display: flex;
    justify-content: center;
}
header li{
    display: inline;
    list-style: none;
}
header #effect{
    display: none;
}
header section:nth-of-type(1), header section:nth-of-type(2) {
    text-align: center;
}
header section p {
    color: #082e63;
    letter-spacing: 1em;
    padding: 0 0.5em;
    margin: 0;
    animation: glitch-2 5s 5.02s infinite;
}
@keyframes glitch-2 {
    1% {
        transform: rotateX(10deg) skewX(90deg);
    }
    2% {
        transform: rotateX(0deg) skewX(0deg);
    }
}
/********************************************************************************
******************************* RESPONSIVE **************************************
/********************************************************************************/

/*---------------------------WIDTH 1050---------------------------*/
@media (max-width: 1260px) {
    header .underline-menu {
        display: flex;
        flex-direction: column;
    }
    header section:nth-of-type(3){
        justify-content: center;
        text-align: center;
        align-items: flex-end;
        margin-top: 1em;
    }
    header section:nth-of-type(2){
        text-align: center;
    }
}

/*---------------------------WIDTH 720---------------------------*/
@media (max-width: 720px){
    header section:nth-of-type(3){
        display: flex;
        flex-direction: column;
        margin-top: 1em;
    }
    header section p{
        font-size: 0.8em;
    }
    header {
        padding-top: 0.5rem;
    }
    header section{
        font-size: 0.8rem;
    }
}

/*---------------------------HEIGHT 770---------------------------*/
@media (max-height: 720px) {

}

/*---------------------------HEIGHT 420---------------------------*/
@media (max-height: 420px) {
    header section:nth-of-type(3){
        margin-top: 1em;
        font-size: 1rem;
    }
}