/*

Title: Atelier S-B/
Author: S-B/
URL: https://www.atelier-sb.net/

*/

/* Root //////////////////////////// */

/*
:root {
    --green: #28a745;
    --white: #ffffff;
    --gray: #869ab8;
    --gray-dark: #384c74;
    --primary: #1e5449; // vert forêt
    --secondary: #506690;
    --success: #42ba96;
    --info: #7c69ef;
    --warning: #fad776;
    --danger: #df4759;
    --light: #f9fbfd;
    --dark: #1b2a4e;
    --primary-desat: #6c8aec;
    --black: #161c2d;
    --white: #ffffff;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*/


/* Fonts //////////////////////////// */

@import url('https://fonts.googleapis.com/css?family=Inter');
@import url('https://fonts.googleapis.com/css?family=Roboto');
@import url('https://fonts.googleapis.com/css?family=Lato');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');

@font-face {
    font-family: HKGrotesk;
    font-weight: 400;
    src: url(./fonts/HKGrotesk/HKGrotesk-Regular.woff2) format("woff2"), url(../fonts/HKGrotesk/HKGrotesk-Regular.woff) format("woff");
}
@font-face {
    font-family: HKGrotesk;
    font-weight: 600;
    src: url(./fonts/HKGrotesk/HKGrotesk-Medium.woff2) format("woff2"), url(../fonts/HKGrotesk/HKGrotesk-Medium.woff) format("woff");
}
@font-face {
    font-family: HKGrotesk;
    font-weight: bold;
    src: url(./fonts/HKGrotesk/HKGrotesk-Bold.woff2) format("woff2"), url(../fonts/HKGrotesk/HKGrotesk-Bold.woff) format("woff");
}


/* Base //////////////////////////// */

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  /*font-size: 16px;*/
}

body {
  color: #222;
  background-color: #fff;
} body.dark {
  color: #8e92a1;
  background-color: #262A41;
}


/* Typographie //////////////////////////// */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: HKGrotesk, serif;
}

h1 {
  font-family: HKGrotesk, serif;
  font-style: normal;
  font-weight: bold;
  margin: 0;
}

h2 {
  font-family: HKGrotesk, serif;
  font-style: normal;
  font-weight: bold;
  margin: 0;
}

h3 {
  font-family: HKGrotesk, serif;
}

h4 {
  font-family: HKGrotesk, serif;
}

p {
  font-family: 'Inter', sans-serif;
  line-height: 1.8em;
  margin: 1em 0;
}

blockquote {
  font-family: 'Inter', sans-serif;
}

a {
  text-decoration: none;
  background-color: transparent;
}

/*
a:visited {
  color: black;
}

a:hover {
  color: grey;
}*/


/*
a:link,
a:visited {
  color: #2565f8;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 101, 248, 0.25);
  -webkit-transition: all .2s;
     -moz-transition: all .2s;
       -o-transition: all .2s;
          transition: all .2s;
} body.dark a:link, body.dark a:visited {
    color: #3D9EFF;
    border-color: rgba(61, 158, 255, 0.25);
  }

a:hover, body.dark a:hover {
  color: #FA1E8D;
  text-decoration: none;
  border-bottom: 1px solid rgba(250, 30, 141, 0.5);
}
a:focus {
  color: #2565f8;
  background: #1efa8b;
  border: none;
}*/

.small-text {
  font-size: 0.9em;
  color: #a5a5a5; /* no good */
}

.text-small {
  font-size: 0.8em;
}

.text-thin {
  font-weight: 400;
}

.text-primary {
  color: #1e5449;
}

.text-success {
  color: #42ba96;
}

.text-muted {
  color: #869ab8;
}

.text-white {
  color: #FFFFFF;
}

.text-green-light {
  color: #edf8f5;
}

.text-centered {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

/* .text-line-height-0 {
  line-height: 1;
} */

.text-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.5em;
}

/* Colors /// */

.color-primary {
  background-color: #1e5449;
  color: #fff;
}

/* Images /// */

img {
  width: 100%;
}

.img-xs {
  max-width: 10em;
}

.figure-img {
  margin-top: 1em;
  margin-bottom: 1em;
  /* box-sizing: content-box; */
}

img.icon.icon-lg {
  width: 4rem;
  height: 4rem;
  width: 100%;
}


.card-img-start {
  /* width: 50%; */
  border-radius: 0.25em 0 0 0.25em;
}

/* @media (min-width: 768px) {
  .card-img-start {
    width: 100%;
    border-radius: 0.25em;
} */

.object-fit-cover {
  object-fit: cover;
}

img.img-max-height {
  max-height: 50%;
}

.background-img-ebook {
  background-image: url(../img/book-sustainable-web-design.jpg);
  /* background-origin: border-box;
  background-repeat: no-repeat; */
  object-fit: cover;
}

.card-img-portfolio {
    width: 100%;
    border-radius: 0.25em;
}

/* Mise en page //////////////////////////// */

.centered {
  text-align: center;
}

.rounded {
  border-radius: 0.375em!important;
}

.justify-content-center {
  display: flex;
  justify-content: center !important;
}

.flex-column-center {
  flex-direction: column;
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex {
  display: flex;
}

.flex-column-responsive {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .flex-column-responsive {
    display: flex;
    flex-direction: row;
  }
}

.flex-item-1 {
  flex: 1;
}

@media (min-width: 1024px) {
  .flex-item-1 {
    flex: 1;
  }
}

.flex-item-2 {
  flex: 1;
}

@media (min-width: 1024px) {
  .flex-item-2 {
    flex: 3;
  }
}

@media (min-width: 768px) {
  .flex-item-3 {
      /* background-image: url(../img/book-sustainable-web-design.jpg); */
      flex: 0 0 auto;
      width: 40%;
  }

  .bg-cover {
    background: no-repeat 50% / cover;
  }

  .bg-contain {
    background: no-repeat 50% / contain;
  }
}

.flex-item-4 {
  flex: 1 1 auto;
}

/* ///////////// */


.col {
  flex-basis: 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.row {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

.row-1 {
  display: flex;
  flex-wrap: wrap;
}

.card-flex-col-start {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
}

.grid-0 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .grid-0 {
      grid-template-columns: repeat(1, 1fr);
      width: 80%;
      margin: 0 auto;
      /* text-align: left; */
      margin-bottom: 3em;
    }
}



.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .grid-1 {
      grid-template-columns: repeat(3, 1fr);
      width: 80%;
      margin: 0 auto;
      text-align: left;
      margin-bottom: 3em;
    }
}

.grid-1-no-gap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .grid-1-no-gap {
      grid-template-columns: repeat(3, 1fr);
      width: 80%;
      margin: 0 auto;
      /* text-align: left; */
      margin-bottom: 3em;
    }
}

.grid-2-no-gap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
}

@media (min-width: 1024px) {
    .grid-2-no-gap {
      grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3-no-gap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
}

@media (min-width: 1024px) {
    .grid-3-no-gap {
      grid-template-columns: repeat(3, 1fr);
    }
}



.grid-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
      width: 80%;
      margin: 0 auto;
      text-align: left;
      margin-bottom: 3em;
    }
}

.grid-2-good {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
}

@media (min-width: 1024px) {
    .grid-2-good {
      grid-template-columns: repeat(2, 1fr);
    }
}

.grid-2-good-cta {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
}

@media (min-width: 1200px) {
    .grid-2-good-cta {
      grid-template-columns: 1fr 2fr;
    }
}

.grid-2-good-cta-no-gap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
}

@media (min-width: 1200px) {
    .grid-2-good-cta-no-gap {
      grid-template-columns: 1fr 2fr;
    }
}

.grid-2-good-cta-no-gap-stretch {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
}

@media (min-width: 1200px) {
    .grid-2-good-cta-no-gap-stretch {
      grid-template-columns: 1fr 2fr;
      align-items: stretch;
    }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
      width: 80%;
      margin: 0 auto;
      text-align: left;
    }
}

.grid-3-gap-2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 2em;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 992px) {
    .grid-3-gap-2 {
      grid-template-columns: repeat(3, 1fr);
      width: 80%;
      margin: 0 auto;
      text-align: left;
    }
}

.grid-3-gap-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 3em;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .grid-3-gap-3 {
      grid-template-columns: repeat(3, 1fr);
      width: 80%;
      margin: 0 auto;
      text-align: left;
    }
}



.grid-process {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
  margin: 0 1.5em 2em 1.5em;
  text-align: center;
}

/* @media (min-width: 1024px) {
    .grid-process {
      grid-template-columns: repeat(2, 1fr);
      width: 80%;
      margin: 0 auto;
      text-align: left;
      margin-bottom: 3em;
      justify-items: stretch;
      align-items: end;
    }
} */

@media (min-width: 1024px) {
  .grid-process {
    grid-template-columns: repeat(1, 1fr);
    width: 80%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3em;
    /* justify-items: stretch;
    align-items: end; */
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .grid-4 {
      grid-template-columns: repeat(4, 1fr);
      width: 80%;
      margin: 0 auto;
      text-align: left;
      /* margin-bottom: 3em; */
    }
}


.grid-6 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0;
  margin: 0 1.5em 5em 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .grid-6 {
      grid-template-columns: 2fr 1fr 2fr 1fr 2fr;
      width: 80%;
      margin: 0 auto;
      /* margin: 0 auto 8em auto; */
      /* text-align: left; */
      /* margin-bottom: 3em; */
    }
}





.introduction-1 {
  padding: 8em 1em 6em 1em;
}

.introduction-2 {
  padding: 8em 1em;
}

.introduction-3 {
  padding: 8em 1em;
}


/*.text-muted {
  color: #869ab8;
}*/

.paragraphe-services {
  color: #869ab8;
  font-size: 1em;
  line-height: 1.6em;
}

.lien-services {
  color: #1e5449;
  font-size: 0.9em;
/*   margin-top: 1em; */
}

/* a.liens-services {
  margin-top: 1em;
} */


/* Arrows */

/* span.arrows {
  font-family: 'Inter', sans-serif;
} */

.arrows {
  font-family: 'Inter', sans-serif;
  font-weight: 100;
}


.disabled {
  pointer-events: none;
}

/* Structure et mise en page //////////////////////////// */

main {
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0 0 0 0;
}

/*@media (min-width: 768px) {
    main {

    }
  }*/

@media (min-width: 1024px) {
    main {
      width: 100%;
    }
}


@media (min-width: 1024px) {
    .container {
      width: 80%;
    }
}

@media (min-width: 1024px) {
  .container-70 {
    width: 70%;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .container-50 {
    width: 50%;
    margin: 0 auto;
  }
}

.container-60 {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .container-60 {
    width: 60%;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .content {
    width: 60%;
    text-align: center;
    margin: 0 auto;
  }
}




/* Backgrounds */

.bg-white {
  background-color: #FFFFFF;
}

.bg-light {
  background-color: #f9fbfd;
}

body.dark .bg-light {
  background-color: #1c1f30;
}

.bg-primary {
  background-color: #1e5449;
}

.bg-success {
  background-color: #42ba96;
}

.bg-light-green {
  background-color: #edf8f5;
}



/* article {
  width: 70%;
} */

/* Margins */

.margin-t-xs {
  margin-top: 0.5em;
}

.margin-t-1 {
  margin-top: 1em;
}

.margin-t-2 {
  margin-top: 2em;
}

.margin-t-3 {
  margin-top: 3em;
}

.margin-b-xs {
  margin-bottom: 0.5em;
}

.margin-b-0 {
  margin-bottom: 0;
}

.margin-b-1 {
  margin-bottom: 1em;
}

.margin-b-2 {
  margin-bottom: 2em;
}

.margin-b-3 {
  margin-bottom: 3em;
}

.margin-b-4 {
  margin-bottom: 4em;
}

.margin-b-5 {
  margin-bottom: 5em;
}

.margin-b-6 {
  margin-bottom: 6em;
}

.margin-b-8 {
  margin-bottom: 8em;
}

.margin-tb-1 {
  margin: 1em auto;
}

.margin-tb-2 {
  margin: 2em auto !important;
}

.margin-tb-3 {
  margin: 3em auto;
}

/* Paddings /// */

.padding-2 {
  padding: 2em;
}

.padding-3 {
  padding: 3em;
}

.padding-4 {
  padding: 4em;
}

.padding-lr-2 {
  padding: 0 2em;
}

.padding-tb-2 {
  padding: 2em 0;
}

.padding-tb-5 {
  padding: 5em 0;
}


.no-padding {
  padding: 0 !important;
}

/* Icons /// */

.icon > svg {
  width: 3rem;
  height: 3rem;
}
.icon[class*="text-"] > svg [fill]:not([fill="none"]) {
  fill: currentColor !important;
}
.icon-xs > svg {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-sm > svg {
  width: 2.25rem;
  height: 2.25rem;
}
.icon-lg > svg {
  width: 4rem;
  height: 4rem;
}
.icon-xl > svg {
  width: 5rem;
  height: 5rem;
}
.icon-circle {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 4.1875rem;
  height: 4.1875rem;
  border-radius: 50%;
}

.icon-circle-sm {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  border-radius: 50%;
}

.icon-circle-lg {
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 3em;
  height: 3em;
  border-radius: 50%;
}

/* Badges */

.badge {
  border-radius: 0.375rem;
  color: #fff;
  display: inline-block;
  font-size: .8em;
  font-weight: 500;
  line-height: 1;
  padding: 0.4rem 0.7rem;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
}

.badge.bg-success-soft {
  background-color: rgba(66,186,150,.1);
  color: #42ba96;
}
.badge-rounded-circle {
  border-radius: 50rem;
  /* height: calc(1em + 0.5rem); */
  /* padding-left: 0.25rem;
  padding-right: 0.25rem; */
}

.badge-float-outside {
    right: -0.5rem;
    top: -0.5rem;
}

.badge-float {
    position: absolute;
    z-index: 1000;
}

/* Test */

@media (max-width: 768px) {
    .d-md-block {
        display: block !important;
  }
    .d-none {
        display: none !important;
  }
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #f1f4f8;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}


/* Navigation //////////////////////////// */

header {
  /* padding: 1em; */
}

nav {
  font-family: 'Inter', sans-serif;
  text-align: center;

  /* display: block;
  color: #FFFFFF;
  padding: 0;
  height: 25px; */

  /*background-color: #000000;*/
  /*justify-content: space-between;*/
  /*font-weight: 500;*/
  /*margin-bottom: 1em;*/
  /*margin-bottom: 1.5em;*/
}

a.logo-center {
  /*text-align: center;*/
  color: #869ab8;
}

a:visited.logo-center {
  /*text-align: center;*/
  color: #869ab8;
}

a {
  /*text-align: center;*/
  color: #869ab8;
}


/* Menu /// */

@media (min-width: 1024px) {
  .menu {
    /* display: flex;
    justify-content: space-between; */
  }
  .menu li {
    list-style: none;
    display: inline;
    border-bottom: 0;
    background-color: transparent;
    }
  }


  @media (min-width: 769px) {
    .d-menu-none {
        display: none !important;
  }
}








button.switch-theme {
  background-color: transparent;
  border: none;
}


.switch-theme {
  background: url('../img/moon.svg') no-repeat transparent center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border: none;
} body.dark .switch-theme {
  background-image: url('../img/sun.svg');
}

/* @media (max-width: 780px) {
  .switch-theme {
    background-size: contain;
    width: 30px;
    height: 30px;
  }
}
 */


/* .anchor {

} */

/* Margins  //////////////////////////// */

.margin-right-s {
  margin-right: 0.25em !important;
}

.margin-right-m {
  margin-right: 0.5em !important;
}

.margin-right-l {
  margin-right: 1em !important;
}

.margin-l-s {
  margin-left: 0.25em !important;
}

.margin-l-m {
  margin-left: 0.5em !important;
}

.margin-l-l {
  margin-left: 1em !important;
}

.margin-r-s {
  margin-right: 0.25em !important;
}

.margin-r-m {
  margin-right: 0.5em !important;
}

.margin-r-l {
  margin-right: 1em !important;
}

.margin-t-m-3 {
  margin-top: -3em;
}


/* Composants //////////////////////////// */

.card {
  /*cursor: mouse;*/
  border-radius: 0.25em;
  /*border-radius: 100%;*/
  position: relative;
  /* margin-top: -3em; */
  display: block;
  background-color: #FFFFFF;
  padding: 2em;
  box-shadow: 0 1.5rem 4rem rgb(22 28 45 / 10%);
  /*box-shadow: 0.0625em 0.1875em 0.3125em rgba(0, 0, 0, 0.25);*/
  /*margin: -3em auto 0 auto;*/
  min-width: 3em;
  /*width:75px;
  height:75px;*/
  /* margin-bottom: 3em; */
}

/* .card p {
  margin-bottom: 0;
} */

@media (min-width: 1024px) {
  .card {

  }
}

/*
.card:hover{
  box-shadow: 0 2rem 5rem rgba(22, 28, 45, 0.1), 0 0.5rem 1rem -0.75rem rgba(22, 28, 45, 0.5) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -15px, 0);
}*/


.card-no-link {
  /*cursor: mouse;*/
  border-radius: 0.25em;
  /*border-radius: 100%;*/
  position: relative;
  /* margin-top: -3em; */
  display: block;
  background-color: #FFFFFF;
  padding: 2em;
  box-shadow: 0 1.5rem 4rem rgb(22 28 45 / 10%);
  /*box-shadow: 0.0625em 0.1875em 0.3125em rgba(0, 0, 0, 0.25);*/
  /*margin: -3em auto 0 auto;*/
  min-width: 3em;
  /*width:75px;
  height:75px;*/
  /* margin-bottom: 3em; */
}

.card-no-link p {
  margin-bottom: 0;
}

body.dark .card-no-link {
  border-radius: 0.25em;
  position: relative;
  display: block;
  background-color: #2f3450;
  padding: 2em;
  box-shadow: 0 1.5rem 4rem rgb(22 28 45 / 10%);
  min-width: 3em;
}


.card-transparent {
  /*cursor: mouse;*/
  /* border-radius: 0.25em; */
  position: relative;
  display: block;
  background-color: transparent;
  padding: 2em;
  min-width: 3em;
  /* margin-bottom: 3em; */
}

.card-transparent-no-padding {
  /*cursor: mouse;*/
  border-radius: 0.25em;
  position: relative;
  display: block;
  background-color: transparent;
  padding: 0;
  min-width: 3em;
  margin-bottom: 3em;
}


.card-green {
  border-radius: 0.25em;
  position: relative;
  display: block;
  background-color: #1e5449;
  padding: 3em;
  margin-bottom: 3em;
}





.card-cta {
  cursor: mouse;
  border-radius: 0.25em;
  position: relative;
  /* display: block; */
  background-color: #FFFFFF;
  /* padding: 2em; */
  box-shadow: 0 1.5rem 4rem rgb(22 28 45 / 10%);
  /*box-shadow: 0.0625em 0.1875em 0.3125em rgba(0, 0, 0, 0.25);*/
  min-width: 3em;
}

/* .card p {
  margin-bottom: 0;
} */

@media (min-width: 1024px) {
  .card-cta {

  }
}


/* Contact cards */

.card-contact-flex {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}



/* Process */

.process h3 {
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 1em;
}

@media (min-width: 1024px) {
  .process h3 {
    margin-bottom: 0;
  }
}

.process p {
  font-size: 1em;
}

.process img {
  padding: 1em 0;
  max-height: 10em;
  width: auto;
}

.card-process-flex {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Forms /// */

/* .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #f1f4f8;
  border-radius: 0.375rem;
  box-shadow: 0 0;
  color: #161c2d;
  display: block;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 0.8125rem 1.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  width: 100%;
}

label {
  display: inline-block;
} */

/* .form-floating {
  position: relative;
}

.form-control-flush, .form-floating>.form-control-flush {
  border-left-width: 0;
  border-radius: 0;
  border-right-width: 0;
  border-top-width: 0;
  padding-left: 0;
  padding-right: 0;
}
.form-floating>.form-control {
  padding: 1rem 1.25rem;
}
.form-floating>.form-control, .form-floating>.form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #f1f4f8;
  border-radius: 0.375rem;
  box-shadow: 0 0;
  color: #161c2d;
  display: block;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  padding: 0.8125rem 1.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  width: 100%;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.form-floating>.form-control-flush~label {
  border-width: 0;
  padding-left: 0;
  padding-right: 0;
}
.form-floating>label {
  color: #869ab8;
}
.form-floating>label {
  border: 1px solid transparent;
  height: 100%;
  left: 0;
  padding: 1rem 1.25rem;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}
label {
  display: inline-block;
} */


/* Buttons /// */


.btn {
  font-family: HKGrotesk, serif;
  font-weight: 600;
  border-radius: 0.25em;
  display: inline-block;
}

/*.btn {
  display: inline-block;
  font-weight: 600;
  color: #161c2d;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.8125rem 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  border-radius: 0.375rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}*/

.btn-primary {
  color: #FFFFFF;
  background-color: #1e5449;
  border-color: #1e5449;
  box-shadow: none;
}

.btn-primary-soft {
  color: rgba(30, 84, 73, 1);
  background-color: rgba(30, 84, 73, 0.1);
  border-color: rgba(30, 84, 73, 0.1);
  box-shadow: none;
}

body.dark .btn-primary-soft {
  background-color: rgba(199, 235, 227, 0.9);
  border-color: rgba(199, 235, 227, 0.9);
}

.btn-secondary {
  color: #FFFFFF;
  background-color: #42ba96;
  border-color: #42ba96;
  box-shadow: none;
}

.btn-success {
  color: #FFFFFF;
  background-color: #42ba96;
  border-color: #42ba96;
  box-shadow: none;
}

.btn-white {
  color: #1e5449;
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: none;
}

.btn-m {
  padding: 0.8em 1.4em;
  margin: 0.8em auto 0 auto;
  font-size: 0.9em;
  line-height: 1.5em;
}

.btn-l {
  padding: 1em 1.6em;
  margin: 1em 0.3em 0 0.3em;
  font-size: 1em;
  line-height: 1.5em;
}

.btn-cta {
  padding: 1em 1.6em;
  font-size: 1em;
  line-height: 1.5em;
}

/* .btn-inactive {
  cursor: unset;
} */


/* .btn-rounded-circle {
  display: inline-block;
  height: 1em;
  width: 1em;
  border-radius: 50%;
  padding: 1em;
  vertical-align: middle;
  text-align: center;
}

.btn-rounded-circle>* {
  display: block;
  line-height: 1;
  width: 1em;
}
 */

 [type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}
button, select {
  text-transform: none;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button {
  cursor: pointer;
}


/* Effets et transitions //////////////////////////// */

.lift {
    -webkit-transition: box-shadow 0.25s ease, -webkit-transform 0.25s ease;
    transition: box-shadow 0.25s ease, -webkit-transform 0.25s ease;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    transition: box-shadow 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.lift:focus,
.lift:hover {
    box-shadow: 0 1rem 2.5rem rgba(22, 28, 45, 0.1), 0 0.5rem 1rem -0.75rem rgba(22, 28, 45, 0.1) !important;
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
}

/*
.lift-lg:focus,
.lift-lg:hover {
    box-shadow: 0 2rem 5rem rgba(22, 28, 45, 0.1), 0 0.5rem 1rem -0.75rem rgba(22, 28, 45, 0.05) !important;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
}*/

/* Sections //////////////////////////// */


/* --- Section 1 ///////////// */

.introduction {
  /*height: 100vh;*/
  padding: 8em 1em 12em 1em;
}

h1.introduction-title {
  font-size: 2em;
}

.introduction-lead {
  font-family: 'Inter', sans-serif;
  font-size: 1.5em;
  color: #869ab8;
  margin: 1em 0;
}



/* --- Section 2 ///////////// */

.services {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5em;
  margin: 0 1.5em 0 1.5em;
  text-align: center;
}

@media (min-width: 1024px) {
    .services {
      grid-template-columns: repeat(3, 1fr);
      width: 80%;
      margin: 0 auto;
      text-align: left;
      margin-bottom: 3em;
    }
}

.title-card {
  font-weight: normal;
}

/* --- Section 3 ///////////// */

.processus {
  background-color: #1e5449;
}

@media (min-width: 1024px) {
    .processus {
    }
}

/* --- Section 4 ///////////// */

.devis {
  background-color: #1e5449;
  cursor: mouse;
  border-radius: 0.25em;
  position: relative;
  display: block;
  padding: 2em;
  box-shadow: 0 1.5rem 4rem rgb(22 28 45 / 10%);
  margin-bottom: 3em;
}

@media (min-width: 1024px) {
    .devis {
      width: 80%;
      margin: 0 auto;
      text-align: left;
      margin-bottom: 3em;
    }
}

/* --- Section 5 ///////////// */

.cta {
  background-color: transparent;
  text-align: center;
  position: relative;
  display: block;
  padding: 2em;
}

@media (min-width: 1024px) {
    .cta {
      width: 80%;
      margin: 0 auto;
      margin-bottom: 3em;
    }
}

.title-cta {
  font-weight: normal;
  font-size: 1.7em;
}

.paragraphe-cta {
  color: #869ab8;
  font-size: 1.1em;
}




/* --- Footer ///////////// */

footer {
  /*background-color: #f9fbfd;*/
  padding: 1em;
  text-align: center;
  /*width: 100%;*/
}

@media (min-width: 1024px) {
  footer {

  }
}


/* --- Article Single ///////////// */

.article {
  background-color: transparent;
/*   text-align: center;
  position: relative;
  display: block;
  padding: 2em; */
  padding: 5em 0;
}

@media (min-width: 1024px) {
    .article {
      width: 80%;
      margin: 0 auto;
    }
}

.introduction {
  /*height: 100vh;*/
  padding: 8em 1em 12em 1em;
}

.article-title {
  font-size: 2.4em;
  font-weight: normal;
}

.article-introduction {
  /* margin: 1em 0;
  padding: 1em 0; */
}

.article-text {
  font-family: 'Inter', sans-serif;
  font-size: 1em;
  font-weight: normal;
  text-align: left;
}



/* Librairies Custom //////////////////////////// */

.greyscale {
    filter: grayscale(1);
}

.greyscale:hover {
    filter: grayscale(0);
}



/* Librairies Custom //////////////////////////// */

/* For Feather Icons with JS */
.feather {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feather-small {
  width: 0.8em;
  height: 0.8em;
}

.ms-3 {
    margin-left: 0.75rem!important;
}

/* For FontAwesome with JS */

/* .fa-xl {
  font-size: 10em;
} */

.fa-green {
  color: #5abea9;
}

.fa-muted {
  color: #869ab8;
}


/* For Typed.js with JS */

/* Cursor */
/* .typed-cursor {

}

.typed-cursor.typed-cursor--blink {

}
 */



  /* For Flickity Carousel */


/* .flickity-viewport {
  height: 20em;
}
 */

.carousel-cell {
  width: 30%;
  height: 30em;
  margin-right: 2em;
  border-radius: 0.25em;
  counter-increment: carousel-cell;
  background-color: blue;
}

.carousel-cell img {
  width: 100%; /* full width */
/*   height: 15em; */
  /* object-fit: cover; */
/*   background-size: cover; */
  /* height: 100vh; */
  /* min-width: 150px; */
  /* mmax-width: 100%; */
/*   filter: grayscale(100%); */
  border: 5px solid #f8f8f8;
  margin-bottom: 0;
}

.carousel-cell.is-selected {
  /* background-color: #663399; */
  /* filter: grayscale(100%); */
  background-color: lightblue;
}

.carousel-cell img:hover  {
/*   background-color: #663399; */
/*   box-shadow: 0 15px 35px rgba(50, 50, 93, .1), 0 5px 15px rgba(0, 0, 0, .07); */
  border: 5px solid #E0D9FD;
}

.carousel-cell a {
  text-decoration: none;
  border-bottom: 0;
}
