body {
    font-family: 'Poppins', sans-serif;
    background-color: #F6F6F6;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #C1C1C1 #F7F7F7;
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #C1C1C1;
}

*::-webkit-scrollbar-thumb {
    background-color: #949494;
    border-radius: 20px;
}

nav {
    background-color: #1B2D3B;
}

.header-img {
    position: relative;
}

.header-img img {
    position: absolute;
}

ul.slick-dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
}

ul.slick-dots li {
    margin: 0 10px 10px 10px;
}

ul.slick-dots li button {
    background: #6B8DA8;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    color: rgb(25, 45, 59);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    font-size: 0;
}

ul.slick-dots li.slick-active button {
    background: #1B2D3B;
    color: #fff;
}

header {
    height: 460px;
    background-color: #131D25;
}

.link {
    color: #4bbb7d;
}

.link:hover {
    color: #2e9153;
}

.header-bg {
    height: 100%;
    background-image: url('../images/img-bg-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 40px;
}

header .title ul {
    list-style: none;
    padding-left: 0;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

header .title ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

header .title ul li sup {
    font-size: 60%;
}

header .title ul li::before {
    content: '';
    display: inline-block;
    height: 28px;
    width: 28px;
    background-image: url('../images/img-Check%20icon.png');
    margin-top: -5px;
    margin-right: 15px;
}

a.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

.logo-text-small {
    font-size: 20px;
}

.dropdown-menu {
    padding: 19px 14px;
    border-radius: 27px;
    width: 665px;
    /* width: 100%; */
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu .dropdown-top {
    position: absolute;
    top: -20px;
    left: 25%;
}

.drop-left {
    width: 200px;
    display: flex;
    flex-direction: column;
}

.drop-left-title {
    font-size: 14px;
    font-weight: 500;
    color: #607D92;
}

.drop-left a {
    font-size: 14px;
    font-weight: 600;
    color: #1B2D3B !important;
    margin-top: 11px;
}

.drop-right {
    display: flex;
}

.drop-right-item {
    flex: 0 0 33.33%;
    min-width: 122px;
    width: 100%;
    margin-right: 13px;
    height: 200px;
    background-color: #0D3F67;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 13px 0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.drop-right-item:hover,
.drop-right-item:active,
.drop-right-item:focus {
    color: #fff;
    text-decoration: none;
}

.drop-right-item:nth-child(1) {
    background-image: url('../images/img-Image%2012.png');
    background-position: center;
}

.drop-right-item:nth-child(2) {
    background-image: url('../images/img-Image%2013.png');
    background-position: center;
}

.drop-right-item:nth-child(3) {
    background-image: url('../images/img-Image%2014.png');
    background-position: center;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu ul li a.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.menu ul li a.nav-link i {
    margin-left: 5px;
}

.menu .dropdown-toggle::after {
    display: none;
}

.menu .dropdown-menu {
    top: 50px !important;
    left: -75px !important;
}

.menu ul li a.active {
    font-weight: bold;
}

.menu ul li a .active-hr {
    height: 5px;
    width: 61px;
    background-color: #8AF3BE;
    border-radius: 4px;
    margin: 6px 0 0 0;
    transition: opacity 100ms, top 100ms;
    opacity: 0;
    position: relative;
    top: 5px;
}

.menu ul li a:hover .active-hr {
    top: 0px;
    opacity: 0;
}

.menu ul li a.active .active-hr {
    top: 0px;
    opacity: 0;
}

.title {
    padding: 3rem 6rem;
}

.title h1 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}

.title p {
    margin-top: 16px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

@keyframes example {
    from {
        background-color: red;
    }
    to {
        background-color: yellow;
    }
}

.btn-custom {
    width: 241px;
    line-height: 47px;
    background-image: linear-gradient(to right, #63DC9F, #4BBB7D, #2E9153);
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 33px;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-top: 32px;
    will-change: transform, filter;
    transform-style: preserve-3d;
    transition: all 0.3s ease-out;
}

a.btn-custom {
    text-decoration: none;
    color: #fff;
}

.btn-custom:hover {
    filter: brightness(0.9) contrast(1.2);
    transform: scale(0.96);
}

.bg-green {
    background-color: #77D5A5;
    background-image: none;
}

.btn-custom:active {
    background-image: linear-gradient(60deg, #1A5630, #4EB57C, #3A7558);
    text-decoration: none;
    color: #fff;
}

.bg-overlay {
    height: 180px;
    background-image: url('../fonts/img-bg-overlay.svg');
    background-size: 110%;
    background-position: -75px top;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #0D3F67;
    text-align: center;
}

.demarche-item {
    height: 400px;
    background-color: #fff;
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.05));
    border-radius: 33px;
    padding: 10px 24px 21px 53px;
}

.demarche-item-head {
    height: 185px;
    display: flex;
    align-items: center;
    font-family: Impact, sans-serif;
    font-size: 120px;
    font-weight: 400;
    color: #0D3F67;
}

.demarche-1 {
    background-image: url('../fonts/img-icone-1.svg');
    background-size: 100% 185px;
    background-repeat: no-repeat;
    background-position: right center;
}

.demarche-2 {
    background-image: url('../images/img-6367183_preview-removebg-preview.png');
    background-size: 203px 179px;
    background-repeat: no-repeat;
    background-position: right center;
}

.demarche-3 {
    background-image: url('../images/img-transparent-removebg-preview.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
}

.demarche-item-body {
    height: 160px;
    font-size: 16px;
    font-weight: 400;
    color: #0D3F67;
}

.demarche-footer {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400px;
    color: rgba(13, 63, 103, 0.8);
}

.demarche-footer img {
    margin-right: 11px;
}

.actu-titre img {
    margin-right: 21px;
}

.avis-title,
.projet-title,
.actu-titre {
    font-size: 28px;
    font-weight: 600;
    color: #0D3F67;
    display: flex;
    align-items: center;
}

.avis-title,
.projet-title {
    justify-content: center;
    padding-bottom: 40px;
}

.cavis-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.avis-photo img {
    border-radius: 25px;
    z-index: 10;
    position: relative;
}

.avis-list .slick-list {
    padding-top: 50px;
}

.avis-text {
    background-color: #FFFFFF;
    padding: 41px 14px 29px 69px;
    border-radius: 25px;
    margin-left: -50px;
    z-index: 9;
    position: relative;
}

.projet-list {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; */
    /*padding-bottom: 40px;*/
}

.projet-item {
    max-width: 264px;
    height: 261px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.16));
    background-color: #fff;
    margin: 0 35px;
    border-radius: 20px;
    margin-bottom: 35px;
}

.projet-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    height: 190px;
    position: relative;
    z-index: 12;
    padding: 25px;
}

.projet-middle {
    position: relative;
    margin-top: -25px;
    z-index: 15;
}

.projet-bottom {
    padding: 5px 0;
}

.projet-list div:nth-child(1) .projet-top {
    background-image: url('../images/img-Image%20-bg.png');
}

.projet-list div:nth-child(2) .projet-top {
    background-image: url('../images/img-Image%20-bg-2.png');
}

.projet-list div:nth-child(3) .projet-top {
    background-image: url('../images/img-Image%20-bg-3.png');
}

.projet-btn:hover,
.projet-btn:active,
.projet-btn:focus,
.projet-btn {
    display: inline-block;
    max-width: 121px;
    line-height: 44px;
    border-radius: 11px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 0 14px;
    text-decoration: none;
}

.projet-btn.btn-green {
    background-color: #DAFC96;
}

.projet-btn.btn-blue {
    background-color: #96E0FC;
}

.projet-btn.btn-orange {
    background-color: #FCE196;
}

#toast{
    display: none;
    padding-bottom: 2rem;
}

#toast.show{
    display: block;
}

#percentage {
    display: none;
}

.toast-content {
    display: flex;
    background-color: rgb(239, 224, 224);
    align-items: stretch;
    max-width: 500px;
    min-height: 50px;
    margin: 1rem auto;
    box-shadow: 0 5px 15px rgb(0 50 80 / 10%);
    border-radius: 0 8px 8px 0;
    padding-left: 0;
    overflow: hidden;
    animation: slide-in .5s ease-out forwards;
}

.toast-content.toast-success {
    max-width: 100%;
    width: 100%;
    background-color: #E6F5E8;
}

@keyframes toast {
    0% {
        opacity: 1;
    }
    100% {
        transform: translate(0, -10px);
        opacity: 0;
    }
}

@keyframes slide-in {
    0% {
        transform: translate(0, -10px);
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.toast-border-left {
    width: 10px;
    min-height: 50px;
    float: left;
    border-radius: 8px;
    background-image: linear-gradient(rgb(197, 56, 56), rgb(241, 70, 70));
}

.toast-content.toast-success .toast-border-left {
    background-image: linear-gradient(#5FA476, #38C279);
}

.toast-icon {
    padding: 10px 25px;
    display: flex;
    align-items: center;
    color: rgb(241, 70, 70);
}

.toast-icon.toast-icon-text {
    color: #38C279;
    font-size: 38px;
    font-weight: 600;
}

.toast-text {
    padding: 10px 0;
    font-size: 14px;
}

.toast-title {
    color: rgb(241, 70, 70);
    font-weight: 600;
    font-size: 15px;
}

.toast-content.toast-success .toast-title {
    color: #38C279;
}

.actu-item {
    background-color: #fff;
    border-radius: 33px;
    filter: drop-shadow(0 3 15px rgba(0, 0, 0, 0.05));
    padding: 30px;
    margin-bottom: 2rem;
    display: flex;
}

.actu-item img {
    margin-right: 2rem;
}

.actu-item-text {
    padding-top: 1.5rem;
}

.actu-item-title {
    font-size: 18px;
    font-weight: 500;
    color: #0D3F67;
    text-transform: uppercase;
}

.actu-item-resumer {
    font-size: 16px;
    font-weight: 400;
    color: #0D3F67;
}

.actu-item-link {
    font-size: 16px;
    font-weight: 600;
    color: #0D3F67;
    display: block;
    margin-bottom: 16px;
}

.actu-item-post {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    color: rgba(27, 45, 59, 0.31);
}

.actu-item-post .author {
    margin-right: 77px;
}

.text-medium {
    font-weight: 500;
}

.legal-item {
    padding: 28px;
    background-color: #fff;
    border-radius: 33px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
}

.end-quotes {
    position: absolute;
    top: -35px;
    right: 35px;
}

.avis-rating i {
    color: #F3AC12;
}

.avis-content {
    font-size: 16px;
    font-weight: 400;
    color: #325688;
    opacity: 69%;
}

.avis-item {
    padding: 28px;
    background-color: #fff;
    border-radius: 33px;
}

.avis-titre {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #0D3F67;
}

.avis-etoile {
    text-align: center;
    display: flex;
    justify-content: center;
}

.avis-text .avis-orange {
    color: #F3AC12;
}

.avis-author {
    font-size: 16px;
    font-weight: 600;
    color: #0D3F67;
    max-width: 800px;
    margin: 0 auto;
}

.avis-date {
    font-size: 16px;
    font-weight: 400;
    color: #0D3F67;
    max-width: 800px;
    margin: 11px auto;
}

.avis-date img {
    margin-left: 21px;
}

#pre-footer {
    background-color: #1B2D3B;
    padding: 0 0 20px 0;
    margin-top: 2rem;
}

.prefooter-text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.prefooter-bg-overlay {
    margin-top: -6px;
    margin-bottom: 1rem;
    height: 120px;
    background-image: url('../fonts/img-prefooter-bg.svg');
    background-size: 120%;
    background-position: -120px -50px;
    background-repeat: no-repeat;
}

#pre-footer .btn-custom {
    margin-top: 0;
}

footer {
    background-color: #131D25;
    padding: 6px 0 16px 0;
}

.footer-item a,
.footer-item {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.footer-item:first-child {
    text-align: center;
}

.footer-item:last-child {
    text-align: right;
    padding-right: 5rem;
}

.actu-item-image {
    flex: 0 0 30%;
}

.slick-next.slick-arrow,
.slick-prev.slick-arrow {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
    border: none;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.13));
    background-color: #fff;
}

.slick-prev.slick-arrow {
    position: absolute;
    top: 150px;
    z-index: 1;
    left: 5px;
}

.slick-next.slick-arrow {
    position: absolute;
    top: 150px;
    z-index: 1;
    right: 5px;
}

.avis-content .slick-next.slick-arrow,
.avis-content .slick-prev.slick-arrow {
    filter: none !important;
    border: 1px solid #F6F6F6;
}

.faq-title {
    display: flex;
    align-items: center;
}

.faq-title img {
    margin-right: 10px;
}

.faq-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0D3F67;
    margin-bottom: 0;
}

.faq-title p {
    font-size: 16px;
    font-weight: 400;
    color: #0D3F67;
    margin-bottom: 0;
}

#faq-items {
    margin-top: 20px;
}

#faq-items .card {
    border: 1px solid #ABABAB;
}

#faq-items.accordion>.card:not(:last-of-type) {
    border-bottom: 0;
}

#faq-items .card-header {
    padding: 0;
    background-color: #EFF1F2;
    border-bottom: 1px solid #ABABAB;
    font-size: 14px;
    font-weight: 400;
}

#faq-items .card-header button {
    color: rgba(13, 63, 103, 0.72);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#faq-items .card-header button:focus,
#faq-items .card-header button:hover,
#faq-items .card-header button:active {
    text-decoration: none;
    box-shadow: none;
}

#faq-items .card-body {
    font-size: 14px;
    font-weight: 400;
    color: #0D3F67;
}

#faq-items .card-body .semibold {
    font-weight: 600;
}

.card-contact {
    background-color: #fff;
    padding: 53px 50px 33px 50px;
    border-radius: 33px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
}

.card-contact form {
    max-width: 569px;
}

.contact-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #0D3F67;
}

.contact-title small {
    font-size: 18px;
    font-weight: 500;
    color: #0D3F67;
}

.contact-hr hr {
    max-width: 102px;
    height: 12px;
    border-radius: 9px;
    border: none;
    background-image: linear-gradient(60deg, #417B51, #8AF3BE);
}

.contact-info.text-left {
    text-align: left;
}

.contact-info {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #0D3F67;
}

.contact-info small {
    font-size: 15px;
    font-weight: 400;
}

.card-step-form label,
.card-contact label {
    font-size: 16px;
    font-weight: 400;
    color: #0D3F67;
}

.card-contact label .text-required {
    color: #FF0000;
}

.card-step-form .input-group,
.card-contact .input-group {
    border: 1px solid #ACACAC;
    border-radius: 7px;
    padding: 10px 13px;
    background-color: #FCFCFC;
}

.card-step-form .input-group.ok,
.card-contact .input-group.ok {
    border-color: #6BF16F;
    border-width: 2px;
}

.card-step-form .input-group input,
.card-contact .input-group input {
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #1B2D3B;
    padding: 0;
    background-color: #FCFCFC;
}

.card-step-form textarea,
.card-contact textarea {
    font-size: 14px;
    font-weight: 500;
    color: #1B2D3B;
    background-color: #FCFCFC;
}

.btn-custom.form-submit {
    border-radius: 24px;
    background-color: #84EAB5 !important;
    background-image: none;
    border: none;
    max-width: 163px;
    line-height: 48px;
    margin-top: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-custom.form-submit:active {
    background-color: #72C99C !important;
}

.btn-custom.form-submit.btn-back:active {
    background-color: #B8984E !important;
}

.card-step-form textarea::placeholder,
.card-step-form .input-group input::placeholder,
.card-contact textarea::placeholder,
.card-contact .input-group input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.24);
}

.card-step-form textarea:focus,
.card-step-form .input-group input:focus,
.card-contact textarea:focus,
.card-contact .input-group input:focus {
    box-shadow: none;
}

.card-step-form .input-group .input-group-text,
.card-contact .input-group .input-group-text {
    border: none;
    background-color: transparent;
    padding: 0 0 0 5px;
    display: none;
}

.card-step-form .input-group .input-group-text i,
.card-contact .input-group .input-group-text i {
    font-size: 1.5rem;
}

.card-step-form .input-group.ok .input-group-text i,
.card-contact .input-group.ok .input-group-text i {
    color: #6BF16F;
}

.textarea-error,
.card-step-form .input-group.error,
.card-contact .input-group.error {
    border-color: #FF0000 !important;
    border-width: 2px;
}

.card-step-form .input-group.error .input-group-text i,
.card-contact .input-group.error .input-group-text i {
    color: #FF0000;
}

.step-card {
    background-color: #fff;
    padding: 20px 15px 25px 25px;
    border-radius: 33px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
}

.step-item-container {
    padding-left: 0.5rem;
}

.step-number {
    font-size: 20px;
    font-weight: 600;
    color: #0D3F67;
}

.step-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 56px;
    border-left: 2px solid #1B2D3B;
    padding-left: 1rem;
}

.step-item.checked {
    border-left-color: #6BF06E;
}

.step-item:last-child {
    border-left-color: transparent;
    height: auto;
}

.step-check {
    border: 2px solid #1B2D3B;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    left: -13px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-check i {
    display: none;
}

.step-item.checked .step-check {
    border-color: #6BF06E;
    background-color: #6BF06E;
}

.step-item.checked .step-check i {
    color: #fff;
    font-size: 14px;
    display: inline-block;
}

.step-text {
    padding-top: 0.3rem;
    font-size: 16px;
    font-weight: 400;
    color: #0D3F67;
    line-height: 1;
}

.step-text-sm {
    display: none;
}

.devis-card {
    background-color: #fff;
    padding: 22px 19px;
    border-radius: 33px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
}

.devis-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #0D3F67;
    padding-bottom: 16px;
}

.check-list ul,
.devis-card ul {
    list-style: none;
    font-size: 16px;
    font-weight: 400;
    color: #1B2D3B;
    padding-left: 0;
    margin-bottom: 0;
}

.check-list ul li,
.devis-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.check-list ul li:last-child,
.devis-card ul li:last-child {
    margin-bottom: 0;
}

.check-list ul li::before,
.devis-card ul li::before {
    content: '';
    display: inline-block;
    height: 28px;
    width: 28px;
    background-image: url('../images/img-Check%20icon.png');
    margin-top: -4px;
    margin-right: 15px;
}

.card-step-form {
    background-color: #fff;
    border-radius: 33px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
    padding: 66px 1rem 47px 1rem;
    display: none;
}

.card-step-form.active {
    display: block;
}

.card-step-form-item {
    max-width: 500px;
    margin: 0 auto;
}

.card-step-form-item.max-width {
    max-width: 100%;
}

.card-check-form-step {
    border: 3px solid #1B2D3B;
    background-color: #FBFBFB;
    border-radius: 16px;
    height: 241px;
    max-width: 191px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px 0 rgb(0 50 80 / 10%);
}

.card-check-form-step p {
    font-size: 16px;
    font-weight: 600;
    color: #0D3F67;
    text-align: center;
    margin-bottom: 0;
}

.card-check-form-step.selected,
.card-check-form-step:hover {
    border-color: #6BF16F;
    transition: border-color .10s, border .2s;
}

.card-check-checkbox {
    background-color: #fff;
    width: 24px;
    height: 24px;
    border: 2px solid #1B2D3B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
}

.card-check-form-step input[type=checkbox],
.card-check-form-step input[type=radio] {
    display: none;
}

.card-check-checkbox i {
    font-size: 13px;
    display: none;
}

.card-check-form-step input[type=checkbox]:checked+.card-check-checkbox,
.card-check-form-step input[type=radio]:checked+.card-check-checkbox {
    background-color: #6BF16F;
    border-color: #6BF16F;
    color: #fff;
}

.card-check-form-step input[type=checkbox]:checked+.card-check-checkbox i,
.card-check-form-step input[type=radio]:checked+.card-check-checkbox i {
    display: inline;
}

.btn-custom.form-submit.btn-back {
    background-color: #EACB84 !important;
    margin-right: 39px;
}

.energie-2 {
    display: none;
}

.check-icon {
    display: none;
}

.code-postal-auto {
    margin-top: -17px;
    border: 1px solid #ACACAC;
    background-color: #FCFCFC;
    border-radius: 7px;
    display: none;
    position: absolute;
    z-index: 999;
    width: 100%;
}

.code-postal-auto .nav-link {
    font-size: 0.8rem;
    color: #273E51;
}

.code-postal-auto:focus {
    box-shadow: none;
}

.card-check-form-step.check-collumn-md {
    height: 62px;
    max-width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 53px;
    text-align: left;
    margin-bottom: 0.5rem;
}

.card-check-form-step.check-collumn-md p {
    margin: 0;
}

.card-check-form-step.check-collumn-md .card-check-checkbox {
    top: unset;
    right: unset;
    left: 12px;
}

.final-text {
    font-size: 16px;
    font-weight: 400;
    color: #1B2D3B;
}

#mobile-menu {
    display: none;
}

#mobile-menu.open{
    display: flex;
}

.save-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #1B2D3B;
}

.save-item img {
    margin-right: 1rem;
}

.benefice-card {
    background-color: #fff;
    border-radius: 33px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
    padding: 10px 55px 30px 55px;
    margin-top: 30px;
}

.benefice-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefice-title h3 {
    font-size: 28px;
    font-weight: 600;
    color: #0D3F67;
    margin: 0;
}

.benefice-title hr {
    height: 12px;
    width: 102px;
    background-image: linear-gradient(45deg, #65AF79, #8AF3BE);
    margin-top: 15px;
    border-radius: 9px;
    border: none;
}

.benefice-text {
    padding-left: 50px;
}

.benefice-text p {
    font-size: 16px;
    font-weight: 500;
    color: #0D3F67;
}

.benefice-text .semibold {
    font-weight: 600;
}

.benefice-text .highlight {
    color: #fff;
    display: inline-block;
    background-color: #2A7C49;
    border-radius: 6px;
    padding: 0.1rem 0.2rem;
    line-height: 1;
}

.video-card {
    margin-top: 38px;
    background-color: #fff;
    border-radius: 33px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
    padding: 27px 35px 45px 45px;
}

.card-certification {
    background-color: #fff;
    border-radius: 33px;
    max-width: 322px;
    width: 100%;
    height: 131px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#certification {
    margin-bottom: 45px;
}

.infobox-content {
    background-color: #fff;
    border-radius: 33px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
    padding: 33px 150px;
}

#info-box {
    margin-bottom: 45px;
}

.infobox-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.infobox-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1B2D3B;
}

.partner-content {
    padding: 0 80px;
}

.partner-item {
    max-width: 322px;
    width: 100%;
    height: 131px;
    background-color: #fff;
    border-radius: 33px;
    filter: drop-shadow(0 3px 15px rgba(0, 0, 0, 0.05));
    margin: 25px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 40px;
    cursor: pointer;
}

.partner-item:hover {
    filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.05));
}

.partner-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.video-card iframe {
    border-radius: 26px;
    background-image: linear-gradient(45deg, #43B474, #8AF3BE);
}

.menu-body ul.sousmenu {
    display: none;
}


/* .has_sousmenu:hover+ul.sousmenu,
.has_sousmenu:focus+ul.sousmenu,
.has_sousmenu:active+ul.sousmenu {
    display: block !important;
} */

.avis-rating i.star-gray {
    color: #273E51 !important;
    opacity: 50%;
}

.btn-project {
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .btn-project {
        transition: none;
    }
}

.btn-project:hover {
    color: #444;
}

.btn-check:focus+.btn-project,
.btn-project:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(49 127 150 / 25%);
}

.btn-project:disabled,
.btn-project.disabled,
fieldset:disabled .btn-project {
    pointer-events: none;
    opacity: 0.65;
}

.projet-btn-disable {
    color: #fff;
    background-color: #96E0FC;
    border-color: #96e0fc;
    /* border-radius: 5px; */
}

.projet-btn-disable:hover {
    color: #fff;
    background-color: #79bfd9;
    border-color: #79bfd9;
}

.btn-green.projet-btn-disable:hover {
    color: #fff;
    background-color: #DAFC55;
    border-color: #DAFC55;
}
.btn-orange.projet-btn-disable:hover {
    color: #fff;
    background-color: #FCE155;
    border-color: #FCE155;
}

.btn-check:focus+.projet-btn-disable,
.projet-btn-disable:focus {
    color: #fff;
    background-color: #5ba9c5;
    border-color: #5ba9c5;
    box-shadow: 0 0 0 0.25rem rgb(80 146 166 / 50%);
}

.btn-check:checked+.projet-btn-disable,
.btn-check:active+.projet-btn-disable,
.projet-btn-disable:active,
.projet-btn-disable.active,
.show>.projet-btn-disable.dropdown-toggle {
    color: #fff;
    background-color: #5ba9c5;
    border-color: #5ba9c5;
}

.btn-check:checked+.projet-btn-disable:focus,
.btn-check:active+.projet-btn-disable:focus,
.projet-btn-disable:active:focus,
.projet-btn-disable.active:focus,
.show>.projet-btn-disable.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgb(80 154 166 / 50%);
}

.projet-btn-disable:disabled,
.projet-btn-disable.disabled {
    color: #fff;
    background-color: #5ba9c5;
    border-color: #5ba9c5;
}

.mini-step {
    display: none;
}

.mini-step.active {
    display: block;
}


/* RESPONSIVES */

@media (min-width: 1200px) {
    .container {
        min-width: 1200px;
    }
}

@media screen and (max-width: 1024px) {
    .menu .dropdown-menu {
        left: -150px !important;
    }
    .dropdown-menu .dropdown-top {
        left: 35%;
    }
    header {
        height: 400px;
    }
    .bg-overlay {
        background-position: -50px top;
    }
    .logo img {
        /*width: 60px;*/
    }
    .menu ul li a.nav-link {
        padding: 0;
    }
    .demarche-item {
        padding: 10px 24px 21px 24px
    }
    .prefooter-bg-overlay {
        background-position-y: -35px;
    }
    .header-img img {
        max-width: 150% !important;
        left: -50%;
    }
}

@media screen and (max-width: 768px) {
    .dropdown-menu .dropdown-top {
        left: 35%;
    }
    .menu .dropdown-menu {
        left: -75px !important;
    }
    .header-img img {
        max-width: 125% !important;
        left: -25%;
    }
    .card-check-form-step.check-collumn-md {
        padding-left: 40px !important;
    }
    .menu {
        margin-top: 1rem;
        justify-content: center;
    }
    .title {
        padding: 2rem 0rem;
    }
    header {
        height: 340px;
    }
    .header-bg {
        /*background-position-y: -35px;*/
    }
    .demarche-item {
        margin-bottom: 2rem;
    }
    .actu-item-image {
        flex: 0 0 30%;
    }
    .actu-item-text {
        padding-top: 0;
    }
    .prefooter-bg-overlay {
        background-position: -70px -25px;
    }
    .partner-content {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .menu .nav {
        display: none;
    }
    #mobile-menu {
        position: fixed;
        background-color: rgba(27, 45, 59, 0.69);
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 9999;
        justify-content: flex-end;
    }
    .menu-mobile-content {
        background-color: #15232E;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .menu-head {
        background-color: #1B2D3B;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .menu-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(100% - 100px);
    }
    .menu-body ul:not(.sousmenu) {
        display: block !important;
        padding: 0;
        list-style: none;
    }
    .menu-body ul.sousmenu {
        display: none;
        padding: 0;
        list-style: none;
    }
    .menu-body ul li>a {
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
        display: flex !important;
        flex-direction: row;
        padding: 20px 20px 20px 0;
    }
    .menu-body ul li a:hover {
        text-decoration: none;
    }
    .menu-body ul li a span {
        flex: 0 0 98%;
        text-align: center;
    }
    .menu-body ul li ul li a {
        font-size: 16px;
        font-weight: 400;
        color: #FFFFFF;
        display: flex !important;
        flex-direction: row;
        padding: 20px;
        background-color: #0E1921;
    }
    .menu-body ul li ul li a span {
        flex: 0 0 100%;
    }
    .menu-foot {
        background-color: #273E51;
        padding: 35px 25px;
        text-align: right;
    }
    .menu-foot p {
        font-size: 30px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0;
    }
    .menu-foot p.phone {
        margin-bottom: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .menu-foot p.phone a {
        margin-left: 5px;
        font-size: 28px;
        font-weight: 500;
        color: #87E6FF;
    }
    .menu-foot p.text-griser {
        font-size: 12px;
        font-weight: 400;
        color: #B8B8B8;
        margin-bottom: 0;
        opacity: 0.73;
    }
}

@media screen and (max-width: 425px) {
    
    .logo img {
        width: 160px;
    }
    .header-img img {
        display: none;
    }
    #certification {
        margin-top: 25px;
    }
    .benefice-title {
        justify-content: center;
    }
    .benefice-title h3 {
        font-size: 16px;
    }
    .benefice-text {
        padding: 20px;
    }
    .benefice-text p {
        font-size: 12.5px;
    }
    .benefice-card {
        padding: 10px;
    }
    .partner-item {
        margin: 25px auto;
    }
    .partner-list .slick-next.slick-arrow {
        top: 65px;
        right: 30px;
    }
    .partner-list .slick-prev.slick-arrow {
        top: 65px;
        left: 30px;
    }
    .video-card {
        padding: 25px;
    }
    .infobox-content {
        padding: 35px 25px;
    }
    .infobox-item {
        margin: 10px 0;
        justify-content: flex-start;
    }
    .certification-list .slick-prev.slick-arrow {
        top: 45px;
        left: 30px;
    }
    .certification-list .slick-next.slick-arrow {
        top: 45px;
        right: 30px;
    }
    .semibold-sm {
        font-size: 14px;
        font-weight: 600;
    }
    .card-check-form-step.check-collumn-md {
        height: 43px !important;
        padding-left: 40px !important;
    }
    .card-check-form-step.check-collumn {
        height: 43px;
        max-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 53px;
    }
    .card-check-form-step.check-collumn p {
        margin: 0;
        line-height: 1;
    }
    .card-check-form-step.check-collumn .check-img {
        display: none;
    }
    .card-check-form-step.check-collumn .check-icon {
        display: block;
        margin-right: 10px;
    }
    .card-check-form-step.check-collumn .card-check-checkbox {
        top: unset;
        right: unset;
        left: 12px;
    }
    .card-check-form-step {
        height: 200px;
        padding: 0.2rem;
        text-align: center;
    }
    .contact-info {
        font-size: 14px;
    }
    .contact-info small {
        font-size: 12px;
    }
    .step-item-container {
        display: flex;
        padding-left: 0;
    }
    .step-item {
        border-bottom: 2px solid #1B2D3B;
        height: 24px;
        flex: 0 0 16%;
        border-left: none;
    }
    .step-item:last-child {
        border: none;
        flex: 0 0 10px;
    }
    .step-item.checked {
        border-bottom-color: #6BF06E;
    }
    .step-number {
        font-size: 16px;
        font-weight: 600;
    }
    .step-text-sm {
        font-weight: 500;
        display: inline;
    }
    .step-check {
        top: 13px;
    }
    .menu {
        margin-top: 0;
    }
    .menu ul {
        display: none;
    }
    .title {
        padding: 2rem;
    }
    header {
        height: 280px;
    }
    .header-bg {
        /*background-position-y: -75px;*/
        /*background-size: 175%;*/
    }
    .bg-overlay {
        background-position: -25px top;
        background-repeat: no-repeat;
    }
    .demarche-item {
        padding-left: 40px;
    }
    .actu-item {
        padding: 15px 7px;
    }
    .footer-item:first-child {
        text-align: left;
    }
    .footer-item:last-child {
        padding-right: 15px;
    }
    .prefooter-bg-overlay {
        background-position: -45px -10px;
        height: 25px;
    }
    .logo-text {
        font-size: 20px;
    }
    #header-step .bg-overlay {
        height: 50px;
    }
    #header-step {
        height: 370px;
    }
    #step {
        margin-top: -2rem;
        padding-top: 1rem;
        background-color: #F6F6F6;
    }
    #header-step .title {
        padding: 1.5rem 1rem;
    }
    .title h1,
    .title p {
        font-size: 14px;
        font-weight: 400;
    }
    .text-green {
        font-weight: 600;
        color: rgba(138, 243, 190, 0.9);
    }
    .logo-text-small {
        font-size: 16px;
    }
    .btn-custom {
        font-size: 14px;
        line-height: 34px;
        width: 180px;
    }
    .demarche-item-body {
        font-size: 13px;
        height: 100px;
    }
    .demarche-item {
        height: 340px;
    }
    .actu-titre {
        font-size: 18px;
    }
    .actu-item-link,
    .actu-item-resumer,
    .actu-item-title {
        font-size: 12px;
        margin-bottom: 0;
    }
    .actu-item:last-child {
        margin-bottom: 0;
    }
    .avis-item {
        padding: 10px 15px;
    }
    .avis-titre {
        font-size: 16px;
    }
    .avis-text {
        font-size: 12.5px;
        /* margin: 0.5rem 0; */
    }
    .avis-date,
    .avis-author {
        font-size: 12px;
    }
    .footer-item a,
    .footer-item {
        font-size: 12px;
    }
    footer {
        padding: 6px 0;
    }
    .card-contact {
        background-color: transparent;
        padding: 0 25px;
    }
}

@media screen and (max-width: 420px) {
    #header-step {
        height: 370px;
    }
}

@media screen and (max-width: 375px) {
    /* header{

        height: 300px;

    } */
    #header-step {
        height: 400px;
    }
    .btn-custom.form-submit.btn-back {
        margin-right: 20px;
    }
}

@media screen and (max-width: 320px) {
    header {
        height: 280px;
    }
    #header-step {
        height: 415px;
    }
    .card-check-form-step.check-collumn-md {
        height: 63px !important;
    }
    header .title ul li::before {
        width: 38px;
        margin-right: 10px;
    }
}