/* SIZES */
.w-100-img,
.w-100-img *{
  width: 100%!important;
}

/* BACKGROUND */
.half-bkg * {
    background-size: 50% auto;
}
.text-decoration-none,
.text-decoration-none:hover{
  text-decoration: none!important;
}

/* TESTIMONIAL */
.testimonial-slider{
  position: relative;
}
.testimonial-slider:before {
    content: '“';
    font-family: 'vcv-material';
    font-size: 270px;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 70px;
    transform: translate(-50%, 0%);
    z-index: 9;
    color: var(--light-tan);
    pointer-events: none;
}
.testimonial-slider:after {
    content: '“';
    font-family: 'vcv-material';
    font-size: 270px;
    position: absolute;
    right: 0;
    bottom: 0;
    line-height: 70px;
    transform: translate(50%, 0%) rotate(180deg);
    z-index: 9;
    color: var(--light-grey);
    pointer-events: none;
}
.testimonial-slider > div {
    border: 1px solid #E6E6E6;
    padding: 60px;
}
.testimonial-slider .vce-content-slide-inner {
    padding: 0 15px!important;
}
.testimonial-slider .vce-content-slider-prev-arrow {
    transform: translate(calc(-100% - 30px), 0px);
}
.testimonial-slider .vce-content-slider-next-arrow {
    transform: translate(calc(100% + 30px), 0px);
}

/* LISTES */
.entry-content ul:not(.slick-dots){
  padding: 0 0px 0 30px;
  margin: 0;
  text-indent: 5px;
  list-style: none;
}
.entry-content ul:not(.slick-dots) li{
  padding: 0 0px 15px 15px;
  position: relative;
  text-indent: 0;
}
.entry-content ul:not(.slick-dots) li:before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--tan);
    display: block;
    position: absolute;
    top: 8px;
    left: -10px;
    transform: translate(-100%, 0%);
    border-radius: 50px;
}
.entry-content ul:not(.slick-dots) p{
  margin: 0;
}

/* TYPO */
.entry-content p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 29px;
}

.vce-faq-group .vce-faq-group-item-heading-title {
    font-size: 18px;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-size: 1em!important;
    font-weight: 600;
}
.vce-faq-group .vce-faq-group-item-content {
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 992px) {
.container-md-fluid {
  max-width:100vw!important;
}
}
@media (max-width: 576px) {
  .entry-content ul:not(.slick-dots) li {
      padding: 0 0px 15px 5px;
      position: relative;
      text-indent: 0;
  }
}




/* BOUTON */
button:before {
  content: "";
  transform: scaleX(1);
  transform-origin: right;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
button:after {
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  border: 1px solid;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
button:hover:before {
    transform: scaleX(0);
}
button:hover:after {
    transform: scaleX(1);
}


/* LINK HYPERTEXT */
.entry-content p a,
.custom-link {
    color: inherit;
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 1px;
    transition: background-size .3s;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: inherit;
    text-decoration: none!important;
}
.entry-content p a:hover,
.custom-link:hover {
    color: inherit;
    background-size: 100% 1px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #00000000;
}

.custom-link {
    padding-bottom: 10px;
    position: relative;
}

.custom-link:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5.5px 0 5.5px 5px;
    border-color: transparent transparent transparent currentColor;
    opacity: 0;
    position: absolute;
    left: calc(100% + 15px);
    top: calc(50% - 5px);
    transform: translate(-100%, -50%);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.custom-link:hover:after{
  opacity: 1;
  transform: translate(100%, -50%);
}



/* CONTACT FORM */
input.wpcf7-form-control, textarea.wpcf7-form-control {
    width: 100%;
    border-radius: 0;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #000;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
input.wpcf7-form-control:focus, textarea.wpcf7-form-control:focus {
    outline: none;
    border-left: 10px solid #000;
}


input.wpcf7-submit{
  background-color: #fff!important;
  color: #000!important;
  text-transform: uppercase;
}
input.wpcf7-submit:hover{
  background-color: #000!important;
  color: #fff!important;
}


/* Arrow */

.anim-arrow > div{
  padding: 0 4em 0 4em;
}

.anim-arrow{
  color: var(--black);
  text-decoration: none;
}

.anim-arrow:hover{
  color: var(--black);
  text-decoration: none;
}

.anim-arrow > div > img{
  transition: .35s ease;
}

.anim-arrow > div:hover > img{
  transform: translateX(30px);

}
