@charset "UTF-8";
/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.shape-blue {
  content: url("../../svg/shape-blue.svg");
  position: absolute;
  left: 0;
  bottom: 17%;
  z-index: 2;
  width: clamp(345px, 5.32vw + 292.87px, 395px);
}
@media screen and (max-width: 980px) {
  .shape-blue {
    display: none;
  }
}

.shape-transparent {
  content: url("../../svg/shape-transparent.svg");
  position: absolute;
  right: 0;
  bottom: -55px;
  z-index: 2;
  width: clamp(211px, 32.94vw + 87.46px, 720px);
}
@media screen and (max-width: 980px) {
  .shape-transparent {
    bottom: -15px;
  }
}

.shape-yellow {
  content: url("../../svg/shape-yellow.svg");
  position: absolute;
  right: 0;
  bottom: -35px;
  z-index: 2;
  width: clamp(125px, 19.74vw + 50.97px, 430px);
}
@media screen and (max-width: 980px) {
  .shape-yellow {
    bottom: -15px;
  }
}

/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
form [type=file] {
  display: none;
  max-width: 100% !important;
}
form #lm-title, form #cv-title {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  color: var(--c-secondary);
  padding-right: 10px;
}
form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 1.39vw + -6.67px, 20px);
}
@media screen and (max-width: 1200px) {
  form .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
form .row .form-item {
  margin-block: 10px;
}
form .info {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: var(--c-secondary);
  margin-top: 5px;
}
form .form-item {
  margin-block: 20px;
}
form .form-item#subject-field {
  margin-bottom: 30px;
}
form .form-item.file .input-container {
  border: 1px solid var(--c-secondary);
  border-radius: 5px;
  padding-inline: 10px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
form .form-item.file label {
  font-family: Helvetica, sans-serif;
  color: #000000;
  margin-bottom: 0;
  border-radius: 5px;
  background-color: #EFEFEF;
  font-size: 17px;
  font-weight: 400;
  border: 1px solid #747474;
  height: 35px;
  width: 169px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
form .form-item.file label:hover, form .form-item.file label:focus {
  background-color: #cecece;
}
form label:not(.checkbox-label, .file) {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--c-secondary-light);
  font-size: clamp(13px, 0.13vw + 12.51px, 15px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F8F8F8;
  padding: 2px 15px;
  -webkit-transform: translate(8px, 13px);
          transform: translate(8px, 13px);
  z-index: 1;
  display: block;
  position: absolute;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
form label:not(.checkbox-label, .file).highlight {
  -webkit-transform: translate(8px, -12px);
          transform: translate(8px, -12px);
}
form label.subject {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  padding-left: 0;
}
form label.file,
form .label,
form select,
form select > option {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--c-secondary-light);
  font-size: clamp(13px, 0.13vw + 12.51px, 15px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form select {
  height: 50px;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form select,
form textarea {
  border: 1px solid var(--c-secondary);
  border-radius: 5px;
  padding-left: 23px;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
form select {
  width: calc(50% - clamp(5px, 0.32vw + 3.79px, 10px));
}
@media screen and (max-width: 1200px) {
  form select {
    width: 100%;
  }
}
form .checkbox-label {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--c-secondary);
  font-size: 15px;
  position: relative;
  padding-left: 15px; /* Espace pour la case à cocher */
  cursor: pointer;
}
form .checkbox-label input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
form .checkbox-label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid var(--c-secondary);
  border-radius: 4px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
form .checkbox-label.checked:before {
  background-color: var(--c-secondary);
  border-color: var(--c-secondary);
}
form .checkbox-label.acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
form .form-footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
form .form-footer input[type=submit] {
  margin-left: auto;
  color: var(--c-secondary);
}
form .form-footer .mandatory {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(12px, 0.13vw + 11.51px, 14px);
  color: var(--c-secondary);
}

/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.yellow-btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 0;
  bottom: 0;
  width: clamp(50px, 2.87vw + 21.85px, 77px);
  height: clamp(50px, 2.87vw + 21.85px, 77px);
  -webkit-transform: translate(-38%, 40%);
          transform: translate(-38%, 40%);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.yellow-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 80px;
  background-color: var(--c-main);
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.yellow-btn .arrow {
  content: url("../../svg/arrow-blue-small.svg");
}
@media screen and (max-width: 980px) {
  .yellow-btn {
    display: none;
  }
}

.page-template-page-contact {
  /************************************
   * Grids
   */
  /************************************
   * Breakpoints
   */
  /************************************
   * Transitions
   */
  /************************************
   * Paths
   */
  /************************************
   * Fonts
   */
  /*** LOCAL FONTS ***/
  /*** FONTS ***/
  /*** VARIABLES TO USE ***/
  /************************************
   * Font Sizes
   */
  /************************************
   * COLORS
   */
  /************************************
   * THEME
   */
  /**
   * Font-size calcul
   */
  /**
  * Trigger hover effect on different pseudo-classes
  * depending on touch or no-touch device
  * => no-touch > on hover and on focus (by default, can be disable)
  * => touch > on active, and when a class is added on the targeted element (optionnal)
  *
  * @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
  * @param $touchClass (string) the hover effect will be set if the targeted element has this class
  */
  /**
  * Set an item to 100% of its parent's width and height
  */
  /**
  * Set an item to 100% of the window width (and 100% of its parent height)
  * even if located in a limited width wrapper
  */
  /**
  * Set an item to 100% of the window width
  * even if located in a limited width wrapper,
  * but keep it in the flow
  */
  /**
  * To call on an <img> tag.
  * Set the image size to adapt to its parent
  */
  /**
  * Like img-cover(), but for responsive img with <picture>
  * /!\ To call on <picture>, or <img> parent.
  */
  /**
  * Floating form items
  * if $class2 equals 'empty', the next item is cleared
  */
  /*
  A simple little SCSS mixin for creating scrim gradients
  Inspired by Andreas Larson - https://github.com/larsenwork
  https://css-tricks.com/easing-linear-gradients/
  */
  /**
  Convert em value into px
   */
  /**
  Fluid font-size between 2 breakpoints.
  Font-size must be in px, use em2px() function to convert from em.
  */
  /**
  Fluid value between 2 breakpoints (can be use for other than font-size)
  (Font-size must be in px, use em2px() function to convert from em)
  */
  /*
  Fluid value - clamp version (2023)
  @see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
   */
  /**
   * Animated placeholder for images or divs (FB like)
   */
  /*** SPECIFIC TO CURRENT PROJECT ***/
}
.page-template-page-contact #masthead {
  background-color: transparent;
  z-index: 1;
}
.page-template-page-contact #masthead #site-navigation {
  position: absolute;
  margin-left: clamp(150px, 10.64vw + 45.74px, 250px);
}
.page-template-page-contact #primary {
  position: relative;
  margin-top: -167px;
  z-index: 0;
}
@media screen and (max-width: 980px) {
  .page-template-page-contact #primary {
    margin-top: -122px;
  }
}
.page-template-page-contact .header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  height: 572px;
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .header {
    height: 364px;
    margin-bottom: 30px;
  }
}
.page-template-page-contact .header .page-image-header {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: black;
}
.page-template-page-contact .header__content {
  position: absolute;
  bottom: 0;
  margin-bottom: clamp(50px, 0.97vw + 46.36px, 65px);
  margin-inline: clamp(120px, 7.45vw + 47.02px, 190px) clamp(175px, 37.77vw + -195.11px, 530px);
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .header__content {
    margin-inline: clamp(20px, 16.53vw + -41.98px, 120px);
  }
}
.page-template-page-contact .header__content .page-subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(18px, 0.13vw + 17.51px, 20px);
  color: var(--c-main);
  text-transform: uppercase;
  padding-left: 5px;
}
.page-template-page-contact .header__content h1 {
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}
.page-template-page-contact .header__content a:not(.category) {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(11px, 0.13vw + 10.51px, 13px);
  letter-spacing: 2.6px;
  text-decoration: none;
}
.page-template-page-contact .header__content a:not(.category) .arrow {
  content: url("../../svg/arrow-yellow.svg");
  margin-left: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.page-template-page-contact .header__content a:not(.category):hover, .page-template-page-contact .header__content a:not(.category):focus {
  color: var(--c-main);
}
.page-template-page-contact .header__content a:not(.category):hover .arrow, .page-template-page-contact .header__content a:not(.category):focus .arrow {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.page-template-page-contact .page-contact .container {
  max-width: 1600px;
  padding-inline: 50px;
  margin-inline: auto;
  margin-top: clamp(30px, 10.11vw + -69.04px, 125px);
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .page-contact .container {
    padding-inline: clamp(10px, 6.61vw + -14.79px, 50px);
  }
}
.page-template-page-contact .page-contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(30px, 25.53vw + -220.21px, 270px);
  margin-bottom: clamp(50px, 9.57vw + -43.83px, 140px);
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .page-contact__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .page-template-page-contact .page-contact__body .text {
    max-width: 100%;
  }
}
.page-template-page-contact .page-contact__body .text {
  max-width: 418px;
}
.page-template-page-contact .page-contact__body form label:not(.checkbox-label, .file) {
  background-color: #ffffff;
}
.page-template-page-contact .page-contact__body form .form-item {
  margin-block: 10px;
}
.page-template-page-contact .page-contact__body form .form-item.message {
  margin-block: 20px;
}
.page-template-page-contact .page-contact__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: clamp(30px, 7.77vw + 0.87px, 150px);
  height: clamp(420px, 4.26vw + 378.3px, 460px);
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .page-contact__footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    height: 100%;
  }
  .page-template-page-contact .page-contact__footer .bloc-map {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.page-template-page-contact .page-contact__footer .bloc-geo {
  margin-right: 10px;
  height: 100%;
  min-width: clamp(290px, 17.02vw + 123.19px, 450px);
  max-width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .page-contact__footer .bloc-geo {
    margin-right: 0;
    width: 48%;
    max-width: unset;
    min-width: unset;
  }
}
@media screen and (max-width: 560px) {
  .page-template-page-contact .page-contact__footer .bloc-geo {
    width: 100%;
  }
}
.page-template-page-contact .page-contact__footer .bloc-geo__header {
  padding-inline: clamp(20px, 2.13vw + -0.85px, 40px);
  padding-block: 20px;
}
.page-template-page-contact .page-contact__footer .bloc-geo .img-container {
  overflow: hidden;
  margin-top: auto;
  height: clamp(130px, 9.04vw + 41.38px, 215px);
}
.page-template-page-contact .page-contact__footer .bloc-geo .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-contact .page-contact__footer .bloc-geo .picto-container {
  margin-right: 20px;
}
.page-template-page-contact .page-contact__footer .bloc-geo .picto-container .picto {
  width: 24px;
}
.page-template-page-contact .page-contact__footer .bloc-geo__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 22px;
}
.page-template-page-contact .page-contact__footer .bloc-geo__address .picto {
  content: url("../../svg/geo.svg");
}
.page-template-page-contact .page-contact__footer .bloc-geo__address .text-white {
  color: var(--c-secondary);
}
.page-template-page-contact .page-contact__footer .bloc-geo__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-template-page-contact .page-contact__footer .bloc-geo__tel > p {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.page-template-page-contact .page-contact__footer .bloc-geo__tel .picto {
  content: url("../../svg/picto-tel-blue.svg");
}
.page-template-page-contact .page-contact__footer .bloc-map {
  height: 100%;
  width: 100%;
  margin-right: clamp(20px, 4.26vw + -21.7px, 60px);
}
.page-template-page-contact .page-contact__footer .bloc-map > div {
  height: 100% !important;
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .page-contact__footer .bloc-map {
    width: 100%;
    height: 330px;
    margin-right: 0;
  }
}
.page-template-page-contact .page-contact__footer .bloc-hire {
  height: calc(100% - 4px);
  min-width: clamp(300px, 12.23vw + 180.11px, 415px);
  max-width: 415px;
  margin-left: auto;
  background-color: var(--c-secondary);
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .page-contact__footer .bloc-hire {
    width: 48%;
    margin-left: unset;
    max-width: unset;
    min-width: unset;
  }
}
@media screen and (max-width: 560px) {
  .page-template-page-contact .page-contact__footer .bloc-hire {
    width: 100%;
  }
}
.page-template-page-contact .page-contact__footer .bloc-hire a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.page-template-page-contact .page-contact__footer .bloc-hire a .text {
  padding-inline: clamp(20px, 2.98vw + -9.19px, 48px);
  padding-block: clamp(20px, 2.98vw + -9.19px, 48px);
}
.page-template-page-contact .page-contact__footer .bloc-hire a .text h2 {
  margin-bottom: 15px;
}
.page-template-page-contact .page-contact__footer .bloc-hire a .text * {
  color: #ffffff;
}
.page-template-page-contact .page-contact__footer .bloc-hire a .text p {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(13px, 0.13vw + 12.51px, 15px);
}
.page-template-page-contact .page-contact__footer .bloc-hire a .text p:has(strong) {
  margin-top: 15px;
}
.page-template-page-contact .page-contact__footer .bloc-hire a .img-container {
  overflow: hidden;
  margin-top: auto;
  height: clamp(130px, 6.91vw + 62.23px, 195px);
}
.page-template-page-contact .page-contact__footer .bloc-hire a .img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.page-template-page-contact .page-contact__footer .bloc-hire a .yellow-btn {
  opacity: 1;
}
@media screen and (max-width: 980px) {
  .page-template-page-contact .page-contact__footer .bloc-hire a .yellow-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.page-template-page-contact .page-contact__footer .bloc-hire a:after {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  display: block;
  content: "";
  width: 90%;
  max-width: 30%;
  height: 4px;
  background-color: var(--c-main);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.page-template-page-contact .page-contact__footer .bloc-hire a:hover:after, .page-template-page-contact .page-contact__footer .bloc-hire a:focus:after {
  max-width: 90%;
}
.page-template-page-contact .page-contact__footer .bloc-hire a:hover .yellow-btn:before, .page-template-page-contact .page-contact__footer .bloc-hire a:focus .yellow-btn:before {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.page-template-page-contact .page-contact__footer .bloc-hire a:hover .img-container img, .page-template-page-contact .page-contact__footer .bloc-hire a:focus .img-container img {
  scale: 1.1;
}
/*# sourceMappingURL=contact.css.map */
