/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*

COULEURS

gris foncé: #0A0A0D
gris moyen: #1B1B29
gris clair: #CFC1DB
fuschia: #A60A58
bordeaux: #4F002C

*/

* {
    box-sizing: border-box;
}

body {
    background: #0A0A0D;
    color: #CFC1DB;
    font-family: Raleway, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
}

a {
    color: #A60A58;
    text-decoration: none;;
}

strong {
    font-weight: bold;
}

.wrap,
#wrap {
    width: 1200px;
    margin: 0 auto;
}

#header {
    overflow: hidden;
    margin: 0 0 20px 0;
}

#logo {
    font-size: 48px;
    float: left;
    margin-top: 15px;
}

#menu {
    float: left;
    margin-left: 20px;
    height: 48px;
}

#header li {
    float: left;
    margin: 30px 0 0 20px;
    text-transform: uppercase;
    font-size: 18px;
}

#header li a {
    color: #CFC1DB;
    background: transparent;
    border-radius: 10px;
    padding: 8px 10px;
    display: inline-block;
}

#header li a:hover {
    color: #CFC1DB;
    background: #A60A58;

    -webkit-transition: background 1s; /* Safari */
    transition: background 1s;
    transition-timing-function: ease;
}

#langues {
    float: right;
}

#blocs {
    margin: 30px 0;
    overflow: hidden;
}

#blocs .bloc {
    float: left;
    width: 380px;
    margin-right: 30px;
}

#blocs .bloc:last-child {
    margin: 0;
}

h2 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

#blocs .lien {
    text-align: right;
    text-transform: uppercase;
    margin-top: 20px;
    display: none;
}

#blocs .lien a::before {
    content: "\f061";
    font-family: FontAwesome;
    color: transparent;
    display: inline-block;
    margin-right: 5px;
}

#blocs .lien a:hover {
    color: #4F002C;
    -webkit-transition: color 1s; /* Safari */
    transition: color 1s;
    transition-timing-function: ease;
}

#blocs .lien a:hover::before {
    color: #A60A58;
    -webkit-transition: color 1s; /* Safari */
    transition: color 1s;
    transition-timing-function: ease;
}

#contact_section {
    background: #1B1B29;
    padding: 20px;
    margin: 30px 0;
    overflow: hidden;
}

#contact_section #contact {
    float: left;
    width: 820px;
}

#contact_section #social_media {
    float: right;
}

#contact_section form {
    margin: 20px 0;
}

#contact_section .group {
    margin: 15px 0;
}

#contact_section .group label {
    display: block;
    cursor: pointer;
    font-size: 18px;
    margin-bottom: 5px;
}

#contact_section textarea,
#contact_section input[name="name"],
#contact_section input[name="email"] {
    width: 412px;
    padding: 10px;
    border: 0;
    background: #CFC1DB;
    color: #0A0A0D;
    font-family: Raleway, Arial, sans-serif;
    font-size: 14px;
}

#contact_section textarea:hover,
#contact_section input[name="name"]:hover,
#contact_section input[name="email"]:hover {
    background: #fff;
}

#contact_section textarea {
    width: 100%;
    height: 150px;
}

#contact input[type="submit"] {
    text-transform: uppercase;
    color: #CFC1DB;
    border-radius: 10px;
    padding: 8px 15px;
    display: inline-block;
    background: #A60A58;
    border: 0;
    cursor: pointer;
    float: right;
    font-size: 16px;
    font-family: Raleway, Arial, sans-serif;
}

#contact input[type="submit"]:hover {
    background: #4F002C;
    color: #fff;
    -webkit-transition: background 1s; /* Safari */
    transition: background 1s;
    transition-timing-function: ease;
}

#contact .hidden {
    display: none;
}

#social_media li {
    text-align: right;
    margin-bottom: 5px;
}

#social_media li i {
    color: #CFC1DB;
    font-size: 60px;
    vertical-align: middle;
}

#social_media li:hover i {
    color: #A60A58;
    -webkit-transition: color 1s; /* Safari */
    transition: color 1s;
    transition-timing-function: ease;
}

#social_media li span {
    visibility: hidden;
    color: #A60A58;
    font-size: 18px;
    vertical-align: middle;
    display: inline-block;
    padding-right: 10px;
}

#social_media li:hover span {
    visibility: visible;

    -webkit-transition: visibility 1s; /* Safari */
    transition: visibility 1s;
    transition-timing-function: ease;
}

#footer {
    background: #CFC1DB;
    color: #0A0A0D;
    padding: 20px 0;
    margin: 30px 0 0 0;
    overflow: hidden;
}

#footer .left-side {
    float: left;
}

#footer .right-side {
    float: right;
    text-align: right;
}

#footer .right-side li {
    display: inline-block;
    margin: 10px 0 0 5px;
}

#footer .right-side li i {
    font-size: 24px;
}

#footer .right-side li a:hover {
    color: #fff;
}

#footer .contact-lien::before {
    content: "\f0e0";
    font-family: FontAwesome;
    color: transparent;
    display: inline-block;
    margin-right: 5px;
}

#footer .contact-lien:hover::before {
    color: #A60A58;
    -webkit-transition: color 1s; /* Safari */
    transition: color 1s;
    transition-timing-function: ease;
}