@font-face {
    font-family: Russo-One;
    src: url('fonts/RussoOne-Regular.ttf');
}

@font-face {
    font-family: Righteous;
    src: url('fonts/Righteous-Regular.ttf');
}

@font-face {
    font-family: PermanentMarker;
    src: url('fonts/PermanentMarker-Regular.ttf');
}

* {
    font-family: sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    min-width: 1000px;
}

#header {
    z-index: 90;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1150px;
    min-height: 20px;

    background-color: rgb(214, 214, 214);
    align-items: center;
    box-shadow: 0px 10px 20px black;
}

#header div {
    display: flex;
    justify-content: space-between;
    width: 1150px;
    margin-top: 5px;
    margin-bottom: 5px;
}

#header div li a {
    text-decoration: none;
    color: black;
}

#header div li:hover {
    text-decoration: underline;
}

#img {
    display: flex;
    position: relative;
    background-color: rgb(214, 214, 214);

    width: 102%;
    left: -10px;
    z-index: 50;
    padding-top: 30px;
    padding-bottom: 10px;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 10px 20px black;
}

#reseaux {
    display: flex;
    position: absolute;
    flex-direction: row;
    align-items: right;
    right: 20px;
    top: 40px;
}

#reseaux li {
    width: 50%;
    margin-left: 10px;
}

#content {
    display: flex;
    flex-direction: column;
    position: relative;

    margin: 12%;
    margin-bottom: 100px;
    margin-top: 0;
    padding: 50px;
    
    z-index: 0;
    top: 25px;
    left: -170px;
}

.bg-img {
    background-size: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('res/img2.jpg');
    background-repeat: no-repeat;
    filter: blur(3px);
    filter: brightness(75%);
    z-index: 0;
}

[name="section"] {
    display: flex;
    z-index: 50;
    background-color: white;
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 10px;
    box-shadow: 0px 0px 10px black;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

hr {
    border: none;
}

.separator {
    height: 25px;
}

#map {
    height: 400px;
    width: 90%;
    margin-right: 10px;
}

[name="section"] p {
    width: 90%;
    text-align: center;
}

[name="section"] [name="title"] {
    font-family: Russo-One;
    letter-spacing: 2px;
    line-height: 0px;
    font-size: 45px;
}

[name="russo"] {
    font-family: Russo-One;
}

[name="marker"] {
    font-family: PermanentMarker;
}

[name="righteous"] {
    font-family: Righteous
}

.alignHorizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#actualite {
    overflow-y: scroll;
    position: fixed;
    right: 20px;
    top: 200px;
    height: 90%;
}

/* bannière animée */
/*	((width + 5) * qtt) - 10 = margin left										*/
/*	((width + 5) * (qtt + x) = width photobanner	(x dépendant des besoins)	*/

.banner img{
	width: 200px;
	height: 155px;
}

.photobanner {
	height: 155px;
	width: 5945px;
}

.banner {
	overflow: hidden;
	margin-top: 0px;
	background: #fff;
}

/* animation */

.first {
	-webkit-animation: bannermove 30s linear infinite;
	   -moz-animation: bannermove 30s linear infinite;
	    -ms-animation: bannermove 30s linear infinite;
	     -o-animation: bannermove 30s linear infinite;
	        animation: bannermove 30s linear infinite;
}
 
@keyframes "bannermove" {
 0% {
    margin-left: 0px;
 }
 100% {
    margin-left: -4295px;
 }
 
}
 
@-moz-keyframes bannermove {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -4295px;
 }
 
}
 
@-webkit-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -4295px;
 }
 
}
 
@-ms-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -4295px;
 }
 
}
 
@-o-keyframes "bannermove" {
 0% {
   margin-left: 0px;
 }
 100% {
   margin-left: -4295px;
 }
 
}

/* bannière animée */
