@import url("sections.css");
@import url("temp-mail.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
}

.recaptcha-border {
    border: 1px solid rgb(255, 90, 77);
}


/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


.content-wrapper {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    display: block;
    margin: auto;
}

.content-wrapper .header {
    text-align: center;
    /* margin-bottom: 3rem; */
    margin-bottom: 30px;
    background: none;
    width: unset;
    padding: 0;
    display: block;
}

.content-wrapper .badge {
    /* display: inline-flex; */
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: rgba(24, 104, 219, 0.1);
    color: #1868db;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content-wrapper h1 {
    /* font-size: 3rem; */
    color: #1e293b;
    /* margin-bottom: 1rem; */
    margin-bottom: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.content-wrapper .subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
}

.content-wrapper .card {
    background: white;
    border-radius: 1.5rem;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgba(0, 0, 0, .125);
    padding: 2rem;
    margin-bottom: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-wrapper .system-toggle {
    /* margin-bottom: 2rem; */
    margin-bottom: 15px;
}

.content-wrapper .system-label {
    display: block;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
}

.content-wrapper .toggle-buttons {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.content-wrapper .toggle-btn {
    padding: 1rem;
    border: none;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    /* background: #f1f5f9;
    color: #475569; */
    background: #f1f1f1;
    color: #2f2f37;
}

.content-wrapper .toggle-btn:hover {
    background: #f1f1f1;
}

.content-wrapper .toggle-btn.active {
    background: #303038;
    color: white;
    /* box-shadow: 0 10px 30px rgba(24, 104, 219, 0.3);
    transform: translateY(-2px); */
}

.content-wrapper .grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .content-wrapper h1 {
        font-size: 2rem;
    }

    .content-wrapper .grid {
        grid-template-columns: 1fr;
    }
}

.content-wrapper .input-group {
    /* margin-bottom: 2rem; */
    margin-bottom: 0;
    position: unset;
    display: block;
}

.content-wrapper .input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.content-wrapper .input-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.875rem;
}

.content-wrapper .input-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2f2f37;
}

.content-wrapper .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    background: #f1f1f1;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.content-wrapper .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #303038;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(68, 71, 75, 0.5);
}

.content-wrapper .slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #1868db;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(24, 104, 219, 0.5);
}

.content-wrapper .slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.content-wrapper .results-card {
    background: white;
    color: #1e293b;
    border-radius: 1.5rem;
    padding: 2rem;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    border: 1px solid rgba(0, 0, 0, .125);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-wrapper .results-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.content-wrapper .main-result {
    text-align: center;
    /* background: #f1f5f9; */
    background: #f1f1f1;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.content-wrapper .result-label {
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 0;
}

.content-wrapper .result-amount {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
    color: #2f2f37;
}

.content-wrapper .result-monthly {
    color: #64748b;
    font-size: 0.7rem;
}

.content-wrapper .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.content-wrapper .metric-card {
    /* background: #f1f5f9; */
    background: #f1f1f1;
    border-radius: 0.5rem;
    padding: 0.5rem 0.375rem;
}

.content-wrapper .metric-label {
    font-size: 0.65rem;
    color: #64748b;
    margin-bottom: 0;
}

.content-wrapper .metric-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
}

.content-wrapper .breakdown-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.content-wrapper .breakdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
}

.content-wrapper .breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #f1f5f9; */
    background: #f1f1f1;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.content-wrapper .breakdown-item.highlight {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.content-wrapper .breakdown-item-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-wrapper .breakdown-icon {
    font-size: 1rem;
}

.breakdown-label {
    font-size: 0.875rem;
    color: #475569;
}

.content-wrapper .breakdown-amount {
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
}

.content-wrapper .cost-comparison {
    /* background: #f1f5f9; */
    background: #f1f1f1;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.content-wrapper .cost-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.content-wrapper .cost-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1e293b;
}

.content-wrapper .cost-note {
    font-size: 0.75rem;
    color: #64748b;
}

.content-wrapper .cta-button {
    width: 100%;
    background: #1868db;
    color: #fff;
    border: none;
    padding: 1.25rem;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content-wrapper .cta-button:hover {
    /* background: rgba(24, 104, 219, 0.1);
    transform: translateY(-2px); */
    background: #07326e;
}

.content-wrapper .cta-subtext {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.modalROI {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modalROI.active {
    display: flex;
}

.modalROI-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modalROI-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
}

.modalROI-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.input-field {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: #1868db;
    box-shadow: 0 0 0 3px rgba(24, 104, 219, 0.1);
}

.submit-button {
    width: 100%;
    background: #1868db;
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: #1557b8;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modalROI-footer {
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 1rem;
}

.notification-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.notification-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.notification-message {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.notification-button {
    background: #1868db;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.notification-button:hover {
    background: #1557b8;
    transform: translateY(-2px);
}

.notification-content.success .notification-icon {
    color: #10b981;
}

.notification-content.error .notification-icon {
    color: #ef4444;
}

.notification-title h3,
.notification-title p {
    margin: 0;
}

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* FOOTER *************************************************** */

.content-footer {
    width: 100%;
    min-height: auto;
    float: left;
    background-color: #1e3548;
    padding: 20px 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.content-footer-w {
    width: 1200px;
    display: block;
    margin: 0 auto;
}

.content-footer-w .footer-left {
    width: auto;
    height: auto;
    float: left;
    margin: 10px 0 0 0;
}

.content-footer-w .footer-left img {
    width: 220px;
    height: auto;
    margin: 0 0 10px 0;
}

.content-footer-w .footer-left p {
    width: auto;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.01em;
    line-height: normal;
    text-align: left;
    text-shadow: none;
    margin: 0;
}

.content-footer-w .footer-left div a.lien-bas {
    width: auto;
    color: #fafdff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    margin: 10px 15px 0 0;
}

.content-footer-w .footer-left a {
    width: auto;
    color: #7b9aac;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.01em;
    line-height: normal;
    text-align: left;
    float: left;
}

.content-footer-w .footer-right {
    width: auto;
    height: auto;
    float: right;
    margin: 15px 0 0 0;
}

.content-footer-w .footer-right img {
    width: 24px;
    height: 30px;
    display: inline-block;
    margin: 0 10px 0 0;
}

.content-footer-w .footer-right .footer-bloc {
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.content-footer-w .footer-right span.text {
    width: auto;
    font-family: 'outfit', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    display: block;
}

.content-footer-w .footer-right span.adress {
    width: auto;
    font-family: 'outfit', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    margin: 0 0 0 5px;
}

.content-footer-w .footer-right span.text strong {
    width: auto;
    font-family: 'outfit', sans-serif;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    margin: 0 0 0 5px;
}

.content-footer-w .footer-left img.socialMedia {
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 12px;
}

.footer-center {
    width: 100%;
    min-height: auto;
    float: left;
    background-color: #0a1218;
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.content-footer-w .footer-middle {
    width: 100%;
    height: auto;
    margin: 10px 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.content-footer-w .footer-middle div {
    display: inline-block;
}

.content-footer-w .footer-middle p {
    width: auto;
    color: #fafdff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    margin: 0 15px 0 0;
    display: inline-block;
}

.content-footer-w .footer-middle a {
    width: auto;
    color: #9cccff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    margin: 0 15px 0 0;
    display: inline-block;
}

/*      *************************************************** */
.content .art-en {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 40px 0;
}
.content .art-en img.img-1-articl {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
}
.content .art-en p {
    font-family: 'roboto', sans-serif;
    text-align: justify;
    color: #55575d;
    font-size: 17px;
    line-height: normal;
    font-weight: 300;
    padding: 10px 0;
    margin: 0;
}
.content .art-en p:first-child {
    margin: 20px 0 0 0;
}
.content .art-en a.more {
    font-family: 'roboto', sans-serif;
    background-color: #26b93b;
    border: none;
    color: white;
    padding: 14px 40px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    width: max-content;
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin: auto;
    margin-top: 30px;
    letter-spacing: 0.5px;
}

/* MENU *************************************************** */

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 9999;
}

body .navbar {
    padding: 0;
}

.navbar {
    padding: 0;
}

/* @supports (animation-timeline: scroll()) {
            @keyframes show-shadow {
                from {
                    box-shadow: none;
                    border-bottom: 2px solid transparent;
                }
                to {
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                    border-bottom: 2px solid #e0e0e0;
                }
            }
            
            .header {
                animation: show-shadow linear;
                animation-timeline: scroll();
                animation-range: 0 100px;
            }
        } */

.header {
    width: 100%;
    height: auto;
    padding: 10px 15%;
    box-sizing: border-box;
    background-color: #4656a9;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.header .navbar {
    width: 100%;
    padding: 0 10px;
    margin: 0;
}

.header .brand {
    width: 210px;
    height: auto;
}

.header .brand img {
    width: 100%;
    height: auto;
    vertical-align: unset;
    float: left;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 10px;
    padding-right: 10px;
    margin: 10px 0;
}

.navbar-expand-lg .navbar-nav .nav-link.buttonDemo {
    padding-left: 10px;
    padding-right: 10px;
    margin: 10px 20px 10px 0;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.navbar-expand-lg .navbar-nav .nav-link.buttonDemo:hover {

}

a.nav-link,
a.nav-link:hover {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 13px;
    text-decoration: none;
}

.seprateurContact {
    width: 1px;
    height: 32px;
    background-color: #a3abd4;
    float: left;
    margin: 10px 15px 0 10px;
}

.imageContact {
    width: 20px;
    height: 32px;
    float: left;
    margin: 10px 10px 0 0;
}

.dropdown-menu.menuSolutions {
    width: 550px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.dropdown-menu.menuSolutions div {
    width: 250px;
    height: auto;
    clear: left;
    display: inline-block;
    vertical-align: top;
}

.dropdown-menu.menuSolutions div a.dropdown-item {
    display: inline-block;
    width: 100%;
    padding: 1rem 1.5rem 1rem 1rem;
    clear: both;
    font-weight: 600;
    color: #03363d;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid transparent;
    line-height: 20px;
}

.dropdown-menu.menuSolutions div a.dropdown-item img {
    width: 20px;
    height: auto;
    margin: 0 .5rem 0 0;
}

.dropdown-menu.menuSolutions div a.dropdown-item:hover {
    background: #fafafa;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .13);
}

/*  */
.dropdown-menu.menuSolutions div a.dropdown-item span {
    width: 100%;
    float: left;
    font-size: 11px;
    font-weight: 400;
    color: #3d5154;
    display: none;
}

.dropdown-menu.menu750 {
    width: 1000px;
    padding: 10px 20px 20px 20px;
    left: -150%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin: 0;
}

.dropdown-menu.menu750 div {
    width: 25%;
    display: inline-block;
    vertical-align: top;
}

.dropdown-menu.menu750 a.dropdown-item img {
    width: 18px;
    height: auto;
    margin: 0 .2rem 0 0;
}

.dropdown-menu.menu750 span.dropdown-item.grandTitre {
    display: inline-block;
    width: 100%;
    clear: both;
    padding: 1rem 1.5rem 0 0;
    font-weight: 600;
    color: #03363d;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.dropdown-menu.menu750 span.dropdown-item img {
    width: 18px;
    height: auto;
    margin: 0 .2rem 0 0;
}

.dropdown-menu.menu750 a.dropdown-item.grandTitre {
    display: inline-block;
    width: 100%;
    clear: both;
    padding: 1rem 1.5rem 0 0;
    font-weight: 600;
    color: #03363d;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.dropdown-menu.menu750 a.dropdown-item.grandTitre:hover {
    color: #03363d;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    cursor: pointer;
    line-height: 24px;
}

.dropdown-item:hover {
    text-decoration: none;
    background-color: #f5f5f5;
}

.dropdown-menu.menu750 a.dropdown-item {
    display: block;
    width: 100%;
    padding: 0 0.5rem 0.3rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #484848;
    text-align: inherit;
    white-space: unset;
    background-color: transparent;
    border: 0;
    font-size: 12px;
    cursor: pointer;
    line-height: 20px;
}

.dropdown-menu.menu750 a.dropdown-item:hover {
    color: #1279ff;
    text-decoration: none;
}

.navbar-toggler {
    text-decoration: none;
    padding: 0;
}

.navbar-toggler-icon {
    padding: 0;
    height: auto;
    /* color: #fff; */
    color: #212529;
}

img.flag {
    width: 20px;
    height: auto;
    margin: 0 5px 0 0;
}

.dropdown, .dropleft, .dropright, .dropup {
    display: initial;
}

.buttonDemo {
    color: #fff;
    background-color: #1ec17b;
    /* border-color: #1ec17b; */
    padding: 8px 17px;
    border: 2px solid transparent;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}

.buttonDemo:hover {
    background-color: #158554;
    /* border-color: #158554; */
}

/* ************************************************************************** */

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        line-height: 32px;
    }
}

@media (max-width: 1450px) {
    .header {
        padding: 10px;
    }
}

@media (min-width: 320px) and (max-width: 799px) {
    .seprateurContact {
        display: none;
    }

    .imageContact {
        display: none;
    }

    .header {
        padding: 20px;
    }

    .dropdown-menu.menuSolutions {
        width: 100%;
    }

    .dropdown-menu.menu750 {
        width: 100%;
    }

    .dropdown-menu.menu750 div {
        width: 100%;
    }

    .dropdown-menu.menu750 a.dropdown-item {
        width: 100%;
        padding: .5rem 0;
    }

    .navbar-collapse {
        padding: 20px 0 0 0;
    }
}




/* ******************************************************************** */
/* **************************  ACCUEIL  ******************************* */
/* ******************************************************************** */

.chiffre {
    width: 100%;
    height: auto;
    /* float: left; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 80px 0;
    margin: auto;
    background-color: #007cd7;
}

.chiffre h2 {
    display: block;
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 0 0 30px 0;
    margin: 0;
    width: 100%;
    font-weight: 700;
    text-align: center;
}

.chiffre .chiffre-bloc {
    width: auto;
    margin: 20px 60px;
    display: inline-block;
}

.chiffre .chiffre-bloc span.value {
    font-size: 86px;
    line-height: 90px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: normal;
    text-align: center;
    display: block;
}

.chiffre .chiffre-bloc span.text {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 400;
    letter-spacing: -.01em;
    line-height: normal;
    text-align: center;
    display: block;
}

/* ************************************************************************** */

.atouts {
    width: 100%;
    height: auto;
    float: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: auto;
    padding: 40px 0;
}

.atouts h1 {
    display: block;
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    color: #212224;
    padding: 0 0 30px 0;
    margin: 0;
    width: 100%;
    font-weight: 700;
    text-align: center;
}

.atouts h2 {
    display: block;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #004dce;
    padding: 0;
    margin: 0;
    width: 100%;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.atoutsBloc {
    width: 22%;
    height: auto;
    float: left;
    padding: 0;
    margin: 20px 0;
    border: 1px solid rgba(14, 19, 24, .07);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.atoutsBloc img {
    display: block;
    width: 60px;
    margin: 0 0 20px 0;
}

.atoutsBloc h3 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #393c41;
    padding: 0;
    width: 100%;
    font-weight: 700;
    text-align: left;
    margin: 0 0 20px 0;
}

.atoutsBloc p {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #48505c;
    padding: 0;
    margin: 0;
    width: 100%;
    font-weight: 400;
    text-align: justify;
    line-height: 26px;
}


/* ************************************************************************** */

.provisoire {
    width: 100%;
    height: auto;
    background-color: #007cd7;
    padding: 160px 10%;
    float: left;
}

.provisoire p {
    font-size: 80px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    width: 100%;
    font-weight: 300;
    text-align: center;
}

/* ************************************************************************** */
/* ************************************************************************** */

.privilege {
    width: 100%;
    height: auto;
    float: left;
    margin: auto;
    padding: 0;
}
.privilege-img {
    float: left;
    width: 40%;
    padding: 60px 0;
}
.privilege h2 {
    display: block;
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    color: #3aaa35;
    padding: 0;
    width: 80%;
    font-weight: 700;
    text-align: center;
    margin: auto;
    margin-top: 40px;
}
.privilege-img img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 1230px;
}
.privilege-img img.mobile {
    display: none;
}
.privilege-txt {
    height: auto;
    float: left;
    padding: 40px 20px;
    width: 30%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
}
.privilege-boxes {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: auto;
    padding: 0;
}
.privilege-bloc {
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
}

.privilege-bloc h3 {
    font-size: 42px;
    font-family: 'Montserrat', sans-serif;
    padding: 0;
    width: 100%;
    font-weight: 700;
    text-align: center;
}

.privilege-bloc p {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #636569;
    padding: 0;
    width: 100%;
    font-weight: 400;
    text-align: center;
    line-height: 24px;
}


/* ************************************************************************** */

@media screen and (max-width: 1240px) {
    .benefitsImage {
        width: 100%;
    }

    .benefitsImage img {
        width: 100%;
        margin: 20px 0;
    }

    .benefitsBloc h3 {
        font-size: 18px;
    }

    .benefitsText {
        width: 100%;
        flex-direction: row;
    }

    .benefitsBloc {
        width: 50%;
        padding: 40px;
    }

    .provisoire p {
        font-size: 8vw;
    }

    .contactPage {
        padding: 20px 0;
    }

    .solutions h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 1040px) {

    /*  */
    .benefitsText {
        width: 100%;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    .avantage div {
        width: 50%;
        flex-wrap: wrap;
    }

    .avantage img {
        max-width: 100%;
        height: auto;
    }

}

@media (min-width: 320px) and (max-width: 799px) {

    .header .brand img {
        width: 100%;
    }
    .slide img.web {
        display: none;
    }

    .slide img.mobile {
        display: block;
    }

    .modal-dialog-scrollable .modal-body iframe {
        width: 100%;
    }

    .slide {
        padding: 40px 0 70px 0;
    }

    .slide h1 {
        font-size: 28px;
        padding: 0;
        width: 90%;
    }

    .slide img {
        width: 90%;
    }

    .referenceImage {
        width: 100%;
    }

    .referenceImage img {
        width: 20%;
    }

    /*  */
    .benefitsText {
        width: 100%;
    }

    /* ************ */
    .benefitsImage h2 {
        font-size: 28px;
    }

    .benefitsImage {
        width: 100%;
        padding: 0;
    }

    .benefitsImage img.mobile {
        display: block;
        margin: auto;
        width: 100%;
    }

    .benefitsText {
        width: 100%;
        padding: 20px;
    }

    .benefitsBloc {
        width: 100%;
        padding: 20px 0;
    }

    /*  */
    .chiffre {
        padding: 20px 0;
    }

    .provisoire p {
        font-size: 8vw;
    }

    .atouts {
        padding: 80px 20px;
    }

    .atoutsBloc {
        width: 100%;
    }

    /*  */
    .avantage h2 {
        display: block;
        font-size: 40px;
        font-family: 'Montserrat', sans-serif;
        color: #212224;
        padding: 0 20px 30px 20px;
        margin: 0;
        width: 100%;
        font-weight: 700;
        text-align: center;
    }

    .avantage div {
        width: 100%;
        flex-wrap: wrap;
    }

    .avantage img {
        width: 100%;
        height: 100%;
    }

    .avantage div .avantageBloc {
        width: 100%;
        height: auto;
        float: left;
        margin: 0;
        padding: 30px 20px;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }
}

/* ************************************************************************** */

@media screen and (max-width: 1240px) {
    

    .content-footer-w {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1040px) {
    

    .content-footer-w {
        width: 100%;
        padding: 0 20px;
    }
}

@media (min-width: 320px) and (max-width: 799px) {
    

    .content-footer-w {
        width: 100%;
    }

    .content-footer {
        padding: 20px;
    }

    .content-footer-w .footer-left {
        width: 100%;
    }

    .content-footer-w .footer-left p {
        text-align: center;
        margin: 10px;
        font-size: 10px;
    }

    .content-footer-w .footer-left img {
        margin: auto;
        display: block;
        width: 50%;
    }

    .content-footer-w .footer-right img {
        width: 20px;
        height: auto;
    }

    .content-footer-w .footer-right {
        width: 100%;
        height: auto;
        float: left;
        margin: auto;
        display: block;
        text-align: center;
    }

    .content-footer-w .footer-right span.text {
        font-size: 12px;
    }

    .content-footer-w .footer-right span.text strong {
        font-size: 12px;
    }
}

.modal.show .modal-dialog {
    top: 80px;
}

.contactPage {
    width: 100%;
    height: auto;
    /* float: left; */
    background: rgb(70, 86, 169);
    background: linear-gradient(180deg, rgba(70, 86, 169, 1) 31%, rgba(0, 125, 216, 1) 100%);
    padding: 60px 0;
    display: flex;
}

.blocContact {
    max-width: 1200px;
    display: block;
    margin: auto;
}

.blocContact span {
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 0;
    width: 100%;
    font-weight: 600;
    text-align: left;
    margin: 0 0 20px 0;
    display: block;
}

.blocContact span.n1 {
    font-size: 26px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 0;
    width: 100%;
    font-weight: 600;
    text-align: left;
    margin: 0 0 20px 0;
    float: left;
}

.divContact {
    margin: auto;
    float: left;
    width: 630px;
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 6px;
    box-sizing: border-box;
}

.divContact-l {
    /* width: 100%; */
    max-width: 630px;
    display: block;
    margin: auto;
}

.divContact-l form {
    display: flex;
    flex-flow: row wrap;
    padding: 50px 40px;
    justify-content: space-between;
}

.blocContact-1 span {
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 0;
    width: 100%;
    font-weight: 600;
    text-align: center;
    margin: 0 0 20px 0;
    display: block;
}


.divContact-last {
    margin: auto;
    display: block;
    width: 80%;
    margin: auto;
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 6px;
    box-sizing: border-box;
}

.divContact-last h2 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 0 0 30px 0;
    width: 70%;
    font-weight: 800;
    text-align: center;
    line-height: 28px;
    margin: auto;
    display: block;
}

.divContact-last p {
    font-size: 21px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 0 0 30px 0;
    width: 70%;
    font-weight: 400;
    text-align: center;
    line-height: 36px;
    margin: auto;
    display: block;
}

.divContact-last img {
    width: 120px;
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 60px;
}

.textContact {
    width: 570px;
    margin: auto;
    float: left;
    padding: 0 0 0 50px;
    box-sizing: border-box;
}

.textContact span {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 0;
    width: 100%;
    font-weight: 600;
    text-align: left;
    margin: 0 0 20px 0;
    float: left;
}

.textContact p {
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 0 0 30px 0;
    width: 100%;
    font-weight: 400;
    text-align: justify;
    line-height: 28px;
    float: left;
}

.divContact span {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 0 10px;
    width: 100%;
    font-weight: 600;
    text-align: left;
    margin: 0 0 20px 0;
    float: left;
}

.form_class p.info {
    font-size: 13px;
    width: 100%;
    text-align: center;
    padding: 10px 70px 0 70px;
    color: #636f73;
}

.form-group {
    margin-bottom: 1rem;
    padding: 0 10px;
}

.form-container-cs {
    padding: 0;
    width: 35%;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
}

.form-container-cm {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
}

.form-container-cl {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
}

.form-group-c {
    float: left;
    margin: 0;
    padding: 15px 15px 5px 15px;
    box-sizing: border-box;
}

.form-group-c label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group-c label.mistake {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
}

.form-container-cs .choices {
    margin-bottom: 0;
}

.form-container-cl button#submitBtn {
    width: 100%;
    padding: 20px;
    background: #4c63d2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 30px 0 0 0;
    outline: none;
}

.divContact-l .form-container-cl .form-group-c .choices {
    margin: 0;
}

.form-group-c input[type="text"],
.form-group-c input[type="number"],
.form-group-c input[type="email"],
.form-group-c input[type="tel"],
.form-group-c select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            font-size: 14px;
            color: #333;
            background: white;
            transition: all 0.2s ease;
            outline: none;
            box-sizing: border-box;
}

.form-group-c input[type="text"]:focus,
.form-group-c input[type="email"]:focus,
.form-group-c input[type="number"]:focus,
.form-group-c input[type="tel"]:focus,
.form-group-c select:focus {
            border-color: #4c63d2;
            box-shadow: 0 0 0 3px rgba(76, 99, 210, 0.1);
}

.form-group-c.width50 {
    width: 50%;
    float: left;
    margin: 0;
    margin-bottom: 0;
}
.form-group-c.width100 {
    width: 100%;
    float: left;
    margin: 0;
    margin-bottom: 0;
}

.width50 {
    width: 50%;
    float: left;
    margin: 0;
    margin-bottom: 2rem;
}

.width100 {
    width: 100%;
    float: left;
    margin: 0;
    margin-bottom: 2rem;
}

.contactMessage {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid #32ba7c;
    border-radius: 8px;
    margin: 0;
    background-color: #f9fffc;
}

.contactMessage img {
    display: block;
    margin: auto;
    width: 80px;
    height: auto;
    margin-bottom: 40px;
}

.contactMessage p {
    width: 100%;
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #333f79;
    padding: 0;
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
    box-sizing: border-box;
}

.form-group input[type=button] {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 100px;
    text-decoration: none;
    margin: 20px 0 0 0;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    font-weight: 500;
}

.form-group input[type=button]:hover {
    border: none;
}

.form-group input:hover, .form-group textarea:hover, .form-group select:hover {
    border: 1px solid #b7d4f0;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: #b7d4f0;
    border-style: solid;
    border-width: 1px;
    outline: none;
    box-shadow: 0px 0px 7px 0px rgba(72, 175, 234, 0.20);
}

.form-group label {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    font-size: 11px;
    padding: 0 5px;
    /* border-radius: 4px; */
    display: -webkit-box;
    display: flex;
    margin: 1px 0 0 0;
}

.form-group select {
    -webkit-appearance: none;
    background-image: url(../assets/select.png);
    background-position: right;
    background-repeat: no-repeat;
}

.refContact {
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
}

.refImageContact {
    width: 100%;
    height: auto;
    display: block;
    margin: auto;
    text-align: center;
}

.refImageContact img {
    width: 28%;
    height: auto;
    display: inline-block;
    margin: 10px;
}

/* ************************************************************************** */

@media screen and (max-width: 1240px) {
    .blocContact {
        max-width: auto;
        width: 100%;
        padding: 0 20px;
    }

    .divContact {
        width: 50%;
    }

    .textContact {
        width: 50%;
    }
}

@media screen and (max-width: 1040px) {
    .blocContact {
        max-width: auto;
        width: 100%;
        padding: 0 20px;
    }

    .divContact {
        width: 100%;
    }

    .textContact {
        width: 100%;
        padding: 50px;
    }
}

@media (min-width: 320px) and (max-width: 799px) {
    .width50 {
        width: 100%;
        margin: 0;
        margin-bottom: 2rem;
    }

    .width100 {
        width: 100%;
        float: left;
        margin: 0;
        margin-bottom: 2rem;
    }

    .textContact {
        padding: 50px 10px;
    }

    .refImageContact img {
        width: 49%;
        margin: 10px 0;
    }
}

/* ******************************************************************** */

/* *****************************  CSS  ******************************** */

/* ******************************************************************** */

a:not([href]) {
    color: #fff;
    text-decoration: none;
}

.dropdown:hover .dropdown-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    padding: .5rem 5rem;
}

.dropdown-menu {
    margin: 0;
}

/* --------------------------------------------------- */

.bg-green {
    background-color: #18cc6c;
    transition-duration: 1s;
    transition-property: color, background-color;
}

.bg-yellow {
    background-color: #ffbc48;
    transition-duration: 1s;
    transition-property: color, background-color;
}

/* --------------------------------------------------- */

.content-title {
    width: 100%;
    height: auto;
    float: left;
}

.DNNC-BOX-TITLE-content {
    width: 100%;
    height: auto;
    float: left;
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.DNNC-BOX-TITLE-content h2 {
    font-size: 38px;
    font-family: 'lato', sans-serif;
    color: #333;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: normal;
    text-align: center;
    margin: 0;
}

.DNNC-BOX-TITLE-content h3 {
    width: 100%;
    float: left;
    font-size: 21px;
    font-family: 'Montserrat', sans-serif;
    color: #78858a;
    font-weight: 300;
    text-align: center;
    margin: 50px 0 15px 0;
    letter-spacing: .06em;
    line-height: normal;
    padding-bottom: 20px;
}

.DNNC-BOX-TITLE-content-bleu {
    width: 100%;
    height: auto;
    float: left;
    padding: 60px 20px;
    text-align: center;
    background-color: #2fa8e8;
}

.DNNC-BOX-TITLE-content-bleu h2 {
    font-size: 38px;
    font-family: 'lato', sans-serif;
    color: #fff;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: normal;
    text-align: center;
    margin: 0;
}

.DNNC-BOX-TITLE-content-bleu h3 {
    width: 100%;
    float: left;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 300;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding-bottom: 20px;
}

.DNNC-BOX-TITLE-content a.lien-contact {
    display: inline-block;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: normal;
    text-align: center;
    padding: 20px 25px;
    text-decoration: none;
    margin: 0 5px;
    text-transform: uppercase;
}

.DNNC-BOX-TITLE-content a.lien-contact {
    display: inline-block;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: normal;
    text-align: center;
    padding: 20px 25px;
    text-decoration: none;
    margin: 0 5px;
    text-transform: uppercase;
}

.DNNC-BOX-TITLE-content .class30 {
    width: 30%;
    height: auto;
    float: left;
}

.DNNC-BOX-TITLE-content .class30 img {
    width: 100%;
    height: auto;
    float: left;
}

/* --------------------------------------------------------------------- */

.content-contenu {
    width: 100%;
    height: auto;
    float: left;
    background: url(assets/content-slide-background.jpg) #dcdcde repeat-y center;
}

.content-contenu-w {
    width: 1200px;
    display: block;
    margin: 0 auto;
    min-height: auto;
    min-height: auto !important;
}

/* -------------------------------------------------------------------- */

.DNNC-CONTENT-LARGE {
    width: 100%;
    height: auto;
    float: left;
}

.DNNC-CONTENT-LARGE-action {
    float: right;
    width: auto;
    height: auto;
}

.DNNC-CONTENT-LARGE-content {
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 30px 0;
}

.DNNC-CONTENT-LARGE-content p {
    font-size: 19px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0;
    line-height: 1.8em;
}

.DNNC-CONTENT-LARGE-content strong.C {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #3f6eb4;
    line-height: 1.8em;
    text-align: left;
}

.DNNC-CONTENT-LARGE-content strong.CC {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1176bc;
    line-height: 30px;
    text-align: left;
}

.DNNC-CONTENT-LARGE-content .illu {
    width: 176.5px;
    height: 190px;
    float: left;
}

.DNNC-CONTENT-LARGE-content .illu img {
    width: 124.5px;
    height: 109.5px;
    float: left;
    margin: 26px 26px 0 26px;
}

.DNNC-CONTENT-LARGE-content .illu strong {
    width: 166.5px;
    height: 20px;
    float: left;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #525a69;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    margin: 0 5px;
}

.DNNC-CONTENT-LARGE-content p strong {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8em;
    text-align: left;
}

.DNNC-CONTENT-LARGE-content p {
    margin: 0 0 10px 0;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0;
    line-height: 1.8em;
    width: 100%;
    float: left;
}

.DNNC-CONTENT-LARGE-content a.a_illu {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #303c54;
    line-height: normal;
    text-align: center;
    width: 100%;
    float: left;
    padding: 30px 0 40px 0;
    border-top: 2px solid #e9e9e9;
    margin: 10px 0 0 0;
    text-decoration: none;
}

/****/

.DNNC-CONTENT-LARGE-content p.module {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #424c50;
    font-weight: 400;
    text-align: left;
    margin: 0;
    line-height: 1.8em;
    width: 100%;
    float: left;
    margin: 0 0 15px 0;
}

.DNNC-CONTENT-LARGE-content p.module2 {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #424c50;
    font-weight: 600;
    text-align: left;
    margin: 0;
    line-height: 1.5em;
    width: 100%;
    float: left;
    margin: 0 0 20px 0;
    text-shadow: none;
}

.DNNC-CONTENT-LARGE-content h2 {
    width: 100%;
    float: left;
    font-size: 47px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-content h3 {
    width: 100%;
    float: left;
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #154d8c;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-content h4 {
    width: 100%;
    float: left;
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding: 0;
}

.DNNC-CONTENT-LARGE-content h5 {
    width: 100%;
    float: left;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: left;
    margin: 0 0 40px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding: 0;
}

.bg-green {
    background-color: #18cc6c;
    transition-duration: 1s;
    transition-property: color, background-color;
}

/* flashé */

.bg-green2 {
    background-color: #21b384;
    transition-duration: 1s;
    transition-property: color, background-color;
}

/* medium */

.bg-blue {
    background-color: #1db4f9;
    transition-duration: 1s;
    transition-property: color, background-color;
}

/* ciel */

.bg-blue2 {
    background-color: #073590;
    transition-duration: 1s;
    transition-property: color, background-color;
}

/* ryanair */

.bg-blue3 {
    background-color: #34b3de;
    transition-duration: 1s;
    transition-property: color, background-color;
}

/* bleu ciel  */

.bg-blue3 {
    background-color: #33b3dd;
    transition-duration: 1s;
    transition-property: color, background-color;
}

/* blue ciel */

.bg-yellow {
    background-color: #ffbc48;
    transition-duration: 1s;
    transition-property: color, background-color;
}

/* blue ciel */

.c-green {
    color: #18cc6c;
}

/* flashé */

.c-green2 {
    color: #21b384;
}

/* medium */

.c-blue {
    color: #0091e6;
}

/* ciel */

.c-blue2 {
    color: #073590;
}

/* ryanair */

.DNNC-CONTENT-LARGE-content p.module2.c-white {
    color: #ffffff;
}

/* blanc */

.DNNC-CONTENT-LARGE-content a.lien-contact {
    display: inline-block;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: normal;
    text-align: center;
    padding: 20px 25px;
    text-decoration: none;
    margin: 0 5px;
    text-transform: uppercase;
}

.DNNC-CONTENT-LARGE-content a.lien-contact .fa {
    font-size: 22px;
    margin: 0 0 0 20px;
}

.DNNC-CONTENT-LARGE-content img.screenshot {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 0 2px #e5e5e5;
    margin-top: 40px;
    margin-bottom: 40px;
}

.shadow {
    box-shadow: 0 7px 25px rgba(0, 0, 0, .2);
}

.bg-green:hover {
    background-color: #00833d;
    transition-duration: 1s;
    transition-property: color, background-color;
}

.bg-blue:hover {
    background-color: #0a4671;
    transition-duration: 1s;
    transition-property: color, background-color;
}

.bg-yellow:hover {
    background-color: #ff9000;
    transition-duration: 1s;
    transition-property: color, background-color;
}

.DNNC-CONTENT-LARGE-content ul.module {
    padding: 0;
    width: 98%;
    list-style: none;
    margin: 0 0 0 2%;
    margin-bottom: 1em;
}

.DNNC-CONTENT-LARGE-content ul.module li {
    text-indent: -0.7em;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    color: #242b2e;
    font-weight: 600;
    line-height: 1.5em;
    text-align: justify;
    margin: 0 0 15px 15px;
    clear: left;
    letter-spacing: -0.5px;
    list-style: none;
}

.DNNC-CONTENT-LARGE-content ul.module .fa {
    margin: 0 10px 0 0;
}

.DNNC-CONTENT-LARGE-content ul.module2 {
    padding: 0;
    width: 98%;
    list-style: none;
    margin: 0 0 0 2%;
}

.DNNC-CONTENT-LARGE-content ul.module2 li {
    text-indent: -0.7em;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #4f5c61;
    font-weight: 400;
    line-height: 1.5em;
    text-align: justify;
    margin: 0 0 15px 20px;
    clear: left;
}

.DNNC-CONTENT-LARGE-content ul.module2 .fa {
    margin: 0 5px 0 0;
}

.DNNC-CONTENT-LARGE-content .module200 {
    width: 100%;
    height: auto;
    float: left;
    padding: 20px;
}

.DNNC-CONTENT-LARGE-content .module200 img {
    display: block;
    margin: 0 auto;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
    max-width: 100%;
}

.DNNC-CONTENT-LARGE-content .module100 {
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0;
    /*border-top:1px solid #d1d1d1;*/
}

.DNNC-CONTENT-LARGE-content .module40 {
    width: 37%;
    height: auto;
    float: left;
    margin: 0 1.5%;
}

.DNNC-CONTENT-LARGE-content .module40 img {
    width: 100%;
    height: auto;
    float: left;
    box-shadow: 0 0 0 1px #e5e5e5;
}

.DNNC-CONTENT-LARGE-content .module50 {
    width: 50%;
    height: auto;
    float: left;
    padding: 0 1.5%;
}

.DNNC-CONTENT-LARGE-content .module50_img {
    width: 50%;
    height: auto;
    float: left;
    padding: 0 1.5%;
}

.DNNC-CONTENT-LARGE-content .module50 img {
    width: 100%;
    max-width: 498px;
    height: auto;
    float: left;
}

.DNNC-CONTENT-LARGE-content .module60 {
    width: 60%;
    height: auto;
    float: left;
    padding: 0 1.5%;
}

.DNNC-CONTENT-LARGE-content .module60 img {
    width: 100%;
    height: auto;
    float: left;
    box-shadow: 0 0 0 1px #e5e5e5;
}

.DNNC-CONTENT-LARGE-content .module3 {
    width: 25.33%;
    min-height: 140px;
    float: left;
    box-shadow: 0 0 0 1px #e5e5e5;
    border-radius: 4px;
    padding: 2%;
    margin: 2%;
}

.DNNC-CONTENT-LARGE-content .module3 img {
    width: 75%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 10px;
}

.DNNC-CONTENT-LARGE-content .module3 a {
    width: 100%;
    float: left;
    font-size: 21px;
    font-family: 'Montserrat', sans-serif;
    color: #444;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    padding: 0;
}

.DNNC-CONTENT-LARGE-content img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/**/

.DNNC-CONTENT-LARGE-content .lessoncup {
    width: 1060px;
    height: auto;
    float: left;
    margin: 0 0 30px 0;
}

.DNNC-CONTENT-LARGE-content .lessoncup .image1, .image2, .image3, .image4, .image5, .image6, .image7, .image8, .image9, .image10, .image11, .image12, .image13, .image14, .image15, .image16, .image17, .image18, .image19, .image20, .image21, .image22, .image23 {
    width: 1060px;
    height: 600px;
    margin: 0 auto;
    float: left;
}

.DNNC-CONTENT-LARGE-content .thumbs {
    width: 100%;
    float: left;
    margin-left: auto;
    margin-right: auto;
}

.DNNC-CONTENT-LARGE-content .thumbs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    float: none;
}

.DNNC-CONTENT-LARGE-content .thumbs li {
    width: 138px;
    height: 80px;
    margin: 0 10px;
    cursor: pointer;
    background-size: cover;
    border: 1px solid #eaeaea;
    display: inline-block;
    float: none;
}

.DNNC-CONTENT-LARGE-content .thumbs li:hover {
    border: 1px solid #2469c7;
}

.DNNC-CONTENT-LARGE-content .thumbs li:visited {
    border: 1px solid #ff2d2d;
}

.DNNC-CONTENT-LARGE-content .FO {
    width: 50%;
    height: auto;
    float: left;
}

.DNNC-CONTENT-LARGE-content .FO strong {
    width: 100%;
    height: auto;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #3f6eb4;
    line-height: 2em;
    text-align: left;
    margin: 0;
}

.DNNC-CONTENT-LARGE-content strong.FA {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: left;
    width: auto;
    line-height: normal;
    float: none;
}

.DNNC-CONTENT-LARGE-content .FOO strong.FA {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-align: left;
    width: auto;
    line-height: normal;
    float: none;
}

.DNNC-CONTENT-LARGE-content .FO p {
    width: 96%;
    height: auto;
    float: left;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: left;
    margin: 0 2% 16px 2%;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-content .FO a {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: left;
    text-decoration: none;
}

.DNNC-CONTENT-LARGE-content .FOO {
    width: 100%;
    height: auto;
    float: left;
}

.DNNC-CONTENT-LARGE-content .FOO strong {
    width: 100%;
    height: auto;
    float: left;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #3f6eb4;
    line-height: 2em;
    text-align: left;
    margin: 0;
}

.DNNC-CONTENT-LARGE-content .FOO p {
    width: 98%;
    height: auto;
    float: left;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: left;
    margin: 0 1% 16px 1%;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-content .FOO a {
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: left;
    text-decoration: none;
}

/*****/

.DNNC-CONTENT-LARGE-content a.AV {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #303c54;
    line-height: normal;
    text-align: left;
    width: 100%;
    float: left;
    padding: 30px 0 20px 0;
    margin: 10px 0 0 0;
    text-decoration: none;
    border-bottom: 1px solid #eaeaea;
}

.DNNC-CONTENT-LARGE-content span.mw1 {
    color: #1176bc;
    font-size: 17px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.DNNC-CONTENT-LARGE-content .AV {
    width: 29.33%;
    height: auto;
    float: left;
    margin: 2%;
}

.DNNC-CONTENT-LARGE-content .AV img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENT-LARGE-content .AV strong {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1176bc;
    line-height: 2em;
    text-align: center;
    display: block;
}

.DNNC-CONTENT-LARGE-content .AV p {
    width: 100%;
    height: auto;
    float: left;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-content .AVV {
    width: 46%;
    height: auto;
    float: left;
    margin: 2%;
}

.DNNC-CONTENT-LARGE-content .AVV img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENT-LARGE-content .AVV strong {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1176bc;
    line-height: 2em;
    text-align: center;
    display: block;
}

.DNNC-CONTENT-LARGE-content .AVV p {
    width: 100%;
    height: auto;
    float: left;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-content a.AX {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #2383e5;
    line-height: normal;
    text-align: left;
    width: 100%;
    float: left;
    padding: 0 0 10px 0;
    margin: 0;
    text-decoration: none;
    border-bottom: 1px solid #eaeaea;
}

.DNNC-CONTENT-LARGE-content ul {
    margin: 0;
    padding: 0;
    margin: 10px 25px;
    list-style-type: circle;
    float: left;
}

.DNNC-CONTENT-LARGE-content ul li {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #333;
    font-size: 17px;
    text-align: justify;
    font-weight: 300;
    float: left;
}

.DNNC-CONTENT-LARGE-content table.temoignage {
    width: 960px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.DNNC-CONTENT-LARGE-content table.temoignage tr td p {
    font-family: Segoe UI, Helvetica;
    line-height: 22px;
    color: #333;
    font-size: 14px;
    text-align: justify;
    font-style: italic;
}

.DNNC-CONTENT-LARGE-content table.temoignage tr td p.titre1 {
    font-family: Segoe UI, Helvetica;
    line-height: 18px;
    color: #464646;
    font-size: 24px;
    text-align: justify;
    font-style: normal;
    font-weight: bold;
}

.DNNC-CONTENT-LARGE-content table.temoignage tr td p.titre2 {
    font-family: Segoe UI, Helvetica;
    line-height: 22px;
    color: #333;
    font-size: 14px;
    text-align: justify;
}

.DNNC-CONTENT-LARGE-content iframe {
    width: 100%;
    height: 700px;
    float: left;
}

.DNNC-CONTENT-LARGE-content iframe.maps {
    width: 100%;
    height: 400px;
    float: left;
}

.DNNC-CONTENT-LARGE-content span.contactA {
    width: 120px;
    height: auto;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #303c54;
    line-height: normal;
    text-align: left;
    margin: 5px 0;
}

.DNNC-CONTENT-LARGE-content span.contactB {
    width: 940px;
    height: auto;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #333333;
    line-height: normal;
    text-align: left;
    margin: 5px 0;
}

/****************************/

.DNNC-CONTENT-LARGE-content .DivCS {
    width: 85%;
    height: auto;
    float: left;
    margin: 5%;
    padding: 2.5%;
    border-radius: 4px;
    transition-duration: 0.5s;
    transition-property: color, background-color;
    border: 1px solid #eaeaea;
}

.DNNC-CONTENT-LARGE-content a.ACS {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #303c54;
    line-height: normal;
    text-align: left;
    width: 100%;
    float: left;
    padding: 20px 0;
    margin: 0;
    text-decoration: none;
}

.DNNC-CONTENT-LARGE-content a.ACS1 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #2383e5;
    line-height: normal;
    text-align: left;
    width: auto;
    float: left;
    padding: 0 0 10px 0;
    margin: 0;
    text-decoration: none;
}

.DNNC-CONTENT-LARGE-content a.ACS10 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #333;
    line-height: normal;
    text-align: left;
    width: auto;
    float: right;
    padding: 0 0 10px 0;
    margin: 0;
    text-decoration: none;
}

.DNNC-CONTENT-LARGE-content a.ACS2 {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #1bbe00;
    line-height: normal;
    text-align: center;
    width: 100%;
    float: left;
    padding: 10px 0;
    margin: 0;
    text-decoration: none;
}

.DNNC-CONTENT-LARGE-content a.CS {
    float: right;
    background-color: #8dd357;
    width: auto;
    height: auto;
    padding: 5px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    margin: 10px 0;
    text-align: center;
    border: none;
    line-height: normal;
    color: #fff;
    border-radius: 4px;
    transition-duration: 0.5s;
    transition-property: color, background-color;
    text-decoration: none;
}

.DNNC-CONTENT-LARGE-content a.CS:hover {
    background-color: #253b80;
    transition-duration: 0.5s;
    transition-property: color, background-color;
}

.DNNC-CONTENT-LARGE-content p.CS {
    font-size: 19px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0 0 10px 0;
    line-height: 1.6em;
}

.DNNC-CONTENT-LARGE-content p.CS1 {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: #1bbe00;
    font-weight: 400;
    text-align: justify;
    margin: 10px 0 0 0;
    line-height: 1.6em;
}

.DNNC-CONTENT-LARGE-content ul.CS {
    margin: 0;
    padding: 0;
    margin: 0 25px 10px 25px;
    list-style-type: disc;
    float: left;
}

.DNNC-CONTENT-LARGE-content ul.CS li {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #333;
    font-size: 17px;
    text-align: left;
    font-weight: 300;
    float: left;
    width: 100%;
}

.DNNC-CONTENT-LARGE-content .FRR {
    width: 100%;
    height: 50px;
    float: left;
}

.DNNC-CONTENT-LARGE-content .FRR img {
    width: 50px;
    height: 50px;
    float: right;
}

.DNNC-CONTENT-LARGE-content .FRR a {
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: right;
    margin: 0;
    line-height: normal;
    width: auto;
    float: right;
    line-height: 50px;
    margin-right: 10px;
}

/* -------------------------------------------------------------------- */

.DNNC-CONTENT-LARGE {
    width: 100%;
    height: auto;
    float: left;
}

.DNNC-CONTENT-LARGE-content {
    width: 100%;
    height: auto;
    float: left;
    margin: 0 0 30px 0;
}

.DNNC-CONTENT-LARGE-content p {
    font-size: 19px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0;
    line-height: 1.8em;
}

.DNNC-CONTENT-LARGE-content strong.C {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #3f6eb4;
    line-height: 1.8em;
    text-align: left;
}

.DNNC-CONTENT-LARGE-content strong.CC {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1176bc;
    line-height: 30px;
    text-align: left;
}

.DNNC-CONTENT-LARGE-content .illu {
    width: 176.5px;
    height: 190px;
    float: left;
}

.DNNC-CONTENT-LARGE-content .illu img {
    width: 124.5px;
    height: 109.5px;
    float: left;
    margin: 26px 26px 0 26px;
}

.DNNC-CONTENT-LARGE-content .illu strong {
    width: 166.5px;
    height: 20px;
    float: left;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    color: #525a69;
    font-weight: 400;
    text-align: center;
    line-height: normal;
    margin: 0 5px;
}

.DNNC-CONTENT-LARGE-content p strong {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8em;
    text-align: left;
}

.DNNC-CONTENT-LARGE-content p {
    margin: 0 0 10px 0;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0;
    line-height: 1.8em;
    width: 100%;
    float: left;
}

.DNNC-CONTENT-LARGE-content a.a_illu {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #303c54;
    line-height: normal;
    text-align: center;
    width: 100%;
    float: left;
    padding: 30px 0 40px 0;
    border-top: 2px solid #e9e9e9;
    margin: 10px 0 0 0;
    text-decoration: none;
}

.separateur {
    width: 100%;
    height: 1px;
    background-color: #d1d1d1;
    float: left;
}

.deux-botton {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin: 0 0 50px 0;
}

a.lien-contact {
    display: inline-block;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: normal;
    text-align: center;
    padding: 20px 25px;
    text-decoration: none;
    margin: 0 5px;
    text-transform: uppercase;
}

a.lien-contact .fa {
    font-size: 22px;
    margin: 0 0 0 20px;
}

.content-contenu-color {
    width: 100%;
    height: auto;
    float: left;
    background-color: #fff;
    min-height: auto;
    margin-bottom: 50px;
}

/* --------------------------------------------------------------------- */

.DNNC-CONTENT-LARGE-BLUE {
    width: 100%;
    height: auto;
    float: left;
    background-color: #004773;
}

.DNNC-CONTENT-LARGE-BLUE-content {
    width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENT-LARGE-BLUE-content .module100 {
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0;
    /*border-top:1px solid #d1d1d1;*/
}

.DNNC-CONTENT-LARGE-BLUE-content .module50 {
    width: 50%;
    height: auto;
    float: left;
    padding: 20px
}

.DNNC-CONTENT-LARGE-BLUE-content .module50_img {
    width: 50%;
    height: auto;
    float: left;
    padding: 20px
}

.DNNC-CONTENT-LARGE-BLUE-content img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.DNNC-CONTENT-LARGE-BLUE-content p.module {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 400;
    text-align: left;
    margin: 0;
    line-height: 1.8em;
    width: 100%;
    float: left;
    margin: 0 0 15px 0;
    text-shadow: none;
}

.DNNC-CONTENT-LARGE-BLUE-content p.module2 {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 600;
    text-align: left;
    margin: 0;
    line-height: 1.5em;
    width: 100%;
    float: left;
    margin: 0 0 20px 0;
    text-shadow: none;
}

.DNNC-CONTENT-LARGE-BLUE-content h2 {
    width: 100%;
    float: left;
    font-size: 47px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-BLUE-content h3 {
    width: 100%;
    float: left;
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-BLUE-content h4 {
    width: 100%;
    float: left;
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding: 0;
}

.DNNC-CONTENT-LARGE-BLUE-content h5 {
    width: 100%;
    float: left;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 600;
    text-align: left;
    margin: 0 0 40px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding: 0;
}

.DNNC-CONTENT-LARGE-BLUE-content ul.module2 {
    padding: 0;
    width: 98%;
    list-style: none;
    margin: 0 0 0 2%;
}

.DNNC-CONTENT-LARGE-BLUE-content ul.module2 li {
    text-indent: -0.7em;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 400;
    line-height: 1.5em;
    text-align: justify;
    margin: 0 0 15px 20px;
    clear: left;
}

.DNNC-CONTENT-LARGE-BLUE-content ul.module2 .fa {
    margin: 0 5px 0 0;
}

/* --------------------------------------------------------------------- */

.DNNC-CONTENT-LARGE-WHITE {
    width: 100%;
    height: auto;
    float: left;
    background-color: #fff;
}

.DNNC-CONTENT-LARGE-WHITE-action {
    float: right;
    width: auto;
    height: auto;
}

.DNNC-CONTENT-LARGE-WHITE-content {
    width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENT-LARGE-WHITE-content .module100 {
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0;
    /*border-top:1px solid #d1d1d1;*/
}

.DNNC-CONTENT-LARGE-WHITE-content .module50 {
    width: 50%;
    height: auto;
    float: left;
    padding: 20px
}

.DNNC-CONTENT-LARGE-WHITE-content .module50_img {
    width: 50%;
    height: auto;
    float: left;
    padding: 20px
}

.DNNC-CONTENT-LARGE-WHITE-content img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.DNNC-CONTENT-LARGE-WHITE-content p.module {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #424c50;
    font-weight: 400;
    text-align: left;
    margin: 0;
    line-height: 1.8em;
    width: 100%;
    float: left;
    margin: 0 0 15px 0;
}

.DNNC-CONTENT-LARGE-WHITE-content p.module2 {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #424c50;
    font-weight: 600;
    text-align: left;
    margin: 0;
    line-height: 1.5em;
    width: 100%;
    float: left;
    margin: 0 0 20px 0;
    text-shadow: none;
}

.DNNC-CONTENT-LARGE-WHITE-content h2 {
    width: 100%;
    float: left;
    font-size: 47px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-WHITE-content h3 {
    width: 100%;
    float: left;
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #154d8c;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-WHITE-content h4 {
    width: 100%;
    float: left;
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding: 0;
}

.DNNC-CONTENT-LARGE-WHITE-content h5 {
    width: 100%;
    float: left;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: left;
    margin: 0 0 40px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding: 0;
}

.DNNC-CONTENT-LARGE-WHITE-content ul.module2 {
    padding: 0;
    width: 98%;
    list-style: none;
    margin: 0 0 0 2%;
}

.DNNC-CONTENT-LARGE-WHITE-content ul.module2 li {
    text-indent: -0.7em;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #4f5c61;
    font-weight: 400;
    line-height: 1.5em;
    text-align: justify;
    margin: 0 0 15px 20px;
    clear: left;
}

.DNNC-CONTENT-LARGE-WHITE-content ul.module2 .fa {
    margin: 0 5px 0 0;
}

/* --------------------------------------------------------------------- */

.DNNC-CONTENT-LARGE-COLOR {
    width: 100%;
    height: auto;
    float: left;
    background-color: #f5f7f7;
}

.DNNC-CONTENT-LARGE-COLOR-action {
    float: right;
    width: auto;
    height: auto;
}

.DNNC-CONTENT-LARGE-COLOR-content {
    width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENT-LARGE-COLOR-content .module100 {
    width: 100%;
    height: auto;
    float: left;
    padding: 80px 0;
    /*border-top:1px solid #d1d1d1;*/
}

.DNNC-CONTENT-LARGE-COLOR-content .module50 {
    width: 50%;
    height: auto;
    float: left;
    padding: 20px
}

.DNNC-CONTENT-LARGE-COLOR-content .module50_img {
    width: 50%;
    height: auto;
    float: left;
    padding: 20px
}

.DNNC-CONTENT-LARGE-COLOR-content img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.DNNC-CONTENT-LARGE-COLOR-content p.module {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    color: #424c50;
    font-weight: 400;
    text-align: left;
    margin: 0;
    line-height: 1.8em;
    width: 100%;
    float: left;
    margin: 0 0 15px 0;
}

.DNNC-CONTENT-LARGE-COLOR-content p.module2 {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #424c50;
    font-weight: 600;
    text-align: left;
    margin: 0;
    line-height: 1.5em;
    width: 100%;
    float: left;
    margin: 0 0 20px 0;
    text-shadow: none;
}

.DNNC-CONTENT-LARGE-COLOR-content h2 {
    width: 100%;
    float: left;
    font-size: 47px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-COLOR-content h3 {
    width: 100%;
    float: left;
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #154d8c;
    font-weight: 600;
    text-align: center;
    margin: 15px 0;
    letter-spacing: -.01em;
    line-height: normal;
}

.DNNC-CONTENT-LARGE-COLOR-content h4 {
    width: 100%;
    float: left;
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding: 0;
}

.DNNC-CONTENT-LARGE-COLOR-content h5 {
    width: 100%;
    float: left;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    font-weight: 600;
    text-align: left;
    margin: 0 0 40px 0;
    letter-spacing: -.01em;
    line-height: normal;
    padding: 0;
}

.DNNC-CONTENT-LARGE-COLOR-content ul.module2 {
    padding: 0;
    width: 98%;
    list-style: none;
    margin: 0 0 0 2%;
}

.DNNC-CONTENT-LARGE-COLOR-content ul.module2 li {
    text-indent: -0.7em;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #4f5c61;
    font-weight: 400;
    line-height: 1.5em;
    text-align: justify;
    margin: 0 0 15px 20px;
    clear: left;
}

.DNNC-CONTENT-LARGE-COLOR-content ul.module2 .fa {
    margin: 0 5px 0 0;
}

/******************************** CONTENU v6************************************/

.DNNC-CONTENU-V6-FAQ {
    width: 100%;
    height: auto;
    float: left;
    margin: 40px 0;
}

.DNNC-CONTENU-V6-FAQ-action {
    float: right;
    width: auto;
    height: auto;
}

.DNNC-CONTENU-V6-FAQ-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    padding: 0 2%;
    box-sizing: border-box;
}

.DNNC-CONTENU-V6-FAQ-content .faqLink {
    width: 100%;
    height: auto;
    float: left;
    padding: 0 0 20px 0;
    box-sizing: border-box;
}

.DNNC-CONTENU-V6-FAQ-content .faqLink a {
    color: #68757a;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: left;
    margin: 0 0 10px 0;
    text-decoration: none;
    padding: 7px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    display: unset;
}

.DNNC-CONTENU-V6-FAQ-content .faqLink a:hover {
    color: #006199;
    text-decoration: none;
    border: 1px solid #DADCE0;
    font-weight: 500;
}

.DNNC-CONTENU-V6-FAQ-content .faq {
    width: 100%;
    height: auto;
    float: left;
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
    /* display: block;
    margin: auto; */
}

.DNNC-CONTENU-V6-FAQ-content .faq .box {
    width: 96%;
    height: auto;
    display: inline-block;
    margin: 1px 2% 30px 2%;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 0 1px #DADCE0;
    box-sizing: border-box;
}

.DNNC-CONTENU-V6-FAQ-content .faq .box p {
    color: #4f5c61;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: justify;
    margin: 0 0 10px 0;
}

.DNNC-CONTENU-V6-FAQ-content .faq .box .title {
    font-size: 26px;
    color: #0091e6;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-style: normal;
    margin: 0;
}

.DNNC-CONTENU-V6-FAQ-content .faq .box img {
    width: 300px;
    height: auto;
    display: block;
    float: none;
    margin: 0 auto;
    margin-bottom: 40px;
}

.DNNC-CONTENU-V6-FAQ-content .faq .box p strong {
    font-size: 18px;
    color: #242b2e;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-style: normal;
    margin: 45px 0 15px 0;
    text-align: left;
    display: block;
}

.DNNC-CONTENU-V6-FAQ-content .faq .box p.titre2 {
    line-height: normal;
    color: #333333;
    font-size: 1rem;
    margin: 0;
}

/*
.DNNC-CONTENU-V6-FAQ-content .faq .box img {
    width: 30%;
	height: auto;
	float: left;
}
*/

.DNNC-CONTENU-V6-FAQ-content .faq .box ul {
    min-width: 95%;
    padding: 0;
    list-style-type: disc;
    width: auto;
    list-style: disc;
    margin: 0 0 0 5%;
    clear: left;
    margin-bottom: 1em;
    float: left;
}

.DNNC-CONTENU-V6-FAQ-content .faq .box ul li {
    color: #4f5c61;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: justify;
    float: none;
}

/******************************** CONTENU v6************************************/

.DNNC-CONTENU-V6 {
    width: 100%;
    height: auto;
    float: left;
    margin: 40px 0;
}

.DNNC-CONTENU-V6-action {
    float: right;
    width: auto;
    height: auto;
}

.DNNC-CONTENU-V6-content {
    /* width: 1200px; */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENU-V6-content p {
    color: #4f5c61;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: justify;
    margin: 0 0 10px 0;
    width: 100%;
    float: left;
}

.DNNC-CONTENU-V6-content strong.C {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #3f6eb4;
    line-height: 1.8em;
}

.DNNC-CONTENU-V6-content strong.CC {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1176bc;
    line-height: 30px;
}

.DNNC-CONTENU-V6-content .MODULE {
    width: 22.5%;
    vertical-align: top;
    display: inline-block;
    margin: 1%;
}

.DNNC-CONTENU-V6-content .MODULE img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENU-V6-content .MODULE a {
    width: 100%;
    height: auto;
    float: left;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #03363d;
    font-weight: 600;
    text-align: left;
    line-height: normal;
    text-decoration: none;
    padding: 5px 0;
}

.DNNC-CONTENU-V6-content .MODULE p {
    width: 100%;
    height: auto;
    float: left;
    font-size: 16px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #78858a;
    font-weight: 300;
    text-align: justify;
    line-height: normal;
}

.DNNC-CONTENU-V6-content ul {
    margin: 0;
    padding: 0;
    margin: 10px 25px;
    list-style-type: circle;
    float: left;
}

.DNNC-CONTENU-V6-content ul li {
    font-family: 'Roboto', sans-serif;
    line-height: 27px;
    color: #333;
    font-size: 17px;
    text-align: justify;
    font-weight: 300;
    float: left;
    padding: 0 0 10px 0;
}

.DNNC-CONTENU-V6-content img.ref {
    /*width: 234px;*/
    width: 19.6%;
    height: auto;
    margin: 0;
    display: inline-block;
}

/* secteur CONTENU v6*/

.DNNC-CONTENU-V6-content h1 {
    height: auto;
    font-size: 56px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #232b2e;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: normal;
    text-align: center;
    margin: 0 0 30px 0;
}

.DNNC-CONTENU-V6-content .secteur {
    width: 29%;
    display: inline-block;
    vertical-align: top;
    margin: 2%;
}

.DNNC-CONTENU-V6-content img.secteur {
    width: 100%;
    height: auto;
    float: left;
}

.DNNC-CONTENU-V6-content a.secteur {
    width: 100%;
    height: auto;
    float: left;
    font-size: 23px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #04363d;
    font-weight: 600;
    text-align: left;
    line-height: normal;
    text-decoration: none;
    padding: 10px 0;
    letter-spacing: -.01em;
}

.DNNC-CONTENU-V6-content p.secteur {
    width: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #232b2e;
    font-weight: 300;
    letter-spacing: -.01em;
    line-height: normal;
    text-align: justify;
    font-size: 16px;
    float: left;
    margin: 0;
    line-height: 24px;
}

.DNNC-CONTENU-V6 a.boxSolution {
    width: 20%;
    height: auto;
    float: left;
    box-sizing: border-box;
    padding: 0 10px;
}

/***** temoignage ******/

.DNNC-CONTENU-V6-content .temoignage-mobile {
    display: none;
}

.DNNC-CONTENU-V6-content table.temoignage {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 50px;
}

.DNNC-CONTENU-V6-content table.temoignage tr td p {
    font-family: 'lato', sans-serif;
    line-height: 22px;
    color: #333;
    font-size: 15px;
    text-align: justify;
    font-style: italic;
    font-weight: 400;
}

.DNNC-CONTENU-V6-content table.temoignage tr td p.titre1 {
    line-height: normal;
    color: #464646;
    font-size: 2rem;
    font-style: normal;
    font-weight: bold;
    margin: 0;
}

.DNNC-CONTENU-V6-content table.temoignage tr td p.titre2 {
    line-height: normal;
    color: #333333;
    font-size: 1.2rem;
    margin: 0;
}

.DNNC-CONTENU-V6-content table.temoignage tr td img {
    margin: 0 0 2rem 0;
}

.DNNC-CONTENU-V6-content table.temoignage tr td.largeur3 {
    width: 300px;
}

.DNNC-CONTENU-V6-content table.temoignage tr td.largeur9 {
    width: 900px;
}

/***** AVANTAGE ******/

.DNNC-CONTENU-V6-content a.AV {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: #303c54;
    line-height: normal;
    text-align: left;
    width: 100%;
    float: left;
    padding: 30px 0 20px 0;
    margin: 10px 0 0 0;
    text-decoration: none;
    border-bottom: 1px solid #eaeaea;
}

.DNNC-CONTENU-V6-content span.mw1 {
    color: #1176bc;
    font-size: 17px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
}

.DNNC-CONTENU-V6-content .AV {
    width: 29.33%;
    height: auto;
    float: left;
    margin: 2%;
}

.DNNC-CONTENU-V6-content .AV img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENU-V6-content .AV strong {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1176bc;
    line-height: 2em;
    text-align: center;
    display: block;
}

.DNNC-CONTENU-V6-content .AV p {
    width: 100%;
    height: auto;
    float: left;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0;
    line-height: normal;
}

.DNNC-CONTENU-V6-content .AVV {
    width: 46%;
    height: auto;
    float: left;
    margin: 2%;
}

.DNNC-CONTENU-V6-content .AVV img {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENU-V6-content .AVV strong {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1176bc;
    line-height: 2em;
    text-align: center;
    display: block;
}

.DNNC-CONTENU-V6-content .AVV p {
    width: 100%;
    height: auto;
    float: left;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0;
    line-height: normal;
}

/***** videotheque ****/

.DNNC-CONTENU-V6-content .contenu_video {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.DNNC-CONTENU-V6-content .contenu_video video {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ------------------------------------------- */

.DNNC-CONTENU-V6-content p.CS {
    font-size: 19px;
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-weight: 300;
    text-align: justify;
    margin: 0 0 10px 0;
    line-height: 1.6em;
}

.DNNC-CONTENU-V6-content a.ACS2 {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #1bbe00;
    line-height: normal;
    text-align: center;
    width: 100%;
    float: left;
    padding: 10px 0;
    margin: 0;
    text-decoration: none;
}

/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/******************* REFERENCE ********************/

.boxRef {
    width: auto;
    height: auto;
    float: left;
    border: 1px solid #eee;
    border-radius: 3px;
    box-sizing: border-box;
    padding: 20px;
}

.boxRef span {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #567;
    line-height: 1.8em;
    width: 100%;
    float: left;
    border-bottom: 1px solid #eee;
    padding: 0 0 10px 0;
    margin: 0 0 15px 0;
}

.boxRef a {
    border: none;
}

.w30 {
    width: 27%;
    float: left;
    margin: 0 1.5% 30px 1.5%;
}

.w30 .boxRef img {
    width: 100%;
    display: block;
    margin: auto;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 35px;
    box-sizing: border-box;
    max-width: 258px;
    cursor: pointer;
}

.w30 .boxRef img:hover {
    background-color: #f6fafe;
    border: 1px solid #1a73e8;
}

.w70 {
    width: 67%;
    float: left;
    margin: 0 1.5% 30px 1.5%;
}

.w70 .boxRef img {
    width: 33.33%;
    float: left;
    max-width: 258px;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 35px;
    box-sizing: border-box;
    cursor: pointer;
}

.w70 .boxRef img:hover {
    background-color: #f6fafe;
    border: 1px solid #1a73e8;
}

.w100 {
    width: 97%;
    float: left;
    margin: 0 1.5% 0 1.5%;
}

.w100 .boxRef img {
    width: 25%;
    float: left;
    max-width: 258px;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 35px;
    box-sizing: border-box;
    cursor: pointer;
}

.w100 .boxRef img:hover {
    background-color: #f6fafe;
    border: 1px solid #1a73e8;
}

/***************************************************/

/***************************************************/

/***************************************************/

/***************************************************/

/***************************************************/

/***************************************************/

/****************** Testimonials *******************/

.DNNC-CONTENU-V6-content .testimonials {
    width: 100%;
    height: auto;
    float: left;
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
}

.DNNC-CONTENU-V6-content .testimonials .box {
    width: 96%;
    height: auto;
    display: inline-block;
    margin: 1px 2% 30px 2%;
    padding: 40px 40px 20px 40px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 0 1px #DADCE0;
    box-sizing: border-box;
}

.DNNC-CONTENU-V6-content .testimonials .box p {
    color: #4f5c61;
    font-size: 16px;
    line-height: 1.6;
    font-family: lato, sans-serif;
    font-weight: 500;
    letter-spacing: .5px;
    text-align: justify;
    margin: 0 0 10px;
}

.DNNC-CONTENU-V6-content .testimonials .box p.titre1 {
    line-height: normal;
    color: #464646;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: bold;
    margin: 30px 0 0 0;
}

.DNNC-CONTENU-V6-content .testimonials .box p.titre2 {
    line-height: normal;
    color: #333333;
    font-size: 1rem;
    margin: 0;
}

.DNNC-CONTENU-V6-content .testimonials .box img {
    width: 30%;
    height: auto;
    float: left;
}

/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/******************      FAQ     *******************/

.DNNC-CONTENU-V6-content .faqLink {
    width: 100%;
    height: auto;
    float: left;
    padding: 0 0 40px 0;
    box-sizing: border-box;
}

.DNNC-CONTENU-V6-content .faqLink a {
    color: #68757a;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: left;
    margin: 0 0 10px 0;
    text-decoration: none;
    padding: 7px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
}

.DNNC-CONTENU-V6-content .faqLink a:hover {
    color: #006199;
    text-decoration: none;
    border: 1px solid #DADCE0;
    font-weight: 600;
}

.DNNC-CONTENU-V6-content .faq {
    width: 100%;
    height: auto;
    float: left;
    column-count: 2;
    -moz-column-count: 2;
    -webkit-column-count: 2;
}

.DNNC-CONTENU-V6-content .faq .box {
    width: 96%;
    height: auto;
    display: inline-block;
    margin: 1px 2% 30px 2%;
    padding: 40px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 0 1px #DADCE0;
    box-sizing: border-box;
}

.DNNC-CONTENU-V6-content .faq .box p {
    color: #4f5c61;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: justify;
    margin: 0 0 10px 0;
}

.DNNC-CONTENU-V6-content .faq .box .title {
    font-size: 26px;
    color: #0091e6;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-style: normal;
    margin: 0;
}

.DNNC-CONTENU-V6-content .faq .box p.titre1 {
    font-size: 18px;
    color: #242b2e;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-style: normal;
    margin: 45px 0 15px 0;
    text-align: left;
}

.DNNC-CONTENU-V6-content .faq .box p.titre2 {
    line-height: normal;
    color: #333333;
    font-size: 1rem;
    margin: 0;
}

.DNNC-CONTENU-V6-content .faq .box img {
    width: 30%;
    height: auto;
    float: left;
}

.DNNC-CONTENU-V6-content .faq .box ul.faqList {
    min-width: 95%;
    padding: 0;
    list-style-type: disc;
    width: auto;
    list-style: disc;
    margin: 0 0 0 5%;
    clear: left;
    margin-bottom: 1em;
    float: left;
}

.DNNC-CONTENU-V6-content .faq .box ul.faqList li {
    color: #4f5c61;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: justify;
    float: none;
}

/***************************************************/
/*  */
/*  */
.DNNC-CONTENU-V6-content .partenaires {
    width: 70%;
    height: auto;
    display: flex;
    margin: auto;
}

.DNNC-CONTENU-V6-content .partenaires .box {
    width: 46%;
    height: auto;
    display: inline-block;
    margin: 1px 2% 30px 2%;
    padding: 40px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 0 1px #DADCE0;
    box-sizing: border-box;
    float: left;
}

.DNNC-CONTENU-V6-content .partenaires .box p {
    color: #4f5c61;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: justify;
    margin: 0 0 10px 0;
}

.DNNC-CONTENU-V6-content .partenaires .box .title {
    font-size: 26px;
    color: #0091e6;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-style: normal;
    margin: 0;
}

.DNNC-CONTENU-V6-content .partenaires .box p.titre1 {
    font-size: 18px;
    color: #242b2e;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: normal;
    font-style: normal;
    margin: 45px 0 15px 0;
    text-align: left;
}

.DNNC-CONTENU-V6-content .partenaires .box p.titre2 {
    line-height: normal;
    color: #333333;
    font-size: 1rem;
    margin: 0;
}

.DNNC-CONTENU-V6-content .partenaires .box img {
    width: 30%;
    height: auto;
    float: left;
}

.DNNC-CONTENU-V6-content .partenaires .box img.img2 {
    width: 20%;
    height: auto;
    float: left;
}

/*  */
/*  */

.contact-maps {
    /*width: 46%;*/
    width: 96%;
    height: auto;
    float: left;
    margin: 0 2%;
}

.contact-maps h1 {
    font-weight: 600;
    height: 50px;
}

.contact-maps span.contactA {
    width: 100%;
    height: auto;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: normal;
    text-align: left;
    margin: 0;
}

.contact-maps span.contactB {
    width: 100%;
    height: auto;
    float: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #006199;
    line-height: normal;
    text-align: left;
    margin: 0 0 15px 0;
}

.DNNC-CONTENU-V6-content .contact-maps iframe {
    width: 100%;
    min-height: 400px;
    float: left;
}

/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/******************  FORMULAIRE  *******************/

.contact-form {
    width: 100%;
    min-height: auto;
    float: left;
    margin: 0;
    padding: 0;
}

.contact-form iframe {
    width: 100%;
    min-height: 480px;
}

.contact-form-recrutement {
    width: 100%;
    min-height: auto;
    float: left;
    margin: 60px 0 0 0;
    padding: 0;
}

.contact-form-recrutement iframe {
    width: 100%;
    min-height: 800px;
    max-width: auto;
}



.modal-content {
    padding: 0 1rem 1rem 1rem;
}

.modal-header {
    border-bottom: none;
    margin: 20px 0 0 0;
}

h5.modal-title {
    font-size: 2rem;
}

.modal-footer {
    border-top: none;
}

.form-control {
    padding: unset;
}

.form-group textarea {
    padding: .375rem .75rem;
}

.form-group input {
    padding: 1.5em .75rem;
}

.form-group select {
    padding: 0.782rem .75rem;
    height: auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    /* box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); */
    box-shadow: none;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/
/****************** Blog article *******************/

.blogArticle {
    width: 100%;
    height: auto;
    padding: 20px 5%;
}

.article {
    width: 100%;
    height: auto;
    max-width: 936px;
    display: block;
    margin: auto;
}

.article h3 {
    color: #1b2432;
    letter-spacing: .25px;
    line-height: 1.3;
    font-size: 2.8em;
    margin: 20px 0 10px 0;
    font-weight: 800;
    display: inline-block;
    width: 100%;
}

.article img {
    width: 100%;
    display: inline-block;
}

.article td img {
    width: auto;
    display: inline-block;
}

.article span {
    color: #b9bcc0;
    font-size: 1em;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.article p {
    color: #676d76;
    overflow: hidden;
    padding: 0;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    width: 100%;
    text-align: justify;
}

.article h2 {
    padding: 20px 0;
}

.article ol {
    list-style: circle;
}

.article ul {
    min-width: 95%;
    padding: 0;
    list-style-type: disc;
    width: auto;
    list-style: disc;
    margin: 0 0 0 5%;
    margin-bottom: 0px;
    clear: left;
    margin-bottom: 1em;
    float: left;
}

.article ul li,
.article ol li {
    color: #676d76;
    overflow: hidden;
    padding: 0;
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    width: 100%;
    text-align: justify;
}

.article ul.newsl {
    min-width: 95%;
    padding: 0;
    list-style-type: disc;
    width: auto;
    list-style: disc;
    margin: 0 0 0 5%;
    margin-bottom: 0px;
    clear: left;
    margin-bottom: 1em;
    float: left;
}

.article ul.newsl li {
    color: #676d76;
    overflow: hidden;
    padding: 0;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    line-height: 1.8;
    display: inline-block;
    width: 100%;
    text-align: justify;
}

.article ul.newsl li.bold {
    font-size: 18px;
    font-weight: 700;
    list-style: none;
    left: -30px;
    position: relative;
}

.article ul li strong,
.article ol li strong {
    color: rgb(56, 56, 56);
}

.article h4 {
    color: #1b2432;
    letter-spacing: -0.25px;
    line-height: 1.3;
    font-size: 1.75em;
    margin: 20px 0 10px 0;
    font-weight: 500;
}

/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */

.card-body ul.newsl {
    min-width: 95%;
    padding: 0;
    list-style-type: disc;
    width: auto;
    list-style: disc;
    margin: 0 0 0 5%;
    margin-bottom: 0px;
    clear: left;
    margin-bottom: 1em;
    float: left;
}

.card-body ul.newsl li {
    color: #676d76;
    overflow: hidden;
    padding: 0;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    line-height: 1.8;
    display: inline-block;
    width: 100%;
    text-align: justify;
}

.card-body ul.newsl li.bold {
    font-size: 18px;
    font-weight: 700;
    list-style: none;
    left: -30px;
    position: relative;
}

/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */

/* **************** HELP *************************************************** */

.header-t {
    font-family: "Inter", sans-serif;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px 30px;
    box-sizing: border-box;
    background-color: #4656a9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-t .brand {
    width: 210px;
    height: auto;
}
.header-t .brand img {
    width: 100%;
    height: auto;
    vertical-align: unset;
    float: left;
}
.header-t .search {
    width: 400px;
    height: auto;
}
.header-t .search input[type=text] {
    outline: none;
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 20px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    box-shadow: none;
    box-sizing: border-box;
}
.header-t .search input[type=text]::placeholder {
    font-size: 16px;
    font-weight: 300;
    color: #c4cdd5;
}
.wrap-d {
    font-family: "Inter", sans-serif;
    width: 100%;
    height: calc(100vh - 80px);
    position: fixed;
}
.wrap-d .menu-d {
    /* background-color: aliceblue; */
    border-right: 1px solid #e3e3e3;
    width: 320px;
    height: calc(100vh - 80px);
    left: 0;
    padding-top: 1rem;
    padding-left: 1rem;
    position: absolute;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
}
.wrap-d .menu-d span{
    color: #282F33;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: .5rem;
    width: 100%;
    display: block;
}
.wrap-d .menu-d::-webkit-scrollbar {
    width: 4px; 
}
.wrap-d .menu-d::-webkit-scrollbar-track {
    background: #ffffff; 
}
.wrap-d .menu-d::-webkit-scrollbar-thumb {
    background-color: #4656a9;
}
.wrap-d .content-d {
    width: auto;
    position: absolute;
    left: 320px;
    overflow-x: hidden;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
.wrap-d .content-d#validationForm {
    margin: 100px;
}
.wrap-d .content-d .content-l {
    padding: 40px 50px;
    width: 75%;
    box-sizing: border-box;
}
.wrap-d .content-d .content-r {
    position: sticky;
    right: 0;
    top: 0;
    width: 20%;
    padding: 40px 10px 0 0;
    box-sizing: border-box;
}
.wrap-d .content-d .content-r span {
    color: #282F33;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    width: 100%;
    display: block;
}
.wrap-d .content-d .content-r a {
    text-decoration: none;
    color: #282F33;
    font-weight: 400;
    font-size: .9rem;
    width: 100%;
    display: block;
    padding: 5px 10px;
}
.wrap-d .content-d .content-r a:hover {
    background-color: #e7e7e73d;
}
.wrap-d .content-d .content-l h1 {
    color: #4656a9;
    font-size: 40px;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.wrap-d .content-d .content-l h2 {
    color: #282F33;
    font-size: 30px;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    font-weight: 700;
}
.wrap-d .content-d .content-l h3 {
    color: #282F33;
    font-size: 24px;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    font-weight: 600;
}
.wrap-d .content-d .content-l p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #282F33;
    text-align: justify;
    margin-bottom: 1.5rem;
}
.wrap-d .content-d .content-l ul {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #282F33;
    text-align: justify;
    margin-bottom: 1.5rem;
    width: 100%;
    float: left;
    padding: 0px 0 0 40px;
    margin: 0 0 20px 0;
}
.wrap-d .content-d .content-l p ul {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #282F33;
    text-align: justify;
    margin-bottom: 1.5rem;
    width: 100%;
    float: left;
    padding: 0px 0 0 40px;
}
.wrap-d .content-d .content-l .alerte {
width: 100%;
padding: 1.25rem;
border-radius: 6px;
margin: 0 0 20px 0;
float: left;
}
.wrap-d .content-d .content-l .alerte.bleu {
background-color: #cff4fc;
border: 1px solid #9eeaf9;
}
.wrap-d .content-d .content-l .alerte.bleu p {
color: #055160;
margin: 0;
}
.wrap-d .content-d .content-l .alerte.rouge {
background-color: #f8d7da;
border: 1px solid #f5c6cb;
}
.wrap-d .content-d .content-l .alerte.rouge p {
color: #721c24;
margin: 0;
}
.wrap-d .content-d .content-l .alerte.vert {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}
.wrap-d .content-d .content-l .alerte.vert p {
    color: #155724;
    margin: 0;
}
.wrap-d .content-d .content-l .alerte.orange {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
}
.wrap-d .content-d .content-l .alerte.orange p {
    color: #856404;
    margin: 0;
}
.wrap-d .content-d .content-l img {
    width: auto;
    max-width: 100%;
    border: 1px solid #DEE2E6;
    padding: 15px;
    border-radius: 6px;
    margin: 0 0 20px 0;
}
/*Func*/
.multi-level, .item ul, .nav input[type="checkbox"] {
    display: none;
}
.multi-level, .item input:checked ~ ul {
    display: block;
    width: 100%;
    margin: 0;
}
/*Arrow*/
.arrow {
    width: 10px;
    height: 10px;
    float: left;
    z-index: 0;
    margin: 10px 5px 0 0;
    background: url(https://labs.digify.ma/img/arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.item input + .arrow {
    transform: rotate(-90deg);
    transition: 0.1s;
}
.item input:checked + .arrow {
    transform: rotate(0deg);
    transition: 0.1s;
}
/*Styles*/
label:hover {
    cursor: pointer;
}
label {
    width: 100%;
    display: block;
    /* z-index: 3;
    position: relative; */
}
.nav {
    width: 100%;
    /* background-color: white; */
    overflow-x: hidden;
    /* border-bottom: 1px solid #CFD8DC; */
}
#nav-icon {
    font-size: 30px;
    line-height: 50px;
    padding-left: 0;
    color: #333;
    /* background-color: #F44336; */
    display: none;
}
.multi-level .nav ul {
    line-height: normal;
    margin: 0;
    list-style: none;
    width: 100%;
    padding: 10px 0;
    text-decoration: none;
    color: #282F33;
    font-weight: 400;
    font-size: 1rem;
}
.multi-level nav li {
    line-height: normal;
    margin: 0;
    list-style: none;
    width: 100%;
    padding: 10px 0;
    text-decoration: none;
    color: #282F33;
    font-weight: 400;
    font-size: 1rem;
}
.multi-level label {
    line-height: normal;
    margin: 0;
    list-style: none;
    width: 100%;
    padding: 5px 0;
    text-decoration: none;
    color: #282F33;
    font-weight: 400;
    font-size: .95rem;
    display: block;
}
.multi-level label:hover,
.nav li a:hover {
    background-color: #e7e7e73d;
}
.item ul {
    padding: 0 0 0 14px;
    box-sizing: border-box;
    list-style: none;
}
.item ul ul {
    padding: 0 0 0 28px;
    box-sizing: border-box;
    list-style: none;
}
.item ul ul label {
    line-height: normal;
    margin: 0;
    list-style: none;
    width: 100%;
    padding: 5px 0;
    text-decoration: none;
    color: #282F33;
    font-weight: 400;
    font-size: 0.9rem;
}
.nav li a {
    line-height: normal;
    margin: 0;
    list-style: none;
    width: 100%;
    padding: 5px 0;
    text-decoration: none;
    color: #282F33;
    font-weight: 400;
    font-size: .9rem;
    display: block;
}

@media screen and (max-width: 1024px) {

    .header-t{
        padding: 40px;
    }
    .header-t .brand {
        width: 50%;
    }
    #nav-icon {
        display: block;
        font-size: 40px;
        font-weight: 600;
    }
    .multi-level, .item ul, .nav input[type="checkbox"] {
        display: none;
    }
    #menu:checked ~ .multi-level, .item input:checked ~ ul {
        display: block;
    }
    .wrap-d .menu-d {
        width: 100%;
        height: auto;
        position: unset;
        padding-bottom: 1rem;
    }
    .wrap-d .content-d {
        width: 100%;
        left: 0;
        position: unset;
        flex-direction: column;
    }
    .wrap-d .menu-d span.h-rep {
        display: none;
    }
    .wrap-d .content-d .content-l {
        width: 100%;
        box-sizing: border-box;
        order: 2;
        padding: 30px;
    }
    .wrap-d .content-d .content-r {
        position: unset;
        width: 100%;
        display: block;
        order: 1;
        padding: 30px;
    }
}
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */

.blog {
    width: 100%;
    height: auto;
    background-color: #f8f8f9;
    padding: 40px 10%;
}

.blogAll {
    max-width: 1220px;
    display: block;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

/* ********************************************** */
.blogNew {
    width: 66%;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    margin: 20px 0;
    padding: 30px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.blogNew .blogImage {
    width: 100%;
}

.blogNew .blogImage img {
    width: 100%;
}

.blogNew h3 {
    color: #1b2432;
    letter-spacing: .25px;
    line-height: 1.3;
    font-size: 1.8em;
    margin: 20px 0 10px 0;
    font-weight: 500;
}

.blogNew span {
    color: #b9bcc0;
    font-size: .8em;
    margin-bottom: 15px;
}

.blogNew p {
    color: #676d76;
    overflow: hidden;
    padding: 20px 0 0;
    font-size: 16px;
    margin: 0;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
}

/* ***************************************** */

.blogBox {
    width: 32%;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    margin: 20px 0;
    padding: 30px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.blogBox .blogImage {
    width: 100%;
}

.blogBox .blogImage img {
    width: 100%;
}

.blogBox h3 {
    color: #1b2432;
    letter-spacing: .25px;
    line-height: 1.3;
    font-size: 1.375em;
    margin: 20px 0 10px 0;
    font-weight: 500;
}

.blogBox span {
    color: #b9bcc0;
    font-size: .8em;
    margin-bottom: 15px;
}

.blogBox p {
    color: #676d76;
    overflow: hidden;
    padding: 20px 0 0;
    font-size: 16px;
    margin: 0;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
}


.blogNew:hover, .blogBox:hover {
    /* box-shadow: 0px 0px 7px 0px rgba(72,175,234,0.20); */
    -webkit-box-shadow: 0px 0px 29px -12px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 29px -12px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 29px -12px rgba(0, 0, 0, 1);
}

.blogNew:hover h3, .blogBox:hover h3 {
    color: rgb(35, 93, 218);
}


/* ************************************************************************** */
/* ************************************************************************** */
/*                               LIVRE BLANC                                 */
/* ************************************************************************** */
/* ************************************************************************** */


.livreBlanc {
    width: 100%;
    height: auto;
    /* background-color: #f8f8f9; */
    padding: 0 25% 40px 25%;
    /* float: left; */
    margin: 40px 0 0 0;
}

.livreBlanc .livreBlanc-right {
    width: 50%;
    height: auto;
    float: left;
}

.livreBlanc .livreBlanc-right p.center {
    color: #333;
    letter-spacing: .25px;
    line-height: 1.1.53;
    font-size: 19px;
    margin: 0 0 20px 0;
    font-weight: 600;
    text-align: justify;
}

.livreBlanc .livreBlanc-form {
    width: 100%;
    height: auto;
    float: left;
}

.livreBlanc .livreBlanc-form input {
    display: block;
    width: 100%;
    height: 50px;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 50px;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin: 20px 0 0 0;
}

.erreur {
    border: 1px solid #ff3030;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.livreBlanc .livreBlanc-right p.condition {
    color: #78858a;
    letter-spacing: .25px;
    line-height: 1.1.53;
    font-size: 12px;
    margin: 20px 0 20px 0;
    font-weight: 400;
    text-align: center;
    width: 100%;
    padding: 0 10%;
}

.livreBlanc .livreBlanc-right label {
    color: #ff3030;
    letter-spacing: .25px;
    line-height: 1.1.53;
    font-size: 12px;
    margin: 0;
    font-weight: 400;
    text-align: left;
    width: 100%;
    padding: 0;
}

.livreBlanc .livreBlanc-left {
    width: 50%;
    height: auto;
    float: left;
}

.livreBlanc .livreBlanc-left img {
    width: 80%;
    height: auto;
    display: block;
    margin: auto;
}

.livreBlanc .livreBlanc-right input[type="button"] {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 0;
    text-decoration: none;
    margin: 30px 0 0 0;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    width: 100%;
    font-size: 14px;
    height: 50px;
    line-height: normal;
}

/* ************************************************************************** */
/* ************************************************************************** */
/*                               CALENDRIER                                   */
/* ************************************************************************** */
/* ************************************************************************** */
.calendar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #4b5563;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 42px;
    height: 38px;
  }
  
  .calendar-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
  }
  
  .calendar-btn.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
  }
  
  .calendar-btn i {
    font-size: 16px;
  }
  
  /* Calendrier style Calendly - Inline */
  .calendly-container-inline {
    width: 100%;
    /* max-width: 900px; */
    /* margin: 20px auto 0; */
    /* padding: 0 16px 24px; */
    margin: 20px 0 40px 0;
    padding: 0 ;
  }

  button#backBtn {
    border: 1px solid #e1e1e1;
    padding: 8px 16px !important;
    color: #616161;
    text-decoration: none;
  }
  
  .calendly-wrapper {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  .calendly-container {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  .calendly-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
  }
  
  .header-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .calendly-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
  }
  
  .timezone-selector {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .timezone-selector label {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    white-space: nowrap;
  }
  
  .timezone-select {
    width: 100%;
    min-width: 250px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .timezone-select:hover {
    border-color: #2563eb;
  }
  
  .timezone-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }
  
  .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .close-btn:hover {
    background: #e5e7eb;
    color: #111827;
  }
  
  .calendly-content {
    display: flex;
    flex: 1;
    overflow: hidden;
    /* min-height: 500px; */
  }
  
  .calendar-section {
    flex: 2;
    padding: 24px;
    border-right: 1px solid #e5e7eb;
    overflow-y: auto;
  }
  
  .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .calendar-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-transform: capitalize;
  }
  
  .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .nav-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
  }
  
  .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
  }
  
  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    transition: all 0.2s;
    background: #ffffff;
    border: 1px solid transparent;
  }
  
  .calendar-day.other-month {
    color: #d1d5db;
    cursor: default;
  }
  
  .calendar-day.past {
    color: #d1d5db;
    cursor: not-allowed;
    background: #f9fafb;
  }
  
  .calendar-day.available {
    color: #111827;
  }
  
  /* Styles pour les weekends (non disponibles) */
  .calendar-day:not(.available):not(.past):not(.other-month) {
    color: #d1d5db;
    cursor: not-allowed;
    background: #fef2f2;
    opacity: 0.6;
  }
  
  .calendar-day.available:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
  }
  
  .calendar-day.selected {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    font-weight: 600;
  }
  
  .time-section {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    background: #f9fafb;
  }
  
  .time-section h5 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    text-transform: capitalize;
  }
  
  .timezone-info {
    margin-bottom: 16px;
    padding: 8px 12px;
    background: #eff6ff;
    border-radius: 6px;
    border-left: 3px solid #2563eb;
  }
  
  .timezone-info .timezone-label {
    font-size: 13px;
    color: #1e40af;
  }
  
  .conversion-info {
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 12px;
    background: #f0fdf4;
    border-radius: 8px;
    border: 1px solid #bbf7d0;
  }
  
  .conversion-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  
  .conversion-display:last-child {
    margin-bottom: 0;
  }
  
  .conversion-display .label {
    font-size: 13px;
    color: #166534;
    font-weight: 500;
  }
  
  .conversion-display .value {
    font-size: 14px;
    color: #15803d;
    font-weight: 600;
  }
  
  .no-hours-available {
    padding: 16px;
    text-align: center;
    color: #dc2626;
    background: #fef2f2;
    border-radius: 8px;
    border: 1px solid #fecaca;
    margin-top: 16px;
  }
  
  .no-hours-available p {
    margin: 0;
    font-size: 14px;
  }
  
  .time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  
  .time-slot {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #111827;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
  }
  
  .time-slot:hover {
    border-color: #2563eb;
    background: #eff6ff;
    color: #2563eb;
  }
  
  .time-slot.selected {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
  }
  
  .time-slot.booked {
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #e5e7eb;
    cursor: not-allowed;
    opacity: 0.6;
    position: relative;
  }
  
  .time-slot.booked:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #9ca3af;
  }
  
  .time-slot.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #9ca3af;
    transform: translateY(-50%);
  }
  
  .confirm-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }
  
  .confirm-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  }
  
  .confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
  }
  
  .no-date-selected {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  
  .no-date-selected p {
    color: #6b7280;
    font-size: 15px;
    text-align: center;
  }
  
  .weekend-message {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  
  .weekend-message p {
    color: #dc2626;
    font-size: 15px;
    text-align: center;
    padding: 16px;
    background: #fef2f2;
    border-radius: 8px;
    border: 1px solid #fecaca;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .calendly-content {
      flex-direction: column;
    }
  
    .calendar-section {
      border-right: none;
      border-bottom: 1px solid #e5e7eb;
    }
  
    .time-slots {
      grid-template-columns: repeat(2, 1fr);
    }
  }

/* ************************************************************************** */
/* ************************************************************************** */
/*                               VIDEOTHEQUE                                 */
/* ************************************************************************** */
/* ************************************************************************** */

.videotheque {
    width: 100%;
    height: auto;
    /* background-color: #f8f8f9; */
    padding: 0 10% 40px 10%;
    /* float: left; */
}

.videothequeAll {
    max-width: 1220px;
    display: block;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
}

.videothequeBox {
    width: 30.33%;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    margin: 20px 1.5%;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.videothequeBox .videothequeImage {
    width: 100%;
    margin: 0 0 10px 0;
}

.videothequeBox .videothequeImage img {
    width: 100%;
}

.videothequeBox h3 {
    color: #1b2432;
    letter-spacing: .25px;
    line-height: 1.3;
    font-size: 16px;
    margin: 10px 0 0 0;
    font-weight: 600;
}

.videothequeBox h3.center {
    color: #1b2432;
    letter-spacing: .25px;
    line-height: 1.5;
    font-size: 18px;
    margin: 30px 0 20px 0;
    font-weight: 600;
    text-align: center;
}

.videothequeBox p.center {
    color: #78858a;
    letter-spacing: .25px;
    line-height: 1.1.53;
    font-size: 14px;
    margin: 0 0 20px 0;
    font-weight: 400;
    text-align: center;
}

.videothequeBox span {
    color: #fff;
    font-size: 12px;
    margin: 0;
    padding: 4px 6px;
    border-radius: 4px;
}

/* ************************************************************************** */
/* ************************************************************************** */
/*                                 Podcasts                                   */
/* ************************************************************************** */
/* ************************************************************************** */

.podcast {
    width: 100%;
    height: auto;
    /* background-color: #f8f8f9; */
    padding: 0 10% 80px 10%;
    /* float: left; */
}

.podcast-title {
    max-width: 1220px;
    display: block;
    margin: auto;
}

.podcast-title h2 {
    font-family: 'outfit', sans-serif;
    font-size: 1.8vw;
    font-weight: 600;
    width: 90%;
    color: #282828;
}

.podcasts {
    max-width: 1220px;
    display: block;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
}

.podcastBox {
    width: 30.33%;
    background-color: #fff;
    border-radius: 3px;
    /* box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15); */
    margin: 20px 1.5%;
    /* padding: 20px; */
    font-family: 'outfit', sans-serif;
    cursor: pointer;
}

.podcastBox .podcastImage {
    width: 100%;
    margin: 0 0 16px 0;
}

.podcastBox .podcastImage img {
    width: 100%;
        border-radius: 10px;
}

.podcastBox h3 {
    color: #3a3a3a;
    letter-spacing: 0.5px;
    line-height: normal;
    font-size: 20px;
    margin: 10px 0 0 0;
    font-weight: 600;
    font-family: 'outfit', sans-serif;
}

.podcastBox a ,
.podcastBox a:hover,
.podcastBox a:hover h3  {
    text-decoration: none;
}

.podcastBox h3.center {
    color: #1b2432;
    letter-spacing: .25px;
    line-height: 1.5;
    font-size: 18px;
    margin: 30px 0 20px 0;
    font-weight: 600;
    text-align: center;
}

.podcastBox p.center {
    color: #78858a;
    letter-spacing: .25px;
    line-height: 1.1.53;
    font-size: 14px;
    margin: 0 0 20px 0;
    font-weight: 400;
    text-align: center;
}

.podcastBox span {
    color: #fff;
    font-size: 12px;
    margin: 0;
    padding: 4px 6px;
    border-radius: 4px;
}

.bgc-blue {
    background-color: #0243a3;
}

.bgc-orange {
    background-color: #FFB336;
}

.bgc-violet {
    background-color: DarkViolet;
}

.bgc-green {
    background-color: yellowgreen;
}

.modal-body {}

.modal-header.videoModal {
    margin: 0;
    display: none;
}
.modal-dialog-scrollable .modal-content {
    background: none;
    border: none;
}

#content .modal-dialog-scrollable .modal-content {
    background: white;
}

.modal-body.iframeResponsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.iframeResponsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/* ----------------------------------------
   RESPONSIVE DESIGN
---------------------------------------- */

/* Pour les tablettes (≤ 1024px) */
@media (max-width: 1024px) {
    .podcast {
        padding: 0 5% 60px 5%;
    }
    .podcastBox {
        width: 45%;
        margin: 10px 2.5%;
    }
    .podcast-title h2 {
        font-size: 2.5vw;
    }
}

/* Pour les téléphones (≤ 768px) */
@media (max-width: 768px) {
    .podcast {
        padding: 0 5% 50px 5%;
    }
    .podcastBox {
        width: 100%;
        margin: 0 0 30px 0;
    }
    .podcast-title h2 {
        font-size: 30px;
        width: 100%;
        margin: 0 0 30px 0;
    }
}

/* Pour les petits écrans (≤ 480px) */
@media (max-width: 480px) {
    .podcast {
        padding: 0 20px 40px 20px;
    }
    .podcastBox h3.center {
        font-size: 16px;
    }
    .podcastBox p.center {
        font-size: 13px;
    }
}

/* ************************************************************************** */
/* ************************************************************************** */
/*                               mises a jour                                 */
/* ************************************************************************** */
/* ************************************************************************** */

.miseajourAll {
    max-width: 1220px;
    display: block;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.miseajourBox {
    width: 55.5%;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
    margin: 20px 1.5%;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.miseajourBox .miseajourBoxImage {
    width: 100%;
    margin: 0 0 10px 0;
}

.miseajourBox .miseajourBoxImage img {
    width: 100%;
}

.miseajourBox h3 {
    color: #1b2432;
    letter-spacing: .25px;
    line-height: 1.3;
    font-size: 16px;
    margin: 10px 0 0 0;
    font-weight: 600;
}

.miseajourBox h3.center {
    color: #1b2432;
    letter-spacing: .25px;
    line-height: 1.5;
    font-size: 18px;
    margin: 30px 0 20px 0;
    font-weight: 600;
    text-align: center;
}

.miseajourBox p.center {
    color: #78858a;
    letter-spacing: .25px;
    line-height: 1.1.53;
    font-size: 14px;
    margin: 0 0 20px 0;
    font-weight: 400;
    text-align: center;
}

.miseajourBox span {
    color: #fff;
    font-size: 12px;
    margin: 0;
    padding: 4px 6px;
    border-radius: 4px;
}

.bgc-blue {
    background-color: #0243a3;
}

.bgc-orange {
    background-color: #FFB336;
}

.bgc-violet {
    background-color: DarkViolet;
}

.bgc-green {
    background-color: yellowgreen;
}

/* ************************************************************************** */
/* ************************************************************************** */
/*                                 solution                                   */
/* ************************************************************************** */
/* ************************************************************************** */

.d-header {
    width: 100%;
    padding: 0 20px 80px 20px;
    height: auto;
    background-color: #fafafa;
    float: left;
}

.d-header .partition100 {
    width: 100%;
    height: auto;
    float: left;
    overflow: hidden;
    padding: 60px 80px 0 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.d-header .partition100 .one {
    width: 31.33%;
    height: auto;
    float: left;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    margin: 1%;
    text-align: center;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
}

.d-header .partition100 .one p{
    margin: 0;
}

.d-header .partition100 .one p a {
    text-decoration: none;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.d-header .partition100 .one p a:hover {
    text-decoration: none;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}

.d-header .partition100 .one:hover {
    border: 1px solid #2c6ccc;
    -webkit-box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
    box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
}

/* ************************************************************************** */

.d-header .partition100 .five {
    width: 18%;
    height: auto;
    float: left;
    overflow: hidden;
    padding: 20px;
    background-color: #2561ff;
    border-radius: 6px;
    margin: 1%;
    text-align: center;
    border: none;
    -webkit-box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
    cursor: pointer;
}

.d-header .partition100 .five p {
    margin: 0;
    margin: 0;
    DISPLAY: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.d-header .partition100 .five p img {
    width: 70px;
}

.d-header .partition100 .five p a {
    text-decoration: none;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.d-header .partition100 .five p a:hover {
    text-decoration: none;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
}

.d-header .partition100 .five:hover {
    border: none;
    -webkit-box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
    box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
    background-color: #1c49bf;
}

/* ************************************************************************** */

/* ************************************************************************** */

.s-header {
    width: 100%;
    padding: 80px 20px;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    background: url(assets/s-header.png) #fafafa no-repeat bottom center;
    float: left;
}

.s-header .partition50 {
    width: 50%;
    height: auto;
    float: left;
    overflow: hidden;
}

.s-header .partition50 img {
    width: 100%;
    height: auto;
    float: left;
}

.s-header .partition40 {
    width: 40%;
    height: auto;
    float: left;
    overflow: hidden;
}

.s-header .partition60 img {
    width: 100%;
    height: auto;
    float: left;
}

.s-header .partition60 {
    width: 60%;
    height: auto;
    float: left;
    overflow: hidden;
}

.s-header .partition100 {
    width: 100%;
    height: auto;
    float: left;
    overflow: hidden;
    padding: 60px 80px 0 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.s-header .partition100 .one {
    width: 31.33%;
    height: auto;
    float: left;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    margin: 1%;
    text-align: center;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 30px -20px rgba(0, 0, 0, 1);
}

.s-header .partition100 .one:hover {
    border: 1px solid #2c6ccc;
    -webkit-box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
    box-shadow: 0px 10px 30px -20px rgba(0, 0, 0, 1);
}

.s-header div {
    width: 33.33%;
    height: auto;
    float: left;
    padding: 40px 40px 20px 20px;
}

.s-header ul {
    margin: 0;
    padding: 0 0 0 15px;
}

.s-header ul li {
    width: 100%;
    float: left;
    color: #282828;
    padding: 0 0 20px 0;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
    line-height: 24px;
    text-align: justify;
    list-style-image: url("https://digiparc.com/img/check.png");
}

.s-header h1 {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    float: left;
    color: #282828;
    padding: 0 40px 0 0;
    font-size: 50px;
    margin: 0 0 80px 0;
    font-weight: 800;
    line-height: normal;
    text-align: left;
    letter-spacing: -2px;
    text-transform: uppercase;
    word-break: break-word;
}

.s-header h3 {
    width: 100%;
    float: left;
    color: #282828;
    padding: 0 40px 20px 0;
    font-size: 24px;
    margin: 0;
    font-weight: 700;
    line-height: normal;
    text-align: left;
}

p.niveau4 {
    width: 100%;
    float: left;
    color: #282828;
    padding: 0 40px 0 0;
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    line-height: 32px;
    text-align: justify;
}

.s-content {
    width: 100%;
    padding: 80px 0;
    height: auto;
    float: left;
}

.s-content h2 {
    width: 100%;
    float: left;
    color: #232b2e;
    padding: 0 80px;
    font-size: 36px;
    margin: 0 0 80px 0;
    font-weight: 800;
    line-height: normal;
    text-align: center;
}

.s-content.flexbox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
}

.s-content.flexboxCenter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.s-content.backgroundColor {
    background-color: #fafafa;
}

.boxes {
    width: 23%;
    height: auto;
    border: 1px solid rgba(14, 19, 24, .07);
    border-radius: 4px;
    padding: 30px;
    margin: 0 1% 40px 1%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.boxes:hover {
    background-color: #fcfcfc;
}

.boxes img {
    width: 16%;
    height: auto;
}

.boxes h3 {
    width: 100%;
    float: left;
    color: #232b2e;
    padding: 15px 0;
    font-size: 17px;
    margin: 0;
    font-weight: 800;
    line-height: normal;
    text-align: left;
}

.boxes p {
    width: 100%;
    float: left;
    color: #757590;
    padding: 0;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
}

.s-content .partition {
    width: 50%;
    height: auto;
    float: left;
    overflow: hidden;
}

.s-content .partition-large {
    width: 100%;
    height: auto;
    float: left;
    overflow: hidden;
}

.s-content .partition img,
.s-content .partition-large img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    overflow: hidden;
}

.s-content .partition h2,
.s-content .partition-large h2 {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    padding: 0 80px;
    font-size: 36px;
    margin: 0 0 40px 0;
    font-weight: 800;
    line-height: normal;
    text-align: left;
}

.s-content .partition p,
.s-content .partition-large p {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    padding: 0 80px;
    font-size: 16px;
    margin: 0 0 20px 0;
    font-weight: 400;
    line-height: 32px;
    text-align: justify;
}

.s-content .partition ul {
    width: 100%;
    float: left;
    font-family: 'Montserrat', sans-serif;
    color: #232b2e;
    padding: 0px 80px 0 110px;
    font-size: 17px;
    margin: 0 0 40px 0;
    font-weight: 400;
    line-height: 36px;
    text-align: justify;
}

.s-content .partition ul li .fa {
    margin: 0 10px 0 0;
}

/* ************************************************************************** */

.pricing {
    width: 100%;
    height: auto;
    float: left;
    background: rgb(70, 86, 169);
    background: linear-gradient(180deg, rgba(70, 86, 169, 1) 31%, rgba(0, 125, 216, 1) 100%);
    padding: 50px 0 100px 0;
}

.blocPricing {
    max-width: 1200px;
    display: block;
    margin: auto;
}

.blocPricing h1 {
    font-size: 46px;
    font-family: 'poppins', sans-serif;
    color: #fff;
    padding: 0;
    width: 100%;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;
    /* float: left; */
    display: block;
}

.blocPricing h4 {
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    padding: 0;
    width: 100%;
    font-weight: 600;
    text-align: center;
    margin: 0 0 30px 0;
    float: left;
}

.blocPricing h6 {
    font-size: 19px;
    font-family: 'poppins', sans-serif;
    color: #fff;
    padding: 0;
    width: 100%;
    font-weight: 200;
    text-align: center;
    margin: 0 0 30px 0;
    float: left;
    line-height: 28px;
}

.boxesPricing {
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1%;
    align-items: stretch;
}

.boxPricing span.essai {
    width: 100%;
    display: block;
    text-align: center;
    margin: 20px 0 10px 0;
    font-weight: 500;
}

.boxPricing a.demo {
    color: #fff;
    background-color: #1ec17b;
    border-color: #1ec17b;
    padding: 10px 25px;
    border: 2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
}

.boxPricing.width30 {
    width: 29%;
}

.boxPricing.width72 {
    width: 72%;
}

.boxPricing.width100 {
    width: 80%;
}

.boxPricing.width-all {
    width: 100%;
    margin: 0;
    padding: 0 0 100px 0;
    background-color: #017dd8;
    box-shadow: none;
    position: unset;
    float: left;
    border-radius: unset;
}

.boxPricing .copy {
    max-width: 1120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    padding: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 30%);
    float: unset;
}

.boxPricing .copy div {
    width: 70%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 50px 0;
}

.boxPricing .copy span.periode {
    font-size: 18px;
    font-family: 'poppins', sans-serif;
    color: #000;
    width: 100%;
    padding: 0;
    font-weight: 600;
    text-align: left;
    margin: 0 0 30px 0;
    float: left;
    order: 1;
}

.boxPricing .copy p {
    font-family: 'poppins', sans-serif;
    line-height: normal;
    color: #43575f;
    font-size: 15px;
    text-align: left;
    font-weight: 400;
    float: left;
    margin: 0;
    width: 100%;
    order: 2;
}

.boxPricing .copy a {
    width: 20%;
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    color: #000;
    padding: 0;
    font-weight: 700;
    text-align: right;
    margin: 0;
    float: left;
}


.boxPricing .item {
    width: 25%;
}

.boxPricing {
    margin: 50px 2% 0 2%;
    padding: 25px 15px 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.3);
    position: relative;
}

.boxPricing span.title {
    font-size: 26px;
    line-height: 26px;
    font-family: 'poppins', sans-serif;
    color: #003268;
    padding: 0;
    width: 100%;
    font-weight: 800;
    text-align: left;
    margin: 0;
    float: left;
}

.boxPricing span.title sup {
    vertical-align: baseline;
    font-size: 14px;
    font-weight: 400;
}

.boxPricing div {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    float: left;
    width: 100%;
    margin: 20px 0;
    min-height: 100px;
}

.boxPricing span.devise {
    font-size: 30px;
    /* line-height: 90px; */
    font-family: 'Montserrat', sans-serif;
    color: #4285f4;
    padding: 0;
    width: max-content;
    width: -moz-max-content;
    width: -webkit-max-content;
    font-weight: 200;
    text-align: left;
    margin: 0;
    order: 1;
}

.boxPricing span.prixC1,
.boxPricing span.prixC2,
.boxPricing span.prixC3 {
    font-size: 80px;
    line-height: 80px;
    font-family: 'Montserrat', sans-serif;
    color: #4285f4;
    padding: 0;
    width: max-content;
    width: -moz-max-content;
    width: -webkit-max-content;
    font-weight: 700;
    text-align: left;
    margin: 0;
    order: 1;
}

a.forFree {
    background: #1ec17b;
    border-radius: 4px;
    padding: 14px 18px;
    margin: auto;
    width: max-content;
    width: -moz-max-content;
    width: -webkit-max-content;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    text-align: center;
    display: flex;
    text-decoration: none;
}

.boxPricing a.forFree,
a.forFree:hover {
    background: #1b9e65;
    text-decoration: none;
    color: #fff;
}

.boxPricing a.forFree {
    background: #1ec17b;
    border-radius: 4px;
    padding: 10px 12px;
    margin: 0 0 20px 0;
    width: 100%;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.boxPricing a.forQuote {
    background: #ffc552;
    border-radius: 4px;
    padding: 10px 12px;
    margin: 0 0 20px 0;
    width: 100%;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.boxPricing span.dd {
    background-color: #ffc552;
    border-radius: 4px;
    padding: 8px 12px;
    margin: 20px 10%;
    width: 100%;
    text-align: center;
    order: 3;
    cursor: pointer;
}

.boxPricing span.dd a {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.boxPricing span.dd a:hover {
    font-weight: 600;
    text-decoration: underline;
}

.boxPricing span.prixC4 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    color: #4285f4;
    padding: 0;
    width: max-content;
    width: -moz-max-content;
    width: -webkit-max-content;
    font-weight: 700;
    text-align: center;
    margin: 0;
    float: left;
}

.boxPricing span.gratuit {
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    color: #4285f4;
    padding: 0;
    width: max-content;
    width: -moz-max-content;
    width: -webkit-max-content;
    font-weight: 600;
    text-align: left;
    margin: 0;
    float: left;
    line-height: 98px;
}

.boxPricing span.gratuit2 {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    color: #4285f4;
    padding: 0;
    width: 100%;
    font-weight: 400;
    text-align: left;
    margin: 0;
    float: left;
    top: -25px;
    position: relative;
}

.boxPricing span.periode {
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    color: #262c2d;
    padding: 20px 0 0 0;
    width: 100%;
    font-weight: 400;
    text-align: center;
    margin: 0;
    order: 2;
}

.boxPricing span.title2 {
    font-size: 18px;
    line-height: 18px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 0;
    width: 100%;
    font-weight: 500;
    text-align: left;
    margin: 0;
    float: left;
}

.boxPricing span.title3 {
    font-size: 15px;
    font-family: 'poppins', sans-serif;
    color: #333;
    padding: 0;
    width: 100%;
    font-weight: 700;
    text-align: left;
    margin: 0;
    float: left;
}

.boxPricing ul {
    margin: 0;
    padding: 0;
    margin: 10px 0 10px 20px;
    list-style-type: circle;
    list-style-image: url("https://digiparc.com/img/check.png");
    float: left;
}

.boxPricing ul li {
    font-family: 'poppins', sans-serif;
    line-height: normal;
    color: #43575f;
    font-size: 15px;
    text-align: left;
    font-weight: 400;
    float: left;
    margin: 5px 0;
    width: 100%;
}

.boxPricing .blocLink {
    width: 100%;
    float: left;
    height: auto;
    min-height: auto;
    position: absolute;
    bottom: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 20px;
    display: unset;
    left: 0;
    background-color: #f5f5f5;
    border-radius: 0 0 4px 4px;
}

.boxPricing .blocLink a {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    font-weight: 400;
    text-align: center;
    margin: 0;
    width: 100%;
    text-decoration: none;
    display: block;
    margin: auto;
}

.boxPricing .blocLink a u {
    padding: 0 5px;
    font-weight: 600;
}

.boxPricing strong {
    width: 100%;
    float: left;
}

.boxPricing hr {
    margin-top: 0;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
    float: left;
    width: 100%;
}

.blocPricing .infoPay {
    color: #fff;
    display: block;
    margin: 0 auto;
    width: max-content;
    border-radius: 6px;
    border: 1px solid #fff;
    clear: left;
    padding: 5px 20px;
    font-size: 14px;
}

.blocPricing .infoPay b {
    font-weight: 300;
    margin: 0 10px;
}

.boxPricing .links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding: 8px 10px;
    margin: 0;
}

.boxPricing .links:hover {
    background-color: #f6f8ff;
    cursor: pointer;
}

.boxPricing .links img {
    margin: 0 5px 0 0;
    width: 18px;
}

.boxPricing .links img.popup {
    margin: 0 0 0 5px;
    width: 16px;
}

.boxPricing .links strong {
    width: max-content;
    width: -moz-max-content;
    width: -webkit-max-content;
    float: left;
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
}

.boxPricing a.link-ai {
    width: 100%;
    text-align: center;
    float: left;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #007dd8;
    position: absolute;
    bottom: 20px;
    left: 0;
}

.boxPricingN {
    margin: 50px 0 0 0;
    width: 32%;
    padding: 25px 20px 20px;
    border-radius: 8px;
    min-height: 100px;
}

.boxPricingN strong {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    width: 100%;
    font-weight: 500;
}

.boxPricingN img {
    width: 30px;
}

.boxPricingN .links {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding: 0;
    margin: 0;
}

.modal-body ul {
    list-style-image: url("https://digiparc.com/img/check.png");
}

.pricing-table {
    width: 100%;
    height: auto;
    float: left;
    background: #fff;
    padding: 50px 0 100px 0;
}
.pricing-table-boxes {
    max-width: 1200px;
    display: block;
    margin: auto;
}
.pricing-table-boxes h4 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 0;
    width: 100%;
    font-weight: 700;
    text-align: center;
    margin: 0 0 60px 0;
    float: left;
}

.pricing-table-boxes h6 {
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 0;
    width: 100%;
    font-weight: 400;
    text-align: center;
    margin: 0 0 30px 0;
    float: left;
    line-height: 28px;
}

.pricing-table-boxes table {
    border-collapse: collapse;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    table-layout: fixed;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin: 0 0 40px 0;
}

.pricing-table-boxes thead tr {
    border-bottom: 1px solid #4e595c;
}

.pricing-table-boxes th:first-child {
    padding-left: 1rem;
    width: 40%;
    text-align: left;
    padding: 0.75rem 1rem;
}

.pricing-table-boxes th {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    margin: 0;
}

.pricing-table-boxes th h5 {
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    margin: 0;
    text-align: center;
}

.pricing-table-boxes tbody tr {
    border-bottom: 1px solid #edf1f2;
}

.pricing-table-boxes tbody tr:hover {
    background-color: #f7f8ff;
}


.pricing-table-boxes td:first-child{
    padding-left: 1rem;
    width: 40%;
    text-align: left;
    padding: 0.75rem 1rem;
    color:  #262c2d;
}

.pricing-table-boxes td {
    padding-left: 1rem;
    width: 40%;
    text-align: center;
    padding: 0.75rem 5px;
    margin: 0;
    color: #007eff;
}


@media (min-width: 320px) and (max-width: 799px) {

    .pricing-table-boxes th {
        font-size: 14px;
    }

    .pricing-table-boxes td {
        font-size: 12px;
    }

}


/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */

.infoPaiement {
    /* float: left; */
    width: 50%;
    display: block;
    margin: auto;
    text-align: center;
    /* background-color: #fff;
    border-radius: 8px;
    padding: 20px; */
}

.infoPaiement span.eco {
    font-size: 14px;
    font-family: 'poppins', sans-serif;
    font-weight: 500;
    color: #ffc552;
    margin: 0 0 10px 0;
    display: inline-block;
}

.infoPaiement span.prix {
    font-size: 13px;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    color: #e8e8e8;
    margin: 10px 0 0 0;
    display: inline-block;
}

.infoPaiement div {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.infoPaiement div img {
    width: 20px;
    margin: 0 10px 0 0;
}

.infoPaiement button.PA {
    border-radius: 8px 0 0 8px;
    padding: 10px 12px;
    border: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: #fff;
}

.infoPaiement button.PM {
    border-radius: 0 8px 8px 0;
    padding: 10px 12px;
    border: none;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: #fff;
}

.infoPaiement button.btn-Color-B {
    background-color: #ffc552;
    color: #fff;
    font-weight: 500;
}

.infoPaiement button:focus {
    outline: none;
}

.infoPaiement .infoPaiement-deux {
    display: flex;
    width: 100%;
    justify-content: center;
    color: #fff;
}

.infoPaiement .infoPaiement-deux div {
    margin: 0 10px;
}

.infoPaiement .infoPaiement-deux img {
    width: 20px;
}

/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */

#boxPricing-large {
    width: 100%;
    height: auto;
    float: left;
    background-color: #fff;
    padding: 50px 0;
}

.boxPricing-large {
    margin: 50px 0 0 0;
    width: 100%;
    padding: 40px;
    max-width: 1200px;
    display: block;
    margin: auto;
}

.boxPricing-large span.titre-Table {
    font-size: 26px;
    font-family: 'poppins', sans-serif;
    color: #003268;
    padding: 0;
    width: 100%;
    font-weight: 700;
    text-align: center;
    margin: 0;
    float: left;
    font-family: 'Montserrat', sans-serif;
}

.boxPricing-large table {
    width: 100%;
    margin: 40px 0 0 0;
    float: left;
    font-family: 'Montserrat', sans-serif;
}

.boxPricing-large table thead tr {
    /* background-color: #fbfbfb; */
}

.boxPricing-large table thead tr td:first-child {
    width: 40%;
    text-align: left;
}

.boxPricing-large table thead tr td {
    /* border: 1px solid #D5D5D5; */
    border: none;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 10px;
    text-align: center;
    width: 12%;
}

.boxPricing-large table tbody tr td:first-child {
    width: 40%;
    text-align: left;
}

.boxPricing-large table tbody tr td {
    border: 1px solid #D5D5D5;
    font-size: 15px;
    color: #3A4554;
    word-wrap: break-word;
    padding: 15px 10px;
    width: 12%;
    text-align: center;
    font-weight: 500;
}

.boxPricing-large table tbody tr td img {
    width: 20px;
}

.boxPricing-large table tbody tr td.titreModule {
    border: none;
    font-size: 18px;
    color: #2074ff;
    word-wrap: break-word;
    padding: 15px 0;
    width: 20%;
    text-align: left;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* BILLETTERIE *************************************************** */
.searchable-select {
    position: relative;
    width: 100%;
}

.searchable-select input.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background: white;
    font-size: 16px;
    cursor: text;
}

.searchable-select input.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
    outline: 0;
}

.hidden-select {
    display: none !important;
}

.station-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.station-dropdown.show {
    display: block;
}

.options-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.station-option {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    color: #495057;
}

.station-option:hover {
    background-color: #f8f9fa;
}

.station-option.selected {
    background-color: #007bff;
    color: white;
}

.station-option:last-child {
    border-bottom: none;
}

.no-options {
    padding: 15px 12px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .searchable-select input.form-control {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 10px 12px;
    }

    .station-dropdown {
        max-height: 150px;
    }

    .station-option {
        padding: 12px;
        font-size: 16px;
    }
}

/* Step-by-step reservation styles */
.reservation-step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
    width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}

.reservation-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.back-btn {
    padding: 2px 6px !important;
    font-size: 9px !important;
    border-radius: 2px !important;
    transition: all 0.3s ease;
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    color: #6c757d !important;
    position: absolute !important;
    left: 0 !important;
    top: -5px !important;
    text-decoration: none !important;
    z-index: 10 !important;
    display: inline-block !important;
    line-height: 1.2 !important;
}

.back-btn:hover {
    background-color: #e9ecef !important;
    border-color: #adb5bd !important;
    color: #495057 !important;
    text-decoration: none !important;
}

.step-header h3 {
    margin: 0 !important;
    color: #cd2326 !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 30px !important;
}

/* Mobile responsive for steps */
@media (max-width: 768px) {
    .step-header h3 {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    .step-header .btn {
        font-size: 9px;
        padding: 1px 4px;
    }
}
/* BILLETTERIE *************************************************** */


/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */

.desabonner {
    width: 40%;
    height: auto;
    margin: auto;
    display: block;
    background-color: #fff;
    border-radius: 6px;
    padding: 20px;
    box-sizing: content-box;
}

.desabonner p {
    color: #4B4B60;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 400;
    font-size: .875rem;
    width: 100%;
    text-align: center;
}

.desabonner input {
    width: 73%;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: .25rem;
    height: 40px;
    border: 1px solid #ced4da;
}

.desabonner input[type="button"] {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px 0;
    text-decoration: none;
    margin: 0;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    width: 25%;
    font-size: 13px;
    height: 40px;
}

.desabonner input[type="button"]:hover {
    background-color: #004186;
}

.desabonner .notif-green {
    background-color: #e6faf3;
    border-bottom: 1px solid #99f0d4;
    color: #156352;
    padding: 30px 40px;
}

.desabonner .notif-green h5 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    text-align: left;
    color: #156352;
    padding: 0 0 10px 0;
}

.desabonner .notif-green p {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 400;
    font-size: .875rem;
    width: 100%;
    text-align: left;
    color: #156352;
    padding: 0;
    margin: 0;
}


/* Form *************************************************** */
.choices,
.choices__inner,
.choices__list--dropdown,
.choices__list[role='listbox'],
.choices__input {
    background-color: #ffffff !important;
}

.choices__inner {
    border: 1px solid #ced4da;
    min-height: 38px;
    border-radius: 4px;
    padding: 6px 8px;
}

.choices[data-type*="select-one"] .choices__inner {
    padding-bottom: 6px;
}

.choices__list--dropdown {
    border: 1px solid #ced4da;
    z-index: 2000;
}
.choices__list--dropdown.is-active {
    z-index: 2000;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1868db;
    border-radius: 50%;
    margin: 0 auto 8px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */


@media screen and (max-width: 1440px) {
    .blogNew {
        width: 66%;
        padding: 20px;
    }

    .blog {
        padding: 40px;
    }

    .blogBox {
        width: 32%;
        padding: 20px;
    }
}

@media screen and (max-width: 1240px) {
    .blogNew {
        width: 100%;
        padding: 20px;
    }

    .blog {
        padding: 40px;
    }

    .blogBox {
        width: 49%;
        padding: 20px;
    }

    .boxPricing {
        width: 49%;
        ;
    }
}

@media screen and (max-width: 1040px) {
    .blogNew {
        width: 100%;
        padding: 20px;
    }

    .blog {
        padding: 40px;
    }

    .blogBox {
        width: 49%;
        padding: 20px;
    }

    .s-header .partition100 div {
        width: 100%;
    }
}

@media (min-width: 320px) and (max-width: 669px) {
    .s-header .partition100 {
        padding: 20px;
    }

    .s-header .partition100 div {
        width: 100%;
    }

    .blog {
        padding: 40px 5%;
    }

    .blogNew {
        width: 100%;
        padding: 20px;
    }

    .boxPricing {
        width: 100%;
    }

    /* .blogNew h3 {
        position: unset;
        margin: 0;
        padding: 0;
    }
    .blogNew span {
        position: unset;
    } */
    .blogBox {
        width: 100%;
        padding: 20px;
    }

    /* ---------- */
    /* page fleet */
    /* ---------- */
    .s-header {
        padding: 20px 20px 60px 20px;
    }

    .s-header .partition50 {
        width: 100%;
        padding: 0;
    }

    .s-header h2 {
        padding: 0;
        font-size: 5vw;
    }

    .s-header h1 {
        padding: 0;
        font-size: 30px;
        margin: 0 0 20px 0;
        letter-spacing: normal;
    }

    .s-header h3 {
        padding: 0 0 20px 0;
        font-size: 20px;
        letter-spacing: normal;
    }

    p.niveau4 {
        font-size: 15px;
        padding: 0 0 20px 0;
        letter-spacing: normal;
    }

    .s-header .partition50 img {
        right: unset;
    }


    .s-content {
        padding: 50px 20px;
    }

    .s-content h2 {
        padding: 0;
        font-size: 28px;
    }

    .s-content .partition {
        width: 100%;
    }

    .s-content .partition h2 {
        padding: 0;
        font-size: 28px;
        margin: 40px 0;
    }

    .s-content .partition p {
        padding: 0;
        font-size: 16px;
        line-height: 30px;
    }

    .s-content .partition ul {
        padding: 0;
        font-size: 16px;
        line-height: 30px;
    }

    .boxes {
        width: 100%;
    }

    .order1 {
        order: 1;
    }

    .order2 {
        order: 2;
    }

    .DNNC-CONTENU-V6-content .partenaires {
        width: 100%;
        display: block;
    }

    .DNNC-CONTENU-V6-content .partenaires .box {
        width: 90%;
        margin: 1px 5% 30px 5%;
    }

    .d-header .partition100 {
        padding: 0;
    }

    .d-header .partition100 .one {
        width: 100%;
        margin: 0 0 20px 0;
    }


}



/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */
/* ************************************************************************** */

@media screen and (max-width: 1600px) {}

@media screen and (max-width: 1440px) {

    .livreBlanc {
        width: 100%;
        padding: 0 20% 40px 20%;
    }

}

@media screen and (max-width: 1240px) {

    .livreBlanc {
        width: 100%;
        padding: 0 20% 40px 20%;
    }

}

@media screen and (max-width: 1040px) {

    .livreBlanc {
        width: 100%;
        padding: 0 15% 40px 15%;
    }

}

@media (min-width: 320px) and (max-width: 799px) {

    .pricing-table-boxes th h5 {
        font-size: 12px;
        font-weight: 600;
    }

    .blocPricing h1 {
        font-size: 9vw;
        padding: 40px 0;
        margin: 0;
    }
    .infoPaiement div {
        font-size: 13px;
    }
    .livreBlanc {
        width: 100%;
        padding: 0 5% 40px 5%;
    }

    .livreBlanc .livreBlanc-right {
        width: 100%;
        margin: 10px 0;
    }

    .livreBlanc .livreBlanc-left {
        width: 100%;
        margin: 10px 0 0 0;
    }

    .videothequeBox {
        width: 100%;
    }

    .divContact {
        min-width: auto;
        width: 100%;
    }

    .content-title-w {
        width: 100%;
    }

    .DNNC-CONTENU-V6-FAQ {
        margin: 0;
    }

    .DNNC-CONTENU-V6-FAQ-content .faq {
        column-count: 1;
        -moz-column-count: 1;
        -webkit-column-count: 1;
    }

    /*  */
    .article h3 {
        font-size: 2em;
    }

    .DNNC-CONTENU-V6-content .testimonials {
        column-count: 1;
        -moz-column-count: 1;
        -webkit-column-count: 1;
    }

    /* ************************* */
    .content-contenu-w {
        width: 100%;
    }

    .DNNC-CONTENT-LARGE-content .module50 {
        width: 100%;
    }

    .DNNC-CONTENT-LARGE-WHITE-content {
        width: 100%;
    }

    .DNNC-CONTENT-LARGE-WHITE-content .module50,
    .DNNC-CONTENT-LARGE-WHITE-content .module50_img {
        width: 100%;
    }

    .DNNC-CONTENT-LARGE-COLOR-content {
        width: 100%;
    }

    .DNNC-CONTENT-LARGE-COLOR-content .module50,
    .DNNC-CONTENT-LARGE-COLOR-content .module50_img {
        width: 100%;
    }

    .DNNC-CONTENT-LARGE-BLUE-content {
        width: 100%;
    }

    .DNNC-CONTENT-LARGE-BLUE-content .module50,
    .DNNC-CONTENT-LARGE-BLUE-content .module50_img {
        width: 100%;
    }

    .infoPaiement .infoPaiement-deux {
        flex-direction: row;
    }

    .infoPaiement {
        width: 100%;
    }

    .boxPricing.width30 {
        width: 100%;
    }

    .pricing {
        padding: 0 15px;
    }

    .boxesPricing {
        padding: 40px 0 0 0;
    }

    .boxPricing {
        margin: 20px 0;
    }

    .boxPricing-large {
        padding: 10px;
        width: 100%;
    }

    .boxPricing-large table tbody tr td,
    .boxPricing-large table thead tr td {
        font-size: 11px;
        padding: 10px 5px;
    }

    .navbar-expand-lg .navbar-nav .nav-link.buttonDemo {
        padding: 10px;
        text-align: center;
    }

}