
a {
    color: inherit;
    text-decoration:inherit !important;
    cursor: pointer;
}

ul > li::marker {
    color: #ee5a36;
    font-size: 1.6em;
}

ol>li {
    
    position: relative;
    padding: 16px;
    margin-bottom: 0px;
}
ol>li p{margin-bottom: 0px;}
ol>li::marker{
    color: #ee5a36;
    font-weight: 700;
    
}

ol>li::after {
    content: "";
    position: absolute;
    left: -11px;
    width: 5px;
    background-color: #ee5a36;
    z-index: 0;
    height: 100%;
    top: 5px;
}

.list_product{
    margin:40px 0 30px 0;
    visibility: hidden;
}
.main-review{
    display: none !important;
}
.list_product .item_product{
    margin:20px 20px 0 0;
    
    
}
.list_product .slick-list{padding:0 20% 0 0 !important;}
.item_product .lien_produit{
    text-decoration:none;
}
.list_product .item_product .image_cover{
    background-size:cover !important;
    width: 270px;
    height: 320px;
    display: block;
    position: relative;
    border-radius: 7px;

}
.list_product .item_product .image_cover svg{
    position: absolute;
    top: 15px;
    right: 15px;
}
.list_product .item_product .title_product{
    background: #000;
    width: 100%;
    display: block;
    color: #Fff;
    opacity: 0.7;
    position: absolute;
    bottom: 0;
    padding: 10px;
    text-align: center;
    border-radius: 0 0 7px 7px;
}
.product-template-default .list_product .slick-track{
    left:-330px;
}
.livraison .item_livraison{
    font-size: 19px;
    font-weight: 400;
    display: flex;
}
.livraison .item_livraison span{
    padding: 0 15px;
}
.preloader_carrousel_product{width: 100%; height: 250px; text-align: center; }
.preloader_carrousel_product i {margin-top: 150px;}
.plus_infos{
    color: #81bd33;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 15px;
    display: block;
    width: 100px;
    
}
.layer_infos{
    display: none;
}
.content_infos{
    background: #fff;
    width: 400px; 
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999999999;
    
}
.voile_infos{
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999999;

}

.layer_infos.open{
    display: block;
}
.layer_infos .close_layer {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 40px;
    right: 30px;
    cursor: pointer;
}
.layer_infos .description {
    padding: 100px 30px;
    
    text-align: justify;
}
.layer_infos .CGV{
    padding: 20px;
    color: #757575;
    background-color: #f6f6f6;
    font-size: .75rem;
    line-height: 1rem;
}
.orange{
    color:#ff5c00;
}
.jckwds-delivery-time-creneau .fa-circle-notch{
    position: absolute;
    top: 13px;
    left: 11px;
    font-size: 22px;
    color: #ee5a36;
    
    
}
.jckwds-delivery-time-creneau .notice{color: #ff0000;}
#jckwds-delivery-time-creneau{padding: 0 15px 0 35px;}
.jckwds-delivery-time-creneau .fa-circle-notch:last-child{
    display: none;
}
.payment_method_systempaymulti ul li{
    margin-bottom: 15px;
}
.payment_method_systempaymulti ul li label{
    position: relative;
    padding-left: 40px;
    
}
.payment_method_systempaymulti ul li label:after{
    content: '';
    background: url('../img/3fois-4fois.png') 0px 0px;
    width: 32px;
    height: 32px;
    position: absolute;
    top: -6px;
    left:0px;
}
.payment_method_systempaymulti ul li:last-child label:after{
    content: '';
    background: url('../img/3fois-4fois.png') -32px 0px;
    width: 32px;
    height: 32px;
    position: absolute;
    top: -6px;
    left:0px;
}
.apport_initial{padding-left: 40px;}

/**
 * Tooltip Styles
 */

/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition:    
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition:         
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out,
    transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
 
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */
/* Right */
[data-tooltip]:before{
    bottom: 70%;
    left: 98%;
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: #000;
    border-top-color: hsla(0, 0%, 20%, 0.9);
    rotate: 90deg;
}
[data-tooltip]:after {
    bottom: -70%;
    left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}

#payment_method_systempaystd{
    display: inline-block !important;
}

.variation-Qt, .variation-Qtdesapin, .variation-Qtdebuche{
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 15px;
    display: inline-block;
}
dd {
    margin: 0 !important;
}
.list_product_sapin{
    margin-top: 30px;
}
.list_product_sapin .item_product {
    display: inline-block;
    width: 43%;
    margin-right: 20px;
    border-radius: 7px;
    
}
.list_product_sapin .item_product .lien_produit{
    text-decoration:none;
}
.list_product_sapin .item_product .image_cover{
    background-size:cover !important;
    width: 270px;
    height: 320px;
    display: block;
    position: relative;
    border-radius: 7px;
    border: 1px solid #e1e1e1;

}
.list_product_sapin .item_product .image_cover svg{
    position: absolute;
    top: 15px;
    right: 15px;
}
.list_product_sapin .item_product .title_product{
    background: #000;
    width: 100%;
    display: block;
    color: #Fff;
    opacity: 0.7;
    position: absolute;
    bottom: 0;
    padding: 10px;
    text-align: center;
    border-radius: 0 0 7px 7px;
    min-height: 73px;
}
.carrousel_en_bas{
    padding: 0 15px;
}
.carrousel_en_bas .list_product .item_product .image_cover{
    width: 100%;
}
div[class^='vc_col-'].droite{
    padding-left: 15px;
}
@media (max-width: 575.98px) {
    /* Top (default) */
        [data-tooltip]:before{
            bottom: 100%;
            left: 7%;
            rotate: 0deg;
        }
        [data-tooltip]:after,
        .tooltip:before,
        .tooltip:after,
        .tooltip-top:before,
        .tooltip-top:after {
        bottom: 100%;
        left: 0%;
        }

        [data-tooltip]:before,
        .tooltip:before,
        .tooltip-top:before {
        margin-left: -6px;
        margin-bottom: -12px;
        border-top-color: #000;
        border-top-color: hsla(0, 0%, 20%, 0.9);
        }
    /* END Top (default) */
    .avis-verifier, .avis-verifies-stars {
         max-width: 100% !important;
         flex: 0 0 100% !important;
         text-align: center !important;
         padding: 0 !important;
     }
     #Section-reviews .avis-verifies-stars {
         border-left: none;
         display: none;
     }
     #Section-reviews .avis-verifies-bloc .border-right-review {
         border-right: none;
     }
     #Section-reviews .avis-verifies-stars.my-auto {
         margin-top: 0 !important;
     }
     .titleSection {
         margin-bottom: 10px !important;
     }
     .testimonia-container {
         margin-top: 20px;
     }
     .avis-verifier .desc {
         height: 45px !important;
     }
     #Section-reviews .container {
         padding: 20px 0;
     }
     #Section-reviews .testimonia-container .testimonia:first-child{
         margin-bottom: 10px;
     }
     #Section-reviews .testimonia {
         padding: 0;
     }
     .mobile-none{
         display: none;
     }
     #Section-reviews .jTZQtA {
         padding-top: 0.5rem;
     }
     #lm-widget-wrapper {
         padding: 5px 20px!important;
     }
     .iconic-wds-fields__fields {
         display: block !important;
     }
     div#jckwds-delivery-date-wrapper, div#jckwds-delivery-time-wrapper {
         width: 100%;
     }
     .woocommerce form .form-row textarea {
         height: 5em;
     }
     .ohio-tabs-sc.tab {
         padding: 020px;
     }
     input#jckwds-delivery-date {
         font-size: 16px;
     }
     .woocommerce-page .clb-page-headline {
         min-height: 13vh;
     }
     .woocommerce-page h4.heading-md{
         margin: 0px 0px 0px 0px;
     }
     .woocommerce-page .clb-woo-sidebar {
         padding: 5px 20px 10px 20px;
     }
      div#sticky-woo-sidebar {
         display: flex !important;
         flex-direction: column-reverse !important;
         padding: 0 15px;
     }
     .woocommerce form .woocommerce-billing-fields .form-row {
         width: 100%;
         padding: 0;
     }
     p#billing_email_field {
         width: 100%;
     }
     p#billing_phone_field {
         padding-right: 0px !important;
     }
     .woo_c-product-details-inner .price{
         display: block !important;
         font-size: 18px;
     }
     
     [class*="type"] .woo_c-product-details .variations_button{
         width: 100%;
         top: 0;
     }
     .cart-total{
         display: none;
     }
     .btn-round .ion, .btn-round i{
         width: 42px;
         height: 42px;
     }
     .menu-optional .cart .icon svg{
         position: relative;
         top: -5px;
     }
     .header-wrap{
         box-shadow: 0 10px 30px -25px rgba(0,0,0,.4);
     }
     .logo > img{
         margin: 0px 0 15px;
     }
     .woo_c-product-details-variations.cart .variations_button{
         display: block;
         position: fixed;
         right: 0;
         left: 0;
         z-index: 999999;
         bottom: -1px;
         background: #fff;
         padding: 15px 15px 0;
         box-shadow: 0 10px 45px 0px rgba(0,0,0,.4);
         top: inherit;
     }
     .woo_c-product-details-variations.cart .simple-qty{
         position: fixed;
         bottom: 9px;
         z-index: 9999999;
         left: 13px;
         background: #6ec5b4;
         border-radius: 25px;
         padding: 2px 0px;
         width: 46%;
     } 
     .woo_c-product-details-variations.cart .qib-button.qib-button-wrapper{
         position: relative;
         left: 11px;
     }
     .woo_c-product-details-variations.cart .simple-qty > .label{
         display: none;
     }
     .woo_c-product-details-variations.cart .variations_button .single_add_to_cart_button{
         text-align: right;
         border-radius: 25px;
     }
 
     .list_product{
         margin:40px 0 30px 0;
     }
     .list_product .item_product{
         margin:20px 12px 0 0;
         
     }
     .list_product .slick-list{padding:0 30% 0 0 !important;}
     .item_product .lien_produit{
         text-decoration:none;
     }
     .list_product .item_product .image_cover{
         background-size:cover !important;
         width: 200px;
         height: 250px;
         display: block;
         position: relative;
         border-radius: 7px;
     
     }
     .list_product .item_product .image_cover svg{
         position: absolute;
         top: 15px;
         right: 15px;
     }
     .list_product .item_product .title_product{
         background: #000;
         width: 100%;
         display: block;
         color: #Fff;
         opacity: 0.7;
         position: absolute;
         bottom: 0;
         padding: 10px;
         text-align: center;
         border-radius: 0 0 7px 7px;
     }
     .product-template-default .list_product .slick-track{
         left:inherit;
     }

    .content_infos{
        background: #fff;
        width: 340px;
     }

     .list_product_sapin .item_product .image_cover{
        width: 100%;
     }
     .list_product_sapin .item_product {
        width: 100%;
     }
     div[class^='vc_col-'].droite{
        padding-left: 0px;
    }
 }

 
.order_data_column{
    display: none !important;
}
/**
* template departement_page
*/
.page-template-template_custom_dep .mysticky-welcomebar-fixed-wrap {
    display: none !important;
}
.departement_page .container{
    max-width: 1300px;
    margin: 0 auto;
}
.departement_page .container-page{
    max-width: 990px;
    margin: 0 auto;
}
.departement_page .carrousel__bg {
    position: relative;
    margin-top: 110px;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    width: 100%;
    height: 450px;
}
.departement_page .carrousel__bg:after{
    content:"";
    background-color: #000;
    opacity:0.5;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
}
.departement_page .carrousel_dep .content_carrosuel{
    position: absolute;
    top:200px;
    width: 100%;

}
.departement_page .carrousel_dep .content_carrosuel h1{ 
    text-align: center; 
    width: 100%;
    display: block;
    color: #FFF;
}
.departement_page .carrousel_dep .breadcrump{
    text-align: center;
}
.departement_page .carrousel_dep .breadcrump ul li{
    list-style: none;
    display: inline-block;
    color: #fff;
}
.departement_page .carrousel_dep .breadcrump ul li a{
    color: #f07344;
}
.departement_page .carrousel_dep .avis_product{
    text-align: center;
    display: block;
}
.departement_page .carrousel_dep .description_courte{
    text-align: center;
    color: #fff;
    margin-top: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.custormer-reviews {
    cursor: pointer;
    max-width: 330px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 15px 25px 0;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(21px);
    backdrop-filter: blur(21px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}
.box-review-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 0 0 100%;
    padding: 0 15px;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.custormer-reviews .title {
    color: #fff;
    font-size: 20px;
    margin: 0 0 15px;
}
.custormer-reviews .title i {
    color: #00B67A;
    font-size: 16px;
    margin-right: 4px;
    position: relative;
    top: -2px;
}
.custormer-reviews .box-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.custormer-reviews .image {
    margin-right: 10px;
}
.custormer-reviews .content_review {
    padding-top: 6px;
}
.custormer-reviews .star {
    color: #FBB03B;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 1px;
}
.custormer-reviews .review {
    font-size: 15px;
    color: #fff;
    text-align: center;
    margin-top: 5px;
}


.departement_page .content{
    padding: 50px;
}
.departement_page .content h3,
.departement_page .content p{
    text-align: left;
}
.list_product_departement{
    background-color: #f3f4f8;
    
    padding: 50px 0;
    position: relative;
}
.products_departement{
    padding:40px 0 40px 0;
    
}
.products_departement .item_product{
    padding: 15px;
    display: inline-block;
    box-shadow: 0px 0px 10px -6px rgba(0,0,0,0.5);
    background: #fff;
    margin: 10px;
    border-radius: 7px;
    width: 25%;
}
.products_departement .slick-list{padding:0 20% 0 0 !important;}
.products_departement .item_product .lien_produit{
    text-decoration:none;
    width: 100%;
}
.products_departement .item_product .image_cover{
    background-size:cover !important;
    width: 100%;
    height: 250px;
    display: block;
    position: relative;
    border-radius: 7px;
    border: 1px solid #eee;
}
.products_departement .item_product .image_cover svg{
    position: absolute;
    top: 15px;
    right: 15px;
}
.products_departement .item_product .title_product{
    font-size: 20px;
    width: 100%;
    display: block;
    color: #000;
    padding: 10px;
    text-align: center;
    
}
.products_departement .item_product .price{
    color: var(--red);
    font-weight: bold;
    
}

.products_departement .item_product .add-to-cart-btn{
    background-color: #3a8f96;
    color: #fff;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 15px;
    display: block;
}
.products_departement .item_product .add-to-cart-btn:hover{
    background-color: #ee5a36;
}
.liste_page_template_dep{
    padding: 50px;
    background: #f3f4f9;
}
.liste_page_template_ville{
    background: #fff7ec;
}
.liste_page_template_dep .list_link_dep{
    display: block;
}
.liste_page_template_dep .lien_dep{
    border-radius: 12px;
    border: 1px solid #6ec5b4;
    display: inline-block;
    width: 22%;
    text-align: center;
    padding: 15px;
    margin: 10px;
    color:#3a8f96;
}
.liste_page_template_dep .lien_dep span{
    align-items: center;
    display: flex;
}
.list_product_departement .certificats{
    width: 500px;
    margin: 0 auto;
    padding: 30px 0 0 0;
}
.list_product_departement .certificats img{
    width: 100px;
}
@media (max-width: 767px) {
    .list_product_departement{
        padding: 30px 0 0 0;
    }
    .departement_page .carrousel__bg{
        height: 550px;
        margin-top:70px;
    }
    .departement_page .carrousel_dep .content_carrosuel{
        top: 80px;
    }
    .products_departement .item_product{
        width: 50%;
    }
    .departement_page .container-page,
    .departement_page .container {
        max-width: 100%;
        margin: 0px auto;
        padding: 15px;
    }
    .fixe_btn_actions{
        position: fixed;
        bottom: 0;
        background: #fff;
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 6px rgba(202, 202, 202, .4);
        width: 100%;
        left: 0;
        right: 0;
        z-index: 9999999;
    }
    .fixe_btn_actions ul {
        padding: 0;
        display: flex;
        margin: 10px 0;
    }
    .fixe_btn_actions ul li{
        list-style: none;
        width: 33.33%;
        display: inline-block;
        padding: 0 9px;
        margin-bottom: 0;
    }
    .fixe_btn_actions ul li a{
        text-align: center;
        display: block;
        width: 100%;
        line-height: 15px;
        color: #3a8f96;
        margin: 0 auto;
    }
    .fixe_btn_actions ul li a.tel_footer{
        background: #ee5a36;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        text-align: center;
        padding: 5px 4px;
        box-shadow: 0 0 6px #aaa;
        border: 2px solid #fff;
        margin: 0 auto;
    }
    .fixe_btn_actions ul li a.tel_footer svg {
        animation: appeler_animate_tel_image_cercle 1.5s infinite ease-in-out;
    }
    .fixe_btn_actions ul li a span {
        font-size: 13px;
        display: block;
    }
    #tidio-chat-iframe{
        bottom: 0% !important;
    }
    .departement_page .carrousel_dep .description_courte{
        
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }
    
}
@media (max-width: 575px) {
    .departement_page .carrousel_dep .content_carrosuel h1{
        padding: 0 15px;
    }
    .products_departement{
        padding: 0 0 30px 0;
    }
    .products_departement .item_product{
        width: 100%;
        margin: 10px 0px;
    }
    .departement_page .content{
        padding: 30px 0px;
    }
    .liste_page_template_dep{
        padding: 30px 0px;
    }
    .liste_page_template_dep .list_link_dep{
        display: block;
    }
    .liste_page_template_dep .lien_dep{
        width: 100%;
        margin: 10px 0;
    }
    .list_product_departement .certificats{
        width: 100%;
        margin: 0 auto;
        padding: 0 0 30px 0;
    }
    .list_product_departement .certificats img{
        width: auto;
    }
    .list_product_departement .certificats .row .col-md-4{
        width: 33.33%;
    }

}

.banniere_annee{
    background:url('../img/banniere-annee.jpg');
    position: relative;
    top: 0;
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    height: 70px;
    display: none;
}
.banniere_annee p{
    color: #f3d500;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

/*----------------------------------------*/
/*  2.12 faq
/*----------------------------------------*/
section.faq{
    padding: 50px 0px;
    background-color: #F3F5F7;
}
.tp-faq-wrapper .accordion-items {
    position: relative;
    padding: 0;
}
.tp-faq-title-box{
    padding-bottom: 30px;
}
.tp-faq-wrapper .accordion-items:not(:last-child) {
    box-shadow: 0 1px 0 0 rgba(1, 17, 22, 0.14);
    margin-bottom: 20px;
}
.tp-faq-wrapper .accordion-header {
    position: relative;
}
.tp-faq-wrapper .accordion-header .accordion-buttons {
    width: 100%;
    padding: 20px 30px 20px 16px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    text-align: left;
    position: relative;
    margin-bottom: 0;
    background: #ffffff;
    color: #3a8f96;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.tp-faq-wrapper .accordion-header .accordion-buttons {
    font-size: 18px;
}
}
.tp-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) {
    color: #ee5a36;
}
.tp-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.tp-faq-wrapper .accordion-header .accordion-buttons:not(.collapsed) .accordion-icon::after {
    background-color: #ee5a36;
}
.tp-faq-wrapper .accordion-header .accordion-buttons .accordion-icon {
    position: absolute;
    top: 35px;
    right: 25px;
}
.tp-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 16px;
    left: 50%;
    top: 50%;
    transition: 0.4s;
    border-radius: 30px;
    transform: translate(-50%, -50%);
    background-color: #3a8f96;
}
.tp-faq-wrapper .accordion-header .accordion-buttons .accordion-icon::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 2px;
    left: 50%;
    top: 50%;
    border-radius: 30px;
    transform: translate(-50%, -50%);
    background-color: #3a8f96;
}
.tp-faq-wrapper .accordion-body {
    text-align: left;
    padding: 0 15px 15px;
    background: #fff;
}
.faq-images img{
    border-radius: 12px;
}
.tp-faq-area .align-items-end{
    align-items: center !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
.tp-faq-wrapper .accordion-body {
    padding-right: 65px;
}
}
.tp-faq-wrapper .accordion-body p {
    font-weight: 500;
    font-size: 17px;
    line-height: 1.57;
    color: #4d5051;
    margin-bottom: 0;
}
@media (max-width: 575px) {
    .tp-faq-wrapper{
        margin-top: 30px;
    }
}
/*----------------------------------------*/
/*  2.12 contact
/*----------------------------------------*/
section.contact{
    background: #3a8f96;
    padding: 50px 0px;
}
.img_contactez_nous{
    background-size: cover !important;
    background-position: 50% 50% !important;
    border-radius: 12px;
    width: 100%;
    height: 640px;

}
section.contact .contact-submit-boxarea {
    padding: 32px 40px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: #fff;
}
section.contact::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: #01060E;
    opacity: 0.4;
    z-index: -1;
}
@media (max-width: 575px) {
    section.contact .contact-submit-boxarea {
        padding: 15px;
    }
    .frm_style_style-formidable.with_frm_style .frm_submit button{
        width: 100%;
    }
    section.contact img{
        margin-top: 30px;
    }
    .img_contactez_nous{
        height: 240px;
        margin-top: 30px;
    }
}
/*----------------------------------------*/
/*  2.12 video
/*----------------------------------------*/
section.video{
    
    padding: 150px 0;
    position: relative;
    background-size: cover !important;
    background-position: 50% 50% !important;
    width: 100%;
    height: 100%;
}
section.video:before{
    background-color: #000000;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.5;
    display: block;
    position: absolute;
    top: 0;

}
.video-three__action .popup-video {
    display: inline-block;
    margin: 0 auto;
    font-size: 27px;
    color: #fff;
    background: rgba(125, 113, 112, 0.8);
    text-align: center;
    position: relative;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -moz-transition: all 0.35s;
    -ms-transition: all 0.35s;
    width: 102px;
    height: 102px;
    border: 1px solid #fff;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    
}
.video-three__action .popup-video::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #ee5a36;
    opacity: 0;
    border-radius: 50%;
    -webkit-animation: pulse-border-2 1.5s linear infinite;
    animation: pulse-border-2 1.5s linear infinite;
}
.video-three__action .popup-video::after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 1px solid #ee5a36;
    opacity: 0;
    border-radius: 50%;
    -webkit-animation: pulse-border 1s linear infinite;
    animation: pulse-border 1s linear infinite;
}
.layer_video{
    display: none;
    
    
}
.layer_video iframe{
    position: absolute;
    z-index: 99999999;
    left: calc(50% - 280px);
    border-radius: 25px;
    border: 2px solid #fff;
    top: 0px;
}
.layer_video:after{
    content:"";
    display: block;
    position: fixed;
    z-index: 99999;
    background: #000;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    
}
@media (max-width: 575px) {
    .layer_video iframe{
        width: 100%;
        left: 0px;
        right: 0px;
        padding: 15px;
        border: 0;
        
    }
}

/*----------------------------------------*/
/*  2.12 nos_engagements
/*----------------------------------------*/
.nos_engagements {
    background-color: #fff;
    padding: 50px 0;
    margin-bottom: 30px;
    border-radius: 12px;
}

.nos_engagements .wrapper_engagement {
    
    margin-top: 35px;
}
.nos_engagements ul {
    
    padding-left: 0px;
}
.nos_engagements ul li {
    list-style: none;
    padding: 10px 8px;
    margin-bottom: 20px;
    width: 23%;
    display: inline-block;
    background: #fff7ec;
    margin-right: 15px;
    border-radius: 12px;
    border: 1px solid #ffb7a5bf;
    text-align: center;

}
.nos_engagements ul li svg {
    width: 42px;
    height: 42px;
    display: block;
    margin: 0 auto;
}
.nos_engagements ul li span {
    display: block;
    color: #3a8f96;
}
@media (max-width: 575px) {
    .nos_engagements{
        padding: 30px 0;
    }
    .nos_engagements .wrapper_engagement {
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        margin-top: 35px;
    }
    .nos_engagements ul {
        display: flex;
        padding-left: 0px;
    }
    .nos_engagements ul li {
        width: 180px;
    }
    .nos_engagements .wrapper_engagement::-webkit-scrollbar {
        height: 8px;
    }
    
    .nos_engagements .wrapper_engagement::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #ee5a36 !important;
    }
    
    .nos_engagements .wrapper_engagement::-webkit-scrollbar-track {
        border: 1px solid #f3f4f8;
        background-color: #f3f4f8;
        border-radius: 10px;
    }
}
/*----------------------------------------*/
/*  2.12 nos_atouts
/*----------------------------------------*/
.nos_atouts{
    background-color: #f3f4f8;
    padding: 45px 0px;
    margin-bottom: 30px;
    border-radius: 24px 24px 0 0;
    width: 780px;
    margin: -50px auto 0;
    position: relative;
    opacity: 0.9;
}
.nos_atouts ul li{
    display: flex;
    padding: 7px 0px;
}
.nos_atouts ul li::marker{
    display: none;

}
.nos_atouts ul li:before{
    content:"";
    width:24px;
    height: 24px;
    background: url("../img/right_circle.svg");
    background-size: cover;
    display: block;
    margin-right: 15px;
}

@media (max-width: 575px) {
    .nos_atouts{
        width: 100%;
        margin: -45px auto 0;
        padding: 45px 0px 0 0;
    }
    .nos_atouts ul{
        padding: 0px;
    }
    .nos_atouts ul li{
        display: inline-block;
        text-align: left;
    }
    .nos_atouts ul li:before{
        display: inline-block;
        position: relative;
        top:5px;
        margin-right: 5px;
    }
}
/*----------------------------------------*/
/*  2.12 nos_avis_trust
/*----------------------------------------*/
.nos_avis_trust {
    background-color: #fff;
    padding: 50px 0;
    margin-bottom: 30px;
    border-radius: 12px;
}
.nos_avis_trust .title{
    color: #000;
}
.nos_avis_trust .title > i {
    color: #00B67A;
}
.nos_avis_trust .wrapper_avis_trust {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    margin-top: 35px;
}
.nos_avis_trust ul {
    display: flex;
    padding-left: 0px;
}
.nos_avis_trust ul li {
    list-style: none;
    padding: 15px 15px 20px 15px;
    margin-bottom: 0;
    width: 250px;
    display: inline-block;
    background: #fff7ec;
    margin-right: 15px;
    border-radius: 12px;
    border: 1px solid #ffb7a5bf;
    text-align: center;
    position: relative;

}
.nos_avis_trust ul li svg {
    width: 42px;
    height: 42px;
    display: block;
    margin: 0 auto;
}
.nos_avis_trust ul li span {
    display: block;
    color: #3a8f96;
}
.nos_avis_trust ul li .avatar{
    display: inline-block;
    background: #3a8f96;
    color: #fff;
    padding: 3px 3px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.nos_avis_trust .wrapper_avis_trust::-webkit-scrollbar {
    height: 8px;
}

.nos_avis_trust .wrapper_avis_trust::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #ee5a36 !important;
}

.nos_avis_trust .wrapper_avis_trust::-webkit-scrollbar-track {
    border: 1px solid #f3f4f8;
    background-color: #f3f4f8;
    border-radius: 10px;
}
.nos_avis_trust .star {
    color: #FBB03B;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 1px;
    padding: 15px 0;
}
.nos_avis_trust .description_avis{
    text-align: left;
}
.nos_avis_trust .author{
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    right: 15px;
}
@media (max-width: 575px) {
    .nos_avis_trust{
        padding: 30px 0;
    }
    .nos_avis_trust .wrapper_avis_trust {
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        margin-top: 35px;
    }
    .nos_avis_trust ul {
        display: flex;
        padding-left: 0px;
    }
    
    
}

@keyframes pulse-border {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1.4);
      transform: scale(1.4);
      opacity: 0;
    }
}
@-webkit-keyframes pulse-border-2 {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1.8);
      transform: scale(1.8);
      opacity: 0;
    }
}
  
@keyframes pulse-border-2 {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(1.8);
      transform: scale(1.8);
      opacity: 0;
    }
}
@keyframes appeler_animate_tel_image_cercle{
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    } 
    
}
@-moz-keyframes appeler_animate_tel_image_cercle {
    10% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }
}
@-webkit-keyframes appeler_animate_tel_image_cercle {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}
@-o-keyframes appeler_animate_tel_image_cercle {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-moz-keyframes appeler_animate_image_cercle {
    10% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -moz-transform: rotate(-100deg) scale(1) skew(0deg);
    }
    20% {
        -moz-transform: rotate(100deg) scale(1) skew(0deg);
    }
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(0deg);
    }
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(0deg);
    }
    50% {
        -moz-transform: rotate(-10deg) scale(1) skew(0deg);
    }
    60% {
        -moz-transform: rotate(0) scale(1) skew(0deg);
    }
    100% {
        -moz-transform: rotate(0) scale(1) skew(0deg);
    }
}
@-webkit-keyframes appeler_animate_image_cercle {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -webkit-transform: rotate(-100deg) scale(1) skew(0deg);
    }
    20% {
        -webkit-transform: rotate(100deg) scale(1) skew(0deg);
    }
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(0deg);
    }
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(0deg);
    }
    50% {
        -webkit-transform: rotate(-10deg) scale(1) skew(0deg);
    }
    60% {
        -webkit-transform: rotate(0) scale(1) skew(0deg);
    }
    100% {
        -webkit-transform: rotate(0) scale(1) skew(0deg);
    }
}
@-o-keyframes appeler_animate_image_cercle {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
    10% {
        -o-transform: rotate(-100deg) scale(1) skew(0deg);
    }
    20% {
        -o-transform: rotate(100deg) scale(1) skew(0deg);
    }
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(0deg);
    }
    40% {
        -o-transform: rotate(25deg) scale(1) skew(0deg);
    }
    50% {
        -o-transform: rotate(-10deg) scale(1) skew(0deg);
    }
    60% {
        -o-transform: rotate(0) scale(1) skew(0deg);
    }
    100% {
        -o-transform: rotate(0) scale(1) skew(0deg);
    }
}