:root {
  --dark: #2c3340;
  --white-smoke: #f4f4f487;
  --grade-2-color-2: #ff933c;
  --grade-2-color-1: #f8238f;
  --white: white;
  --alice-blue: #e1e6ee;
  --gray-4: #d3d8e1;
  --link-blue: #2583fd;
  --grade-1-color-1: #4c39f3;
  --grade-1-color-2: #39abff;
  --dark-grey: #999;
  --deep-sky-blue: #03a9f4;
  --black: #202020;
  --deep-sky-blue-2: #03a9f4;
}

body {
  color: #333;
  font-family: Raleway, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h2 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 28px;
}

h4 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 8px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}

p {
  margin-bottom: 10px;
}

a {
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

ol {
  color: var(--dark);
  margin-top: 16px;
  margin-bottom: 24px;
  padding-left: 40px;
  font-family: Lato, sans-serif;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

.header {
  z-index: 5;
  width: 100%;
  position: fixed;
  top: 0;
  box-shadow: 0 1px 3px #00000042;
}

.navbar {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  display: flex;
}

.navlink {
  color: #202020;
  text-transform: capitalize;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 2px 11px 0;
  font-size: 16px;
  font-weight: 400;
  display: flex;
}

.navlink:hover {
  color: #03a9f4;
}

.navlink.w--current {
  color: #03a9f4;
  align-self: stretch;
}

.brand.w--current {
  flex: none;
  order: -1;
  justify-content: center;
  align-items: center;
  padding-bottom: 2px;
  padding-left: 21px;
  padding-right: 21px;
  display: flex;
}

.navbar-container, .navmenu {
  flex: 1;
  display: flex;
}

.navmenu-blank {
  flex: 1;
}

.logo {
  letter-spacing: 1px;
  text-transform: none;
  font-family: Raleway, sans-serif;
  font-size: 20px;
}

.logo.logoheader {
  margin-top: 0;
  margin-bottom: 45px;
  font-size: 50px;
  display: none;
}

.logo-milieu {
  color: #03a9f4;
}

.section-hero {
  background-image: url('../images/banniere01.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  height: 80vh;
  margin-top: 60px;
  display: flex;
}

.container-hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.h1-hero {
  color: #202020;
  text-align: center;
  margin-bottom: 17px;
  font-size: 60px;
  font-weight: 800;
  line-height: 64px;
}

.h4-hero {
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

.button-hero {
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  background-color: #03a9f4;
  border-radius: 2px;
  margin-top: 20px;
  padding: 15px 19px;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  transition: all .4s cubic-bezier(.445, .05, .55, .95);
  box-shadow: 2px 2px 4px 2px #00000029;
}

.section-boxes {
  flex-flow: column wrap;
  place-content: center;
  padding-top: 20px;
  display: flex;
}

.div-box {
  flex: 0 auto;
  width: 47%;
  margin: 12px;
  position: relative;
}

.img-box {
  width: 100%;
}

.div-text-box {
  background-image: linear-gradient(#00000029, #00000029);
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  transition: all .4s;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.div-text-box.green-overlay {
  background-image: linear-gradient(#81c68340, #81c68340);
}

.div-text-box.blue-overlay {
  background-image: linear-gradient(#03a9f440, #03a9f440);
}

.h1-box {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 1px 1px 6px #000000bf;
  font-size: 32px;
  font-weight: 500;
  line-height: 47px;
}

.container-boxes {
  flex-wrap: wrap;
  place-content: center;
  display: flex;
}

.section-pricing {
  background-color: var(--white-smoke);
  background-image: none;
  padding-top: 20px;
  padding-bottom: 31px;
}

.container-pricing {
  justify-content: center;
  display: flex;
}

.div-pricing-element {
  background-color: #fff;
  border: 1px solid #0000001a;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 290px;
  margin: 25px 11px 27px;
  padding: 19px 31px 30px;
  display: flex;
  box-shadow: 1px 1px 3px #0000003d;
}

.heading-pricing-1 {
  color: #4e5197;
  text-align: center;
  text-transform: uppercase;
  align-self: center;
  font-family: Lato, sans-serif;
  font-size: 42px;
}

.heading-pricing-2 {
  color: #27bccf;
  text-align: center;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 41px;
}

.heading-pricing-3 {
  color: #27bccf;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
}

.heading-pricing-4 {
  color: #999;
  text-align: center;
  flex: 1;
  margin-bottom: 20px;
  font-size: 19px;
}

.img-pricing {
  max-height: 110px;
  margin-top: 3px;
  margin-bottom: 11px;
}

.heading-section-1 {
  color: #26547c;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 19px;
  font-family: Roboto, sans-serif;
  font-weight: 300;
}

.paragraph-section-1 {
  color: #999;
  text-align: center;
  margin-left: 5px;
  margin-right: 5px;
  font-family: Roboto, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 23px;
}

.paragraph-section-1.quote {
  margin-top: 33px;
  margin-bottom: 45px;
  font-family: Raleway, sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
}

.section-clients {
  padding-top: 15px;
  padding-bottom: 15px;
}

.div-clients {
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  min-height: 100px;
  margin-top: 20px;
  display: flex;
}

.div-client-element {
  opacity: .83;
  filter: grayscale();
  border: 1px solid #eaeaea;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 110px;
  transition: all .4s cubic-bezier(.445, .05, .55, .95);
  display: flex;
}

.div-client-element:hover {
  filter: none;
}

.img-client {
  width: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footer {
  padding-top: 15px;
  padding-bottom: 15px;
}

.text-footer {
  color: #999;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

.text-footer.small-footer {
  font-size: 13px;
  font-weight: 400;
}

.section-contact {
  padding-top: 18px;
  padding-bottom: 11px;
}

.label-contact {
  color: #999;
  font-weight: 400;
}

.text-box-contact {
  border-top: 0 solid #000;
  border-left: 0 solid #000;
  border-right: 0 solid #000;
  flex: 1;
  min-width: 210px;
  min-height: 45px;
  margin-left: 6px;
  margin-right: 6px;
}

.form-contact {
  flex-flow: column wrap;
  margin-top: 14px;
  display: flex;
}

.message-box-contact {
  align-self: center;
  min-height: 150px;
  margin-top: 16px;
  margin-left: 6px;
  margin-right: 6px;
}

.bouton-form {
  text-transform: uppercase;
  border-radius: 3px;
  align-self: center;
  margin-top: 5px;
  padding: 14px 33px;
  font-size: 15px;
  display: block;
}

.div-bouton-form {
  flex: 1;
  justify-content: center;
  display: flex;
}

.div-ligne-1-form {
  justify-content: center;
  margin-top: 8px;
  display: flex;
}

.success-form-contact {
  background-color: #fff;
}

.email, .link {
  color: #999;
  text-decoration: none;
}

.img-logo {
  max-height: 50px;
  padding-bottom: 0;
  transition: all .4s cubic-bezier(.445, .05, .55, .95);
}

.img-logo:hover {
  transform: scale(1.02);
}

.image {
  height: 120px;
  transition: all .4s cubic-bezier(.445, .05, .55, .95);
}

.image:hover {
  transform: scale(1.01);
}

.div-block {
  justify-content: center;
  display: flex;
}

.antispamtext {
  color: #999;
  margin-right: 10px;
}

.heading-pricing-5 {
  color: #27bccf;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.heading-pricing-5.nomargin {
  margin-bottom: 0;
}

.heading-pricing-6 {
  color: #27bccf;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 35px;
}

.link-contact-pricing {
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  margin-bottom: 8px;
  text-decoration: none;
  display: flex;
}

.img-mail {
  width: 22px;
  margin-right: 5px;
}

.circle-icon {
  background-color: #253f6f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
}

.circle-icon.small {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  padding: 18px;
}

.circle-icon.small.white {
  background-color: #fff;
}

.circle-icon.small.white.margin2 {
  padding: 15px;
}

.blog-sidebar {
  flex: 0 auto;
  width: 33.33%;
  padding-left: 15px;
  padding-right: 15px;
}

.circle-wave-9 {
  z-index: 2;
  opacity: .2;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 90%;
  height: 90%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.social-icon {
  width: 16px;
}

.form-success {
  background-color: #0000;
  padding-top: 16px;
  padding-bottom: 16px;
}

.sidebar-tag {
  padding: 4px;
}

.sidebar-category {
  width: 50%;
  padding: 6px;
}

.full-width {
  width: 100%;
}

.sidebar-icon {
  width: 24px;
  margin-right: 12px;
}

.social-circle-link {
  border: 1px solid #e1e6ee;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 4px;
  transition: border-color .2s;
  display: flex;
}

.social-circle-link:hover {
  border-color: #d3d8e1;
}

.circle-wave-3 {
  z-index: 8;
  opacity: .8;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 30%;
  height: 30%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.sidebar-categories {
  flex-wrap: wrap;
  padding: 10px;
  display: flex;
}

.circle-wave {
  z-index: 10;
  opacity: .5;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  margin: auto;
  display: block;
  position: relative;
  inset: 0;
  box-shadow: inset 0 0 100px 100px #fff;
}

.no-margin {
  margin: 0;
}

.sidebar-promo {
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  padding: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #5962731f;
}

.sidebar-promo.grade-1 {
  color: #fff;
  background-image: radial-gradient(circle, #39abff, #4c39f3);
  padding: 56px 40px 48px;
}

.sidebar-promo.grade-1.version2 {
  width: 100%;
  margin-top: 50px;
}

.sidebar-promo.grade-2-red {
  background-image: radial-gradient(circle farthest-corner at 50% 0%, var(--grade-2-color-2), var(--grade-2-color-1));
  color: #fff;
  padding: 56px 40px 48px;
}

.sidebar-promo.grade-2-red.version2 {
  width: 100%;
  margin-top: 50px;
}

.sidebar-subscribe-form {
  flex-direction: column;
  margin-top: 16px;
  margin-bottom: 16px;
  display: flex;
}

.circle-wave-6 {
  z-index: 5;
  opacity: .5;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 60%;
  height: 60%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.sidebar-card {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  box-shadow: 0 1px 3px #5962731f;
}

.sidebar-card.hidden {
  display: none;
}

.sidebar-promo-image {
  width: 90%;
  margin-top: 8px;
  margin-bottom: 32px;
  display: none;
}

.circle-wave-8 {
  z-index: 3;
  opacity: .3;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 80%;
  height: 80%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.sidebar-promo-waves {
  opacity: .15;
  border-radius: 50%;
  width: 520px;
  height: 520px;
  position: absolute;
  top: -176px;
}

.section {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 40px;
  display: flex;
  position: relative;
}

.section.haze {
  background-color: #f5f6f8;
}

.section.grade-1 {
  color: #fff;
  background-image: radial-gradient(circle farthest-side, #39abff, #4c39f3);
}

.section.top-section {
  padding-top: 192px;
  overflow: hidden;
}

.section.border-top {
  border-top: 1px solid #e1e6ee;
}

.circle-wave-5 {
  z-index: 6;
  opacity: .6;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 50%;
  height: 50%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.form-error {
  color: #fc3762;
  text-align: center;
  background-color: #0000;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
}

.form-error.dark-bg {
  color: #fff;
}

.form-error.text-left {
  text-align: left;
  padding-left: 0;
}

.post-item-big {
  align-items: flex-start;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.posts-side {
  flex: 1;
}

.sidebar-card-header {
  border-bottom: 1px solid #e1e6ee;
  align-items: center;
  padding: 24px;
  display: flex;
}

.blog-v1 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 38px;
  margin-bottom: -40px;
  display: flex;
}

.circle-wave-2 {
  z-index: 9;
  opacity: .9;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 20%;
  height: 20%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.circle-wave-1 {
  z-index: 10;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 10%;
  height: 10%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.sidebar-tags {
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px;
  display: flex;
}

.wrapper {
  z-index: 1;
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  display: flex;
  position: relative;
}

.wrapper.side-paddings {
  padding-left: 15px;
  padding-right: 15px;
}

.social-icons {
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icons.subscribe-v1-icons {
  flex-wrap: wrap;
  margin-right: -4px;
}

.sidebar-promo-info {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.input {
  background-color: #f5f6f8;
  border: 1px solid #d3d8e1;
  border-radius: 5px;
  min-width: 228px;
  height: 48px;
  margin-bottom: 24px;
  padding: 7px 24px 8px;
  transition: border-color .2s;
}

.input:focus {
  border-color: #a9b0be;
}

.input::placeholder {
  color: #a9b0be;
}

.input.icon-input-bg {
  z-index: 1;
  background-color: #ffffff1a;
  border: 1px solid #fff9;
  border-radius: 0 5px 5px 0;
  flex: 1;
  margin: 0;
  transition: border-color .2s, background-color .2s;
  position: relative;
}

.input.icon-input-bg:focus {
  background-color: #ffffff0d;
  border-color: #fff;
}

.input.icon-input-bg::placeholder {
  color: #ffffffb3;
}

.input.dark-bg {
  background-color: #ffffff1a;
  border-color: #fff9;
}

.input.dark-bg::placeholder {
  color: #ffffffb3;
}

.input.dark-bg.no-margin {
  margin: 0;
}

.input.dark-bg.margin-right {
  color: var(--white);
  flex: 1;
  min-width: auto;
  height: 40px;
  margin-bottom: 0;
  margin-right: 5px;
}

.input.subscribe-v1-input {
  width: 240px;
  height: 40px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.circle-wave-7 {
  z-index: 4;
  opacity: .4;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 70%;
  height: 70%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.sidebar-card-info {
  padding-top: 24px;
  padding-left: 40px;
  padding-right: 40px;
}

.sidebar-card-info.small-padding {
  padding-left: 24px;
  padding-right: 24px;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #2583fd;
  background-image: linear-gradient(#39abff, #397ef3);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: box-shadow .2s;
  display: flex;
  box-shadow: inset 0 0 0 1px #2583fd;
}

.button:hover {
  box-shadow: inset 0 0 0 1px #2583fd, 0 4px 16px #2583fd80;
}

.button.small {
  height: 40px;
  padding: 8px 20px;
  font-size: 13px;
  line-height: 20px;
}

.button.small.white {
  color: var(--dark);
  background-color: #fff;
  background-image: none;
  font-family: Lato, sans-serif;
}

.button.small.white.margin-left {
  margin-left: 5px;
}

.button.small.white-2 {
  box-shadow: inset 0 0 0 1px var(--alice-blue);
  color: var(--dark);
  background-color: #fff;
  background-image: none;
  border: .5px #000;
  font-family: Lato, sans-serif;
}

.button.small.white-3 {
  box-shadow: inset 0 0 0 1px var(--gray-4);
  color: var(--dark);
  background-color: #fff;
  background-image: none;
  border-style: none;
  font-family: Lato, sans-serif;
}

.button.small.image-arrow {
  background-image: url('../images/paperplane-icon-white.svg'), linear-gradient(#39abff, #397ef3);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: auto 22px, auto;
  background-attachment: scroll, scroll;
}

.button.white {
  box-shadow: none;
  color: #2c3340;
  background-color: #fff;
  background-image: none;
  transition: box-shadow .2s;
}

.button.white:hover {
  box-shadow: 0 4px 16px #00000029;
}

.button.ghost {
  color: #2c3340;
  background-color: #0000;
  background-image: none;
  box-shadow: inset 0 0 0 1px #d3d8e1;
}

.button.ghost:hover {
  box-shadow: inset 0 0 0 1px #a9b0be;
}

.button.margin-left {
  margin-left: 12px;
}

.button.margin-left.height2 {
  background-image: linear-gradient(#39abff, #397ef3);
  height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.circle-wave-4 {
  z-index: 7;
  opacity: .7;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40%;
  height: 40%;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.post-card-bottom {
  border-top: 1px solid #e1e6ee;
  justify-content: space-between;
  align-items: center;
  margin-top: -4px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.post-card-v1-avatar {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.post-card-v1 {
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #5962731f;
}

.link-dark {
  color: #2c3340;
  text-decoration: none;
}

.link-dark:hover {
  text-decoration: underline;
}

.badge {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #2583fd;
  border-radius: 5px;
  padding: 6px 8px 6px 9px;
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  text-decoration: none;
  display: inline-block;
}

.badge.post-card-category {
  z-index: 1;
  position: absolute;
  top: 20px;
  right: 20px;
}

.badge.post-card-category:hover {
  color: #2c3340;
  background-image: linear-gradient(#fff, #fff);
}

.post-card-v1-image {
  background-color: #d3d8e1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 360px;
  transition: filter .2s;
}

.post-card-v1-image:hover {
  filter: brightness(95%);
}

.post-card-bottom-info {
  color: #7a8292;
  flex: 1;
  align-items: center;
  font-size: 12px;
  line-height: 16px;
  display: flex;
}

.text-grey {
  color: #7a8292;
}

.link-arrow-icon {
  margin-top: 1px;
  margin-left: 4px;
}

.link-arrow {
  color: #2583fd;
  text-align: left;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.link-arrow.no-margin {
  margin: 0;
}

.link-arrow.post-author-link {
  margin-top: -8px;
}

.post-card-author-link {
  color: #596273;
  border-radius: 16px;
  align-items: center;
  height: 32px;
  margin-left: 4px;
  padding-left: 4px;
  padding-right: 12px;
  text-decoration: none;
  transition: background-color .1s;
  display: flex;
}

.post-card-author-link:hover {
  color: #2c3340;
  background-color: #f5f6f8;
}

.post-card-v1-info {
  padding: 32px 40px 12px;
}

.sidebar-post-card {
  color: #2c3340;
  border-radius: 7px;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  transition: none;
  display: flex;
}

.sidebar-post-card:hover {
  background-color: #f5f6f8;
}

.sidebar-post-image {
  background-color: #d3d8e1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  width: 80px;
  height: 60px;
  margin-right: 20px;
}

.sidebar-post-info {
  flex: 1;
}

.sidebar-post-category {
  color: #7a8292;
  margin-top: 5px;
  margin-bottom: 1px;
  font-size: 10px;
  line-height: 12px;
}

.sidebar-author-card {
  color: #2c3340;
  border-radius: 7px;
  align-items: center;
  padding: 12px 16px;
  text-decoration: none;
  transition: background-color .1s;
  display: flex;
}

.sidebar-author-card:hover {
  background-color: #f5f6f8;
}

.sidebar-author-avatar {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-right: 16px;
}

.sidebar-category-link {
  color: #2c3340;
  text-align: center;
  border: 1px solid #e1e6ee;
  border-radius: 5px;
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  transition: none;
  display: block;
}

.sidebar-category-link:hover {
  background-color: #f5f6f8;
}

.sidebar-tag-link {
  border: 1px solid var(--alice-blue);
  color: #2c3340;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 5px 7px 5px 8px;
  font-size: 8px;
  font-weight: 700;
  line-height: 12px;
  text-decoration: none;
  transition: none;
  display: block;
}

.sidebar-tag-link:hover {
  background-color: #f5f6f8;
}

.text-date {
  margin-left: 7px;
}

.divider {
  background-color: #d3d8e1;
  width: 1px;
  height: 12px;
  margin-left: 8px;
  margin-right: 8px;
}

.footer-v3-bottom {
  color: #a9b0be;
  border-top: 1px solid #e1e6ee;
  justify-content: space-between;
  width: 100%;
  margin-top: 32px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 11px;
  line-height: 16px;
  display: flex;
}

.section-intro {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.section-intro.no-margin-bottom {
  margin-bottom: 0;
}

.post-author-avatar {
  border-radius: 50%;
  flex: none;
  width: 104px;
  height: 104px;
  margin-right: 32px;
}

.footer-v3-menu {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.bubble-6 {
  z-index: 5;
  filter: blur(10px);
  background-color: #fff;
  border-radius: 50%;
  width: 8vh;
  height: 8vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 38% -14vh 0%;
}

.brand-2 {
  justify-content: center;
  align-items: center;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  display: flex;
}

.brand-2.footer-v3-brand {
  flex: none;
  padding-left: 0;
  padding-right: 24px;
}

.post-author-info {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  display: flex;
}

.post-info-bottom {
  color: #7a8292;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 12px;
  font-size: 12px;
  line-height: 16px;
  display: flex;
}

.bubble-2 {
  z-index: 9;
  opacity: .83;
  filter: blur(9px);
  background-color: #fff;
  border-radius: 50%;
  width: 20vh;
  height: 20vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 72% 27vh 0;
}

.store-button {
  background-color: #253f6f;
  border-radius: 5px;
}

.store-button.ghost {
  background-color: #0000;
  transition: box-shadow .2s;
  box-shadow: inset 0 0 0 1px #e1e6ee;
}

.store-button.ghost:hover {
  box-shadow: inset 0 0 0 1px #a9b0be;
}

.store-badge {
  height: 48px;
}

.store-badge.small {
  height: 40px;
}

.page-wrapper {
  overflow: hidden;
}

.bubble-10 {
  z-index: 1;
  opacity: .6;
  filter: blur(8px);
  background-color: #fff;
  border-radius: 50%;
  width: 4vh;
  height: 4vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 -19% 69vh 0%;
}

.bubble-3 {
  z-index: 8;
  opacity: .78;
  filter: blur(11px);
  background-color: #fff;
  border-radius: 50%;
  width: 15vh;
  height: 15vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 26% 59vh 0;
}

.footer-v3-bottom-info {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.bubble-8 {
  z-index: 3;
  opacity: .45;
  filter: blur(6px);
  background-color: #fff;
  border-radius: 50%;
  width: 4vh;
  height: 4vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 0% -11vh 97%;
}

.post-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  width: 100%;
  height: 600px;
  margin-top: 80px;
  margin-bottom: 80px;
  box-shadow: 0 12px 40px #59627340;
}

.footer-v3-right {
  justify-content: flex-end;
  align-items: center;
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.bubble-5 {
  z-index: 6;
  opacity: .52;
  filter: blur(8px);
  background-color: #fff;
  border-radius: 50%;
  width: 8vh;
  height: 8vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 0% -43vh 71%;
}

.bubble-9 {
  z-index: 2;
  opacity: .5;
  filter: blur(5px);
  background-color: #fff;
  border-radius: 50%;
  width: 4vh;
  height: 4vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 66% -40vh 0%;
}

.input-wrapper {
  align-items: center;
  margin-bottom: 24px;
  display: flex;
  overflow: hidden;
}

.input-wrapper.no-margin {
  margin: 0;
}

.social-link-small {
  border: 1px solid #e1e6ee;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin: 3px;
  padding: 6px;
  transition: border-color .2s;
  display: flex;
}

.social-link-small:hover {
  border-color: #d3d8e1;
}

.input-icon-base {
  background-color: #fff;
  background-image: linear-gradient(#fff, #f5f6f8);
  border: 1px solid #e1e6ee;
  border-right-style: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 11px;
  display: flex;
}

.input-icon-base.dark-bg {
  background-color: #ffffff3d;
  background-image: none;
  border-color: #fff9;
}

.link-grey {
  color: #7a8292;
  text-decoration: none;
}

.link-grey:hover {
  text-decoration: underline;
}

.post-info {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer-v3-left {
  align-items: center;
  width: 20%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.logo-icon {
  height: 24px;
  margin-left: -2px;
  margin-right: 6px;
}

.social-icons-small {
  justify-content: center;
  align-items: center;
  margin-left: -3px;
  margin-right: -3px;
  display: flex;
}

.blog-v2 {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin-bottom: -40px;
  display: flex;
}

.blog-v2.margin-bottom {
  margin-bottom: 32px;
}

.post {
  flex-direction: column;
  width: 100%;
  padding-left: 16.66%;
  padding-right: 16.66%;
  display: flex;
}

.post p {
  color: var(--dark);
  margin-bottom: 28px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.post a {
  color: var(--link-blue);
  text-decoration: none;
}

.post blockquote {
  border-left-color: var(--link-blue);
  font-family: Lato, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.post ul {
  color: var(--dark);
  margin-top: 16px;
  margin-bottom: 24px;
  font-family: Lato, sans-serif;
}

.bubble-4 {
  z-index: 7;
  opacity: .72;
  filter: blur(10px);
  background-color: #fff;
  border-radius: 50%;
  width: 12vh;
  height: 12vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 7% -56vh 0;
}

.post-author {
  border: 1px solid #e1e6ee;
  border-radius: 10px;
  align-items: flex-start;
  margin-top: 64px;
  margin-right: 0%;
  padding: 40px 20% 32px 40px;
  display: flex;
  position: relative;
}

.title {
  color: #a9b0be;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.title.dark-bg {
  color: #fff9;
}

.bubble-1 {
  z-index: 10;
  filter: blur(10px);
  background-color: #fff;
  border-radius: 50%;
  width: 36vh;
  height: 36vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 0 28vh 50%;
}

.social-icon-small {
  width: 12px;
}

.post-item-medium {
  flex-direction: column;
  align-items: stretch;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.footer-v3-link {
  color: #596273;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 6px 12px;
  font-size: 11px;
  line-height: 16px;
  text-decoration: none;
  transition: color .2s;
}

.footer-v3-link:hover {
  color: #2c3340;
  background-color: #f5f6f8;
}

.post-heading {
  margin-top: 24px;
}

.subscribe-form {
  align-items: stretch;
  display: flex;
}

.bg-bubbles {
  z-index: 0;
  opacity: .18;
  justify-content: center;
  align-items: center;
  max-width: 92%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0;
}

.footer-v3 {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 32px;
  display: flex;
}

.bubble-7 {
  z-index: 4;
  opacity: .49;
  filter: blur(8px);
  background-color: #fff;
  border-radius: 50%;
  width: 5vh;
  height: 5vh;
  margin: auto;
  display: block;
  position: absolute;
  inset: 0 0% 59vh 84%;
}

.post-card-v2-description {
  color: #7a8292;
  flex: 1;
}

.post-card-v2-info {
  flex-direction: column;
  flex: 1;
  padding: 32px 40px 12px;
  display: flex;
}

.post-card-link {
  color: #2c3340;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  flex: 1;
  width: 100%;
  margin-bottom: 40px;
  text-decoration: none;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #5962731f;
}

.post-card-link:hover {
  transform: translate(0, -4px);
  box-shadow: 0 15px 30px #59627326;
}

.post-card-author {
  color: #596273;
  align-items: center;
  height: 32px;
  margin-left: 4px;
  padding-left: 4px;
  padding-right: 12px;
  text-decoration: none;
  display: flex;
}

.post-card-v2-image {
  background-color: #d3d8e1;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 304px;
  transition: filter .2s;
}

.style-block {
  text-align: left;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.blog-v1-2 {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: -40px;
  display: flex;
}

.sidebar-author-info {
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 16px 8%;
  display: flex;
}

.sidebar-big-avatar {
  border-radius: 50%;
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
}

.text-dark-grey {
  color: #596273;
}

.div-titre-page-2 {
  justify-content: center;
  display: flex;
}

.titre-page-2 {
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.titre-page-2.margin2 {
  margin-right: 11px;
}

.empty-state {
  background-color: #0000;
}

.div-titre-page {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 20px 30px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px #5962731f;
}

.div-titre-page.margin2 {
  padding-top: 30px;
}

.sous-titre-page {
  color: #7a8292;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
}

.titre-page {
  padding-bottom: 15px;
}

.heading-2 {
  margin-bottom: 0;
}

.form {
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.text-form-newsletter {
  border: 1px solid var(--alice-blue);
  border-radius: 5px;
  height: 40px;
  margin-bottom: 0;
  margin-right: 10px;
}

.paragraph-sidebar-promo {
  margin-top: 5px;
  margin-bottom: 20px;
}

.link-2 {
  color: #fff;
}

.subpost {
  flex-direction: column;
  width: 100%;
  padding-left: 16.66%;
  padding-right: 16.66%;
  display: flex;
}

.subpost p {
  color: var(--white);
  margin-bottom: 28px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 28px;
}

.subpost a {
  color: var(--link-blue);
  text-decoration: none;
}

.subpost blockquote {
  border-left-color: var(--link-blue);
  font-family: Lato, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.subpost ul {
  color: var(--dark);
  margin-top: 16px;
  margin-bottom: 24px;
  font-family: Lato, sans-serif;
}

.paragraph-sidebar-promo {
  color: var(--white);
}

.subscribe-v1-form {
  margin-bottom: 0;
}

.subscribe-v1-icon {
  width: 24px;
  margin-right: 8px;
}

.subscribe-v1 {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px;
  display: flex;
}

.subscribe-v1-heading {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 32px;
}

.subscribe-v1-heading.white {
  color: var(--white);
  font-size: 15px;
}

.subscribe-form-2 {
  align-items: center;
  display: flex;
}

.subscribe-1-form-wrapper {
  flex: 0 auto;
  align-items: center;
  min-width: 60%;
  display: flex;
}

.section-newsletter {
  border-top: 1px solid var(--alice-blue);
  border-bottom: 1px solid var(--alice-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section-newsletter.grade-1 {
  background-image: linear-gradient(to right, var(--grade-1-color-1), var(--grade-1-color-2));
}

.section-equipe {
  background-color: var(--white-smoke);
  padding-top: 20px;
}

.container-equipe {
  justify-content: center;
  margin-top: 10px;
  display: flex;
}

.div-cadre-equipe {
  width: 40%;
  max-width: 300px;
  margin: 20px 16px;
  transition: all .4s cubic-bezier(.445, .05, .55, .95);
}

.div-cadre-equipe:hover {
  transform: scale(1.01)translate(0, -2px);
}

.div-photo-equipe {
  background-image: linear-gradient(#9999991a, #9999991a);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  height: 250px;
}

.div-photo-equipe.adeline {
  background-image: linear-gradient(#9999991a, #9999991a), url('../images/Photo_Adeline.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.div-photo-equipe.jessica {
  background-image: linear-gradient(#9999991a, #9999991a), url('../images/Photo_Jessica.jpg');
  background-position: 0 0, 50% 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.div-description-equipe {
  background-color: var(--dark-grey);
  flex-direction: column;
  height: 150px;
  padding: 5px 5px 10px;
  display: flex;
}

.txt-nom-equipe {
  color: var(--dark);
  text-align: center;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-family: Raleway, sans-serif;
  font-size: 17px;
  font-weight: 800;
  display: flex;
}

.div-ombre-cadre-equipe {
  background-image: linear-gradient(to bottom, var(--alice-blue) 31%, transparent);
  height: 80px;
}

.p-description-equipe {
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding-left: 2px;
  padding-right: 2px;
  display: flex;
}

.div-social-equipe {
  justify-content: center;
  align-items: center;
  height: 30px;
  display: flex;
}

.link-social-equipe {
  color: var(--white);
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  display: flex;
}

.txt-social-equipe {
  font-family: "Fa brands 400", sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.txt-social-equipe.solid {
  font-family: "Fa solid 900", sans-serif;
}

.txt-social-equipe.regular {
  font-family: "Fa 400", sans-serif;
}

.img-photo-equipe {
  object-fit: cover;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
  height: 100%;
}

.display-none {
  display: none;
}

@media screen and (max-width: 991px) {
  .navlink {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
  }

  .navbar-container {
    justify-content: flex-start;
  }

  .navmenu {
    background-color: #fff;
  }

  .logo.logoheader {
    margin-top: 19px;
    margin-bottom: 35px;
  }

  .section-hero {
    height: 500px;
  }

  .h1-hero {
    font-size: 51px;
  }

  .h4-hero {
    font-size: 18px;
  }

  .div-box {
    width: 45%;
  }

  .h1-box {
    font-size: 26px;
  }

  .section-pricing {
    padding-bottom: 21px;
  }

  .div-pricing-element {
    min-width: 200px;
  }

  .heading-pricing-1 {
    font-size: 35px;
  }

  .heading-pricing-4.spec1 {
    padding-top: 13px;
    padding-bottom: 17px;
  }

  .paragraph-section-1.quote {
    font-size: 25px;
    line-height: 27px;
  }

  .div-ligne-1-form {
    flex-wrap: wrap;
  }

  .img-logo {
    max-height: 50px;
  }

  .image {
    height: 120px;
  }

  .menu-button {
    flex: 1;
    justify-content: flex-end;
    display: flex;
  }

  .menu-button.w--open {
    background-color: #fff;
  }

  .icon {
    color: #000;
    text-align: right;
    flex: 0 auto;
    justify-content: flex-end;
    font-size: 40px;
    display: flex;
  }

  .blog-sidebar {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sidebar-category {
    width: 100%;
    padding: 4px 0;
  }

  .sidebar-categories {
    padding-left: 0;
    padding-right: 0;
  }

  .no-margin {
    margin: 0;
  }

  .sidebar-promo, .sidebar-card {
    margin-bottom: 16px;
  }

  .section {
    padding: 80px 8px;
  }

  .section.haze.margin-premiere-section {
    padding-top: 120px;
  }

  .section.top-section {
    padding-top: 144px;
  }

  .post-item-big {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sidebar-card-header {
    padding: 16px;
  }

  .sidebar-tags {
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper.side-paddings {
    padding-left: 8px;
    padding-right: 8px;
  }

  .social-icons.subscribe-v1-icons {
    margin-top: 32px;
    margin-right: 0;
  }

  .input {
    box-shadow: inset 0 0 #0000;
  }

  .input.dark-bg.no-margin {
    margin: 0;
  }

  .input.dark-bg.margin-right {
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 12px;
  }

  .sidebar-card-info {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sidebar-card-info.small-padding {
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .button.small.white.margin-left {
    margin-left: 0;
  }

  .post-card-bottom {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .post-card-v1 {
    margin-bottom: 24px;
  }

  .post-card-v1-image {
    height: 264px;
  }

  .post-card-bottom-info {
    font-size: 11px;
  }

  .link-arrow {
    font-size: 13px;
  }

  .link-arrow.no-margin {
    margin: 0;
  }

  .post-card-author-link:hover {
    background-color: #0000;
  }

  .post-card-v1-info {
    padding: 20px 20px 8px;
  }

  .sidebar-post-card {
    padding: 10px 0;
  }

  .sidebar-post-card:hover {
    background-color: #0000;
  }

  .sidebar-post-image {
    width: 64px;
    height: 48px;
    margin-right: 12px;
  }

  .sidebar-author-card {
    padding: 8px 0;
  }

  .sidebar-author-card:hover {
    background-color: #0000;
  }

  .sidebar-author-avatar {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .sidebar-category-link {
    font-size: 12px;
  }

  .footer-v3-bottom {
    margin-left: 8px;
    margin-right: 8px;
  }

  .section-intro {
    max-width: 500px;
    margin-bottom: 56px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .section-intro.no-margin-bottom {
    margin-bottom: 0;
  }

  .post-info-bottom {
    font-size: 11px;
  }

  .post-image {
    height: 480px;
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .footer-v3-right {
    padding-left: 8px;
    padding-right: 8px;
  }

  .input-wrapper.no-margin {
    margin: 0;
  }

  .footer-v3-left {
    padding-left: 8px;
    padding-right: 8px;
  }

  .post {
    padding-left: 6%;
    padding-right: 6%;
  }

  .post-author {
    margin-top: 40px;
    padding-right: 16%;
  }

  .post-item-medium {
    padding-left: 8px;
    padding-right: 8px;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .post-card-v2-info {
    padding: 24px 24px 8px;
  }

  .post-card-link {
    margin-bottom: 24px;
  }

  .post-card-link:hover {
    transform: none;
  }

  .post-card-v2-image {
    height: 200px;
  }

  .sidebar-author-info {
    padding-left: 0%;
    padding-right: 0%;
  }

  .sidebar-big-avatar {
    width: 64px;
    height: 64px;
  }

  .titre-page-2 {
    font-size: 34px;
  }

  .div-titre-page {
    margin-bottom: 24px;
  }

  .subpost {
    padding-left: 6%;
    padding-right: 6%;
  }

  .subscribe-v1-icon {
    width: 32px;
    margin-bottom: 8px;
  }

  .subscribe-v1 {
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 8px;
    padding-right: 8px;
  }

  .subscribe-v1-heading {
    margin-bottom: 32px;
    margin-right: 0;
  }

  .subscribe-1-form-wrapper {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }

  .div-cadre-equipe {
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-photo-equipe {
    height: 220px;
  }

  .p-description-equipe {
    height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .logo.logoheader {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .h1-hero {
    font-size: 48px;
  }

  .h4-hero {
    font-size: 17px;
  }

  .h1-box {
    font-size: 21px;
  }

  .div-pricing-element {
    min-width: 160px;
  }

  .heading-pricing-1 {
    font-size: 26px;
  }

  .heading-pricing-2 {
    font-size: 39px;
  }

  .paragraph-section-1 {
    line-height: 21px;
  }

  .paragraph-section-1.quote {
    font-size: 24px;
  }

  .heading-pricing-6 {
    font-size: 28px;
  }

  .blog-sidebar {
    width: 100%;
    display: block;
  }

  .sidebar-categories {
    padding-left: 16%;
    padding-right: 16%;
  }

  .no-margin {
    margin: 0;
  }

  .sidebar-subscribe-form {
    padding-left: 16%;
    padding-right: 16%;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section.top-section {
    padding-top: 128px;
  }

  .posts-side {
    width: 100%;
  }

  .blog-v1 {
    flex-direction: column;
    align-items: stretch;
  }

  .input.dark-bg.no-margin {
    margin: 0;
  }

  .input.dark-bg.margin-right {
    margin-bottom: 0;
    margin-right: 5px;
  }

  .button.small.white.margin-left {
    margin-left: 5px;
  }

  .link-arrow.no-margin {
    margin: 0;
  }

  .link-arrow.post-author-link {
    margin-top: -12px;
  }

  .section-intro.no-margin-bottom {
    margin-bottom: 0;
  }

  .post-author-avatar {
    width: 64px;
    height: 64px;
    margin-right: 24px;
  }

  .footer-v3-menu {
    flex: 0 auto;
    justify-content: flex-start;
    width: 100%;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 0;
  }

  .post-image {
    height: 360px;
  }

  .footer-v3-right {
    flex: none;
    justify-content: flex-start;
    width: 100%;
  }

  .input-wrapper.no-margin {
    margin: 0;
  }

  .footer-v3-left {
    width: 100%;
  }

  .logo-icon {
    height: 22px;
  }

  .blog-v2 {
    flex-direction: column;
    align-items: stretch;
  }

  .blog-v2.margin-bottom {
    margin-bottom: 24px;
  }

  .post-author {
    margin-top: 32px;
    padding: 32px 32px 24px;
  }

  .post-item-medium {
    width: 100%;
  }

  .footer-v3-link {
    margin-left: 0;
    margin-right: 8px;
  }

  .subscribe-form {
    flex-direction: row;
  }

  .post-card-v2-image {
    height: 264px;
  }

  .blog-v1-2 {
    flex-direction: column;
    align-items: stretch;
  }

  .sidebar-author-info {
    padding-left: 16%;
    padding-right: 16%;
  }

  .div-titre-page-2 {
    flex-direction: column;
    align-items: center;
  }

  .titre-page-2 {
    text-align: center;
    margin-right: 0;
    font-size: 30px;
  }

  .titre-page-2.margin2 {
    margin-right: 0;
  }

  .div-titre-page.margin2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .heading-2 {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .div-photo-equipe {
    height: 180px;
  }

  .txt-nom-equipe {
    height: 60px;
  }

  .div-ombre-cadre-equipe {
    height: 40px;
  }

  .p-description-equipe {
    height: 90px;
    font-size: 13px;
    line-height: 18px;
  }
}

@media screen and (max-width: 479px) {
  .logo.logoheader {
    margin-top: 0;
    margin-bottom: 19px;
  }

  .h1-hero {
    font-size: 30px;
    line-height: 35px;
  }

  .h4-hero {
    line-height: 22px;
  }

  .div-box {
    width: 80%;
  }

  .section-pricing {
    padding-top: 10px;
  }

  .container-pricing {
    flex-direction: column;
  }

  .div-pricing-element {
    margin-top: 20px;
    margin-bottom: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .heading-pricing-1 {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .heading-pricing-3 {
    margin-bottom: 0;
  }

  .heading-pricing-4 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .heading-section-1 {
    font-size: 34px;
  }

  .paragraph-section-1 {
    line-height: 22px;
  }

  .important-text {
    font-size: 40px;
  }

  .image {
    height: 100px;
  }

  .heading-pricing-5 {
    margin-bottom: 0;
  }

  .blog-sidebar {
    padding-left: 8px;
    padding-right: 8px;
  }

  .sidebar-categories {
    padding-left: 0%;
    padding-right: 0%;
  }

  .no-margin {
    margin: 0;
  }

  .sidebar-subscribe-form {
    padding-left: 0%;
    padding-right: 0%;
  }

  .section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .input {
    min-width: 0;
  }

  .input.dark-bg.no-margin {
    margin: 0;
  }

  .input.dark-bg.margin-right {
    margin-bottom: 10px;
    margin-right: 0;
    padding-top: 8px;
  }

  .input.subscribe-v1-input {
    text-align: center;
  }

  .button.small {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button.small.white.margin-left {
    margin-left: 0;
  }

  .button.small.image-arrow.margin-left {
    margin-top: 0;
    margin-left: 5px;
  }

  .button.margin-left {
    margin-top: 16px;
    margin-left: 0;
  }

  .post-card-v1-image {
    height: 224px;
  }

  .link-arrow.no-margin {
    margin: -1px;
  }

  .post-card-author-link {
    margin-left: 0;
    padding-left: 0;
  }

  .footer-v3-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section-intro.no-margin-bottom {
    width: 100%;
    margin-bottom: 0;
  }

  .post-author-avatar {
    margin-bottom: 16px;
    margin-right: 0;
  }

  .footer-v3-menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-v3-bottom-info {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 20px;
  }

  .post-image {
    height: 240px;
  }

  .input-wrapper.no-margin {
    margin: 0;
  }

  .post {
    padding-left: 8px;
    padding-right: 8px;
  }

  .post-author {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
  }

  .subscribe-form {
    flex-flow: column wrap;
    align-items: stretch;
    width: 100%;
    min-width: 200px;
  }

  .post-card-author {
    margin-left: 0;
    padding-left: 0;
  }

  .post-card-v2-image {
    height: 224px;
  }

  .sidebar-author-info {
    padding-left: 0%;
    padding-right: 0%;
  }

  .titre-page-2 {
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
  }

  .subpost {
    padding-left: 8px;
    padding-right: 8px;
  }

  .subscribe-v1-form {
    width: 100%;
  }

  .subscribe-form-2 {
    justify-content: center;
  }

  .section-equipe {
    padding-top: 10px;
  }

  .container-equipe {
    flex-direction: column;
    align-items: center;
  }

  .div-cadre-equipe {
    width: 90%;
  }

  .div-description-equipe {
    height: auto;
  }

  .txt-nom-equipe {
    height: 40px;
  }

  .p-description-equipe {
    height: 50px;
    font-size: 14px;
    line-height: 20px;
  }
}


@font-face {
  font-family: 'Fa brands 400';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}