/* Global */
html,
body {
  background: #fff;
  font: 16px/1.428 'Open Sans', sans-serif;
  color: #2d353c;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


/* Couleurs */
.text-color1{ color: #00A5A8 !important; }
.bg-color1{ background-color: #00A5A8 !important; }
.bd-color1{ border-color: #00A5A8 !important; }
.text-color2{ color: #008FB7 !important; }
.bg-color2{ background-color: #008FB7 !important; }
.bd-color2{ border-color: #008FB7 !important; }
.text-color3{ color: #0068B2 !important; }
.bg-color3{ background-color: #0068B2 !important; }
.bd-color3{ border-color: #0068B2 !important; }
.text-color4{ color: #ff6a00 !important; }
.bg-color4{ background-color: #ff6a00 !important; }
.bd-color4{ border-color: #ff6a00 !important; }
.text-color5{ color: #6b7175 !important; }
.bg-color5{ background-color: #6b7175 !important; }
.bd-color5{ border-color: #6b7175 !important; }


/* Fonts */
@font-face {
  font-family: 'eurofurence';
  src: url('../fonts/Eurofurencelight.woff2') format('woff2'),
  url('../fonts/Eurofurencelight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}


/* Titres */
h1,
.h1 {
  font: 600 36px/1.1 'Open Sans', sans-serif;
  margin-bottom: 30px;
}
h2,
.h2 {
  font: 600 24px/1.1 'Open Sans', sans-serif;
  margin-bottom: 30px;
}
h2 small,
.h2 small {
  display: block;
  margin-top: 15px;
  font-size: 16px;
}
h3,
.h3 {
  font: 600 18px/1.1 'Open Sans', sans-serif;
  margin-bottom: 20px;
}


/* Liens */
a,
a:hover,
a:focus,
a:active {
  color: #00A5A8;
}


/* Boutons */
.btn {
  padding: 6px 20px;
  min-height: 40px;
  border-radius: 22px;
  border: 0;
  text-transform: uppercase;
  font: 600 14px/2 'Open Sans', sans-serif;
}
.btn:hover,
.btn:focus,
.btn:active,
button:hover,
button:focus,
button:active {
  outline: 0;
  box-shadow: none;
}
.btn-color1 {
  background: #00A5A8;
  border: 2px solid #00A5A8;
  color: #fff;
}
.btn-color1:hover,
.btn-color1:focus,
.btn-color1:active {
  opacity: .9;
  color: #fff;
}
.btn-light {
  color: #0068B2;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active {
  background: #00A5A8;
  color: #fff;
}
.btn-border1 {
  border: 2px solid #00A5A8;
  color: #00A5A8;
  background: #fff;
}
.btn-border1:hover {
  background: #00A5A8;
  color: #fff;
}


/* Listes */
main ul {
  list-style: none;
}
main ul li {
  position: relative;
  margin-bottom: 10px;
}
main ul li::before {
  content: '\f105';
  position: absolute;
  left: -15px;
  font-family: 'FontAwesome', sans-serif;
}


/* Forms */
.input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-size: 18px;
}
.input__field {
  position: relative;
  display: block;
  float: right;
  padding: 0.8em;
  width: 60%;
  border: none;
  border-radius: 0;
  background: #fff;
  color: #fff;
  font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-appearance: none; /* for box shadows to show on iOS */
}
.input__field:focus {
  outline: none;
}
.input__label {
  display: inline-block;
  float: right;
  padding: 0 1em;
  width: 40%;
  color: #fff;
  font-weight: bold;
  font-size: 70.25%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input__label-content {
  position: relative;
  display: block;
  padding: 1.6em 0;
  width: 100%;
}

.input--hoshi {
  overflow: hidden;
}
.input__field--hoshi {
  margin-top: 1em;
  padding: 1em 0.15em;
  width: 100%;
  background: transparent;
  color: #fff;
}
.input__label--hoshi {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 0.25em;
  width: 100%;
  height: calc(100% - 1em);
  text-align: left;
  pointer-events: none;
}
.input__label-content--hoshi {
  position: absolute;
}
.input__label--hoshi::before,
.input__label--hoshi::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  border-bottom: 1px solid #fff;
}
.input__label--hoshi::after {
  margin-top: 2px;
  border-bottom: 4px solid #fff;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.input__field--hoshi:focus + .input__label--hoshi::after,
.input--filled .input__label--hoshi::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.input__field--hoshi:focus + .input__label--hoshi .input__label-content--hoshi,
.input--filled .input__label-content--hoshi {
  -webkit-animation: anim-1 0.3s forwards;
  animation: anim-1 0.3s forwards;
}

@-webkit-keyframes anim-1 {
  50% {
    opacity: 0;
    -webkit-transform: translate3d(1em, 0, 0);
    transform: translate3d(1em, 0, 0);
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(-1em, -30%, 0);
    transform: translate3d(-1em, -30%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
}

@keyframes anim-1 {
  50% {
    opacity: 0;
    -webkit-transform: translate3d(1em, 0, 0);
    transform: translate3d(1em, 0, 0);
  }
  51% {
    opacity: 0;
    -webkit-transform: translate3d(-1em, -30%, 0);
    transform: translate3d(-1em, -30%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
}
#form-contactez-nous .alert {
  background: #fff !important;
}


/* Sliders */
.slick-slider {
  visibility: hidden;
}
.slick-slider.slick-initialized {
  visibility: visible;
}


/* Header */
header {
  order: 1;
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #f3f6f7;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
  box-shadow: none;
}
.navbar-toggler .fa-times {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .fa-times {
  display: block;
}
.navbar-toggler[aria-expanded="true"] .fa-bars {
  display: none;
}

#navbar-main {
  padding: 0;
  text-align: center;
}
#navbar-main .navbar-brand {
  padding: 0;
}
#navbar-main .nav-link {
  font: 600 14px/2 'Open Sans', sans-serif;
  color: #2d353c;
  text-transform: uppercase;
}
#navbar-main .nav-link.active,
#navbar-main .nav-link:hover,
#navbar-main .nav-link:focus,
#navbar-main .nav-link:active {
  color: #00A5A8;
}
#navbar-main .nav-item.btn {
  margin: 0 auto;
}

@media screen and (min-width: 1200px) {
  #navbar-main .nav-item.btn {
    margin: 0 .5em;
  }
}


/* Footer */
footer {
  order: 99;
  margin-top: auto;
  padding: 15px 0;
  background: #1e262b;
  color: #fff;
}
footer a {
  color: #fff;
}
footer a:hover,
footer a:focus,
footer a:active {
  color: #fff;
  text-decoration: underline;
}

/* Contenus */
main {
  order: 2;
}

#home {
  padding: 90px 0 30px;
  background: -webkit-linear-gradient(120deg, rgb(0, 104, 178), rgb(0, 165, 168));
  background: linear-gradient(120deg, rgb(0, 104, 178), rgb(0, 165, 168));
  color: #fff;
}
.slick-home {
  margin-top: 60px;
}
.slick-home .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-home .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#home .btn {
  margin-top: 30px;
  margin-bottom: 15px;
}
#home a:not(.btn) {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .slick-home {
    margin-top: 0;
  }
}

/* Anmation mosue scroll */
@-webkit-keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 71%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@-moz-keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 71%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@keyframes ani-mouse {
  0% {
    opacity: 0;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 71%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
.scroll-btn {
  display: block;
  padding-top: 30px;
  text-align: center;
}
.scroll-btn > * {
  display: inline-block;
  line-height: 18px;
  font-size: 12px;
  font-weight: normal;
  color: #ffffff;
  font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
  color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
  opacity: 0.8;
  filter: alpha(opacity=80);
  text-decoration: none;
}
.scroll-btn .mouse {
  position: relative;
  display: block;
  width: 22px;
  height: 34px;
  margin: 0 auto 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 17px;
}
.scroll-btn .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: white;
  border-radius: 50%;
  -webkit-animation: ani-mouse 2.5s linear infinite;
  -moz-animation: ani-mouse 2.5s linear infinite;
  animation: ani-mouse 2.5s linear infinite;
}

#avantages {
  padding: 60px 0;
}
.avantage {
  margin-top: 30px;
  font-size: 14px;
}
.avantage i {
  font-size: 50px;
  margin-bottom: 20px;
}

#rapports {
  padding: 60px 0;
  background: #f3f6f7;
}

#plateformes {
  padding: 60px 0;
}
#plateformes .btn {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  #plateformes .btn {
    margin-top: 60px;
  }
}

#offres {
  padding: 60px 0;
  background: #f3f6f7;
}
.offre {
  position: relative;
  margin: 0 0 15px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  transition: box-shadow .3s ease-out;
}
.offre::before,
.offre::after {
  content: '';
  display: block;
  position: absolute;
}
.offre::before {
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: #fff;
  z-index: -1;
  border-radius: 7px;
}
.offre::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(120deg, rgb(0, 104, 178), rgb(0, 165, 168));
  background: linear-gradient(120deg, rgb(0, 104, 178), rgb(0, 165, 168));
  z-index: -2;
}
.offre:hover {
  box-shadow: 0 0 20px rgba(0,0,0,.3);
}
.offre .header {
  padding: 30px 0;
  cursor: pointer;
}
.offre .header img {
  margin-bottom: 20px;
  height: 50px;
  width: auto;
}
.offre .header .title {
  font-size: 28px;
  margin-bottom: 5px;
}
.offre .header .intro {
  font-size: 14px;
}
.offre .module {
  padding: 10px;
  margin-top: 10px;
  border: 1px solid;
}
.offre .module.disabled {
  opacity: .2;
}
.offre .module i {
  font-size: 30px;
  margin: 10px 5px;
  display: inline-block;
  vertical-align: middle;
}
.offre .module span {
  display: inline-block;
  vertical-align: middle;
}
.offre.complet::before {
  background: none;
}
.offre.complet .module {
  border-color: #fff;
}
#offres .btn {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .offre {
    height: calc(100% - 15px);
  }
  .offre .header {
    cursor: default;
  }
  .offre .content.collapse,
  .offre .content.collapse.show,
  .offre .content.collapsing {
    display: block !important;
    height: auto !important;
  }
}

#who {
  padding: 60px 0;
}
#who figure {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

#contact {
  padding: 60px 0;
  background: -webkit-linear-gradient(120deg, rgb(0, 104, 178), rgb(0, 165, 168));
  background: linear-gradient(120deg, rgb(0, 104, 178), rgb(0, 165, 168));
  color: #fff;
}
#contact a,
#contact a:hover,
#contact a:focus,
#contact a:active {
  color: #fff;
}

#modal-demo {
  top: 75px;
  background: #fff;
  opacity: 0;

  transition: opacity .3s ease-out;
}
#modal-demo.show {
  opacity: 1;
}
#modal-demo .modal-dialog {
  height: calc(100vh - calc(150px + 3.5rem));
  display: flex;
  align-items: center;
}
#modal-demo .close {
  position: fixed;
  top: 100px;
  right: 20px;
  font-size: 36px;
}
#modal-demo .modal-content {
  border: none;
}

/* Misc */
.keebat {
  font-family: 'Eurofurence', sans-serif;
  font-weight: 300;
  font-size: 1.29em
}
.keebat strong {
  font-family: 'Kanit', sans-serif;
  font-weight: 600;
  font-size: 0.65em
}

#scroll-top {
  position: fixed;
  bottom: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1e262b;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  opacity: 0;

  transition: opacity .3s ease-out;
}
#scroll-top:hover,
#scroll-top:focus,
#scroll-top:active {
  text-decoration: none;
}
.scrolled #scroll-top {
  opacity: 1;
}