@charset "UTF-8";
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
/* RESPONSIVE MIXINS BREAKPOINT */
/* CUSTOM WIDTH CONTAINER */
/*
$xlg-container: 1200px;
$lg-container: 90%;
$md-container: 90%;
$sm-container: 90%;
*/
/* CUSTOM WIDTH CONTAINER DEFAULT */
/* CUSTOM COLORS VARIABLES */
/* BASICS COLORS VARIABLES */
/* PADDINGS */
/* PADDINGS FORM ADHESION/INSCRIPTION */
/* Plus grand ou égal custom */
/* Plus petit ou égal custom */
/* Plus grand ou égal à 1400px */
/* Plus petit ou égal à 1399px */
/* Plus grand ou égal à 1200px */
/* Plus petit ou égal à 1199px */
/* Plus grand ou égal à 992px */
/* Plus petit ou égal à 991px */
/* Plus grand ou égal à 768px */
/* Plus petit ou égal à 767px */
/* Plus grand ou égal à 576px */
/* Plus petit ou égal à 575px */
/* Entre 1399px et 1199px */
/* Entre 1199px et 992px */
/* Entre 1199px et 768px */
/* Entre 1199px et 576px */
/* Entre 991px et 768px */
/* Entre 991px et 576px */
/* Entre 767px et 576px */
/*Global variable for REM
    $rem : 16px;
*/
/* RESPONSIVE REM FONT-SIZE
html{
    font-size: $rem;
    @media only screen and (max-width : $lg) {
        html{font-size: 10px;}
    }
    @media only screen and (max-width : $md) {
        html{font-size: 8px;}
    }
    @media only screen and (max-width : $sm) {
        html{font-size: 5px;}
    }
    @media only screen and (max-width : $xs) {
        html{font-size: 5px;}
    }
}*/
@media (min-width: 768px) {
  .container {
    width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 952px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1152px;
  }
}
.container {
  /*
  @include min-custom(1500px) {
      width: $xlg-container;
  }
  */
}

/* Global animation */
/*
h1{
	opacity: 0;
}
.animate {
	@include text-fade-from-left;
}
*/
/*
.img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    animation: move 3s infinite ease alternate;
}
*/
/*###########################  TITRES  ###########################*/
h1 {
  opacity: 0;
  animation-name: text-fade-from-left;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

h2:not(p.help-block), h3:not(p.help-block), h4:not(p.help-block), h5:not(p.help-block), h6:not(p.help-block), p:not(p.help-block), .h1:not(p.help-block), .h2:not(p.help-block), .h3:not(p.help-block), .h4:not(p.help-block), .h5:not(p.help-block), .h6:not(p.help-block) {
  opacity: 0;
}
h2:not(p.help-block).animate, h3:not(p.help-block).animate, h4:not(p.help-block).animate, h5:not(p.help-block).animate, h6:not(p.help-block).animate, p:not(p.help-block).animate, .h1:not(p.help-block).animate, .h2:not(p.help-block).animate, .h3:not(p.help-block).animate, .h4:not(p.help-block).animate, .h5:not(p.help-block).animate, .h6:not(p.help-block).animate {
  animation-name: text-fade-from-left;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

/** cancel animation */
.modal h2, .modal h3, .modal h4, .modal h5, .modal h6, .modal p, .modal .h1, .modal .h2, .modal .h3, .modal .h4, .modal .h5, .modal .h6 {
  opacity: 1;
  animation: none;
}

img {
  opacity: 0;
}
img.animate {
  animation-name: slide-up-img;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-delay: 0.2s;
}

/**
* ----------------------------------------
* Logo
* ----------------------------------------
*/
@keyframes logo {
  0% {
    transform: translate(0, -40px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/**
* ----------------------------------------
* Submenu
* ----------------------------------------
*/
@keyframes submenu {
  0% {
    transform: translate(0, 10px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * Smooth bounce
 * ----------------------------------------
 */
@keyframes move {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(10px);
  }
}
/**
 * ----------------------------------------
 * bounce_arrow
 * ----------------------------------------
 */
@keyframes bounce_arrow {
  0% {
    -webkit-transform: translateY(30);
    -ms-transform: translateY(30);
    transform: translateY(30);
  }
  40% {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }
  80% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
.slide-left {
  -webkit-animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation slide-right
 * ----------------------------------------
 */
.slide-right {
  -webkit-animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation text-fade-from-left
 * ----------------------------------------
 */
/* Fade From Left */
@-webkit-keyframes text-fade-from-left {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-fade-from-left {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slide-up-img {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-up-img {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale3d(1, 1, 1);
  }
  50% {
    -moz-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -moz-transform: scale3d(1, 1, 1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale3d(1, 1, 1);
  }
  50% {
    -o-transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    -o-transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.u--pulse {
  -webkit-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@-o-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.u--flash {
  -webkit-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: flash 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -webkit-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1vh, 0);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -moz-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -moz-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -moz-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -moz-transform: translate3d(0, -1vh, 0);
  }
}
@-o-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -o-transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -o-transform: translate3d(0, -6vh, 0);
  }
  70% {
    -o-transform: translate3d(0, -3vh, 0);
  }
  90% {
    -o-transform: translate3d(0, -1vh, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -6vh, 0);
  }
  70% {
    transform: translate3d(0, -3vh, 0);
  }
  90% {
    transform: translate3d(0, -1vh, 0);
  }
}
.u--bounce {
  -webkit-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounce 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(1vw, 0, 0);
  }
}
@-moz-keyframes shake {
  0%, 100% {
    -moz-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -moz-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -moz-transform: translate3d(1vw, 0, 0);
  }
}
@-o-keyframes shake {
  0%, 100% {
    -o-transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -o-transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -o-transform: translate3d(1vw, 0, 0);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-1vw, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(1vw, 0, 0);
  }
}
.u--shake {
  -webkit-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: shake 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -moz-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -moz-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -moz-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -moz-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -o-transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -o-transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -o-transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -o-transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.u--swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: swing 2s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -webkit-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes bounceIn {
  0% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -moz-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -moz-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes bounceIn {
  0% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
  40% {
    -o-transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    -o-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  40% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  80% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.u--bounceIn {
  -webkit-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceIn 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale(0.9);
  }
  50%, 65% {
    -webkit-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.3);
    opacity: 0;
  }
}
@-moz-keyframes bounceOut {
  20% {
    -moz-transform: scale(0.9);
  }
  50%, 65% {
    -moz-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(0.3);
    opacity: 0;
  }
}
@-o-keyframes bounceOut {
  20% {
    -o-transform: scale(0.9);
  }
  50%, 55% {
    -o-transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -o-transform: scale(0.3);
    opacity: 0;
  }
}
@keyframes bounceOut {
  20% {
    transform: scale(0.9);
  }
  50%, 65% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.3);
    opacity: 0;
  }
}
.u--bounceOut {
  -webkit-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceOut 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInLeft {
  0% {
    -webkit-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    -moz-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -moz-transform: translate3d(3%, 0, 0);
  }
  75% {
    -moz-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -moz-transform: translate3d(1%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInLeft {
  0% {
    -o-transform: translate3d(-25%, 0, 0);
  }
  60% {
    -o-transform: translate3d(3%, 0, 0);
  }
  75% {
    -o-transform: translate3d(-1%, 0, 0);
  }
  90% {
    -o-transform: translate3d(1%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInLeft {
  0% {
    transform: translate3d(-25%, 0, 0);
  }
  60% {
    transform: translate3d(3%, 0, 0);
  }
  75% {
    transform: translate3d(-1%, 0, 0);
  }
  90% {
    transform: translate3d(1%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInLeft {
  -webkit-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInLeft 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInRight {
  0% {
    -webkit-transform: translate3d(25%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(1%, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInRight {
  0% {
    -moz-transform: translate3d(25%, 0, 0);
  }
  60% {
    -moz-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -moz-transform: translate3d(1%, 0, 0);
  }
  90% {
    -moz-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInRight {
  0% {
    -o-transform: translate3d(25%, 0, 0);
  }
  60% {
    -o-transform: translate3d(-3%, 0, 0);
  }
  75% {
    -o-transform: translate3d(1%, 0, 0);
  }
  90% {
    -o-transform: translate3d(-1%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInRight {
  0% {
    transform: translate3d(25%, 0, 0);
  }
  60% {
    transform: translate3d(-3%, 0, 0);
  }
  75% {
    transform: translate3d(1%, 0, 0);
  }
  90% {
    transform: translate3d(-1%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInRight {
  -webkit-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInRight 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInUp {
  0% {
    -webkit-transform: translate3d(0, 25%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, -3%, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 1%, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -1%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInUp {
  0% {
    -moz-transform: translate3d(0, 25%, 0);
  }
  60% {
    -moz-transform: translate3d(0, -3%, 0);
  }
  75% {
    -moz-transform: translate3d(0, 1%, 0);
  }
  90% {
    -moz-transform: translate3d(0, -1%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInUp {
  0% {
    -o-transform: translate3d(0, 25%, 0);
  }
  60% {
    -o-transform: translate3d(0, -3%, 0);
  }
  75% {
    -o-transform: translate3d(0, 1%, 0);
  }
  90% {
    -o-transform: translate3d(0, -1%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInUp {
  0% {
    transform: translate3d(0, 25%, 0);
  }
  60% {
    transform: translate3d(0, -3%, 0);
  }
  75% {
    transform: translate3d(0, 1%, 0);
  }
  90% {
    transform: translate3d(0, -1%, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInUp {
  -webkit-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInUp 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes bounceInDown {
  0% {
    -webkit-transform: translate3d(0, -25%, 0);
  }
  60% {
    -webkit-transform: translate3d(0, 3%, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -1%, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 1%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes bounceInDown {
  0% {
    -moz-transform: translate3d(0, -25%, 0);
  }
  60% {
    -moz-transform: translate3d(0, 3%, 0);
  }
  75% {
    -moz-transform: translate3d(0, -1%, 0);
  }
  90% {
    -moz-transform: translate3d(0, 1%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes bounceInDown {
  0% {
    -o-transform: translate3d(0, -25%, 0);
  }
  60% {
    -o-transform: translate3d(0, 3%, 0);
  }
  75% {
    -o-transform: translate3d(0, -1%, 0);
  }
  90% {
    -o-transform: translate3d(0, 1%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes bounceInDown {
  0% {
    transform: translate3d(0, -25%, 0);
  }
  60% {
    transform: translate3d(0, 3%, 0);
  }
  75% {
    transform: translate3d(0, -1%, 0);
  }
  90% {
    transform: translate3d(0, 1%, 0);
  }
  100% {
    transform: none;
  }
}
.u--bounceInDown {
  -webkit-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: bounceInDown 2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.u--fadeIn {
  -webkit-animation: fadeIn 1s ease-in;
  -moz-animation: fadeIn 1s ease-in;
  -o-animation: fadeIn 1s ease-in;
  animation: fadeIn 1s ease-in;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInLeft {
  -webkit-animation: fadeInLeft 1s ease-in;
  -moz-animation: fadeInLeft 1s ease-in;
  -o-animation: fadeInLeft 1s ease-in;
  animation: fadeInLeft 1s ease-in;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInRight {
  -webkit-animation: fadeInRight 1s ease-in;
  -moz-animation: fadeInRight 1s ease-in;
  -o-animation: fadeInRight 1s ease-in;
  animation: fadeInRight 1s ease-in;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInUp {
  -webkit-animation: fadeInUp 1s ease-in;
  -moz-animation: fadeInUp 1s ease-in;
  -o-animation: fadeInUp 1s ease-in;
  animation: fadeInUp 1s ease-in;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -moz-transform: none;
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    -o-transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.u--fadeInDown {
  -webkit-animation: fadeInDown 1s ease-in;
  -moz-animation: fadeInDown 1s ease-in;
  -o-animation: fadeInDown 1s ease-in;
  animation: fadeInDown 1s ease-in;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.u--fadeOut {
  -webkit-animation: fadeOut 1s ease-out;
  -moz-animation: fadeOut 1s ease-out;
  -o-animation: fadeOut 1s ease-out;
  animation: fadeOut 1s ease-out;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutLeft {
  -webkit-animation: fadeOutLeft 1s ease-out;
  -moz-animation: fadeOutLeft 1s ease-out;
  -o-animation: fadeOutLeft 1s ease-out;
  animation: fadeOutLeft 1s ease-out;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translate3d(50%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutRight {
  -webkit-animation: fadeOutRight 1s ease-out;
  -moz-animation: fadeOutRight 1s ease-out;
  -o-animation: fadeOutRight 1s ease-out;
  animation: fadeOutRight 1s ease-out;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translate3d(0, 50%, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutUp {
  -webkit-animation: fadeOutUp 1s ease-out;
  -moz-animation: fadeOutUp 1s ease-out;
  -o-animation: fadeOutUp 1s ease-out;
  animation: fadeOutUp 1s ease-out;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: none;
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -moz-transform: none;
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    -o-transform: none;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translate3d(0, -50%, 0);
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
.u--fadeOutDown {
  -webkit-animation: fadeOutDown 1s ease-out;
  -moz-animation: fadeOutDown 1s ease-out;
  -o-animation: fadeOutDown 1s ease-out;
  animation: fadeOutDown 1s ease-out;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -moz-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    -o-transform: rotate3d(0, 1, 0, -180deg);
  }
}
@keyframes flip {
  0% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, -180deg);
  }
}
.u--flip {
  -webkit-animation: flip 2s ease-out;
  -moz-animation: flip 2s ease-out;
  -o-animation: flip 2s ease-out;
  animation: flip 2s ease-out;
}

@-webkit-keyframes flipX {
  0% {
    -webkit-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-moz-keyframes flipX {
  0% {
    -moz-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -moz-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -moz-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -moz-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@-o-keyframes flipX {
  0% {
    -o-transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    -o-transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    -o-transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -o-transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -o-transform: rotate3d(1, 0, 0, 0deg);
  }
}
@keyframes flipX {
  0% {
    transform: rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(1, 0, 0, -5deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
}
.u--flipX {
  -webkit-animation: flipX 2s ease-in;
  -moz-animation: flipX 2s ease-in;
  -o-animation: flipX 2s ease-in;
  animation: flipX 2s ease-in;
}

@-webkit-keyframes flipY {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@-moz-keyframes flipY {
  0% {
    -moz-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -moz-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -moz-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -moz-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@-o-keyframes flipY {
  0% {
    -o-transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    -o-transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    -o-transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -o-transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -o-transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes flipY {
  0% {
    transform: rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
  40% {
    transform: rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: rotate3d(0, 1, 0, -5deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
.u--flipY {
  -webkit-animation: flipY 2s ease-in;
  -moz-animation: flipY 2s ease-in;
  -o-animation: flipY 2s ease-in;
  animation: flipY 2s ease-in;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotate {
  0% {
    transform: rotate3d(0, 0, 1, -300deg);
  }
  100% {
    transform: none;
  }
}
.u--rotate {
  -webkit-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: rotate 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: rotate 1s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotateUpLeft {
  0% {
    -moz-transform: rotate(45deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotateUpLeft {
  0% {
    -o-transform: rotate(45deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotateUpLeft {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: none;
  }
}
.u--rotateUpLeft {
  -webkit-animation: rotateUpLeft 1s;
  -moz-animation: rotateUpLeft 1s;
  -o-animation: rotateUpLeft 1s;
  animation: rotateUpLeft 1s;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateUpRight {
  0% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes rotateUpRight {
  0% {
    -moz-transform: rotate(-45deg);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes rotateUpRight {
  0% {
    -o-transform: rotate(-45deg);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes rotateUpRight {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: none;
  }
}
.u--rotateUpRight {
  -webkit-animation: rotateUpRight 1s;
  -moz-animation: rotateUpRight 1s;
  -o-animation: rotateUpRight 1s;
  animation: rotateUpRight 1s;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes rotateDownLeft {
  0% {
    -moz-transform: rotate(-45deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotateDownLeft {
  0% {
    -o-transform: rotate(-45deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.u--rotateDownLeft {
  -webkit-animation: rotateDownLeft 1s;
  -moz-animation: rotateDownLeft 1s;
  -o-animation: rotateDownLeft 1s;
  animation: rotateDownLeft 1s;
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes rotateDownRight {
  0% {
    -webkit-transform: rotate(45deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes rotateDownRight {
  0% {
    -moz-transform: rotate(45deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes rotateDownRight {
  0% {
    -o-transform: rotate(45deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes rotateDownRight {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.u--rotateDownRight {
  -webkit-animation: rotateDownRight 1s;
  -moz-animation: rotateDownRight 1s;
  -o-animation: rotateDownRight 1s;
  animation: rotateDownRight 1s;
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -o-transform-origin: top right;
  transform-origin: top right;
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translate3d(0, 100%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideUp {
  0% {
    -o-transform: translate3d(0, 100%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideUp {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideUp {
  -webkit-animation: slideUp 1s;
  -moz-animation: slideUp 1s;
  -o-animation: slideUp 1s;
  animation: slideUp 1s;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translate3d(0, -100%, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideDown {
  0% {
    -o-transform: translate3d(0, -100%, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideDown {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideDown {
  -webkit-animation: slideDown 1s;
  -moz-animation: slideDown 1s;
  -o-animation: slideDown 1s;
  animation: slideDown 1s;
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideLeft {
  0% {
    -moz-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideLeft {
  0% {
    -o-transform: translate3d(-100%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideLeft {
  -webkit-animation: slideLeft 1s;
  -moz-animation: slideLeft 1s;
  -o-animation: slideLeft 1s;
  animation: slideLeft 1s;
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: none;
  }
}
@-moz-keyframes slideRight {
  0% {
    -moz-transform: translate3d(100%, 0, 0);
  }
  100% {
    -moz-transform: none;
  }
}
@-o-keyframes slideRight {
  0% {
    -o-transform: translate3d(100%, 0, 0);
  }
  100% {
    -o-transform: none;
  }
}
@keyframes slideRight {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: none;
  }
}
.u--slideRight {
  -webkit-animation: slideRight 1s;
  -moz-animation: slideRight 1s;
  -o-animation: slideRight 1s;
  animation: slideRight 1s;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes zoomIn {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes zoomIn {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.u--zoomIn {
  -webkit-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomIn 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInDown {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInDown {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomInDown {
  -webkit-animation: zoomInDown 1s;
  -moz-animation: zoomInDown 1s;
  -o-animation: zoomInDown 1s;
  animation: zoomInDown 1s;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomInUp {
  0% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomInUp {
  0% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomInUp {
  -webkit-animation: zoomInUp 1s;
  -moz-animation: zoomInUp 1s;
  -o-animation: zoomInUp 1s;
  animation: zoomInUp 1s;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -moz-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -o-transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.u--zoomOut {
  -webkit-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: zoomOut 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@-webkit-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutDown {
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, -3vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 90vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomOutDown {
  -webkit-animation: zoomOutDown 1s;
  -moz-animation: zoomOutDown 1s;
  -o-animation: zoomOutDown 1s;
  animation: zoomOutDown 1s;
}

@-webkit-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -webkit-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-moz-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -moz-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -moz-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -moz-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@-o-keyframes zoomOutUp {
  50% {
    opacity: 1;
    -o-transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    -o-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -o-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    -o-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.6, 0.6, 0.6) translate3d(0, 3vh, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -90vh, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.u--zoomOutUp {
  -webkit-animation: zoomOutUp 1s;
  -moz-animation: zoomOutUp 1s;
  -o-animation: zoomOutUp 1s;
  animation: zoomOutUp 1s;
}

/* All titles */
/* col-grid */
/* Cancel UL LI list */
/* Solid background with opacity */
/* Solid background with gradient */
/* Background overlay with :after */
/* Gradient background overlay with :after, 6 variables to fill */
/* Absolute positions */
/* clear float after */
/* Fake container */
/* IMAGE Z LAYOUT */
/********************************************************************/
/* DISPLAY RESPONSIVE */
/********************************************************************/
.displaynone {
  display: none;
}

@media (max-width: 1199px) {
  .lg-hidden {
    display: none;
  }
}

@media (max-width: 991px) {
  .md-hidden {
    display: none;
  }
}

@media (max-width: 767px) {
  .sm-hidden {
    display: none;
  }
}

/********************************************************************/
/* CLEAR AFTER */
/********************************************************************/
.clearafter:after {
  content: "";
  display: block;
  clear: both;
}

/********************************************************************/
/* PADDINGS */
/********************************************************************/
.nopaddingtop {
  padding-top: 0 !important;
}

.nopaddingbottom {
  padding-bottom: 0 !important;
}

.xsmallpadding {
  padding: 1rem 0 !important;
}

.xsmallpaddingtop {
  padding-top: 1rem !important;
}

.xsmallpaddingbottom {
  padding-bottom: 1rem !important;
}

.smallpadding {
  padding: 3.5rem 0 !important;
}

.smallpaddingtop {
  padding-top: 3.5rem !important;
}

.smallpaddingbottom {
  padding-bottom: 3.5rem !important;
}

.largepadding {
  padding: 7.5rem 0 !important;
}

.largepaddingtop {
  padding-top: 7.5rem !important;
}

.largepaddingbottom {
  padding-bottom: 7.5rem !important;
}

.xlargepadding {
  padding: 12.5rem 0 !important;
}

.xlargepaddingtop {
  padding-top: 12.5rem !important;
}

.xlargepaddingbottom {
  padding-bottom: 12.5rem !important;
}

@media (max-width: 767px) {
  .smallpadding {
    padding: 40px 0;
  }
  .smallpaddingtop {
    padding-top: 40px;
  }
  .smallpaddingbottom {
    padding-bottom: 40px;
  }
  .largepadding {
    padding: 80px 0;
  }
  .largepaddingtop {
    padding-top: 80px;
  }
  .largepaddingbottom {
    padding-bottom: 80px;
  }
}
/********************************************************************/
/* ALIGNEMENTS */
/********************************************************************/
/* Alignement vertical flex */
.verticalalign .row {
  display: flex;
  flex-wrap: wrap;
}
.verticalalign .row > div {
  display: flex;
  flex-direction: column;
}
.verticalalign .row > div > div {
  width: 100%;
}
.verticalalign.center .row > div {
  align-items: center;
  justify-content: center;
}
.verticalalign.bottom .row > div {
  align-items: center;
  justify-content: flex-end;
}

/* Centrer l'image d'un article */
.centeredimage .mod-article__img, .centeredimage .news-thumbnail {
  display: block;
  margin: 0 auto;
}
.centeredimage .itemImage {
  text-align: center;
}
.centeredimage .itemImage img {
  display: inline-block !important;
}
.centeredimage .item img {
  display: inline-block !important;
}
.centeredimage-marginbottom .mod-article__img, .centeredimage-marginbottom .news-thumbnail {
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}
.centeredimage-margintop .mod-article__img, .centeredimage-margintop .news-thumbnail {
  display: block;
  margin: 0 auto;
  margin-top: 50px;
}

/* Centrer tous les éléments d'un article en mobile */
@media (max-width: 767px) {
  .mobileallcenter {
    text-align: center;
  }
  .mobileallcenter .zone-article, .mobileallcenter .zone-article div {
    width: 100%;
  }
}

/* Centrer uniquement l'image d'un article en mobile */
@media (max-width: 767px) {
  .mobileimgcenter {
    text-align: center;
  }
  .mobileimgcenter .zone-article, .mobileimgcenter .zone-article div {
    width: 100%;
  }
  .mobileimgcenter .mod-article__intro {
    margin-top: 30px;
  }
  .mobileimgcenter .mod-article__intro, .mobileimgcenter .mod-article__content .mod-article__content {
    text-align: left;
  }
}

/********************************************************************/
/* MISE EN PAGE */
/********************************************************************/
/* Intro des pages */
.pageIntroduction {
  text-align: center;
}
.pageIntroduction .mod-article__intro, .pageIntroduction .mod-article__content, .pageIntroduction .zone-html > .content {
  max-width: 750px;
  margin: auto;
}

/* Full Width 80% */
@media (min-width: 768px) {
  .fullwidth-80 .container {
    width: 94%;
  }
}
@media (min-width: 1200px) {
  .fullwidth-80 .container {
    width: 80%;
  }
}

/* Layout en Z */
@media (max-width: 767px) {
  .zlayout > .container > .row, .zlayout > .container-fluid > .row {
    display: flex;
    flex-flow: column;
  }
  .zlayout > .container > .row > div:first-child, .zlayout > .container-fluid > .row > div:first-child {
    order: 1;
  }
  .zlayout > .container > .row > div:last-child, .zlayout > .container-fluid > .row > div:last-child {
    order: 0;
  }
  .zlayout .zone-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .md-zlayout > .container > .row, .md-zlayout > .container-fluid > .row {
    display: flex;
    flex-flow: column;
  }
  .md-zlayout > .container > .row > div:first-child, .md-zlayout > .container-fluid > .row > div:first-child {
    order: 1;
  }
  .md-zlayout > .container > .row > div:last-child, .md-zlayout > .container-fluid > .row > div:last-child {
    order: 0;
  }
  .md-zlayout .zone-image {
    margin-bottom: 30px;
  }
}

/********************************************************************/
/* TITLES */
/********************************************************************/
.whitetitles h1, .whitetitles h2, .whitetitles h3, .whitetitles h4, .whitetitles h5, .whitetitles h6, .whitetitles p, .whitetitles .h1, .whitetitles .h2, .whitetitles .h3, .whitetitles .h4, .whitetitles .h5, .whitetitles .h6 {
  color: #fff !important;
}
.whitetitles-h1 h1, .whitetitles-h2 h2, .whitetitles-h3 h3, .whitetitles-h4 h4, .whitetitles-h5 h5, .whitetitles-h6 h6 {
  color: #fff !important;
}

.whiteparagraphe p {
  color: #000;
}

.darktitles h1, .darktitles h2, .darktitles h3, .darktitles h4, .darktitles h5, .darktitles h6, .darktitles p, .darktitles .h1, .darktitles .h2, .darktitles .h3, .darktitles .h4, .darktitles .h5, .darktitles .h6 {
  color: #000 !important;
}
.darktitles-h1 h1, .darktitles-h2 h2, .darktitles-h3 h3, .darktitles-h4 h4, .darktitles-h5 h5, .darktitles-h6 h6 {
  color: #000 !important;
}

.darkparagraphe p {
  color: #000;
}

/* Pour les modules d'articles en vedette seulement, 
mettre nombre de colonnes à 1 dans le module */
.col-grid[class*=grid] .newsList, .col-grid[class*=grid] .news-mosaic, .col-grid[class*=grid] .eventsList {
  gap: 60px 40px;
}
.col-grid.grid-5 .newsList, .col-grid.grid-5 .news-mosaic, .col-grid.grid-5 .eventsList {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.col-grid.grid-4 .newsList, .col-grid.grid-4 .news-mosaic, .col-grid.grid-4 .eventsList {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.col-grid.grid-3 .newsList, .col-grid.grid-3 .news-mosaic, .col-grid.grid-3 .eventsList {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.col-grid.grid-2 .newsList, .col-grid.grid-2 .news-mosaic, .col-grid.grid-2 .eventsList {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.col-grid.grid-1 .newsList, .col-grid.grid-1 .news-mosaic, .col-grid.grid-1 .eventsList {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-5 .newsList, .col-grid.grid-lg-5 .news-mosaic, .col-grid.grid-lg-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-4 .newsList, .col-grid.grid-lg-4 .news-mosaic, .col-grid.grid-lg-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-3 .newsList, .col-grid.grid-lg-3 .news-mosaic, .col-grid.grid-lg-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-2 .newsList, .col-grid.grid-lg-2 .news-mosaic, .col-grid.grid-lg-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .col-grid.grid-lg-1 .newsList, .col-grid.grid-lg-1 .news-mosaic, .col-grid.grid-lg-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-5 .newsList, .col-grid.grid-md-5 .news-mosaic, .col-grid.grid-md-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-4 .newsList, .col-grid.grid-md-4 .news-mosaic, .col-grid.grid-md-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-3 .newsList, .col-grid.grid-md-3 .news-mosaic, .col-grid.grid-md-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-2 .newsList, .col-grid.grid-md-2 .news-mosaic, .col-grid.grid-md-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .col-grid.grid-md-1 .newsList, .col-grid.grid-md-1 .news-mosaic, .col-grid.grid-md-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-5 .newsList, .col-grid.grid-sm-5 .news-mosaic, .col-grid.grid-sm-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-4 .newsList, .col-grid.grid-sm-4 .news-mosaic, .col-grid.grid-sm-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-3 .newsList, .col-grid.grid-sm-3 .news-mosaic, .col-grid.grid-sm-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-2 .newsList, .col-grid.grid-sm-2 .news-mosaic, .col-grid.grid-sm-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .col-grid.grid-sm-1 .newsList, .col-grid.grid-sm-1 .news-mosaic, .col-grid.grid-sm-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-5 .newsList, .col-grid.grid-xs-5 .news-mosaic, .col-grid.grid-xs-5 .eventsList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-4 .newsList, .col-grid.grid-xs-4 .news-mosaic, .col-grid.grid-xs-4 .eventsList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-3 .newsList, .col-grid.grid-xs-3 .news-mosaic, .col-grid.grid-xs-3 .eventsList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-2 .newsList, .col-grid.grid-xs-2 .news-mosaic, .col-grid.grid-xs-2 .eventsList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .col-grid.grid-xs-1 .newsList, .col-grid.grid-xs-1 .news-mosaic, .col-grid.grid-xs-1 .eventsList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.col-grid .newsList, .col-grid .news-mosaic, .col-grid .eventsList {
  display: grid;
}
.col-grid .newsList .row, .col-grid .news-mosaic .row, .col-grid .eventsList .row {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.col-grid .newsList .row .item, .col-grid .newsList .row > div, .col-grid .news-mosaic .row .item, .col-grid .news-mosaic .row > div, .col-grid .eventsList .row .item, .col-grid .eventsList .row > div {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Remove outline on link and button */
input, select, textarea, button {
  outline: none !important;
}

*:focus, *:hover, img {
  outline: none;
}

a:active, a:focus {
  outline: 0;
  -moz-outline-style: none;
}

.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: 0;
  -moz-outline-style: none;
}

/* Change selection color */
::-moz-selection { /* Code for Firefox */
  color: #fff;
  background: #3F2667;
}

::selection {
  color: #fff;
  background: #3F2667;
}

/* Remove native back to list button because its a javascrip history back */
.article-back-to-list-histo {
  display: none;
}

/* Hides all the medias sharing button because we never used them */
.plugin-addthis {
  /*display: none;*/
}

/* MOBILE CONTAINER PADDING LARGER BECAUSE OUR DESIGNERS LIKE IT THICC */
@media (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* FIX FLEX ON SAFARI, do not delete */
@media (min-width: 768px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xs-13, .col-sm-13, .col-md-13, .col-lg-13, .col-xs-14, .col-sm-14, .col-md-14, .col-lg-14, .col-xs-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xs-16, .col-sm-16, .col-md-16, .col-lg-16, .col-xs-17, .col-sm-17, .col-md-17, .col-lg-17, .col-xs-18, .col-sm-18, .col-md-18, .col-lg-18, .col-xs-19, .col-sm-19, .col-md-19, .col-lg-19, .col-xs-20, .col-sm-20, .col-md-20, .col-lg-20, .col-xs-21, .col-sm-21, .col-md-21, .col-lg-21, .col-xs-22, .col-sm-22, .col-md-22, .col-lg-22, .col-xs-23, .col-sm-23, .col-md-23, .col-lg-23, .col-xs-24, .col-sm-24, .col-md-24, .col-lg-24 {
    margin: 0 -1px;
  }
}
.zone-banner {
  margin: 0;
}
.zone-banner .col-xs-1, .zone-banner .col-sm-1, .zone-banner .col-md-1, .zone-banner .col-lg-1, .zone-banner .col-xs-2, .zone-banner .col-sm-2, .zone-banner .col-md-2, .zone-banner .col-lg-2, .zone-banner .col-xs-3, .zone-banner .col-sm-3, .zone-banner .col-md-3, .zone-banner .col-lg-3, .zone-banner .col-xs-4, .zone-banner .col-sm-4, .zone-banner .col-md-4, .zone-banner .col-lg-4, .zone-banner .col-xs-5, .zone-banner .col-sm-5, .zone-banner .col-md-5, .zone-banner .col-lg-5, .zone-banner .col-xs-6, .zone-banner .col-sm-6, .zone-banner .col-md-6, .zone-banner .col-lg-6, .zone-banner .col-xs-7, .zone-banner .col-sm-7, .zone-banner .col-md-7, .zone-banner .col-lg-7, .zone-banner .col-xs-8, .zone-banner .col-sm-8, .zone-banner .col-md-8, .zone-banner .col-lg-8, .zone-banner .col-xs-9, .zone-banner .col-sm-9, .zone-banner .col-md-9, .zone-banner .col-lg-9, .zone-banner .col-xs-10, .zone-banner .col-sm-10, .zone-banner .col-md-10, .zone-banner .col-lg-10, .zone-banner .col-xs-11, .zone-banner .col-sm-11, .zone-banner .col-md-11, .zone-banner .col-lg-11, .zone-banner .col-xs-12, .zone-banner .col-sm-12, .zone-banner .col-md-12, .zone-banner .col-lg-12, .zone-banner .col-xs-13, .zone-banner .col-sm-13, .zone-banner .col-md-13, .zone-banner .col-lg-13, .zone-banner .col-xs-14, .zone-banner .col-sm-14, .zone-banner .col-md-14, .zone-banner .col-lg-14, .zone-banner .col-xs-15, .zone-banner .col-sm-15, .zone-banner .col-md-15, .zone-banner .col-lg-15, .zone-banner .col-xs-16, .zone-banner .col-sm-16, .zone-banner .col-md-16, .zone-banner .col-lg-16, .zone-banner .col-xs-17, .zone-banner .col-sm-17, .zone-banner .col-md-17, .zone-banner .col-lg-17, .zone-banner .col-xs-18, .zone-banner .col-sm-18, .zone-banner .col-md-18, .zone-banner .col-lg-18, .zone-banner .col-xs-19, .zone-banner .col-sm-19, .zone-banner .col-md-19, .zone-banner .col-lg-19, .zone-banner .col-xs-20, .zone-banner .col-sm-20, .zone-banner .col-md-20, .zone-banner .col-lg-20, .zone-banner .col-xs-21, .zone-banner .col-sm-21, .zone-banner .col-md-21, .zone-banner .col-lg-21, .zone-banner .col-xs-22, .zone-banner .col-sm-22, .zone-banner .col-md-22, .zone-banner .col-lg-22, .zone-banner .col-xs-23, .zone-banner .col-sm-23, .zone-banner .col-md-23, .zone-banner .col-lg-23, .zone-banner .col-xs-24, .zone-banner .col-sm-24, .zone-banner .col-md-24, .zone-banner .col-lg-24 {
  margin: 0;
}

/* ################################# */
body {
  font-family: "Nunito", sans-serif;
}
body.overflowhidden {
  overflow: hidden;
}

/*###########################  TITRES  ###########################*/
h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Nunito", sans-serif;
  margin-bottom: 15px;
  width: 100%;
  color: #3F2667;
}
h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, p:hover, .h1:hover, .h2:hover, .h3:hover, .h4:hover, .h5:hover, .h6:hover {
  text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, p a:hover, .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  h1 br, h2 br, h3 br, h4 br, h5 br, h6 br, p br, .h1 br, .h2 br, .h3 br, .h4 br, .h5 br, .h6 br {
    display: none !important;
  }
}
@media (max-width: 575px) {
  h1, h2, h3, h4, h5, h6, p, .h1, .h2, .h3, .h4, .h5, .h6 {
    word-break: keep-all;
  }
}

h1, .h1 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 38px;
    line-height: 42px;
  }
}

h2, .h2 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  h2, .h2 {
    font-size: 38px;
    line-height: 42px;
  }
}

h3, .h3 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 30px;
    line-height: 35px;
  }
}

h4, .h4 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  h4, .h4 {
    font-size: 17px;
    line-height: 21px;
  }
}

h5, .h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
h6, .h6 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.text_default {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

p {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  p {
    font-size: 20px;
    line-height: 25px;
  }
}
.p-small {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.titre-2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .titre-2 {
    font-size: 25px;
    line-height: 30px;
  }
}

.citation {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .citation {
    font-size: 35px;
    line-height: 40px;
  }
}

.titre-name {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.titre-poste {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
hr {
  border-color: rgba(232, 86, 82, 0.35);
}

a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):not(.line-banner-home a):not(.line-accueil-programme a) {
  color: #3F2667;
  text-decoration: underline;
  word-break: break-word;
}
a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):not(.line-banner-home a):not(.line-accueil-programme a):hover, a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):not(.line-banner-home a):not(.line-accueil-programme a):active, a:not(.btn):not(.switch-language):not(.page):not(.article-back-to-list-histo):not(ul.nav a):not(ul.ui-nav a):not(.line-header a):not(.menu-item):not(.news-accordion-header):not(.viewAll):not(.mod-eventflash__item-title a):not(.forum-message-edit):not(.forum-message-actions):not(.theadLink):not(.line-banner-home a):not(.line-accueil-programme a):focus {
  color: #3F2667;
  text-decoration: none;
}

ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services):not(.object-responsable_organisation) {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 25px;
}
ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services):not(.object-responsable_organisation) li {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services):not(.object-responsable_organisation) li {
    font-size: 20px;
    line-height: 25px;
  }
}
ol li, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services):not(.object-responsable_organisation) li {
  margin-bottom: 4px;
}
ol li::marker, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services):not(.object-responsable_organisation) li::marker {
  color: #E85652;
}
ol li ul, ol li ol, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services):not(.object-responsable_organisation) li ul, ul:not(.menu-vertical-items):not(.nav):not(.nav-sidebar-sticky):not(.chosen-choices):not(.chosen-results):not(.mod-header):not(.dropdown-menu):not(.dropdown-menu-level-2):not(.list-group):not(.list-unstyled):not(.error):not(.errors):not(#menu):not(.breadcrumb):not(.social):not(.cm-services):not(.object-responsable_organisation) li ol {
  margin-top: 0;
  margin-bottom: 0;
}

ol {
  padding-left: 15px;
}

/*###########################  BOUTONS  ###########################*/
/* Calendar event BTN 
.calendar-link-content {
	.v-btn {
		color: $secondary!important;
		background-color: transparent!important;
		transition: all 150ms;
		border: 0!important;
		border-radius: 0!important;
		height: auto!important;
		font-size: 12px!important;
		padding: 0!important;
		&:hover, &:focus, &:active {
			color: $secondary!important;
			outline: 0;
			outline-offset: 0;
			box-shadow: none;
		}
		&:before {
			content: "";
			background: url("https://cdn.ca.yapla.com/company/CPYmVa1qSsf2Dxu9ZwPKEFGQd/asset/images/%2B_calendar.svg");
			width: 18px;
			height: 18px;
			margin-right: 10px;
		}
		i {
			display: none;
		}
	}
}
*/
/*###########################  BOUTONS RESET  ###########################*/
.btn, input.btn, a.btn {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.btn:hover, .btn:active, .btn:focus, input.btn:hover, input.btn:active, input.btn:focus, a.btn:hover, a.btn:active, a.btn:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .btn, input.btn, a.btn {
    white-space: normal !important;
  }
}
.btn.btn-primary, .btn.btn-default, input.btn.btn-primary, input.btn.btn-default, a.btn.btn-primary, a.btn.btn-default {
  background-color: #9695D3;
  transition: all 150ms;
  text-indent: -10000px;
  width: 21px;
  height: 21px;
}
.btn.btn-primary:after, .btn.btn-default:after, input.btn.btn-primary:after, input.btn.btn-default:after, a.btn.btn-primary:after, a.btn.btn-default:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  margin-left: 4px;
  filter: brightness(5);
}
.btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary:focus, .btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default:focus, input.btn.btn-primary:hover, input.btn.btn-primary:active, input.btn.btn-primary:focus, input.btn.btn-default:hover, input.btn.btn-default:active, input.btn.btn-default:focus, a.btn.btn-primary:hover, a.btn.btn-primary:active, a.btn.btn-primary:focus, a.btn.btn-default:hover, a.btn.btn-default:active, a.btn.btn-default:focus {
  background-color: #E85652;
}
.btn.btn-secondary, input.btn.btn-secondary, a.btn.btn-secondary {
  background-color: #E85652;
  transition: all 150ms;
  text-indent: -10000px;
  width: 35px;
  height: 35px;
}
.btn.btn-secondary:after, input.btn.btn-secondary:after, a.btn.btn-secondary:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  margin-left: 8px;
  filter: brightness(5);
}
.btn.btn-secondary:hover, .btn.btn-secondary:active, .btn.btn-secondary:focus, input.btn.btn-secondary:hover, input.btn.btn-secondary:active, input.btn.btn-secondary:focus, a.btn.btn-secondary:hover, a.btn.btn-secondary:active, a.btn.btn-secondary:focus {
  background-color: #9695D3;
}
.btn.btn-link, .btn.btn-back, input.btn.btn-link, input.btn.btn-back, a.btn.btn-link, a.btn.btn-back {
  background-color: #E85652;
  color: #fff;
  transition: all 150ms;
  border: none;
  padding: 10px 50px 10px 50px;
  height: 60px;
  width: auto;
  text-indent: 0;
}
.btn.btn-link:hover, .btn.btn-link:active, .btn.btn-link:focus, .btn.btn-back:hover, .btn.btn-back:active, .btn.btn-back:focus, input.btn.btn-link:hover, input.btn.btn-link:active, input.btn.btn-link:focus, input.btn.btn-back:hover, input.btn.btn-back:active, input.btn.btn-back:focus, a.btn.btn-link:hover, a.btn.btn-link:active, a.btn.btn-link:focus, a.btn.btn-back:hover, a.btn.btn-back:active, a.btn.btn-back:focus {
  background-color: #9695D3;
  color: #fff;
  text-decoration: none;
}
.btn.btn-link:after, .btn.btn-back:after, input.btn.btn-link:after, input.btn.btn-back:after, a.btn.btn-link:after, a.btn.btn-back:after {
  display: none;
}
.btn.btn-link-revert, input.btn.btn-link-revert, a.btn.btn-link-revert {
  background-color: #9695D3;
  color: #fff;
  transition: all 150ms;
  border: none;
  padding: 10px 50px 10px 50px;
  height: 60px;
  width: auto;
  text-indent: 0;
}
.btn.btn-link-revert:hover, .btn.btn-link-revert:active, .btn.btn-link-revert:focus, input.btn.btn-link-revert:hover, input.btn.btn-link-revert:active, input.btn.btn-link-revert:focus, a.btn.btn-link-revert:hover, a.btn.btn-link-revert:active, a.btn.btn-link-revert:focus {
  background-color: #E85652;
  color: #fff;
  text-decoration: none;
}
.btn.btn-link-revert:after, input.btn.btn-link-revert:after, a.btn.btn-link-revert:after {
  display: none;
}
.btn.btn-link-important, input.btn.btn-link-important, a.btn.btn-link-important {
  background-color: #E85652 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: none !important;
  padding: 10px 50px 10px 50px !important;
  height: 60px !important;
  width: auto !important;
  text-indent: 0 !important;
}
.btn.btn-link-important:hover, .btn.btn-link-important:active, .btn.btn-link-important:focus, input.btn.btn-link-important:hover, input.btn.btn-link-important:active, input.btn.btn-link-important:focus, a.btn.btn-link-important:hover, a.btn.btn-link-important:active, a.btn.btn-link-important:focus {
  background-color: #9695D3 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.btn.btn-link-important:after, input.btn.btn-link-important:after, a.btn.btn-link-important:after {
  display: none !important;
}
.btn.btn-top-header, input.btn.btn-top-header, a.btn.btn-top-header {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
  font-size: 13px;
  height: 25px;
  padding: 16px 28px;
  margin-right: 0;
  transition: all 150ms;
}
.btn.btn-top-header:hover, .btn.btn-top-header:active, .btn.btn-top-header:focus, input.btn.btn-top-header:hover, input.btn.btn-top-header:active, input.btn.btn-top-header:focus, a.btn.btn-top-header:hover, a.btn.btn-top-header:active, a.btn.btn-top-header:focus {
  background-color: #9695D3;
  border: 1px solid #9695D3;
  color: #fff;
}
.btn.btn-arrow-left-red, input.btn.btn-arrow-left-red, a.btn.btn-arrow-left-red {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #E85652;
  padding: 8px 30px 8px 60px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.btn.btn-arrow-left-red:before, input.btn.btn-arrow-left-red:before, a.btn.btn-arrow-left-red:before {
  content: "";
  left: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #E85652;
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
  z-index: 0;
  transition: all 300ms;
}
.btn.btn-arrow-left-red:after, input.btn.btn-arrow-left-red:after, a.btn.btn-arrow-left-red:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  left: 11px;
  top: 12px;
  filter: brightness(5);
  transform: rotate(180deg);
  transition: all 300ms;
}
.btn.btn-arrow-left-red:hover, .btn.btn-arrow-left-red:focus, input.btn.btn-arrow-left-red:hover, input.btn.btn-arrow-left-red:focus, a.btn.btn-arrow-left-red:hover, a.btn.btn-arrow-left-red:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border: 1px solid #9695D3;
}
.btn.btn-arrow-left-red:hover:before, .btn.btn-arrow-left-red:focus:before, input.btn.btn-arrow-left-red:hover:before, input.btn.btn-arrow-left-red:focus:before, a.btn.btn-arrow-left-red:hover:before, a.btn.btn-arrow-left-red:focus:before {
  background-color: #9695D3;
}
.btn.btn-arrow-left-red:hover:after, .btn.btn-arrow-left-red:focus:after, input.btn.btn-arrow-left-red:hover:after, input.btn.btn-arrow-left-red:focus:after, a.btn.btn-arrow-left-red:hover:after, a.btn.btn-arrow-left-red:focus:after {
  filter: brightness(5);
}
.btn.btn-arrow-right-purple, input.btn.btn-arrow-right-purple, a.btn.btn-arrow-right-purple {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #9695D3;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
@media (max-width: 575px) {
  .btn.btn-arrow-right-purple, input.btn.btn-arrow-right-purple, a.btn.btn-arrow-right-purple {
    padding: 8px 55px 8px 25px;
  }
}
.btn.btn-arrow-right-purple:before, input.btn.btn-arrow-right-purple:before, a.btn.btn-arrow-right-purple:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #9695D3;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.btn.btn-arrow-right-purple:after, input.btn.btn-arrow-right-purple:after, a.btn.btn-arrow-right-purple:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
}
.btn.btn-arrow-right-purple:hover, .btn.btn-arrow-right-purple:focus, input.btn.btn-arrow-right-purple:hover, input.btn.btn-arrow-right-purple:focus, a.btn.btn-arrow-right-purple:hover, a.btn.btn-arrow-right-purple:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
}
.btn.btn-arrow-right-purple:hover:before, .btn.btn-arrow-right-purple:focus:before, input.btn.btn-arrow-right-purple:hover:before, input.btn.btn-arrow-right-purple:focus:before, a.btn.btn-arrow-right-purple:hover:before, a.btn.btn-arrow-right-purple:focus:before {
  background-color: #EBEFFE;
}
.btn.btn-arrow-right-purple:hover:after, .btn.btn-arrow-right-purple:focus:after, input.btn.btn-arrow-right-purple:hover:after, input.btn.btn-arrow-right-purple:focus:after, a.btn.btn-arrow-right-purple:hover:after, a.btn.btn-arrow-right-purple:focus:after {
  filter: brightness(1.5) hue-rotate(250deg);
}
.btn.btn-arrow-right-purple-important, input.btn.btn-arrow-right-purple-important, a.btn.btn-arrow-right-purple-important {
  text-indent: 0 !important;
  width: auto !important;
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  border: 1px solid #9695D3 !important;
  padding: 8px 60px 8px 30px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: #000 !important;
  text-transform: inherit !important;
  font-weight: 500 !important;
  background-color: transparent !important;
}
@media (max-width: 575px) {
  .btn.btn-arrow-right-purple-important, input.btn.btn-arrow-right-purple-important, a.btn.btn-arrow-right-purple-important {
    padding: 8px 55px 8px 25px !important;
  }
}
.btn.btn-arrow-right-purple-important:before, input.btn.btn-arrow-right-purple-important:before, a.btn.btn-arrow-right-purple-important:before {
  content: "" !important;
  right: 0 !important;
  position: absolute !important;
  display: inline-block !important;
  width: 42px !important;
  height: 40px !important;
  background-color: #9695D3 !important;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9 !important;
  transition: all 300ms !important;
}
.btn.btn-arrow-right-purple-important:after, input.btn.btn-arrow-right-purple-important:after, a.btn.btn-arrow-right-purple-important:after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 20px !important;
  height: 15px !important;
  right: 11px !important;
  top: 12px !important;
  margin-top: 0 !important;
  z-index: 10 !important;
  filter: brightness(5) !important;
}
.btn.btn-arrow-right-purple-important:hover, .btn.btn-arrow-right-purple-important:focus, input.btn.btn-arrow-right-purple-important:hover, input.btn.btn-arrow-right-purple-important:focus, a.btn.btn-arrow-right-purple-important:hover, a.btn.btn-arrow-right-purple-important:focus {
  background-color: transparent !important;
  text-decoration: none !important;
  color: #000 !important;
}
.btn.btn-arrow-right-purple-important:hover:before, .btn.btn-arrow-right-purple-important:focus:before, input.btn.btn-arrow-right-purple-important:hover:before, input.btn.btn-arrow-right-purple-important:focus:before, a.btn.btn-arrow-right-purple-important:hover:before, a.btn.btn-arrow-right-purple-important:focus:before {
  background-color: #EBEFFE !important;
}
.btn.btn-arrow-right-purple-important:hover:after, .btn.btn-arrow-right-purple-important:focus:after, input.btn.btn-arrow-right-purple-important:hover:after, input.btn.btn-arrow-right-purple-important:focus:after, a.btn.btn-arrow-right-purple-important:hover:after, a.btn.btn-arrow-right-purple-important:focus:after {
  filter: brightness(1.5) hue-rotate(250deg) !important;
}
.btn.btn-arrow-right-purple-dark, input.btn.btn-arrow-right-purple-dark, a.btn.btn-arrow-right-purple-dark {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #9695D3;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #9695D3;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
@media (max-width: 575px) {
  .btn.btn-arrow-right-purple-dark, input.btn.btn-arrow-right-purple-dark, a.btn.btn-arrow-right-purple-dark {
    padding: 8px 55px 8px 25px;
  }
}
.btn.btn-arrow-right-purple-dark:before, input.btn.btn-arrow-right-purple-dark:before, a.btn.btn-arrow-right-purple-dark:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #EBEFFE;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.btn.btn-arrow-right-purple-dark:after, input.btn.btn-arrow-right-purple-dark:after, a.btn.btn-arrow-right-purple-dark:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(1.5) hue-rotate(65deg);
  transition: all 300ms;
}
.btn.btn-arrow-right-purple-dark:hover, .btn.btn-arrow-right-purple-dark:focus, input.btn.btn-arrow-right-purple-dark:hover, input.btn.btn-arrow-right-purple-dark:focus, a.btn.btn-arrow-right-purple-dark:hover, a.btn.btn-arrow-right-purple-dark:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #fff;
}
.btn.btn-arrow-right-purple-dark:hover:before, .btn.btn-arrow-right-purple-dark:focus:before, input.btn.btn-arrow-right-purple-dark:hover:before, input.btn.btn-arrow-right-purple-dark:focus:before, a.btn.btn-arrow-right-purple-dark:hover:before, a.btn.btn-arrow-right-purple-dark:focus:before {
  background-color: #9695D3;
}
.btn.btn-arrow-right-purple-dark:hover:after, .btn.btn-arrow-right-purple-dark:focus:after, input.btn.btn-arrow-right-purple-dark:hover:after, input.btn.btn-arrow-right-purple-dark:focus:after, a.btn.btn-arrow-right-purple-dark:hover:after, a.btn.btn-arrow-right-purple-dark:focus:after {
  filter: brightness(5);
}
.btn.btn-arrow-right-red, input.btn.btn-arrow-right-red, a.btn.btn-arrow-right-red {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #E85652;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.btn.btn-arrow-right-red:before, input.btn.btn-arrow-right-red:before, a.btn.btn-arrow-right-red:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #E85652;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.btn.btn-arrow-right-red:after, input.btn.btn-arrow-right-red:after, a.btn.btn-arrow-right-red:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
  transition: all 300ms;
}
.btn.btn-arrow-right-red:hover, .btn.btn-arrow-right-red:focus, input.btn.btn-arrow-right-red:hover, input.btn.btn-arrow-right-red:focus, a.btn.btn-arrow-right-red:hover, a.btn.btn-arrow-right-red:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border-color: #9695D3;
}
.btn.btn-arrow-right-red:hover:before, .btn.btn-arrow-right-red:focus:before, input.btn.btn-arrow-right-red:hover:before, input.btn.btn-arrow-right-red:focus:before, a.btn.btn-arrow-right-red:hover:before, a.btn.btn-arrow-right-red:focus:before {
  background-color: #9695D3;
}
.btn.btn-arrow, input.btn.btn-arrow, a.btn.btn-arrow {
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #3F2667;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.btn.btn-arrow:after, input.btn.btn-arrow:after, a.btn.btn-arrow:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-arrow.svg");
  background-repeat: no-repeat;
  right: -13px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 5px;
  height: 8px;
  animation-name: none;
}
.btn.btn-arrow:hover, .btn.btn-arrow:focus, input.btn.btn-arrow:hover, input.btn.btn-arrow:focus, a.btn.btn-arrow:hover, a.btn.btn-arrow:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #E85652;
}
.btn.btn-arrow:hover:after, .btn.btn-arrow:focus:after, input.btn.btn-arrow:hover:after, input.btn.btn-arrow:focus:after, a.btn.btn-arrow:hover:after, a.btn.btn-arrow:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.btn.btn-big-round-arrow, input.btn.btn-big-round-arrow, a.btn.btn-big-round-arrow {
  text-indent: -10000px;
  font-size: 0;
  width: 234px;
  height: 234px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  background-color: transparent;
}
.btn.btn-big-round-arrow:before, input.btn.btn-big-round-arrow:before, a.btn.btn-big-round-arrow:before {
  content: "";
  left: 0;
  position: relative;
  display: inline-block;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 42px;
  height: 40px;
  z-index: -1;
  filter: hue-rotate(0deg);
}
.btn.btn-big-round-arrow:after, input.btn.btn-big-round-arrow:after, a.btn.btn-big-round-arrow:after {
  content: "";
  left: 0;
  position: absolute;
  display: inline-block;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.png") no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 234px;
  height: 234px;
  z-index: -1;
  transition: all 300ms;
  -webkit-animation: spin 16s linear infinite;
  -moz-animation: spin 16s linear infinite;
  animation: spin 16s linear infinite;
}
.btn.btn-big-round-arrow:hover:before, input.btn.btn-big-round-arrow:hover:before, a.btn.btn-big-round-arrow:hover:before {
  filter: hue-rotate(256deg);
  transition: none;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.btn.btn-cta, input.btn.btn-cta, a.btn.btn-cta {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .btn.btn-cta, input.btn.btn-cta, a.btn.btn-cta {
    font-size: 30px;
    line-height: 35px;
  }
}
.btn.btn-cta, input.btn.btn-cta, a.btn.btn-cta {
  color: #3F2667 !important;
  text-decoration: none !important;
  margin: 20px 0 15px 0;
  padding-right: 60px;
  height: 75px;
  width: fit-content;
  position: relative;
  border-bottom: 1px solid #9695D3;
  border-radius: 0;
}
.btn.btn-cta:hover, input.btn.btn-cta:hover, a.btn.btn-cta:hover {
  text-decoration: none !important;
  color: #9695D3 !important;
}
.btn.btn-cta:before, input.btn.btn-cta:before, a.btn.btn-cta:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #E85652;
  border-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.btn.btn-cta:after, input.btn.btn-cta:after, a.btn.btn-cta:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 14px;
  right: 5px;
  bottom: 30px;
  z-index: 10;
  filter: brightness(5);
}
.btn.btn-cta:hover:before, .btn.btn-cta:focus:before, input.btn.btn-cta:hover:before, input.btn.btn-cta:focus:before, a.btn.btn-cta:hover:before, a.btn.btn-cta:focus:before {
  background-color: #9695D3;
}
.btn.btn-cta-2, input.btn.btn-cta-2, a.btn.btn-cta-2 {
  position: relative;
  text-align: right;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 180px;
  min-height: 150px;
  padding-top: 30px;
  background-color: transparent;
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
}
@media (max-width: 575px) {
  .btn.btn-cta-2, input.btn.btn-cta-2, a.btn.btn-cta-2 {
    font-size: 17px;
    line-height: 21px;
  }
}
.btn.btn-cta-2 strong, input.btn.btn-cta-2 strong, a.btn.btn-cta-2 strong {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .btn.btn-cta-2 strong, input.btn.btn-cta-2 strong, a.btn.btn-cta-2 strong {
    font-size: 30px;
    line-height: 35px;
  }
}
.btn.btn-cta-2 strong, input.btn.btn-cta-2 strong, a.btn.btn-cta-2 strong {
  line-height: 48px;
}
.btn.btn-cta-2 br, input.btn.btn-cta-2 br, a.btn.btn-cta-2 br {
  display: block !important;
}
.btn.btn-cta-2:before, input.btn.btn-cta-2:before, a.btn.btn-cta-2:before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 42px;
  height: 40px;
  right: 55px;
  top: 55px;
  z-index: -1;
}
.btn.btn-cta-2:after, input.btn.btn-cta-2:after, a.btn.btn-cta-2:after {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 168px;
  height: 168px;
  right: -5px;
  top: -10px;
  border: 2px solid #9695D3;
  border-radius: 100px;
  z-index: -1;
  transition: all 300ms;
}
.btn.btn-cta-2:hover, input.btn.btn-cta-2:hover, a.btn.btn-cta-2:hover {
  color: #9695D3;
}
.btn.btn-cta-2:hover:before, input.btn.btn-cta-2:hover:before, a.btn.btn-cta-2:hover:before {
  filter: hue-rotate(256deg);
  transition: none;
}
.btn.btn-cta-2:hover:after, input.btn.btn-cta-2:hover:after, a.btn.btn-cta-2:hover:after {
  border: 2px solid #E85652;
  transition: all 300ms;
}
.btn.btn-cta-back, input.btn.btn-cta-back, a.btn.btn-cta-back {
  position: relative;
  text-align: right;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 180px;
  min-height: 150px;
  padding-top: 30px;
  background-color: transparent;
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  color: #fff;
}
.btn.btn-cta-back strong, input.btn.btn-cta-back strong, a.btn.btn-cta-back strong {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .btn.btn-cta-back strong, input.btn.btn-cta-back strong, a.btn.btn-cta-back strong {
    font-size: 30px;
    line-height: 35px;
  }
}
.btn.btn-cta-back strong, input.btn.btn-cta-back strong, a.btn.btn-cta-back strong {
  line-height: 48px;
}
.btn.btn-cta-back br, input.btn.btn-cta-back br, a.btn.btn-cta-back br {
  display: block !important;
}
.btn.btn-cta-back:before, input.btn.btn-cta-back:before, a.btn.btn-cta-back:before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 42px;
  height: 40px;
  right: 55px;
  top: 55px;
  z-index: 2;
  transform: rotate(180deg);
}
.btn.btn-cta-back:after, input.btn.btn-cta-back:after, a.btn.btn-cta-back:after {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 168px;
  height: 168px;
  right: -5px;
  top: -10px;
  border: 2px solid #9695D3;
  border-radius: 100px;
  z-index: 2;
  transition: all 300ms;
}
.btn.btn-cta-back:hover, input.btn.btn-cta-back:hover, a.btn.btn-cta-back:hover {
  color: #9695D3;
}
.btn.btn-cta-back:hover:before, input.btn.btn-cta-back:hover:before, a.btn.btn-cta-back:hover:before {
  filter: hue-rotate(256deg);
  transition: none;
}
.btn.btn-cta-back:hover:after, input.btn.btn-cta-back:hover:after, a.btn.btn-cta-back:hover:after {
  border: 2px solid #E85652;
  transition: all 300ms;
}
.btn.btn-li-menu-about, input.btn.btn-li-menu-about, a.btn.btn-li-menu-about {
  pointer-events: none;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .btn.btn-li-menu-about, input.btn.btn-li-menu-about, a.btn.btn-li-menu-about {
    font-size: 20px;
    line-height: 25px;
  }
}
.btn.btn-li-menu-about, input.btn.btn-li-menu-about, a.btn.btn-li-menu-about {
  color: #E85652 !important;
  text-decoration: none !important;
  margin: -10px 0 15px 0;
  padding-right: 60px;
  text-align: left;
  height: 70px;
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  transition: all 300ms;
}
.btn.btn-li-menu-about:hover, .btn.btn-li-menu-about:focus, input.btn.btn-li-menu-about:hover, input.btn.btn-li-menu-about:focus, a.btn.btn-li-menu-about:hover, a.btn.btn-li-menu-about:focus {
  text-decoration: none !important;
  color: #9695D3 !important;
}
.btn.btn-li-menu-about, input.btn.btn-li-menu-about, a.btn.btn-li-menu-about {
  /*
  &:before {
  	content:"";
  	right: auto;
  	left: 0;
  	bottom: -50px;
  	position: absolute;
  	display: inline-block;
  	width: 35px;
  	height: 35px;
  	background-color: $secondary;
  	border-radius: 25px!important;
  	z-index: 9;
  	transition: all 300ms;
  }

  &:after {
  	content:"";
  	display: block;
  	position: absolute;
  	background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  	background-repeat: no-repeat;
  	background-size: contain;
  	width: 20px;
  	height: 14px;
  	right: auto;
  	left: 9px;
  	bottom: -40px;
  	z-index: 10;
  	filter: brightness(5);
  }
  */
  /*
  &:hover, &:focus {
  	&:before {
  		background-color: $third;
  	}
  	&:after {

  	}
  }
  */
}
.btn.btn-li-menu-industrie, input.btn.btn-li-menu-industrie, a.btn.btn-li-menu-industrie {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .btn.btn-li-menu-industrie, input.btn.btn-li-menu-industrie, a.btn.btn-li-menu-industrie {
    font-size: 20px;
    line-height: 25px;
  }
}
.btn.btn-li-menu-industrie, input.btn.btn-li-menu-industrie, a.btn.btn-li-menu-industrie {
  flex-direction: column;
  font-weight: 700;
  color: #3F2667 !important;
  text-decoration: none !important;
  margin: 0 0 15px 0;
  padding-bottom: 15px;
  text-align: center;
  height: auto;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #9695D3;
  border-radius: 0;
  transition: all 300ms;
}
.btn.btn-li-menu-industrie img, input.btn.btn-li-menu-industrie img, a.btn.btn-li-menu-industrie img {
  margin-bottom: 10px;
}
.btn.btn-li-menu-industrie:hover, input.btn.btn-li-menu-industrie:hover, a.btn.btn-li-menu-industrie:hover {
  text-decoration: none !important;
  color: #9695D3 !important;
  opacity: 0.7;
  transition: all 300ms;
}
.btn.btn-li-menu-industrie:before, input.btn.btn-li-menu-industrie:before, a.btn.btn-li-menu-industrie:before {
  content: "";
  right: auto;
  left: auto;
  bottom: -55px;
  position: absolute;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #E85652;
  border-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.btn.btn-li-menu-industrie:after, input.btn.btn-li-menu-industrie:after, a.btn.btn-li-menu-industrie:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 14px;
  right: auto;
  left: auto;
  bottom: -45px;
  margin-left: 4px;
  z-index: 10;
  filter: brightness(5);
}
.btn.btn-li-menu-industrie:hover:before, .btn.btn-li-menu-industrie:focus:before, input.btn.btn-li-menu-industrie:hover:before, input.btn.btn-li-menu-industrie:focus:before, a.btn.btn-li-menu-industrie:hover:before, a.btn.btn-li-menu-industrie:focus:before {
  background-color: #9695D3;
}
.btn.btn-li-menu-accueil, input.btn.btn-li-menu-accueil, a.btn.btn-li-menu-accueil {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .btn.btn-li-menu-accueil, input.btn.btn-li-menu-accueil, a.btn.btn-li-menu-accueil {
    font-size: 30px;
    line-height: 35px;
  }
}
.btn.btn-li-menu-accueil, input.btn.btn-li-menu-accueil, a.btn.btn-li-menu-accueil {
  color: #fff !important;
  text-decoration: none !important;
  margin: 0;
  padding: 20px 170px 20px 0;
  height: auto;
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
  border-radius: 0;
  white-space: normal;
}
@media (max-width: 1199px) {
  .btn.btn-li-menu-accueil, input.btn.btn-li-menu-accueil, a.btn.btn-li-menu-accueil {
    padding: 20px 90px 20px 0;
  }
}
@media (max-width: 767px) {
  .btn.btn-li-menu-accueil, input.btn.btn-li-menu-accueil, a.btn.btn-li-menu-accueil {
    padding: 20px 70px 20px 0;
  }
}
.btn.btn-li-menu-accueil img, input.btn.btn-li-menu-accueil img, a.btn.btn-li-menu-accueil img {
  margin-top: -60px;
  margin-right: 20px;
}
.btn.btn-li-menu-accueil:hover, input.btn.btn-li-menu-accueil:hover, a.btn.btn-li-menu-accueil:hover {
  text-decoration: none !important;
}
.btn.btn-li-menu-accueil:before, input.btn.btn-li-menu-accueil:before, a.btn.btn-li-menu-accueil:before {
  content: "";
  right: 0;
  top: calc(50% - 10px);
  position: absolute;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #E85652;
  border-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.btn.btn-li-menu-accueil:after, input.btn.btn-li-menu-accueil:after, a.btn.btn-li-menu-accueil:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 14px;
  top: 50%;
  right: 5px;
  bottom: 0;
  z-index: 10;
  filter: brightness(5);
}
.btn.btn-li-menu-accueil:hover, .btn.btn-li-menu-accueil:focus, input.btn.btn-li-menu-accueil:hover, input.btn.btn-li-menu-accueil:focus, a.btn.btn-li-menu-accueil:hover, a.btn.btn-li-menu-accueil:focus {
  color: #9695D3 !important;
}
.btn.btn-li-menu-accueil:hover:before, .btn.btn-li-menu-accueil:focus:before, input.btn.btn-li-menu-accueil:hover:before, input.btn.btn-li-menu-accueil:focus:before, a.btn.btn-li-menu-accueil:hover:before, a.btn.btn-li-menu-accueil:focus:before {
  background-color: #9695D3;
}
.btn {
  margin-right: 30px;
}
.btn + .btn, .btn:only-of-type {
  margin-right: 0;
}

.back-to-list {
  background-color: #E85652;
  color: #fff;
  transition: all 150ms;
  border: none;
  padding: 10px 50px 10px 50px;
  height: 60px;
  width: auto;
  text-indent: 0;
}
.back-to-list:hover, .back-to-list:active, .back-to-list:focus {
  background-color: #9695D3;
  color: #fff;
  text-decoration: none;
}
.back-to-list:after {
  display: none;
}

/*###########################  FORMULAIRE  ###########################*/
/* INPUTS */
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #E85652;
  -webkit-box-shadow: 0 0 0 rgb(5, 5, 5) 0px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* CONFIRMATION */
/* added H1 - never need to use it */
.formbuilder-confirmation-title {
  display: none;
}

/* Formulaire - Style Global */
form.form-horizontal,
form.search-form {
  /*Fix col-md-12 full width qui affiche a moitié - width égale*/
}
form.form-horizontal .col-sm-24 .col-md-12,
form.search-form .col-sm-24 .col-md-12 {
  width: 100%;
  /*
  @include min-md {
  	padding: 0 15px 0px 0!important;
  }
  */
}
form.form-horizontal .form-group,
form.search-form .form-group {
  margin-left: 0px;
  margin-right: 0px;
}
form.form-horizontal .form-group .col-md-12, form.form-horizontal .form-group .col-sm-17, form.form-horizontal .form-group .col-sm-24,
form.search-form .form-group .col-md-12,
form.search-form .form-group .col-sm-17,
form.search-form .form-group .col-sm-24 {
  padding: 0;
}
form.form-horizontal .form-group .col-md-12,
form.search-form .form-group .col-md-12 {
  width: 100%;
}
form.form-horizontal .form-group label.control-label,
form.search-form .form-group label.control-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-top: 10px;
  margin-bottom: 5px;
  padding-left: 0;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Required Red Star Styles */
}
form.form-horizontal .form-group label.control-label--required,
form.search-form .form-group label.control-label--required {
  padding-left: 5px;
  color: #3F2667;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Input Global Style */
}
form.form-horizontal .form-group input:not(.btn), form.form-horizontal .form-group select, form.form-horizontal .form-group textarea,
form.search-form .form-group input:not(.btn),
form.search-form .form-group select,
form.search-form .form-group textarea {
  background-color: #fff !important;
  color: #3F2667 !important;
  border: none;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /* Direct input overrides */
}
form.form-horizontal .form-group select, form.form-horizontal .form-group input.form-control, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select,
form.search-form .form-group input.form-control,
form.search-form .form-group .chosen-choices {
  border: none !important;
  padding: 15px !important;
  height: 60px !important;
  border-radius: 10px;
  font-size: 17px !important;
}
form.form-horizontal .form-group textarea,
form.search-form .form-group textarea {
  border: none !important;
  padding: 15px !important;
  border-radius: 10px !important;
}
form.form-horizontal .form-group select,
form.search-form .form-group select {
  /*background-image: none!important;*/
  position: relative;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/select-arrow-icon.svg") #fff right 18px center no-repeat !important;
  /*
  &:after {
  	content: "";
  	background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/select-arrow-icon.svg") #fff no-repeat!important;
  	background-position: center center;
  	width: 26px;
  	height: 16px;
  	position: absolute;
  	right: 0;
  	top: 0;
  }
  	*/
}
form.form-horizontal .form-group .input-file,
form.search-form .form-group .input-file {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /*Category Dropdown Styles*/
}
form.form-horizontal .form-group select.moteur-recherche, form.form-horizontal .form-group select#category_id, form.form-horizontal .form-group .chosen-choices,
form.search-form .form-group select.moteur-recherche,
form.search-form .form-group select#category_id,
form.search-form .form-group .chosen-choices {
  width: 100%;
  max-width: 400px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(https://cdn.ca.yapla.com/images/icon-membogo-arrow-combo@2x.png) no-repeat right 5px center !important;
  background-size: 13px !important;
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /*Keywords Dropdown Styles*/
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices, form.form-horizontal .form-group .chosen-container-multi .chosen-choices,
form.search-form .form-group .form-element-keywords .chosen-choices,
form.search-form .form-group .chosen-container-multi .chosen-choices {
  height: auto !important;
  padding-right: 60px !important;
  position: relative;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/select-arrow-icon.svg") #fff right 18px center no-repeat !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field,
form.search-form .form-group .form-element-keywords .chosen-choices .search-field,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-field {
  height: 30px !important;
  line-height: 35px !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-field input, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-field input,
form.search-form .form-group .form-element-keywords .chosen-choices .search-field input,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-field input {
  height: 20px;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice {
  display: block;
  width: 100%;
  background-color: transparent !important;
  color: #3F2667 !important;
  font-size: 17px;
  padding-left: 15px !important;
  border: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice span, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice span,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice span,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice span {
  vertical-align: -webkit-baseline-middle;
  margin: 0px 5px 0px 0 !important;
}
form.form-horizontal .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close, form.form-horizontal .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .form-element-keywords .chosen-choices .search-choice .search-choice-close,
form.search-form .form-group .chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  right: auto;
  left: 0;
  top: 9px !important;
  filter: invert(1);
}
form.form-horizontal .form-group,
form.search-form .form-group {
  /*Error Text Style*/
}
form.form-horizontal .form-group ul.error,
form.search-form .form-group ul.error {
  margin: 0;
}
form.form-horizontal .form-group ul.error li.text-danger,
form.search-form .form-group ul.error li.text-danger {
  padding: 3px 10px 0px 10px;
  color: #000;
  background-color: #ffcece;
  font-size: 12px;
}
form.form-horizontal,
form.search-form {
  /*Static Text in forms*/
}
form.form-horizontal p.form-control-static,
form.search-form p.form-control-static {
  padding-top: 0;
  margin-top: 0;
}
form.form-horizontal .crm-footer-frame,
form.search-form .crm-footer-frame {
  margin-top: 30px;
}
form.form-horizontal .crm-footer-frame button,
form.search-form .crm-footer-frame button {
  background-color: #E85652 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: none !important;
  padding: 10px 50px 10px 50px !important;
  height: 60px !important;
  width: auto !important;
  text-indent: 0 !important;
}
form.form-horizontal .crm-footer-frame button:hover, form.form-horizontal .crm-footer-frame button:active, form.form-horizontal .crm-footer-frame button:focus,
form.search-form .crm-footer-frame button:hover,
form.search-form .crm-footer-frame button:active,
form.search-form .crm-footer-frame button:focus {
  background-color: #9695D3 !important;
  color: #fff !important;
  text-decoration: none !important;
}
form.form-horizontal .crm-footer-frame button:after,
form.search-form .crm-footer-frame button:after {
  display: none !important;
}

/* Miscellaneous forms */
#ui-form .ui-section__content {
  background-color: rgba(232, 86, 82, 0.1);
}
#ui-form .ui-section__content h2 {
  color: #E85652;
}

.overrideformtitle .zone-crm h1 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .overrideformtitle .zone-crm h1 {
    font-size: 38px;
    line-height: 42px;
  }
}
.overrideformtitle .zone-crm h1 {
  text-align: center;
}

#form-formbuilder .help-block {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 5px;
  color: #3F2667;
  font-size: 14px;
  line-height: 24px;
}

/* Formulaire Inscription membre/evenement*/
/*Styles Global*/
.zone-member .form-withProgress__wrapper .section {
  margin-bottom: 50px;
}
.zone-member #login_content_box {
  background-color: transparent;
}
@media (max-width: 767px) {
  .zone-member #login_content_box {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.zone-member #member_adhesion_form {
  background-color: #F7F7F7;
}
.zone-member .section-footer-navigation button.previous-button {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #E85652;
  padding: 8px 30px 8px 60px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.zone-member .section-footer-navigation button.previous-button:before {
  content: "";
  left: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #E85652;
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
  z-index: 0;
  transition: all 300ms;
}
.zone-member .section-footer-navigation button.previous-button:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  left: 11px;
  top: 12px;
  filter: brightness(5);
  transform: rotate(180deg);
  transition: all 300ms;
}
.zone-member .section-footer-navigation button.previous-button:hover, .zone-member .section-footer-navigation button.previous-button:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border: 1px solid #9695D3;
}
.zone-member .section-footer-navigation button.previous-button:hover:before, .zone-member .section-footer-navigation button.previous-button:focus:before {
  background-color: #9695D3;
}
.zone-member .section-footer-navigation button.previous-button:hover:after, .zone-member .section-footer-navigation button.previous-button:focus:after {
  filter: brightness(5);
}
.zone-member .section-footer-navigation a.pull-left {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
  font-size: 13px;
  height: 25px;
  padding: 16px 28px;
  margin-right: 0;
  transition: all 150ms;
}
.zone-member .section-footer-navigation a.pull-left:hover, .zone-member .section-footer-navigation a.pull-left:active, .zone-member .section-footer-navigation a.pull-left:focus {
  background-color: #9695D3;
  border: 1px solid #9695D3;
  color: #fff;
}
.zone-member .section-footer-navigation a.pull-left {
  height: 25px !important;
  padding: 16px 28px !important;
}
.zone-member .section-footer-navigation a.pull-right {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
  font-size: 13px;
  height: 25px;
  padding: 16px 28px;
  margin-right: 0;
  transition: all 150ms;
}
.zone-member .section-footer-navigation a.pull-right:hover, .zone-member .section-footer-navigation a.pull-right:active, .zone-member .section-footer-navigation a.pull-right:focus {
  background-color: #9695D3;
  border: 1px solid #9695D3;
  color: #fff;
}
.zone-member .section-footer-navigation a.pull-right {
  height: 25px !important;
  padding: 16px 28px !important;
}

.zone-event .form-withProgress__wrapper {
  /*background-color: #F7F7F7*/
}

.zone-event h1.form-withProgress__title-main,
.zone-member h1.form-withProgress__title-main {
  /*font-size: 56px;*/
}
@media (max-width: 991px) {
  .zone-event h1.form-withProgress__title-main,
  .zone-member h1.form-withProgress__title-main {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .zone-event h1.form-withProgress__title-main,
  .zone-member h1.form-withProgress__title-main {
    font-size: 31px;
    line-height: 35px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  padding: 50px;
}
@media (max-width: 991px) {
  .zone-event .form-withProgress__wrapper,
  .zone-member .form-withProgress__wrapper {
    padding: 32px 16px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Formulaire*/
}
.zone-event .form-withProgress__wrapper h2.section-title,
.zone-member .form-withProgress__wrapper h2.section-title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
.zone-event .form-withProgress__wrapper .form-group input, .zone-event .form-withProgress__wrapper .form-group select,
.zone-member .form-withProgress__wrapper .form-group input,
.zone-member .form-withProgress__wrapper .form-group select {
  background-color: #f7f7f7;
}
.zone-event .form-withProgress__wrapper fieldset h2,
.zone-member .form-withProgress__wrapper fieldset h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-event .form-withProgress__wrapper fieldset legend,
.zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 21px;
  line-height: 26px;
  font-weight: 400;
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Récapitulatif*/
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
.zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
  color: #3F2667;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__sub-total h4,
  .zone-member .form-withProgress__wrapper .form-withProgress__sub-total h4 {
    font-size: 14px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Total box*/
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-event .form-withProgress__wrapper #fieldset-total,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total,
.zone-member .form-withProgress__wrapper #fieldset-total {
  padding: 15px 0 30px 0;
  margin-bottom: 0 !important;
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
  text-transform: initial;
  font-size: 26px;
  color: #fff !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-title,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-title {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
.zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
  text-align: right;
  font-size: 26px;
  color: #fff !important;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-event .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-section_payment_grand_total .total-amount-section .total-amount-price,
  .zone-member .form-withProgress__wrapper #fieldset-total .total-amount-section .total-amount-price {
    font-size: 20px;
  }
}
.zone-event .form-withProgress__wrapper,
.zone-member .form-withProgress__wrapper {
  /*Bottom Nav*/
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer {
  display: flex;
  justify-content: space-between;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #E85652;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:before,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:before,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #E85652;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:after,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:after,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
  transition: all 300ms;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border-color: #9695D3;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover:before, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus:before,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover:before,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus:before,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover:before,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:hover:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#singlebutton:focus:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:hover:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#singlebutton:focus:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:hover:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer button#external_payment:focus:before {
  background-color: #9695D3;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
  /*
  color: #6CA4DC;
  margin-right: 32px;
  text-decoration: underline;
  &:hover {
      background: transparent;
      color: $third;
      border: none;
  }
      */
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
  .zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
    margin-right: 0;
    justify-content: center;
  }
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #9695D3;
  padding: 8px 30px 8px 60px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:before {
  content: "";
  left: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #9695D3;
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
  z-index: 0;
  transition: all 300ms;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  left: 11px;
  top: 12px;
  filter: brightness(5);
  transform: rotate(180deg);
  transition: all 300ms;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border: 1px solid #E85652;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover:before, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus:before {
  background-color: #E85652;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover:after, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:hover:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#step_previous:focus:after {
  filter: brightness(5);
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #E85652;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #E85652;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:after,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
  transition: all 300ms;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border-color: #9695D3;
}
.zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover:before, .zone-event .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:hover:before,
.zone-member .form-withProgress__wrapper .form-withProgress__navigation-footer a#prev_reg_step:focus:before {
  background-color: #9695D3;
}
.zone-event .membership-delegate-manage .header .membership-delegate-name,
.zone-member .membership-delegate-manage .header .membership-delegate-name {
  font-weight: 400;
}
.zone-event .membership-delegate-manage .header .membership-delegate-quantity,
.zone-member .membership-delegate-manage .header .membership-delegate-quantity {
  color: #9695D3;
}
.zone-event .membership-delegate-manage .footer .btn,
.zone-member .membership-delegate-manage .footer .btn {
  text-indent: 0 !important;
  width: auto !important;
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  border: 1px solid #9695D3 !important;
  padding: 8px 60px 8px 30px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: #000 !important;
  text-transform: inherit !important;
  font-weight: 500 !important;
  background-color: transparent !important;
}
@media (max-width: 575px) {
  .zone-event .membership-delegate-manage .footer .btn,
  .zone-member .membership-delegate-manage .footer .btn {
    padding: 8px 55px 8px 25px !important;
  }
}
.zone-event .membership-delegate-manage .footer .btn:before,
.zone-member .membership-delegate-manage .footer .btn:before {
  content: "" !important;
  right: 0 !important;
  position: absolute !important;
  display: inline-block !important;
  width: 42px !important;
  height: 40px !important;
  background-color: #9695D3 !important;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9 !important;
  transition: all 300ms !important;
}
.zone-event .membership-delegate-manage .footer .btn:after,
.zone-member .membership-delegate-manage .footer .btn:after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 20px !important;
  height: 15px !important;
  right: 11px !important;
  top: 12px !important;
  margin-top: 0 !important;
  z-index: 10 !important;
  filter: brightness(5) !important;
}
.zone-event .membership-delegate-manage .footer .btn:hover, .zone-event .membership-delegate-manage .footer .btn:focus,
.zone-member .membership-delegate-manage .footer .btn:hover,
.zone-member .membership-delegate-manage .footer .btn:focus {
  background-color: transparent !important;
  text-decoration: none !important;
  color: #000 !important;
}
.zone-event .membership-delegate-manage .footer .btn:hover:before, .zone-event .membership-delegate-manage .footer .btn:focus:before,
.zone-member .membership-delegate-manage .footer .btn:hover:before,
.zone-member .membership-delegate-manage .footer .btn:focus:before {
  background-color: #EBEFFE !important;
}
.zone-event .membership-delegate-manage .footer .btn:hover:after, .zone-event .membership-delegate-manage .footer .btn:focus:after,
.zone-member .membership-delegate-manage .footer .btn:hover:after,
.zone-member .membership-delegate-manage .footer .btn:focus:after {
  filter: brightness(1.5) hue-rotate(250deg);
}

.modal .modal-dialog .modal-content .modal-footer button {
  text-indent: 0 !important;
  width: auto !important;
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  border: 1px solid #9695D3 !important;
  padding: 8px 60px 8px 30px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: #000 !important;
  text-transform: inherit !important;
  font-weight: 500 !important;
  background-color: transparent !important;
}
@media (max-width: 575px) {
  .modal .modal-dialog .modal-content .modal-footer button {
    padding: 8px 55px 8px 25px !important;
  }
}
.modal .modal-dialog .modal-content .modal-footer button:before {
  content: "" !important;
  right: 0 !important;
  position: absolute !important;
  display: inline-block !important;
  width: 42px !important;
  height: 40px !important;
  background-color: #9695D3 !important;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9 !important;
  transition: all 300ms !important;
}
.modal .modal-dialog .modal-content .modal-footer button:after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 20px !important;
  height: 15px !important;
  right: 11px !important;
  top: 12px !important;
  margin-top: 0 !important;
  z-index: 10 !important;
  filter: brightness(5) !important;
}
.modal .modal-dialog .modal-content .modal-footer button:hover, .modal .modal-dialog .modal-content .modal-footer button:focus {
  background-color: transparent !important;
  text-decoration: none !important;
  color: #000 !important;
}
.modal .modal-dialog .modal-content .modal-footer button:hover:before, .modal .modal-dialog .modal-content .modal-footer button:focus:before {
  background-color: #EBEFFE !important;
}
.modal .modal-dialog .modal-content .modal-footer button:hover:after, .modal .modal-dialog .modal-content .modal-footer button:focus:after {
  filter: brightness(1.5) hue-rotate(250deg);
}

/*ETAPES INSCRIPTION NOUVEAU MEMBRE*/
/*Étapes 1 - Type d'adhesion*/
.step-adhesion .zone-member {
  padding-top: 90px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
  margin-top: 0px;
  padding: 115px 95px;
  background-color: #F7F7F7;
}
@media (max-width: 991px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0 32px;
  }
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form {
    padding: 0;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list h2 {
  font-family: "Nunito", sans-serif;
  padding-bottom: 16px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item {
  border: 0;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .price-membership-badge {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .radio label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.step-adhesion .zone-member .form-withProgress__wrapper #member_adhesion_form .wrapper_membership_list ul.list-group li.list-group-item .adh-date {
  font-size: 14px;
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
  background: #E85652;
  border-bottom: none;
  display: flex;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom {
    padding: 5px;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .badge {
  order: 1;
  flex: 1;
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group {
  position: relative;
  order: 0;
  flex: 0 0 90%;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group {
    flex: 0 0 70%;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group label {
  font-weight: 600;
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group select {
  max-width: 50%;
  background-color: #fff !important;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group select {
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block {
    position: absolute;
    bottom: 0;
    left: 55%;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button {
  background: transparent;
  border: none;
  padding-left: 0;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button {
    font-size: 12px;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button .yapla-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #6CA4DC;
  color: #6CA4DC;
  background: #fff;
  padding: 5px;
  font-size: 16px;
  border-radius: 100%;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom .form-group .help-block button .yapla-icon {
    margin-right: 0;
  }
}
.step-adhesion .zone-member .form-withProgress__wrapper #fieldset-membership_list ul.list-group li.list-group-item .delegate_number_custom:first-child {
  margin-top: 20px;
}

/*Étapes 2 - information de l'adherent*/
.step-register .zone-member {
  padding-top: 90px;
}
.step-register .zone-member .form-withProgress__wrapper .form-horizontal .section .row .form-group input.form-control {
  background-color: #f7f7f7 !important;
}
/*Étapes 3 - Résumé Informations*/
.step-resume .zone-member .form-withProgress__wrapper h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .step-resume .zone-member .form-withProgress__wrapper h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.step-resume .zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion {
  padding-left: 0px;
  padding-right: 0px;
}
.step-resume .zone-member .form-withProgress__wrapper #fieldset-adh_sumup .form-element-priceAdhesion span {
  color: #3F2667;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .step-resume .zone-member .form-withProgress__wrapper fieldset legend {
    font-size: 30px;
    line-height: 35px;
  }
}
.step-resume .zone-member .form-withProgress__wrapper fieldset legend {
  color: #3F2667 !important;
  padding-top: 32px !important;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
.step-resume .zone-member .form-withProgress__wrapper fieldset.row {
  margin-left: 0;
  margin-right: 0;
}
/*Étapes 4 - Paiements*/
.step-payment .zone-member h2 {
  padding-top: 56px;
}
@media (max-width: 991px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 50px 64px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-member .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-member .form-withProgress__wrapper input.form-control {
  background-color: #fff !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-paymentmethod h2 {
  padding-top: 56px;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-member .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 5 - Confirmation*/
#registration-member {
  margin: 0 auto;
}
#registration-member .form-withProgress__wrapper {
  background-color: transparent;
}
#registration-member .member-step-confirm {
  text-align: center;
}
#registration-member .member-step-confirm .member-profile-container {
  padding: 32px 0;
}
#registration-member .member-step-confirm .form-withProgress__navigation-footer p {
  display: none;
}
#registration-member .form-withProgress__navigation-footer {
  align-items: center;
}
#registration-member .form-withProgress__navigation-footer a#prev_reg_step {
  text-indent: 0 !important;
  width: auto !important;
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  border: 1px solid #E85652 !important;
  padding: 8px 30px 8px 60px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: #000 !important;
  text-transform: inherit !important;
  font-weight: 500 !important;
  background-color: transparent !important;
}
#registration-member .form-withProgress__navigation-footer a#prev_reg_step:before {
  content: "" !important;
  left: 0 !important;
  position: absolute !important;
  display: inline-block !important;
  width: 42px !important;
  height: 40px !important;
  background-color: #E85652 !important;
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  z-index: 0 !important;
  transition: all 300ms !important;
}
#registration-member .form-withProgress__navigation-footer a#prev_reg_step:after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 20px !important;
  height: 15px !important;
  left: 11px !important;
  top: 12px !important;
  filter: brightness(5) !important;
  transform: rotate(180deg) !important;
  transition: all 300ms !important;
}
#registration-member .form-withProgress__navigation-footer a#prev_reg_step:hover, #registration-member .form-withProgress__navigation-footer a#prev_reg_step:focus {
  background-color: transparent !important;
  text-decoration: none !important;
  color: #000 !important;
  border: 1px solid #9695D3 !important;
}
#registration-member .form-withProgress__navigation-footer a#prev_reg_step:hover:before, #registration-member .form-withProgress__navigation-footer a#prev_reg_step:focus:before {
  background-color: #9695D3 !important;
}
#registration-member .form-withProgress__navigation-footer a#prev_reg_step:hover:after, #registration-member .form-withProgress__navigation-footer a#prev_reg_step:focus:after {
  filter: brightness(5) !important;
}

/*ETAPES INSCRIPTION EVENEMENT*/
/*Étapes 1 - Inscription*/
.zone-event h1.form-withProgress__title-main {
  padding-top: 20px;
  padding-bottom: 20px;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc {
  /*padding: 32px 0;*/
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition {
  background-color: transparent;
  border: 0;
  padding: 0;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition .registration-event-bloc-title h5 {
  opacity: 1;
  animation: none;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition .registration-event-bloc-title p {
  opacity: 1;
  animation: none;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add {
  background-color: #E85652 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: none !important;
  padding: 10px 50px 10px 50px !important;
  height: 60px !important;
  width: auto !important;
  text-indent: 0 !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:hover, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:active, .zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:focus {
  background-color: #9695D3 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add:after {
  display: none !important;
}
.zone-event .form-withProgress__wrapper .registration-event-bloc .form-edition a.btn-link.btn-add.btn i.fa {
  display: none !important;
}
.zone-event .form-withProgress__wrapper #event-authentication-form h2 {
  font-size: 28px;
  line-height: 35px;
}
@media (max-width: 767px) {
  .zone-event .form-withProgress__wrapper #event-authentication-form h2 {
    font-size: 21px;
    line-height: 28px;
  }
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication p {
  padding-bottom: 32px;
}
.zone-event .form-withProgress__wrapper #event-authentication-form .event-authentication .form-group {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 16px;
}
.zone-event .event-login h1 {
  text-align: center;
  margin-bottom: 64px;
  font-size: 40px;
}
@media (max-width: 767px) {
  .zone-event .event-login h1 {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .zone-event .event-subscription {
    padding: 0;
  }
}

/*Étapes 2 - Résumé Informations*/
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper {
    padding: 32px;
  }
}
@media (max-width: 991px) {
  .step-resume .zone-event .form-withProgress__wrapper {
    padding: 0px;
  }
}
.step-resume .zone-event .form-withProgress__wrapper h2.section-title {
  margin-bottom: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset .col-sm-12 {
  padding: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset .col-sm-24 {
  padding: 0;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset legend {
  padding-top: 32px;
}
.step-resume .zone-event .form-withProgress__wrapper fieldset span {
  padding-left: 0;
}
/*Étapes 3 - Paiements*/
.step-payment .zone-event .form-withProgress__wrapper h2 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
  text-transform: initial;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  padding-bottom: 16px;
}
@media (max-width: 991px) {
  .step-payment .zone-event .form-withProgress__wrapper {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .step-payment .zone-event .form-withProgress__wrapper {
    padding: 0;
  }
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-card_injectedinfo .form-element-card_owner_in div.col-md-24 input.form-control {
  border: 1px solid #d6d6d6 !important;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps h6 {
  width: 80%;
}
.step-payment .zone-event .form-withProgress__wrapper #fieldset-section_payment_summary .form-withProgress__tps span {
  width: fit-content;
}
/*Étapes 4 - Confirmation*/
.zone-event .event-payment .form-withProgress__wrapper .payment-form-cms #fieldset-payment_billing .row .form-group .form-control {
  background: #fff !important;
}

/*###########################  TABLEAU  ###########################*/
/* basically le bottin de yapla */
/*###########################  TAB BOTTIN DES MEMBRES  ###########################*/
.nav-tabs {
  margin-top: 60px;
}
.nav-tabs li {
  padding: 0px 20px;
}
.nav-tabs li:first-child {
  padding-left: 0;
}
.nav-tabs li a {
  border: none;
  border-bottom: 5px solid transparent;
  color: rgba(232, 86, 82, 0.5);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  letter-spacing: 2px;
  padding: 10px 0px;
}
.nav-tabs li a:hover, .nav-tabs li a:focus {
  background-color: transparent;
  color: rgba(232, 86, 82, 0.4);
  border-color: transparent;
}
.nav-tabs li.active:hover a, .nav-tabs li.active a {
  border-bottom: 5px solid #3F2667;
  color: #E85652;
}

.paginationControl {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: flex-start;
  grid-column: span 3;
}
@media (max-width: 991px) {
  .paginationControl {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .paginationControl {
    grid-column: span 1;
  }
}
.paginationControl a {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 55px;
  margin: 5px;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  color: #3F2667;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginationControl a:hover, .paginationControl a:focus {
  text-decoration: none;
  color: #9695D3;
}
.paginationControl a.active {
  background-color: transparent;
  color: #E85652;
}
.paginationControl a.active:hover, .paginationControl a.active:focus {
  color: #fff;
}

/*###########################  ACCORDÉONS  ###########################*/
/* Note that this style apply for both native yapla accordions only */
.panel-default {
  background-color: #fff;
  border-radius: 10px !important;
  margin-bottom: 20px !important;
}
.panel-default:has(.collapsed) {
  background-color: #f5f5f5;
}
.panel-default > .panel-heading {
  border-bottom: none;
}

.panel-news-accordion {
  /* first accordion container */
  border-bottom: none !important;
}
.panel-news-accordion:after {
  content: "";
  width: 100%;
  display: block;
}
.panel-news-accordion .panel-heading {
  /* title box */
  background-color: transparent;
  border-bottom: none !important;
  padding: 0;
  position: relative;
}
.panel-news-accordion .panel-heading .panel-title {
  /* title */
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title {
    font-size: 17px;
    line-height: 21px;
  }
}
.panel-news-accordion .panel-heading .panel-title {
  font-weight: 600;
  margin-bottom: 0;
  padding-right: 140px;
}
@media (max-width: 767px) {
  .panel-news-accordion .panel-heading .panel-title {
    padding-right: 50px;
  }
}
.panel-news-accordion .panel-heading .panel-title a.news-accordion-header {
  padding: 20px 20px 15px 35px;
  color: #3F2667;
  text-decoration: none;
}
.panel-news-accordion .panel-heading .panel-title a.news-accordion-header:after {
  content: "−";
  display: block;
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 60px;
  font-weight: 900;
  color: #E85652;
  transition: transform 150ms;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}
.panel-news-accordion .panel-heading .panel-title a.news-accordion-header.collapsed:after {
  content: "+";
}
.panel-news-accordion .panel-heading p {
  display: none;
}
.panel-news-accordion .panel-heading:hover {
  cursor: pointer;
}
.panel-news-accordion .panel-collapse.in {
  border-bottom: 0;
}
.panel-news-accordion .panel-body {
  /* content */
  padding: 25px 140px 30px 35px;
  margin-top: -10px;
}
@media (max-width: 991px) {
  .panel-news-accordion .panel-body {
    padding: 25px 25px 30px 35px;
  }
}
.panel-news-accordion .panel-body h4 {
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body p {
  color: #000;
  margin-bottom: 15px;
}
.panel-news-accordion .panel-body ul li {
  color: #000 !important;
}
.panel-news-accordion .panel-body ul li::marker {
  color: #3F2667 !important;
}
.panel-news-accordion .panel-body .btn-link {
  margin-bottom: 40px;
}

/* Accordion with tables to make accordions in WYSIWYG easy for client */
/* Just create table with table button and add class accordeon in advanced settings */
/* JAVASCRIPT FOR THIS TO WORK

$("table.accordeon tbody tr:first-child").click(function () {
	var target = $(this);
	var open =  target.closest(".accordeon").hasClass('active');

	$(".accordeon").removeClass("active");

	if (!open) {
		var scrollTo = target.offset().top;
		target.closest(".accordeon").addClass("active");
		$('body, html').animate({scrollTop: scrollTo-80+'px'}, 800);
	}
});

*/
table.accordeon {
  display: block;
  width: 100% !important;
  border: 0;
  margin-bottom: 10px;
}
table.accordeon tbody, table.accordeon tr, table.accordeon td {
  border: 0;
}
table.accordeon tbody {
  display: block;
}
table.accordeon tbody tr {
  /* Title/accordeon box */
}
table.accordeon tbody tr:first-child {
  cursor: pointer;
  display: block;
  padding: 15px;
  position: relative;
}
table.accordeon tbody tr:first-child td {
  display: block;
}
table.accordeon tbody tr:first-child td .btn-secondary {
  transition: transform 150ms;
  margin-top: -20px;
}
table.accordeon tbody tr:first-child td h3 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
table.accordeon tbody tr:first-child td h3 {
  margin-top: -10px;
  margin-bottom: 0;
}
table.accordeon tbody tr:first-child td p {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
table.accordeon tbody tr:first-child td p {
  margin-top: -2px;
  margin-bottom: 0;
}
table.accordeon tbody tr:nth-child(2) {
  display: block;
  margin-top: 5px;
}
table.accordeon tbody tr:nth-child(2) td {
  display: block;
  max-height: 0;
  overflow: hidden;
}
table.accordeon tbody tr:nth-child(2) td p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
table.accordeon tbody tr:nth-child(3) {
  display: block;
  padding: 20px 15px 15px 15px;
  position: relative;
}
table.accordeon tbody tr:nth-child(3):after {
  content: "";
  width: 180px;
  height: 1px;
  background-color: #3F2667;
  position: absolute;
  display: block;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
table.accordeon tbody tr:nth-child(3) td {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}
table.accordeon {
  /* active and opened content */
}
table.accordeon.active tbody tr:first-child .btn-secondary {
  transform: rotate(90deg);
}
table.accordeon.active tbody tr:nth-child(2) {
  padding: 15px;
}
table.accordeon.active tbody tr:nth-child(2) td {
  max-height: 5000px;
  transition: max-height 1.5s;
}

.modal-backdrop {
  z-index: 10000;
}

.modal {
  z-index: 10001 !important;
}
.modal .modal-dialog .modal-content {
  background-color: #fff;
}
.modal .modal-dialog .modal-content .modal-header {
  margin-top: 8px;
  padding: 16px 31px;
  flex-direction: column;
}
.modal .modal-dialog .modal-content .modal-header button.close {
  color: #3F2667;
}
.modal .modal-dialog .modal-content .modal-header button.close:hover {
  color: #E85652;
}
.modal .modal-dialog .modal-content .modal-body {
  /* Input Global Style */
}
.modal .modal-dialog .modal-content .modal-body input:not(.btn), .modal .modal-dialog .modal-content .modal-body select, .modal .modal-dialog .modal-content .modal-body textarea {
  background-color: #EFEFEF !important;
  color: #3F2667 !important;
  border: none;
}
.nav-pills {
  background-image: none;
}

.nav-progress {
  overflow: hidden;
  margin: 30px 0 40px 0;
}
.nav-progress li.disabled {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.nav-progress li.disabled a,
.nav-progress li.disabled a:hover,
.nav-progress li.disabled a:focus {
  font-family: "Nunito", sans-serif;
  color: #3F2667;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: none;
  text-align: center;
  position: absolute;
  float: none;
  margin-top: 100px;
  padding-top: 6px;
  width: 100%;
}
.nav-progress li.disabled a:before,
.nav-progress li.disabled a:hover:before,
.nav-progress li.disabled a:focus:before {
  content: "";
  position: absolute;
  top: -35px;
  left: calc(50% + 24px);
  right: 0;
  width: calc(100% - 40px);
  display: block;
  margin: auto;
  height: 1px;
  background-color: #CCCBF3 !important;
}
@media (max-width: 767px) {
  .nav-progress li.disabled a:before,
  .nav-progress li.disabled a:hover:before,
  .nav-progress li.disabled a:focus:before {
    display: none;
  }
}
.nav-progress li.disabled:before {
  float: none;
  width: 100%;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  border: none;
  color: white;
  background-color: #3F2667;
  padding: 5px;
  width: 48px;
  height: 48px;
}
.nav-progress li.disabled:after {
  display: none;
}
.nav-progress li.disabled.active {
  /*opacity: 1;*/
}
.nav-progress li.disabled.active a {
  color: #3F2667;
}
.nav-progress li.disabled.active:before {
  color: #fff;
  background-color: #E85652;
}
.nav-progress li.disabled.active:after {
  display: none;
}
.nav-progress li.disabled.active ~ li a {
  color: #3F2667;
}
.nav-progress li.disabled.active ~ li a:before {
  background-color: #CCCBF3 !important;
}
.nav-progress li.disabled.active ~ li:before {
  color: #fff;
  background-color: #CCCBF3;
}
.nav-progress li.disabled.active ~ li:after {
  display: none;
}
@media (max-width: 767px) {
  .nav-progress li.disabled:not(.active) {
    margin-left: -1000000px;
    position: absolute;
  }
}
.nav-progress li.disabled:not(.active) a:before {
  background-color: #3F2667 !important;
}
.nav-progress li:last-child a:before {
  display: none;
}
.nav-progress li:last-child a:hover:before {
  display: none;
}

.cookie-modal h1, .cookie-modal h2, .cookie-modal h3, .cookie-modal h4, .cookie-modal h5, .cookie-modal h6, .cookie-modal p, .cookie-modal span, .cookie-modal ul, .cookie-modal li, .cookie-modal button {
  opacity: 1 !important;
}
@media (max-width: 991px) {
  .cookie-modal .cm-modal {
    padding: 15px 15px 35px 15px !important;
    margin: 0px 20px;
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .cookie-modal .cm-modal {
    padding: 15px 30px 35px 30px !important;
  }
}
.cookie-modal .cm-modal .cm-services {
  padding-left: 0 !important;
  margin-top: 20px !important;
}
@media (max-width: 575px) {
  .cookie-modal .cm-modal .cm-footer-buttons {
    flex-direction: column-reverse !important;
    justify-content: center !important;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn {
    min-width: auto !important;
    width: fit-content;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline {
  background-color: transparent !important;
  color: #2F2F2F !important;
  border: 2px solid #E85652 !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-decline:hover {
  color: #5d5d5d !important;
  border: 0 !important;
  border: 2px solid #E85652 !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:active, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
    white-space: normal !important;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
  text-indent: 0 !important;
  width: auto !important;
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  border: 1px solid #9695D3 !important;
  padding: 8px 60px 8px 30px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: #000 !important;
  text-transform: inherit !important;
  font-weight: 500 !important;
  background-color: transparent !important;
}
@media (max-width: 575px) {
  .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success {
    padding: 8px 55px 8px 25px !important;
  }
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:before {
  content: "" !important;
  right: 0 !important;
  position: absolute !important;
  display: inline-block !important;
  width: 42px !important;
  height: 40px !important;
  background-color: #9695D3 !important;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9 !important;
  transition: all 300ms !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 20px !important;
  height: 15px !important;
  right: 11px !important;
  top: 12px !important;
  margin-top: 0 !important;
  z-index: 10 !important;
  filter: brightness(5) !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:hover, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:focus {
  background-color: transparent !important;
  text-decoration: none !important;
  color: #000 !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:hover:before, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:focus:before {
  background-color: #EBEFFE !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:hover:after, .cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success:focus:after {
  filter: brightness(1.5) hue-rotate(250deg);
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success.cm-btn-info {
  border: 2px solid #2F2F2F !important;
  background-color: transparent !important;
  color: #2F2F2F !important;
}
.cookie-modal .cm-modal .cm-footer-buttons .cm-btn-success.cm-btn-info:hover {
  text-decoration: none !important;
  border: 2px solid #5d5d5d !important;
  color: #5d5d5d !important;
}

.cookie-consent-modal {
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.25);
  background: #EFEFEF;
  border-radius: 0;
  padding: 60px;
  width: 100%;
  max-width: 680px;
}
@media (max-width: 767px) {
  .cookie-consent-modal {
    margin-right: 70px !important;
  }
}
.cookie-consent-modal h1, .cookie-consent-modal h2, .cookie-consent-modal h3, .cookie-consent-modal h4, .cookie-consent-modal h5, .cookie-consent-modal h6, .cookie-consent-modal p, .cookie-consent-modal span, .cookie-consent-modal ul, .cookie-consent-modal li, .cookie-consent-modal button {
  opacity: 1 !important;
}
.cookie-consent-modal P.consent-title {
  font-size: 30px !important;
  line-height: 32px !important;
  font-weight: 600 !important;
  color: #3F2667 !important;
}
.cookie-consent-modal p.consent-description {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .cookie-consent-modal p.consent-description {
    font-size: 20px;
    line-height: 25px;
  }
}
.cookie-consent-modal p.consent-description {
  color: #3F2667 !important;
}
.cookie-consent-modal p.consent-description a {
  text-decoration: underline;
}
.cookie-consent-modal p.consent-description a:hover {
  text-decoration: none;
}
.cookie-consent-modal .actions-container {
  justify-content: space-between !important;
}
.cookie-consent-modal .actions-container .btn-link {
  /*@include btn-arrow-left-purple;*/
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.cookie-consent-modal .actions-container .btn-link:hover, .cookie-consent-modal .actions-container .btn-link:active, .cookie-consent-modal .actions-container .btn-link:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-consent-modal .actions-container .btn-link {
    white-space: normal !important;
  }
}
.cookie-consent-modal .actions-container .btn-link {
  background-color: transparent;
  color: #3F2667;
  font-size: 13px;
  height: 25px;
  padding: 16px 28px;
  margin-right: 0;
  transition: all 150ms;
  text-indent: 0;
  width: auto;
  border: 1px solid #9695D3;
}
.cookie-consent-modal .actions-container .btn-link:hover, .cookie-consent-modal .actions-container .btn-link:active, .cookie-consent-modal .actions-container .btn-link:focus {
  background-color: transparent;
  border: 1px solid #E85652;
  color: #3F2667;
}
.cookie-consent-modal .actions-container .btn-link:after {
  display: none;
}
.cookie-consent-modal .actions-container .btn-primary {
  /*@include btn-arrow-right-red;*/
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.cookie-consent-modal .actions-container .btn-primary:hover, .cookie-consent-modal .actions-container .btn-primary:active, .cookie-consent-modal .actions-container .btn-primary:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .cookie-consent-modal .actions-container .btn-primary {
    white-space: normal !important;
  }
}
.cookie-consent-modal .actions-container .btn-primary {
  background-color: #9695D3;
  border: 1px solid #9695D3;
  color: #fff !important;
  font-size: 13px;
  height: 25px;
  padding: 16px 28px;
  margin-right: 0;
  transition: all 150ms;
  text-indent: 0;
  width: auto;
}
.cookie-consent-modal .actions-container .btn-primary:hover, .cookie-consent-modal .actions-container .btn-primary:active, .cookie-consent-modal .actions-container .btn-primary:focus {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
}
.cookie-consent-modal .actions-container .btn-primary:after {
  display: none;
}

.line-header {
  padding: 0;
  height: 90px;
  /*background-color: $clrGrey;*/
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
@media (max-width: 991px) {
  .line-header {
    height: 130px;
  }
}
@media (max-width: 991px) {
  .line-header {
    height: 130px;
  }
}
@media (max-width: 575px) {
  .line-header {
    height: 65px;
  }
}
.line-header:before {
  content: "";
  display: block;
  position: absolute;
  width: 60vw;
  height: 104px;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/background-menu_pas-de-coins-2x.png") no-repeat;
  background-position: right bottom;
  background-size: 60vw 104px;
  border-bottom-left-radius: 100px;
  left: auto;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
}
@media (max-width: 991px) {
  .line-header:before {
    width: 50vw;
    background-size: 50vw 104px;
  }
}
@media (max-width: 767px) {
  .line-header:before {
    height: 84px;
  }
}
.line-header.home:before {
  display: none;
}
.line-header.opened .container .row-fluid div.zone-header .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom .menu-hamburger {
  opacity: 0;
}
.line-header .container .row-fluid {
  display: flex;
  justify-content: flex-start;
  position: relative;
  bottom: 6px;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .line-header .container .row-fluid {
    margin-top: 6px;
  }
}
.line-header .container .row-fluid > div {
  align-items: center;
  padding: 0;
}
.line-header .container .row-fluid > div:nth-child(1) {
  width: 300px;
}
@media (max-width: 991px) {
  .line-header .container .row-fluid > div:nth-child(1) {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.line-header .container .row-fluid > div:nth-child(1) .content {
  display: flex;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .line-header .container .row-fluid > div:nth-child(1) .content {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .line-header .container .row-fluid > div:nth-child(1) .content img {
    width: 140px !important;
  }
}
.line-header .container .row-fluid > div:nth-child(1) .content img {
  opacity: 0;
  animation-name: logo;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
}
.line-header .container .row-fluid > div:nth-child(1) .content .menu-hamburger {
  overflow: hidden;
  width: 48px;
  height: 40px;
  margin-left: auto;
  margin-right: 0;
  margin-top: -5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.5s;
}
@media (min-width: 992px) {
  .line-header .container .row-fluid > div:nth-child(1) .content .menu-hamburger {
    display: none;
  }
}
.line-header .container .row-fluid > div:nth-child(1) .content .menu-hamburger span {
  width: 38px;
  height: 4px;
  background-color: #fff;
  color: transparent;
  display: block;
  line-height: 0;
  text-indent: -9999px;
  margin-top: 7px;
  transition: 0.5s;
  border-radius: 5px;
}
.line-header .container .row-fluid > div:nth-child(1) .content .menu-hamburger span:nth-child(2) {
  width: 48px;
}
.line-header .container .row-fluid > div:nth-child(1) .content .menu-hamburger:hover, .line-header .container .row-fluid > div:nth-child(1) .content .menu-hamburger:focus {
  cursor: pointer;
}
.line-header .container .row-fluid > div:nth-child(1) .content .menu-hamburger:hover span, .line-header .container .row-fluid > div:nth-child(1) .content .menu-hamburger:focus span {
  background-color: #E85652;
}
.line-header .container .row-fluid > div:nth-child(2) {
  width: calc(100% - 300px);
}
@media (max-width: 991px) {
  .line-header .container .row-fluid > div:nth-child(2) {
    display: none;
  }
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  opacity: 0;
  animation-name: logo;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom {
  order: 1;
  margin-right: 10px;
  text-align: right;
  color: #fff;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a:nth-child(1) {
  padding-right: 20px;
  position: relative;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a:nth-child(1):after {
  content: "•";
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: -2px;
  right: 4px;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn {
  margin-left: 20px;
  margin-right: 10px;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a:not(.btn) {
  font-size: 13px;
  color: #fff;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a:not(.btn):hover {
  color: #E85652;
  text-decoration: none;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header {
    margin-right: 0;
    padding: 10px;
  }
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header {
  margin-left: 10px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert {
    padding: 10px;
    margin-left: 5px;
  }
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert:hover, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert:active, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert {
    white-space: normal !important;
  }
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert {
  background-color: #9695D3;
  border: 1px solid #9695D3;
  color: #fff !important;
  font-size: 13px;
  height: 25px;
  padding: 16px 28px;
  margin-right: 0;
  transition: all 150ms;
  text-indent: 0;
  width: auto;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert:hover, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert:active, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert:focus {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header-revert:after {
  display: none;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
  order: 2;
  margin-left: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: none !important;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login {
    display: none;
  }
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .member-greeting {
  font-size: 16px !important;
  color: #3b4180 !important;
  font-weight: 400 !important;
  text-transform: none !important;
  line-height: 15px !important;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a {
  font-size: 16px;
  color: #3F2667;
  font-weight: 400;
  vertical-align: text-bottom;
  line-height: 15px;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a:hover {
  color: #3F2667;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn {
  border: 0;
  padding: 0;
  height: auto;
  text-transform: inherit;
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:hover, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:active, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn {
    white-space: normal !important;
  }
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn {
  background-color: #9695D3;
  border: 1px solid #9695D3;
  color: #fff !important;
  font-size: 13px;
  height: 25px;
  padding: 16px 28px;
  margin-right: 0;
  transition: all 150ms;
  text-indent: 0;
  width: auto;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:hover, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:active, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:focus {
  background-color: #E85652;
  border: 1px solid #E85652;
  color: #fff;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:after {
  display: none;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    white-space: normal !important;
  }
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register {
  background-color: #9695D3;
  transition: all 150ms;
  text-indent: -10000px;
  width: 21px;
  height: 21px;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  margin-left: 4px;
  filter: brightness(5);
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
  background-color: #E85652;
}
.line-header .container .row-fluid > div:nth-child(2) .rf-mod-header-wrapper .mod-header-container .mod-header.mod-header-wrapper .header-ext-login .separator {
  height: 4px;
}
.line-header .container .row-fluid > div {
  /*
  &.zone-header {
  	width:100%;
  	a {
  		text-decoration: none;
  		font-size: 14px;
  		line-height: 16px;
  		font-weight: 400;
  		&:hover {
  			color: $secondary;
  		}
  	}
  }
  &.zone-header {
  	padding: 0;
  	.rf-mod-header-wrapper {

  		.mod-header-container {
  			.mod-header.mod-header-wrapper {
  				display: flex;
  				justify-content: flex-end;
  				align-items: flex-start;
  				padding: 5px 0 0 0;

  				.header-ext-custom {
  					order: 3;
  					margin-right: 10px;
  					.menu-hamburger {
  						overflow: hidden;
  						width:40px;
  						height:40px;
  						margin-left: auto;
  						margin-right:0;
  						margin-top:0;
  						display: flex;
  						align-items: flex-end;
  						justify-content: center;
  						flex-direction: column;
  						opacity:1;
  						transition: opacity .5s;
  						@include min-md {
  							display:none;
  						}
  						span {
  							width:17px;
  							height:3px;
  							background-color: $primary;
  							color: transparent;
  							display:block;
  							line-height:0;
  							text-indent: -9999px; 
  							margin-top: 5px;
  							transition: .5s;
  							border-radius: 5px;
  							&:nth-child(2) {
  								width:24px;
  							}
  						}
  						&:hover, &:focus {
  							cursor: pointer;
  							span {
  								background-color: $primary;
  							}
  						}
  					}
  				}

  				.header-ext-login {
  					order: 2;
  					margin-left: 0;
  					padding-bottom: 0;
  					min-height: 44px;
  					display: flex;
  					align-items: center;
  					justify-content: center;
  					text-transform: none!important;
  					flex-direction: row-reverse;
  					@include max-sm {
  						display: none;
  					}
  					.member-greeting {
  						font-size: 16px!important;
  						color: #3b4180!important;
  						font-weight: 400!important;
  						text-transform: none!important;
  						line-height: 15px!important;
  					}
  					a {
  						font-size: 16px;
  						color: $primary;
  						font-weight: 400;
  						vertical-align: text-bottom;
  						line-height: 15px;
  						&:hover {
  							color: $primary;
  						}
  						&.member-login.btn {
  							border: 0;
  							padding: 0;
  							height: auto;
  							text-transform: inherit;
  						}
  						&.member-register {
  							@include btn;
  							@include btn-primary;
  						}
  					}
  					.separator {
  						height: 4px;
  					}
  				}
  			}
  		}
  	}
  }
  */
}

body.member--isConnected .header-ext-login {
  flex-direction: row !important;
}

.line-banner {
  padding-top: 30px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .line-banner {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .line-banner {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .line-banner {
    padding-top: 65px;
  }
}
.line-banner.small .mod-banner__img {
  height: 250px;
}
.line-banner.pastille .mod-banner__img {
  overflow: visible;
}
.line-banner.pastille .mod-banner__img .mod-banner__content p img {
  position: absolute;
  right: 70px;
  bottom: -140px;
}
.line-banner .mod-banner__img {
  border-radius: 5px;
}
@media (max-width: 991px) {
  .line-banner .mod-banner__img {
    height: 100%;
    min-height: 260px;
  }
}
@media (max-width: 767px) {
  .line-banner .mod-banner__img {
    height: 100%;
    height: 300px !important;
  }
}
.line-banner .mod-banner__img:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(63, 38, 103, 0.6) 57%, rgba(63, 38, 103, 0) 100%);
  position: absolute;
}
.line-banner .mod-banner__img .mod-banner__content {
  padding: 20px 70px;
  z-index: 10;
}
@media (max-width: 991px) {
  .line-banner .mod-banner__img .mod-banner__content {
    padding: 20px 35px;
  }
}
.line-banner .mod-banner__img .mod-banner__content h1 {
  color: #fff;
}

.line-banner-split {
  padding-top: 30px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .line-banner-split {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .line-banner-split {
    padding-top: 0;
  }
}
@media (max-width: 575px) {
  .line-banner-split {
    padding-top: 65px;
  }
}
.line-banner-split.bigTitle .container > .row > div:nth-child(2) .content h1 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-banner-split.bigTitle .container > .row > div:nth-child(2) .content h1 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .line-banner-split.bigTitle .container > .row > div:nth-child(2) .content h1 {
    font-size: 38px;
    line-height: 42px;
  }
}
.line-banner-split.bigTitle .container > .row > div:nth-child(2) .content h1 {
  color: #3F2667;
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .line-banner-split.bgPurple .container > .row > div:nth-child(2) {
    background-color: #3F2667;
  }
}
@media (max-width: 991px) {
  .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content {
    background-color: #3F2667;
  }
}
.line-banner-split.bgPurple .container > .row > div:nth-child(2) .content h1, .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content h2, .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content h3, .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content h4, .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content h5, .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content h6, .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content p, .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content ul, .line-banner-split.bgPurple .container > .row > div:nth-child(2) .content li {
  color: #fff;
}
.line-banner-split .container {
  border-radius: 5px;
}
.line-banner-split .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-banner-split .container > .row {
    flex-direction: column;
  }
}
.line-banner-split .container > .row > div:nth-child(1) {
  margin: 0 -1px;
}
@media (max-width: 991px) {
  .line-banner-split .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .line-banner-split .container > .row > div:nth-child(1) {
    padding-right: 0;
  }
}
.line-banner-split .container > .row > div:nth-child(1) .mod-banner__img {
  border-radius: 8px 0 0 8px;
}
@media (max-width: 991px) {
  .line-banner-split .container > .row > div:nth-child(1) .mod-banner__img {
    border-radius: 8px 8px 0 0;
    height: 260px;
    background-position: top;
  }
}
.line-banner-split .container > .row > div:nth-child(2) {
  margin: 0 -1px;
}
@media (min-width: 992px) {
  .line-banner-split .container > .row > div:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .line-banner-split .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-banner-split .container > .row > div:nth-child(2) {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .line-banner-split .container > .row > div:nth-child(2) {
    background-color: #fff;
    border-radius: 0 8px 8px 0;
  }
}
.line-banner-split .container > .row > div:nth-child(2) .content {
  padding: 20px 80px 20px 80px;
  width: 100%;
}
@media (max-width: 991px) {
  .line-banner-split .container > .row > div:nth-child(2) .content {
    background-color: #fff;
    padding: 40px 80px 20px 80px;
    border-radius: 0 0 8px 8px;
  }
}
@media (max-width: 991px) {
  .line-banner-split .container > .row > div:nth-child(2) .content {
    padding: 40px 30px 20px 30px;
  }
}
.line-banner-split .container > .row > div:nth-child(2) .content h1 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-banner-split .container > .row > div:nth-child(2) .content h1 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-banner-split .container > .row > div:nth-child(2) .content h1 {
  color: #3F2667;
  margin-bottom: 5px;
}
.line-banner-split .container > .row > div:nth-child(2) .content h2 {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-banner-split .container > .row > div:nth-child(2) .content h2 {
  color: #3F2667;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .line-banner-split .container > .row > div:nth-child(2) .content h2 br {
    display: none !important;
  }
}

.line-infolettre {
  padding-top: 80px;
  padding-bottom: 15px;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .line-infolettre {
    padding-top: 65px;
    padding-bottom: 50px;
  }
}
.line-infolettre .container > .row > div:nth-child(1) {
  width: 42%;
}
@media (max-width: 1199px) {
  .line-infolettre .container > .row > div:nth-child(1) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(1) .content {
    text-align: center;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .line-infolettre .container > .row > div:nth-child(1) .content h3, .line-infolettre .container > .row > div:nth-child(1) .content p, .line-infolettre .container > .row > div:nth-child(1) .content .btn {
    text-align: center;
  }
}
.line-infolettre .container > .row > div:nth-child(1) .content h3 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(1) .content h3 {
    font-size: 35px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(1) .content h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-infolettre .container > .row > div:nth-child(2) {
  width: 50%;
}
@media (max-width: 1199px) {
  .line-infolettre .container > .row > div:nth-child(2) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-infolettre .container > .row > div:nth-child(2) .content {
    text-align: center;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .line-infolettre .container > .row > div:nth-child(2) .content h3, .line-infolettre .container > .row > div:nth-child(2) .content p, .line-infolettre .container > .row > div:nth-child(2) .content .btn {
    text-align: center !important;
  }
}
.line-infolettre .container > .row > div:nth-child(2) .content p {
  font-size: 17px;
  line-height: 21px;
}
.line-infolettre .container > .row > div:nth-child(2) .content a {
  margin-top: 30px;
}

.line-footer {
  padding-top: 20px;
  padding-bottom: 70px;
  background-color: #f7f7f7;
}
.line-footer .container {
  position: relative;
}
.line-footer .container:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #9695D3;
}
.line-footer .container > .row {
  margin-top: 65px;
}
.line-footer .container > .row > div:nth-child(1) {
  width: 40%;
}
@media (max-width: 1199px) {
  .line-footer .container > .row > div:nth-child(1) {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(1) .content {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(1) .content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(1) .content p:nth-child(1) img {
    width: 163px !important;
  }
}
.line-footer .container > .row > div:nth-child(1) .content p:nth-child(2) {
  margin-top: 45px;
  margin-bottom: 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(1) .content p:nth-child(2) {
    margin-top: 15px;
    margin-bottom: 10px;
    justify-content: center;
  }
}
.line-footer .container > .row > div:nth-child(1) .content p:nth-child(2) a {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 26px;
  height: 40px;
  margin-right: 20px;
  transition: all 250ms;
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(1) .content p:nth-child(2) a {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.line-footer .container > .row > div:nth-child(1) .content p:nth-child(2) a:hover {
  opacity: 0.7;
}
.line-footer .container > .row > div:nth-child(1) .content p:nth-child(3) a {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-footer .container > .row > div:nth-child(2) {
  width: 20%;
}
@media (max-width: 1199px) {
  .line-footer .container > .row > div:nth-child(2) {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-footer .container > .row > div:nth-child(2) .content {
  border-right: 1px solid #9695D3;
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(2) .content {
    text-align: center;
    border-right: 0;
  }
}
.line-footer .container > .row > div:nth-child(2) .content ul {
  list-style: none;
  margin-left: 0;
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(2) .content ul {
    padding-left: 0 !important;
  }
}
.line-footer .container > .row > div:nth-child(2) .content ul li a {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-decoration: none !important;
}
.line-footer .container > .row > div:nth-child(2) .content ul li a:hover {
  color: #9695D3 !important;
}
.line-footer .container > .row > div:nth-child(3) {
  width: 40%;
}
@media (max-width: 1199px) {
  .line-footer .container > .row > div:nth-child(3) {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(3) {
    width: 100%;
  }
}
.line-footer .container > .row > div:nth-child(3) .content {
  margin-left: 30px;
}
@media (max-width: 991px) {
  .line-footer .container > .row > div:nth-child(3) .content {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .line-footer .container > .row > div:nth-child(3) .content {
    text-align: center;
  }
}
.line-footer .container > .row > div:nth-child(3) .content img {
  margin-bottom: 25px;
}

.footer-copyright {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #f7f7f7;
}
.footer-copyright .content p {
  font-size: 14px;
  line-height: 18px;
}

@media (min-width: 992px) {
  .line-menu-container {
    min-height: 60px;
    margin-top: 16px;
  }
  .line-menu-container.menu-white ul.nav-stacked li.active > a {
    color: #E85652 !important;
  }
  .line-menu-container.menu-white ul.nav-stacked > li > a {
    color: #fff !important;
  }
  .line-menu-container.menu-white ul.nav-stacked > li > a:hover, .line-menu-container.menu-white ul.nav-stacked > li > a:focus, .line-menu-container.menu-white ul.nav-stacked > li > a:active {
    color: #E85652 !important;
  }
  .line-menu-container .container {
    position: absolute;
    /*width: 100%;*/
    /*top: 100px;*/
    left: 0;
    right: 0;
  }
  .line-menu-container .container > .row > div.zone-html {
    display: none;
  }
  .line-menu-container .container > .row > div.zone-menu {
    width: 100%;
  }
  .line-menu-container .container > .row > div ul.nav-stacked {
    float: right;
    margin: 0;
  }
  .line-menu-container .container > .row > div ul.nav-stacked li {
    margin-top: 0;
  }
  .line-menu-container .container > .row > div ul.nav-stacked li.active > a {
    color: #E85652 !important;
  }
  .line-menu-container .container > .row > div ul.nav-stacked li a.child-link {
    flex: 1;
  }
  .line-menu-container .container > .row > div ul.nav-stacked li a {
    font-size: 18px;
    color: #3F2667;
    transition: all 0.3s;
  }
  .line-menu-container .container > .row > div ul.nav-stacked li a:hover, .line-menu-container .container > .row > div ul.nav-stacked li a:focus, .line-menu-container .container > .row > div ul.nav-stacked li a:active {
    background-color: transparent;
    color: #E85652;
    transition: all 0.3s;
  }
  .line-menu-container .container > .row > div ul.nav-stacked li ul.dropdown-menu {
    /*transform: translate(-70%, -50px);*/
    animation-name: submenu;
    animation-fill-mode: forwards;
    animation-duration: 0.2s;
    animation-delay: 0s;
    border-radius: 0px 0px 9px 9px;
    background-color: #F5F5F5;
    border: 0;
    box-shadow: none;
    /*
    max-width: 300px;
    */
  }
  .line-menu-container .container > .row > div ul.nav-stacked li:hover, .line-menu-container .container > .row > div ul.nav-stacked li:focus, .line-menu-container .container > .row > div ul.nav-stacked li:active {
    background-color: transparent;
    color: #E85652;
    transition: all 0.3s;
  }
  .line-menu-container .container > .row > div ul.nav-stacked li {
    /*
    &[rel=data-menu-81416] {
        a {
            position:relative;
            line-height: 0;
            font-size: 0;
            color: transparent;
            padding-right: 16px;
            transition: all .3s;
            &:before {
                content:"";
                display: block;
                background:url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/icon-home-red.svg");
                width:16px;
                height: 16px;
                right: 0;
                top: 0;
                filter: saturate(0);
            }
            &:after {
                content:"";
                position:absolute;
                background-color: $clrGrey;
                width:1px;
                height: 20px;
                right: 0;
                top: 8px;
            }
            &:hover {
                &:before {
                    filter: saturate(1);
                }
            }
        }
    }
    */
  }
  .line-menu-container .container > .row > div ul.nav-stacked > li {
    position: relative;
    z-index: 9999;
    float: left;
  }
  .line-menu-container .container > .row > div ul.nav-stacked > li:last-child > a {
    padding-right: 0 !important;
  }
  .line-menu-container .container > .row > div ul.nav-stacked > li > a {
    padding: 12px 15px 22px 15px;
  }
  .line-menu-container .container > .row > div ul.nav-stacked > li > a.dropdown-toggle {
    display: none;
  }
  .line-menu-container .container > .row > div ul.nav-stacked > li:last-child > ul.dropdown-menu-level-2 {
    left: auto;
    right: -5px;
  }
  .line-menu-container .container > .row > div ul.nav-stacked > li > ul.dropdown-menu-level-2 > li > a {
    font-size: 16px;
    line-height: 24px;
    color: #3F2667;
  }
  .line-menu-container .container > .row > div ul.nav-stacked > li > ul.dropdown-menu-level-2 > li > a.active, .line-menu-container .container > .row > div ul.nav-stacked > li > ul.dropdown-menu-level-2 > li > a:hover, .line-menu-container .container > .row > div ul.nav-stacked > li > ul.dropdown-menu-level-2 > li > a:focus {
    color: #E85652;
    text-decoration: none;
  }
}
@media (max-width: 991px) {
  .line-menu-container {
    padding-top: 50px;
    z-index: 10000;
    position: fixed;
    width: 420px;
    height: calc(100% - 50px);
    border-bottom-left-radius: 100px;
    top: 0;
    bottom: 0;
    background-color: #EFEFEF;
    right: -110vw;
    transition: 1s right cubic-bezier(0, 0.77, 0.175, 1);
    /*
    -webkit-box-shadow: 5px 5px 205px 5px $third;
    box-shadow: 5px 5px 205px 5px $third;
    */
    background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/background-menu_pas-de-coins-2x.png) no-repeat;
    background-position: left bottom;
    background-size: cover;
  }
  .line-menu-container.opened {
    right: 0;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .line-menu-container .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .line-menu-container .container > .row {
    display: flex;
    flex-direction: column;
    margin: 0 5px 0 5px;
  }
  .line-menu-container .container > .row > div {
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
  .line-menu-container .container > .row > div:nth-child(1) {
    padding-bottom: 20px;
  }
  .line-menu-container .container > .row > div:nth-child(1) .menu-hamburger {
    overflow: hidden;
    width: 40px;
    height: 40px;
    margin-left: auto;
    margin-right: 20px;
    margin-top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
  }
  .line-menu-container .container > .row > div:nth-child(1) .menu-hamburger span {
    width: 32px;
    height: 2px;
    background-color: #E85652;
    color: transparent;
    display: block;
    line-height: 0;
    text-indent: -9999px;
    text-align: left;
    margin-top: -1px;
    transition: 0.5s;
    border-radius: 5px;
  }
  .line-menu-container .container > .row > div:nth-child(1) .menu-hamburger span:nth-child(1) {
    transform: rotate(45deg);
  }
  .line-menu-container .container > .row > div:nth-child(1) .menu-hamburger span:nth-child(2) {
    transform: rotate(315deg);
  }
  .line-menu-container .container > .row > div:nth-child(1) .menu-hamburger:hover, .line-menu-container .container > .row > div:nth-child(1) .menu-hamburger:focus {
    cursor: pointer;
  }
  .line-menu-container .container > .row > div:nth-child(1) .menu-hamburger:hover span, .line-menu-container .container > .row > div:nth-child(1) .menu-hamburger:focus span {
    background-color: #fff;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar {
    margin-top: 10px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: flex;
    padding-bottom: 20px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items li {
    margin-bottom: 0;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items li a {
    /*color:$clrWhite!important;*/
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items li a.active {
    /*color: $secondary!important;*/
    text-decoration: underline !important;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items li:focus {
    color: #E85652 !important;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items li .dropdown-backdrop {
    position: relative;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li {
    color: #E85652;
    font-size: 19px;
    line-height: 21px;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    z-index: 99;
    margin-left: 0 !important;
    margin-bottom: 26px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li:first-child {
    /* LOGO DANS LE MENU */
    /*
    width: 190px;
    height:auto;
    margin-top: -65px;
    margin-bottom: 15px;
    border-bottom: 0;
    a {
        background: url("https://cdn.ca.yapla.com/company/CPY7DitGywpehlqTNd32IUzuc/asset/images/Assets/logo-goodman.svg") no-repeat;
        background-position: left top;
        background-size:190px 50px;
        width: 190px;
        height:auto;
        line-height:0;
        text-indent: -9999px; 
        padding:0;
        margin:0;
    }
    */
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li:focus, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li.active {
    cursor: pointer;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li:hover > a:not(.dropdown-toggle), .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li:focus > a:not(.dropdown-toggle), .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li.active > a:not(.dropdown-toggle) {
    /*background-color: $secondary;*/
    border: 1px solid #E85652;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > a {
    padding: 15px 15px 10px 25px;
    height: auto !important;
    width: 100%;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid transparent;
    color: #fff !important;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > a.dropdown-toggle {
    display: block;
    text-align: right;
    margin-top: -45px;
    height: 47px !important;
    padding: 0 !important;
    margin-left: 0;
    width: 100%;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > a.dropdown-toggle .caret {
    content: "";
    width: 17px;
    height: 17px;
    margin-top: 12px;
    margin-right: 8px;
    right: 10px !important;
    top: 17px !important;
    position: initial !important;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/menu-arrow-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    transform: rotate(0deg);
    transition: all 0.5s;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li.open > .dropdown-toggle .caret, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li.active > .dropdown-toggle .caret {
    background-image: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/menu-arrow-white.svg");
    transform: rotate(90deg);
    transition: all 0.5s;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li.open > .dropdown-menu, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li.active > .dropdown-menu {
    max-height: 800px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li.open > a:not(.dropdown-toggle), .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li.active > a:not(.dropdown-toggle) {
    border: 1px solid #E85652;
    background-color: #E85652;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu {
    position: relative;
    z-index: 1000;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: max-height 1000ms;
    background-color: transparent !important;
    max-width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    height: auto;
    max-height: 0;
    height: auto;
    margin-bottom: 0;
    margin-top: 10px;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li {
    padding: 0 20px 0 30px;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: left;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:first-child {
    margin-top: 0;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:last-child {
    margin-bottom: 0;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:focus {
    background-color: transparent !important;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > a {
    padding: 4px 0 3px 0;
    /*height: 29px!important;*/
    width: 100%;
    color: #EFEFEF;
    margin-left: 0;
    background-color: transparent;
    border-radius: 4px;
    white-space: normal;
    font-size: 16px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > a.dropdown-toggle {
    position: absolute;
    display: block;
    text-align: right;
    height: 26px !important;
    padding: 0 !important;
    margin-left: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > a.dropdown-toggle .caret {
    content: "";
    width: 7px;
    height: 8px;
    margin-top: 9px;
    margin-right: 15px;
    right: 10px !important;
    top: 17px !important;
    position: initial !important;
    display: block;
    float: right;
    background-image: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/AIDQ/_Assets/menu-caret.svg");
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    transition: all 0.5s;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:focus, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li.active {
    cursor: pointer;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:hover > a, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:focus > a, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li.active > a {
    color: #E85652;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:hover > a:not(.dropdown-toggle), .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li:focus > a:not(.dropdown-toggle), .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li.active > a:not(.dropdown-toggle) {
    color: #E85652;
    text-decoration: underline;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li.open > .dropdown-toggle .caret, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li.active > .dropdown-toggle .caret {
    transform: rotate(-90deg);
    transition: all 0.5s;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li.open > .dropdown-menu, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li.active > .dropdown-menu {
    max-height: 800px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu {
    position: relative;
    z-index: 1000;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: max-height 1000ms;
    background-color: transparent !important;
    max-width: 100%;
    display: flex !important;
    flex-wrap: wrap;
    height: auto;
    max-height: 0;
    height: auto;
    /*display:block!important;*/
    margin-bottom: 0;
    top: 0;
    left: 0;
    padding: 0;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li {
    display: inline-block;
    position: relative;
    width: 100%;
    padding: 0 20px 0 15px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:first-child {
    margin-top: 10px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:last-child {
    margin-bottom: 15px;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:hover, .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li:focus {
    background-color: transparent !important;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 200;
    padding: 0;
    width: 100%;
    white-space: inherit;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a:hover {
    color: #E85652;
    text-decoration: none;
  }
  .line-menu-container .container > .row > div:nth-child(2) div.navbar ul.menu-vertical-items > li > ul.dropdown-menu > li > ul.dropdown-menu > li > a.child-link {
    width: 100%;
  }
  .line-menu-container .container > .row > div:nth-child(3) {
    padding-bottom: 100px;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content {
    border-top: 1px solid rgba(150, 149, 211, 0.4588235294);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 15px 0 25px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .line-menu-container .container > .row > div:nth-child(3) > .content {
    justify-content: left;
    flex-flow: wrap;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container > .row > div:nth-child(3) > .content a {
    font-size: 19px;
    line-height: 21px;
    color: #fff !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header {
    width: 100%;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    gap: 4px 0;
    padding: 0;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom {
    margin-right: 10px;
    font-size: 14px;
    line-height: 30px;
    color: #E85652;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a {
    font-size: 16px;
    line-height: 30px;
    color: #fff;
    margin: 0;
    text-decoration: none !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a:hover {
    color: #E85652 !important;
    text-decoration: none !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a:not(.btn):hover {
    text-decoration: underline !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.search-header {
    display: none;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a:nth-child(3) {
    margin-top: 30px;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header {
    background-color: #E85652;
    color: #fff;
    transition: all 150ms;
    border: none;
    padding: 10px 50px 10px 50px;
    height: 60px;
    width: auto;
    text-indent: 0;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header:hover, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header:active, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header:focus {
    background-color: #9695D3;
    color: #fff;
    text-decoration: none;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header:after {
    display: none;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header {
    width: fit-content;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-custom a.btn-top-header:hover {
    color: #fff !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login {
    margin-left: 0;
    padding-bottom: 0;
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-transform: none !important;
    flex-direction: row-reverse;
    position: relative !important;
    background-color: transparent !important;
    z-index: 1 !important;
    box-shadow: none !important;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login {
    display: none;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login .member-greeting {
    display: none !important;
    font-size: 14px !important;
    line-height: 30px !important;
    color: #3F2667 !important;
    font-weight: 400 !important;
    text-transform: none !important;
    color: #3b4180 !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a {
    font-size: 14px;
    line-height: 30px;
    color: #3F2667;
    font-weight: 400;
    vertical-align: text-bottom;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a:hover {
    color: #9695D3 !important;
    text-decoration: underline !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn {
    margin-top: 15px;
    background-color: #9695D3 !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 13px !important;
    height: 25px !important;
    padding: 16px 28px !important;
    margin-right: 0 !important;
    transition: all 150ms !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:hover, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:active, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:focus {
    background-color: #E85652 !important;
    color: #fff !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:hover:hover, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:active:hover, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-login.btn:focus:hover {
    text-decoration: none !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    font-family: "Nunito", sans-serif;
    text-transform: inherit;
    font-size: 18px;
    line-height: 21px;
    font-weight: 400;
    height: 55px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    border: none;
    min-width: 0;
    border-radius: 50px;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
    text-decoration: none;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    background-color: #9695D3;
    transition: all 150ms;
    text-indent: -10000px;
    width: 21px;
    height: 21px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register {
    white-space: normal !important;
  }
}
@media (max-width: 991px) {
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:after {
    content: "";
    display: block;
    position: absolute;
    background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    margin-top: 2px;
    margin-left: 4px;
    filter: brightness(5);
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:hover, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:active, .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login a.member-register:focus {
    background-color: #E85652;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-login .separator {
    height: 4px;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-language a {
    font-size: 14px;
    line-height: 30px;
    color: #3F2667;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-header .mod-header.mod-header-wrapper .header-ext-language a:hover {
    color: #9695D3 !important;
    text-decoration: none !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-social {
    width: 100%;
    padding-top: 10px;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-social p:nth-child(1) {
    display: none;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-social p:nth-child(2) {
    margin-top: 0;
    margin-bottom: 35px;
    display: flex;
    flex-direction: row;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-social p:nth-child(2) a {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 26px;
    height: 40px;
    margin-right: 20px;
    transition: all 250ms;
    filter: brightness(3.5) hue-rotate(318deg);
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-social p:nth-child(2) a:hover {
    opacity: 0.7;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-social p:nth-child(3) a {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #3F2667;
    color: #9695D3 !important;
  }
  .line-menu-container .container > .row > div:nth-child(3) > .content .menu-social {
    /*
    .social {
        justify-content: flex-end;
    }
    */
  }
}
@media (max-width: 991px) {
  .overflowhidden .line-menu-container:not(.sticked) .navbar-header {
    /*height: 110px;*/
  }
  .overflowhidden .line-menu-container > .container {
    /* height: 110px; */
    border-bottom: none;
  }
  .overflowhidden .line-menu-container > .container .zone-image a {
    margin-left: 5px;
  }
  .line-bg-menu-open {
    /*
    overflow: hidden;
    background-color: $primary;
    position:absolute;
    width: 100%;
    height: 100%;
    padding:0!important;
    margin:0!important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    */
  }
  body.overflowhidden .line-bg-menu-open {
    /*
    opacity: .4;
    pointer-events:fill;
    cursor: pointer;
    */
  }
}
@media (max-width: 767px) {
  .line-menu-container {
    right: -200vw;
  }
}
@media (max-width: 575px) {
  .line-menu-container {
    width: 100%;
  }
}
/**
 * ----------------------------------------
 * animation Sticky menu
 * ----------------------------------------
 */
@-webkit-keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
@keyframes slide-down-sticky-menu {
  0% {
    top: -130px;
  }
  100% {
    top: 0;
  }
}
/* CONTAINER */
.line-header:not(.sticked, .menuopened) {
  /*transition: top 250ms;*/
}
.line-header:not(.sticked, .menuopened) > .container {
  top: -100px;
  /*position: static;*/
  transition: top 250ms;
}
.line-header.sticked {
  -webkit-animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  height: 45px;
}
@media (max-width: 991px) {
  .line-header.sticked {
    background-color: #fff;
    height: 80px;
  }
}
.line-header.sticked:before {
  display: none;
}
.line-header.sticked > .container > .row {
  margin-top: 0;
}
.line-header.sticked > .container > .row > div:nth-child(1) .content {
  margin-top: 25px;
  margin-bottom: -30px;
}
.line-header.sticked > .container > .row > div:nth-child(1) .content .menu-hamburger span {
  background-color: #3F2667;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header) {
  color: #3F2667 !important;
}
.line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header):hover, .line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header):focus, .line-header.sticked > .container > .row > div:nth-child(2) .mod-header-part a:not(.btn-top-header):active {
  color: #E85652 !important;
}
.line-header.sticked:not(.menuopened) {
  position: sticky;
  top: 0;
}
/* CONTAINER */
.line-menu-container:not(.sticked, .menuopened) {
  /*transition: top 250ms;*/
}
.line-menu-container:not(.sticked, .menuopened) > .container {
  /*top: -100px;*/
  /*position: static;*/
  transition: top 250ms;
}
.line-menu-container.sticked {
  background-color: #fff;
  margin-top: -25px;
}
@media (min-width: 992px) {
  .line-menu-container.sticked {
    -webkit-animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: slide-down-sticky-menu 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    position: sticky;
    padding-top: 40px;
    height: 85px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
  }
}
.line-menu-container.sticked > .container > .row {
  margin-top: 0;
}
.line-menu-container.sticked > .container > .row > div:nth-child(1) .content {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .line-menu-container.sticked > .container > .row > div:nth-child(2) ul.nav > li > a {
    padding: 12px 15px 9px 15px;
    color: #3F2667 !important;
  }
  .line-menu-container.sticked > .container > .row > div:nth-child(2) ul.nav > li > a:hover, .line-menu-container.sticked > .container > .row > div:nth-child(2) ul.nav > li > a:focus, .line-menu-container.sticked > .container > .row > div:nth-child(2) ul.nav > li > a:active {
    color: #E85652 !important;
  }
}

/* OPTION - Hide munu item when logged
body {
	&.member--isConnected {
		.nav.navbar-nav {
			> li {
				&[rel=data-menu-67910] {
					display: none!important;
				}
			}
		}
	}
}
*/
.representant h3 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.representant h3 {
  margin-bottom: 5px;
}
.representant p {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.representant tbody tr td {
  border-bottom: 1px solid #3F2667;
  padding-bottom: 5px;
}

.en_partenariat {
  background: #fff;
  border-radius: 15px;
}
.en_partenariat h3 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.en_partenariat h3 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 20px;
  margin-left: 10px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.en_partenariat > tbody > tr > td {
  display: flex;
  gap: 0;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 25px 25px 15px;
}
@media (max-width: 1199px) {
  .en_partenariat > tbody > tr > td {
    gap: 50px;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .en_partenariat > tbody > tr > td {
    gap: 0;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .en_partenariat > tbody > tr > td {
    gap: 50px;
    flex-direction: column;
  }
}

/*@import "menu_v1/header.scss";*/
.zone-event_activities .event_activity_list_filter .search-form .form-horizontal .col-sm-12 .fc-datepicker > input {
  background: #f7f7f7 !important;
}
.zone-event_activities .activities-mosaic .row > div .item > h3 {
  color: #3F2667;
}
/*
.zone-news {
    .search-form {
        padding-bottom: 85px;
    }
    #news_content.news-mosaic {
        .row {
            >div {

                a:first-of-type {
                    .news-thumbnail {}
                }

                h3.news-title {
                    @include h5;
                    text-transform: initial;
                    margin-bottom:16px;
                    a {
                        text-decoration: none;
                        &:hover {
                            text-decoration: none;
                        }
                    }
                }

                a.news-category {
                    font-size: 16px;
                    line-height: 21px;
                    font-weight: 600;
                    color: $primary;
                    text-transform: initial;
                    margin-bottom: 20px;
                    margin-bottom: 0;
                    text-decoration: none;
                    &:hover {
                        text-decoration: none;
                    }
                }

                p.news-published-date.e-date {
                    font-size: 16px;
                    line-height: 21px;
                    font-weight: 600;
                    color: $primary;
                    text-transform: initial;
                    margin-bottom: 20px;
                    margin-bottom: 0;
                }

                p.news-author {}

                div.news-intro {
                    padding-top: 16px;
                    margin-right: 32px;

                }

                div.news-tags {
                    display: flex;
                    gap: 10px;
                    align-items: center;
                    justify-content: flex-start;
                    flex-wrap: wrap;
                    max-width: 540px;
                    margin-left: auto;
                    margin-right: auto;
                    padding-left: 0;
                    padding-bottom: 16px;
                    a.news-tags {
                        width: auto;
                        height: auto;
                        min-height: 40px;
                        border-radius: 8px;
                        background-color: $clrWhite;
                        display: block;
                        color: $primary;
                        font-size: 16px;
                        line-height: 24px;
                        font-weight: 500;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        text-align: center;
                        padding: 7px 20px;
                        margin-bottom: 0;
                        text-decoration: none;
                        &:hover {
                            text-decoration: none;
                        }
                    }
                }

                img.news-thumbnail {
                    margin-bottom: 2.2rem;
                    width: 100%;
                    height: 210px;
                    object-fit: cover;
                    object-position: center center;
                    border:1px solid #efe6e6;
                }

                >a:not(.news-category):last-of-type {
                    @include btn;
                    @include btn-primary;
                    margin-top: 7px;
                }
            }
        }
    }
}
*/
/* Module articles en vedette */
.zone-news_flash .newsList .row .item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-news_flash .newsList .row .item .itemImage {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item .itemImage a img.e-thumbnail {
  /*
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center center;
  border:1px solid #efe6e6;
  */
}
.zone-news_flash .newsList .row .item p.itemInfos.e-date {
  margin-bottom: 0;
}
.zone-news_flash .newsList .row .item p.news-keywords {
  margin-bottom: 0;
}
.zone-news_flash a.viewAll {
  /*
  @include btn;
  @include btn-link;
  */
}

/* Bannière - container pleine largeur */
/*###########################  CONNEXION  ###########################*/
/* Global Fix*/
form.form-horizontal .zend_form .col-md-12 {
  width: 100%;
}
form.form-horizontal .zend_form .col-md-12 input,
form.form-horizontal .zend_form .col-md-12 select,
form.form-horizontal .zend_form .col-md-12 textarea {
  box-shadow: none !important;
}
/*Form Connexion Membre*/
.zone-login {
  background-color: #EFEFEF;
  padding: 64px;
}
@media (max-width: 767px) {
  .zone-login {
    padding: 64px 32px;
  }
}

.zone-member .member-login-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.zone-member .member-login-wrapper h1 {
  margin: 64px 0;
}
.zone-member .member-login-wrapper #profile_login_form {
  width: 50%;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type {
  padding: 16px 0 64px 0;
  text-align: right;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password {
  text-decoration: none;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form > div:last-of-type a.reset-password:hover {
  color: #E85652;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form input#submit {
  margin-right: 16px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
    white-space: normal !important;
  }
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription {
  background-color: #9695D3;
  color: #fff;
  transition: all 150ms;
  border: none;
  padding: 10px 50px 10px 50px;
  height: 60px;
  width: auto;
  text-indent: 0;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:hover, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:active, .zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:focus {
  background-color: #E85652;
  color: #fff;
  text-decoration: none;
}
.zone-member .member-login-wrapper #profile_login_form .zend_form a.profile-subscription:after {
  display: none;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .form-element-email {
  margin-bottom: 2.8rem;
}
.zone-member .member-resetpassword-wrapper #forget_password_form .btn {
  margin-right: 30px;
}
/* Contenue personalisé */
/*Espace Evenements - Vue Details*/
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right {
    display: flex;
    flex-wrap: wrap;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
  display: flex;
  border-right: 1px solid #9695D3;
  width: 28%;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    order: 2;
    border: none;
    background-color: #fff;
    padding: 64px;
    width: 100%;
    text-align: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left {
    padding: 32px;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .jumbotron {
  width: 100%;
  background-color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__date {
  font-size: 21px;
  line-height: 25px;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 40px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info {
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding-bottom: 25px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info:after {
  content: "";
  margin-top: 5px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
  order: 1;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  padding-top: 20px;
  border-bottom: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  border-bottom: none;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .contact {
  order: 2;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .phone {
  order: 3;
  padding-top: 10px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  order: 4;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places {
  order: 5;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding-bottom: 25px;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 15px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left .event-jumbotron__contact-wrapper .address .address__contact-info .places:before {
  content: "";
  order: 5;
  margin-top: 15px;
  margin-bottom: 20px;
  border: none;
  background: url(https://cdn.ca.yapla.com/company/CPYT6QsC9eRqbNGU4hnWgujrY/asset/images/%C3%89l%C3%A9ments%20graphique/line-dashed.png) repeat-x left center;
  display: block;
  width: 100%;
  height: 7px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
  background-color: #9695D3;
  transition: all 150ms;
  text-indent: -10000px;
  width: 21px;
  height: 21px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  margin-left: 4px;
  filter: brightness(5);
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe:focus {
  background-color: #E85652;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__left .event-jumbotron__left a.jumbotron__btn_subscribe {
    display: none;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
  display: flex;
  flex-direction: column;
  padding-left: 100px;
}
@media (max-width: 991px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
    margin: 0 0 50px 0;
    padding: 0 15px;
    order: 1;
    width: 100%;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__category {
  order: 1;
  font-style: normal;
  font-size: 21;
  font-weight: 800;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__left-right__title {
  order: 0;
  font-size: 32px;
  line-height: 39px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description {
  order: 2;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__row-image-description h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional {
  order: 3;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 10px;
  color: #fff;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__description-additional h3 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
  color: #fff;
  margin-bottom: 0;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper {
  order: 4;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  text-transform: uppercase;
  color: #3F2667;
  background: transparent;
  padding-left: 5px;
  margin: 0;
  line-height: 27px;
  text-transform: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__tag {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav {
    flex-direction: column;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
    white-space: normal !important;
  }
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back {
  background-color: #9695D3;
  transition: all 150ms;
  text-indent: -10000px;
  width: 21px;
  height: 21px;
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  margin-left: 4px;
  filter: brightness(5);
}
.zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:hover, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:active, .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-detail__actions-wrapper .event-detail__nav .btn-back:focus {
  background-color: #E85652;
}
/* Espace Evenement - Mosaique */
/*###########################  ESPACE MEMBRE  ###########################*/
.line-zone-membre {
  /*
  .container-fluid{
      max-width: 80%;

      @include max-md{
          max-width: 100%;
      }

  }
  */
}

.zone-member .sidebar__member-zone {
  background-color: transparent;
  /*
  @include max-md {
      width: 100%;
  }

  @include max-sm {
      width: 100%;
  }
  */
}
.zone-member .sidebar__member-zone .member-sidebar__inner {
  background-color: transparent;
  padding: 0px 25px 35px 25px;
  margin-right: 15px;
  border-radius: 3px;
}
@media (max-width: 991px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    padding: 0px;
  }
}
@media (max-width: 767px) {
  .zone-member .sidebar__member-zone .member-sidebar__inner {
    margin-right: 0;
  }
}
.zone-member .sidebar__member-zone .member-sidebar__member-header {
  padding: 0;
  border: none;
}
.zone-member .sidebar__member-zone .member-sidebar__member-header__title {
  color: #E85652;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  border-bottom: 1px solid #ccc;
  padding-top: 5px;
  padding-bottom: 20px;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer {
  padding-left: 0;
  padding-right: 0;
  padding: 1.4rem 0;
  background: transparent;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a {
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  color: #3F2667;
  text-transform: initial;
}
.zone-member .sidebar__member-zone .member-sidebar__member-footer a:hover, .zone-member .sidebar__member-zone .member-sidebar__member-footer a:focus {
  color: #3F2667;
  text-decoration: underline;
}
.zone-member .sidebar__member-zone .member-sidebar__menu {
  padding-left: 0;
  padding-right: 0;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li {
  padding: 0;
  margin-bottom: 5px;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a {
  color: #3F2667;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 19px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: initial;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li a:hover {
  color: #9695D3;
  text-decoration: underline;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active {
  display: inline-block;
}
.zone-member .sidebar__member-zone .member-sidebar__menu li.active a {
  color: #9695D3;
}
.zone-member .member .section {
  margin-bottom: 40px;
}
.zone-member .member .section label.control-label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: #323872;
  margin-bottom: 5px;
}
.zone-member .member h2 {
  color: #161E54;
  font-size: 21px;
  line-height: 26px;
  font-weight: 700;
  text-transform: inherit;
  padding: 5px 0 8px 0;
}
.zone-member .member input#submit {
  float: left !important;
}
.zone-member .form-element-votre_photo .input-file .preview #preview {
  padding-bottom: 0;
  margin-bottom: 25px;
  height: 175px;
  width: 175px;
  border-radius: 100px;
  margin-left: auto;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}
.zone-member .preview.row {
  margin-left: 0;
  margin-right: 0;
}

/*Événements en vedette - affichage mosaïque*/
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.zone-event_flash .eventsList .row .col-sm .mod-eventflash__item a img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 210px !important;
  object-fit: cover;
  object-position: center center;
  border: 1px solid #efe6e6;
}
/*Formulaire de Contact*/
/* Formulaire - Module Donnes*/
/* Image - (Default alignée à gauche) */
/*###########################  FIL D'ARIANE  ###########################*/
.line-breadcrumbs {
  padding-top: 10px;
  padding-bottom: 60px;
}
.line-breadcrumbs .zone-breadcrumbs {
  text-align: right;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway {
  text-decoration: none !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a.pathway:hover, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:focus, .line-breadcrumbs .zone-breadcrumbs ul li a.pathway:active {
  text-decoration: underline !important;
}
.line-breadcrumbs .zone-breadcrumbs ul li a, .line-breadcrumbs .zone-breadcrumbs ul li span {
  font-size: 13px;
  font-weight: 500;
}
.line-breadcrumbs .zone-breadcrumbs ul li + li:before {
  content: "/";
  color: #3F2667;
  font-weight: 500;
  padding: 0 10px;
}
.line-breadcrumbs .zone-breadcrumbs ul li.active {
  color: #E85652;
}

.zone-community .row .sidebar {
  width: 33.3333333%;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar {
    width: 100%;
    padding-bottom: 40px;
  }
}
.zone-community .row .sidebar .jumbotron {
  margin-right: 10px;
  background-color: #EFEFEF;
  padding: 25px 25px 35px 25px;
  margin-bottom: 110px;
}
@media (max-width: 991px) {
  .zone-community .row .sidebar .jumbotron {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .zone-community .row .sidebar .jumbotron {
    margin-bottom: 40px;
  }
}
.zone-community .row .sidebar .jumbotron strong {
  font-size: 21px;
  line-height: 26px;
  color: #3F2667;
  display: block;
}
.zone-community .row .sidebar .jumbotron a {
  display: block;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  color: #3F2667;
  text-transform: initial;
  padding-top: 17px;
  padding-bottom: 17px;
}
.zone-community .row .sidebar .jumbotron a:first-of-type {
  border-top: 1px solid #3F2667;
}
.zone-community .row .sidebar .jumbotron a:first-of-type:hover, .zone-community .row .sidebar .jumbotron a:first-of-type:focus {
  color: #3F2667;
  text-decoration: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type {
  border-top: 1px solid #3F2667;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  border: none !important;
  padding: 10px 0 10px 0;
  color: #3F2667;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
  transition: all 300ms;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-arrow.svg");
  background-repeat: no-repeat;
  right: -13px;
  margin-top: -2px;
  position: relative;
  display: inline-block;
  width: 5px;
  height: 8px;
  animation-name: none;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover, .zone-community .row .sidebar .jumbotron a:last-of-type:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #E85652;
}
.zone-community .row .sidebar .jumbotron a:last-of-type:hover:after, .zone-community .row .sidebar .jumbotron a:last-of-type:focus:after {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-name: bounce_arrow;
  -moz-animation-name: bounce_arrow;
}
.zone-community .row .sidebar .jumbotron + p {
  font-size: 21px;
  line-height: 26px;
  color: #3F2667;
  font-weight: 700;
  display: block;
  margin-left: 25px;
  margin-bottom: 20px;
}
.zone-community .row .sidebar ul {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 25px 0 15px 0;
  margin-left: 25px;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .zone-community .row .sidebar ul {
    margin-left: 0;
    margin-right: 0;
  }
}
.zone-community .row .sidebar ul {
  list-style: none;
}
.zone-community .row .sidebar ul li {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 9px;
}
.zone-community .row .sidebar ul li a:hover, .zone-community .row .sidebar ul li a:focus {
  color: #3F2667;
  text-decoration: none;
}
.zone-community .row .content {
  width: 66.6666667%;
}
@media (max-width: 767px) {
  .zone-community .row .content {
    width: 100%;
  }
}
.zone-community .row .content ul.nav {
  border-bottom: none;
  margin-top: 25px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.zone-community .row .content ul.nav li {
  padding: 0px 5px;
}
.zone-community .row .content ul.nav li a {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.zone-community .row .content ul.nav li a:hover, .zone-community .row .content ul.nav li a:active, .zone-community .row .content ul.nav li a:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .zone-community .row .content ul.nav li a {
    white-space: normal !important;
  }
}
.zone-community .row .content ul.nav li a {
  letter-spacing: 0;
}
.zone-community .row .content ul.nav li.active a {
  font-weight: 600;
  color: #3F2667 !important;
}
.zone-community .row .content .tab-content ul.errors li {
  list-style: none;
}
.zone-community .row .content .tab-content h3 {
  text-transform: inherit;
}
.zone-community .row .content .tab-content .forum-message-content-filter {
  display: inline-flex;
  flex-flow: column;
  align-items: flex-start;
}
.zone-community .row .content .tab-content .forum-message-content-filter .add-mod-forum-item {
  margin-top: 10px;
}
.zone-community .row .content .tab-content .forum-item__btn-addMessage {
  margin-right: 25px;
}
.zone-community .row .content .tab-content .forum-list__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.zone-community .row .content .forum-item, .zone-community .row .content .forum-item__wrapper {
  padding: 37px 0 30px;
}
.zone-community .row .content .forum-item:hover, .zone-community .row .content .forum-item__wrapper:hover {
  background-color: transparent;
}
.zone-community .row .content .forum-item .forum-item-title, .zone-community .row .content .forum-item__wrapper .forum-item-title {
  font-size: 18px;
  line-height: 21px;
}
.zone-community .row .content .forum-item .forum-item-author, .zone-community .row .content .forum-item__wrapper .forum-item-author {
  color: #3F2667;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle {
  min-height: 0;
  padding: 10px;
  background-color: #fff;
  border: 0;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-toggle .caret, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-toggle .caret {
  color: #000;
}
.zone-community .row .content .forum-item .forum-item__btn-actions-dropdown .dropdown-menu li, .zone-community .row .content .forum-item__wrapper .forum-item__btn-actions-dropdown .dropdown-menu li {
  margin-bottom: 0;
}
.zone-community .row .content .forum-message-child {
  padding: 37px 30px 30px;
}
.zone-community .row .content .forum-item__wrapper .forum-item-title {
  margin-right: 0;
}
.zone-community .row .content .forum-form__addMessage-wrapper #community_form_add_message {
  padding-top: 30px;
}
.zone-community .row .content #community-forum #community_form_add_message .section .form-group:last-of-type {
  padding-top: 20px;
}
.zone-community .row .content #community-forum .forum-item__btn-addMessage {
  margin-right: 25px;
}

.forum-item__likes-wrapper {
  padding-left: 0;
  padding-right: 0;
}
.forum-item__likes-wrapper button {
  background-color: transparent !important;
  border: none !important;
  color: #3F2667 !important;
  text-transform: inherit;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  padding: 0 10px 0 0 !important;
  margin-right: 5px !important;
}
.forum-item__likes-wrapper button i:before {
  filter: hue-rotate(299deg);
}
.forum-item__likes-wrapper button[data-type=like] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-pouce.svg");
  width: 28px;
  height: 27px;
  display: block;
  margin-top: -9px;
  margin-right: 5px;
}
.forum-item__likes-wrapper button[data-type=follow] i:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYGe16smuR54TfY2UDtgXaZp/asset/images/icon-etoile.svg");
  width: 27px;
  height: 25px;
  display: block;
  margin-top: -7px;
  margin-right: 5px;
}
.forum-item__likes-wrapper .forum-item__action-count {
  margin: 0 5px 0 -5px;
}

/* 
Mosaique
1 collone
Résumer au centre
*/
.prebuilt-espace-evenements-col3 .zone-event #eventFilterForm {
  padding-bottom: 84px;
}
.prebuilt-espace-evenements-col3 .zone-event #eventFilterForm label {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements-col3 .zone-event #eventFilterForm label {
    font-size: 25px;
    line-height: 30px;
  }
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 30px;
}
@media (max-width: 991px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 30px;
  }
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 30px;
  }
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row {
  margin-top: 0;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item a img.e-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 170px !important;
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  animation: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item h3 {
  opacity: 1;
  animation: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .e-date {
  font-size: 18px;
  line-height: 24px;
  text-transform: inherit;
  font-weight: 400;
  opacity: 1;
  animation: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .address {
  display: none;
  opacity: 1;
  animation: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .contact {
  display: none;
  opacity: 1;
  animation: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .events-mosaic-tags {
  opacity: 1;
  animation: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .events-mosaic__short-description p {
  opacity: 1;
  animation: none !important;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item p {
  opacity: 1;
  animation: none !important;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions {
  margin-top: 30px;
  margin-bottom: 0;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn {
  opacity: 1;
  animation: none;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #9695D3;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
@media (max-width: 575px) {
  .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default {
    padding: 8px 55px 8px 25px;
  }
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #9695D3;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default:hover, .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default:hover:before, .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default:focus:before {
  background-color: #EBEFFE;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default:hover:after, .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-default:focus:after {
  filter: brightness(1.5) hue-rotate(250deg);
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-primary {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #E85652;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-primary:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #E85652;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-primary:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
  transition: all 300ms;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-primary:hover, .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-primary:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border-color: #9695D3;
}
.prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-primary:hover:before, .prebuilt-espace-evenements-col3 .zone-event .events-mosaic .row > div .item .actions .btn.btn-primary:focus:before {
  background-color: #9695D3;
}
.prebuilt-evenement-en-vedette-list-3 {
  padding-top: 100px;
  padding-bottom: 80px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash h2 {
  margin-bottom: 35px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 30px;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 30px;
  }
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 30px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row {
  margin-left: 0;
  margin-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div {
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item img {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 170px !important;
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  animation: none;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item h3 {
  opacity: 1;
  animation: none;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item hr {
  display: none;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos {
  margin-bottom: 25px;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
    font-size: 20px;
    line-height: 25px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .mod-eventflash__item-itemInfos .e-date {
  text-transform: inherit;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions {
  margin-top: 30px;
  margin-bottom: 0;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a {
  opacity: 1;
  animation: none;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #9695D3;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
@media (max-width: 575px) {
  .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default {
    padding: 8px 55px 8px 25px;
  }
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #9695D3;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default:hover, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default:hover:before, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default:focus:before {
  background-color: #EBEFFE;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default:hover:after, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-default:focus:after {
  filter: brightness(1.5) hue-rotate(250deg);
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #E85652;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #E85652;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
  transition: all 300ms;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:hover, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border-color: #9695D3;
}
.prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:hover:before, .prebuilt-evenement-en-vedette-list-3 .zone-event_flash .eventsList > .row > div .mod-eventflash__item .actions a.btn-primary:focus:before {
  background-color: #9695D3;
}
/*
@import "blogue/prebuilt-articles-multiples-col3.scss";
@import "blogue/prebuilt-articles-vedette-title-left-text-right.scss";
@import "blogue/prebuilt-articles-vedette-col3.scss";
@import "blogue/prebuilt-articles-multiples-col3.scss";
@import "evenements/prebuilt-espace-evenements-col3.scss";
@import "icone_social/icone_social.scss";
@import "ligne_du_temps/ligne-du-temps.scss";
@import "feature/absolute-image.scss";
*/
.yt-wrapper {
  position: relative;
  /*overflow: hidden;*/
  width: 100%;
  padding-top: 56.25%;
}

.yt-wrapper iframe {
  position: absolute;
  /*display:none;*/
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.yt-wrapper .yt-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  object-fit: contain;
}

.yt-wrapper .yt-overlay img {
  width: 100%;
  height: 100% !important;
}

.yt-max {
  max-width: 546px;
  margin-left: auto;
  margin-right: auto;
}

body {
  background-color: #EFEFEF;
}

.zone-login .btn-primary, .zone-member .btn-primary {
  background-color: #E85652 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: none !important;
  padding: 10px 50px 10px 50px !important;
  height: 60px !important;
  width: auto !important;
  text-indent: 0 !important;
}
.zone-login .btn-primary:hover, .zone-login .btn-primary:active, .zone-login .btn-primary:focus, .zone-member .btn-primary:hover, .zone-member .btn-primary:active, .zone-member .btn-primary:focus {
  background-color: #9695D3 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.zone-login .btn-primary:after, .zone-member .btn-primary:after {
  display: none !important;
}

.zone-login #profile_login_form .btn-primary {
  margin-top: 30px;
}

.line-general-title-center {
  padding-top: 40px;
  padding-bottom: 20px;
}
.line-general-title-center .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-general-title-center .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .line-general-title-center .content br {
    display: none;
  }
}

.line-general-title-text-center {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .line-general-title-text-center .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-general-title-text-center .container > .row > div {
    width: 100%;
  }
}
.line-general-title-text-center .content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.line-general-title-text-center .content h2 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-general-title-text-center .content h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .line-general-title-text-center .content h2 {
    font-size: 38px;
    line-height: 42px;
  }
}
.line-general-title-text-center .content h2 {
  margin-bottom: 25px;
}

.line-general-text-2col:not(.nopadding) {
  padding-top: 10px;
  padding-bottom: 105px;
}
@media (max-width: 991px) {
  .line-general-text-2col .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-general-text-2col .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-general-text-2col .container > .row > div:nth-child(2) {
    width: 100%;
  }
}

.line-general-text-image-2col-half {
  /*padding-top: 30px;*/
  padding-top: 80px;
  padding-bottom: 120px;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Bien%20dici/graphisme.png") no-repeat;
  background-position: right 0 bottom 100px;
}
@media (max-width: 1199px) {
  .line-general-text-image-2col-half {
    background-size: 510px;
    padding-top: 50px;
  }
}
@media (max-width: 991px) {
  .line-general-text-image-2col-half {
    background-size: 340px;
  }
}
.line-general-text-image-2col-half .container > .row {
  display: flex;
  justify-content: space-between;
  gap: 140px;
}
@media (max-width: 1199px) {
  .line-general-text-image-2col-half .container > .row {
    gap: 90px;
  }
}
@media (max-width: 991px) {
  .line-general-text-image-2col-half .container > .row {
    flex-direction: column;
  }
}
.line-general-text-image-2col-half .container > .row:before, .line-general-text-image-2col-half .container > .row:after {
  display: none;
}
.line-general-text-image-2col-half .container > .row > div .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-general-text-image-2col-half .container > .row > div .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-general-text-image-2col-half .container > .row > div .content hr {
  background-color: #3F2667;
  margin-top: 35px;
  margin-bottom: 45px;
}
.line-general-text-image-2col-half .container > .row > div .content img {
  border-radius: 4px;
  margin-bottom: 10px;
  object-fit: cover;
  object-position: bottom center;
  width: 100% !important;
  height: 100% !important;
}
.line-general-text-image-2col-half .container > .row > div:nth-child(1) {
  width: 50%;
}
@media (max-width: 991px) {
  .line-general-text-image-2col-half .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-general-text-image-2col-half .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-general-text-image-2col-half .container > .row > div:nth-child(2) .content {
  padding-bottom: 240px;
}
@media (max-width: 991px) {
  .line-general-text-image-2col-half .container > .row > div:nth-child(2) .content {
    padding-bottom: 90px;
  }
}

.line-general-text-image-2col {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .line-general-text-image-2col {
    padding-bottom: 80px !important;
  }
}
@media (max-width: 767px) {
  .line-general-text-image-2col {
    padding-bottom: 55px !important;
  }
}
@media (max-width: 991px) {
  .line-general-text-image-2col.largepaddingtop {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
  }
}
@media (max-width: 991px) {
  .line-general-text-image-2col.xlargepaddingbottom {
    padding-bottom: 80px !important;
  }
}
.line-general-text-image-2col .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-general-text-image-2col .container > .row {
    flex-direction: column;
  }
}
.line-general-text-image-2col .container > .row > div:nth-child(1) {
  width: 55%;
}
@media (max-width: 991px) {
  .line-general-text-image-2col .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-general-text-image-2col .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-general-text-image-2col .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-general-text-image-2col .container > .row > div:nth-child(1) .content hr {
  background-color: #3F2667;
  margin-top: 35px;
  margin-bottom: 45px;
}
.line-general-text-image-2col .container > .row > div:nth-child(2) {
  width: 45%;
  display: flex;
}
@media (max-width: 991px) {
  .line-general-text-image-2col .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .line-general-text-image-2col .container > .row > div:nth-child(2) .content {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .line-general-text-image-2col .container > .row > div:nth-child(2) .content {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .line-general-text-image-2col .container > .row > div:nth-child(2) .content {
    padding-top: 25px;
  }
}
.line-general-text-image-2col .container > .row > div:nth-child(2) .content img {
  border-radius: 4px;
  margin-bottom: 0;
  object-fit: cover;
  object-position: bottom center;
  width: 100%;
  height: 100% !important;
  max-height: 640px;
  top: 0;
  position: -webkit-sticky;
  position: sticky;
}
@media (max-width: 991px) {
  .line-general-text-image-2col .container > .row > div:nth-child(2) .content img {
    max-height: 430px;
  }
}

.form-intro-center {
  padding-top: 65px;
}
.form-intro-center .container > .row > div .content h2 {
  margin-bottom: 20px;
}

.line-page-regular-content {
  padding-top: 20px;
  padding-bottom: 80px;
}
.line-page-regular-content .container > .row > div .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-page-regular-content .container > .row > div .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-page-regular-content .container > .row > div .content h2 {
  margin-top: 30px;
}

.line-formulaire-footer {
  padding-top: 60px;
  padding-bottom: 180px;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Appels%20%C3%A0%20projets/background-formulaire-1.jpg") no-repeat;
  background-size: contain;
  background-position: left center;
}
@media (max-width: 991px) {
  .line-formulaire-footer {
    padding-bottom: 100px;
  }
}
.line-formulaire-footer .section {
  margin-bottom: 45px;
}
.line-formulaire-footer .section h2.section-title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-formulaire-footer .section h2.section-title {
    font-size: 30px;
    line-height: 35px;
  }
}

.line-404 {
  padding: 55px 0 80px 0 !important;
}
@media (max-width: 991px) {
  .line-404 {
    padding: 130px 0 80px 0 !important;
  }
}
.line-404 .row > div .content {
  text-align: center;
}
.line-404 .row > div .content h1 {
  color: #3F2667;
  font-size: 50px;
  font-weight: 600;
}
.line-404 .row > div .content h1 strong {
  display: block;
  font-size: 200px;
  line-height: 160px;
  font-weight: 600 !important;
}
@media (max-width: 991px) {
  .line-404 .row > div .content h1 strong {
    font-size: 160px;
    line-height: 120px;
  }
}
@media (max-width: 575px) {
  .line-404 .row > div .content h1 strong {
    font-size: 120px;
    line-height: 100px;
  }
}
.line-404 .row > div .content h3 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-404 .row > div .content h3 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .line-404 .row > div .content h3 {
    font-size: 38px;
    line-height: 42px;
  }
}
.line-404 .row > div .content h3 {
  margin-top: 30px;
  margin-bottom: 25px;
}
.line-404 .row > div .content .btn {
  margin-top: 25px;
}

.line-banner-home {
  position: relative;
  margin-top: 30px;
}
.line-banner-home:before {
  content: "";
  display: block;
  position: absolute;
  width: 66%;
  height: calc(100% + 475px);
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/background-menu_pas-de-coins-2x.png") no-repeat;
  background-position: left bottom;
  background-size: cover;
  /*background-size: 66vw 1200px;*/
  border-bottom-left-radius: 100px;
  left: auto;
  top: -85px;
  right: 0;
  margin-left: auto;
  margin-right: 0;
  margin-top: -200px;
}
@media (max-width: 1199px) {
  .line-banner-home:before {
    /*background-size: 68vw 1200px;*/
    width: 68%;
  }
}
@media (max-width: 991px) {
  .line-banner-home:before {
    width: 50%;
    height: calc(100% + 565px);
  }
}
@media (max-width: 767px) {
  .line-banner-home:before {
    height: calc(100% + 475px);
  }
}
.line-banner-home .container {
  position: relative;
}
.line-banner-home .container:before {
  content: "Actualité";
  position: absolute;
  transform: rotate(-90deg);
  left: -60px;
  top: 50px;
  font-size: 21px;
  color: #3F2667;
}
.line-banner-home .container > .row > div .newsList > .row {
  margin-left: 0;
  margin-right: 0;
}
.line-banner-home .container > .row > div .newsList > .row:nth-child(2) {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:nth-child(2) {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:nth-child(2) {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:nth-child(2) {
    margin-top: 55px;
  }
}
.line-banner-home .container > .row > div .newsList > .row:not(:nth-child(1), :nth-child(2)) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:nth-child(1), :nth-child(2)) {
    margin-top: 25px;
  }
}
.line-banner-home .container > .row > div .newsList > .row .item {
  background-color: #fff;
  border-radius: 8px;
}
.line-banner-home .container > .row > div .newsList > .row .item .itemImage {
  grid-area: a;
}
.line-banner-home .container > .row > div .newsList > .row .item .itemImage img {
  border-radius: 8px 0 0 8px;
  object-fit: cover;
  object-position: center center;
  animation: none;
  opacity: 1;
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item {
  float: left;
  /*
  display:grid;
  grid-template-columns: 45% 55%;
  grid-template-rows: 33.333% 33.333% 33.333%;
  grid-template-areas:
  "a b"
  "a c"
  "a d";
  */
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .itemImage {
  float: left;
  width: 45%;
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item .itemImage {
    width: 100%;
  }
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .itemImage img {
  border-radius: 8px 0 0 8px;
  width: 100%;
  height: 100% !important;
  margin-bottom: 0;
  min-height: 332px;
  max-height: 332px;
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item .itemImage img {
    max-height: 259px;
    min-height: 200px;
    border-radius: 8px 8px 0 0;
  }
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item .itemImage img {
    min-height: 235px;
  }
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item h3 {
  font-size: 26px;
  line-height: 35px;
  font-weight: 400;
  float: right;
  width: 51%;
  margin-top: 50px;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item h3 {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item h3 a:hover, .line-banner-home .container > .row > div .newsList > .row:first-child .item h3 a:focus {
  text-decoration: none !important;
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .intro {
  float: right;
  width: 51%;
  padding-right: 60px;
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item .intro {
    width: 100%;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item .intro {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .intro p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .actions {
  float: right;
  width: 51%;
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item .actions {
    width: 100%;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 10px;
  }
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #9695D3;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
@media (max-width: 575px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a {
    padding: 8px 55px 8px 25px;
  }
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #9695D3;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a:hover, .line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a:hover:before, .line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a:focus:before {
  background-color: #EBEFFE;
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a:hover:after, .line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a:focus:after {
  filter: brightness(1.5) hue-rotate(250deg);
}
.line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:first-child .item .actions a {
    margin-bottom: 35px;
  }
}
.line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 65%;
}
@media (max-width: 991px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item {
    flex-direction: column;
  }
}
.line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item .itemImage {
  display: flex;
  width: 243px;
  height: 100%;
  min-height: 104px;
  height: auto;
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item .itemImage {
    display: block;
    width: 100%;
  }
}
.line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item .itemImage img {
  border-radius: 8px 0 0 8px;
  margin-bottom: 0;
  width: 168px;
  height: 100% !important;
  min-height: 104px;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item .itemImage img {
    width: 100%;
    max-height: 104px;
    border-radius: 8px 8px 0 0;
  }
}
.line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item h3 {
    font-size: 17px;
    line-height: 21px;
  }
}
.line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item h3 {
  padding: 15px 30px 15px 40px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item h3 {
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item h3 {
    padding: 40px 30px 0 30px;
    text-align: center;
  }
}
.line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item h3 a:hover, .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item h3 a:focus {
  text-decoration: none !important;
}
.line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item .intro {
  display: none;
}
.line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item .actions {
  margin-top: 0;
  padding: 0px 20px 0 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .line-banner-home .container > .row > div .newsList > .row:not(:first-child) .item .actions {
    padding: 0px 20px 25px 30px;
    justify-content: center;
  }
}
.line-banner-home-cta {
  position: relative;
  margin-top: 30px;
  z-index: 20;
}
@media (max-width: 991px) {
  .line-banner-home-cta {
    margin-top: 45px;
  }
}
.line-banner-home-cta .content {
  text-align: right;
}
@media (max-width: 991px) {
  .line-banner-home-cta .content {
    text-align: center;
  }
}

.line-accueil-programme {
  position: relative;
  padding-top: 290px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .line-accueil-programme {
    padding-top: 200px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .line-accueil-programme {
    padding-top: 150px;
  }
}
.line-accueil-programme:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Accueil/section3-background-image.png") #402768 no-repeat;
  background-position: left top;
  background-size: cover;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  left: 0;
  top: 50px;
  right: auto;
  margin-left: 0;
  margin-right: 30px;
}
@media (max-width: 991px) {
  .line-accueil-programme:before {
    top: 90px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-position: left top;
    background-size: contain;
    width: 100%;
    right: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .line-accueil-programme:before {
    top: 75px;
  }
}
@media (max-width: 991px) {
  .line-accueil-programme .container > .row {
    display: flex;
    flex-direction: column;
  }
}
.line-accueil-programme .container > .row > div:nth-child(1) {
  width: 45%;
}
@media (max-width: 991px) {
  .line-accueil-programme .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
.line-accueil-programme .container > .row > div:nth-child(1) .content {
  margin-top: 420px;
}
@media (max-width: 991px) {
  .line-accueil-programme .container > .row > div:nth-child(1) .content {
    margin-top: 110px;
  }
}
.line-accueil-programme .container > .row > div:nth-child(2) {
  width: 55%;
}
@media (max-width: 1400px) {
  .line-accueil-programme .container > .row > div:nth-child(2) {
    padding-right: 95px;
  }
}
@media (max-width: 991px) {
  .line-accueil-programme .container > .row > div:nth-child(2) {
    width: 100%;
    order: 1;
    padding-right: 15px;
  }
}
.line-accueil-programme .container > .row > div:nth-child(2) .content > .row {
  margin-top: 0;
}
@media (max-width: 991px) {
  .line-accueil-programme .container > .row > div:nth-child(2) .content > .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.line-accueil-programme .container > .row > div:nth-child(2) .content > .row .item .intro {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  padding-top: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.231372549);
}
@media (max-width: 767px) {
  .line-accueil-programme .container > .row > div:nth-child(2) .content > .row .item .intro {
    align-items: end;
  }
}
.line-accueil-programme .container > .row > div:nth-child(2) .content > .row .item .intro p {
  margin-bottom: 0;
  width: 100%;
  /*
  &:nth-child(1) {
      width: 70%;
      a {
          @include h3;
          color: $clrWhite!important;
          padding: 20px 0;
          display: block;
          @include max-sm {
              align-items: end;
          }
          img {
              margin-top: -60px;
              margin-right: 20px;
          }
          &:hover, &:focus {
              text-decoration: none!important;
          }
          .btn  {
              @include max-sm {
                  margin-bottom: -15px;
              }
          }
      }
  }
  &:nth-child(2) {
      flex-grow: 0;
      flex-shrink: 0;
      flex-basis: 60px;
      text-align: right;
  }
  */
}
.line-accueil-programme .container > .row > div:nth-child(2) .content > .row:nth-child(2) .item .intro {
  padding-top: 60px;
}

.line-accueil-video {
  padding-top: 60px;
  padding-bottom: 70px;
  background-color: #f7f7f7;
}
@media (max-width: 991px) {
  .line-accueil-video {
    padding-top: 105px;
  }
}
@media (max-width: 767px) {
  .line-accueil-video {
    padding-top: 90px;
    padding-bottom: 0;
  }
}
.line-accueil-video .container > .row > div .content {
  max-width: 637px;
  margin-left: auto;
  margin-right: auto;
}
.line-accueil-video .container > .row > div .content h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-accueil-video .container > .row > div .content h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-accueil-video .container > .row > div .content h2 {
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .line-accueil-video .container > .row > div .content h2 {
    margin-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .line-accueil-video .container > .row > div .content h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 35px;
  }
}
.line-accueil-video .container > .row > div .content a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.line-accueil-video .container > .row > div .content a:hover:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/video-play-hover.svg");
}
.line-accueil-video .container > .row > div .content a:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/video-play.svg");
  width: 97px;
  height: 99px;
  display: block;
  position: absolute;
}
@media (max-width: 767px) {
  .line-accueil-video .container > .row > div .content a img {
    min-height: auto;
    object-fit: cover;
    object-position: left center;
  }
}

.line-portrait-industrie-2-col-icon {
  padding-top: 25px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .line-portrait-industrie-2-col-icon .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-portrait-industrie-2-col-icon .container > .row > div:nth-child(1) .content br {
    display: none;
  }
}
.line-portrait-industrie-2-col-icon .container > .row > div:nth-child(1) .content img {
  position: absolute;
  left: calc((100vw - 1140px) / -2);
}
@media (max-width: 1199px) {
  .line-portrait-industrie-2-col-icon .container > .row > div:nth-child(1) .content img {
    left: calc((100vw - 940px) / -2);
  }
}
@media (max-width: 991px) {
  .line-portrait-industrie-2-col-icon .container > .row > div:nth-child(1) .content img {
    position: relative;
    left: calc((100vw - 746px) / -2);
    width: 300px !important;
  }
}
@media (max-width: 767px) {
  .line-portrait-industrie-2-col-icon .container > .row > div:nth-child(1) .content img {
    left: -30px;
    width: 300px !important;
  }
}
@media (max-width: 991px) {
  .line-portrait-industrie-2-col-icon .container > .row > div:nth-child(2) {
    width: 100%;
  }
}

.line-portrait-industrie-stats {
  padding-top: 5px;
  padding-bottom: 90px;
}
@media (max-width: 991px) {
  .line-portrait-industrie-stats {
    padding-top: 40px;
    padding-bottom: 75px;
  }
}
@media (max-width: 767px) {
  .line-portrait-industrie-stats {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
.line-portrait-industrie-stats .container > .row > div h2 {
  text-align: center;
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-portrait-industrie-stats .container > .row > div h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-portrait-industrie-stats .container > .row > div .content {
  padding-top: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 100px;
}
@media (max-width: 991px) {
  .line-portrait-industrie-stats .container > .row > div .content {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .line-portrait-industrie-stats .container > .row > div .content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.line-portrait-industrie-stats .container > .row > div .content h3 {
  font-family: "Nunito", sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 65px;
  flex-direction: column;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 100px;
  width: 200px;
  height: 200px;
}
.line-portrait-industrie-stats .container > .row > div .content h3 strong {
  font-size: 35px;
  line-height: 16px;
  font-weight: bolder;
  color: #E85652;
}
.line-portrait-industrie-stats .container > .row > div .content h3 br {
  display: block !important;
}

.line-portrait-industrie-purple-bg-article {
  padding-top: 60px;
  padding-bottom: 130px;
  position: relative;
}
@media (max-width: 991px) {
  .line-portrait-industrie-purple-bg-article {
    padding-top: 150px;
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .line-portrait-industrie-purple-bg-article {
    padding-top: 200px;
    padding-bottom: 40px;
  }
}
.line-portrait-industrie-purple-bg-article:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Portrait%20de%20l'industrie/image-background_portraits-de_lindustrie.jpg") #3F2667 no-repeat;
  background-position: left top;
  background-size: contain;
  border-bottom-right-radius: 100px;
  border-top-right-radius: 100px;
  right: auto;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: 0;
  margin-top: 0;
}
@media (max-width: 991px) {
  .line-portrait-industrie-purple-bg-article:before {
    width: 100%;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
}
.line-portrait-industrie-purple-bg-article .container {
  max-width: 800px;
}
.line-portrait-industrie-purple-bg-article .container > .row > div .content > .row {
  margin-top: 0;
}
.line-portrait-industrie-purple-bg-article .container > .row > div .content > .row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.231372549);
}
.line-portrait-industrie-purple-bg-article .container > .row > div .content > .row .item {
  margin-top: 75px;
  margin-bottom: 35px;
}
.line-portrait-industrie-purple-bg-article .container > .row > div .content > .row .item > h3 {
  color: #fff;
  margin-bottom: 20px;
}
.line-portrait-industrie-purple-bg-article .container > .row > div .content > .row .item .intro {
  column-count: 2;
  column-gap: 60px;
}
@media (max-width: 767px) {
  .line-portrait-industrie-purple-bg-article .container > .row > div .content > .row .item .intro {
    column-count: 1;
  }
}
.line-portrait-industrie-purple-bg-article .container > .row > div .content > .row .item .intro p {
  color: #fff;
  break-inside: avoid-column;
}

.line-portrait-industrie-innovation-titre {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media (max-width: 991px) {
  .line-portrait-industrie-innovation-titre {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .line-portrait-industrie-innovation-titre {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .line-portrait-industrie-innovation-titre .content br {
    display: none !important;
  }
}

.line-portrait-industrie-innovation {
  padding-top: 30px;
  padding-bottom: 160px;
}
@media (max-width: 991px) {
  .line-portrait-industrie-innovation {
    padding-top: 10px;
    padding-bottom: 130px;
  }
}
.line-portrait-industrie-innovation .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-portrait-industrie-innovation .container > .row {
    flex-direction: column;
  }
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(1) {
  display: flex;
}
@media (max-width: 991px) {
  .line-portrait-industrie-innovation .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .line-portrait-industrie-innovation .container > .row > div:nth-child(1) .content {
    padding-right: 70px;
  }
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(1) .content img {
  border-radius: 40px;
  margin-bottom: 0;
  object-fit: cover;
  object-position: bottom center;
  width: 100%;
  height: 100% !important;
}
@media (max-width: 767px) {
  .line-portrait-industrie-innovation .container > .row > div:nth-child(1) .content img {
    min-height: 342px;
  }
}
@media (max-width: 991px) {
  .line-portrait-industrie-innovation .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content {
    padding-top: 30px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p {
  margin-bottom: 0;
  border-bottom: 1px solid #3F2667;
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p a {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p a {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p a {
  color: #3F2667 !important;
  text-decoration: none !important;
  margin: 40px 0 15px 0;
  padding-right: 30px;
  width: 100%;
  display: block;
  position: relative;
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p a:hover {
  text-decoration: none !important;
  color: #9695D3 !important;
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p a:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #E85652;
  border-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p a:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 6px;
  top: 10px;
  z-index: 10;
  filter: brightness(5);
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p a:hover:before, .line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p a:focus:before {
  background-color: #9695D3;
}
.line-portrait-industrie-innovation .container > .row > div:nth-child(2) .content p:nth-child(1) a {
  margin: 20px 0 15px 0;
}

.line-batiments-materiaux {
  padding-top: 40px;
  padding-bottom: 85px;
}
@media (max-width: 991px) {
  .line-batiments-materiaux {
    padding-bottom: 115px;
  }
}
.line-batiments-materiaux .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-batiments-materiaux .container > .row {
    flex-direction: column;
  }
}
.line-batiments-materiaux .container > .row > div:nth-child(1) {
  width: 45%;
  display: flex;
}
@media (max-width: 991px) {
  .line-batiments-materiaux .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
@media (min-width: 992px) {
  .line-batiments-materiaux .container > .row > div:nth-child(1) .content {
    padding-right: 70px;
  }
}
@media (max-width: 991px) {
  .line-batiments-materiaux .container > .row > div:nth-child(1) .content {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .line-batiments-materiaux .container > .row > div:nth-child(1) .content {
    padding-top: 25px;
  }
}
.line-batiments-materiaux .container > .row > div:nth-child(1) .content img {
  border-radius: 4px;
  margin-bottom: 0;
  object-fit: cover;
  object-position: bottom center;
  width: 100%;
  height: 100% !important;
  max-height: 640px;
}
.line-batiments-materiaux .container > .row > div:nth-child(2) {
  width: 55%;
}
@media (max-width: 991px) {
  .line-batiments-materiaux .container > .row > div:nth-child(2) {
    width: 100%;
    order: 1;
  }
}
.line-batiments-materiaux .container > .row > div:nth-child(2) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-batiments-materiaux .container > .row > div:nth-child(2) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-batiments-materiaux .container > .row > div:nth-child(2) .content hr {
  background-color: #3F2667;
  margin-top: 35px;
  margin-bottom: 45px;
}

.line-logo-acteurs-titre {
  padding-top: 105px;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  .line-logo-acteurs-titre {
    padding-top: 125px;
  }
}
@media (max-width: 767px) {
  .line-logo-acteurs-titre {
    padding-top: 65px;
  }
}
.line-logo-acteurs-titre .content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.line-logo-acteurs-titre .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-logo-acteurs-titre .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.line-fournissseur-logo-acteurs {
  padding-top: 5px;
  padding-bottom: 35px;
}
.line-fournissseur-logo-acteurs .container > .row > div .content {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 0;
  background-color: #fff;
  border-radius: 33px;
  padding: 55px;
}
.line-fournissseur-logo-acteurs .container > .row > div .content p {
  width: 25%;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 1199px) {
  .line-fournissseur-logo-acteurs .container > .row > div .content p {
    width: 33.33333333%;
  }
}
@media (max-width: 991px) {
  .line-fournissseur-logo-acteurs .container > .row > div .content p {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-fournissseur-logo-acteurs .container > .row > div .content p {
    width: 100%;
  }
}
.line-fournissseur-logo-acteurs .container > .row > div .content p a img {
  width: 180px !important;
  height: 116px !important;
  object-fit: contain;
  object-position: center center;
}

.line-logo-acteurs {
  padding-top: 5px;
  padding-bottom: 35px;
}
.line-logo-acteurs.bgImage {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Appels%20%C3%A0%20projets/background-formulaire-1.jpg") no-repeat;
  background-size: contain;
  background-position: center center;
}
.line-logo-acteurs .container > .row > div .content {
  /*
  display: flex;
  flex-wrap: wrap;
  gap: 25px 0;
  */
  background-color: #fff;
  border-radius: 33px;
  padding: 55px;
  display: grid;
  grid-gap: 30px 60px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1199px) {
  .line-logo-acteurs .container > .row > div .content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .line-logo-acteurs .container > .row > div .content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .line-logo-acteurs .container > .row > div .content {
    grid-template-columns: 1fr;
  }
}
.line-logo-acteurs .container > .row > div .content p {
  /*width: 25%;*/
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line-repertoire-logo-acteurs {
  padding-top: 5px;
  padding-bottom: 35px;
}
.line-repertoire-logo-acteurs .container > .row .zone-directory > .row .mod_directory__result_bloc .nav-tabs {
  display: none;
}
.line-repertoire-logo-acteurs .container > .row .zone-directory > .row .mod_directory__result_bloc .tab-content .tab-pane input, .line-repertoire-logo-acteurs .container > .row .zone-directory > .row .mod_directory__result_bloc .tab-content .tab-pane .load-more {
  display: none;
}
.line-repertoire-logo-acteurs .container > .row .zone-directory > .row .mod_directory__result_bloc .tab-content .tab-pane {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 0;
  background-color: #fff;
  border-radius: 33px;
  padding: 55px;
}
.line-repertoire-logo-acteurs .container > .row .zone-directory > .row .mod_directory__result_bloc .tab-content .tab-pane p {
  width: 25%;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .line-repertoire-logo-acteurs .container > .row .zone-directory > .row .mod_directory__result_bloc .tab-content .tab-pane p {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-repertoire-logo-acteurs .container > .row .zone-directory > .row .mod_directory__result_bloc .tab-content .tab-pane p {
    width: 100%;
  }
}
.line-repertoire-logo-acteurs .container > .row .zone-directory > .row .mod_directory__result_bloc .tab-content .tab-pane p img {
  width: 180px !important;
  height: 116px !important;
  object-fit: contain;
  object-position: center;
}

.line-logo-acteurs-cta {
  padding-top: 10px;
  padding-bottom: 50px;
}

.line-a-propos-engagement {
  position: relative;
  padding-top: 120px;
  padding-bottom: 65px;
}
.line-a-propos-engagement:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/A%20propos/background-mauve-img.jpg") no-repeat;
  background-position: left top;
  background-size: cover;
  border-top-right-radius: 155px;
  border-bottom-right-radius: 155px;
  top: 0;
  left: 0;
  right: auto;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-a-propos-engagement:before {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 1399px) {
  .line-a-propos-engagement .container > .row {
    width: 90%;
  }
}
@media (max-width: 1199px) {
  .line-a-propos-engagement .container > .row {
    width: 95%;
  }
}
@media (max-width: 991px) {
  .line-a-propos-engagement .container > .row {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.line-a-propos-engagement .container > .row > div:nth-child(1) {
  width: 50%;
}
@media (max-width: 991px) {
  .line-a-propos-engagement .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-a-propos-engagement .container > .row > div:nth-child(1) .content {
  margin-right: 100px;
}
@media (max-width: 991px) {
  .line-a-propos-engagement .container > .row > div:nth-child(1) .content {
    margin-right: 0;
  }
}
.line-a-propos-engagement .container > .row > div:nth-child(1) .content h1, .line-a-propos-engagement .container > .row > div:nth-child(1) .content h2, .line-a-propos-engagement .container > .row > div:nth-child(1) .content h3, .line-a-propos-engagement .container > .row > div:nth-child(1) .content h4, .line-a-propos-engagement .container > .row > div:nth-child(1) .content h5, .line-a-propos-engagement .container > .row > div:nth-child(1) .content h6, .line-a-propos-engagement .container > .row > div:nth-child(1) .content p, .line-a-propos-engagement .container > .row > div:nth-child(1) .content ul, .line-a-propos-engagement .container > .row > div:nth-child(1) .content li, .line-a-propos-engagement .container > .row > div:nth-child(1) .content a {
  color: #fff;
}
.line-a-propos-engagement .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-a-propos-engagement .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-a-propos-engagement .container > .row > div:nth-child(2) {
  width: 50%;
}
@media (max-width: 991px) {
  .line-a-propos-engagement .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-a-propos-engagement .container > .row > div:nth-child(2) .content h1, .line-a-propos-engagement .container > .row > div:nth-child(2) .content h2, .line-a-propos-engagement .container > .row > div:nth-child(2) .content h3, .line-a-propos-engagement .container > .row > div:nth-child(2) .content h4, .line-a-propos-engagement .container > .row > div:nth-child(2) .content h5, .line-a-propos-engagement .container > .row > div:nth-child(2) .content h6, .line-a-propos-engagement .container > .row > div:nth-child(2) .content p, .line-a-propos-engagement .container > .row > div:nth-child(2) .content ul, .line-a-propos-engagement .container > .row > div:nth-child(2) .content li, .line-a-propos-engagement .container > .row > div:nth-child(2) .content a {
  color: #fff;
}
.line-a-propos-engagement .container > .row > div:nth-child(3) {
  width: 100%;
}
.line-a-propos-engagement .container > .row > div:nth-child(3) .content {
  padding-top: 80px;
  padding-bottom: 60px;
}
.line-a-propos-engagement .container > .row > div:nth-child(3) .content ul {
  list-style: none;
  padding-left: 0 !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 40px;
}
@media (max-width: 991px) {
  .line-a-propos-engagement .container > .row > div:nth-child(3) .content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px 120px;
  }
}
@media (max-width: 767px) {
  .line-a-propos-engagement .container > .row > div:nth-child(3) .content ul {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 120px;
  }
}

.line-a-propos-porteurs {
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .line-a-propos-porteurs {
    padding-top: 95px;
  }
}
.line-a-propos-porteurs .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-a-propos-porteurs .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(1) .content {
  padding-right: 60px;
}
@media (max-width: 991px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(1) .content {
    padding-right: 0;
    padding-bottom: 100px;
    text-align: center;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 25px;
}
.line-a-propos-porteurs .container > .row > div:nth-child(1) .content .btn {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(2) .content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content h3 {
  font-weight: 300;
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content hr {
  border-color: #9695D3;
  margin-top: 25px;
  margin-bottom: 90px;
  left: 0;
  margin-left: 0;
  width: 90%;
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content p {
  position: relative;
}
@media (max-width: 767px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(2) .content p {
    text-align: center;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content p img {
  border-radius: 100px;
  width: 182px;
  height: 182px;
  margin-top: -55px;
  object-fit: cover;
  object-position: center center;
  position: absolute;
}
@media (max-width: 767px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(2) .content p img {
    position: relative;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content h4 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content h4 {
  margin-left: 240px;
}
@media (max-width: 1199px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(2) .content h4 {
    margin-left: 220px;
  }
}
@media (max-width: 767px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(2) .content h4 {
    margin-left: 0;
    text-align: center;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content h5 {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content h5 {
  margin-left: 240px;
}
@media (max-width: 1199px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(2) .content h5 {
    margin-left: 220px;
  }
}
@media (max-width: 767px) {
  .line-a-propos-porteurs .container > .row > div:nth-child(2) .content h5 {
    margin-left: 0;
    text-align: center;
  }
}
.line-a-propos-porteurs .container > .row > div:nth-child(2) .content br {
  display: block !important;
}

.line-a-propos-equipe {
  padding-top: 80px;
  padding-bottom: 170px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .line-a-propos-equipe {
    padding-top: 55px;
    padding-bottom: 90px;
  }
}
.line-a-propos-equipe .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-a-propos-equipe .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content {
  padding-right: 20px;
}
@media (max-width: 991px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) .content {
    padding-right: 0;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) .content h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content h3 {
  font-weight: 300;
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content hr {
  border-color: #9695D3;
  margin-top: 25px;
  margin-bottom: 90px;
  left: 0;
  margin-left: 0;
  width: 90%;
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content p {
  position: relative;
}
@media (max-width: 767px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) .content p {
    text-align: center;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content p img {
  border-radius: 100px;
  width: 182px;
  height: 182px;
  margin-top: -55px;
  object-fit: cover;
  object-position: center center;
  position: absolute;
}
@media (max-width: 767px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) .content p img {
    position: relative;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content h4 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content h4 {
  margin-left: 240px;
}
@media (max-width: 1199px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) .content h4 {
    margin-left: 220px;
  }
}
@media (max-width: 767px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) .content h4 {
    margin-left: 0;
    text-align: center;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content h5 {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content h5 {
  margin-left: 240px;
}
@media (max-width: 1199px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) .content h5 {
    margin-left: 220px;
  }
}
@media (max-width: 767px) {
  .line-a-propos-equipe .container > .row > div:nth-child(1) .content h5 {
    margin-left: 0;
    text-align: center;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(1) .content br {
  display: block !important;
}
@media (max-width: 991px) {
  .line-a-propos-equipe .container > .row > div:nth-child(2) {
    width: 100%;
    order: 1;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(2) .content {
  padding-right: 60px;
}
@media (max-width: 991px) {
  .line-a-propos-equipe .container > .row > div:nth-child(2) .content {
    padding-right: 0;
    text-align: center;
    padding-bottom: 65px;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(2) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-a-propos-equipe .container > .row > div:nth-child(2) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-a-propos-equipe .container > .row > div:nth-child(2) .content h2 {
  margin-bottom: 25px;
}
.line-a-propos-equipe .container > .row > div:nth-child(2) .content .btn {
  margin-top: 20px;
}

.line-a-propos-demarche {
  padding-top: 105px;
  padding-bottom: 50px;
  position: relative;
}
.line-a-propos-demarche:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  background-color: #f7f7f7;
  background-position: left top;
  background-size: cover;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  top: 0;
  left: auto;
  right: 0;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .line-a-propos-demarche:before {
    width: calc(50% + 485px);
  }
}
@media (max-width: 991px) {
  .line-a-propos-demarche:before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.line-a-propos-demarche .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-a-propos-demarche .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-a-propos-demarche .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-a-propos-demarche .container > .row > div:nth-child(1) .content {
  padding-right: 60px;
}
@media (max-width: 1399px) {
  .line-a-propos-demarche .container > .row > div:nth-child(1) .content {
    padding-left: 80px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .line-a-propos-demarche .container > .row > div:nth-child(1) .content {
    padding-left: 0;
    text-align: center;
  }
}
.line-a-propos-demarche .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-a-propos-demarche .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-a-propos-demarche .container > .row > div:nth-child(2) {
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .line-a-propos-demarche .container > .row > div:nth-child(2) {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .line-a-propos-demarche .container > .row > div:nth-child(2) {
    width: 100%;
    padding-top: 40px;
  }
}

.line-a-propos-secteurs-titre {
  padding-top: 85px;
  padding-bottom: 60px;
}
.line-a-propos-secteurs-titre .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-a-propos-secteurs-titre .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-a-propos-secteurs-titre .content h2 {
  margin-bottom: 25px;
}

.line-a-propos-secteurs {
  padding-top: 20px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .line-a-propos-secteurs {
    padding-bottom: 60px;
  }
}
.line-a-propos-secteurs .container > .row > div .content ul {
  list-style: none;
  padding-left: 0 !important;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 95px 80px;
}
@media (max-width: 991px) {
  .line-a-propos-secteurs .container > .row > div .content ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 95px 60px;
  }
}
@media (max-width: 767px) {
  .line-a-propos-secteurs .container > .row > div .content ul {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 95px 60px;
  }
}
.line-a-propos-secteurs .container > .row > div .content ul li {
  color: #E85652 !important;
  text-align: center;
}
.line-a-propos-secteurs .container > .row > div .content ul li img {
  border-radius: 100px;
  margin-bottom: 15px;
}
.line-a-propos-secteurs .container > .row > div .content ul li h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .line-a-propos-secteurs .container > .row > div .content ul li h3 {
    font-size: 20px;
    line-height: 25px;
  }
}
.line-a-propos-secteurs .container > .row > div .content ul li h3 {
  font-weight: bold;
}
.line-a-propos-secteurs .container > .row > div .content ul li hr {
  border-color: rgba(63, 38, 103, 0.349);
  margin-top: 5px;
  margin-bottom: 5px;
}
.line-a-propos-secteurs .container > .row > div .content ul li br {
  display: block !important;
}
.line-a-propos-secteurs .container > .row > div .content ul li:last-child {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 15px 25px;
}
@media (max-width: 991px) {
  .line-a-propos-secteurs .container > .row > div .content ul li:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .line-a-propos-secteurs .container > .row > div .content ul li:last-child {
    grid-column: span 1;
    flex-direction: column;
    gap: 30px;
  }
}
.line-a-propos-secteurs .container > .row > div .content ul li:last-child .btn-cta-2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-a-propos-secteurs .container > .row > div .content ul li:last-child .btn-cta-2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-a-propos-secteurs .container > .row > div .content ul li:last-child .btn-cta-2 {
  margin-bottom: 0;
}
.line-a-propos-secteurs .container > .row > div .content ul li:last-child .btn-cta-2 strong {
  font-weight: 500;
  color: #E85652;
}
@media (min-width: 768px) {
  .line-a-propos-secteurs .container > .row > div .content ul li:last-child .btn-cta-2:before {
    width: 52px;
    height: 50px;
    right: 20px;
    top: 55px;
  }
}
@media (min-width: 768px) {
  .line-a-propos-secteurs .container > .row > div .content ul li:last-child .btn-cta-2:after {
    width: 198px;
    height: 198px;
    right: -55px;
    top: -20px;
  }
}
.line-a-propos-secteurs .container > .row > div .content ul li:last-child {
  /*
  h3 {
      @include h3;
      text-align: right;
      margin-bottom: 0;
      @include max-sm {
          text-align: center;
          order: 2;
      }
      strong {
          font-weight: 500;
          color: $secondary;
      }
  }
  h4 {
      margin-bottom: 0;
      @include max-sm {
          text-align: center;
          order: 1;
      }
      img {
          width: 200px!important;
          height: 198px!important;
          margin-bottom: 0;
      }
  }
      */
}

.line-equipe-liste {
  padding-top: 15px;
}
.line-equipe-liste.disabled .container > .row > div .content > .row table.accordeon.active tbody tr:first-child .btn-secondary {
  transform: rotate(0) !important;
}
.line-equipe-liste.disabled .container > .row > div .content > .row table.accordeon tbody tr:first-child {
  cursor: default !important;
}
.line-equipe-liste.disabled .container > .row > div .content > .row table.accordeon tbody tr:first-child td:hover img {
  filter: brightness(1);
}
.line-equipe-liste.disabled .container > .row > div .content > .row table.accordeon tbody tr:first-child td:hover .btn-secondary {
  cursor: default !important;
  background-color: #E85652;
}
.line-equipe-liste.equipe-2col .container > .row > .div .content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 160px;
}
@media (max-width: 767px) {
  .line-equipe-liste.equipe-2col .container > .row > .div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 10px;
  }
}
.line-equipe-liste .container > .row > div > h2 {
  text-align: center;
  padding-bottom: 20px;
}
.line-equipe-liste .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 160px;
}
@media (max-width: 1199px) {
  .line-equipe-liste .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 100px;
  }
}
@media (max-width: 991px) {
  .line-equipe-liste .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 10px;
  }
}
@media (max-width: 767px) {
  .line-equipe-liste .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 10px;
  }
}
.line-equipe-liste .container > .row > div .content > .row {
  margin-top: 0;
}
.line-equipe-liste .container > .row > div .content > .row table.accordeon tbody tr:first-child td img {
  transition: all;
  border-radius: 50%;
}
.line-equipe-liste .container > .row > div .content > .row table.accordeon tbody tr:first-child td .btn-secondary {
  transition: all;
}
.line-equipe-liste .container > .row > div .content > .row table.accordeon tbody tr:first-child td:hover img {
  filter: brightness(0.8);
}
.line-equipe-liste .container > .row > div .content > .row table.accordeon tbody tr:first-child td:hover .btn-secondary {
  background-color: #9695D3;
  filter: brightness(1);
}

.line-equipe-cta {
  padding-top: 105px;
  padding-bottom: 215px;
}
@media (max-width: 991px) {
  .line-equipe-cta {
    padding-bottom: 175px;
  }
}
.line-equipe-cta .content {
  text-align: center;
}

.line-partenaires-titre .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-partenaires-titre .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.line-partenaires-logos {
  padding-top: 30px;
  padding-bottom: 55px;
}
.line-partenaires-logos.nopaddingbottom {
  padding-bottom: 0;
}
.line-partenaires-logos .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px 0;
}
.line-partenaires-logos .content p {
  width: 33%;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .line-partenaires-logos .content p {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .line-partenaires-logos .content p {
    width: 100%;
    gap: 20px 0;
  }
}

.line-actualites-liste {
  padding-bottom: 120px;
}
.line-actualites-liste.line-rapports .news-mosaic {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 170px;
}
@media (max-width: 991px) {
  .line-actualites-liste.line-rapports .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 170px;
  }
}
@media (max-width: 767px) {
  .line-actualites-liste.line-rapports .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 85px;
  }
}
.line-actualites-liste.line-rapports .news-mosaic .paginationControl {
  grid-column: span 2;
}
.line-actualites-liste #newsFilterForm {
  padding-bottom: 84px;
}
.line-actualites-liste #newsFilterForm label {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-actualites-liste #newsFilterForm label {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-actualites-liste .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px 35px;
}
@media (max-width: 991px) {
  .line-actualites-liste .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 35px;
  }
}
@media (max-width: 767px) {
  .line-actualites-liste .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 80px 35px;
  }
}
.line-actualites-liste .news-mosaic > .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.line-actualites-liste .news-mosaic > .row > div {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.line-actualites-liste .news-mosaic > .row > div a {
  transition: all 300ms;
}
.line-actualites-liste .news-mosaic > .row > div a img.news-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 220px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  border: none;
  opacity: 1;
  animation: none;
}
.line-actualites-liste .news-mosaic > .row > div a:hover {
  opacity: 0.7;
  transition: all 300ms;
}
.line-actualites-liste .news-mosaic > .row > div h3 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-actualites-liste .news-mosaic > .row > div h3 {
  font-weight: 500;
  opacity: 1;
  animation: none;
}
.line-actualites-liste .news-mosaic > .row > div h3 a {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-actualites-liste .news-mosaic > .row > div h3 a {
  font-weight: 500;
  text-decoration: none !important;
  color: #3F2667 !important;
  opacity: 1;
  animation: none;
}
.line-actualites-liste .news-mosaic > .row > div h3 a:hover {
  text-decoration: none !important;
}
.line-actualites-liste .news-mosaic > .row > div p.e-date {
  position: relative;
  margin-bottom: 0;
  margin-right: 16px;
  float: left;
  width: auto;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-transform: inherit;
  opacity: 1;
  animation: none;
}
.line-actualites-liste .news-mosaic > .row > div p.e-date:after {
  content: "|";
  display: block;
  position: absolute;
  top: 0;
  right: -10px;
}
.line-actualites-liste .news-mosaic > .row > div a.news-category {
  margin-bottom: 0;
  float: left;
  width: auto;
  clear: right;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none !important;
  opacity: 1;
  animation: none;
}
.line-actualites-liste .news-mosaic > .row > div p.news-keywords {
  margin-bottom: 0;
  opacity: 1;
  animation: none;
}
.line-actualites-liste .news-mosaic > .row > div div.news-intro {
  padding-top: 15px;
  clear: left;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .line-actualites-liste .news-mosaic > .row > div div.news-intro {
    font-size: 20px;
    line-height: 25px;
  }
}
.line-actualites-liste .news-mosaic > .row > div div.news-intro {
  margin-bottom: 0;
  opacity: 1;
  animation: none;
}
.line-actualites-liste .news-mosaic > .row > div div.news-intro p {
  margin-bottom: 0;
}
.line-actualites-liste .news-mosaic > .row > div div.news-intro a {
  text-decoration: none !important;
}
.line-actualites-liste .news-mosaic > .row > div > a:last-of-type {
  margin-top: 15px;
  clear: left;
  float: left;
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.line-actualites-liste .news-mosaic > .row > div > a:last-of-type:hover, .line-actualites-liste .news-mosaic > .row > div > a:last-of-type:active, .line-actualites-liste .news-mosaic > .row > div > a:last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-actualites-liste .news-mosaic > .row > div > a:last-of-type {
    white-space: normal !important;
  }
}
.line-actualites-liste .news-mosaic > .row > div > a:last-of-type {
  background-color: #E85652;
  transition: all 150ms;
  text-indent: -10000px;
  width: 35px;
  height: 35px;
}
.line-actualites-liste .news-mosaic > .row > div > a:last-of-type:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  margin-left: 8px;
  filter: brightness(5);
}
.line-actualites-liste .news-mosaic > .row > div > a:last-of-type:hover, .line-actualites-liste .news-mosaic > .row > div > a:last-of-type:active, .line-actualites-liste .news-mosaic > .row > div > a:last-of-type:focus {
  background-color: #9695D3;
}
.line-actualites-liste a.viewAll {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.line-actualites-liste a.viewAll:hover, .line-actualites-liste a.viewAll:active, .line-actualites-liste a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-actualites-liste a.viewAll {
    white-space: normal !important;
  }
}
.line-actualites-liste a.viewAll {
  background-color: #E85652;
  color: #fff;
  transition: all 150ms;
  border: none;
  padding: 10px 50px 10px 50px;
  height: 60px;
  width: auto;
  text-indent: 0;
}
.line-actualites-liste a.viewAll:hover, .line-actualites-liste a.viewAll:active, .line-actualites-liste a.viewAll:focus {
  background-color: #9695D3;
  color: #fff;
  text-decoration: none;
}
.line-actualites-liste a.viewAll:after {
  display: none;
}

.line-actualites-details {
  padding-top: 50px;
  padding-bottom: 20px;
}
.line-actualites-details .btn-primary {
  text-indent: 0 !important;
  width: auto !important;
  font-size: 16px !important;
  line-height: 24px !important;
  height: auto !important;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 25px !important;
  border: 1px solid #9695D3 !important;
  padding: 8px 60px 8px 30px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  color: #000 !important;
  text-transform: inherit !important;
  font-weight: 500 !important;
  background-color: transparent !important;
}
@media (max-width: 575px) {
  .line-actualites-details .btn-primary {
    padding: 8px 55px 8px 25px !important;
  }
}
.line-actualites-details .btn-primary:before {
  content: "" !important;
  right: 0 !important;
  position: absolute !important;
  display: inline-block !important;
  width: 42px !important;
  height: 40px !important;
  background-color: #9695D3 !important;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9 !important;
  transition: all 300ms !important;
}
.line-actualites-details .btn-primary:after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  width: 20px !important;
  height: 15px !important;
  right: 11px !important;
  top: 12px !important;
  margin-top: 0 !important;
  z-index: 10 !important;
  filter: brightness(5) !important;
}
.line-actualites-details .btn-primary:hover, .line-actualites-details .btn-primary:focus {
  background-color: transparent !important;
  text-decoration: none !important;
  color: #000 !important;
}
.line-actualites-details .btn-primary:hover:before, .line-actualites-details .btn-primary:focus:before {
  background-color: #EBEFFE !important;
}
.line-actualites-details .btn-primary:hover:after, .line-actualites-details .btn-primary:focus:after {
  filter: brightness(1.5) hue-rotate(250deg) !important;
}
.line-actualites-details .container > .row > div .mod-article__wrapper {
  width: 760px;
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-actualites-details .container > .row > div .mod-article__wrapper {
    width: 100%;
  }
}
.line-actualites-details .container > .row > div .mod-article__wrapper .mod-article__category {
  order: 3;
  flex-basis: content;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .mod-article__title {
  order: 1;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .mod-article__published-date {
  order: 2;
  flex-basis: content;
  font-size: 18px;
  margin-bottom: 0;
  margin-right: 15px;
  position: relative;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .mod-article__published-date:after {
  content: "|";
  position: absolute;
  right: -9px;
  top: -1px;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content {
  order: 4;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content > img {
  border-radius: 8px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__intro {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__intro {
    font-size: 20px;
    line-height: 25px;
  }
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__intro {
  font-weight: 700;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__content {
  margin-top: 30px;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__content h2 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__content h6 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__content h6 {
    font-size: 20px;
    line-height: 25px;
  }
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__content h6 {
  font-weight: 600;
  margin-left: 45px;
  position: relative;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .news-content .mod-article__content h6:before {
  content: "";
  width: 16px;
  height: 100%;
  background-color: #3F2667;
  position: absolute;
  display: block;
  margin-left: -45px;
}
.line-actualites-details .container > .row > div .mod-article__wrapper .article-back-to-list-histo {
  order: 5;
}

.line-actualites-details-retour {
  padding-top: 0;
  padding-bottom: 190px;
}
@media (max-width: 991px) {
  .line-actualites-details-retour {
    padding-bottom: 100px;
  }
}
.line-actualites-details-retour .container > .row > div .content {
  width: 760px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-actualites-details-retour .container > .row > div .content {
    width: 100%;
  }
}

body.activities-details .line-evenements {
  padding-top: 60px;
}

.line-evenements .event-jumbotron__right h1, .line-evenements .event-jumbotron__right h2, .line-evenements .event-jumbotron__right h3, .line-evenements .event-jumbotron__right h4, .line-evenements .event-jumbotron__right h5, .line-evenements .event-jumbotron__right h6, .line-evenements .event-jumbotron__right ul, .line-evenements .event-jumbotron__right li, .line-evenements .event-jumbotron__right p, .line-evenements .event-jumbotron__right .h1, .line-evenements .event-jumbotron__right .h2, .line-evenements .event-jumbotron__right .h3, .line-evenements .event-jumbotron__right .h4, .line-evenements .event-jumbotron__right .h5, .line-evenements .event-jumbotron__right .h6, .line-evenements .event-jumbotron__right img {
  opacity: 1 !important;
}

.line-evenements {
  padding-top: 0;
  padding-bottom: 140px;
}
@media (max-width: 991px) {
  .line-evenements {
    padding-bottom: 100px;
  }
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right {
  display: flex;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left {
  width: 65%;
}
@media (max-width: 991px) {
  .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left {
    width: 100%;
    order: 1;
    margin-bottom: 80px;
  }
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__row-image-description .event-detail__image-wrapper img {
  border-radius: 8px;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__row-image-description .event-detail__description-wrapper h2 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper {
  margin-top: 60px;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav {
  display: block;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #9695D3;
  padding: 8px 60px 8px 30px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
@media (max-width: 575px) {
  .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary {
    padding: 8px 55px 8px 25px;
  }
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:before {
  content: "";
  right: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #9695D3;
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
  z-index: 9;
  transition: all 300ms;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  right: 11px;
  top: 12px;
  margin-top: 0;
  z-index: 10;
  filter: brightness(5);
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:hover, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:hover:before, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:focus:before {
  background-color: #EBEFFE;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:hover:after, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-primary:focus:after {
  filter: brightness(1.5) hue-rotate(250deg);
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default {
  text-indent: 0;
  width: auto;
  font-size: 16px;
  line-height: 24px;
  height: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px !important;
  border: 1px solid #E85652;
  padding: 8px 30px 8px 60px;
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-transform: inherit;
  font-weight: 500;
  background-color: transparent;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:before {
  content: "";
  left: 0;
  position: absolute;
  display: inline-block;
  width: 42px;
  height: 40px;
  background-color: #E85652;
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
  z-index: 0;
  transition: all 300ms;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  left: 11px;
  top: 12px;
  filter: brightness(5);
  transform: rotate(180deg);
  transition: all 300ms;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:hover, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:focus {
  background-color: transparent !important;
  text-decoration: none;
  color: #000;
  border: 1px solid #9695D3;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:hover:before, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:focus:before {
  background-color: #9695D3;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:hover:after, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .col-event-jumbotron__left .event-detail__actions-wrapper .event-detail__nav .event-detail__nav__cta a.btn-default:focus:after {
  filter: brightness(5);
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
  width: 45%;
}
@media (max-width: 991px) {
  .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right {
    width: 100%;
    order: 2;
  }
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Activites/bg-detail.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 5px;
  padding: 65px 40px 70px 40px;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__date {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__date {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__date {
  font-weight: bold;
  color: #fff;
  position: relative;
  margin-bottom: 50px;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__date:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  display: block;
  bottom: -20px;
  left: 0;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .calendar-link-content .v-btn {
  width: auto;
  height: auto;
  color: #fff !important;
  background-color: transparent !important;
  transition: all 150ms;
  border: 0 !important;
  border-radius: 0 !important;
  height: auto !important;
  font-size: 16px !important;
  padding: 0 !important;
  text-indent: 0 !important;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .calendar-link-content .v-btn:hover, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .calendar-link-content .v-btn:focus, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .calendar-link-content .v-btn:active {
  color: #fff !important;
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .calendar-link-content .v-btn:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYmVa1qSsf2Dxu9ZwPKEFGQd/asset/images/%2B_calendar.svg");
  width: 18px;
  height: 18px;
  margin-right: 10px;
  filter: brightness(5.5);
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .calendar-link-content .v-btn:after {
  display: none;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .calendar-link-content .v-btn i {
  display: none;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .calendar-link-content .links-dropdown {
  z-index: 10;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper {
  position: relative;
  margin-bottom: 40px;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  display: block;
  bottom: -30px;
  left: 0;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .event-info__title {
  color: #fff;
  margin-bottom: 0;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-place {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-event {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-city {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-state {
  display: none;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-zip {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__info .jumbotron__address-country {
  display: none;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info {
  display: flex;
  flex-direction: column;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .event-info__title {
  color: #fff;
  margin-bottom: 0;
  order: 2;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .contact, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .phone, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .contact a, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .phone a, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .email a {
  font-size: 18px !important;
  line-height: 24px !important;
  color: #fff !important;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .email {
  order: 3;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .email a {
  text-decoration: none !important;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right .event-jumbotron__contact-wrapper .address .address__contact-info .places {
  order: 1;
  font-size: 18px !important;
  line-height: 24px !important;
  color: #fff !important;
  color: #fff;
  margin-bottom: 20px;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right a.jumbotron__btn_subscribe {
  background-color: #E85652 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: none !important;
  padding: 10px 50px 10px 50px !important;
  height: 60px !important;
  width: auto !important;
  text-indent: 0 !important;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right a.jumbotron__btn_subscribe:hover, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right a.jumbotron__btn_subscribe:active, .line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right a.jumbotron__btn_subscribe:focus {
  background-color: #9695D3 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.line-evenements .zone-event .row .event-detail .row-event-jumbotron__left-right .row-event-jumbotron__right .event-jumbotron__right a.jumbotron__btn_subscribe:after {
  display: none !important;
}

.line-nous-joindre-coordonnees {
  padding-top: 50px;
  padding-bottom: 110px;
}
@media (max-width: 991px) {
  .line-nous-joindre-coordonnees {
    padding-bottom: 60px;
  }
}
.line-nous-joindre-coordonnees .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-nous-joindre-coordonnees .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-nous-joindre-coordonnees .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-nous-joindre-coordonnees .container > .row > div:nth-child(1) .content {
    width: 100%;
    padding-bottom: 40px;
  }
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(1) .content img {
  width: 100% !important;
}
@media (max-width: 991px) {
  .line-nous-joindre-coordonnees .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content {
  margin-left: 60px;
}
@media (max-width: 991px) {
  .line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content {
    margin-left: 0;
  }
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content br {
  display: block !important;
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content h2 {
  margin-bottom: 30px;
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content ul {
  list-style: none;
  padding-left: 50px !important;
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content ul li {
  margin-bottom: 15px !important;
  position: relative;
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content ul li:nth-child(1):before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Nous%20joindre/icone-pin.svg") no-repeat;
  width: 24px;
  height: 30px;
  position: absolute;
  left: -50px;
  top: 3px;
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content ul li:nth-child(2):before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Nous%20joindre/icon-tel.svg") no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  left: -50px;
  top: 0;
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content ul li:nth-child(3) a {
  text-decoration: none !important;
}
.line-nous-joindre-coordonnees .container > .row > div:nth-child(2) .content ul li:nth-child(3):before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Nous%20joindre/icon-email.svg") no-repeat;
  width: 27px;
  height: 21px;
  position: absolute;
  left: -50px;
  top: 2px;
}

.line-nous-joindre-formulaire {
  position: relative;
  padding-top: 75px;
  padding-bottom: 95px;
  margin-bottom: 135px;
}
.line-nous-joindre-formulaire.margintop {
  margin-top: 60px;
}
.line-nous-joindre-formulaire:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  background-color: #3F2667;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  top: 0;
  left: 0;
  right: auto;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-nous-joindre-formulaire:before {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .line-nous-joindre-formulaire .container > .row {
    margin-right: 60px;
  }
}
@media (max-width: 991px) {
  .line-nous-joindre-formulaire .container > .row {
    margin-right: -15px;
  }
}
.line-nous-joindre-formulaire .container > .row > div > h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}
.line-nous-joindre-formulaire .container > .row > div form label {
  color: #fff;
}
.line-nous-joindre-formulaire .formbuilder-confirmation-content h3, .line-nous-joindre-formulaire .formbuilder-confirmation-content p {
  color: #fff;
}

.line-initiatives-bg-purple {
  position: relative;
  margin-top: 20px;
  margin-bottom: 65px;
  padding-top: 110px;
  padding-bottom: 105px;
}
.line-initiatives-bg-purple:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Initiatives/img-background-mauve-initiatives.jpg") no-repeat;
  background-position: left top;
  background-size: cover;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  top: 0;
  left: 0;
  right: auto;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 991px) {
  .line-initiatives-bg-purple:before {
    width: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.line-initiatives-bg-purple .container > .row {
  display: flex;
  gap: 110px;
}
@media (max-width: 1399px) {
  .line-initiatives-bg-purple .container > .row {
    gap: 60px;
    padding-right: 60px;
  }
}
@media (max-width: 991px) {
  .line-initiatives-bg-purple .container > .row {
    padding-right: 0;
    flex-direction: column;
  }
}
.line-initiatives-bg-purple .container > .row:before {
  display: none;
}
.line-initiatives-bg-purple .container > .row:after {
  display: none;
}
@media (max-width: 991px) {
  .line-initiatives-bg-purple .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-initiatives-bg-purple .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-initiatives-bg-purple .container > .row > div h3 {
  color: #fff;
  margin-bottom: 22px;
}
.line-initiatives-bg-purple .container > .row > div h3 img {
  margin-bottom: 8px;
}
.line-initiatives-bg-purple .container > .row > div h4 {
  color: #fff;
  margin-top: -20px;
}
.line-initiatives-bg-purple .container > .row > div p {
  color: #fff;
}
.line-initiatives-bg-purple .container > .row > div p img {
  max-height: 280px;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 15px;
  border-radius: 4px;
  width: 100% !important;
}
.line-initiatives-bg-purple .container > .row > div hr {
  border-color: #9695D3;
  margin-bottom: 35px;
}
.line-initiatives-bg-purple .container > .row > div .btn {
  margin-top: 20px;
}

.line-initiatives-listes {
  padding-top: 60px;
  padding-bottom: 25px;
}
.line-initiatives-listes .container > .row {
  display: flex;
  gap: 110px;
}
@media (max-width: 1399px) {
  .line-initiatives-listes .container > .row {
    gap: 60px;
  }
}
@media (max-width: 991px) {
  .line-initiatives-listes .container > .row {
    flex-direction: column;
  }
}
.line-initiatives-listes .container > .row:before {
  display: none;
}
.line-initiatives-listes .container > .row:after {
  display: none;
}
@media (max-width: 991px) {
  .line-initiatives-listes .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-initiatives-listes .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-initiatives-listes .container > .row > div img {
  max-height: 280px;
  object-fit: cover;
  object-position: center center;
  margin-bottom: 15px;
  border-radius: 4px;
  width: 100% !important;
}
.line-initiatives-listes .container > .row > div h3 {
  margin-bottom: 22px;
}
.line-initiatives-listes .container > .row > div hr {
  border-color: #9695D3;
  margin-bottom: 35px;
}
.line-initiatives-listes .container > .row > div .btn {
  margin-top: 20px;
}

.line-initiatives-cta {
  padding-top: 40px;
  padding-bottom: 155px;
}
@media (max-width: 767px) {
  .line-initiatives-cta {
    padding-top: 80px;
  }
}
.line-initiatives-cta .content {
  text-align: center;
}
.line-initiatives-cta .content .btn {
  margin-right: 0;
}

.line-appels-projets-bg {
  position: relative;
  padding-top: 160px;
  padding-bottom: 140px;
}
.line-appels-projets-bg:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 576px);
  height: 100%;
  background-color: #3F2667;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Appels%20%C3%A0%20projets/background-mauve-appel.jpg") no-repeat;
  background-position: left top;
  background-size: cover;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  left: auto;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .line-appels-projets-bg:before {
    width: calc(50% + 485px);
  }
}
@media (max-width: 991px) {
  .line-appels-projets-bg:before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 991px) {
  .line-appels-projets-bg .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-appels-projets-bg .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-appels-projets-bg .container > .row > div:nth-child(1) .content {
  margin-left: 160px;
}
@media (max-width: 1199px) {
  .line-appels-projets-bg .container > .row > div:nth-child(1) .content {
    margin-left: 100px;
  }
}
@media (max-width: 991px) {
  .line-appels-projets-bg .container > .row > div:nth-child(1) .content {
    margin-left: 0;
  }
}
.line-appels-projets-bg .container > .row > div:nth-child(1) .content h1, .line-appels-projets-bg .container > .row > div:nth-child(1) .content h2, .line-appels-projets-bg .container > .row > div:nth-child(1) .content h3, .line-appels-projets-bg .container > .row > div:nth-child(1) .content h4, .line-appels-projets-bg .container > .row > div:nth-child(1) .content h5, .line-appels-projets-bg .container > .row > div:nth-child(1) .content h6, .line-appels-projets-bg .container > .row > div:nth-child(1) .content p, .line-appels-projets-bg .container > .row > div:nth-child(1) .content ul, .line-appels-projets-bg .container > .row > div:nth-child(1) .content li, .line-appels-projets-bg .container > .row > div:nth-child(1) .content a {
  color: #fff;
}
.line-appels-projets-bg .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-appels-projets-bg .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-appels-projets-bg .container > .row > div:nth-child(1) .content h2 {
  position: relative;
}
@media (max-width: 991px) {
  .line-appels-projets-bg .container > .row > div:nth-child(1) .content h2 {
    margin-left: 40px;
  }
}
.line-appels-projets-bg .container > .row > div:nth-child(1) .content h2:before {
  content: "";
  width: 4px;
  height: calc(100% - 15px);
  background-color: #fff;
  position: absolute;
  top: 8px;
  left: -40px;
}
.line-appels-projets-bg .container > .row > div:nth-child(1) .content h2 br {
  display: block !important;
}
@media (max-width: 991px) {
  .line-appels-projets-bg .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-appels-projets-bg .container > .row > div:nth-child(2) .content {
  text-align: left;
}
@media (max-width: 991px) {
  .line-appels-projets-bg .container > .row > div:nth-child(2) .content {
    padding-top: 20px;
  }
}
.line-appels-projets-bg .container > .row > div:nth-child(2) .content h1, .line-appels-projets-bg .container > .row > div:nth-child(2) .content h2, .line-appels-projets-bg .container > .row > div:nth-child(2) .content h3, .line-appels-projets-bg .container > .row > div:nth-child(2) .content h4, .line-appels-projets-bg .container > .row > div:nth-child(2) .content h5, .line-appels-projets-bg .container > .row > div:nth-child(2) .content h6, .line-appels-projets-bg .container > .row > div:nth-child(2) .content p, .line-appels-projets-bg .container > .row > div:nth-child(2) .content ul, .line-appels-projets-bg .container > .row > div:nth-child(2) .content li, .line-appels-projets-bg .container > .row > div:nth-child(2) .content a {
  color: #fff;
}

.line-appels-projets-sommaire {
  padding-top: 120px;
}
.line-appels-projets-sommaire .container > .row > div > h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-appels-projets-sommaire .container > .row > div > h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.line-defis-innovation-titre {
  padding-top: 25px;
}
.line-defis-innovation-titre .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-defis-innovation-titre .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.line-defis-innovation-2col {
  padding-top: 25px;
  padding-bottom: 95px;
}
@media (max-width: 991px) {
  .line-defis-innovation-2col {
    padding-bottom: 145px;
  }
}
@media (max-width: 767px) {
  .line-defis-innovation-2col {
    padding-bottom: 145px;
  }
}
@media (max-width: 575px) {
  .line-defis-innovation-2col {
    padding-bottom: 95px;
  }
}
@media (max-width: 991px) {
  .line-defis-innovation-2col .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-defis-innovation-2col .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-defis-innovation-2col .container > .row > div:nth-child(1) .content {
  margin-right: 40px;
}
@media (max-width: 991px) {
  .line-defis-innovation-2col .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-defis-innovation-2col .container > .row > div:nth-child(2) .content {
    padding-top: 30px;
  }
}
.line-defis-innovation-2col .container > .row > div:nth-child(2) .content a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.line-defis-innovation-2col .container > .row > div:nth-child(2) .content a:hover:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/video-play-hover.svg");
}
.line-defis-innovation-2col .container > .row > div:nth-child(2) .content a:after {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/video-play.svg");
  width: 97px;
  height: 99px;
  display: block;
  position: absolute;
}
.line-defis-innovation-2col .container > .row > div:nth-child(2) .content a img {
  width: 100% !important;
}

.line-defis-innovation-bg {
  position: relative;
  padding-top: 125px;
  padding-bottom: 140px;
}
@media (max-width: 991px) {
  .line-defis-innovation-bg {
    padding-top: 90px;
    padding-bottom: 80px;
  }
}
.line-defis-innovation-bg:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 576px);
  height: 100%;
  background-color: #3F2667;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Defis%20Innovation/background-mauve-defis.jpg") no-repeat;
  background-position: left top;
  background-size: cover;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  left: auto;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .line-defis-innovation-bg:before {
    width: calc(50% + 485px);
  }
}
@media (max-width: 991px) {
  .line-defis-innovation-bg:before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 991px) {
  .line-defis-innovation-bg .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1199px) {
  .line-defis-innovation-bg .container > .row > div:nth-child(1) {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  .line-defis-innovation-bg .container > .row > div:nth-child(1) {
    width: 100%;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.line-defis-innovation-bg .container > .row > div:nth-child(1) .content {
  margin-left: 160px;
}
@media (max-width: 991px) {
  .line-defis-innovation-bg .container > .row > div:nth-child(1) .content {
    margin-left: 0;
  }
}
.line-defis-innovation-bg .container > .row > div:nth-child(1) .content h1, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content h2, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content h3, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content h4, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content h5, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content h6, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content p, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content ul, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content li, .line-defis-innovation-bg .container > .row > div:nth-child(1) .content a {
  color: #fff;
}
.line-defis-innovation-bg .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-defis-innovation-bg .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-defis-innovation-bg .container > .row > div:nth-child(1) .content h2 {
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .line-defis-innovation-bg .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-defis-innovation-bg .container > .row > div:nth-child(2) .content {
  margin-left: 160px;
  text-align: left;
}
@media (max-width: 991px) {
  .line-defis-innovation-bg .container > .row > div:nth-child(2) .content {
    margin-left: 140px;
  }
}
.line-defis-innovation-bg .container > .row > div:nth-child(2) .content h1, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content h2, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content h3, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content h4, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content h5, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content h6, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content p, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content ul, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content li, .line-defis-innovation-bg .container > .row > div:nth-child(2) .content a {
  color: #fff;
}
.line-defis-innovation-bg .container > .row > div:nth-child(2) .content p {
  position: relative;
}
@media (max-width: 991px) {
  .line-defis-innovation-bg .container > .row > div:nth-child(2) .content p {
    min-height: 110px;
  }
}
.line-defis-innovation-bg .container > .row > div:nth-child(2) .content img {
  position: absolute;
  margin-left: -130px;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .line-defis-innovation-bg .container > .row > div:nth-child(2) .content img {
    margin-bottom: 15px;
  }
}

.line-defis-innovation-approvisionnement {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .line-defis-innovation-approvisionnement {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}
.line-defis-innovation-approvisionnement .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-defis-innovation-approvisionnement .container > .row {
    flex-direction: column;
  }
}
.line-defis-innovation-approvisionnement .container > .row > div:nth-child(1) {
  width: 54%;
}
@media (max-width: 991px) {
  .line-defis-innovation-approvisionnement .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-defis-innovation-approvisionnement .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-defis-innovation-approvisionnement .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-defis-innovation-approvisionnement .container > .row > div:nth-child(2) {
  width: 46%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .line-defis-innovation-approvisionnement .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-defis-innovation-approvisionnement .container > .row > div:nth-child(2) .content {
  text-align: center;
}
@media (max-width: 991px) {
  .line-defis-innovation-approvisionnement .container > .row > div:nth-child(2) .content {
    margin-top: 40px;
  }
}
.line-defis-innovation-approvisionnement .container > .row > div:nth-child(2) .content img {
  margin-bottom: 160px;
}
@media (max-width: 991px) {
  .line-defis-innovation-approvisionnement .container > .row > div:nth-child(2) .content img {
    margin-bottom: 10px;
  }
}

.line-defis-innovation-processus-titre {
  padding-top: 60px;
  padding-bottom: 60px;
}

.line-defis-innovation-processus {
  padding-bottom: 60px;
}
.line-defis-innovation-processus .container > .row > div .content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 30px;
}
@media (max-width: 991px) {
  .line-defis-innovation-processus .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 30px;
  }
}
@media (max-width: 767px) {
  .line-defis-innovation-processus .container > .row > div .content {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px 30px;
  }
}
.line-defis-innovation-processus .container > .row > div .content > .row {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table {
  margin-bottom: 0 !important;
  background-color: #F5F5F5;
  border-radius: 10px;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table.active tbody tr:first-child:after {
  transform: rotate(90deg);
  left: calc(50% - 9px);
  bottom: 19px;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table tbody tr:first-child {
  cursor: pointer;
  display: block;
  background-color: #F5F5F5;
  padding: 0 15px 15px 15px;
  position: relative;
  border-radius: 8px;
  height: 220px;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table tbody tr:first-child:hover:before {
  content: "";
  background-color: #9695D3;
  transition: all 400ms;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table tbody tr:first-child:before {
  content: "";
  background-color: #E85652;
  width: 35px;
  height: 35px;
  border-radius: 35px;
  display: block;
  position: absolute;
  left: calc(50% - 17px);
  bottom: 10px;
  transition: all 400ms;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table tbody tr:first-child:after {
  content: "";
  display: block;
  position: absolute;
  background: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  left: calc(50% - 8px);
  bottom: 20px;
  filter: brightness(5);
  transition: transform 150ms;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table tbody tr:first-child td {
  text-align: center;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table tbody tr:first-child td p {
  margin-bottom: 0;
}
.line-defis-innovation-processus .container > .row > div .content > .row .item .intro table tbody tr td ul li {
  font-size: 16px !important;
  line-height: 21px !important;
  font-weight: 400 !important;
  margin-bottom: 15px !important;
}

.line-defis-innovation-faq {
  padding-top: 60px;
  padding-bottom: 90px;
}
.line-defis-innovation-faq .container > .row > div > h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-defis-innovation-faq .container > .row > div > h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-defis-innovation-faq .container > .row > div > h2 {
  margin-bottom: 45px;
}

.line-defis-innovation-defis {
  padding-top: 110px;
  background-color: #f7f7f7;
}
.line-defis-innovation-defis .container {
  position: relative;
}
.line-defis-innovation-defis .container:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #9695D3;
}
.line-defis-innovation-defis .container > .row {
  margin-bottom: 140px;
}
.line-defis-innovation-defis .container > .row > div > h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-defis-innovation-defis .container > .row > div > h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-defis-innovation-defis .container > .row > div > h2 {
  margin-bottom: 35px;
}
.line-defis-innovation-defis .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 94px;
}
@media (max-width: 991px) {
  .line-defis-innovation-defis .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 94px;
  }
}
@media (max-width: 767px) {
  .line-defis-innovation-defis .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 94px;
  }
}
.line-defis-innovation-defis .news-mosaic > .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.line-defis-innovation-defis .news-mosaic > .row > div {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.line-defis-innovation-defis .news-mosaic > .row > div a .news-thumbnail {
  margin-bottom: 15px;
  width: 100%;
  height: 196px !important;
  object-fit: cover;
  object-position: center center;
  border: none;
  border-radius: 8px;
}
.line-defis-innovation-defis .news-mosaic > .row > div h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-defis-innovation-defis .news-mosaic > .row > div h3 {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-defis-innovation-defis .news-mosaic > .row > div h3 {
  color: #3F2667 !important;
}
.line-defis-innovation-defis .news-mosaic > .row > div h3 a {
  color: #3F2667 !important;
  text-decoration: none !important;
}
.line-defis-innovation-defis .news-mosaic > .row > div h3 a:hover {
  text-decoration: none !important;
}
.line-defis-innovation-defis .news-mosaic > .row > div p.itemInfos.e-date {
  margin-bottom: 0;
}
.line-defis-innovation-defis .news-mosaic > .row > div p.news-keywords {
  margin-bottom: 0;
}
.line-defis-innovation-defis .news-mosaic > .row > div div.news-intro {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .line-defis-innovation-defis .news-mosaic > .row > div div.news-intro {
    font-size: 20px;
    line-height: 25px;
  }
}
.line-defis-innovation-defis a.viewAll {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.line-defis-innovation-defis a.viewAll:hover, .line-defis-innovation-defis a.viewAll:active, .line-defis-innovation-defis a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-defis-innovation-defis a.viewAll {
    white-space: normal !important;
  }
}
.line-defis-innovation-defis a.viewAll {
  background-color: #E85652;
  color: #fff;
  transition: all 150ms;
  border: none;
  padding: 10px 50px 10px 50px;
  height: 60px;
  width: auto;
  text-indent: 0;
}
.line-defis-innovation-defis a.viewAll:hover, .line-defis-innovation-defis a.viewAll:active, .line-defis-innovation-defis a.viewAll:focus {
  background-color: #9695D3;
  color: #fff;
  text-decoration: none;
}
.line-defis-innovation-defis a.viewAll:after {
  display: none;
}

.line-numerisation-2col {
  padding-top: 5px;
  padding-bottom: 40px;
}
.line-numerisation-2col .container > .row {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
@media (max-width: 991px) {
  .line-numerisation-2col .container > .row {
    flex-direction: column;
    gap: 10px;
  }
}
.line-numerisation-2col .container > .row:before, .line-numerisation-2col .container > .row:after {
  display: none;
}
.line-numerisation-2col .container > .row > div:nth-child(1) {
  width: 45%;
}
@media (max-width: 991px) {
  .line-numerisation-2col .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-numerisation-2col .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-numerisation-2col .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-numerisation-2col .container > .row > div:nth-child(2) {
  width: 55%;
}
@media (max-width: 991px) {
  .line-numerisation-2col .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-numerisation-2col-image-text {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media (max-width: 991px) {
  .line-numerisation-2col-image-text {
    padding-top: 20px;
    padding-bottom: 60px;
  }
}
.line-numerisation-2col-image-text .container > .row {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
@media (max-width: 991px) {
  .line-numerisation-2col-image-text .container > .row {
    flex-direction: column;
    gap: 10px;
  }
}
.line-numerisation-2col-image-text .container > .row:before, .line-numerisation-2col-image-text .container > .row:after {
  display: none;
}
.line-numerisation-2col-image-text .container > .row > div:nth-child(1) {
  width: 45%;
}
@media (max-width: 991px) {
  .line-numerisation-2col-image-text .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-numerisation-2col-image-text .container > .row > div:nth-child(1) .content {
  padding-right: 40px;
}
@media (max-width: 991px) {
  .line-numerisation-2col-image-text .container > .row > div:nth-child(1) .content {
    padding-right: 0;
  }
}
.line-numerisation-2col-image-text .container > .row > div:nth-child(1) .content img {
  border-radius: 4px;
  margin-bottom: 30px;
}
.line-numerisation-2col-image-text .container > .row > div:nth-child(2) {
  width: 55%;
}
@media (max-width: 991px) {
  .line-numerisation-2col-image-text .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-numerisation-2col-image-text .container > .row > div:nth-child(2) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-numerisation-2col-image-text .container > .row > div:nth-child(2) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.line-numerisation-bg {
  position: relative;
  padding-top: 85px;
  padding-bottom: 70px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.line-numerisation-bg:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 576px);
  height: 100%;
  background-color: #3F2667;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Weave%20technical/img-background-mauve-weave.jpg") no-repeat;
  background-position: left top;
  background-size: cover;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  left: auto;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .line-numerisation-bg:before {
    width: calc(50% + 485px);
  }
}
@media (max-width: 991px) {
  .line-numerisation-bg:before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.line-numerisation-bg .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 991px) {
  .line-numerisation-bg .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-numerisation-bg .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-numerisation-bg .container > .row > div:nth-child(1) .content {
  margin-left: 160px;
}
@media (max-width: 1199px) {
  .line-numerisation-bg .container > .row > div:nth-child(1) .content {
    margin-left: 120px;
  }
}
@media (max-width: 991px) {
  .line-numerisation-bg .container > .row > div:nth-child(1) .content {
    margin-left: 0;
  }
}
.line-numerisation-bg .container > .row > div:nth-child(1) .content h1, .line-numerisation-bg .container > .row > div:nth-child(1) .content h2, .line-numerisation-bg .container > .row > div:nth-child(1) .content h3, .line-numerisation-bg .container > .row > div:nth-child(1) .content h4, .line-numerisation-bg .container > .row > div:nth-child(1) .content h5, .line-numerisation-bg .container > .row > div:nth-child(1) .content h6, .line-numerisation-bg .container > .row > div:nth-child(1) .content p, .line-numerisation-bg .container > .row > div:nth-child(1) .content ul, .line-numerisation-bg .container > .row > div:nth-child(1) .content li, .line-numerisation-bg .container > .row > div:nth-child(1) .content a {
  color: #fff;
}
.line-numerisation-bg .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-numerisation-bg .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-numerisation-bg .container > .row > div:nth-child(1) .content h2 {
  position: relative;
}
.line-numerisation-bg .container > .row > div:nth-child(2) {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .line-numerisation-bg .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-numerisation-bg .container > .row > div:nth-child(2) .content {
  text-align: left;
  margin-left: 150px;
}
@media (max-width: 991px) {
  .line-numerisation-bg .container > .row > div:nth-child(2) .content {
    padding-top: 30px;
    margin-left: 0;
  }
}
.line-numerisation-bg .container > .row > div:nth-child(2) .content h1, .line-numerisation-bg .container > .row > div:nth-child(2) .content h2, .line-numerisation-bg .container > .row > div:nth-child(2) .content h3, .line-numerisation-bg .container > .row > div:nth-child(2) .content h4, .line-numerisation-bg .container > .row > div:nth-child(2) .content h5, .line-numerisation-bg .container > .row > div:nth-child(2) .content h6, .line-numerisation-bg .container > .row > div:nth-child(2) .content p, .line-numerisation-bg .container > .row > div:nth-child(2) .content ul, .line-numerisation-bg .container > .row > div:nth-child(2) .content li, .line-numerisation-bg .container > .row > div:nth-child(2) .content a {
  color: #fff;
}
.line-numerisation-bg .container > .row > div:nth-child(2) .content ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.line-numerisation-bg .container > .row > div:nth-child(2) .content ul li {
  position: relative;
  color: #fff !important;
}
.line-numerisation-bg .container > .row > div:nth-child(2) .content ul li:not(:last-child) {
  padding-bottom: 30px;
}
.line-numerisation-bg .container > .row > div:nth-child(2) .content ul li:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/check-icon.png") no-repeat;
  width: 27px;
  height: 28px;
  position: absolute;
  left: -50px;
  top: 0;
}

.line-decors-virtuels-video .container > .row {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
@media (max-width: 991px) {
  .line-decors-virtuels-video .container > .row {
    flex-direction: column;
    gap: 10px;
  }
}
.line-decors-virtuels-video .container > .row:before, .line-decors-virtuels-video .container > .row:after {
  display: none;
}
.line-decors-virtuels-video .container > .row > div:nth-child(1) {
  width: 45%;
}
@media (max-width: 991px) {
  .line-decors-virtuels-video .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-decors-virtuels-video .container > .row > div:nth-child(1) .content {
  padding-right: 40px;
}
@media (max-width: 991px) {
  .line-decors-virtuels-video .container > .row > div:nth-child(1) .content {
    padding-right: 0;
  }
}
.line-decors-virtuels-video .container > .row > div:nth-child(1) .content .yt-wrapper {
  padding-top: 100%;
}
.line-decors-virtuels-video .container > .row > div:nth-child(1) .content img {
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .line-decors-virtuels-video .container > .row > div:nth-child(1) .content img {
    width: 100% !important;
  }
}
.line-decors-virtuels-video .container > .row > div:nth-child(1) .content iframe {
  border-radius: 8px;
}
.line-decors-virtuels-video .container > .row > div:nth-child(2) {
  width: 55%;
}
@media (max-width: 991px) {
  .line-decors-virtuels-video .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-decors-virtuels-video .container > .row > div:nth-child(2) .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .line-decors-virtuels-video .container > .row > div:nth-child(2) .content {
    padding-top: 20px;
  }
}
.line-decors-virtuels-video .container > .row > div:nth-child(2) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-decors-virtuels-video .container > .row > div:nth-child(2) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-decors-virtuels-video .container > .row > div:nth-child(2) .content h2 {
  font-size: 46px;
  line-height: 56px;
}

.line-decors-virtuels-img {
  padding-top: 50px;
}
.line-decors-virtuels-img .container > .row > div .content {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 34px 28px;
}
.line-decors-virtuels-img .container > .row > div .content p {
  width: 31.2%;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .line-decors-virtuels-img .container > .row > div .content p {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .line-decors-virtuels-img .container > .row > div .content p {
    width: 100%;
  }
}
.line-decors-virtuels-img .container > .row > div .content p:nth-child(4) {
  width: 48%;
}
@media (max-width: 767px) {
  .line-decors-virtuels-img .container > .row > div .content p:nth-child(4) {
    width: 100%;
  }
}
.line-decors-virtuels-img .container > .row > div .content p:nth-child(5) {
  width: 48%;
}
@media (max-width: 767px) {
  .line-decors-virtuels-img .container > .row > div .content p:nth-child(5) {
    width: 100%;
  }
}
.line-decors-virtuels-img .container > .row > div .content p img {
  margin-bottom: 0;
}

.line-weave-technicals-bg {
  position: relative;
  padding-top: 200px;
  padding-bottom: 160px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .line-weave-technicals-bg {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.line-weave-technicals-bg:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 576px);
  height: 100%;
  background-color: #3F2667;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Weave%20technical/img-background-mauve-weave.jpg") no-repeat;
  background-position: left top;
  background-size: cover;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  left: auto;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .line-weave-technicals-bg:before {
    width: calc(50% + 485px);
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-bg:before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.line-weave-technicals-bg .container > .row {
  display: flex;
  flex-direction: row;
}
@media (max-width: 991px) {
  .line-weave-technicals-bg .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-bg .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-weave-technicals-bg .container > .row > div:nth-child(1) .content {
  margin-left: 160px;
}
@media (max-width: 1199px) {
  .line-weave-technicals-bg .container > .row > div:nth-child(1) .content {
    margin-left: 120px;
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-bg .container > .row > div:nth-child(1) .content {
    margin-left: 0;
  }
}
.line-weave-technicals-bg .container > .row > div:nth-child(1) .content h1, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content h2, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content h3, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content h4, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content h5, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content h6, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content p, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content ul, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content li, .line-weave-technicals-bg .container > .row > div:nth-child(1) .content a {
  color: #fff;
}
.line-weave-technicals-bg .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-weave-technicals-bg .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-weave-technicals-bg .container > .row > div:nth-child(1) .content h2 {
  position: relative;
}
@media (max-width: 1199px) {
  .line-weave-technicals-bg .container > .row > div:nth-child(1) .content h2 br {
    display: none;
  }
}
.line-weave-technicals-bg .container > .row > div:nth-child(2) {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .line-weave-technicals-bg .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-weave-technicals-bg .container > .row > div:nth-child(2) .content {
  text-align: left;
  margin-left: 150px;
}
@media (max-width: 1199px) {
  .line-weave-technicals-bg .container > .row > div:nth-child(2) .content {
    margin-left: 100px;
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-bg .container > .row > div:nth-child(2) .content {
    margin-left: 30px;
    margin-top: 30px;
  }
}
.line-weave-technicals-bg .container > .row > div:nth-child(2) .content h1, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content h2, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content h3, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content h4, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content h5, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content h6, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content p, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content ul, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content li, .line-weave-technicals-bg .container > .row > div:nth-child(2) .content a {
  color: #fff;
}
.line-weave-technicals-bg .container > .row > div:nth-child(2) .content ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.line-weave-technicals-bg .container > .row > div:nth-child(2) .content ul li {
  position: relative;
  color: #fff !important;
}
.line-weave-technicals-bg .container > .row > div:nth-child(2) .content ul li:not(:last-child) {
  padding-bottom: 30px;
}
.line-weave-technicals-bg .container > .row > div:nth-child(2) .content ul li:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/check-icon.png") no-repeat;
  width: 27px;
  height: 28px;
  position: absolute;
  left: -50px;
  top: 0;
}

.line-weave-technicals-stats-intro {
  padding-top: 115px;
  padding-bottom: 60px;
}
.line-weave-technicals-stats-intro .container > .row > div h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-weave-technicals-stats-intro .container > .row > div h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-weave-technicals-stats-intro .container > .row > div h2 {
  margin-bottom: 30px;
}

.line-weave-technicals-stats {
  padding-top: 0;
  padding-bottom: 155px;
}
@media (max-width: 991px) {
  .line-weave-technicals-stats {
    padding-bottom: 90px;
  }
}
.line-weave-technicals-stats .zone-news_flash .newsList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 100px 180px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .line-weave-technicals-stats .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 80px 80px;
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-stats .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 80px;
  }
}
@media (max-width: 767px) {
  .line-weave-technicals-stats .zone-news_flash .newsList {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px 80px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}
.line-weave-technicals-stats .zone-news_flash .newsList .row {
  margin-top: 0;
}
.line-weave-technicals-stats .zone-news_flash .newsList .row .item div.intro {
  margin-left: 60px;
  position: relative;
}
.line-weave-technicals-stats .zone-news_flash .newsList .row .item div.intro h3 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-weave-technicals-stats .zone-news_flash .newsList .row .item div.intro h3 {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .line-weave-technicals-stats .zone-news_flash .newsList .row .item div.intro h3 {
    font-size: 38px;
    line-height: 42px;
  }
}
.line-weave-technicals-stats .zone-news_flash .newsList .row .item div.intro h3 {
  color: #E85652;
  font-weight: 800;
  margin-bottom: 0px;
}
.line-weave-technicals-stats .zone-news_flash .newsList .row .item div.intro h4 {
  font-weight: 600;
}
.line-weave-technicals-stats .zone-news_flash .newsList .row .item div.intro:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/check-icon-purple.png") no-repeat;
  background-size: cover;
  width: 27px;
  height: 28px;
  position: absolute;
  margin-left: -45px;
}
.line-weave-technicals-interesse-simple {
  background-color: #f7f7f7;
  padding-top: 140px;
  padding-bottom: 60px;
}
.line-weave-technicals-interesse-simple .container > .row > div .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-weave-technicals-interesse-simple .container > .row > div .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.line-weave-technicals-interesse-double {
  background-color: #f7f7f7;
  padding-top: 140px;
  padding-bottom: 60px;
}
@media (max-width: 991px) {
  .line-weave-technicals-interesse-double {
    padding-top: 90px;
  }
}
.line-weave-technicals-interesse-double .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-weave-technicals-interesse-double .container > .row {
    flex-direction: column;
  }
}
.line-weave-technicals-interesse-double .container > .row > div .content {
  margin-right: 40px;
}
@media (max-width: 991px) {
  .line-weave-technicals-interesse-double .container > .row > div .content {
    margin-right: 0;
  }
}
.line-weave-technicals-interesse-double .container > .row > div .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-weave-technicals-interesse-double .container > .row > div .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-weave-technicals-interesse-double .container > .row > div .content h4 {
  font-weight: 800;
}
.line-weave-technicals-interesse-double .container > .row > div .content hr {
  background-color: #3F2667;
}
.line-weave-technicals-interesse-double .container > .row > div .content .btn {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .line-weave-technicals-interesse-double .container > .row > div .content .btn {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-interesse-double .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-interesse-double .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-interesse-double .container > .row > div:nth-child(2) .content {
    margin-top: 60px;
  }
}

.line-weave-technicals-back {
  background-color: #f7f7f7;
  padding-top: 40px;
  padding-bottom: 115px;
}
@media (max-width: 991px) {
  .line-weave-technicals-back {
    padding-bottom: 40px;
  }
}
.line-weave-technicals-back.bgGrey {
  background-color: #EFEFEF;
}
@media (max-width: 991px) {
  .line-weave-technicals-back .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .line-weave-technicals-back .container > .row {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .line-weave-technicals-back .container > .row > div {
    padding-left: 0;
    padding-right: 0;
  }
}
.line-weave-technicals-back .container > .row > div .content {
  max-width: 736px;
  padding-top: 50px;
  padding-bottom: 45px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Weave%20technical/img-cta-2.jpg") no-repeat;
  background-size: cover;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .line-weave-technicals-back .container > .row > div .content {
    padding-right: 25px;
  }
}
.line-weave-technicals-back .container > .row > div .content br {
  display: block !important;
}

.line-bien-stats {
  padding-bottom: 80px;
}
.line-bien-stats .container {
  border-radius: 5px;
}
.line-bien-stats .container > .row {
  display: flex;
  justify-content: stretch;
}
@media (max-width: 991px) {
  .line-bien-stats .container > .row {
    flex-direction: column;
  }
}
.line-bien-stats .container > .row > div:nth-child(1) {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .line-bien-stats .container > .row > div:nth-child(1) {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .line-bien-stats .container > .row > div:nth-child(1) {
    width: 100%;
    order: 2;
  }
}
.line-bien-stats .container > .row > div:nth-child(1) .content {
  border-radius: 8px 0 0 8px;
  background-color: #fff;
  padding: 65px 20px 30px 80px;
  width: 100%;
}
@media (max-width: 991px) {
  .line-bien-stats .container > .row > div:nth-child(1) .content {
    border-radius: 0 0 8px 8px;
  }
}
@media (max-width: 575px) {
  .line-bien-stats .container > .row > div:nth-child(1) .content {
    padding: 65px 20px 30px 60px;
  }
}
.line-bien-stats .container > .row > div:nth-child(1) .content h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-bien-stats .container > .row > div:nth-child(1) .content h3 {
    font-size: 17px;
    line-height: 21px;
  }
}
.line-bien-stats .container > .row > div:nth-child(1) .content h3 {
  font-weight: 600;
}
.line-bien-stats .container > .row > div:nth-child(1) .content h3 strong {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-bien-stats .container > .row > div:nth-child(1) .content h3 strong {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .line-bien-stats .container > .row > div:nth-child(1) .content h3 strong {
    font-size: 38px;
    line-height: 42px;
  }
}
.line-bien-stats .container > .row > div:nth-child(1) .content h3 strong {
  color: #E85652;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
}
.line-bien-stats .container > .row > div:nth-child(1) .content h3 br {
  display: block !important;
}
.line-bien-stats .container > .row > div:nth-child(1) .content ul {
  list-style: none;
}
.line-bien-stats .container > .row > div:nth-child(1) .content ul li {
  margin-bottom: 40px !important;
}
.line-bien-stats .container > .row > div:nth-child(1) .content ul li:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/check-icon-purple.png") no-repeat;
  background-size: cover;
  width: 27px;
  height: 28px;
  position: absolute;
  margin-top: 6px;
  margin-left: -45px;
}
@media (min-width: 992px) {
  .line-bien-stats .container > .row > div:nth-child(2) {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .line-bien-stats .container > .row > div:nth-child(2) {
    width: 100%;
    order: 1;
  }
}
.line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper {
  height: 100%;
}
.line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper .mod-banner__img {
  border-radius: 0 8px 8px 0;
  height: 100%;
}
@media (max-width: 991px) {
  .line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper .mod-banner__img {
    height: 340px;
    border-radius: 8px 8px 0 0;
  }
}
.line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper .mod-banner__img .mod-banner__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper .mod-banner__img .mod-banner__content p {
  display: block;
  position: absolute;
  width: 98px;
  height: 97px;
  margin-left: auto;
  margin-right: auto;
}
.line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper .mod-banner__img .mod-banner__content p:hover:nth-child(1) img {
  display: none;
}
.line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper .mod-banner__img .mod-banner__content p:hover:nth-child(2) img {
  display: block;
}
.line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper .mod-banner__img .mod-banner__content p:nth-child(1) img {
  display: block;
}
.line-bien-stats .container > .row > div:nth-child(2) .mod-banner__wrapper .mod-banner__img .mod-banner__content p:nth-child(2) img {
  display: none;
}

.line-bien-volet-titre {
  padding-top: 60px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .line-bien-volet-titre {
    padding-top: 30px;
  }
}
.line-bien-volet-titre .content h2 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-bien-volet-titre .content h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .line-bien-volet-titre .content h2 {
    font-size: 38px;
    line-height: 42px;
  }
}

.line-bien-volet-bg {
  position: relative;
  padding-top: 80px;
  padding-bottom: 70px;
}
.line-bien-volet-bg:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(50% + 576px);
  height: 100%;
  background-color: #3F2667;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Bien%20dici/background-mauve-bien-dici.jpg") no-repeat;
  background-position: left top;
  background-size: cover;
  border-top-left-radius: 500px;
  border-bottom-left-radius: 500px;
  left: auto;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .line-bien-volet-bg:before {
    width: calc(50% + 485px);
  }
}
@media (max-width: 991px) {
  .line-bien-volet-bg:before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 991px) {
  .line-bien-volet-bg .container > .row {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-bien-volet-bg .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-bien-volet-bg .container > .row > div:nth-child(1) .content {
  margin-left: 160px;
}
@media (max-width: 1199px) {
  .line-bien-volet-bg .container > .row > div:nth-child(1) .content {
    margin-left: 40px;
  }
}
@media (max-width: 991px) {
  .line-bien-volet-bg .container > .row > div:nth-child(1) .content {
    margin-left: 0;
  }
}
.line-bien-volet-bg .container > .row > div:nth-child(1) .content h1, .line-bien-volet-bg .container > .row > div:nth-child(1) .content h2, .line-bien-volet-bg .container > .row > div:nth-child(1) .content h3, .line-bien-volet-bg .container > .row > div:nth-child(1) .content h4, .line-bien-volet-bg .container > .row > div:nth-child(1) .content h5, .line-bien-volet-bg .container > .row > div:nth-child(1) .content h6, .line-bien-volet-bg .container > .row > div:nth-child(1) .content p, .line-bien-volet-bg .container > .row > div:nth-child(1) .content ul, .line-bien-volet-bg .container > .row > div:nth-child(1) .content li, .line-bien-volet-bg .container > .row > div:nth-child(1) .content a {
  color: #fff;
}
.line-bien-volet-bg .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-bien-volet-bg .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-bien-volet-bg .container > .row > div:nth-child(1) .content h2 {
  position: relative;
}
.line-bien-volet-bg .container > .row > div:nth-child(1) .content h2:before {
  content: "";
  width: 4px;
  height: calc(100% - 15px);
  background-color: #fff;
  position: absolute;
  top: 8px;
  left: -40px;
}
.line-bien-volet-bg .container > .row > div:nth-child(1) .content img {
  max-width: 346px;
}
@media (max-width: 991px) {
  .line-bien-volet-bg .container > .row > div:nth-child(1) .content img {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 991px) {
  .line-bien-volet-bg .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-bien-volet-bg .container > .row > div:nth-child(2) .content {
  text-align: left;
}
@media (max-width: 991px) {
  .line-bien-volet-bg .container > .row > div:nth-child(2) .content {
    padding-top: 50px;
  }
}
.line-bien-volet-bg .container > .row > div:nth-child(2) .content h1, .line-bien-volet-bg .container > .row > div:nth-child(2) .content h2, .line-bien-volet-bg .container > .row > div:nth-child(2) .content h3, .line-bien-volet-bg .container > .row > div:nth-child(2) .content h4, .line-bien-volet-bg .container > .row > div:nth-child(2) .content h5, .line-bien-volet-bg .container > .row > div:nth-child(2) .content h6, .line-bien-volet-bg .container > .row > div:nth-child(2) .content p, .line-bien-volet-bg .container > .row > div:nth-child(2) .content ul, .line-bien-volet-bg .container > .row > div:nth-child(2) .content li, .line-bien-volet-bg .container > .row > div:nth-child(2) .content a {
  color: #fff;
}

.line-bien-volet-texte {
  padding-top: 70px;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .line-bien-volet-texte .container > .row {
    flex-direction: column;
  }
}
.line-bien-volet-texte .container > .row > div .content ul li::marker {
  color: #3F2667 !important;
}
@media (max-width: 991px) {
  .line-bien-volet-texte .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .line-bien-volet-texte .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
/** SECTION **/
.line-2col-titre-text {
  padding-top: 30px;
  padding-bottom: 40px;
}
.line-2col-titre-text .container > .row {
  display: flex;
}
@media (max-width: 991px) {
  .line-2col-titre-text .container > .row {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .line-2col-titre-text .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-2col-titre-text .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-2col-titre-text .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .line-2col-titre-text .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-testimonial {
  padding-top: 25px;
  padding-bottom: 140px;
}
.line-testimonial.accueil {
  padding-top: 220px;
  padding-bottom: 180px;
}
@media (max-width: 991px) {
  .line-testimonial.accueil {
    padding-top: 200px;
    padding-bottom: 110px;
  }
}
@media (max-width: 767px) {
  .line-testimonial.accueil {
    padding-top: 145px;
    padding-bottom: 80px;
  }
}
.line-testimonial .container > .row > div:nth-child(1) {
  width: 25%;
}
@media (max-width: 991px) {
  .line-testimonial .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
.line-testimonial .container > .row > div:nth-child(2) {
  width: 75%;
}
@media (max-width: 991px) {
  .line-testimonial .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-testimonial .container > .row > div:nth-child(2) .content h3 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-testimonial .container > .row > div:nth-child(2) .content h3 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .line-testimonial .container > .row > div:nth-child(2) .content h3 {
    font-size: 38px;
    line-height: 42px;
  }
}
.line-testimonial .container > .row > div:nth-child(2) .content h3 {
  font-weight: 300;
}
@media (max-width: 767px) {
  .line-testimonial .container > .row > div:nth-child(2) .content h3 {
    font-size: 30px;
    line-height: 35px;
  }
}
.line-testimonial .container > .row > div:nth-child(2) .content hr {
  border-color: #9695D3;
  margin-top: 25px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .line-testimonial .container > .row > div:nth-child(2) .content hr {
    margin-top: 55px;
  }
}
@media (max-width: 767px) {
  .line-testimonial .container > .row > div:nth-child(2) .content hr {
    margin-top: 35px;
    margin-bottom: 40px;
  }
}
.line-testimonial .container > .row > div:nth-child(2) .content p {
  position: relative;
}
@media (max-width: 991px) {
  .line-testimonial .container > .row > div:nth-child(2) .content p {
    float: left;
    width: auto;
    margin-right: 30px;
  }
}
@media (max-width: 767px) {
  .line-testimonial .container > .row > div:nth-child(2) .content p {
    float: none;
    width: auto;
    margin-right: 0;
    text-align: center;
  }
}
.line-testimonial .container > .row > div:nth-child(2) .content p img {
  border-radius: 100px;
  width: 182px;
  height: 182px;
  position: absolute;
  left: -250px;
  top: -60px;
}
@media (max-width: 991px) {
  .line-testimonial .container > .row > div:nth-child(2) .content p img {
    position: relative;
    left: 0;
    top: 0;
  }
}
@media (max-width: 767px) {
  .line-testimonial .container > .row > div:nth-child(2) .content p img {
    margin-bottom: 10px;
  }
}
.line-testimonial .container > .row > div:nth-child(2) .content h4 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .line-testimonial .container > .row > div:nth-child(2) .content h4 {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .line-testimonial .container > .row > div:nth-child(2) .content h4 {
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: center;
  }
}
.line-testimonial .container > .row > div:nth-child(2) .content h5 {
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-testimonial .container > .row > div:nth-child(2) .content h5 {
    text-align: center;
  }
}

.line-bgfrom-right-2col {
  position: relative;
  padding-top: 170px;
  padding-bottom: 155px;
}
@media (max-width: 991px) {
  .line-bgfrom-right-2col {
    padding-top: 275px;
    padding-bottom: 135px;
  }
}
@media (max-width: 767px) {
  .line-bgfrom-right-2col {
    padding-top: 135px;
    padding-bottom: 90px;
  }
}
.line-bgfrom-right-2col:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% - 60px);
  height: 100%;
  background-color: #3F2667;
  background-position: left top !important;
  background-size: cover !important;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
  left: auto;
  top: 0;
  right: 0;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 991px) {
  .line-bgfrom-right-2col:before {
    width: 100%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.line-bgfrom-right-2col.bgBatiment:before {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Batiment%20et%20ameublement/img-background-mauve.jpg") no-repeat;
}
.line-bgfrom-right-2col.bgGenie:before {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Genie%20civil%20et%20environnement/image-background-mauve-environnement.jpg") no-repeat;
}
.line-bgfrom-right-2col.bgIndustriel:before {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Industriel/image-background-mauve-industriel.jpg") no-repeat;
}
.line-bgfrom-right-2col.bgMedical:before {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Medical/3-medical-background-mauve.jpg") no-repeat;
}
.line-bgfrom-right-2col.bgDefense:before {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Securite%20et%20defense/3-securite-background-mauve.jpg") no-repeat;
}
.line-bgfrom-right-2col.bgSport:before {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Sports%20et%20loisirs/3-sport-background-mauve.jpg") no-repeat;
}
.line-bgfrom-right-2col.bgTransport:before {
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Transport/3-transport-background-mauve.jpg") no-repeat;
}
@media (max-width: 991px) {
  .line-bgfrom-right-2col .container > .row > div:nth-child(1) {
    width: 100%;
  }
}
@media (max-width: 1399px) {
  .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content {
    margin-left: 70px;
  }
}
@media (max-width: 991px) {
  .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content {
    margin-left: 0;
  }
}
.line-bgfrom-right-2col .container > .row > div:nth-child(1) .content h1, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content h2, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content h3, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content h4, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content h5, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content h6, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content p, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content ul, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content li, .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content a {
  color: #fff;
}
.line-bgfrom-right-2col .container > .row > div:nth-child(1) .content h2 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .line-bgfrom-right-2col .container > .row > div:nth-child(1) .content h2 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 991px) {
  .line-bgfrom-right-2col .container > .row > div:nth-child(2) {
    width: 100%;
  }
}
.line-bgfrom-right-2col .container > .row > div:nth-child(2) .content {
  text-align: right;
  margin-top: 60px;
}
@media (max-width: 991px) {
  .line-bgfrom-right-2col .container > .row > div:nth-child(2) .content {
    margin-top: 50px;
  }
}
.line-bgfrom-right-2col .container > .row > div:nth-child(2) .content img {
  border-radius: 8px;
}
@media (min-width: 992px) {
  .line-bgfrom-right-2col .container > .row > div:nth-child(2) .content img {
    margin-left: 60px;
  }
}
@media (max-width: 991px) {
  .line-bgfrom-right-2col .container > .row > div:nth-child(2) .content img {
    width: 100% !important;
    height: 325px !important;
    object-fit: cover;
    object-position: center center;
  }
}

body.manufacturier .line-banner {
  display: none;
}
body.manufacturier .line-banner h2 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  body.manufacturier .line-banner h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  body.manufacturier .line-banner h2 {
    font-size: 38px;
    line-height: 42px;
  }
}
body.manufacturier.view-formbuilder-search .line-banner {
  display: block !important;
}

.section-repertory-search .search-object-form:after, .section-repertory-search .js-directory-search-box:after {
  content: "";
  display: block;
  clear: both;
}
.section-repertory-search .search-object-form .search-form, .section-repertory-search .js-directory-search-box .search-form {
  padding-top: 60px;
}
@media (min-width: 1200px) {
  .section-repertory-search .search-object-form .search-form, .section-repertory-search .js-directory-search-box .search-form {
    width: calc(100% - 150px);
    float: left;
    padding-bottom: 30px;
  }
}
@media (max-width: 1199px) {
  .section-repertory-search .search-object-form .search-form, .section-repertory-search .js-directory-search-box .search-form {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .section-repertory-search .search-object-form .search-form, .section-repertory-search .js-directory-search-box .search-form {
    margin-left: -15px;
    margin-right: -15px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .section-repertory-search .search-object-form .search-form, .section-repertory-search .js-directory-search-box .search-form {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.section-repertory-search .search-object-form .search-form .form-group, .section-repertory-search .js-directory-search-box .search-form .form-group {
  width: 33%;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: top;
}
@media (max-width: 991px) {
  .section-repertory-search .search-object-form .search-form .form-group, .section-repertory-search .js-directory-search-box .search-form .form-group {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .section-repertory-search .search-object-form .search-form .form-group, .section-repertory-search .js-directory-search-box .search-form .form-group {
    width: 100%;
    float: none;
  }
  .section-repertory-search .search-object-form .search-form .form-group .chosen-choices, .section-repertory-search .js-directory-search-box .search-form .form-group .chosen-choices {
    max-width: 100%;
  }
}
.section-repertory-search .search-object-form .search-form .form-group label, .section-repertory-search .js-directory-search-box .search-form .form-group label {
  font-size: 14px;
  color: #000;
}
.section-repertory-search .search-object-form .search-form .form-group .search_input .chosen-choices, .section-repertory-search .search-object-form .search-form .form-group .search_input > input, .section-repertory-search .search-object-form .search-form .form-group .search_input select, .section-repertory-search .js-directory-search-box .search-form .form-group .search_input .chosen-choices, .section-repertory-search .js-directory-search-box .search-form .form-group .search_input > input, .section-repertory-search .js-directory-search-box .search-form .form-group .search_input select {
  background-color: #fff !important;
}
.section-repertory-search .search-object-form .search-form .form-group .chosen-action__wrapper, .section-repertory-search .js-directory-search-box .search-form .form-group .chosen-action__wrapper {
  display: none;
  padding: 0;
}
.section-repertory-search .search-object-form .search-form .form-group .chosen-action__wrapper .chosen-action, .section-repertory-search .js-directory-search-box .search-form .form-group .chosen-action__wrapper .chosen-action {
  color: #EBEFFE;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .section-repertory-search #section-footer-search {
    width: 220px;
    float: left;
    padding-top: 83px;
    text-align: right;
  }
}
@media (max-width: 1199px) {
  .section-repertory-search #section-footer-search {
    margin-bottom: 30px;
  }
}
.section-repertory-search #section-footer-search .btn {
  margin-right: 0;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .section-repertory-search #section-footer-search .btn {
    margin-left: 15px;
  }
}
.section-repertory-search.section-suppliers .search-object-bloc > .search-object-form {
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form {
    display: flex;
    align-items: flex-end;
  }
}
.section-repertory-search.section-suppliers .search-object-bloc > .search-object-form .search-form {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form .search-form .form-group {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form .search-form .form-group:first-of-type {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form .search-form .form-group:first-of-type {
    width: 66%;
    margin-right: 33%;
  }
}
.section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search {
  padding-top: 0;
}
@media (max-width: 1199px) {
  .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search {
    margin-bottom: 0;
    margin-left: 15px;
  }
}
@media (max-width: 991px) {
  .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search {
    padding-top: 30px;
  }
}
.section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search .btn {
  margin: 0;
  background-color: #E85652 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: none !important;
  padding: 10px 50px 10px 50px !important;
  height: 60px !important;
  width: auto !important;
  text-indent: 0 !important;
}
.section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search .btn:hover, .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search .btn:active, .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search .btn:focus {
  background-color: #9695D3 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search .btn:after {
  display: none !important;
}
@media (max-width: 1199px) {
  .section-repertory-search.section-suppliers .search-object-bloc > .search-object-form #section-footer-search .btn {
    padding: 0 20px;
  }
}

.section-suppliers .Cacher {
  display: none;
}
@media (max-width: 991px) {
  .section-suppliers .search-object-result {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .section-suppliers .search-object-result #search-object-tab-formbuilder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
}
.section-suppliers .search-object-result .item {
  margin-bottom: 60px;
}
.section-suppliers .search-object-result .item .img-wrap {
  display: block;
  background: #f2f3f4;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.section-suppliers .search-object-result .item .img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
}
.section-suppliers .search-object-result .item > h2 {
  margin-top: 30px;
  opacity: 1;
}
.section-suppliers .search-object-result .item > h2 a {
  text-decoration: none !important;
}
.section-suppliers .search-object-result .item > h2 a:hover {
  text-decoration: none !important;
}
.section-suppliers .search-object-result .item > h2 .object-responsable_organisation {
  padding: 0;
  margin-bottom: 15px;
}
.section-suppliers .search-object-result .item > h2 .object-responsable_organisation li {
  font-size: 28px;
  line-height: 32px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none !important;
}
.section-suppliers .search-object-result .item > h2 .object-responsable_organisation li span:not(.object-responsable_organisation-field-group_name) {
  display: none;
}
.section-suppliers .search-object-result .item .plus-section, .section-suppliers .search-object-result .item .secteurs-activite-icons {
  display: none;
}
.section-suppliers .search-object-result .item > p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.section-suppliers .search-object-result .item > p {
  opacity: 1;
}
.section-suppliers .search-object-result .item.Performance .img-wrap {
  position: relative;
}
.section-suppliers .search-object-result .item.Performance .img-wrap:before {
  content: "";
  background-color: #fff;
  display: block;
  border-radius: 4px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 120px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px;
}
.section-suppliers .search-object-result .item.Performance .img-wrap img {
  opacity: 1;
}
.section-suppliers .search-object-result .item.Performance .plus-section {
  display: block;
}
.section-suppliers .search-object-result .item.Performance .plus-section .localisation {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.section-suppliers .search-object-result .item.Performance .plus-section .localisation {
  color: #3F2667;
  margin-bottom: 15px;
}
.section-suppliers .search-object-result .item.Performance .plus-section .localisation ul {
  display: inline;
  padding: 0;
  padding-left: 5px !important;
}
.section-suppliers .search-object-result .item.Performance .plus-section .localisation ul li {
  display: inline-block;
  padding-right: 5px;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 800 !important;
  text-transform: initial !important;
  color: #3F2667 !important;
}
.section-suppliers .search-object-result .item.Performance .plus-section .localisation ul li:not(:last-child):after {
  content: "•";
  padding-left: 5px;
  font-size: 20px;
}
.section-suppliers .search-object-result .item.Performance .plus-section > h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.section-suppliers .search-object-result .item.Performance .plus-section > h3 {
  margin-bottom: 30px;
  opacity: 1;
}
@media (max-width: 1199px) {
  .section-suppliers .search-object-result .item.Performance .plus-section > h3 {
    margin-bottom: 15px;
  }
}
.section-suppliers .search-object-result .item.Performance .plus-section .secteurs-activite-icons {
  display: block;
  opacity: 0;
  transition: opacity 500ms;
  transition-delay: 250ms;
}
.section-suppliers .search-object-result .item.Performance .plus-section .secteurs-activite-icons.changed {
  opacity: 1;
}
.section-suppliers .search-object-result .item.Performance .plus-section .secteurs-activite-icons ul {
  margin: 0;
  padding: 0 !important;
}
.section-suppliers .search-object-result .item.Performance .plus-section .secteurs-activite-icons ul li {
  display: inline-block;
  margin-right: 25px !important;
  margin-bottom: 25px !important;
}
@media (max-width: 1199px) {
  .section-suppliers .search-object-result .item.Performance .plus-section .secteurs-activite-icons ul li {
    margin-right: 15px !important;
    margin-bottom: 15px !important;
  }
}
.section-suppliers .search-object-result .item.Performance .plus-section .secteurs-activite-icons ul li img {
  opacity: 1;
}
.section-suppliers .search-object-result .item.Performance .btn {
  margin-top: 0;
}
.section-suppliers .search-object-detail-bloc .item-detail {
  padding-bottom: 100px;
}
.section-suppliers .search-object-detail-bloc .item-detail > h1 {
  margin: 60px 0;
}
.section-suppliers .search-object-detail-bloc .item-detail > h1 ul {
  display: inline;
  padding: 0;
  margin: 0;
}
.section-suppliers .search-object-detail-bloc .item-detail > h1 ul li {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .section-suppliers .search-object-detail-bloc .item-detail > h1 ul li {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .section-suppliers .search-object-detail-bloc .item-detail > h1 ul li {
    font-size: 38px;
    line-height: 42px;
  }
}
.section-suppliers .search-object-detail-bloc .item-detail > h1 ul li {
  display: block;
  color: #3F2667;
  padding-bottom: 15px;
  border-bottom: 1px solid #3F2667;
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail > h1 ul li span:not(.object-responsable_organisation-field-group_name) {
  display: none;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side {
  text-align: center;
  max-width: 260px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side {
    max-width: 100%;
    margin: 0 auto 60px;
  }
  .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .mobile-left, .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .mobile-right {
    width: 50%;
    float: left;
    padding-bottom: 30px;
  }
  .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .mobile-right > * {
    max-width: 240px;
  }
  .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .mobile-right .plus-section {
    margin: 0 auto 15px;
  }
}
@media (max-width: 767px) {
  .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side {
    margin: 0 auto 60px;
  }
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-image {
  margin-bottom: 30px;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation {
  padding-left: 0 !important;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li {
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span {
  margin-bottom: 5px;
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-value, .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-group_name {
  display: none;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-group_address_street {
  display: block;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-group_address_state {
  display: inline-block;
  padding-right: 5px;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-group_address_state:before {
  content: "(";
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-group_address_state:after {
  content: ") ";
  margin-left: -3px;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-group_address_zip {
  white-space: nowrap;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-group_address_country {
  display: block;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .item-detail-address .object-responsable_organisation li span.object-responsable_organisation-field-group_phone {
  display: block;
  margin-top: 15px;
  color: #EBEFFE;
  margin-bottom: 30px;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .btn {
  margin: 0 0 15px 0;
  width: 100%;
  justify-content: center;
  background-color: #E85652 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: none !important;
  padding: 10px 50px 10px 50px !important;
  height: 60px !important;
  width: auto !important;
  text-indent: 0 !important;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .btn:hover, .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .btn:active, .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .btn:focus {
  background-color: #9695D3 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .btn:after {
  display: none !important;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .buttons {
  margin-bottom: 30px;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .medias {
  max-width: 180px;
  padding-bottom: 30px;
  margin: 0 auto 30px;
  border-bottom: 1px solid rgba(235, 239, 254, 0.5);
}
@media (max-width: 991px) {
  .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .medias {
    padding-bottom: 15px;
  }
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .medias a {
  text-decoration: none !important;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .medias a img {
  margin: 0 5px;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .stamps {
  margin-top: 30px;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .stamps img {
  margin-bottom: 15px;
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .stamps img:last-child {
  margin-left: 15px;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .stamps .secondlogo, .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .stamps .thirdlogo {
  display: none;
}
.section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .stamps .secondlogo.Oui, .section-suppliers .search-object-detail-bloc .item-detail .item-detail-side .stamps .thirdlogo.Oui {
  display: inline-block;
}
.section-suppliers .search-object-detail-bloc .item-detail .description {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .section-suppliers .search-object-detail-bloc .item-detail .description {
    font-size: 20px;
    line-height: 25px;
  }
}
.section-suppliers .search-object-detail-bloc .item-detail .description {
  margin-bottom: 60px;
}
.section-suppliers .search-object-detail-bloc .item-detail .description p {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .section-suppliers .search-object-detail-bloc .item-detail .description p {
    font-size: 20px;
    line-height: 25px;
  }
}
.section-suppliers .search-object-detail-bloc .item-detail .plus-section {
  display: none;
}
.section-suppliers .search-object-detail-bloc .item-detail .btn-primary {
  background-color: #E85652 !important;
  color: #fff !important;
  transition: all 150ms !important;
  border: none !important;
  padding: 10px 50px 10px 50px !important;
  height: 60px !important;
  width: auto !important;
  text-indent: 0 !important;
}
.section-suppliers .search-object-detail-bloc .item-detail .btn-primary:hover, .section-suppliers .search-object-detail-bloc .item-detail .btn-primary:active, .section-suppliers .search-object-detail-bloc .item-detail .btn-primary:focus {
  background-color: #9695D3 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.section-suppliers .search-object-detail-bloc .item-detail .btn-primary:after {
  display: none !important;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section {
  display: block;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .secteurs-activite-icons {
  opacity: 0;
  transition: opacity 250ms;
  padding-top: 15px;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .secteurs-activite-icons.changed {
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .secteurs-activite-icons ul li {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .secteurs-activite-icons ul li img {
  margin-right: 15px;
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .secteurs-activite-icons ul li span {
  width: calc(100% - 80px);
  opacity: 1;
}
@media (min-width: 768px) {
  .section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .secteurs-activite-icons ul li {
    width: 50%;
    display: inline-flex;
  }
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 767px) {
  .section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-title {
    font-size: 17px;
    line-height: 21px;
  }
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-title {
  color: #3F2667;
  font-weight: 800;
  cursor: pointer;
  display: block;
  padding: 25px 0 22px;
  position: relative;
  border-top: 1px solid #E85652;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-title:after {
  content: "✕";
  display: block;
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 22px;
  font-weight: 300;
  color: #3F2667;
  border: 1px solid #3F2667;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  padding: 8px 10px;
  transform: rotate(45deg);
  transition: transform 150ms;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-title:hover {
  color: #3F2667;
  border-color: #3F2667;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-content {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-content h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 800;
  text-transform: initial;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-content h3 {
  border-bottom: 1px solid rgba(235, 239, 254, 0.5);
  padding-bottom: 10px;
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-content .info-supp-text {
  padding: 15px;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-content .info-supp-text ul {
  list-style: disc !important;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon .acc-content .info-supp-text ul li {
  opacity: 1;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon.active .acc-title {
  color: #3F2667;
  border-color: #3F2667;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .item-accordeon.active .acc-title:after {
  transform: rotate(0deg);
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .images-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 60px;
  margin-bottom: 30px;
  max-width: 100%;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .images-section .img-item {
  height: 199px;
  background-size: cover;
  background-position: center;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .images-section.Cacher {
  display: none;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 60px;
}
.section-suppliers .search-object-detail-bloc .item-detail.Performance .plus-section .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hidesecretinput .form-element-courriel {
  display: none;
}

.lang-en .section-suppliers .search-object-result .item.Performance .img-wrap:before {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-WEAVE-2022/Trouver%20un%20fournisseur/Performance_Partner___3_EN.svg);
  z-index: 10;
}

.lang-fr .section-suppliers .search-object-result .item.Performance .img-wrap:before {
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-WEAVE-2022/Trouver%20un%20fournisseur/partenaire-performance-vector2.svg);
  z-index: 10;
}

.section-join {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url(https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Trouvez%20un%20fournisseur/bg-joignez.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .section-join > .container > .row {
    display: block;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .section-join > .container > .row > div:first-child {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .section-join > .container > .row > div:first-child .content {
    text-align: center;
  }
}
.section-join > .container > .row > div:first-child .content h2, .section-join > .container > .row > div:first-child .content h3 {
  display: inline-block;
  vertical-align: top;
}
.section-join > .container > .row > div:first-child .content h2 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .section-join > .container > .row > div:first-child .content h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .section-join > .container > .row > div:first-child .content h2 {
    font-size: 38px;
    line-height: 42px;
  }
}
.section-join > .container > .row > div:first-child .content h2 {
  color: #fff;
}
.section-join > .container > .row > div:first-child .content p {
  margin-bottom: 0;
}
.section-join > .container > .row > div:last-child {
  text-align: right;
}
@media (max-width: 991px) and (min-width: 768px) {
  .section-join > .container > .row > div:last-child {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .section-join > .container > .row > div:last-child {
    text-align: center;
  }
}
.section-join > .container > .row > div:last-child .content {
  padding-top: 60px;
  padding-right: 60px;
}
@media (max-width: 991px) {
  .section-join > .container > .row > div:last-child .content {
    padding-top: 20px;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .section-table .content {
    overflow-x: auto;
  }
}
.section-table .content > p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.section-table .content > p {
  max-width: 920px;
  color: #707070;
}
.section-table .content table {
  border: 0;
  min-width: 700px;
  margin-bottom: 30px;
}
.section-table .content table tr:first-child th, .section-table .content table tr:first-child td {
  position: sticky;
  top: 0;
  background-color: #EFEFEF;
  padding-bottom: 30px;
  vertical-align: bottom;
  z-index: 10;
}
.section-table .content table tr:first-child th span, .section-table .content table tr:first-child td span {
  display: flex;
  height: 66px;
  align-items: center;
  justify-content: center;
}
.section-table .content table tr:first-child th {
  border-top: 0;
}
.section-table .content table tr:first-child td {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.section-table .content table tr:first-child td {
  border-top: 0;
  vertical-align: bottom;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #3F2667;
  z-index: 10;
}
@media (max-width: 991px) {
  .section-table .content table tr:first-child td {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #3F2667;
    color: #EBEFFE;
  }
}
.section-table .content table tr:first-child td strong {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .section-table .content table tr:first-child td strong {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .section-table .content table tr:first-child td strong {
    font-size: 38px;
    line-height: 42px;
  }
}
.section-table .content table tr:first-child td strong {
  display: block;
  margin-top: 15px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .section-table .content table tr:first-child td strong {
    font-size: 24px;
    line-height: 32px;
  }
}
.section-table .content table tr:first-child td strong em {
  display: inline-block;
  font-size: 24px;
  line-height: 42px;
  font-weight: 400;
  margin-left: 1px;
}
.section-table .content table tr > th, .section-table .content table tr > td {
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .section-table .content table tr > th, .section-table .content table tr > td {
    font-size: 20px;
    line-height: 25px;
  }
}
.section-table .content table tr > th, .section-table .content table tr > td {
  padding: 15px;
  border: 1px solid rgba(63, 38, 103, 0.5);
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .section-table .content table tr > th, .section-table .content table tr > td {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #3F2667;
    padding: 10px;
  }
}
.section-table .content table tr > th h3, .section-table .content table tr > td h3 {
  color: #3F2667;
  text-align: left;
}
.section-table .content table tr > th em, .section-table .content table tr > td em {
  font-style: normal;
  display: block;
  text-align: center;
  font-weight: 500;
  color: #3F2667;
  margin: -10px;
}
.section-table .content table tr > th img, .section-table .content table tr > td img {
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .section-table .content table tr > th img, .section-table .content table tr > td img {
    max-width: 25px;
  }
}
.section-table .content table tr > th .btn, .section-table .content table tr > td .btn {
  padding: 0 40px;
  margin: 40px 15px;
}
@media (max-width: 991px) {
  .section-table .content table tr > th .btn, .section-table .content table tr > td .btn {
    font-size: 16px;
    padding: 0 30px;
    margin: 30px 0;
  }
}
.section-table .content table tr > th {
  font-weight: inherit;
  padding-left: 30px;
  border-left: 0;
  text-align: left;
  font-weight: 300;
}
@media (max-width: 991px) {
  .section-table .content table tr > th {
    padding-left: 15px;
  }
}
.section-table .content table tr > th p {
  font-weight: 300;
}
@media (max-width: 991px) {
  .section-table .content table tr > th p {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #3F2667;
  }
}
.section-table .content table tr > th ul {
  padding-top: 20px;
}
.section-table .content table tr > th ul li {
  font-size: 20px !important;
  line-height: 27px !important;
  font-weight: 300 !important;
  color: #3F2667 !important;
}
@media (max-width: 991px) {
  .section-table .content table tr > th ul li {
    font-size: 16px !important;
    line-height: 21px !important;
    font-weight: 300 !important;
    color: #3F2667 !important;
  }
}
.section-table .content table tr > th > * {
  margin-bottom: 0;
}
.section-table .content table tr > td:last-child {
  border-right: 0;
}
.section-table .content table tr.secondary th, .section-table .content table tr.fourth th {
  padding: 10px 10px 10px 30px;
}
@media (max-width: 991px) {
  .section-table .content table tr.secondary th, .section-table .content table tr.fourth th {
    padding: 10px 10px 10px 15px;
  }
}
.section-table .content table tr.secondary td, .section-table .content table tr.fourth td {
  font-weight: 400;
}
.section-table .content table tr.secondary th, .section-table .content table tr.secondary td {
  background-color: #3F2667;
  color: #fff;
}
.section-table .content table tr.fourth th, .section-table .content table tr.fourth td {
  background-color: rgba(63, 38, 103, 0.5);
  color: #fff;
}

.forfait-mobile {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .forfait-mobile {
    display: none;
  }
}
.forfait-mobile p {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
.forfait-mobile p {
  position: relative;
  border: 1px solid rgba(63, 38, 103, 0.4);
  padding: 30px 180px 30px 40px;
  color: #EBEFFE;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .forfait-mobile p {
    padding: 20px 180px 20px 20px;
  }
}
.forfait-mobile p a {
  position: absolute;
  right: 40px;
  top: 20px;
  padding: 10px 30px;
}
@media (max-width: 575px) {
  .forfait-mobile p a {
    right: 20px;
    top: 7px;
  }
}
.forfait-mobile p strong {
  font-size: 45px;
  line-height: 50px;
  font-weight: 300;
  text-transform: initial;
}
@media (max-width: 991px) {
  .forfait-mobile p strong {
    font-size: 40px;
    line-height: 45px;
  }
}
@media (max-width: 767px) {
  .forfait-mobile p strong {
    font-size: 38px;
    line-height: 42px;
  }
}
.forfait-mobile p strong {
  display: block;
  font-weight: 500;
}
.forfait-mobile p strong em {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  margin-left: 1px;
}

.line-video-liste {
  padding-bottom: 120px;
}
.line-video-liste #newsFilterForm {
  padding-bottom: 84px;
}
.line-video-liste #newsFilterForm label {
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 767px) {
  .line-video-liste #newsFilterForm label {
    font-size: 25px;
    line-height: 30px;
  }
}
.line-video-liste .news-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 35px;
}
@media (max-width: 991px) {
  .line-video-liste .news-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 35px;
  }
}
@media (max-width: 767px) {
  .line-video-liste .news-mosaic {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 40px 35px;
  }
}
.line-video-liste .news-mosaic > .row {
  margin-top: 0 !important;
  margin-left: 0;
  margin-right: 0;
}
.line-video-liste .news-mosaic > .row > div {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.line-video-liste .news-mosaic > .row > div a img.news-thumbnail {
  margin-bottom: 2.2rem;
  width: 100%;
  height: 220px !important;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  border: none;
  transition: all 300ms;
}
.line-video-liste .news-mosaic > .row > div a:hover img {
  opacity: 0.7;
  transition: all 300ms;
}
.line-video-liste .news-mosaic > .row > div h3 {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-video-liste .news-mosaic > .row > div h3 {
  font-weight: 500;
}
.line-video-liste .news-mosaic > .row > div h3 a {
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #3F2667;
}
.line-video-liste .news-mosaic > .row > div h3 a {
  font-weight: 500;
  text-decoration: none !important;
  color: #3F2667 !important;
}
.line-video-liste .news-mosaic > .row > div h3 a:hover {
  text-decoration: none !important;
}
.line-video-liste .news-mosaic > .row > div p.e-date {
  position: relative;
  margin-bottom: 0;
  margin-right: 16px;
  float: left;
  width: auto;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-transform: inherit;
}
.line-video-liste .news-mosaic > .row > div p.e-date:after {
  content: "|";
  display: block;
  position: absolute;
  top: 0;
  right: -10px;
}
.line-video-liste .news-mosaic > .row > div a.news-category {
  margin-bottom: 0;
  float: left;
  width: auto;
  clear: right;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  text-decoration: none !important;
}
.line-video-liste .news-mosaic > .row > div p.news-keywords {
  margin-bottom: 0;
}
.line-video-liste .news-mosaic > .row > div div.news-intro {
  padding-top: 15px;
  clear: left;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #3F2667;
}
@media (max-width: 991px) {
  .line-video-liste .news-mosaic > .row > div div.news-intro {
    font-size: 20px;
    line-height: 25px;
  }
}
.line-video-liste .news-mosaic > .row > div div.news-intro {
  margin-bottom: 0;
}
.line-video-liste .news-mosaic > .row > div div.news-intro p {
  margin-bottom: 0;
}
.line-video-liste .news-mosaic > .row > div div.news-intro h4 {
  margin-top: 10px;
}
.line-video-liste .news-mosaic > .row > div div.news-intro a {
  text-decoration: none !important;
}
.line-video-liste .news-mosaic > .row > div div.news-intro iframe {
  max-height: 196px;
}
.line-video-liste .news-mosaic > .row > div > a:last-of-type {
  margin-top: 15px;
  clear: left;
  float: left;
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.line-video-liste .news-mosaic > .row > div > a:last-of-type:hover, .line-video-liste .news-mosaic > .row > div > a:last-of-type:active, .line-video-liste .news-mosaic > .row > div > a:last-of-type:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-video-liste .news-mosaic > .row > div > a:last-of-type {
    white-space: normal !important;
  }
}
.line-video-liste .news-mosaic > .row > div > a:last-of-type {
  background-color: #E85652;
  transition: all 150ms;
  text-indent: -10000px;
  width: 35px;
  height: 35px;
}
.line-video-liste .news-mosaic > .row > div > a:last-of-type:after {
  content: "";
  display: block;
  position: absolute;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Assets/Bouton-rotation-1-fleche.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 15px;
  margin-left: 8px;
  filter: brightness(5);
}
.line-video-liste .news-mosaic > .row > div > a:last-of-type:hover, .line-video-liste .news-mosaic > .row > div > a:last-of-type:active, .line-video-liste .news-mosaic > .row > div > a:last-of-type:focus {
  background-color: #9695D3;
}
.line-video-liste a.viewAll {
  font-family: "Nunito", sans-serif;
  text-transform: inherit;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  height: 55px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  border: none;
  min-width: 0;
  border-radius: 50px;
}
.line-video-liste a.viewAll:hover, .line-video-liste a.viewAll:active, .line-video-liste a.viewAll:focus {
  text-decoration: none;
}
@media (max-width: 767px) {
  .line-video-liste a.viewAll {
    white-space: normal !important;
  }
}
.line-video-liste a.viewAll {
  background-color: #E85652;
  color: #fff;
  transition: all 150ms;
  border: none;
  padding: 10px 50px 10px 50px;
  height: 60px;
  width: auto;
  text-indent: 0;
}
.line-video-liste a.viewAll:hover, .line-video-liste a.viewAll:active, .line-video-liste a.viewAll:focus {
  background-color: #9695D3;
  color: #fff;
  text-decoration: none;
}
.line-video-liste a.viewAll:after {
  display: none;
}

.line-salle-de-presse-title {
  padding-top: 50px;
}
@media (max-width: 575px) {
  .line-salle-de-presse-title {
    padding-top: 100px;
  }
}
.line-salle-de-presse-title.bg:before {
  content: "";
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Infolettre/img-background-infolettre.jpg") no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 1000px;
  position: absolute;
}

.line-presse-logo {
  padding-top: 20px;
}
@media (max-width: 767px) {
  .line-presse-logo {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .line-presse-logo.smallpaddingtop {
    padding-top: 60px !important;
  }
}
.line-presse-logo .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 55px;
}
@media (max-width: 767px) {
  .line-presse-logo .content {
    flex-direction: column;
    gap: 0 0;
  }
}
.line-presse-logo .content p {
  margin-bottom: 15px;
  width: auto;
}
@media (max-width: 767px) {
  .line-presse-logo .content p {
    margin-bottom: 0;
  }
}

.line-presse-contact {
  padding-bottom: 120px;
}

.line-infolettre-title {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .line-infolettre-title {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .line-infolettre-title {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .line-infolettre-title {
    padding-top: 100px;
  }
}

.line-infolettre-form {
  padding-bottom: 140px;
  background: url("https://cdn.ca.yapla.com/company/CPYCyxdRREppWlOZ4xTElN7r/asset/images/_REFONTE-TECHNITEXTILE-2024/Infolettre/img-background-infolettre.jpg") no-repeat;
  background-size: cover;
  background-position: top center;
}
.line-infolettre-form #formbuilder-add-wrapper {
  max-width: 546px;
  margin-left: auto;
  margin-right: auto;
}
.line-infolettre-form .formbuilder-confirmation-content {
  padding-top: 30px;
}

.line-404 {
  padding: 55px 0 80px 0 !important;
}
@media (max-width: 991px) {
  .line-404 {
    padding: 130px 0 80px 0 !important;
  }
}
.line-404 .row > div .content {
  text-align: center;
}
.line-404 .row > div .content h1 {
  color: #3F2667;
  font-size: 50px;
  font-weight: 600;
}
.line-404 .row > div .content h1 strong {
  display: block;
  font-size: 200px;
  line-height: 160px;
  font-weight: 600 !important;
}
@media (max-width: 991px) {
  .line-404 .row > div .content h1 strong {
    font-size: 160px;
    line-height: 120px;
  }
}
@media (max-width: 575px) {
  .line-404 .row > div .content h1 strong {
    font-size: 120px;
    line-height: 100px;
  }
}
.line-404 .row > div .content h3 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 400;
  text-transform: initial;
}
@media (max-width: 991px) {
  .line-404 .row > div .content h3 {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .line-404 .row > div .content h3 {
    font-size: 38px;
    line-height: 42px;
  }
}
.line-404 .row > div .content h3 {
  margin-top: 30px;
  margin-bottom: 25px;
}
.line-404 .row > div .content .btn {
  margin-top: 25px;
}

.demo-title .container .row .zone-html .content {
  padding: 64px 0 32px 0;
}
.demo-title .container .row .zone-html .content h2 {
  color: inherit;
  font-size: 48px;
  text-align: center;
}

.line-anim-test .zone-html .content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 50px;
  padding-bottom: 50px;
}
.line-anim-test .zone-html .content img:nth-child(1):hover {
  -webkit-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: pulse 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(2):hover {
  -webkit-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: flash 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(3):hover {
  -webkit-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: bounce 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.line-anim-test .zone-html .content img:nth-child(4):hover {
  -webkit-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -moz-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: shake 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

/*# sourceMappingURL=main.css.map */
