@font-face {
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto";
    font-style: italic;
    font-weight: 400;
    src: url("./fonts/Roboto-Italic.ttf") format("truetype");
}
@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/Oswald-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Merriweather";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/Merriweather-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Merriweather";
    font-style: italic;
    font-weight: 400;
    src: url("./fonts/Merriweather-Italic.ttf") format("truetype");
}
@font-face {
    font-family: "Merriweather";
    font-style: normal;
    font-weight: 300;
    src: url("./fonts/Merriweather-Light.ttf") format("truetype");
}
@font-face {
    font-family: "Merriweather";
    font-style: italic;
    font-weight: 300;
    src: url("./fonts/Merriweather-LightItalic.ttf") format("truetype");
}
@font-face {
    font-family: "PlayfairDisplay";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/PlayfairDisplay.ttf") format("truetype");
}
@font-face {
    font-family: "PlayfairDisplay";
    font-style: italic;
    font-weight: 400;
    src: url("./fonts/PlayfairDisplay-Italic.ttf") format("truetype");
}
@font-face {
    font-family:"Font Awesome 5 Brands";
    font-style:normal;
    font-weight:400;
    font-display:block;
    src:url(./fonts/fa-brands-400.eot);
    src:url(./fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),
    url(./fonts/fa-brands-400.woff2) format("woff2"),
    url(./fonts/fa-brands-400.woff) format("woff"),
    url(./fonts/fa-brands-400.ttf) format("truetype"),
    url(./fonts/fa-brands-400.svg#fontawesome) format("svg")
   }
.fab {
    font-family:"Font Awesome 5 Brands";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}
.fa-facebook-f:before,
.fa-facebook:before {
    content:"\f09a"
}
.fa-instagram:before {
    content:"\f16d"
}
#top-bar-social li a {
	display: block;
	float: left;
	font-size: 14px;
	color: #bbb;
	padding: 0 6px;
}
   
html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto ;
    font-size: 20px;
    font-family: Merriweather, serif;
    color: #333;
    background-color: #fff;
    line-height: 1.7em;
	font-weight: 300;
}

h1, h2 {
    text-transform: uppercase;
    text-align: center;
    font-family: PlayfairDisplay, serif;
    color: #555;
	line-height: 2em;
}

h2 {
    margin-top: 3em;
}

a {
	color: #333
}

#content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0.5em;
}

#content section {
    margin-bottom: 2em;
}

.col-2 {
    display: flex;
}

.col-2 div {
    max-width: 50%;
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

img {
    max-width: 100%;
    max-height: 500px;
}

.aligncenter {text-align: center;}

footer {
    text-align: center;
    background-color: #555;
    padding: 2em 0.5em;
    color: #aaa;
    font-size: 0.8em;
}

footer a {
    color: #fff;
    text-decoration: dotted;
}

footer a:hover {
    color: #777;
    text-decoration: none;
}

nav {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	background-color: #333;
}

#logo {
    width: 100px;
}

#social ul {
    margin: 0;
}

#social li {
    padding: 0.5em 1em;
}

nav > ul {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: space-evenly;
    width: calc(100vw - 200px);
}

nav ul li {
    width: 25%;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 0 1em;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
}

nav ul li a:hover {
    font-weight: 700;
}

#contact {
    background-color: #ccc;
    padding: 1em;
}

#preambule img {
	max-width: 400px;
}

/*
 * SmartPhone Paysage
 */
@media (max-width: 781px) {
    nav {
        flex-direction: column;
    }
    nav ul {
        flex-direction: column;
        padding: 0;
    }

    nav ul li {
        width: 100%;
        padding: 0.5em 1em;
        border-bottom: 1px solid #aaa;
    }

    nav ul li:hover {
        background-color: #aaa;
    }
}


/*
 * SmartPhone Portrait
 */
@media (max-width: 450px) {
    .col-2 {
        flex-direction: column;
    }

    .col-2 div {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    img {
        box-shadow: none;
    }
}
  