/* GENERAL */

body {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: #505050;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header, footer, main {
  width: 100%;
}

.box-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: 5px;
}

.button {
  border: none;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  transition: .3s;
  text-decoration: none;
  display: inline-block;
  color: #ffffff;
}

.button:hover {
  background: transparent;
}

.button-blue {
  background-color: #008BD2;
}

.button-blue:hover {
  box-shadow: inset 0 0 0 3px #008BD2;
  color: #008BD2;
}

.button-violet {
  background-color: #A71680;
}

.button-violet:hover {
  box-shadow: inset 0 0 0 3px #A71680;
  color: #A71680;
}

.section-padding {
  padding-top: 35px;
  padding-bottom : 35px;
}

.section-title {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

/* font sizes */

.x-small {
  font-size: 0.65625em;
}

.small {
  font-size: 0.7875em;
}

p, .normal {
  font-size: 1em;
}

.medium {
  font-size: 1.05em;
}

h3 {
  font-size:1.33em;
  color: #505050;
}

h2 {
  font-size: 1.66em;
  text-align: center;
  width: max-content;
  max-width: 1200px;
  font-weight: 700;
  color: transparent;
  background: rgb(238,118,86);
  background: -moz-linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  background: linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

h1 {
  font-size: 2em;
  margin: 40px auto;
  text-align: center;
  width: max-content;
  max-width: 1200px;
  font-weight: 700;
  color: transparent;
  background: rgb(238,118,86);
  background: -moz-linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  background: linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.centered {
  text-align: center;
  max-width: 1200px;
  margin: 24px auto;
}

.slick-dots button:before {
  font-size: 15px !important;
}

@media (max-width: 1279px) {
  h1, h2 {
    max-width: 90%;
  }
  .centered {
    max-width: 90%;
    text-align: left;
  }
}

/* Menu */

header {
  position: relative;
  height: 96.2px;
  z-index: 5;
}

.navigation-container {
  height: 96.2px;
  width : 100%;
  z-index: 5;
}

.navigation {
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.navigation-logo-svg {
  height: 50px;
}

.navigation-logo {
  margin-left: 2.5%;
}

.navigation-menu {
  margin-right: 2.5%;
}

.navigation-menu-item {
  color: #505050;
  text-decoration: none;
  margin-right: 20px;
  position: relative;
}

.navigation-menu-item:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  height: 2.5px;
  border-radius: 2px;
  width: 0;
  background: transparent;
  transition: width .5s ease, background-color .5s ease, left .5s ease;
}

.navigation-menu-item:hover:after {
  left: calc(50% - 25px);
  width: 50px;
  background: #008BD2;
}

.navigation-menu-item.active {
  color: #008BD2;
}

.sticky {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .10);
  position: fixed;
  top: 0;
}

.burger-menu {
  display: none;
}

.mobile-menu-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  background-color: rgba(0, 0, 0, .6);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s linear, opacity 0.3s linear;
  z-index: 4;
}

/* CONTENU */

/* Accueil */

.accueil {
  min-height: calc(100vh - 96.2px);
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.accueil-content-container {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accueil-picture {
  width: 50%;
  max-width: 700px;
  display: block;
}

.accueil-text-container {
  width: 40%;
}

.accueil-text-box {
  width: max-content;
  max-width: 100%;
}

.accueil-text-social-link {
  text-decoration: none;
  margin-right: 10px;
}

.fa-linkedin-in {
  color: #0E76A8;
}

.fa-twitter {
  color: #1DA1F2;
}

.fa-facebook-f {
  color: #3B5998;
}

.fa-instagram {
  color: #E1306C;
}

.accueil-title {
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
}

.accueil-subtitle {
  margin: 0;
}

.contact-info {
  margin-top: 18px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.accueil-text-cta-map-container {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.accueil-text-cta {
  align-self: flex-end;
}

.accueil-text-map {
  display: block;
  height: 100px;
}

.accueil-scroll-arrow {
  position : absolute;
  bottom: 20px;
  left: calc(50% - 10px);
}

.accueil-scroll-arrow img {
  width: 20px;
  height: 10px;
}

/* Carte de visite */

.carte-de-visite-container {
  width: 80%;
  display: flex;
  margin: 0 auto;
}

.carte-de-visite-citation-container {
  width: 50%;
}

.carte-de-visite-video-container {
  width: 50%;
  padding-bottom: 28.125%;
  position: relative;
  overflow: hidden;
  border-radius: 0 5px 5px 0;
}

.carte-de-visite-video-container:after {
  content: url("../imgs/play-button.svg");
  position: absolute;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-7.5px,-7.5px);
  filter: drop-shadow( 0 2px 4px rgba(0, 0, 0, .5));
}

.carte-de-visite-video-container:hover::after {
  cursor: pointer;
}

.iframeYT {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000000;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: .3s;
}

.carte-de-visite-video-container:hover > .iframeYT {
  cursor: pointer;
  filter: brightness(0.7);
}

.has-iframe:hover > .iframeYT {
  filter: none;
}

.has-iframe:after {
  content: none;
}

.carte-de-visite-citation-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.carte-de-visite-citation {
  width: 70%;
  text-align: center;
  position: relative;
}

.carte-de-visite-citation:before, .carte-de-visite-citation:after {
  color: #ededed;
  position: absolute;
  z-index: -1;
  width: 50px;
  height: 50px;
}

.carte-de-visite-citation:before {
  content: "";
  background: url("../imgs/icons/quotes_left.svg") no-repeat center;
  bottom: -20px;
  left: -10px;
}

.carte-de-visite-citation:after {
  content: "";
  background: url("../imgs/icons/quotes_right.svg") no-repeat center;
  top: -20px;
  right: -10px;
}

/* Profil professionnel */

.profil-professionnel-container {
  width: 70%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.profil-professionnel-box {
  width: 45%;
}

.profil-professionnel-slider-box {
  display: flex;
  margin-bottom: 25px;
}

.profil-professionnel-slider-box:last-child {
  margin-bottom: 0;
}

.profil-professionnel-slider-box-icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.profil-professionnel-slider-box-experience {
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 5px;
}

.profil-professionnel-slider-box-company {
  color: #707070;
  margin: 5px 0;
}

.profil-professionnel-slider-box-period {
  color: #707070;
  margin-top: 5px;
  margin-bottom: 0;
}

/* Accompagnement */

/* accompagnement edaf garanti */
.accompagnement-edaf-garanti{
  width: 100%;
  margin-bottom: 30px;
}

.accompagnement-edaf-garanti-picture-container {
  width: 100%;
}

.accompagnement-edaf-garanti-picture {
  width: 100%;
  display: block;
}

.accompagnement-edaf-garanti-text-container {
  width: 90%;
  margin: -100px auto 30px;
  position: relative;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.accompagnement-edaf-garanti-text-title {
  font-weight: 600;
  margin: 20px;
}

.accompagnement-edaf-garanti-text-icon-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.accompagnement-edaf-garanti-text-icon-box {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
}

.accompagnement-edaf-garanti-icon-container {
  width: 100px;
  height: 100px;
  background: rgb(0, 102, 179);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accompagnement-edaf-garanti-optimisation {
  background: -webkit-gradient(linear, 360deg, rgba(66, 176, 199, 1) 0%, rgba(25, 153, 206, 1) 100%);
  background: -moz-linear-gradient(linear, 360deg, rgba(66, 176, 199, 1) 0%, rgba(25, 153, 206, 1) 100%);
  background: -ms-linear-gradient(linear, 360deg, rgba(66, 176, 199, 1) 0%, rgba(25, 153, 206, 1) 100%);
  background: -o-linear-gradient(linear, 360deg, rgba(66, 176, 199, 1) 0%, rgba(25, 153, 206, 1) 100%);
  background: -webkit-linear-gradient(360deg, rgba(66, 176, 199, 1) 0%, rgba(25, 153, 206, 1) 100%);
}

.accompagnement-edaf-garanti-dematerialisation {
  background: -webkit-gradient(linear, 360deg, rgba(0, 113, 188, 1) 0%, rgba(15, 95, 175, 1) 100%);
  background: -moz-linear-gradient(linear, 360deg, rgba(0, 113, 188, 1) 0%, rgba(15, 95, 175, 1) 100%);
  background: -ms-linear-gradient(linear, 360deg, rgba(0, 113, 188, 1) 0%, rgba(15, 95, 175, 1) 100%);
  background: -o-linear-gradient(linear, 360deg, rgba(0, 113, 188, 1) 0%, rgba(15, 95, 175, 1) 100%);
  background: -webkit-linear-gradient(360deg, rgba(0, 113, 188, 1) 0%, rgba(15, 95, 175, 1) 100%);
}

.accompagnement-edaf-garanti-organisation {
  background: -webkit-gradient(linear, 360deg, rgba(153, 28, 132, 1) 0%, rgba(187, 49, 117, 1) 100%);
  background: -moz-linear-gradient(linear, 360deg, rgba(153, 28, 132, 1) 0%, rgba(187, 49, 117, 1) 100%);
  background: -ms-linear-gradient(linear, 360deg, rgba(153, 28, 132, 1) 0%, rgba(187, 49, 117, 1) 100%);
  background: -o-linear-gradient(linear, 360deg, rgba(153, 28, 132, 1) 0%, rgba(187, 49, 117, 1) 100%);
  background: -webkit-linear-gradient(360deg, rgba(153, 28, 132, 1) 0%, rgba(187, 49, 117, 1) 100%);
}

.accompagnement-edaf-garanti-augmentation {
  background: -webkit-gradient(linear, 360deg, rgba(240, 130, 74, 1) 0%, rgba(247, 165, 38, 1) 100%);
  background: -moz-linear-gradient(linear, 360deg, rgba(240, 130, 74, 1) 0%, rgba(247, 165, 38, 1) 100%);
  background: -ms-linear-gradient(linear, 360deg, rgba(240, 130, 74, 1) 0%, rgba(247, 165, 38, 1) 100%);
  background: -o-linear-gradient(linear, 360deg, rgba(240, 130, 74, 1) 0%, rgba(247, 165, 38, 1) 100%);
  background: -webkit-linear-gradient(360deg, rgba(240, 130, 74, 1) 0%, rgba(247, 165, 38, 1) 100%);
}

.accompagnement-edaf-garanti-icon {
  width: 60px;
  height: 60px;
}

.accompagnement-edaf-garanti-text {
  text-align: center;
  margin: 20px 0;
}

/* accompagnement rationalisation */
.accompagnement-edaf-rationalisation {
  width: 100%;
  margin-bottom: 30px;
}

.accompagnement-edaf-rationalisation-container {
  width: 100%;
}

.accompagnement-edaf-rationalisation-box {
  width: 100%;
  display: flex;
}

.accompagnement-edaf-rationalisation-text-container {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}

.accompagnement-edaf-rationalisation-box:nth-child(even) {
  flex-direction: row-reverse;
}

.accompagnement-edaf-rationalisation-text-box {
  width: 75%;
}

.accompagnement-edaf-rationalisation-box:nth-child(odd) {
  text-align: right;
}

.accompagnement-edaf-rationalisation-picture-container {
  width: 50%;
  background-image: url("../imgs/compta-temps-reel.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 50vh;
}

.accompagnement-edaf-rationalisation-box:last-child .accompagnement-edaf-rationalisation-picture-container {
  background-image: url("../imgs/solution-digitale-humaine.jpg");
}

.accompagnement-edaf-rationalisation-title {
  font-weight: 600;
  margin: 0 0 15px;
}

.accompagnement-edaf-rationalisation-text {
  margin: 0 0 15px;
}

.accompagnement-edaf-rationalisation-text:last-child {
  margin: 0;
}

/* accompagnement fonctionnement */

.accompagnement-edaf-fonctionnement-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.accompagnement-edaf-fonctionnement-illustration-container {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.accompagnement-edaf-fonctionnement-illustration {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

.accompagnement-edaf-fonctionnement-box {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accompagnement-edaf-fonctionnement-slide {
  display: flex;
  margin: 35px 0 35px 50px;
}

.accompagnement-edaf-fonctionnement-slide:first-child {
  margin: 15px 0 35px;
}

.accompagnement-edaf-fonctionnement-slide:last-child {
  margin: 35px 0 15px;
}

.accompagnement-edaf-fonctionnement-box:first-child .accompagnement-edaf-fonctionnement-slide {
  margin: 35px 50px 35px 0;
  flex-direction: row-reverse;
  text-align: right;
}

.accompagnement-edaf-fonctionnement-box:first-child .accompagnement-edaf-fonctionnement-slide:first-child {
  margin: 15px 0 35px;
}

.accompagnement-edaf-fonctionnement-box:first-child .accompagnement-edaf-fonctionnement-slide:last-child {
  margin: 35px 0 15px;
}

.accompagnement-edaf-fonctionnement-slide-icon-container {
  width:60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 20px;
  background: rgb(167, 22, 128);
  background: -webkit-gradient(linear, rgba(255, 204, 0, 1) 0%, rgba(215, 121, 59, 1) 50%, rgba(167, 22, 128, 1) 100%);
  background: -moz-linear-gradient(linear, rgba(255, 204, 0, 1) 0%, rgba(215, 121, 59, 1) 50%, rgba(167, 22, 128, 1) 100%);
  background: -ms-linear-gradient(linear, rgba(255, 204, 0, 1) 0%, rgba(215, 121, 59, 1) 50%, rgba(167, 22, 128, 1) 100%);
  background: -o-linear-gradient(linear, rgba(255, 204, 0, 1) 0%, rgba(215, 121, 59, 1) 50%, rgba(167, 22, 128, 1) 100%);
  background: -webkit-linear-gradient(rgba(255, 204, 0, 1) 0%, rgba(215, 121, 59, 1) 50%, rgba(167, 22, 128, 1) 100%);
}

.accompagnement-edaf-fonctionnement-box:last-child .accompagnement-edaf-fonctionnement-slide-icon-container {
  margin-left: 0;
  margin-right: 20px;
  background: rgb(0, 102, 179);
  background: -webkit-gradient(linear, rgba(109, 200, 191, 1) 0%, rgba(0, 138, 210, 1) 50%, rgba(0, 102, 179, 1) 100%);
  background: -moz-linear-gradient(linear, rgba(109, 200, 191, 1) 0%, rgba(0, 138, 210, 1) 50%, rgba(0, 102, 179, 1) 100%);
  background: -ms-linear-gradient(linear, rgba(109, 200, 191, 1) 0%, rgba(0, 138, 210, 1) 50%, rgba(0, 102, 179, 1) 100%);
  background: -o-linear-gradient(linear, rgba(109, 200, 191, 1) 0%, rgba(0, 138, 210, 1) 50%, rgba(0, 102, 179, 1) 100%);
  background: -webkit-linear-gradient(rgba(109, 200, 191, 1) 0%, rgba(0, 138, 210, 1) 50%, rgba(0, 102, 179, 1) 100%);
}

.accompagnement-edaf-fonctionnement-slide-icon {
  display: block;
  width: 35px;
  height: 35px;
}

.accompagnement-edaf-fonctionnement-slide-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accompagnement-edaf-fonctionnement-slide-title {
  margin: 0;
  font-weight: 600;
}

.accompagnement-edaf-fonctionnement-slide-text {
  margin: 0;
}

/* accompagnement tarification */

.accompagnement-edaf-tarification {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accompagnement-edaf-tarification-text {
  margin: 0 0 30px;
  max-width: 80%;
  text-align: center;
}

/* Références */

.references {
  text-align: center;
  width: 100%;
}

.references-txt {
  margin: 0;
}

.references-ambassadeurs-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
}

.references-ambassadeurs-box {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.references-ambassadeurs-picture {
  display: block;
  max-width: 150px;
  max-height: 150px;
}

.references-ambassadeurs-picture-txt {
  max-height: 125px;
}

.references-ambassadeurs-txt {
  margin: 5px auto 0;
}

.references-avis {
  display: flex;
  flex-wrap : wrap;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}

.references-avis-slide {
  position: relative;
  width: 300px;
  min-height: 250px;
  padding: 20px;
  margin: 30px 10px 10px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.references-avis .slick-prev:before, .references-avis .slick-next:before {
  color: #505050;
  opacity: 1;
}

.references-avis-slide p {
  margin: 0;
}

.references-avis-commentaire {
  font-style: italic;
}

.references-avis-nom, .references-avis-pourcentage {
  font-weight: 600;
}

.references-avis-logo-container {
  display: inline-block;
  margin-left: 5px;
}

.references-avis-logo {
  display: block;
  width: 16px;
}

/* Contact */

.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 90%;
  margin: 0 auto;
}

.contact .section-subtitle {
  text-align: left;
  margin-left: 0;
}

.contact-calendly-container {
  width: 35%;
  display: block;
  border-radius: 5px;
}

.contact-calendly-container iframe {
  width: 100%;
  height: 600px;
  border-radius: 5px;
}

.contact-form-container {
  width: 65%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
}

.contact-info-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info-container .contact-info {
  box-sizing: border-box;
  padding: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.contact-form-field-container {
  display: flex;
  width: 100%;
  gap: 40px;
}

.contact-form-field-box {
  width: 100%;
}

.contact-form-field-container .contact-form-field-box {
  width: 50%;
}

.form-name, .form-mail, .form-subject, .form-tel, .form-message {
  width: calc(100% - 10px);
  border: none;
  border-bottom: 1px solid #707070;
  font-family: 'Poppins', sans-serif;
  padding-left: 10px;
}

.contact-form-field:focus {
  outline: none;
}

.form-message {
  resize: none;
  height: 1.5em;
}

.form-info-usage-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-info-usage {
  width: 20px;
  height: 20px;
}

.contact-form-submit-container {
  text-align: center;
}

.contact-form-alert {
  margin: 0 auto 30px;
  text-align: center;
  padding: 5px 10px;
  font-weight: 500;
  border: 1px solid transparent;
  border-radius: 5px;
  width: max-content;
}

.contact-form-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.contact-form-errors {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* FOOTER */

footer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 20px;
}

.footer-mentions-legal, .footer-copyright {
  display: inline-block;
  margin: 0 20px;
}

.footer-mentions-legal {
  font-weight: 600;
  color: #505050;
  text-decoration: none;
}

/* Mentions légales */

.modal-text-paragraphe {
  width: 90%;
  margin: 10px auto;
}

/* RESPONSIVE */
@media (max-width: 1279px) {
  /* MENU */
  header, .navigation-container {
    height: 66px;
  }
  .navigation {
    padding: 0;
  }
  .navigation-logo {
    margin-left: 10px;
    margin-top: 10px;
  }
  .navigation-logo-svg {
    height: 40px;
  }
  .navigation-menu {
    position: fixed;
    top: 0;
    right: 0;
    margin-right: 0;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: #ffffff;
    height: 100vh;
    width: 30%;
    z-index: 5;
    transform: translateX(100%);
    transition: .3s;
  }
  .navigation-menu-item {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 15px;
    color: #505050;
  }
  .navigation-menu .button {
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
  }
  .show-menu {
    transform: translateX(0);
  }
  .burger-menu {
    display: block;
    position: fixed;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    z-index: 10;
  }
  .burger-icon {
    margin: auto;
    width: 30px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  .burger-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #505050;
    border-radius: 6px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .3s ease-in-out;
  }
  .burger-icon span:nth-child(1) {
    top: 0;
  }
  .burger-icon span:nth-child(2), .burger-icon span:nth-child(3) {
    top: 12px;
  }
  .burger-icon span:nth-child(4) {
    top: 24px;
  }
  .burger-icon.open span:nth-child(1) {
    display: none;
  }
  .burger-icon.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .burger-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .burger-icon.open span:nth-child(4) {
    display: none;
  }
  .sticky .burger-menu .burger-icon span {
    background: #505050;
  }
  .active-wrapper {
    visibility: visible;
    opacity: 1;
  }
}


@media (max-width: 1024px) {
  /* CONTENT */

  /* Accueil */
  .accueil-content-container {
    flex-direction: column;
    padding-bottom: 65px;
  }
  .accueil-picture {
    width: 65%;
    max-width: 450px;
  }
  .accueil-text-container {
    width: 100%;
    text-align: center;
  }
  .accueil-text-box {
    width: 100%;
  }
  .accueil-title {
    text-align: center;
  }
  .accueil-subtitle {
    width: 90%;
    margin: 0 auto;
  }
  .contact-info {
    justify-content: center;
  }
  .accueil-text-cta-map-container {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .accueil-text-cta {
    align-self: center;
  }
  .accueil-text-map {
    margin-bottom: 30px;
  }

  /* Citation */
  .carte-de-visite-container {
    flex-direction: column-reverse;
  }
  .carte-de-visite-citation-container {
    width: 100%;
  }
  .carte-de-visite-citation {
    width: 80%;
    margin: 30px;
  }
  .carte-de-visite-video-container {
    width: 100%;
    border-radius: 5px 5px 0 0;
    padding-bottom: 56.25%;
  }

  /* Profil professionnel */
  .profil-professionnel-container {
    flex-direction: column;
  }
  .profil-professionnel-box {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
  }
  .profil-professionnel-box:last-child {
    margin-bottom: 0;
  }
  .profil-professionnel-slider-box {
    flex-direction: column;
    margin-bottom: 0;
  }
  .profil-professionnel-slider {
    margin-bottom: 55px !important; /* 25 (margin text -> slick-dots) + 30 (height slick-dots) // important to overide slick library css*/
  }
  .profil-professionnel-slider-box-icon-container {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .profil-professionnel-slider-box-text-container {
    text-align: center;
  }
  .profil-professionnel-box .slick-dots {
    display: flex;
    width: 150px;
    bottom: -65px;
    left: calc(50% - 75px);
  }
  .profil-professionnel-box .slick-dots li {
    width: 30px;
    height: 30px;
    margin: 10px;
  }
  .profil-professionnel-box .slick-dots button:before {
    background: #FFFFFF;
    color: #008BD2;
    box-shadow: inset 0 0 0 2px #008BD2;
    opacity: 1 !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
  }
  .profil-professionnel-box .slick-dots .slick-active button:before {
    background: #008BD2;
    color: #FFFFFF;
  }
  .profil-professionnel-box .slick-dots li:nth-child(1) button:before {
    content: '1';
  }
  .profil-professionnel-box .slick-dots li:nth-child(2) button:before {
    content: '2';
  }
  .profil-professionnel-box .slick-dots li:nth-child(3) button:before {
    content: '3';
  }
  .progress {
    display: block;
    width: 110px;
    height: 6px;
    border-radius: 6px;
    position: absolute;
    left: calc(50% - 55px);
    bottom: 12px;
    overflow: hidden;
    background-color: transparent;
    background-image: linear-gradient(to right, #008BD2, #008BD2);
    background-repeat: no-repeat;
    background-size: 0 100%;
    transition: background-size .4s ease-in-out;
  }
  .profil-professionnel-box:first-child .progress {
    width: 110px;
    left: calc(50% - 55px);
  }
  .profil-professionnel-box:last-child .progress {
    width: 110px;
    left: calc(50% - 55px);
  }
  .slick-dots .progress-dots:before {
    background: #008BD2 !important;
    color: #FFFFFF !important;
  }

  /* Accompagnement EDAF */
  /* accompagnement garanti */
  .accompagnement-edaf-garanti-text-icon-container {
    flex-wrap: wrap;
  }
  .accompagnement-edaf-garanti-text-icon-box {
    width: 40%;
  }
  .accompagnement-edaf-garanti-text-icon-container .slick-prev:before, .accompagnement-edaf-garanti-text-icon-container .slick-next:before {
    color: #505050;
    opacity: 1;
  }
  .accompagnement-edaf-garanti-text-icon-container .slick-prev {
    top: calc(50% - 30px);
    left: -4%;
  }

  .accompagnement-edaf-garanti-text-icon-container .slick-next {
    top: calc(50% - 30px);
    right: -4%;
  }

  /*accompagnement fonctionnement */
  .accompagnement-edaf-fonctionnement-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .accompagnement-edaf-fonctionnement-illustration-container {
    width: 60%;
  }
  .accompagnement-edaf-fonctionnement-box {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px !important;
  }
  .accompagnement-edaf-fonctionnement-box:last-child {
    margin-top: 70px;
    margin-bottom: 0 !important;
  }
  .accompagnement-edaf-fonctionnement-slide {
    width: 80%;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .accompagnement-edaf-fonctionnement-box:first-child .accompagnement-edaf-fonctionnement-slide {
    margin: 0;
    flex-direction: row;
    text-align: center;
  }
  .accompagnement-edaf-fonctionnement-slide:first-child, .accompagnement-edaf-fonctionnement-box:first-child .accompagnement-edaf-fonctionnement-slide:first-child {
    margin: 0;
  }
  .accompagnement-edaf-fonctionnement-slide:last-child, .accompagnement-edaf-fonctionnement-box:first-child .accompagnement-edaf-fonctionnement-slide:last-child {
    margin: 0;
  }
  .accompagnement-edaf-fonctionnement-slide-icon-container {
    display: none;
  }
  .accompagnement-edaf-fonctionnement-box .slick-dots {
    display: flex;
    width: 200px;
    left: calc(50% - 100px);
  }
  .accompagnement-edaf-fonctionnement-box .slick-dots li {
    width: 30px;
    height: 30px;
    margin: 10px;
  }
  .slider-action .slick-dots {
    bottom: -60px;
  }
  .slider-fonction .slick-dots {
    top: -60px;
    bottom: unset;
  }
  .accompagnement-edaf-fonctionnement-box .slick-dots button:before {
    background: #FFFFFF;
    box-shadow: inset 0 0 0 2px #008BD2;
    opacity: 1 !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .accompagnement-edaf-fonctionnement-box .slick-dots .slick-active button:before {
    background: #008BD2;
  }
  .slider-action .slick-dots li:nth-child(1) button:before {
    content: url('../imgs/icons/fct-edaf/scannez.png');
  }
  .slider-action .slick-dots li:nth-child(1).slick-active button:before {
    content: url('../imgs/icons/fct-edaf/scannez-active.png');
  }
  .slider-action .slick-dots li:nth-child(2) button:before {
    content: url('../imgs/icons/fct-edaf/telechargez.png');
  }
  .slider-action .slick-dots li:nth-child(2).slick-active button:before {
    content: url('../imgs/icons/fct-edaf/telechargez-active.png');
  }
  .slider-action .slick-dots li:nth-child(3) button:before {
    content: url('../imgs/icons/fct-edaf/transferez.png');
  }
  .slider-action .slick-dots li:nth-child(3).slick-active button:before {
    content: url('../imgs/icons/fct-edaf/transferez-active.png');
  }
  .slider-action .slick-dots li:nth-child(4) button:before {
    content: url('../imgs/icons/fct-edaf/photographiez.png');
  }
  .slider-action .slick-dots li:nth-child(4).slick-active button:before {
    content: url('../imgs/icons/fct-edaf/photographiez-active.png');
  }
  .slider-fonction .slick-dots li:nth-child(1) button:before {
    content: url('../imgs/icons/fct-edaf/infos-secto.png');
  }
  .slider-fonction .slick-dots li:nth-child(1).slick-active button:before {
    content: url('../imgs/icons/fct-edaf/infos-secto-active.png');
  }
  .slider-fonction .slick-dots li:nth-child(2) button:before {
    content: url('../imgs/icons/fct-edaf/tableau-bord.png');
  }
  .slider-fonction .slick-dots li:nth-child(2).slick-active button:before {
    content: url('../imgs/icons/fct-edaf/tableau-bord-active.png');
  }
  .slider-fonction .slick-dots li:nth-child(3) button:before {
    content: url('../imgs/icons/fct-edaf/facturation.png');
  }
  .slider-fonction .slick-dots li:nth-child(3).slick-active button:before {
    content: url('../imgs/icons/fct-edaf/facturation-active.png');
  }
  .slider-fonction .slick-dots li:nth-child(4) button:before {
    content: url('../imgs/icons/fct-edaf/note-frais.png');
  }
  .slider-fonction .slick-dots li:nth-child(4).slick-active button:before {
    content: url('../imgs/icons/fct-edaf/note-frais-active.png');
  }
  .accompagnement-edaf-fonctionnement-box .slick-dots li:before {
    content: '';
    width: 0;
    height: 2.5px;
    background: transparent;
    display: block;
    position: absolute;
    border-radius: 2px;
    bottom: -10px;
    left: 50%;
    transition: width .5s ease, background-color .5s ease, left .5s ease;
  }
  .accompagnement-edaf-fonctionnement-box:last-child .slick-dots li:before {
    bottom: unset;
    top: -10px;
  }
  .accompagnement-edaf-fonctionnement-box .slick-dots li.slick-active:before {
    content: '';
    width: 30px;
    background: #008BD2;
    display: block;
    position: absolute;
    left: calc(50% - 15px);
  }

  /* References */
  .references-txt {
    width: 80%;
    margin: 0 auto;
  }
  .references-ambassadeurs-container {
    flex-wrap: wrap;
  }
  .references-ambassadeurs-box {
    width: 50%;
  }

  /* Contact */
  .contact-container {
    flex-wrap: wrap;
  }
  .contact .section-subtitle {
    text-align: center;
    margin-left: auto;
  }
  .contact-calendly-container {
    width: 100%;
    max-width: 490px;
    margin: auto;
  }
  .contact-form-container {
    width: 100%;
  }
}

@media (max-width: 767px) {
  /* GENERAL */
  .section-padding {
    padding-top: 30px;
    padding-bottom : 30px;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .section-subtitle {
    margin-bottom: 25px;
  }

  /* MENU */
  .burger-menu {
    right: 30px;
  }
  .navigation-menu {
    padding: 80px 30px;
    width: fit-content;
  }
  .navigation-menu-item {
    margin-right: 0;
  }
  .navigation-menu-item:after {
    left: 100%;
  }
  .navigation-menu-item:hover:after {
    left: calc(100% - 50px);
  }

  /* CONTENT */
  /* Accueil */
  .accueil-picture {
    width: 80%;
    max-width: 350px;
  }

  /* Citation */
  .carte-de-visite-container {
    width: 90%;
  }
  .carte-de-visite-citation {
    width: 90%;
    margin: 25px;
  }

  /* Accompagnement */
  /* accompagnement garanti */
  .accompagnement-edaf-garanti-text-container {
    width: 80%;
    margin: -30px auto 30px;
  }
  .accompagnement-edaf-garanti-text-icon-container .slick-prev {
    left: -10%;
  }
  .accompagnement-edaf-garanti-text-icon-container .slick-next {
    right: -10%;
  }
  .accompagnement-edaf-garanti-text {
    width: 90%;
  }
  /* accompagnement rationalisation */
  .accompagnement-edaf-rationalisation-box {
    flex-direction: column-reverse;
    text-align: center;
  }
  .accompagnement-edaf-rationalisation-box:nth-child(even) {
    flex-direction: column-reverse;
  }
  .accompagnement-edaf-rationalisation-box:nth-child(odd) {
    text-align: center;
  }
  .accompagnement-edaf-rationalisation-text-container {
    width: 100%;
    padding: 25px 0;
  }
  .accompagnement-edaf-rationalisation-picture-container {
    width: 100%;
    min-height: 25vh;
  }

  /* References */
  .references-avis {
    width: 80%;
  }
  .references-ambassadeurs-picture {
    display: block;
    max-width: 120px;
    max-height: 120px;
  }

  /* Contact */
  .contact-form {
    margin: 0 auto;
    width: 90%;
  }
  .contact-form-field-container {
    flex-direction: column;
  }
  .contact-form-field-container .contact-form-field-box {
    width: 100%;
  }
  .contact-form-field {
    text-align: center;
  }
  .form-info-usage-box span {
    text-align: left;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    align-items: center;
  }

  .footer-mentions-legal {
    margin: 0 auto 10px;
  }
}

/* ACTUS */
/* General */
.site {
  width: 100%;
}
.page-content ul {
  list-style: none;
  margin: 24px 0;
}
.page-content ul > :first-child {
  margin-top: 0;
}
.page-content ul > :last-child {
  margin-bottom: 0;
}
.page-content li {
  position: relative;
  text-align: left;
  margin: 24px 0;
}
.page-content li:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: -40px;
  top: calc(50% - 12px);
  background: url("../imgs/bullet-arrow.svg") no-repeat center / contain;
}
.hero {
  position: relative;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: calc(100vh - 100px);
  color: #fff;
  overflow: hidden;
}
.hero:before,
.hero:after {
  content: "";
  display: block;
  position: absolute;
  top: -50%;
  left: -50%;
  transform: translate(50%, 50%);
  width: 100%;
  height: 100%;
}
.hero:before {
  background: #000000;
  background: rgba(0, 0, 0, .75);
}
.hero:after {
  background: rgb(238,118,86);
  background: -moz-linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  background: linear-gradient(90deg, rgba(247,161,43,1) 0%, rgba(238,118,86,1) 50%, rgba(203,70,107,1) 100%);
  opacity: .15;
}
.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-background video,
.hero-background img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-container {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.content-wrapper {
  width: 100%;
}
.hero .content-wrapper > :first-child {
  margin-top: 0;
}
.hero .content-wrapper > :last-child {
  margin-bottom: 0;
}
.hero .button-container {
  max-width: 90%;
  margin: 40px auto;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  width: 100%;
  margin: 32px 0;
}
.hero .categories {
  justify-content: center;
  max-width: 1200px;
  margin: 32px auto;
}
.category {
  text-transform: uppercase;
  margin: 0;
  font-size: 1.33em;
  font-weight: 600;
}
.meta-container {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  width: 100%;
  margin: 24px auto;
}
.hero .meta-container {
  justify-content: center;
}
.meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.meta-value {
  margin: 0;
}
.permalink {
  font-weight: 600;
  white-space: nowrap;
}
.normalized-link {
  text-decoration: none;
}
.underline {
  color: #505050;
  text-decoration: none;
  background-image: rgb(0,139,210);
  background-image: -moz-linear-gradient(90deg, rgba(91,183,196,1) 0%, rgba(0,139,210,1) 50%, rgba(0,104,179,1) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(91,183,196,1) 0%, rgba(0,139,210,1) 50%, rgba(0,104,179,1) 100%);
  background-image: linear-gradient(90deg, rgba(91,183,196,1) 0%, rgba(0,139,210,1) 50%, rgba(0,104,179,1) 100%);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: right bottom;
  transition: .2s ease-in-out;
}
.hero .underline {
  color: #fff;
}
.hero .underline:hover {
  color: rgba(255, 255, 255, .5);
}
.underline:hover {
  background-size: 0% 2px;
  color: rgba(112, 84, 104, .5);
}
.scroll-arrow {
	position: absolute;
	bottom: 30px;
  z-index: 2;
}
.col-2 {
  width: 90%;
  margin: 40px auto;
  display: flex;
  gap: 40px;
}
.col-1on2 {
  width: 50%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
  text-align: left;
}
.col-2on2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.col-2on2 .content-wrapper {
  box-sizing: border-box;
  padding: 20px;
}
.col-4 {
  width: 90%;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.col-4 .content-wrapper {
  width: calc(25% - 30px);
  display: flex;
  align-items: center;
  height: auto;
  box-sizing: border-box;
  padding: 20px;
}
.col-4 .content {
  width: 100%;
}
.col-4 .meta-container {
  gap: 24px;
  justify-content: center;
}
.col-4 span {
  display: none;
}
.col-4 .meta {
  flex-direction: column;
}
.actus .content {
  width: 100%;
}
.actus .content > :first-child {
  margin-top: 0;
}
.actus .content > :last-child {
  margin-bottom: 0;
}
.actus h2 {
  max-width: 100%;
  text-align: left;
}
.error-404 {
  width: 90%;
  margin: 0 auto;
}
.error-404 header {
  height: auto;
}
.error-404 .page-content {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 1279px) {
  .categories, .meta-container {
    flex-wrap: wrap;
  }
  .hero .categories, .hero .meta-container {
    max-width: 90%;
  }
  .meta-container {
    gap: 24px;
    justify-content: center;
  }
  .meta-container span {
    display: none;
  }
  .meta {
    flex-direction: column;
  }
  .col-2 {
    flex-wrap: wrap;
  }
  .col-1on2,
  .col-2on2 {
    width: 100%;
  }
  .col-4 .content-wrapper {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .col-4 .content-wrapper {
    width: 100%;
  }
}

/* Article */
article {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
article .background {
  position: absolute;
  width: 100%;
  height: calc(100vh - 100px);
  z-index: -1;
}
article .article-container {
  width: 90%;
  max-width: 1280px;
  margin-top: calc(calc(100vh - 96.2px) * .25);
}
article .article-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #fff;
  box-sizing: border-box;
  padding: 56px 160px;
  border-radius: 5px;
}
article h1,
article h2 {
  width: max-content;
  max-width: 100%;
  text-align: left;
  margin: 40px 0;
}
article h3 {
  text-align: left;
}
article .categories {
  margin-top: 0;
}
article .content > :last-child {
  margin-bottom: 0;
}
article ul {
  list-style: none;
  margin: 24px 0;
}
article ul > :first-child {
  margin-top: 0;
}
article ul > :last-child {
  margin-bottom: 0;
}
article ul li {
  position: relative;
  text-align: left;
  margin: 24px 0;
}
article ul li:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: -40px;
  top: calc(50% - 12px);
  background: url("../imgs/bullet-arrow.svg") no-repeat center / contain;
}
article figure {
  position: relative;
	margin: 40px 0;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
}
article .wp-block-image figcaption  {
	margin: .5em 0 0;
	width: 100%;
  font-size: .8em;
	text-align: center;
	color: #C7C7C7;
}
article .wp-block-image img {
	min-width: 100%;
	max-height: 350px;
	object-fit: cover;
	object-position: center;
	display: block;
}
article .wp-block-embed-youtube .wp-block-embed__wrapper {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
  border-radius: 15px;
	overflow: hidden;
}
article .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 100%;
	height: 100%;
}
article .wp-block-embed-twitter .wp-block-embed__wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
}
article .wp-block-embed-twitter .wp-block-embed__wrapper .twitter-tweet {
	margin: 0 !important;
}
article .wp-block-quote {
  max-width: 100%;
  width: max-content;
	margin: 40px auto;
	text-align: center;
}
article .wp-block-quote p {
	position: relative;
	z-index: 1;
	font-weight: 500;
	font-style: italic;
	padding: 24px;
	border: 1px solid #008BD2;
  border-radius: 15px;
}
article .wp-block-quote p:before {
	content: url("../imgs/icons/quotes_left.svg");
	left: -20px;
	bottom: -20px;
}
article .wp-block-quote p:after {
	content: url("../imgs/icons/quotes_right.svg");
	right: -20px;
	top: -20px;
}
article .wp-block-quote p:before, .wp-block-quote p:after {
	position: absolute;
	z-index: -1;
	width: 21px;
	height: 16px;
	padding: 10px;
	background: #FFFFFF;
}
article .wp-block-quote cite {
  display: block;
  text-align: right;
	font-style: normal;
}
article .article-footer {
  margin: 40px 0 40px;
}
article .readmore {
  font-size: 1.33em;
  font-weight: 600;
  color: #505050;
}
article .readmore.title {
  text-align: center;
}
.related-posts-container {
	display: flex;
	justify-content: center;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
}
.related-posts-container .slick-next::before, .related-posts-container .slick-prev::before {
  color: #505050;
  opacity: 1;
}
.related-post {
  min-width: 300px;
	padding: 30px;
	border-radius: 10px;
	margin: 10px;
}
.related-post.slick-slide {
	height: auto;
}
.related-posts-container .normalized-link {
  text-decoration: none;
}
.related-posts-container .normalized-link p {
  margin: 0 0 32px;
}
@media (max-width: 1279px) {
  article .article-wrapper {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  article .article-wrapper {
    padding: 24px;
  }
  .related-post .meta-container {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
  }
  .related-post .meta-container span {
    display: none;
  }
}
