/* Header section
--------------------------------------------------------------*/

/* Sub header */
.sub-header {
  position: fixed;
  top: 0px;
  z-index: 998;
  background: #393d44;
  width: 100%;
  padding: 10px 30px;
}
.sub-header .sub-header-navigation {
  padding: 0px;
  margin-bottom: 0px;
  float: right;
}
.sub-header .sub-header-navigation li {
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
}
.sub-header .sub-header-navigation li:last-of-type {
  margin-right: 0px;
}
.sub-header .sub-header-navigation li a {
  color: #fff;
  transition: all 0.3s ease;
}
.sub-header .sub-header-navigation li a:hover {
  color: #e63329;
  text-decoration: none;
}

.sub-header .sub-header-navigation li.logo-linkedin a:hover {
  opacity: 0.5;
}

/* Header */
#website-menu {
  padding: 20px 30px;
  position: fixed;
  top: 0px;
  z-index: 999;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 6%);
  background: #fff;
  width: 100%;
  transition: all 0.3s ease;
  transform: translateY(44px);
}
#website-menu.sticky {
  padding: 15px 30px;
  transform: translateY(0px);
}

#website-menu .menu-content {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

/* Header logo */
#website-menu .logo-area img {
  max-width: 220px;
  height: auto;
  transition: all 0.3s ease;
}
#website-menu.sticky .logo-area img {
  max-width: 150px;
}

/* Main navigation */
#website-menu .main-navigation {
  padding: 0px;
  margin-bottom: 0px;
}
#website-menu .main-navigation li {
  list-style-type: none;
  display: inline-block;
  margin-right: 30px;
}
#website-menu .main-navigation li:last-of-type {
  margin-right: 0px;
}
#website-menu .main-navigation li a {
  font-size: 22px;
  color: #393d44;
  transition: all 0.3s ease;
}
#website-menu .main-navigation li a:hover {
  color: #e63329;
  text-decoration: none;
}
#website-menu .menus-area {
  display: flex;
}

/* Search area */
.search-content {
  position: relative;
  display: none;
}

.search-content:hover .fa-search {
  color: #e63329;
}

.search-content:hover .fa-times {
  color: #e63329;
}

.menus-area i.fa-search {
  font-size: 22px;
  position: relative;
  top: 0px;
  margin-left: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  padding: 7px;
  background: rgba(181, 48, 38, 0);
  border-radius: 50%;
}

.menus-area i.fa-times {
  font-size: 22px;
  position: absolute;
  right: 0px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  bottom: 0px;
  width: 42px;
  height: 42px;
  border: solid 1px #e6e6e6;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
}

.menus-area i.fa-times:before {
  margin: 0 auto;
}

.sticky .menus-area i.fa-search,
.sticky .menus-area i.fa-times {
  top: 3px;
}

.menus-area .search-content.active .fa-search {
  opacity: 0;
}

.menus-area .search-content.active .fa-times {
  opacity: 1;
}

.search-area {
  position: absolute;
  top: calc(100% - 45px);
  right: 55px;
  background: #fff;
  height: 60px;
  z-index: 10;
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.search-area .search-form {
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0s;
  position: relative;
}

.search-area .search-form:after {
  content: "\f002";
  right: 17px;
  color: #393d44;
  position: absolute;
  top: 14px;
  font-size: 40px;
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.search-area.active {
  opacity: 1;
  visibility: visible;
  width: 840px;
}

.search-area.active .search-form {
  opacity: 1;
  transition-delay: 0.25s;
}

.search-area .search-form .search-field::placeholder {
  opacity: 0.2;
  font-size: 34px;
  color: #393d44;
}

.search-area .search-form .search-field::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 0.2;
  font-size: 34px;
  color: #393d44;
}

.search-area .search-form .search-field::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 0.2;
  font-size: 34px;
  color: #393d44;
}

.search-area .search-form .search-field:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 0.2;
  font-size: 34px;
  color: #393d44;
}

.search-area .search-form .search-field:-moz-placeholder {
  /* Firefox 18- */
  opacity: 0.2;
  font-size: 34px;
  color: #393d44;
}

.search-area .search-form .search-field {
  border: 0;
  border-bottom: solid 1px #cccccc;
  padding: 3px 65px 3px 7px;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  width: 100%;
  font-size: 34px;
  color: #393d44;
}

.search-area .search-form > label {
  margin-bottom: 0px;
  display: block;
  width: 100%;
}

.search-area .search-form .search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  text-indent: -9999px;
  border: 0;
}

/* Burger button
--------------------------------------------- */
.burger-button {
  cursor: pointer;
  display: none;
  margin-left: 20px;
}

.burger-button span {
  width: 25px;
  height: 3px;
  background: #393d44;
  display: block;
  margin: 0 auto 4px;
  transition: all 0.3s ease;
  transform-origin: 20px center;
}

.burger-button span:nth-child(2) {
  position: relative;
  right: 0;
  opacity: 1;
}

.burger-button span:last-of-type {
  margin-bottom: 0px;
}

.burger-button.open span:first-of-type {
  transform: rotate(-45deg);
  width: 20px;
}

.burger-button.open span:nth-child(2) {
  right: -100%;
  opacity: 0;
}

.burger-button.open span:last-of-type {
  transform: rotate(45deg);
  width: 20px;
}

/* Call to action interventions
--------------------------------------------------------------*/
.cta-interventions {
  position: fixed;
  top: 200px;
  right: 30px;
  z-index: 2;
  background: #ffed00;
  border-radius: 50%;
  text-align: center;
  width: 160px;
  height: 160px;
  cursor: pointer;
  transform: rotate(10deg);
  transition: all 0.5s ease;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
  overflow: hidden;
}

.cta-interventions.bis {
  top: 230px;
  content: url(//www.alvazzigroupe.com/app/themes/alvazzi_theme/assets/images/afaq-iso.png);
  background-color: transparent;
  height: 110px;
  width: 101px;
  border-radius: 0;
  right: 220px;
  box-shadow: none;
  cursor: pointer;
}

.cta-interventions * {
  position: relative;
  z-index: 1;
  color: #393d44;
}
.cta-interventions:after {
  content: "";
  background: #fcdd03;
  border-radius: 50%;
  content: "";
  position: absolute;
  z-index: 0;
  transition: all 0.5s ease;
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
}
.cta-interventions:hover:after {
  height: 100%;
}
.sticky + .cta-interventions {
  top: 120px;
}
.sticky + .cta-interventions + .bis {
  top: 140px;
}

.cta-interventions:hover {
  transform: rotate(0deg);
  text-decoration: none;
}
.cta-interventions .cta-icon {
  width: 100%;
  display: block;
  font-size: 28px;
  margin-top: 12px;
}
.cta-interventions .cta-text {
  width: 100%;
  display: block;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: -7px;
  text-transform: uppercase;
}
.cta-interventions .cta-hour {
  width: 100%;
  display: block;
  font-size: 24px;
  font-weight: 600;
}

.cta-interventions .cta-notice {
  width: 100%;
  display: block;
  font-size: 12px;
}

/* Typography
--------------------------------------------------------------*/
html {
  overflow-x: hidden;
}
body {
  font-family: "Raleway", sans-serif;
  color: #393d44;
  overflow-x: hidden;
}

body.no-scroll,
html.no-scroll {
  overflow: hidden;
}

h1 {
  color: #393d44;
  font-size: 45px;
  margin-bottom: 50px;
  font-weight: 600;
}
h2 {
  color: #393d44;
  font-size: 40px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  font-weight: 600;
  margin-top: 30px;
}
h2:after {
  content: "";
  position: absolute;
  left: 0px;
  top: -30px;
  width: 50%;
  height: 2px;
  background: #393d44;
  opacity: 0.5;
}
.home h2 {
  margin-top: 0px;
}
h3 {
  color: #e63329;
  margin-bottom: 30px;
  font-size: 28px;
}
h4 {
  color: #393d44;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 21px;
}
h5 {
  color: #393d44;
}
h6 {
  color: #393d44;
}
p {
  color: #393d44;
  margin-bottom: 40px;
}
.main-content ul li {
  margin-bottom: 5px;
}
.alignleft {
  float: left;
  margin-right: 30px;
}
.main-content p a {
  color: #e63329;
}
.main-content p a:hover {
  color: #e63329;
  text-decoration: none;
}
.visuallyhidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

/* General styles
--------------------------------------------------------------*/

@media (min-width: 1200px) {
  .container {
    max-width: 1440px;
  }
}
.main-content {
  padding-top: 155px;
}

.section {
  padding: 120px 0px 100px 0px;
}

/* Home slider section
--------------------------------------------------------------*/
.home-banner {
  width: 100%;
  height: 675px;
  background-size: cover;
  background-position: center center;
  margin-bottom: 150px;
}
.last-news {
  margin-bottom: 60px;
}
.news-slider .slick-slide {
  padding-bottom: 50px;
}
.news-slider-img {
  height: 500px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.news-slider-box {
  background: #e63329;
  color: #fff;
  max-width: 1000px;
  margin: -240px auto 0px;
  position: relative;
  z-index: 1;
  padding: 40px;
}
.news-slider-box h3 {
  color: #fff;
}
.news-slider-box .news-date {
  color: #fff;
  opacity: 0.7;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 30px;
}
.news-slider-box p {
  color: #fff;
}
.news-slider-box .news-link {
  color: #fff;
  transition: all 0.3s ease;
  padding-left: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
}
.news-slider-box .news-link i {
  transition: left 0.3s ease;
  position: absolute;
  left: 0px;
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
}
.news-slider-box .news-link:hover {
  text-decoration: none;
}
.news-slider-box .news-link:hover i {
  left: 5px;
}
.news-slider-buttons {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  transform: translate(25px, 50%);
}
.news-slider-buttons .slick-arrow.slick-hidden {
  display: block;
}
.news-slider-buttons .news-slider-left,
.news-slider-buttons .news-slider-right {
  display: block;
  float: left;
  width: 50px;
  height: 50px;
  background: #393d44;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-slider-buttons .news-slider-left:hover,
.news-slider-buttons .news-slider-right:hover {
  background: #bcbfbf;
}

.news-more-link-container {
  text-align: right;
  padding-top: 0px;
  padding-bottom: 40px;
  margin-top: -70px;
}
.news-more-link {
  color: #393d44;
  transition: all 0.3s ease;
  padding-left: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
}
.news-more-link i {
  transition: left 0.3s ease;
  position: absolute;
  left: 0px;
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
}
.news-more-link:hover {
  color: #e63329;
  text-decoration: none;
}
.news-more-link:hover i {
  left: 5px;
}
.news-tile-col {
  margin-bottom: 30px;
}
.news-tile {
  background: #eef2f2;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.news-tile .news-tile-text {
  background: #eef2f2;
  padding: 30px 30px 60px 30px;
  display: block;
  color: #393d44;
}
.news-tile .news-tile-text .news-link {
  color: #393d44;
  transition: all 0.3s ease;
  padding-left: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.news-tile .news-tile-text .news-link i {
  transition: left 0.3s ease;
  position: absolute;
  left: 0px;
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
}
.news-tile .news-tile-text .news-link:hover {
  text-decoration: none;
  color: #e63329;
}
.news-tile .news-tile-text .news-link:hover i {
  left: 5px;
}
.news-tile .news-slider-img {
  display: block;
  /*height: 300px;*/
  height: auto;
  aspect-ratio: 3 / 2;
}
.news-tile .news-date {
  margin-bottom: 20px;
  color: #e63329;
  font-weight: bold;
}
#wp_pagination {
  text-align: center;
  margin-top: 20px;
}
#wp_pagination a {
  padding: 0px 5px;
  color: #393d44;
  font-size: 18px;
}
#wp_pagination a:hover,
#wp_pagination a.active {
  text-decoration: none;
  color: #e63329;
}

/* Home "Qui sommes-nous" section
--------------------------------------------------------------*/

.about-bloc-text {
  margin-bottom: 40px;
}
.about-bloc-text .bloc-number {
  font-size: 80px;
  color: #aaa;
}
.about-bloc-text img {
  max-width: 100%;
  height: auto;
}

.about-bloc-text ul li {
  position: relative;
}
.about-bloc-img {
  position: absolute;
  top: 5px;
  left: 120px;
}

.about-section h2 {
  margin-bottom: 20px;
}

/* Home Timeline section
--------------------------------------------------------------*/

.timeline-section {
  text-align: center;
  padding-top: 0px;
}
.timeline-section h3 {
  text-align: center;
  color: #393d44;
  text-transform: uppercase;
}

.timeline-section .timeline-year {
  background: #e63329;
  color: #fff;
  letter-spacing: 1px;
  padding: 7px 12px;
  display: inline-block;
  font-weight: 600;
}
.timeline-year-slider {
  position: relative;
  margin-top: 60px;
}
.timeline-year-slider .slick-slide.slick-cloned {
  display: none;
}
.timeline-year-slider:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 250px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.timeline-year-slider:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  height: 100%;
  width: 250px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.timeline-year-slider .year {
  font-size: 30px;
  padding: 0px 15px;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 0px;
}
.timeline-year-slider .year:hover {
  opacity: 1;
}
.timeline-year-slider .slick-current .year,
.timeline-year-slider .slick-active .year {
  font-size: 40px;
  opacity: 1;
  transform: translateY(-7px);
  color: #e63329;
}

.timeline-event-slider-container {
  position: relative;
  margin-top: 60px;
}
.timeline-event-slider-container .timeline-event-slider-left {
  position: absolute;
  left: 20%;
  transform: translateY(-50%);
  top: 50%;
  font-size: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}
.timeline-event-slider-container .timeline-event-slider-right {
  position: absolute;
  right: 20%;
  transform: translateY(-50%);
  top: 50%;
  font-size: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
}
.timeline-event-slider-container .timeline-event-slider-left:hover,
.timeline-event-slider-container .timeline-event-slider-right:hover {
  color: #e63329;
}
.timeline-event-slider .event-date {
  opacity: 0.5;
  letter-spacing: 1px;
}
.timeline-event-slider hr {
  border-top: 1px solid #e63329;
  width: 65px;
  margin: 20px auto;
}
.timeline-event-slider .event-description {
  font-style: italic;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
}
.timeline-event-slider .event-description p {
  font-size: 20px;
}

/* Home "Implantations" section
--------------------------------------------------------------*/

.grey-bg {
  background: #eef2f2;
}

.main-agency {
  overflow: hidden;
  position: relative;
}
.agency-map {
  width: 100%;
  height: calc(100vh - 100px);
  margin: 0;
}
.no-csscalc .agency-map {
  height: 88vh;
}
.agency-map img {
  max-width: inherit !important;
}

#implantation-map {
  padding-top: 50px;
  margin-top: -50px;
}

@media (min-width: 992px) {
  .agency {
    padding: 20px;
    width: 440px;
    max-width: 30%;
  }
}
@media (min-width: 768px) {
  .agency {
    padding: 20px;
    width: 440px;
    max-width: 50%;
  }
}
.agency {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  height: 0px;
  width: 100%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-family: aller, Helvetica Neue, Helvetica, Arial, sans-serif;
  overflow: hidden;
  transition-delay: 0.7s;
}
.agency:after {
  content: "";
  position: absolute;
  background: #fff;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 0px;
  transition: all 0.5s ease;
  z-index: -1;
}

.agency.is-agency-active {
  z-index: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  transition-delay: 0s;
  background: #fff;
}
.agency.is-agency-active:after {
  height: 100%;
}
.agency-container {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 10px 60px;
  /*overflow-y: auto;
  height: 100%;*/
}
.agency-container .agency-title {
  position: relative;
  opacity: 0;
  left: -20px;
  transition: all 0.5s ease;
  transition-delay: 0s;
}
.agency.is-agency-active .agency-title {
  opacity: 1;
  left: 0px;
  transition-delay: 0.7s;
}
.agency-container img {
  position: relative;
  opacity: 0;
  left: -20px;
  transition: all 0.5s ease;
  transition-delay: 0s;
  width: 100%;
  height: auto;
}
.agency.is-agency-active img {
  opacity: 1;
  left: 0px;
  transition-delay: 0.9s;
}
.agency-container .agency-contact {
  position: relative;
  opacity: 0;
  left: -20px;
  transition: all 0.5s ease;
  transition-delay: 0s;
}
.agency.is-agency-active .agency-contact {
  opacity: 1;
  left: 0px;
  transition-delay: 1.1s;
}
.agency-container .agency-contact-2 {
  position: relative;
  opacity: 0;
  left: -20px;
  transition: all 0.5s ease;
  transition-delay: 0s;
}
.agency.is-agency-active .agency-contact-2 {
  opacity: 1;
  left: 0px;
  transition-delay: 1.3s;
}

.agency-tools {
  transition: all 0.5s ease;
  transition-delay: 0s;
  opacity: 0;
}
.agency.is-agency-active .agency-tools {
  opacity: 1;
  transition-delay: 0.7s;
}

.agency-tools {
  text-align: right;
}
.agency-tools .fn-agency-close {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 20px;
  color: #393d44;
}
.agency-tools .fn-agency-close:hover,
.agency-tools .fn-agency-close:focus,
.agency-tools .fn-agency-close:visited {
  color: #e63329;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.agency-tools .share {
  position: relative;
  display: inline-block;
}
.agency-tools .share-print,
.agency-tools .share-toggle {
  background-color: transparent;
}
.agency-tools .share-print path,
.agency-tools .share-toggle path {
  fill: #393d44;
}
.agency-tools .share-print:focus path,
.agency-tools .share-print:hover path,
.agency-tools .share-toggle:focus path,
.agency-tools .share-toggle:hover path {
  fill: #fff;
}
.agency-title {
  color: #393d44;
}
.agency-ht {
  text-transform: uppercase;
  color: #e63329;
  font-size: 16px;
  font-weight: 400;
}
.agency-contact {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-bottom: 40px;
}
.agency-contact,
.agency-road,
.agency-road:visited {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.agency-road,
.agency-road:visited {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #e63329;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  position: relative;
  transition: all 0.3s ease;
}
.agency-road * {
  z-index: 1;
  position: relative;
}
.agency-road:after {
  background: #d22419;
  content: "";
  position: absolute;
  z-index: 0;
  transition: all 0.3s ease;
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
.agency-road:hover:after {
  height: 100%;
}
.agency-road:focus,
.agency-road:hover,
.agency-road:visited:focus,
.agency-road:visited:hover {
  text-decoration: none;
  color: #fff;
}

.agency-road-ico {
  margin-right: 0;
  margin-left: 10px;
}
.agency-road-ico,
.agency-road-ico svg {
  width: 45px;
  height: 40px;
}
.agency-road-ico i {
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
.agency-road-ico + span {
  transform: translateY(3px);
}
.agency-mail,
.agency-mail:visited {
  font-size: 22px;
  color: #fff;
  background-color: #393d44;
  width: 90px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}
.agency-mail:visited svg,
.agency-mail svg {
  width: 60px;
  height: 60px;
}
.agency-mail * {
  z-index: 1;
  position: relative;
}
.agency-mail:after {
  background: #1f2125;
  content: "";
  position: absolute;
  z-index: 0;
  transition: all 0.3s ease;
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
.agency-mail:hover:after {
  height: 100%;
}
.agency-mail:focus,
.agency-mail:hover,
.agency-mail:visited:focus,
.agency-mail:visited:hover {
  text-decoration: none;
  color: #fff;
}
.agency-phone,
.agency-phone:visited {
  color: #484848;
}
.agency-phone:focus,
.agency-phone:hover,
.agency-phone:visited:focus,
.agency-phone:visited:hover {
  color: #d22419;
}
.agency-fax,
.agency-fax:visited,
.agency-fax a,
.agency-fax a:visited {
  color: #484848;
  text-decoration: none;
}
.agency-fax:focus,
.agency-fax:hover,
.agency-fax:visited:focus,
.agency-fax:visited:hover,
.agency-fax a:focus,
.agency-fax a:hover,
.agency-fax a:visited:focus,
.agency-fax a:visited:hover {
  color: #484848;
}
.agency-member {
  border: 1px solid #000;
  padding: 1px 0 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.agency-member > span {
  position: relative;
  max-width: 100px;
}
.agency-member > span:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #000;
}
.agency-member figcaption {
  padding: 10px;
}
.agency-member-title {
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: aller, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.agency-resp-job,
.agency-resp-name {
  font-size: 16px;
  color: #484848;
  margin-bottom: 0;
  font-family: allerbold, Helvetica Neue, Helvetica, Arial, sans-serif;
}

/* Home "Offres d’emplois" section
--------------------------------------------------------------*/

.job-offres-search-item label {
  display: none;
}
.job-offres-search {
  margin-bottom: 30px;
}
.job-offres-search + p {
  display: none;
}

.job-offres-search-container select {
  width: 100%;
}

.job-offer-single a {
  color: #e63329;
}
.job-offres-form-submit .btn {
  background: #393d44;
  color: #fff;
  border: none;
  padding: 14px 20px 8px 20px;
  cursor: pointer;
  outline: none;
  border-radius: 0px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.job-offres-form-submit .btn:hover {
  background: #e63329;
}

.job-offres-form .form-container {
  padding-top: 40px;
}
.job-offres-form .form-item {
  position: relative;
  margin-top: 15px !important;
  margin-bottom: 45px;
}
.job-offres-form .form-field {
  position: relative;
}
.job-offres-form .form-item input[type="text"],
.job-offres-form .form-item input[type="email"],
.job-offres-form .form-item textarea {
  border: 0px !important;
  outline: none !important;
  padding: 11px 18px 9px 18px;
  font-size: 18px;
  color: #393d44;
  background: #eef2f2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0px;
  height: auto;
  transition: all 0.5s ease;
  width: 100%;
}
.job-offres-form .form-item.animation-label label {
  display: inline-block;
  position: absolute;
  left: 30px;
  top: 14px;
  font-size: 18px;
  margin-bottom: 0px;
  color: #ccc;
  background: none;
  padding: 0px 6px;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
  font-weight: normal;
  line-height: 1.3;
  padding: 0px;
}
.job-offres-form .form-item label span {
  color: #e63329 !important;
  margin-left: 0px;
  display: inline-block !important;
  font-size: 16px;
}

.job-offres-form .form-item.animation-label.active label,
.job-offres-form .form-item.animation-label.complete label {
  top: -24px !important;
  left: 15px;
  font-size: 15px !important;
  color: #393d44 !important;
  font-weight: 600;
  letter-spacing: 1px;
}
.job-offres-form .form-item ul {
  padding-left: 0px;
}
.job-offres-form .form-item ul li {
  list-style-type: none;
}
.job-offres-form .form-item a {
  color: #e63329;
}

.job-offres-form .form-item input[type="checkbox"] {
  top: 0px;
}
.job-offres-form .form-submit button {
  text-transform: uppercase;
  border-radius: 0px;
  transition: background-color 0.25s ease, padding 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
  display: inline-block;
  background: #393d44;
  color: #fff !important;
  border: 0px;
  margin-bottom: 20px;
  position: relative;
  padding: 16px 40px !important;
  font-size: 18px;
}
.job-offres-form .form-submit button:hover {
  background: #e63329;
  border-color: #e63329;
}

.job-offres-list {
  padding: 0px;
}
.job-offres-list .job-offres-item {
  list-style-type: none;
}
.job-offres-list .job-offres-item a {
  background: #eef2f2;
  padding: 15px 85px 15px 25px;
  display: block;
  margin-bottom: 10px;
  color: #393d44;
  transition: all 0.3s ease;
  position: relative;
}
.job-offres-list .job-offres-item a * {
  z-index: 1;
  position: relative;
}
.job-offres-list .job-offres-item a .job-offres-item-icon {
  position: absolute;
  right: 30px;
  font-size: 30px;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 25px;
  border-left: 2px solid rgba(57, 61, 68, 0.5);
}

.job-offres-list .job-offres-item a:hover {
  text-decoration: none;
  color: #fff;
}
.job-offres-list .job-offres-item a:hover .job-offres-item-icon {
  border-left: 2px solid rgba(255, 255, 255, 0.5);
}
.job-offres-list .job-offres-item a:before,
.job-offres-list .job-offres-item a:after {
  background: #e63329;
  content: "";
  position: absolute;
  z-index: 0;
  transition: all 0.3s ease;
}
.job-offres-list .job-offres-item a:after {
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
}
.job-offres-list .job-offres-item a:hover:after {
  height: 100%;
}

.job-offres-list .job-offres-item-title {
  width: 100%;
  display: block;
  font-size: 21px;
  font-weight: 600;
}
.job-offres-list .job-offres-item-city {
  width: 100%;
  display: block;
  font-size: 12px;
  opacity: 0.5;
  font-weight: 600;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.job-offres-list .job-offres-item-city i {
  margin-right: 10px;
}
.job-offres-list .job-offres-item-ref {
  display: none;
}
/* Detail offre */
.job-offres .post-infos {
  font-style: italic;
}
.job-offres .share-social {
  display: none;
}
.job-offres-resume-header {
  margin-bottom: 30px;
  margin-top: 30px;
}
.job-offres-resume-header > p {
  background-color: #edeff0;
  padding: 10px;
}
.job-offres-resume-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.job-offres-resume-header > p {
  width: 48%;
}
.job-offers-section .share-social {
  display: none;
}

.job-offres-resume-btn .btn {
  text-transform: uppercase;
  border-radius: 0px;
  transition: background-color 0.25s ease, padding 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
  display: inline-block;
  background: #393d44;
  color: #fff;
  border: 0px;
  margin-bottom: 20px;
  position: relative;
  padding: 16px 40px;
  font-size: 18px;
}
.job-offres-resume-btn .btn:hover {
  background: #e63329;
  border-color: #e63329;
}
.job-offers-section .share-print {
  padding: 0px !important;
}
.job-offers-section .back-to-post {
  color: #393d44;
  transition: all 0.3s ease;
  padding-left: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
}
.job-offers-section .back-to-post i {
  transition: left 0.3s ease;
  position: absolute;
  left: 0px;
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
}
.job-offers-section .back-to-post:hover {
  color: #e63329;
  text-decoration: none;
}
.job-offers-section .back-to-post:hover i {
  left: 5px;
}

/* Home "Réalisations" section
--------------------------------------------------------------*/

.realisations-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
  position: relative;
}
.realisations-section:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.realisations-section * {
  z-index: 1;
  position: relative;
}
.realisations-section h2 {
  color: #fff;
}
.realisations-section h2:after {
  right: 0px;
  margin: 0 auto;
  background: #fff;
}
.realisations-section p {
  color: #fff;
  max-width: 550px;
  margin: 0 auto 30px;
}
.realisations-section .button {
  background: #e63329;
  color: #fff;
  letter-spacing: 1px;
  padding: 14px 40px 10px 40px;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}
.realisations-section .button:after {
  background: #d22419;
  content: "";
  position: absolute;
  z-index: 0;
  transition: all 0.3s ease;
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.realisations-section .button:hover:after {
  height: 100%;
}
.realisations-section .button:hover {
  text-decoration: none;
}

/* Home "Contact" section
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

.gform_body {
  margin-top: 0px;
}

.gform_wrapper .gform_fields {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  margin-right: -15px !important;
  margin-left: -15px !important;
  grid-template-columns: initial !important;
  grid-template-rows: initial !important;
  grid-column-gap: initial !important;
  grid-row-gap: initial !important;
  max-width: inherit !important;
  width: inherit !important;
}

.gform_wrapper
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  width: 100% !important;
  padding: 12px 19px;
  border-radius: 0px;
}

.gfield_consent_label a {
  color: #e63329;
}

.gform_wrapper .gform_fields .gfield {
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-top: 15px !important;
}
.gform_wrapper .gform_fields .gfield.hidden_label {
  margin-top: 0px !important;
}

.gform_wrapper .gfield.animation-label .ginput_container_text,
.gform_wrapper .gfield.animation-label .ginput_container_select,
.gform_wrapper .gfield.animation-label .ginput_container_textarea,
.gform_wrapper .gfield.animation-label {
  position: relative;
}
.gform_wrapper .gfield:before,
.form_body .form_field:before {
  display: none;
}

.gform_wrapper
  .gfield.animation-label
  .ginput_container_text
  label.gfield_label:not(.label-outside),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea
  label.gfield_label:not(.label-outside),
.gform_wrapper .gfield.animation-label label.gfield_label:not(.label-outside) {
  display: inline-block;
  position: absolute;
  left: 29px;
  top: 14px;
  font-size: 18px;
  margin-bottom: 0px;
  color: #aaa;
  background: none;
  padding: 0px 6px;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
  font-weight: normal;
  line-height: 1.3;
}

.gform_wrapper .gfield:not(.animation-label) label.gfield_label {
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: normal;
}

body
  .gform_wrapper
  .gform_fields
  .field_description_below
  div.ginput_container_radio,
body
  .gform_wrapper
  .gform_fields
  .field_description_below
  div.ginput_container_checkbox {
  margin-top: 9px;
}

.gform_wrapper .gform_fields.gfield_checkbox li,
.gform_wrapper .gform_fields.gfield_radio li {
  padding: 0 !important;
  margin-bottom: 12px;
}
.gform_wrapper .gform_fields.gfield_checkbox li:before,
.gform_wrapper .gform_fields.gfield_radio li:before {
  display: none;
}
.gform_wrapper .gfield .gfield_required {
  color: #e63329 !important;
  margin-left: 0px;
  display: inline-block !important;
  font-size: 16px;
}
.gform_wrapper
  .gfield.animation-label
  .ginput_container_text.active
  label.gfield_label
  .gfield_required,
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea.active
  label.gfield_label
  .gfield_required,
.gform_wrapper
  .gfield.animation-label.active
  label.gfield_label
  .gfield_required,
.gform_wrapper
  .gfield.animation-label
  .ginput_container_text.complete
  label.gfield_label
  .gfield_required,
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea.complete
  label.gfield_label
  .gfield_required,
.gform_wrapper
  .gfield.animation-label.complete
  label.gfield_label
  .gfield_required,
.gform_wrapper .gfield.open label.gfield_label .gfield_required {
  color: #393d44;
}

.gform_wrapper
  .gfield.animation-label
  .ginput_container_text
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_text
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  border: 0px !important;
  outline: none !important;
  padding: 11px 18px 9px 18px;
  font-size: 18px;
  color: #393d44;
  background: #eef2f2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0px;
  height: auto;
  transition: all 0.5s ease;
  line-height: 1.5 !important;
}

.gform_wrapper
  .gfield.animation-label
  .ginput_container_text.active
  label.gfield_label,
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea.active
  label.gfield_label,
.gform_wrapper .gfield.animation-label.active label.gfield_label,
.gform_wrapper
  .gfield.animation-label
  .ginput_container_text.complete
  label.gfield_label,
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea.complete
  label.gfield_label,
.gform_wrapper .gfield.animation-label.complete label.gfield_label,
.gform_wrapper .gfield.open label.gfield_label {
  top: -24px !important;
  left: 10px;
  font-size: 15px !important;
  color: #393d44 !important;
  font-weight: 600;
  letter-spacing: 1px;
}

.gform_wrapper
  .gfield.animation-label
  .ginput_container_text.active
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea.active
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label.active
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_text.complete
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea.complete
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label.complete
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_text.active
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea.active
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label.active
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_text.complete
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label
  .ginput_container_textarea.complete
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.gform_wrapper
  .gfield.animation-label.complete
  textarea:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
  background: #dee1e1;
  border: 0px !important;
}

body .gform_wrapper img.ui-datepicker-trigger {
  display: none;
}

.gform_wrapper .gfield .ginput_container_date {
  position: relative;
}

.gform_wrapper .gfield .ginput_container_date:after {
  content: "\e913";
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  font-size: 22px;
}

.gform_wrapper .gfield .ginput_container_date input.datepicker {
  background: transparent;
}

.gform_wrapper .gform_footer input[type="submit"] {
  text-transform: uppercase;
  border-radius: 0px;
  transition: background-color 0.25s ease, padding 0.25s ease,
    border-color 0.25s ease, color 0.25s ease;
  display: inline-block;
  background: #393d44;
  color: #fff !important;
  border: 0px;
  margin-bottom: 20px;
  position: relative;
  padding: 16px 40px !important;
  font-size: 18px;
}

.gform_wrapper .gform_footer input[type="submit"]:hover {
  background: #e63329;
  border-color: #e63329;
}

.gform_wrapper .gfield_checkbox li input,
.gform_wrapper .gfield_checkbox li input[type="checkbox"],
.gform_wrapper .gfield_radio li input[type="radio"] {
  margin-top: -6px !important;
}

.gform_wrapper ul.gfield_radio li input[type="radio"]:checked + label,
.gform_wrapper ul.gfield_checkbox li input[type="checkbox"]:checked + label,
.gchoice_select_all {
  font-weight: normal;
}

input[type="checkbox"] {
  vertical-align: top;
  border: 1px solid #ccc !important;
  border-radius: 0px !important;
  line-height: 0;
  height: 19px;
  margin-right: 10px !important;
  outline: 0;
  padding: 0 !important;
  position: relative;
  top: 3px;
  text-align: center;
  vertical-align: middle;
  width: 19px !important;
  min-width: 18px;
  -webkit-appearance: none;
  transition: 0.3s;
}

.gform_wrapper .gform_fields.gfield_checkbox li input[type="checkbox"] {
  width: 19px !important;
}

.gform_wrapper .hidden_label input,
.form_body .form_field .hidden_label input {
  margin-top: -9px;
}

.gfield_consent_label {
  display: initial !important;
}

.gfield_visibility_visible {
  margin-bottom: 30px;
}

.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper.gravity-theme .gform_page_footer {
  margin: 40px 0 0 !important;
}

.grecaptcha-badge {
  display: none !important;
}

input[type="checkbox"]:hover {
  border: 1px solid #393d44 !important;
}

input[type="checkbox"]:checked {
  background: #393d44 !important;
  border: 1px solid #393d44 !important;
}

input[type="checkbox"]:checked:before {
  content: "";
  margin: 1px 6px;
  color: #fff;
  float: left;
  display: inline-block;
  transform: rotate(45deg);
  height: 12px;
  width: 6px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

input[type="radio"]:checked,
input[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

input[type="radio"]:checked + label,
input[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
}

input[type="radio"] + label {
  padding-left: 30px;
}

input[type="radio"]:checked + label:before,
input[type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  border: solid 1px #ccc;
  border-radius: 100%;
  background: #fff;
  transition: 0.3s;
}

input[type="radio"]:disabled + label:before {
  opacity: 0.35;
}

input[type="radio"]:disabled + label {
  cursor: not-allowed;
}

input[type="radio"]:not(:checked):hover + label:before {
  border: 1px solid #393d44;
}

input[type="radio"]:checked + label:before {
  border: 1px solid #393d44;
}

input[type="radio"]:checked + label:after,
input[type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #393d44;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.ginput_container_fileupload {
  padding-bottom: 12px;
  border-bottom: solid 1px #cccccc;
  max-width: 335px;
}

.ginput_container_fileupload input[type="file"] {
  font-size: 14px;
  width: 100% !important;
}

body .gform_wrapper .top_label div.ginput_container {
  margin-top: 0px;
}

/** JQUERY DATEPICKER **/
.ui-datepicker {
  width: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
  margin: 20px auto 0px;
  overflow: hidden;
  padding: 30px;
  display: none;
  max-width: calc(100% - 30px);
  font: inherit;
}

.ui-datepicker .ui-datepicker-header {
  text-align: center;
  padding-bottom: 2em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #e63329;
  background: #fff;
  border: 0;
  text-shadow: none;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  display: inline;
  float: left;
  cursor: pointer;
  font-size: 1.4em;
  padding: 0 10px;
  margin-top: -5px;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
  display: none;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
  background: none;
  position: relative;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
  float: right;
  background: none;
  position: relative;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:after,
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after {
  content: "\f104";
  position: absolute;
  left: 0px;
  top: 7px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  text-align: center;
  width: 1.25em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next:after {
  content: "\f105";
}

.ui-datepicker td.ui-datepicker-unselectable.ui-state-disabled {
  background: none;
}

.ui-datepicker thead {
  background: none;
  border: 0;
  font-size: 18px;
}

.ui-datepicker th {
  font-size: 18px;
  color: #393d44;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  display: inline-block !important;
  width: 25%;
  margin-right: 5%;
  display: block;
  margin-top: 0px;
}

.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  display: inline-block !important;
  width: 25%;
  margin-right: 5%;
  display: block;
  margin-top: 0px;
}

.ui-datepicker .ui-datepicker-calendar {
  width: 100%;
  text-align: center;
  border: none;
  margin-bottom: 0px;
}

.ui-datepicker .ui-datepicker-calendar tr {
  background: none;
  border: 0;
}

.ui-datepicker .ui-datepicker-calendar tr th,
.ui-datepicker .ui-datepicker-calendar tr td {
  padding: 0px;
  padding-bottom: 0.5em;
  border: 0;
}

.ui-datepicker .ui-datepicker-calendar tr th {
  font-weight: 600;
  border: 0;
}

.ui-datepicker .ui-datepicker-calendar a {
  text-decoration: none;
  display: block;
  margin: 0 auto;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
  box-shadow: none;
  font-weight: normal;
  color: #393d44;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight {
  border-color: #e63329;
  color: #e63329;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-highlight.ui-state-active {
  border-color: #e63329;
  color: #e63329;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-active {
  color: #e63329;
}

/** SELECT **/
select {
  display: none !important;
}

.ui-datepicker-month,
.ui-datepicker-year {
  display: inline-block !important;
  background: transparent;
  border: none;
}

.gform_wrapper .gfield.open label.gfield_label {
  left: 10px !important;
  font-size: 15px !important;
  color: #393d44 !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
}

.dropdown,
.ginput_container_select {
  height: 100%;
}
.dropdown {
  border: none;
  border: 0px;
  color: #393d44;
  box-sizing: border-box;
  background: #eef2f2;
  cursor: pointer;
  display: block;
  outline: none;
  padding: 11px 18px 9px 18px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  width: 100%;
  font-size: 18px !important;
  color: #393d44;
  border-radius: 0px;
}

.gform_wrapper .gfield.open .dropdown {
  background-color: #dee1e1 !important;
}

.variations .dropdown {
  display: none;
}

.dropdown:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f107";
  display: block;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  transform-origin: 50% 25%;
}

.dropdown.open:after {
  transform: rotate(-180deg);
}

.gform_wrapper .ginput_container span:not(.ginput_price),
.form_body .input_container span:not(.ginput_price) {
  margin-bottom: 0px !important;
}

.dropdown.open .list {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.dropdown.open .option {
  cursor: pointer;
  margin-bottom: 0px;
}

.dropdown.wide {
  width: 100%;
}

.dropdown.wide .list {
  left: 0 !important;
  right: 0 !important;
}

.dropdown .list {
  box-sizing: border-box;
  transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
  transform: scale(0.75);
  transform-origin: 50% 0;
  box-shadow: 0 0 0 1px #393d44;
  background-color: #fff;
  border-radius: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  min-width: calc(100% + 2px);
  left: -1px;
  z-index: 999;
  top: 63px;
}

.dropdown .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.dropdown .list ul {
  height: auto;
  max-height: 400px;
  overflow: auto;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 6%);
  background: #eef2f2;
}

.dropdown .option {
  cursor: default;
  font-weight: normal;
  color: #393d44;
  outline: none;
  display: block;
  font-size: 16px;
  text-transform: none;
  padding: 12px 19px;
  text-align: left;
  transition: all 0.2s;
}

.dropdown .option:before {
  display: none;
}

.dropdown .option:hover,
.dropdown .option:focus {
  background-color: #dee1e1 !important;
  color: #393d44;
}

.dropdown .option.selected {
  font-weight: 600;
  color: #393d44;
}

.dropdown .option.selected:focus {
  font-weight: 700;
}

.dropdown:hover {
  border: 0px;
}

.dropdown .current {
  opacity: 1;
  transition: all 0.3s ease;
}
.gfield .dropdown .current {
  opacity: 0;
  transition: all 0.3s ease;
}

.gfield.open .dropdown .current {
  opacity: 1;
}

.gfield.open .dropdown {
  border: 0px;
}

/** FIN SELECT **/

/* Post single
--------------------------------------------------------------*/
.post-single h1 {
  color: #393d44;
  font-size: 45px;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  font-weight: 600;
  margin-top: 30px;
}
.post-single h1:after {
  content: "";
  position: absolute;
  left: 0px;
  top: -30px;
  width: 180px;
  height: 2px;
  background: #e63329;
}
.post-single .post-date {
  font-size: 14px;
  opacity: 0.5;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.post-single img {
  max-width: 100%;
  height: auto;
}
.post-single .post-thumbnail {
  margin-bottom: 60px;
}
.post-single .content {
  margin-bottom: 50px;
}
.post-single .content:after {
  content: "";
  clear: both;
  display: table;
}
.post-single .post-back-link {
  color: #393d44;
  transition: all 0.3s ease;
  padding-left: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
}
.post-single .post-back-link i {
  transition: left 0.3s ease;
  position: absolute;
  left: 0px;
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
}
.post-single .post-back-link:hover {
  color: #e63329;
  text-decoration: none;
}
.post-single .post-back-link:hover i {
  left: 5px;
}
.post-single .content img {
  margin-bottom: 20px;
}

figure figcaption {
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 40px;
  font-style: italic;
}

.sharethis-inline-share-buttons {
  margin-bottom: 40px;
}

/* 404 Page
--------------------------------------------------------------*/
.back-link {
  color: #393d44;
  transition: all 0.3s ease;
  padding-left: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
}
.back-link i {
  transition: left 0.3s ease;
  position: absolute;
  left: 0px;
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
}
.back-link:hover {
  color: #e63329;
  text-decoration: none;
}
.back-link:hover i {
  left: 5px;
}

/* External link
--------------------------------------------------------------*/
.external-link {
  margin-bottom: 30px;
  border: 4px solid #eef2f2;
  padding: 25px;
  text-align: center;
  transition: all 0.5s ease;
  display: block;
  text-decoration: none !important;
}
.external-link:hover {
  border: 4px solid #e63329;
}
.external-link h4 {
  text-decoration: none !important;
}
.external-link img {
  max-width: 100%;
  height: auto;
}

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

.footer {
  background: #dee1e1;
  padding: 50px 0px;
}
.footer p {
  margin-bottom: 10px;
}
.footer .footer-address-content a {
  color: #393d44;
}
.footer .footer-address-content a:hover {
  color: #e63329;
  text-decoration: none;
}
.footer .footer-menu-container {
  display: flex;
  justify-content: space-between;
}
.footer .footer-menu ul {
  padding: 0px;
}
.footer .footer-menu ul li {
  list-style-type: none;
  margin-bottom: 5px;
}
.footer .footer-menu ul li a {
  color: #393d44;
}
.footer .footer-menu ul li a:hover {
  color: #e63329;
  text-decoration: none;
}
.footer-bottom {
  background: #393d44;
  color: #fff;
  padding: 15px 0px 10px 0px;
}
.footer-bottom .liens-sub-footer ul {
  padding: 0px;
  margin-bottom: 0px;
}
.footer-bottom .liens-sub-footer ul li {
  margin-right: 10px;
  list-style-type: none;
  display: inline-block;
}
.footer-bottom .liens-sub-footer ul li:last-of-type {
  margin-right: 0px;
}

.footer-bottom p {
  color: #fff;
  margin-bottom: 0px;
}
.footer-bottom a {
  color: #fff;
}
.footer-bottom a:hover {
  color: #e63329;
  text-decoration: none;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* RESPONSIVE ON WIDTH
--------------------------------------------- */

/* DESKTOP DEVICE
   WINDOW > 1800px
--------------------------------------------- */
@media (max-width: 1800px) {
}

/* DESKTOP DEVICE
   WINDOW > 1600px
--------------------------------------------- */
@media (max-width: 1650px) {
}

/* DESKTOP DEVICE
   WINDOW > 1600px
--------------------------------------------- */
@media (max-width: 1600px) {
}

/* DESKTOP DEVICE
   WINDOW > 1450px
--------------------------------------------- */
@media (max-width: 1450px) {
  .home-banner {
    height: 550px;
  }
}

/* DESKTOP DEVICE
   WINDOW > 1250px
--------------------------------------------- */
@media (max-width: 1250px) {
}

/* DESKTOP DEVICE
   WINDOW > 1200px
--------------------------------------------- */
@media (max-width: 1200px) {
  #website-menu .logo-area img {
    max-width: 180px;
  }
  #website-menu .main-navigation li {
    margin-right: 15px;
  }
  #website-menu .main-navigation li a {
    font-size: 20px;
  }
  .main-content {
    padding-top: 140px;
  }
  .home-banner {
    height: 500px;
  }
  .news-slider-buttons {
    transform: translate(0px, 100%);
  }
  .timeline-event-slider-container .timeline-event-slider-left {
    left: 10%;
  }
  .timeline-event-slider-container .timeline-event-slider-right {
    right: 10%;
  }
}

/* DESKTOP DEVICE
   WINDOW > 1150px
--------------------------------------------- */
@media (max-width: 1150px) {
}

/* TABLET DEVICE
   WINDOW > 992px
--------------------------------------------- */
@media (max-width: 992px) {
  h1 {
    font-size: 35px;
  }
  .post-single h1 {
    font-size: 35px;
    margin-top: 25px;
  }
  .post-single h1:after {
    top: -25px;
    width: 150px;
  }
  h2 {
    font-size: 30px;
    margin-top: 25px;
  }
  h2:after {
    top: -25px;
    width: 40%;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 18px;
  }
  p {
    margin-bottom: 30px;
  }
  .section {
    padding: 100px 0px 80px 0px;
  }
  #website-menu {
    padding: 15px 15px;
    position: fixed;
    top: 0px;
    z-index: 999;
    box-shadow: 0 2px 8px 0 rgb(0 0 0 / 6%);
    background: #fff;
    width: 100%;
    transition: all 0.3s ease;
    transform: translateY(0px);
  }
  #website-menu.sticky {
    padding: 15px 15px;
  }
  #website-menu .logo-area img {
    max-width: 130px;
  }
  #website-menu.sticky .logo-area img {
    max-width: 130px;
  }
  #website-menu .main-navigation li {
    margin-right: 0px;
    display: block;
    margin-bottom: 20px;
  }
  .burger-button {
    display: block;
  }
  #website-menu .menu-menu-principal-container {
    position: absolute;
    width: 100%;
    left: 0px;
    top: 71px;
    background: #fff;
    height: 0;
    width: 100%;
    transition: all 0.5s ease;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: none;
    padding-top: 0px;
    text-align: center;
  }

  #website-menu .menu-menu-principal-container.open {
    height: calc(100vh - 71px);
    padding-top: 100px;
  }
  .sub-header {
    padding: 8px 15px;
    display: none;
  }
  .sub-header .sub-header-navigation li {
    margin-right: 15px;
  }
  .sub-header .sub-header-navigation li a {
    font-size: 14px;
  }

  .main-content {
    padding-top: 75px;
  }
  .cta-interventions {
    right: 15px;
    width: 145px;
    height: 145px;
    top: 100px;
  }
  .cta-interventions.bis {
    top: 260px;
    width: 120px;
    height: 111px;
    right: 40px;
  }
  .sticky + .cta-interventions {
    top: 100px;
  }
  .sticky + .cta-interventions + .bis {
    top: 260px;
  }
  .cta-interventions .cta-icon {
    display: none;
  }
  .cta-interventions .cta-text {
    margin-top: 34px;
    text-transform: none;
  }
  .home-banner {
    height: 450px;
    margin-bottom: 120px;
  }
  .news-more-link-container {
    text-align: left;
    padding-top: 0px;
    padding-bottom: 20px;
    margin-top: 0px;
  }
  .news-slider-img {
    height: 450px;
  }
  .news-slider-box {
    max-width: 100%;
    padding: 20px;
  }
  .news-slider-box .news-date {
    margin-bottom: 20px;
  }
  .about-bloc-text .bloc-number {
    font-size: 70px;
  }
  .timeline-event-slider-container .timeline-event-slider-left {
    left: 0px;
  }
  .timeline-event-slider-container .timeline-event-slider-right {
    right: 0px;
  }
  .job-offers-section .job-offres-search-container .job-offres-search-item {
    margin-bottom: 10px;
  }
  .job-offers-section .job-offres-search-container {
    margin-bottom: 20px;
  }
  .gfield_visibility_visible {
    margin-bottom: 20px;
  }
  .gform_wrapper
    .gfield.animation-label
    .ginput_container_text.active
    label.gfield_label,
  .gform_wrapper
    .gfield.animation-label
    .ginput_container_textarea.active
    label.gfield_label,
  .gform_wrapper .gfield.animation-label.active label.gfield_label,
  .gform_wrapper
    .gfield.animation-label
    .ginput_container_text.complete
    label.gfield_label,
  .gform_wrapper
    .gfield.animation-label
    .ginput_container_textarea.complete
    label.gfield_label,
  .gform_wrapper .gfield.animation-label.complete label.gfield_label,
  .gform_wrapper .gfield.open label.gfield_label {
    top: -20px !important;
  }
  .gform_wrapper .gform_footer input[type="submit"] {
    font-size: 16px;
    line-height: 1.2 !important;
  }
  .alignleft {
    float: none;
    margin-right: 0px;
  }
  .about-bloc-text .alignleft {
    margin-right: 100%;
    margin-bottom: 20px;
  }
  .job-offres-list .job-offres-item-title {
    font-size: 18px;
  }
  .job-offres-list .job-offres-item a {
    padding: 15px 75px 15px 25px;
  }
  .job-offres-list .job-offres-item a .job-offres-item-icon {
    right: 25px;
    font-size: 25px;
    padding-left: 20px;
  }
  .dropdown {
    font-size: 16px !important;
  }
  .dropdown .list {
    top: 55px;
  }
  .dropdown .option {
    font-size: 14px;
    padding: 8px 15px;
  }
  .post-single .post-thumbnail {
    margin-bottom: 40px;
  }
  .footer .footer-right-column {
    margin-top: 40px;
  }
  .footer .footer-menu-container .footer-menu {
    width: 50%;
  }
  .footer-bottom .container {
    flex-direction: column;
  }
  .footer-bottom .liens-sub-footer {
    margin-bottom: 10px;
  }
  .footer-bottom * {
    font-size: 14px;
  }
  .footer-bottom p {
    text-align: center;
  }
}

/* TABLET DEVICE
   WINDOW > 768px
--------------------------------------------- */
@media (max-width: 768px) {
  .home-banner {
    height: 400px;
  }
}

/* MOBILE DEVICE
   WINDOW > 650px
--------------------------------------------- */
@media (max-width: 650px) {
  .cta-interventions {
    width: 90px;
    height: 90px;
    right: 10px;
  }
  .cta-interventions.bis {
    top: 200px;
    width: 80px;
    height: 74px;
    right: 24px;
}

.sticky + .cta-interventions + .bis {
  top: 200px;
}

  .cta-interventions .cta-icon {
    display: block;
    font-size: 25px;
    margin-top: 5px;
    margin-bottom: -5px;
  }
  .cta-interventions .cta-hour {
    font-size: 20px;
  }
  .cta-interventions .cta-text {
    display: none;
  }
  .cta-interventions .cta-tel {
    display: none;
  }
  .cta-interventions .cta-notice {
    font-size: 10px;
  }
  .home-banner {
    height: 350px;
  }
  .news-tile .news-tile-text {
    padding: 20px 20px 40px 20px;
  }
  .news-tile .news-tile-text .news-link {
    bottom: 20px;
    left: 20px;
  }
}

/* MOBILE DEVICE
   WINDOW > 600px
--------------------------------------------- */
@media (max-width: 600px) {
}

/* MOBILE DEVICE
   WINDOW > 576px
--------------------------------------------- */
@media (max-width: 576px) {
  h1 {
    font-size: 30px;
  }
  .post-single h1 {
    font-size: 30px;
    margin-top: 20px;
  }
  .post-single h1:after {
    top: -20px;
    width: 130px;
  }
  h2 {
    font-size: 25px;
    margin-top: 20px;
  }
  h2:after {
    top: -20px;
    width: 35%;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  .section {
    padding: 80px 0px 60px 0px;
  }
  .news-slider-img {
    height: 350px;
  }
  .news-slider-box {
    margin: -100px auto 0px;
  }
  .about-bloc-text .bloc-number {
    font-size: 60px;
  }
  .about-bloc-text {
    margin-bottom: 20px;
  }
  .timeline-year-slider {
    margin-top: 40px;
  }
  .timeline-year-slider .year {
    font-size: 25px;
  }
  .timeline-year-slider .slick-current .year,
  .timeline-year-slider .slick-active .year {
    font-size: 30px;
  }
  .timeline-event-slider .event-description {
    max-width: 100%;
    padding: 0px 40px;
  }
  .timeline-event-slider .event-description p {
    margin-bottom: 0px;
    font-size: 18px;
  }
  .timeline-event-slider-container {
    margin-top: 30px;
  }
  .footer-left-column {
    margin-bottom: 40px;
  }
}

/* MOBILE DEVICE
   WINDOW > 500px
--------------------------------------------- */
@media (max-width: 500px) {
  .home-banner {
    height: 300px;
  }
}

/* MOBILE DEVICE
   WINDOW > 475px
--------------------------------------------- */
@media (max-width: 475px) {
}

/* MOBILE DEVICE
   WINDOW > 450px
--------------------------------------------- */
@media (max-width: 450px) {
  .footer .footer-menu-container {
    display: block;
  }
  .footer .footer-menu-container .footer-menu {
    width: 100%;
  }
}

/* MOBILE DEVICE
   WINDOW > 425px
--------------------------------------------- */
@media (max-width: 425px) {
}

/* MOBILE DEVICE
   WINDOW > 400px
--------------------------------------------- */
@media (max-width: 400px) {
  .home-banner {
    height: 250px;
  }
}

/* MOBILE DEVICE
   WINDOW > 375px
--------------------------------------------- */
@media (max-width: 375px) {
}

/* MOBILE DEVICE
   WINDOW > 350px
--------------------------------------------- */
@media (max-width: 350px) {
}


/* ---------------------------------------------------------- MAINTENANCE TRIBU & CO */

.heading-footer {
  color: #e63329;
  margin-bottom: 30px;
  font-size: 28px;
}

@media(max-width: 576px) {
  .heading-footer {
    font-size: 20px;
  } 
}

@media (max-width: 992px) {
  .heading-footer {
    font-size: 24px;
  } 
}