@charset "UTF-8";
/****************************************************************************/
/* BASE
/****************************************************************************/
@import url("https://use.typekit.net/xnd6izr.css");
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*
* 62.5% permet de convertir les rem en px -> 1.6rem = 16px
*/
html {
  font-size: 62.5%;
}
body {
  margin: 0;
}
/****************************************************************************/
/* MIXINS
/****************************************************************************/
/****************************************************************************/
/* COULEURS
/****************************************************************************/
.black {
  color: #000000;
}
.white {
  color: #FFFFFF;
}
.grey-light {
  color: #C9CFD3;
}
.grey-light2 {
  color: #EAEBEB;
}
.green-light {
  color: #5AB784;
}
.green {
  color: #006657;
}
.grey {
  color: #475054;
}
.bg-black {
  background-color: #000000;
}
.bg-white {
  background-color: #FFFFFF;
}
.bg-grey-light {
  background-color: #C9CFD3;
}
.bg-grey-light2 {
  background-color: #EAEBEB;
}
.bg-green-light {
  background-color: #5AB784;
}
.bg-green {
  background-color: #006657;
}
.bg-grey {
  background-color: #475054;
}
.bg-gradient-green {
  background: linear-gradient(90deg, #006657 0%, #5ab784 50%, #006657 100%);
}
.bg-gradient-green-vertical {
  background: linear-gradient(0deg, #006657 0%, #5ab784 50%, #006657 100%);
}
/****************************************************************************/
/* POLICES / CUSTOM FONTS
/****************************************************************************/
/****************************************************************************/
/* RESPONSIVE BREAKPOINTS
/****************************************************************************/
/****************************************************************************/
/* GENERAL
/****************************************************************************/
html {
  scroll-behavior: smooth;
}
/****************************************************************************/
/* COOKIES / RGPD
/****************************************************************************/
body.gdpr-infobar-visible {
  position: relative;
}
body.gdpr-infobar-visible::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  top: -150px;
  left: 0;
  z-index: 9980;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar {
  z-index: 9990;
}
@media (max-width: 576px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    padding-top: 60px;
  }
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-allow-all {
  order: 2 !important;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-reject-btn {
  order: 1 !important;
}
@media (max-width: 576px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-button-holder {
    position: absolute;
    top: 30px;
    right: 10px;
  }
}
.gdpr_lightbox {
  z-index: 99970;
}
.grecaptcha-badge {
  visibility: hidden;
}
.rgpd__block {
  border: 0px solid rgba(0, 0, 0, 0.125);
}
.rgpd__block .rgpd__title {
  font-weight: 700;
}
.rgpd__block .rgpd__content {
  height: 120px;
  overflow: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.rgpd__block .rgpd__content::-webkit-scrollbar {
  display: none;
}
.rgpd__block .rgpd__content > p, .rgpd__block .rgpd__content ul {
  font-size: 1.4rem;
}
/****************************************************************************/
/* TITRES, LIENS et TEXTES
/****************************************************************************/
body {
  font-family: "poppins", sans-serif;
  font-size: 1.6rem;
}
p {
  font-size: 1.6rem;
}
img, iframe {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
a[href="#"] {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}
a:not([href="#"]):hover {
  cursor: pointer;
  text-decoration: none;
}
h1, .h1 {
  font-size: 3.3rem;
  font-family: "brother-1816", sans-serif;
  font-weight: 600;
}
h1 strong, .h1 strong {
  font-size: 5.3rem;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
}
h2, .h2 {
  font-size: 3rem;
  font-family: "brother-1816", sans-serif;
}
h3, .h3 {
  font-size: 2.1rem;
  font-family: "brother-1816", sans-serif;
}
.big_style {
  font-size: 4.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #475054;
  line-height: 110%;
  margin-bottom: 15px;
}
.big_style em, .big_style i, .big_style strong {
  font-style: normal;
  color: #C9CFD3;
}
.title_underlined {
  padding-bottom: 15px;
  position: relative;
}
.title_underlined:after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 50%;
  width: 86px;
  transform: translateX(-50%);
  height: 1.5px;
  background: linear-gradient(90deg, #006657 0%, #5ab784 50%, #006657 100%);
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%, 10% 0);
}
ul li {
  /*list-style-type: none ;*/
}
a, button, input[type=submit] {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a:hover, button:hover, input[type=submit]:hover {
  text-decoration: none;
}
a:focus-visible, button:focus-visible, input[type=submit]:focus-visible {
  box-shadow: none;
}
.effect {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transform: translate3d(0px, 100px, 0px);
  -webkit-transform: translate3d(0px, 100px, 0px);
  -o-transform: translate(0px, 100px);
  -ms-transform: translate(0px, 100px);
  transform: translate3d(0px, 100, 0px);
}
.effect.visible {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
.btn {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 17px 34px 15px 34px;
  border-radius: 34px;
  /*text-transform: uppercase;*/
  border: 1px solid #006657;
}
.btn:hover {
  background: linear-gradient(90deg, #006657 0%, #5ab784 50%, #006657 100%);
  color: #FFFFFF !important;
}
a.link, span.link {
  position: relative;
  padding-bottom: 6px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #475054;
}
a.link:after, span.link:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #006657 0%, #5ab784 50%, #006657 100%);
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%, 10% 0);
  transition: all 0.2s ease;
}
a.link:hover, span.link:hover {
  color: #475054;
}
a.link:hover:after, span.link:hover:after {
  width: 0;
}
/****************************************************************************/
/* STRUCTURE
/****************************************************************************/
.page-content {
  overflow-x: hidden;
  padding-top: 104px;
}
.container-fluid-custom {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
/****************************************************************************/
/* HEADER + MENU + BREADCRUMB
/****************************************************************************/
.admin-bar .fixed-top {
  top: 32px;
}
.navbar-brand img {
  /*max-height:50px;*/
}
.navbar {
  padding: 20px 15px;
}
.navbar-nav .nav-item .nav-link {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.7rem;
  position: relative;
}
.navbar-nav .nav-item .nav-link:after {
  position: absolute;
  content: "";
  bottom: 8px;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  height: 2px;
  background: #006657;
  /*clip-path: polygon(90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%, 10% 0);*/
  transition: all 0.2s ease;
}
.navbar-nav .nav-item .nav-link:hover {
  color: #006657;
}
.navbar-nav .nav-item .nav-link:hover:after {
  width: calc(100% - 50px);
  background-color: #006657;
}
.navbar-nav .nav-item .nav-link.dropdown-toggle .caret {
  display: none;
}
.navbar-nav .nav-item .nav-link.dropdown-toggle:after {
  border: 0 !important;
}
.navbar-nav .nav-item.featured .nav-link {
  border: 1px solid #FFFFFF;
  color: #006657;
  position: relative;
  font-weight: 700;
}
.navbar-nav .nav-item.featured .nav-link:after {
  position: absolute;
  content: "";
  bottom: 8px;
  left: 50%;
  width: calc(100% - 50px);
  transform: translateX(-50%);
  height: 1.5px;
  background: linear-gradient(90deg, #006657 0%, #5ab784 50%, #006657 100%);
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%, 10% 0);
}
.navbar-nav .nav-item.featured .nav-link:hover {
  border-color: #006657;
  padding-bottom: 10px;
}
.navbar-nav .nav-item.featured .nav-link:hover:after {
  display: none;
}
.navbar-nav .nav-item.current_page_item .nav-link {
  color: #006657;
  position: relative;
  font-weight: 700;
}
.navbar-nav .nav-item.current_page_item .nav-link:after {
  width: calc(100% - 50px);
  background-color: #006657;
}
.navbar-nav .dropdown-menu {
  min-width: 260px;
}
.navbar-nav .dropdown.current-menu-ancestor.current-menu-parent > a {
  color: #006657;
  position: relative;
  font-weight: 700;
}
.navbar-toggler {
  border: 2px solid #006657;
  border-radius: 4px;
  height: 42px;
  width: 42px;
  padding: 0;
  position: relative;
}
.navbar-toggler .navbar-toggler-icon {
  transition: all 0.2s ease;
  position: absolute;
  left: 5px;
  width: calc(100% - 10px);
  top: calc(25%);
  height: 2px;
  background: #006657;
}
.navbar-toggler .navbar-toggler-icon:nth-child(2) {
  top: calc(50%);
}
.navbar-toggler .navbar-toggler-icon:nth-child(3) {
  top: calc(75%);
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon:nth-child(2) {
  height: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon:nth-child(1) {
  top: calc(40%);
  width: calc(80% - 8px);
  left: calc(10% + 4px);
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon:nth-child(3) {
  top: calc(60%);
  width: calc(80% - 8px);
  left: calc(10% + 4px);
}
.rank-math-breadcrumb {
  padding: 0;
}
.rank-math-breadcrumb * {
  font-size: 1.3rem;
}
.rank-math-breadcrumb a:hover {
  color: inherit;
  text-decoration: underline;
}
.rank-math-breadcrumb span.last {
  font-weight: 400;
}
.rank-math-breadcrumb .separator {
  display: inline-block;
  padding: 0 5px;
}
.btn.btn_fixed {
  position: fixed;
  right: 0;
  top: 200px;
  z-index: 99;
  border: 1px solid #FFFFFF;
  border-radius: 0;
  padding: 0;
  height: 61px;
  width: 65px;
}
.btn.btn_fixed .icon {
  height: 24px;
  width: 27px;
  background: url(../icons/icon-envelop.png) no-repeat center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
/****************************************************************************/
/* PAGE CONTENT
/****************************************************************************/
.page-content .heading h1, .page-content .heading h2, .page-content .heading h3, .offer-content .heading h1, .offer-content .heading h2, .offer-content .heading h3 {
  font-family: "brother-1816", sans-serif;
  color: #006657;
  font-size: 3.8rem;
  font-weight: 900;
  margin: 15px 0 10px 0;
}
.page-content .heading h3, .offer-content .heading h3 {
  font-family: "brother-1816", sans-serif;
  font-size: 2.1rem;
  color: #5AB784;
  font-weight: 500;
}
.page-content .wp-block-gallery:where(.is-layout-flex), .offer-content .wp-block-gallery:where(.is-layout-flex) {
  /*gap: 15px!important;*/
}
.page-content .wp-block-buttons .wp-element-button, .offer-content .wp-block-buttons .wp-element-button {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 17px 34px 15px 34px;
  text-transform: inherit;
  border-radius: 34px;
  border: 1px solid #006657;
  color: #006657;
  background-color: #FFFFFF;
}
.page-content .wp-block-buttons .wp-element-button:hover, .offer-content .wp-block-buttons .wp-element-button:hover {
  background: linear-gradient(90deg, #006657 0%, #5ab784 50%, #006657 100%);
  color: #FFFFFF;
}
.page-content .list ul, .offer-content .list ul {
  padding-left: 20px;
  list-style-type: none;
}
.page-content .list ul li, .offer-content .list ul li {
  position: relative;
}
.page-content .list ul li:before, .offer-content .list ul li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  height: 9px;
  width: 9px;
  background: url(../icons/list.svg) no-repeat center;
  /*background-color: $white;
          border:1px solid $green;
          border-radius: 50%;*/
}
.page-content a:hover, .offer-content a:hover {
  color: #006657;
}
.bloc_media_txt .txt_content ul {
  list-style-type: none;
  padding-left: 0;
}
.bloc_media_txt .txt_content ul li {
  position: relative;
  padding-left: 22px;
}
.bloc_media_txt .txt_content ul li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  height: 9px;
  width: 9px;
  background: url(../icons/list.svg) no-repeat center;
  /*background-color: $white;
          border:1px solid $green;
          border-radius: 50%;*/
}
/****************************************************************************/
/* BLOC ENTETE
/****************************************************************************/
.banner {
  height: 684px;
  position: relative;
  min-width: 100vh;
}
.banner .banner_content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 575px;
  padding: 35px 60px 50px 60px;
}
.banner .banner_content .subtitle {
  font-size: 1.8rem;
  font-weight: 700;
}
.banner .banner_content .h1 strong {
  font-size: 4rem;
}
.banner .banner_content .btn {
  position: absolute;
  bottom: 0;
  left: 60px;
  margin-bottom: -29px;
}
.banner .banner_content .btn:hover {
  color: #FFFFFF;
}
.banner_page {
  height: 620px;
}
.banner_page .banner_page_img {
  position: absolute;
  height: 100%;
  width: 84%;
  right: 0;
  top: 0;
}
.banner_page .banner_content {
  left: 0;
  max-width: 635px;
}
.banner_page .h1 {
  font-size: 3.8rem;
  font-weight: 700;
  text-transform: uppercase;
}
/****************************************************************************/
/* BLOC MEDIA / TEXTE
/****************************************************************************/
.bloc_media_txt h2 {
  font-size: 4.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #475054;
  line-height: 100%;
  margin-bottom: 15px;
  color: #475054;
}
.bloc_media_txt h2 i, .bloc_media_txt h2 em, .bloc_media_txt h2 strong {
  font-style: normal;
  color: #C9CFD3;
  display: block;
}
.bloc_media_txt h3 {
  font-family: "poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #5AB784;
  margin-bottom: 10px;
}
.bloc_media_txt .media_content {
  position: relative;
}
.bloc_media_txt .media_content .related_content {
  position: absolute;
  max-width: 50%;
  left: -25px;
  top: 50px;
  text-align: left;
}
.bloc_media_txt .media_content .related_content ul {
  list-style-type: circle;
  margin: 0;
}
body:not(.home) .bloc_media_txt h1, body:not(.home) .bloc_media_txt h2 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #006657;
  line-height: 105%;
  margin-bottom: 15px;
}
/****************************************************************************/
/* BLOC NOS SOLUTIONS
/****************************************************************************/
.solutions_bloc .solution_bloc {
  padding: 60px 25px;
  background: #EAEBEB;
  display: block;
  position: relative;
  height: 100%;
}
.solutions_bloc .solution_bloc .h3 {
  font-weight: 500;
  font-size: 2.1rem;
}
.solutions_bloc .solution_bloc .link_p {
  position: absolute;
  left: 25px;
  bottom: 30px;
}
/****************************************************************************/
/* BLOC YOUTUBE VIDEO
/****************************************************************************/
.youtube_part .youtube_bloc {
  position: relative;
  padding: 0 20px;
}
.youtube_part .youtube_bloc:before {
  position: absolute;
  content: "";
  height: calc(100% - 50px);
  top: 20px;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, #006657 0%, #5ab784 50%, #006657 100%);
  z-index: -1;
}
/****************************************************************************/
/* BLOC MEDIA TEXTE PERSONNALISE
/****************************************************************************/
.left_media_custom_bloc .left_media_custom_txt .left_media_custom_title {
  display: block;
  padding: 20px 40px;
  width: 125%;
  position: relative;
  z-index: 2;
}
.left_media_custom_bloc .left_media_custom_txt .left_media_custom_title .big_style {
  color: #FFFFFF;
  font-size: 3.9rem;
  line-height: 110%;
  margin-bottom: 0;
}
.left_media_custom_bloc .left_media_custom_txt ul {
  list-style-type: none;
  padding-left: 0;
}
.left_media_custom_bloc .left_media_custom_txt ul li {
  position: relative;
  padding-left: 22px;
}
.left_media_custom_bloc .left_media_custom_txt ul li:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  height: 9px;
  width: 9px;
  background: url(../icons/list.svg) no-repeat center;
  /*background-color: $white;
          border:1px solid $green;
          border-radius: 50%;*/
}
/****************************************************************************/
/* BLOC CHIFFRES CLES
/****************************************************************************/
.key_numbers_part .h2 {
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 200%;
}
.key_numbers_part .h2 strong {
  display: block;
  font-size: 3.9rem;
  color: #006657;
  font-weight: 700;
}
.key_numbers_part .key_numbers_bloc .number {
  font-size: 2.1rem;
  font-weight: 500;
  font-family: "brother-1816", sans-serif;
}
/****************************************************************************/
/* BLOC GAlERIE PHOTOS
/****************************************************************************/
.custom_gallery_part {
  padding-bottom: 45px;
}
.custom_gallery_part .gallery_bloc .gallery_img {
  position: relative;
  overflow: hidden;
}
.custom_gallery_part .gallery_bloc .gallery_img .caption {
  position: absolute;
  top: 25px;
  left: 0;
  text-align: left;
  display: none;
  transition: all 0.2s ease;
  font-size: 1.5rem;
  padding: 20px 25px;
  z-index: 2;
}
.custom_gallery_part .gallery_bloc .gallery_img img {
  transition: transform 0.5s ease;
}
.custom_gallery_part .gallery_bloc .gallery_img:hover .caption {
  display: block;
}
.custom_gallery_part .gallery_bloc .gallery_img:hover img {
  transform: scale(1.2);
}
.custom_gallery_part.with_gap .gallery_bloc:nth-child(3n+2) {
  transform: translateY(30px);
}
.realisations_part .gallery_bloc .gallery_img {
  overflow: hidden;
}
.realisations_part .gallery_bloc .gallery_img img {
  transition: transform 0.5s ease;
}
.realisations_part .gallery_bloc:hover .gallery_img img {
  transform: scale(1.2);
}
/****************************************************************************/
/* JOB OFFERS
/****************************************************************************/
.job_offers_form_part .offers_part .offer_bloc {
  display: block;
  position: relative;
  border-left: 1px solid #5AB784;
  border-top: 1px solid #5AB784;
  padding: 50px 30px 30px 30px;
  height: 100%;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.job_offers_form_part .offers_part .offer_bloc p {
  font-size: 1.6rem;
  color: #475054;
}
.job_offers_form_part .offers_part .offer_bloc .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.1rem;
}
.job_offers_form_part .offers_part .offer_bloc .link {
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
  transition: all 0.2s ease;
}
.job_offers_form_part .offers_part .offer_bloc .link:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #006657 0%, #5ab784 50%, #006657 100%);
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%, 10% 0);
}
.job_offers_form_part .offers_part .offer_bloc .icon-part {
  position: absolute;
  left: 30px;
  top: -35px;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: linear-gradient(90deg, #006657 0%, #5ab784 50%, #006657 100%);
}
.job_offers_form_part .offers_part .offer_bloc .icon-part .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 25px;
  width: 25px;
  background: url(../icons/icon-job.png) no-repeat center center / 90%;
}
.job_offers_form_part .offers_part .offer_bloc:hover {
  box-shadow: 5px 5px 5px 0 rgba(90, 183, 132, 0.4);
}
.job_offers_form_part .offers_part .offer_bloc:hover .link {
  margin-left: 15px;
}
/****************************************************************************/
/* SINGLE ACTU 
/****************************************************************************/
.single-news .page-content .bannerintro, .post-type-archive-news .page-content .bannerintro {
  padding: 40px 0 90px;
}
.single-news .page-content .bannerintro h1, .post-type-archive-news .page-content .bannerintro h1 {
  font-family: "brother-1816", sans-serif;
  color: #006657;
  font-size: 3.8rem;
  font-weight: 900;
  margin: 15px 0 10px 0;
}
.post-type-archive-news .page-content .bannerintro {
  padding: 40px 0 60px;
}
.post-type-archive-news #news-filter {
  padding-bottom: 10px;
}
.post-type-archive-news #news-filter select#news_category {
  font-weight: bold;
  appearance: none;
  background: url(../img/arrow-select-filter.svg) no-repeat right top 12px #FFFFFF;
  border: none;
  padding: 5px 27px 5px 11px;
}
.post-type-archive-news .news-grid article .contentnewsbloc {
  position: relative;
}
.post-type-archive-news .news-grid article .contentnewsbloc a.absolutelink {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.post-type-archive-news .news-grid article .post-thumbnail {
  margin-bottom: 20px;
  overflow: hidden;
}
.post-type-archive-news .news-grid article .post-thumbnail img {
  transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.post-type-archive-news .news-grid article h2 {
  color: #5AB784;
  font-size: 2.1rem;
  margin-bottom: 12px;
}
.post-type-archive-news .news-grid article .news-category {
  color: #475054;
}
.post-type-archive-news .news-grid article:hover .post-thumbnail img {
  transform: scale(1.1);
}
.post-type-archive-news .news-grid article:hover span.link::after {
  width: 0;
}
.post-type-archive-news .pagination {
  padding: 80px 0 60px;
  justify-content: end;
}
.post-type-archive-news .pagination a, .post-type-archive-news .pagination span {
  font-weight: bold;
  color: #006657;
  padding: 20px;
  text-align: center;
  width: 40px;
  height: 60px;
}
.post-type-archive-news .pagination span.current {
  border: 1px solid #006657;
  border-radius: 50px;
  width: 60px;
}
/****************************************************************************/
/* SINGLE OFFER
/****************************************************************************/
.single-offre .offer_part {
  padding-top: 50px;
}
.single-offre .offer_part .h1 {
  text-transform: uppercase;
  font-size: 3.8rem;
  font-weight: 900;
  max-width: 70%;
  margin-bottom: 20px;
}
.single-offre .offer_part .offer_info {
  position: relative;
  padding-left: 0 !important;
}
.single-offre .offer_part .offer_info:before {
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #5AB784;
  position: absolute;
  top: 0;
}
.single-offre .offer_part .offer_info p {
  margin: 0;
}
.single-offre .offer_part .offer_info p .icon {
  display: inline-block;
  height: 25px;
  width: 25px;
  position: relative;
  top: 5px;
  margin: 0 10px 0 0;
}
.single-offre .offer_part .offer_info p .icon.icon-location {
  background: url(../icons/icon-localisation.png) no-repeat center center / 80%;
}
.single-offre .offer_part .offer_info p .icon.icon-type {
  background: url(../icons/icon-job.png) no-repeat center center / 90%;
}
.single-offre .offer_part .offer_info p .icon.icon-date {
  background: url(../icons/icon-date.png) no-repeat center center / 90%;
}
.offer-page {
  padding-top: 115px;
  padding-bottom: 100px;
}
.offer-page .offer-content .offset-lg-1 {
  margin-left: 0;
}
/****************************************************************************/
/* CONTACT
/****************************************************************************/
.page-template-page-contact .h1 {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 4.7rem;
}
.page-template-page-contact .offer_part {
  padding-top: 30px;
}
.page-template-page-contact .address_bloc, .page-template-page-contact .mail_bloc {
  padding-left: 30px;
  position: relative;
}
.page-template-page-contact .address_bloc:before, .page-template-page-contact .mail_bloc:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  height: 23px;
  width: 23px;
  background: url("../img/map.png") no-repeat top center;
}
.page-template-page-contact .mail_bloc:before {
  background: url("../img/email.png") no-repeat top center;
}
/****************************************************************************/
/* SLICK SLIDER
/****************************************************************************/
.slick-slider {
  position: relative;
  display: block;
  padding-bottom: 40px;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/****************************************************************************/
/* FOOTER
/****************************************************************************/
.footer .big_link {
  font-size: 1.8rem;
}
.footer .h3 {
  text-transform: uppercase;
  font-size: 1.8rem;
}
.footer .list_txt ul {
  list-style-type: none;
  padding: 0;
}
.footer .list_txt ul li {
  margin-bottom: 10px;
}
.footer .address_bloc, .footer .mail_bloc {
  padding-left: 30px;
  position: relative;
}
.footer .address_bloc:before, .footer .mail_bloc:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  height: 23px;
  width: 23px;
  background: url("../img/map.png") no-repeat top center;
}
.footer .mail_bloc:before {
  background: url("../img/email.png") no-repeat top center;
}
.footer .linkedin_bloc .dashicons {
  display: inline-block;
  position: relative;
  left: 1px;
}
.footer .list-inline .list-inline-item {
  font-size: 1.4rem;
}
.footer a:hover {
  color: #006657;
}
/****************************************************************************/
/* FORMS
/****************************************************************************/
.form_bloc {
  padding: 70px;
}
.form_bloc .h2 {
  font-size: 2.6rem;
  font-weight: 700;
}
::placeholder, ::-moz-placeholder, ::-ms-input-placeholder {
  color: #FFFFFF !important;
  font-size: 1.6rem;
  opacity: 1;
}
.wpcf7 form ::-webkit-input-placeholder {
  color: #FFFFFF !important;
}
.wpcf7 form ::-moz-placeholder {
  color: #FFFFFF !important;
}
.wpcf7 form :-ms-input-placeholder {
  color: #FFFFFF !important;
}
.wpcf7 form :-moz-placeholder {
  color: #FFFFFF !important;
}
.wpcf7 form .form-group {
  margin-bottom: 20px;
}
.wpcf7 form .form-group label {
  /*display: none;*/
}
.wpcf7 form .form-group label:not(.visually-hidden) {
  margin-bottom: 10px;
}
.wpcf7 form .form-group .wpcf7-form-control-wrap input, .wpcf7 form .form-group .wpcf7-form-control-wrap textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF !important;
  padding: 10px 0;
  border-radius: 0;
  opacity: 1;
  font-size: 1.6rem;
}
.wpcf7 form .form-group .wpcf7-form-control-wrap input::placeholder, .wpcf7 form .form-group .wpcf7-form-control-wrap input::-moz-placeholder, .wpcf7 form .form-group .wpcf7-form-control-wrap input::-ms-input-placeholder, .wpcf7 form .form-group .wpcf7-form-control-wrap textarea::placeholder, .wpcf7 form .form-group .wpcf7-form-control-wrap textarea::-moz-placeholder, .wpcf7 form .form-group .wpcf7-form-control-wrap textarea::-ms-input-placeholder {
  color: #FFFFFF !important;
  font-size: 1.6rem;
  opacity: 1;
}
.wpcf7 form .form-group .wpcf7-form-control-wrap input:focus, .wpcf7 form .form-group .wpcf7-form-control-wrap input:focus-visible, .wpcf7 form .form-group .wpcf7-form-control-wrap input:active, .wpcf7 form .form-group .wpcf7-form-control-wrap textarea:focus, .wpcf7 form .form-group .wpcf7-form-control-wrap textarea:focus-visible, .wpcf7 form .form-group .wpcf7-form-control-wrap textarea:active {
  box-shadow: 0 0 0 0;
}
.wpcf7 form .form-group .wpcf7-form-control-wrap textarea {
  border: 1px solid #FFFFFF;
  padding: 10px;
}
.wpcf7 form .form-group .codedropz-upload-wrapper .codedropz-upload-handler {
  border-radius: 0;
  border: 1px solid #FFFFFF;
}
.wpcf7 form .form-group .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-inner span, .wpcf7 form .form-group .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-inner .codedropz-btn-wrap {
  display: inline-block;
  margin: 0 3px;
}
.wpcf7 form .form-group .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-inner span .cd-upload-btn, .wpcf7 form .form-group .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-inner .codedropz-btn-wrap .cd-upload-btn {
  text-decoration: underline;
}
.wpcf7 form .form-group .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-inner span .cd-upload-btn:hover, .wpcf7 form .form-group .codedropz-upload-wrapper .codedropz-upload-handler .codedropz-upload-inner .codedropz-btn-wrap .cd-upload-btn:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.wpcf7 form .form-group .codedropz-upload-wrapper .codedropz-upload-handler .dnd-upload-counter {
  display: none;
}
.wpcf7 form .wpcf7-submit {
  border: 1px solid #FFFFFF;
  text-transform: inherit;
}
.wpcf7 form .wpcf7-submit:hover {
  background: #006657 !important;
  color: #FFFFFF;
}
.wpcf7 form .wpcf7-spinner {
  display: block;
}
/****************************************************************************/
/* MAPS
/****************************************************************************/
#map {
  position: relative;
  height: 500px;
  width: 100%;
}
#map .marker {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  background-color: rgba(255, 0, 0, 0.5);
}
/****************************************************************************/
/* ANIMATE
/****************************************************************************/
@keyframes fadeInLeftShort {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
    /* Réduit la distance de départ */
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.animate__fadeInLeftShort {
  animation-name: fadeInLeftShort;
}
@keyframes fadeInRightShort {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
    /* Réduit la distance de départ */
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.animate__fadeInRightShort {
  animation-name: fadeInRightShort;
}
@media (max-width: 1399.98px) {
  .single-offre .offer_part .h1 {
    max-width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .navbar-nav .nav-item .nav-link {
    padding: 12px 15px;
  }
  .left_media_custom_bloc .left_media_custom_txt .left_media_custom_title {
    display: block;
    padding: 20px;
  }
  .left_media_custom_bloc .left_media_custom_txt .left_media_custom_title .big_style {
    font-size: 3.2rem;
  }
}
@media (max-width: 991.98px) {
  .navbar-nav .nav-item .nav-link:hover {
    background: #006657;
    color: #FFFFFF;
  }
  .navbar-nav .nav-item .nav-link:after {
    display: none;
  }
  .navbar-nav .nav-item .dropdown-menu {
    border: 0;
    padding: 0 0 20px 15px;
    list-style-type: circle;
  }
  .navbar-nav .nav-item .dropdown-menu .nav-link {
    font-size: 1.5rem;
    padding: 7px;
  }
  .page-content > .container {
    max-width: 100%;
  }
  .bloc_media_txt h1, .big_style {
    font-size: 4rem;
  }
  .solutions_bloc .solution_bloc {
    padding: 30px 10px 45px 10px;
  }
  .solutions_bloc .solution_bloc .link_p {
    bottom: 15px;
  }
  iframe {
    max-width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .big_style br {
    display: none;
  }
  .left_media_custom_bloc .left_media_custom_txt .left_media_custom_title {
    width: 100%;
  }
  .footer > .container {
    max-width: 100%;
  }
  .banner_page {
    height: 420px;
  }
  .banner_page .banner_content {
    right: 40%;
    padding: 15px 30px 50px 30px;
  }
  .banner_page .banner_content .h1 {
    font-size: 3rem;
  }
  .home .banner {
    height: 400px;
    width: calc(100% + 30px);
    position: relative;
    margin: 0 -15px;
    min-width: 0;
    background-size: contain !important;
    left: 0;
    margin-bottom: 250px;
    right: 0;
  }
  .home .banner .banner_content {
    height: auto;
    width: 80%;
    min-width: 80%;
    max-width: none;
    top: inherit;
    transform: none;
    left: 0;
    bottom: -230px;
  }
}
@media (max-width: 767.98px) {
  h1, .h1 {
    font-size: 3rem;
  }
  h1 strong, .h1 strong {
    font-size: 3.6rem;
  }
  .banner .banner_content {
    max-width: 90%;
  }
  .bloc_media_txt .media_content {
    text-align: center;
  }
  .solutions_bloc .solution_bloc .link_p {
    left: 50%;
    transform: translateX(-50%);
  }
  .banner_page_img_sm {
    height: 200px;
    width: calc(100% + 30px);
    position: relative;
    margin: 0 -15px;
  }
  .banner_page {
    height: inherit;
    width: calc(100% + 15px);
    min-width: calc(100% + 15px);
  }
  .banner.banner_page .banner_content {
    display: block;
    position: inherit;
    width: calc(100% + 30px);
    margin: 0 -15px;
    left: 0;
    right: inherit;
    bottom: inherit;
    top: inherit;
    transform: inherit;
    max-width: inherit;
  }
  .custom_gallery_part.with_gap .gallery_bloc:nth-child(3n+2) {
    transform: translateY(0);
  }
}
@media (max-width: 575.98px) {
  h1, .h1 {
    font-size: 2.4rem;
  }
  h1 strong, .h1 strong {
    font-size: 2.8rem;
  }
  .banner .banner_content {
    width: 99%;
    max-width: 350px;
    padding: 15px 15px 30px 15px;
  }
  .banner .banner_content h1 strong {
    font-size: 3rem;
  }
  .home .banner {
    height: 200px;
    margin-bottom: 200px;
  }
  .home .banner .banner_content {
    width: 95%;
    min-width: 95%;
    bottom: -180px;
  }
  .btn {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 12px 24px 10px 24px;
    text-transform: uppercase;
    border-radius: 24px;
    border: 1px solid #006657;
  }
  .bloc_media_txt .media_content .related_content {
    max-width: 75%;
  }
  .banner_page .banner_content .h1 {
    font-size: 2.4rem;
  }
  .banner_page .banner_content .h1 strong {
    font-size: 3rem;
  }
  body:not(.home) .bloc_media_txt h1, body:not(.home) .bloc_media_txt h2 {
    font-size: 2.8rem;
  }
  .page-content .heading h2, .page-content .heading h3, .offer-content .heading h2, .offer-content .heading h3 {
    font-size: 2.8rem;
  }
  .txt_content .btn {
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .form_bloc {
    padding: 40px 25px;
  }
  .single-offre .offer_part {
    padding: 30px !important;
  }
  .single-offre .offer_part .h1 {
    font-size: 2.8rem;
  }
  .bloc_media_txt h1, .big_style, .left_media_custom_bloc .left_media_custom_txt .left_media_custom_title .big_style {
    font-size: 2.8rem;
  }
  .banner .banner_content .h1 strong {
    font-size: 3rem;
  }
}
