@charset "UTF-8";
/* Typography */
/* Tables */
table {
  width: 100%;
  border: 1px solid #EEEEEE;
  margin: 30px 0;
}

th {
  font-weight: bold;
  background: #f3f3f3;
  padding: 5px;
}

td {
  padding: 5px;
  border: 1px solid #EEEEEE;
}

/* Notice Styles */
blockquote {
  margin-bottom: 1rem;
  padding-left: 20px;
  font-size: 1.25rem;
}
blockquote cite {
  display: block;
  font-size: 80%;
  color: #666666;
}
blockquote cite::before {
  content: "— ";
}
blockquote > blockquote > blockquote {
  margin: 0;
}
blockquote > blockquote > blockquote p {
  padding: 15px;
  display: block;
  margin-top: 0rem;
  margin-bottom: 0rem;
  border: 1px solid #f0f0f0;
}
blockquote > blockquote > blockquote > p {
  /* Yellow */
  margin-left: -75px;
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
blockquote > blockquote > blockquote blockquote > p {
  /* Red */
  margin-left: -100px;
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
blockquote > blockquote > blockquote blockquote > blockquote > p {
  /* Blue */
  margin-left: -125px;
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
blockquote > blockquote > blockquote blockquote > blockquote > blockquote > p {
  /* Blue */
  margin-left: -150px;
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.default-animation {
  transition: all 0.5s ease;
}

.pulse {
  animation-name: pulse_animation;
  animation-duration: 2000ms;
  transform-origin: 70% 70%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes pulse_animation {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/* images responsive */
img {
  max-width: 100%;
}

/* Center the footer text */
.container .text-muted {
  margin: 20px 0;
  text-align: center;
}

/* Make branding more obvious */
.navbar .navbar-brand {
  font-size: 26px;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}

.header {
  background-color: #563f79;
  background-image: -webkit-linear-gradient(#563f79, #6e519b);
  background-image: linear-gradient(#563f79, #6e519b);
  padding-top: 65px;
  padding-bottom: 50px;
  text-align: center;
  color: #f5f2f8;
}
.header h1 {
  font-size: 60px;
  color: #f0f0f0;
  margin-top: 0;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .header h1 {
    font-size: 40px;
  }
}
@media only all and (max-width: 47.938rem) {
  .header h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 2.5rem;
  }
}
.header h2 {
  margin-top: 0;
  font-weight: normal;
}
@media only all and (min-width: 48rem) and (max-width: 59.938rem) {
  .header h2 {
    font-size: 30px;
  }
}
@media only all and (max-width: 47.938rem) {
  .header h2 {
    font-size: 25px;
  }
}
.header .btn {
  font-size: 1.375rem;
  padding: 10px 30px;
  margin-top: 30px;
  border-radius: 3px;
  box-shadow: none;
  border: 0;
}
@media only all and (max-width: 47.938rem) {
  .header .btn {
    font-size: 1.25rem;
  }
}

.main-content {
  margin-top: 2rem;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #f5f5f5;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.hero.hero-fullscreen {
  height: 100vh;
}
.hero.hero-large {
  height: 500px;
}
.hero.hero-medium {
  height: 400px;
}
.hero.hero-small {
  height: 110px;
}
.hero.hero-tiny {
  height: 8rem;
}
.header-fixed .hero {
  background-position: 50% 0;
}
.hero #to-start {
  display: inline-block;
  position: absolute;
  bottom: 10px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

ol.breadcrumb {
  padding-left: 0;
  background: transparent;
}

.list-item {
  margin: 30px 0 50px;
}

.blog-header-image {
  margin: 15px 0;
}

.sidebar-content {
  margin-bottom: 50px;
}

ul.pagination {
  justify-content: center;
}
ul.pagination li {
  border: 0;
}
ul.pagination li .page-link {
  display: block;
  padding: 0.5rem 0.75rem;
}
ul.pagination li .page-link span {
  display: initial;
  padding: 0;
}

.related-pages {
  padding: 0;
  list-style: none;
}
.related-pages li {
  border-bottom: 1px solid #EEEEEE;
  line-height: 34px;
}
.related-pages li:last-child {
  border-bottom: 0;
}
.related-pages li a {
  display: block;
}
.related-pages .score {
  display: block;
  float: right;
  color: #999;
  font-size: 85%;
}

.btn-file {
  position: relative;
  overflow: hidden;
}
.btn-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 100px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  outline: none;
  background: white;
  cursor: inherit;
  display: block;
}

.modular .features {
  padding: 3.125rem 0;
  text-align: center;
}
.modular .features h2 {
  margin: 0;
  line-height: 100%;
}
.modular .features h2 + h3 {
  margin-top: 0;
  font-weight: normal;
}
.modular .features h4 {
  margin: 0.625rem 0;
}
.modular .features p {
  margin: 10px 0;
  font-size: 17px;
}
@media only all and (max-width: 47.938rem) {
  .modular .features p {
    font-size: 14px;
  }
}
.modular .features .feature-items {
  margin-top: 30px;
}
.modular .features .feature-items .feature {
  display: block;
  vertical-align: top;
  margin-top: 20px;
  margin-bottom: 10px;
}
.modular .features .feature-items .feature i.fa {
  font-size: 2.5rem;
  color: #62488A;
}
.modular .features .feature-items .feature h4 {
  font-size: 1rem;
  font-weight: normal;
}
.modular .features .feature-items .feature p {
  font-size: 14px;
  margin: 5px 0 10px;
}
.modular .features.big {
  text-align: center;
}
.modular .features.big .feature {
  margin: 30px 0;
}
.modular .features.big .feature.has-icon {
  display: flex;
}
.modular .features.big .feature.has-icon i.fa {
  flex: 0 0 auto;
  font-size: 3.125rem;
}
.modular .features.big .feature.has-icon .feature-content {
  flex: 1 1 auto;
}
.modular .features.big .feature.has-icon .feature-content.push {
  margin-left: 35px;
}
.modular .features.big .feature .feature-content {
  padding-right: 15px;
}
.modular .features.big .feature .feature-content h4 {
  font-size: 1.5rem;
  text-align: left;
  margin: 0;
}
.modular .features.big .feature .feature-content p {
  padding: 0;
  text-align: left;
  font-size: 14px;
}

.callout {
  background: #f0f0f0;
  color: #666666;
  padding: 15px 15px;
}
.callout:after {
  content: "";
  display: table;
  clear: both;
}
.callout .container h2 {
  padding-top: 1.25rem;
}
.callout .container img.float-md-left {
  margin-right: 2rem;
}
.callout .container img.float-md-right {
  margin-left: 2rem;
}
@media only all and (max-width: 47.938rem) {
  .callout .container img {
    margin-bottom: 1rem;
  }
  .callout .container img.float-md-left, .callout .container img.float-md-right {
    margin: 0 auto;
  }
}

.modular .modular-row:last-child {
  margin-bottom: 2rem;
}
.modular .modular-anchor {
  display: block;
  position: relative;
  top: -64px;
  visibility: hidden;
}

body.fixed-nav {
  padding-top: 64px;
}

#grav-login {
  max-width: 50rem !important;
}
#grav-login .col-sm-2 {
  width: 50%;
  text-align: right;
  padding-top: 5px;
}
#grav-login .col-sm-10 {
  width: 50%;
}
#grav-login form {
  padding-top: 30px;
}
#grav-login .rememberme {
  float: right !important;
}
#grav-login .form-actions button {
  margin-top: 50px;
}
#grav-login .form-actions .button.secondary {
  line-height: 26px;
}
#grav-login .form-actions .button.secondary i {
  line-height: 26px;
}
#grav-login .button {
  vertical-align: bottom !important;
}

/*
Voici le lien pour les typographies : 
https://fonts.google.com/specimen/Arvo (qui remplacera la typographie Archer sur le dépliant - très similaire)
https://fonts.google.com/specimen/Roboto

Et la taille des titres est la suivante : 
Gros titres : 60pt
Titre secondaires : 24 pt
Texte paragraphes : 18 pt
Infos complémentaires (type mentions légales) : 16 pt
*/
body {
  /* Margin bottom by footer height */
  margin-bottom: 215px;
  font-family: Roboto;
  color: #13223f;
  background: url(/error/background_geometrique.png);
  background-repeat: no-repeat;
  background-position-y: -480px;
}

nav {
  background: url(/error/background_header.png);
  background-repeat: no-repeat;
  background-color: #3767d9;
}
nav a.btn-sm {
  padding: 2px 6px;
}

.main-content {
  margin-top: 0;
}

.modular-row {
  padding-bottom: 50px;
  padding-top: 0;
}
.modular-row.title {
  padding-bottom: 30px;
  padding-top: 30px;
}
.modular-row.title .big-title {
  font-size: 6rem;
  line-height: 6rem;
  color: #e9e9e9;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}
.modular-row.title .real-title {
  font-size: 1.6rem;
  line-height: 1.6rem;
  position: absolute;
  color: #13223f;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
.modular-row.title .sub-title {
  font-size: 1.2rem;
  line-height: 1.2rem;
  position: absolute;
  color: #e9e9e9;
  text-align: center;
  text-transform: uppercase;
  left: 0;
  right: 0;
  padding: 0;
  bottom: 0;
}
.modular-row.title.dark-mode {
  background-color: #4d71de;
}
.modular-row.title.dark-mode .real-title {
  color: #FFFFFF;
}
.modular-row.title.dark-mode .big-title {
  color: #335ddc;
}
.modular-row.title.dark-mode .sub-title {
  color: #335ddc;
}
.modular-row.title.verydark-mode {
  background-color: #13223f;
}
.modular-row.title.verydark-mode .real-title {
  color: #FFFFFF;
}
.modular-row.title.verydark-mode .big-title {
  color: #6b81a9;
}
.modular-row.title.verydark-mode .sub-title {
  color: #6b81a9;
}
@media (max-width: 576px) {
  .modular-row.title .big-title {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
  .modular-row.title .real-title {
    font-size: 1.1rem;
    line-height: 1.1rem;
    position: relative;
    padding: 0;
    transform: translateY(-1.3rem);
  }
  .modular-row.title .sub-title {
    font-size: 1rem;
    line-height: 1rem;
    bottom: -0.4rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .modular-row.title .big-title {
    font-size: 5rem;
    line-height: 5rem;
  }
  .modular-row.title .real-title {
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
  .modular-row.title .sub-title {
    font-size: 1.1rem;
    line-height: 1.1rem;
  }
}
.modular-row.ecran .h5, .modular-row.ecran h5 {
  color: #13223f;
  text-transform: uppercase;
  font-weight: bold;
}
.modular-row.form {
  background: #13223f;
  color: #FFFFFF;
}
.modular-row.form .h5, .modular-row.form h5 {
  color: #FFFFFF;
  font-family: Arvo;
}
.modular-row.form .control-label {
  visibility: hidden;
}
.modular-row.form .form-control::-webkit-input-placeholder {
  color: #6b81a9;
}
.modular-row.form button {
  background-color: #fbd313;
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}
.modular-row.form .sub-text {
  color: #6b81a9;
}
.modular-row.showcase {
  padding-top: 0;
  padding-bottom: 0;
  background: url(../../makila/images/background_header.png);
  background-color: #3767d9;
  background-repeat: no-repeat;
  background-position-y: -64px;
}
@media (max-width: 576px) {
  .modular-row.showcase {
    background-image: none;
  }
}
.modular-row.showcase .showcase-content {
  color: #FFFFFF;
}
.modular-row.showcase .showcase-footer {
  background: transparent;
  line-height: 0;
  padding-top: 15px;
}
.modular-row.showcase .h1, .modular-row.showcase h1 {
  margin-top: 90px;
  font-family: Arvo;
}
.modular-row.is-neuronal .showcase-content {
  padding-bottom: 28px;
}
.modular-row.is-neuronal .showcase-footer {
  height: 10px;
  padding: 0;
  background-color: #7299e8;
}
.modular-row.pictos a {
  color: #13223f;
}
.modular-row.pictos img {
  object-fit: contain;
}
.modular-row.pictos .card-title {
  text-transform: uppercase;
}
.modular-row.blogfeatured.dark-mode {
  background-color: #4d71de;
}
.modular-row.blogfeatured.dark-mode .h4, .modular-row.blogfeatured.dark-mode h4 {
  color: #FFFFFF;
}
.modular-row.blogfeatured.dark-mode .big-title {
  color: #335ddc;
}
.modular-row.blogfeatured.dark-mode .sub-title {
  color: #335ddc;
}
.modular-row.blogfeatured.verydark-mode {
  background-color: #13223f;
}
.modular-row.blogfeatured.verydark-mode .h4, .modular-row.blogfeatured.verydark-mode h4 {
  color: #FFFFFF;
}
.modular-row.blogfeatured.verydark-mode .big-title {
  color: #6b81a9;
}
.modular-row.blogfeatured.verydark-mode .sub-title {
  color: #6b81a9;
}
.modular-row .square {
  width: 14px;
  height: 14px;
  background: #fbd313;
  display: inline-block;
  margin-bottom: 14px;
}

.btn, button[type=submit] {
  box-shadow: 0 2px 20px rgba(255, 255, 255, 0.2);
  padding: 11px 30px;
  border-radius: 30px;
  background-color: #13223f;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
}

.btn:hover, button[type=submit]:hover,
.btn:focus, button[type=submit]:focus,
.btn:active, button[type=submit]:active {
  background-color: #fbd313;
  color: #13223f;
}

.blog-main .card-title {
  font-family: Arvo;
  font-size: 1.5rem;
}
.blog-main h1, .blog-main .h1 {
  font-size: 1.2rem;
}
.blog-main .list-blog-date {
  margin-top: 10px;
}
.blog-main .dark-mode {
  background-color: #4d71de;
}
.blog-main .dark-mode .card {
  background-color: #4d71de;
  color: #FFFFFF;
}
.blog-main .dark-mode .card-body {
  color: #FFFFFF;
}

.form-container {
  padding-top: 50px;
  padding-bottom: 50px;
}
.form-container .buttons {
  text-align: center;
}
.form-container .sub-text {
  padding-top: 30px;
  color: #6b81a9;
}

.btn-dark {
  color: #fff;
  background-color: #13223f;
  border-color: #13223f;
}

.badge-makila, .badge-makila:hover {
  background: #fbd313;
  color: #13223f;
}

.btn-makila-yellow, .btn-makila-yellow:hover {
  background: #fbd313;
  color: #FFFFFF;
}

.btn-makila-blue, .btn-makila-blue:hover {
  background: #13223f;
  color: #FFFFFF;
}

.pagination-container .page-link {
  color: #13223f;
}
.pagination-container .page-item.active .page-link {
  background: #13223f;
}

.footer {
  height: 215px;
}
.footer.footer-dark {
  color: #FFFFFF;
}
.footer .container {
  padding-top: 30px;
}
.footer .container .text-center {
  margin-bottom: 12px;
}
.footer .container .text-center:last-child {
  color: #6b81a9;
  font-size: 10px;
  margin-bottom: 6px;
}
.footer .container .text-center a {
  color: #6b81a9;
  font-size: 16px;
}

.def p {
  white-space: pre-line;
}
.def .col {
  padding-top: 50px;
  padding-bottom: 30px;
}
.def h4, .def .h4 {
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #13223f;
  font-weight: bold;
}
.def h5, .def .h5 {
  font-size: 1.3rem;
  line-height: 1.3rem;
  color: #13223f;
  font-weight: bold;
}

@media (max-width: 576px) {
  .navbar {
    position: fixed;
    right: 0;
    left: 0;
    border-radius: 0;
    top: 0;
    z-index: 1;
  }

  body {
    margin-top: 64px;
  }
}
/* Roboto regular */
@font-face {
  font-family: "Roboto";
  src: url("/error/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* Roboto italic */
@font-face {
  font-family: "Roboto";
  src: url("/error/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
/* Roboto bold */
@font-face {
  font-family: "Roboto";
  src: url("/error/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Roboto bold italic */
@font-face {
  font-family: "Roboto";
  src: url("/error/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
/* Arvo regular */
@font-face {
  font-family: "Arvo";
  src: url("/error/Arvo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* Arvo italic */
@font-face {
  font-family: "Arvo";
  src: url("/error/Arvo-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
/* Arvo bold */
@font-face {
  font-family: "Arvo";
  src: url("/error/Arvo-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Arvo bold italic */
@font-face {
  font-family: "Arvo";
  src: url("/error/Arvo-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-style: italic;
}

