/***** Customs *****/
/* @mixin font-face($name, $path, $weight: null, $style: null, $exts: eot woff ttf) {
  $src: null;

  $extmods: (
    eot: '?',
  );

  $formats: (
    otf: 'opentype',
    ttf: 'truetype'
  );

  @each $ext in $exts {
    $extmod: if(map-has-key($extmods, $ext), $ext + map-get($extmods, $ext), $ext);
    $format: if(map-has-key($formats, $ext), map-get($formats, $ext), $ext);
    $src: append($src, url(quote($path + "." + $extmod)) format(quote($format)), comma);
  }

  @font-face {
    src: $src;
    font-family: quote($name);
    font-style: $style;
    font-weight: $weight;
  }
} */
/* @include font-face(open-sans, '../fonts/OpenSans/Lato-Regular', $weight: $weight-regular);
@include font-face(open-sans, '../fonts/OpenSans/Lato-Medium', $weight: $weight-medium);
@include font-face(open-sans, '../fonts/OpenSans/Lato-Bold', $weight: $weight-bold);
@include font-face(open-sans, '../fonts/OpenSans/Lato-Italic', $style: italic); */
@font-face {
  src: url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-family: "open-sans";
  font-weight: 400;
}

@font-face {
  src: url("../fonts/OpenSans/OpenSans-SemiBold.ttf") format("truetype");
  font-family: "open-sans";
  font-weight: 600;
}

@font-face {
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-family: "open-sans";
  font-weight: 700;
}

@font-face {
  src: url("../fonts/OpenSans/OpenSans-Italic.ttf") format("truetype");
  font-family: "open-sans";
  font-style: italic;
}

@font-face {
  src: url("../fonts/OpenSans/OpenSans-SemiBoldItalic.ttf") format("truetype");
  font-family: "open-sans";
  font-style: italic;
  font-weight: 600;
}

@font-face {
  src: url("../fonts/OpenSans/OpenSans-BoldItalic.ttf") format("truetype");
  font-family: "open-sans";
  font-style: italic;
  font-weight: 700;
}

@font-face {
  src: url("../fonts/marianne/Marianne-Medium.otf") format("opentype");
  font-family: "Marianne";
  font-weight: 500;
}

@font-face {
  src: url("../fonts/marianne/Marianne-Regular.otf") format("opentype");
  font-family: "Marianne";
  font-weight: 400;
}

@font-face {
  src: url("../fonts/marianne/Marianne-Bold.otf") format("opentype");
  font-family: "Marianne";
  font-weight: 700;
}

@font-face {
  src: url("../fonts/marianne/Marianne-ExtraBold.otf") format("opentype");
  font-family: "Marianne";
  font-weight: 800;
}

@font-face {
  src: url("../fonts/marianne/Marianne-Light.otf") format("opentype");
  font-family: "Marianne";
  font-weight: 200;
}

@font-face {
  src: url("../fonts/marianne/Marianne-Thin.otf") format("opentype");
  font-family: "Marianne";
  font-weight: 100;
}

body {
  overflow-x: hidden;
}

/** REGLES TYPOGRAPHIQUES DE BASE */
body {
  font-family: open-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Links */
a {
  color: #3054b8;
  text-decoration: none;
}

a:focus, a:hover, a:active {
  color: #20387b;
  text-decoration: underline;
}

a.ext svg {
  display: none;
  width: 2rem;
  height: 2rem;
}

a.ext:hover svg, a.ext:focus svg, a.ext:active svg {
  display: inline-block;
  margin-left: 0.4rem;
  margin-bottom: 0.4rem;
  fill: #434345;
  vertical-align: middle;
}

a.ext:hover path, a.ext:focus path, a.ext:active path {
  stroke: #434345;
}

.block-system-main-block .node-content a {
  text-decoration: underline;
}

.block-system-main-block .node-content a:hover, .block-system-main-block .node-content a:focus, .block-system-main-block .node-content a:active {
  font-weight: 600;
}

/* Headings */
h1,
.h1-like {
  font-size: 2.6rem;
  font-family: open-sans, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 1.6rem 0;
  line-height: 1.2;
}

@media (min-width: 576px) {
  h1,
  .h1-like {
    font-size: 3.6rem;
  }
}

@media (min-width: 768px) {
  h1,
  .h1-like {
    padding: 2.6rem 0;
  }
}

h1::before, h1::after,
.h1-like::before,
.h1-like::after {
  content: '';
  width: 6rem;
  height: 0.3rem;
  display: block;
  margin: 1.1rem auto;
}

h2,
.h2-like {
  font-size: 2.2rem;
  font-family: open-sans, sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 1.5rem 0;
  padding-bottom: 0.5rem;
}

@media (min-width: 576px) {
  h2,
  .h2-like {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  h2,
  .h2-like {
    margin: 3.5rem 0;
  }
}

h2::after,
.h2-like::after {
  content: '';
  width: 3rem;
  height: 0.4rem;
  display: block;
  margin: 0.5rem auto 0;
}

h3,
.h3-like {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
  h3,
  .h3-like {
    font-size: 2.4rem;
  }
}

h4,
.h4-like {
  font-size: 1.6rem;
  font-weight: 700;
}

@media (min-width: 576px) {
  h4,
  .h4-like {
    font-size: 1.8rem;
  }
}

h5,
.h5-like {
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 576px) {
  h5,
  .h5-like {
    font-size: 1.4rem;
  }
}

h6,
.h6-like {
  font-size: 1.2rem;
  font-weight: 700;
}

@media (min-width: 576px) {
  h6,
  .h6-like {
    font-size: 1.2rem;
  }
}

/* paragraphes */
p {
  line-height: 1.3;
}

@media (min-width: 768px) {
  p {
    line-height: 1.5;
  }
}

/* Lists */
ul {
  list-style: none;
  padding-left: 0;
}

ul ul {
  padding-left: 1rem;
}

ul li::before {
  content: '';
  background-color: #3054b8;
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  margin-bottom: 0.2rem;
}

ul ul li::before {
  background-color: #000;
}

ol {
  list-style: none;
  counter-reset: decimal;
  padding-left: 0;
}

ol ol {
  padding-left: 1rem;
}

ol li {
  counter-increment: decimal;
}

ol li::before {
  content: counter(decimal) ". ";
  color: #3054b8;
}

ul li ul li::before {
  background-color: #434345;
}

ol li ol li::before {
  color: #434345;
}

ul li ul li ul li::before {
  background-color: #000;
}

ol li ol li ol li::before {
  color: #000;
}

.field__item ul,
.field__item ol {
  overflow: hidden;
}

blockquote {
  border-top: 0.1rem solid #434345;
  border-bottom: 0.1rem solid #434345;
  padding: 2.5rem 4rem;
  margin: 2rem 0;
}

blockquote::before {
  top: 2rem;
  color: #edecec;
}

blockquote::after {
  content: '\201C';
  position: absolute;
  right: 0;
  bottom: 2rem;
  font-family: georgia, serif;
  font-size: 5em;
  height: .4em;
  line-height: .9;
  color: #edecec;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

table {
  display: block;
  overflow-x: auto;
}

th {
  padding: 0.5rem 1rem;
  border-bottom: 0.1rem solid #b3b3b3;
  border-right: 0.1rem solid #b3b3b3;
}

td {
  padding: 0.5rem 1rem;
  border-bottom: 0.1rem solid #b3b3b3;
  border-right: 0.1rem solid #b3b3b3;
  word-break: normal;
}

td:last-child {
  border-right: 0;
}

tbody tr:last-child td,
tbody tr:last-child th {
  border-bottom: 0;
}

caption {
  font-style: italic;
}
/*# sourceMappingURL=base.css.map */