/* FONT */

@font-face { font-family: "spartan_regular"; src: url('../typos/Spartan-Regular.ttf'); }
@font-face { font-family: "spartan_bold"; src: url('../typos/Spartan-Bold.ttf'); }
@font-face { font-family: "spartan_semibold"; src: url('../typos/Spartan-SemiBold.ttf'); }
@font-face { font-family: "spartan_light"; src: url('../typos/Spartan-Light.ttf'); }

body{
    margin: 0;
}

/* CONTENEUR */
.conteneur{
    margin: 100%;
}

/* COLOR */
.color{
    color: rgb(255, 69, 41);
}

/* COLOR */
.color1{
    color: white;
}

/* LOGO KOMUGI */
.logo{
    margin: 1.3em 0em 0em 3em;
}

/* MENU */
.menu_display{
    display: flex;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    padding-bottom: 1em;
    z-index: 2;
}

/* N APPARAIT QUE EN RESPONSIVE */
.navigation_display{
    display: none;
}

/* MENU PRINCIPAL */
#menu{
    margin-top: 1em;
    width: 27em;
}

#menu ul {
    margin:0;
    padding:0;
    list-style-type:none;
    text-align:center;
    }

#menu li {
    float:left;
    margin:auto;
    padding:0;
}

#menu li a {
    display:block;
    width: 130px;
    color:#04818E;
    text-decoration:none;
    padding:5px;
    text-transform: uppercase;
    font-family: spartan_regular;  
}
   
#menu li a:hover {
    color: rgb(255, 69, 41);;
}

#menu ul li ul {
    display:none;
}

#menu ul li ul li {
    background-color: rgba(255, 255, 255);
    border-bottom: 1px solid  #04818E;
    padding: 0.2em;
    z-index: 1;
}

#menu ul li:hover ul {
    display:block;
}

#menu li:hover ul li {
    float:none;
}

#menu li ul {
    position:absolute;
}

/* LOGO */
.logo_display{
    margin-top: 1.2em;
    display: flex;
    justify-content: space-between;
}

/* RESEAUX SOCIAUX */
svg{
    margin-left: 1em;
}

/* BUTTON */
button{
    z-index: 1;
    position: relative;
    font-size: inherit;
    font-family: spartan_semibold;
    color: rgb(255, 69, 41);;
    padding: 0.5em 1em;
    outline: none;
    border: none;
    background-color: white;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
    border-radius: 0em 1em 0em 1em;
    text-transform: uppercase;
}

button::before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background-color: rgb(255, 69, 41);;
    transform-origin: center;
    transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 0);
    transition: transform 0.45s ease-in-out;
  }
  
  button:hover {
    cursor: pointer;
    color: white;
  }
  
  button:hover::before {
    transform: translate3d(-50%, -50%, 0) scale3d(15, 15, 15);
  }

/* PIED DE PAGE */
.background_piedepage{
    background-color: rgb(14, 130, 142);
    box-shadow: 0px -1px 8px rgba(0, 0, 0, 0.1);
}

.display_pieddepage{
    display: flex;
    justify-content: space-around;
}

.button_site{
    margin-top: 1.5em;
}

/* MENU PIED DE PAGE */
.menu_pied ul {
    display: flex;
}

.menu_pied ul li {
    padding: 1em;
    list-style: none;
}

.menu_pied ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-family: spartan_regular;
}

.piedepage_logo{
    display: flex;
    margin-top: 1.5em;
}

.mod-languages{
    margin-right: 2em;
    margin-top: 0.2em;
}

.linkedin{
    margin-right: 2em;
}

.lang-inline a img{
    height: 0.9em;

}

/* RESPONSIVE TABLETTE */
@media screen and (max-width: 768px){
	
	.logo {
		margin: 1.3em 0em 0em 1em;
	}

    .header_display{
        padding-top: 2em;

    }

}

/* RESPONSIVE PHONE */
@media screen and (max-width: 434px){
    .display_pieddepage{
        display: block;
        padding-right: 2em;
    }

    .menu_pied ul {
        display: block;
        padding-inline-start: 0px;
    }

    button{
        font-size: 0.6em;
    }

    h2{
        font-size: 1em;
        margin-block-start: 0.5em;
    }

    .header_display {
        padding-bottom: 2em;
    }

    .content p {
        font-size: 0.9em;
        margin-left: 0.5em;
        margin-right: 0.5em;
    }

    .button_site {
        text-align: right;
        padding-top: 2em;
        margin-top: 0em;
        
    }

    .button_site button{
        font-size: 0.8em;
    }

    .menu_pied ul li {
        text-align: right;
    }

    .menu_pied ul li a {
        font-size: 0.8em;
    }

    .piedepage_logo {
        display: block;
        margin-top: 0em;
        padding-bottom: 1em;
        text-align: right;
    }
}
