/*! normalize.css v1.0.0 | MIT License | git.io/normalize */
/*
 * usage:
 * @import "normalize";
 *
 * // this will print out ALL selectors
 * @include normalize();
 *
 * // this will print out minimal set (*) -- you can see the list of "excluded" tags below
 * @include normalize( $include : none );
 *
 * // this will print out minimal set + article, but without form ( and anything related to form, like input ) and h1-h6 tags
 * @include normalize( $include : article, $exclude : form "h*" );
 *
 * // this will print out ALL selectors, but will not use IE 6/7 "hacks"
 * @include normalize( $hacks : false );
 */
/*
 * (*) "excluded" in minimal:
 * - abbr
 * - article
 * - aside
 * - audio
 * - blockquote
 * - canvas
 * - code
 * - details
 * - dfn
 * - fieldset
 * - figcaption
 * - figure
 * - footer
 * - header
 * - hgroup
 * - kdb
 * - legend
 * - mark
 * - menu
 * - nav
 * - q
 * - samp
 * - section
 * - small
 * - sub
 * - summary
 * - sup
 * - svg
 * - table
 * - video
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  height: 100%; }

body {
  background-color: #EEE5E0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  color: #5D7E86; }
  body .conteneur {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 40px; }
    @media (max-width: 768px) {
      body .conteneur {
        padding: 20px; } }
  body img {
    max-width: 100%;
    height: auto;
    display: inline-block; }
  body h2 {
    color: #2B465F; }
  body a {
    color: #D85991; }

@media (max-width: 768px) {
  header .conteneur {
    padding: 40px 40px 20px; } }

header .logo {
  width: 800px; }

header .intro {
  font-size: 24px;
  color: #489655;
  max-width: 600px;
  margin: 30px auto 0;
  line-height: 1.2em; }
  @media (max-width: 768px) {
    header .intro {
      font-size: 18px;
      margin-top: 20px; } }

section.evenements p.inscriptions {
  max-width: 800px;
  margin: 20px auto 0; }
  @media (max-width: 768px) {
    section.evenements p.inscriptions {
      padding: 20px;
      margin-top: 0; } }
  section.evenements p.inscriptions.big {
    font-size: 20px; }

section.evenements ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px; }
  @media (max-width: 1024px) {
    section.evenements ul {
      justify-content: center; } }
  @media (max-width: 768px) {
    section.evenements ul {
      margin-top: 20px; } }
  section.evenements ul li {
    position: relative;
    list-style-type: none;
    width: 48%;
    height: 0;
    padding-bottom: 24%;
    border: solid 3px #F5EFEC;
    margin-bottom: 4%;
    overflow: hidden; }
    @media (max-width: 1024px) {
      section.evenements ul li {
        width: 760px;
        padding-bottom: 380px; } }
    @media (max-width: 768px) {
      section.evenements ul li {
        width: 100%;
        padding-bottom: 50%; } }
    section.evenements ul li > a {
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 100%; }
      section.evenements ul li > a img {
        display: block;
        object-fit: cover;
        transform: scale(0.95);
        -webkit-transition: transform 0.3s ease-out 0s;
        -moz-transition: transform 0.3s ease-out 0s;
        -ms-transition: transform 0.3s ease-out 0s;
        transition: transform 0.3s ease-out 0s; }
      section.evenements ul li > a:hover img, section.evenements ul li > a:focus img {
        transform: scale(1); }
    section.evenements ul li p.liste {
      position: absolute;
      top: 10px;
      width: 100%;
      font-weight: bold; }
    section.evenements ul li.complet > a {
      pointer-events: none;
      opacity: 0.5; }

footer {
  background-color: #FFF; }
  footer .conteneur {
    max-width: 900px; }
  footer ul.logos {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; }
    footer ul.logos li {
      margin: 20px; }
      footer ul.logos li a {
        opacity: 1; }
        footer ul.logos li a:hover img, footer ul.logos li a:focus img {
          transform: scale(1.05); }
      footer ul.logos li img {
        max-width: 200px;
        max-height: 110px;
        transform: scale(1);
        -webkit-transition: transform 0.3s ease-out 0s;
        -moz-transition: transform 0.3s ease-out 0s;
        -ms-transition: transform 0.3s ease-out 0s;
        transition: transform 0.3s ease-out 0s; }

/*# sourceMappingURL=fp.css.map */