/*
Theme Name: sps-theme-simulateur
Theme URI: http://www.sugarpepperandsalt.com
Author: SPS
Author URI: http://www.sugarpepperandsalt.com
Description: SPS thème simulateur - Version de développement avec contenu vide et non indexable
Version: 1.0.0
Text Domain: sps-simulateur

This theme, like WordPress, is licensed under the GPL.
sps is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.

Resource Licenses:
Font Awesome: http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
Bootstrap: http://getbootstrap.com | https://github.com/twbs/bootstrap/blob/master/LICENSE (Code licensed under MIT, documentation under CC BY 3.0.)
Owl Carousel 2: http://www.owlcarousel.owlgraphic.com/ | https://github.com/smashingboxes/OwlCarousel2/blob/develop/LICENSE (Code licensed under MIT)
and of course
jQuery: https://jquery.org | (Code licensed under MIT)
WP Bootstrap Navwalker by Edward McIntyre: https://github.com/twittem/wp-bootstrap-navwalker | GNU GPL
*/

/* Styles pour le contenu vide de développement */
.empty-content-notice {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 30px;
    margin: 20px 0;
    text-align: center;
    color: #6c757d;
}

.empty-content-notice p {
    margin: 10px 0;
    font-size: 16px;
}

.empty-content-notice strong {
    color: #495057;
    font-size: 18px;
}

/* ===== EXECUTIVE SELLING SIMULATOR STYLES ===== */
.simulator-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
}

.simulator-header {
    background: #000000;
    color: #fff;
    padding: 30px 40px;
    margin-bottom: 30px;
    border-radius: 0;
}

.simulator-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0px;
    color: #fff;
    font-family: 'Mont_semibold';
    text-transform: uppercase;
}

.simulator-header p {
    color: #fefefe;
    font-size: 16px;
    margin: 0;
    font-family: 'Leelawadee';
}

.simulator-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: none;
    padding: 30px;
    margin-bottom: 30px;
}

.simulator-step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #7dca8c;
}

.simulator-step-number {
    background: #7dca8c;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Mont_semibold';
}

.simulator-step-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #000000;
    font-family: 'Mont_semibold';
    text-transform: uppercase;
}

.simulator-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    margin-bottom: 20px;
}

.simulator-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    outline: none;
    font-family: 'Leelawadee';
    font-size: 16px;
    background: #fff;
    transition: border-color 0.3s;
}

.simulator-input:focus {
    border-color: #7dca8c;
    box-shadow: none;
}

.simulator-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.simulator-checkbox-label:hover {
    background-color: #f8f9fa;
    border-color: #7dca8c;
}

.simulator-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #7dca8c;
}

.simulator-btn {
    display: inline-block;
    border: 0;
    background: #7dca8c;
    color: #fff;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Mont_semibold';
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s;
    min-width: 120px;
}

.simulator-btn:hover {
    background: #6bbf7a;
}

.simulator-table-wrap {
    margin-top: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    display: none;
}

.simulator-table {
    width: 100%;
    border-collapse: collapse;
}

.simulator-table th,
.simulator-table td {
    padding: 15px 20px;
    border-top: 1px solid #e5e7eb;
    font-family: 'Leelawadee';
}

.simulator-table thead th {
    background: #7dca8c;
    text-align: left;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

.simulator-table tbody tr:nth-child(odd) {
    background: #f8f9fa;
}

.simulator-table tbody tr:hover {
    background: #e8f5e8;
}

.simulator-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Mont_semibold';
}

.simulator-tag-blue {
    background: #7dca8c;
    color: #fff;
}

.simulator-tag-red {
    background: #dc3545;
    color: #fff;
}

.simulator-tag-green {
    background: #28a745;
    color: #fff;
}

.simulator-tag-gray {
    background: #6c757d;
    color: #fff;
}

.simulator-tip {
    background: #e8f5e8;
    border-left: 4px solid #7dca8c;
    padding: 15px 20px;
    border-radius: 0;
    color: #000;
    margin-top: 20px;
    font-family: 'Leelawadee';
}

.simulator-tip strong {
    color: #000;
    font-weight: 700;
}

.simulator-kpi-table {
    margin-top: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
}

.simulator-kpi-table td:first-child {
    font-weight: 700;
    font-family: 'Mont_semibold';
    text-transform: uppercase;
    font-size: 14px;
}

.simulator-kpi-strong {
    background: #f8f9fa;
}

.simulator-kpi-total {
    background: #7dca8c;
    color: #fff;
    font-weight: 700;
}

.simulator-projection {
    margin-top: 30px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 0;
    border: 2px solid #e5e7eb;
}

.simulator-projection h3 {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: 'Mont_semibold';
    text-transform: uppercase;
}

.simulator-range-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.simulator-range {
    width: 100%;
    height: 8px;
    border-radius: 0;
    background: #e5e7eb;
    appearance: none;
    outline: none;
    cursor: pointer;
}

.simulator-range::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: #7dca8c;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.simulator-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 0;
    background: #7dca8c;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.simulator-range-value {
    font-size: 32px;
    font-weight: 700;
    min-width: 5rem;
    text-align: right;
    color: #000;
    font-family: 'Mont_semibold';
}

.simulator-projection-content {
    border: 2px solid #7dca8c;
    border-radius: 0;
    padding: 20px;
    margin-top: 20px;
    background: #fff;
}

.simulator-projection-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.simulator-projection-title {
    font-weight: 700;
    color: #000;
    font-size: 18px;
    font-family: 'Mont_semibold';
    text-transform: uppercase;
}

.simulator-projection-subtitle {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    font-family: 'Leelawadee';
}

.simulator-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 14px 0;
}

.simulator-metric-tile {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0;
    border: 1px solid #e5e7eb;
}

.simulator-metric-label {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Leelawadee';
    text-transform: uppercase;
    font-weight: 700;
}

.simulator-metric-values {
    display: flex;
    gap: 20px;
    align-items: center;
}

.simulator-metric-value {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    font-family: 'Mont_semibold';
}

.simulator-metric-arrow {
    color: #7dca8c;
    font-size: 24px;
    font-weight: 700;
}

.simulator-metric-projected {
    font-size: 20px;
    font-weight: 700;
    color: #7dca8c;
    font-family: 'Mont_semibold';
}

.simulator-revenue-tile {
    background: #7dca8c;
    border: 2px solid #7dca8c;
    border-radius: 0;
    padding: 30px;
    text-align: center;
    margin-top: 20px;
}

.simulator-revenue-label {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-family: 'Mont_semibold';
    text-transform: uppercase;
}

.simulator-revenue-amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 10px 0;
    font-family: 'Mont_semibold';
}

.simulator-revenue-gain {
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    font-family: 'Mont_semibold';
}

.simulator-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.simulator-orange {
    color: #7dca8c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simulator-input-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .simulator-range-wrap {
        flex-direction: column;
        align-items: stretch;
    }
    
    .simulator-range-value {
        text-align: center;
    }
}

@font-face {
    font-family: 'Leelawad';
    src: url('fonts/leelawad.ttf') format('truetype');
}

@font-face {
    font-family: 'Leelawadee';
    src: url('fonts/Leelawadee.eot') format('embedded-opentype'), /* IE6-IE8 */
    url('fonts/Leelawadee.woff') format('woff'), /* Pretty Modern Browsers */
    url('fonts/Leelawadee.ttf') format('truetype'), /* Safari, Android, iOS */
    url('fonts/Leelawadee.svg#Leelawadee') format('svg');
}

@font-face {
    font-family: 'Leelawdb';
    src: url('fonts/leelawdb.ttf') format('truetype');
}

/******** FONT FAMILY MONT **************/

@font-face {
    font-family: 'Mont_bold';
    src: url('fonts/Mont/mont-bold-webfont.woff2') format('woff2'), url('fonts/Mont/mont-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mont_semibold';
    src: url('fonts/Mont/Mont-SemiBold.woff2') format('woff2'), url('fonts/Mont/Mont-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont_regular';
    src: url('fonts/Mont/Mont-Regular.woff2') format('woff2'), url('fonts/Mont/Mont-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mont_book';
    src: url('fonts/Mont/Mont-Book.woff2') format('woff2'), url('fonts/Mont/Mont-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    font-family: 'Leelawadee';
    font-size: 16px;
    color: #383838;
    line-height: 18px;
}

body {
    margin: 0;
    font-family: 'Leelawadee';
    font-size: 16px;
    font-weight: 400;
    color: #383838;
    line-height: 18px;
    background-color: #fff;
}

.container {
    outline: none;
}

a {
    font-family: 'Leelawadee';
    font-size: 15px;
    color: #212121;
    text-decoration: none;
}

a:active,
a:focus,
a:hover {
    outline: 0;
    text-decoration: none;
    color: #212121;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Leelawadee';
    color: #383838;
    margin-top: 0;
    margin-bottom: 10px;
}

h1 {
    font-size: 32px;
    line-height: 34px;
    font-weight: 700;
    font-family: 'Mont_semibold';
}

h2 {
    font-size: 27px;
    line-height: 29px;
    font-weight: 700;
    font-family: 'Mont_semibold';
}

h3 {
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    font-family: 'Mont_semibold';
}

h4 {
    font-size: 17px;
    line-height: 19px;
}

h5 {
    font-size: 15px;
    line-height: 17px;
}

h6 {
    font-size: 12px;
    line-height: 14px;
}

p {
    margin: 0 0 10px;
    font-family: 'Leelawadee';
    font-size: 16px;
    color: #212121;
    line-height: 20px;
}

img {
    border: 0;
    max-width: 100%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
    -webkit-padding-start: 0;
    -moz-padding-start: 0;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

.p-0 {
    padding: 0;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

/******* HEADER ********/

header {
    background-color: #000000;
}

a.navbar-brand.custom-logo-link img {
    height: auto;
}

.navbar-brand {
    padding: 15px 0;
}

a.video-coaching {
    font-size: 13px;
    height: 33px;
    color: #fefefe;
    line-height: 20px;
    display: block;
    float: right;
    margin-top: 20px;
    background: url('img/icon-video.png') #7dca8c no-repeat 10px;
    border-radius: 5px;
    padding: 7px 8px 0px 30px;
}

.navbar-nav .nav-item {
    list-style-type: none;
}

.navbar-nav li a.nav-link {
    text-transform: uppercase;
}

.navbar-nav .nav-item a.nav-link span.caret {
    display: none;
}

.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    background-color: #7dca8c;
    background-image: none;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-color: #7dca8c;
    background-image: none;
}


/***** HOME PAGE *******/

body.home {
    background-color: #212121;
}

div#fond-slider {
    min-height: 403px;
    background-position: center;
    background-size: cover;
}

.carousel-inner {
    height: 100%;
}

.section-banner {
    width: 100%;
    background-color: #f1f1f1;
    background-position: top center;
    background-repeat: no-repeat;
    padding-top: 185px;
    min-height: 282px;
    overflow: hidden;
    background-size: cover;
}

.bloc_desc_banner {
    background-color: rgba(33, 33, 33, .9);
    height: 78px;
    width: 340px;
    padding-top: 10px;
    padding-left: 19px;
}

.bloc_desc_banner h1 {
    font-weight: 400;
    margin-bottom: 0;
}

.bloc_desc_banner h1 {
    color: #7dca8c;
    font-size: 26px;
    text-transform: uppercase;
}

.bloc_desc_banner .desc_banner {
    color: #fff;
    font-size: 16px;
}

.bloc_desc_banner .desc_banner p {
    color: #fff;
}


/* Page Interne */


/* Bloc Haut */

.bloc_haut {
    width: 790px;
    min-height: 280px;
    margin: auto !important;
}

.bloc_title .bloc_title_desc {
    text-align: center;
}

.bloc_haut_part h3 {
    text-align: center
}

.bloc_haut_part:hover h3 {
    color: #ffffff;
}

.bloc_haut_part:hover .bloc_haut_iconh {
    display: block;
    margin-bottom: 10px;
}


/* Bloc Haut part g */

.bloc_haut_partg {
    width: 220px !important;
    height: 285px;
    background-color: #efefef;
    padding-left: 13px !important;
    padding-right: 13px !important;
    padding-top: 40px;
    padding-bottom: 40px;
}

.bloc_haut_partg .bloc_haut_iconh {
    display: none;
}

.bloc_haut_partg.hoveric .bloc_haut_iconh {
    display: black;
}

.bloc_haut_partg .bloc_haut_icon {
    margin-bottom: 10px !important;
}

.bloc_haut_partg h2 {
    font-size: 29px;
    color: #7dca8c;
    text-align: center !important;
    margin-bottom: 5px;
    font-weight: 400;
}

.bloc_haut_partg h4 {
    font-size: 15px;
    color: #7dca8c;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 20;
}

.bloc_haut_partg .bloc_haut_desc {
    text-align: center !important;
    line-height: 2px;
    color: #212121;
}

.bloc_haut_partg .bloc_haut_desc p {
    font-size: 15px;
}

.bloc_haut_partg:hover {
    background-color: #7dca8c;
}

.bloc_haut_partg:hover h2 {
    color: #ffffff !important;
}

.bloc_haut_partg:hover h4 {
    color: #ffffff;
}

.bloc_haut_partg:hover .bloc_haut_icon {
    display: none;
}


/* End Bloc Haut part g */


/* Bloc Haut part v */

.bloc_haut_partv {
    width: 220px !important;
    margin-left: 65px;
    margin-right: 65px;
    height: 285px;
    background-color: #efefef;
    padding-left: 13px !important;
    padding-right: 13px !important;
    padding-top: 40px;
    padding-bottom: 40px;
}

.bloc_haut_partv .bloc_haut_icon {
    display: block;
    margin-bottom: 10px;
}

.bloc_haut_partv.hoveric .bloc_haut_icon {
    display: none;
}

.bloc_haut_partv .bloc_haut_iconh {
    display: none;
}

.bloc_haut_partv.hoveric .bloc_haut_iconh {
    display: block;
    margin-bottom: 10px;
}

.bloc_haut_partv h2 {
    font-size: 30px;
    color: #7dca8c !important;
    text-align: center !important;
    margin-bottom: 5px;
    font-weight: 400;
}

.bloc_haut_partv h4 {
    font-size: 15px;
    color: #7dca8c;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 20;
}

.bloc_haut_partv.hoveric h2 {
    color: #fff !important;
}

.bloc_haut_partv.hoveric h4 {
    color: #fff;
}

.bloc_haut_partv.hoveric {
    background-color: #7dca8c;
}

.bloc_haut_partv .bloc_haut_desc {
    text-align: center !important;
    line-height: 2px;
    color: #212121;
}

.bloc_haut_partv .bloc_haut_desc p {
    font-size: 15px;
}


/* End Bloc Haut part v */


/* Bloc Bas*/


/* End Bloc Bas*/

.bloc_bas {}

.bloc_bas_img {
    width: 230px !important;
    padding-left: 25px !important;
}

.bloc_bas_contenu {
    padding-left: 0px !important;
}

.bloc_bas_contenu h4 {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    padding-bottom: 0;
    margin-bottom: 2px;
}

.bloc_bas_contenu h5 {
    font-size: 16px;
    color: #212121;
}

.bloc_bas_contenu p {
    font-size: 14px;
    color: #212121;
}

.bloc_bas_contenu p code {
    color: #7dca8c;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Leelawadee';
    background: none !important;
}


/* End Bloc Haut*/


/* End Page Interne */


/* Page Programe */

.bloc_title_prog h1 {
    text-transform: uppercase;
}

.bloc_title_prog p {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

.bloc_prog {
    width: 790px;
    margin: auto !important;
}

.bloc_step_prog {
    width: 220px !important;
    background-color: #efefef;
    padding-top: 25px;
}

.bloc_step_prog h2 {
    font-size: 30px;
    color: #5fcc84;
    font-weight: 400;
    text-transform: uppercase;
}

.bloc_step_prog h3 {
    font-size: 23px;
    color: #212121;
    font-weight: 700;
    text-transform: uppercase;
}

.bloc_step_prog2 {
    width: 220px !important;
    background-color: #efefef;
    margin-left: 65px;
    margin-right: 65px;
    padding-top: 25px;
}

.bloc_step_prog2 h2 {
    font-size: 30px;
    color: #5fcc84;
    font-weight: 400;
    text-transform: uppercase;
}

.bloc_step_prog2 h3 {
    font-size: 23px;
    color: #212121;
    font-weight: 700;
    text-transform: uppercase;
}

.bloc_prog_footer {
    margin-top: 90px;
}

.bloc_footer_contenu p {
    text-align: center;
    font-size: 17px;
    color: #212121;
    margin-bottom: 0px;
}

.title_prog_footer {
    margin-bottom: 10px !important;
}

.bloc_footer_contenu .title_prog_footer p {
    font-weight: 700;
    font-size: 27px;
    text-align: center;
    text-transform: uppercase;
}

.title_prog_footer p code {
    font-weight: 700;
    font-size: 27px;
    text-align: center;
    color: #5fcc84;
    background: none;
    text-transform: uppercase;
    font-family: 'Leelawadee';
}

.bg-ff-prog {
    height: 180px;
    margin-top: -145px;
}


/* End Page Programe */


/* Why change */

.bloc_new_contenu h1 {
    color: #7dca8c;
    text-transform: uppercase;
}

.bloc_new_contenu p {
    font-size: 16px;
    color: #212121;
    margin-bottom: 0;
}

.bloc_bridge_contenu h1 {
    color: #7dca8c;
    text-transform: uppercase;
}

.bloc_bridge_contenu p {
    font-size: 16px;
    color: #212121;
    margin-bottom: 0;
}

.bloc_raise_contenu h1 {
    color: #7dca8c;
    text-transform: uppercase;
}

.bloc_raise_contenu p {
    font-size: 16px;
    color: #212121;
    margin-bottom: 0;
}

.bloc_footer_why {
    padding-top: 40px !important;
    padding-bottom: 45px !important;
    background: #efefef;
}

.ft_img_desc {
    margin-bottom: 0px !important;
}

.ft_img_desc2 {
    margin-bottom: 0px !important;
}


/* End Why change */


/* Page Insights */

.bc_insights {
    margin-bottom: 95px;
}

.bloc_insights {
    border: solid 2px #7f7f7f;
    padding: 18px;
    margin-bottom: 20px;
}

.bloc_insights a.title_ins {
    color: #5fcd84;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    height: 45px;
    display: block;
    margin-bottom: 25px;
}

.bloc_insights button.btn_ins {
    height: 30;
    width: 125px;
    display: block;
    background: #000;
    border: none;
    margin: auto;
    color: #fff;
}

.bloc_insights p.para_ins {
    margin-bottom: 25px;
    min-height: 220px;
}

.bloc_insights button.btn_ins a {
    font-weight: 700;
    color: #fff;
}


/* End Insights */


/* Page Contact */

.bloc_contact_top p {
    text-align: center;
}

.bloc_contact_top .bloc_contact_detail h3 {}

.bloc_contact_form .wpcf7-form-control-wrap input {
    width: 100%;
    height: 31px;
    border: solid 1px #60cd85;
}

.bloc_contact_form .wpcf7-form-control-wrap textarea {
    width: 100%;
    border: solid 1px #60cd85;
    height: 140px;
}

.bloc_contact_form .champ_form {
    margin-bottom: 25px !important;
}

.bloc_contact_form .champ_form label {
    font-weight: 400;
}

.bloc_contact_form .bt_recaptcha {
    margin-top: 8px;
    margin-left: 8px;
}

.bloc_contact_form .bt_env {
    text-align: center;
    margin-top: 50px;
}

.bloc_contact_form .bt_env input {
    width: 135px;
    height: 35px;
    background: #000;
    color: #fff !important;
    display: inline;
    margin: auto !important;
    text-align: center;
    border: none;
}

.contact_cord_txt {
    margin-bottom: 15px !important;
    margin-top: 10px;
}

.contact_cord_icon {
    margin-bottom: 15px !important;
}

.bloc_contact_avantage {
    padding-top: 45px;
    border: solid 1px #000;
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 30px;
}

.bloc_contact_avantage p {
    text-align: center;
    font-weight: 700;
}


/*** Begin page contact ***/

.elementor-shortcode .champ_form input,
.elementor-shortcode textarea {
    min-height: 34px;
    margin-bottom: 13px;
    border: 0;
    width: 100%;
}

.elementor-shortcode .champ_form label {
    margin-bottom: 0px;
    color: #7DCA8C;
    font-size: 18px;
    line-height: 32px;
    font-family: 'Mont_semibold';
}

.bt_env {
    display: flex;
    flex-direction: row-reverse;
}

.bt_env .clearfix {
    display: flex;
    height: 49px;
    background: #1D1D1B;
    justify-content: center;
    align-items: center;
    width: 248px;
    position: relative;
}

.bt_env .clearfix i {
    color: #7DCA8C;
}

div.wpcf7 .ajax-loader {
    position: absolute;
    left: -35px;
}
div.wpcf7 .ajax-loader {
    visibility: hidden;
    display: inline-block;
    background-image: url(../../images/ajax-loader.gif);
    width: 16px;
    height: 16px;
    border: none;
    padding: 0;
    margin: 0 0 0 4px;
    vertical-align: middle;
}
.champ_form .bt_recaptcha {
    display: flex;
    justify-content: right;
    margin-bottom: 10px;
}

/* .bt_env input {
    width: 248px !important;
    background: #1D1D1B;
    color: #7DCA8C;
    height: 49px;
    font-size: 18px;
    line-height: 17px;
    font-family: 'Mont_semibold';
} */

.bt_env input {
    width: auto !important;
    background: #1D1D1B;
    color: #7DCA8C;
    font-size: 18px;
    line-height: 17px;
    font-family: 'Mont_semibold';
    margin-bottom: 0 !important;
}

.bt_env input::after {
    content: "\f178";
    font-family: 'FontAwesome';
    display: block;
    font-size: 25px;
}

.elementor-shortcode .row {
    margin: 0;
}


/*** End page contact ***/



/* End Contact */


/* Page 404 */

.error-contenu {
    text-align: center;
}

.error-contenu h1 {
    margin-top: 90px;
    color: #7dca8c;
    font-size: 36px;
    margin-bottom: 50px;
}

.error-contenu p {
    font-size: 24px;
    color: #212121;
    margin-bottom: 17px;
}

.error-contenu button {
    width: 220px;
    height: 30px;
    background: #000;
    border: none;
    color: #fff;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 87px;
}

.error-contenu button a {
    color: #fff;
}


/* End Page 404 */


/******** FOOTER ********/

div#wrapper-footer {
    background: #000000;
    /* padding-bottom: 31px; */
    margin-top: 50px;
}

footer p {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Mont_regular';
}

div#blleft h3 {
    font-size: 18px;
    line-height: 20px;
    color: #FFFFFF;
    font-weight: 400;
    font-family: 'Mont_bold' !important;
    margin-bottom: 13px;
}

ul#menu-footer-menu {
    margin-bottom: 0;
}

ul#menu-footer-menu li {
    list-style-type: none;
    color: #fff;
    display: inline-block;
}

ul#menu-footer-menu li a {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    font-family: 'Mont_regular';
}

ul#menu-footer-menu li:last-child:after {
    content: '';
    margin-right: 0;
}



.titre-f {
    font-size: 22px;
    text-transform: uppercase;
    color: #7dca8c;
    line-height: 32px;
    font-family: 'Mont_semibold';
    margin-bottom: 12px;
}



.pad-top {
    padding-top: 28px;
}

div#media_image-3 {
    float: left;
    margin-top: 3px;
}

div#media_image-4 {
    float: left;
    margin-left: 10px;
    margin-top: 3px;
}


/***** FILE D'ARIANE ******/

section.fil-ariane {
    min-height: 50px;
    padding-top: 8px;
    background: none;
}

.breadcrumb {
    padding: 8px 0;
    margin-bottom: 0;
    list-style: none;
    background-color: #fff;
    border-radius: 0;
}

ul.breadcrumb li a {
    text-transform: capitalize;
    font-size: 12px;
    line-height: 24px;
}

.breadcrumb>li+li:before {
    content: '>';
    color: #212121;
}

.breadcrumb>.active {
    color: #212121;
    font-size: 12px;
}


/***** INTERNATIONAL PAGE *****/

.ligne1 {
    background: url(img/puce1.png) no-repeat 0px 2px;
    padding-left: 28px;
}

.ligne2 {
    background: url(img/puce2.png) no-repeat 0px 2px;
    padding-left: 28px;
}

.ligne3 {
    background: url(img/puce3.png) no-repeat 0px 2px;
    padding-left: 28px;
}

div#text-img p {
    line-height: 18px;
    font-size: 13px;
    margin-bottom: 15px!important;
}


/****** CLIENTS PAGE ******/

div#accordion .panel-default {
    border: 0;
    margin-bottom: 22px;
    box-shadow: none;
}

div#accordion .panel-heading {
    background-color: #7dca8c;
    background-image: none;
    border-radius: 0;
    height: 33px;
}

.left-title {
    float: left;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    position: relative;
    top: -4px;
}

.right-fleche {
    float: right;
}

div#accordion .panel-body {
    border: 0;
    padding-top: 28px;
}

.bx-wrapper ul li {}

.page-template-clients h1.title {
    text-align: center;
    padding-bottom: 33px;
    text-transform: uppercase;
}

.panel-group {
    margin-bottom: 60px;
}


/* ----------------------------------------------
 * Generated by Animista on 2018-6-25 14:5:2
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */


/**
 * ----------------------------------------
 * animation kenburns-top
 * ----------------------------------------
 */

.container-fluid.ove {
    overflow: hidden;
    height: 282px;
}

.kenburns-top {
    -webkit-animation: kenburns-top 5s ease-out infinite both;
    animation: kenburns-top 5s ease-out infinite both;
}

@-webkit-keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }
    100% {
        -webkit-transform: scale(1.25) translateY(-15px);
        transform: scale(1.25) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}

@keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }
    100% {
        -webkit-transform: scale(1.25) translateY(-15px);
        transform: scale(1.25) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}

/*style footer*/

.right-f .custom-html-widget i {
    color: #ffffff;
    font-size: 68px;
}

.right-f .custom-html-widget i:hover {
    color: #7DCA8C;
}

/*** Begin footer ***/

.textwidget {
    max-width: 415px;
}

.footer_mobile {
    margin-top: 40px;
    margin-bottom: 0px;
}

.footer_mobile li {
    list-style-type: none;
    color: #fff;
    display: inline-block;
}

.footer_mobile li a {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    font-family: 'Mont_regular';
}

.footer_mobile li a:after {
    content: '|';
    margin-left: 5px;
    margin-right: 1px;
}
.new_container {
    margin: auto;
}
.new_container .row {
    margin-left: 0;
    margin-right: 0;
} 