/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Jost:wght@400;500;600&family=Poppins:wght@400;500;600&display=swap');

body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
    height: 100%;
    margin: 0;
}

a {
    color: #006eca;
    text-decoration: none;
}

a:hover {
    color: #006eca;
    text-decoration: none;
}

.form-control {
    border-color: #006eca;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #006eca;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #006eca;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #006eca;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 25px 0;
    background: #fff;

}

#header.header-scrolled,
#header.header-inner-pages {
    background: #006eca;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar ul li:not(:last-child)>a,
.navbar ul li:not(:last-child)>a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 10px;
    font-size: 15px;
    font-weight: 600;
    color: #006eca;
    white-space: nowrap;
    transition: 0.3s;
}

.nav-phone {
    font-weight: bold;
    font-size: 15px;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 10px 15px;
    margin-left: 30px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #ea580c;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    background: #489f3e;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #006eca;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #006eca;
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #006eca;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #006eca;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    text-align: center;
    justify-content: center;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #006eca;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

#hero1 {
    background-color: #4a7191;
    /*    background-image: url(/webroot/front/imgs/compteur.jpg);*/
}

#hero2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/webroot/front/imgs/compteur-provisoire.jpg);
}

#hero3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/webroot/front/imgs/borne-de-recharge.jpg);
}

/*#hero_contact {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
}
*/
.hero .small-title {
    background-color: #006eca;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px;
}

.hero .under-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border: solid 2px rgba(255, 255, 255, 0.2);

}

.hero .badge {
    display: inline-block;
    height: 14px;
    background-color: #35c535;
    margin-right: 10px;
}



.etapes {
    padding: 6em;
}

.etapes .green-txt {
    color: #4fb053;
    font-weight: 600;
}

.etapes .etapes-txt-first {
    line-height: 1.625;
    font-size: 1.125rem;
}

.etapes .etapes-txt-second {
    line-height: 1.625;
    font-size: 1rem;
    color: #4b5563;
}

.etapes .info-etapes {

    font-size: .875rem;
    line-height: 1.25rem;
}

.etapes .fa-solid {
    color: #4fb053;
}

.etapes h3 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    color: #111827;
}



.hero i {
    /*    background-color: rgba(59, 130, 246, 0.2);*/
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.hero .fa-house {
    background-color: #dbeafe;
    color: #2563eb;
}

.hero .fa-building {
    color: #ea580c;
    background-color: #ffedd5;
}

.hero .fa-helmet-safety {
    color: #16a34a;
    background-color: #dcfce7;
}

.hero .fa-compass-drafting {
    color: #ca8a04;
    background-color: #fef9c3;
}

.hero .card {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: solid 2px rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;


}

.hero .card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
}

.hero h5 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-get-started {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border: unset;
    border-radius: 10px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #ea580c;
}

.hero .btn-get-started:hover {
    background: #fff;
    color: #006eca;
}

#about .btn-get-started:hover {
    background: #fff;
    color: #006eca;
    border: 1px solid #006eca;
}

.hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

.hero .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

.hero .btn-watch-video:hover i {
    color: #006eca;
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    .etapes {
        padding: 3em 0;
    }

    .hero .under-title {
        border: unset;
        background: unset;
        text-align: center;
        padding: unset;
    }

    /*    .hero {
        height: 100vh;
        text-align: center;
    }

    .hero .animated {
        animation: none;
    }

    .hero .hero-img {
        display: none;
    }

    .hero .hero-img img {
        width: 50%;
    }
*/
    .stepper-content {
        justify-content: center;
    }

    .sk-step {
        padding: 8px 0px 8px 12px !important;
    }

    #previousStep {
        order: 2;
    }

    .stepper-content {
        display: none;
    }

    .btn-outl {
        margin-bottom: 10px;
    }
}



@media (max-width: 575px) {

    /*    .hero .hero-img img {
        width: 80%;
    }
*/
    .btn-get-started {
        font-size: 14px;
        padding: 10px 15px 10px 15px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 40px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #006eca;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #006eca;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 12px 0;
    text-align: center;
}

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.clients img:hover {
    filter: none;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li+li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #006eca;
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    transition: 0.3s;
    line-height: 1;
    color: #006eca;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #006eca;
}

.about .content .btn-learn-more:hover {
    background: #006eca;
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
    /*    padding: 60px 100px 0 100px;*/
}

.why-us .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: #006eca;
}

.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.why-us .content p {
    font-size: 15px;
    color: #848484;
}

.why-us .content i {
    color: #34968b;
}


.why-us .guide .card-group .card {
    text-align: center;
    padding: 25px;
}

.why-us .racco-type .card-group .card {
    padding: 20px;
}

.why-us .racco-type .card-group .card a {
    color: #000;
}

.why-us .racco-type .card-group .card:hover {
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    z-index: 1;
}

.why-us .info-card {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px;
    padding: 14px;
}

.why-us .info-card p {
    font-size: 11px;
    font-weight: 500;
    margin: unset;
}

.why-us .info-card a {
    text-decoration-color: #9ca3af;
    text-decoration-line: underline;
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25rem;
    color: rgb(31 41 55);
}

.why-us .racco-type .card-group .card {
    border: none !important;
    box-shadow: none;
}

.why-us .racco-type .card+.card {
    border-left: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.why-us .card h5 {
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25rem;
}

.why-us .card .card-sub-txt {
    font-size: .75rem;
    line-height: 1rem;
}

.why-us .card .card-header {
    background-color: #f3f4f6;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
}

.why-us .card small {
    font-size: .75rem;
    line-height: 1rem;
}

.why-us span {
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: 600;
}

.why-us span.one {
    background-color: #dbeafe;
    color: #2563eb;
}

.why-us span.two {
    background-color: #ffedd5;
    color: #ea580c;
}

.why-us span.three {
    background-color: #dcfce7;
    color: #16a34a;
}

.why-us span.four {
    background-color: #fef9c3;
    color: #ca8a04;
}

.why-us .accordion-list {
    /*    padding: 0 100px 60px 100px;*/
}

.why-us .accordion-list ul {
    padding: 0;
    list-style: none;
}

.accordion-ls>li {
    border: 1px solid #006eca;
}

.accordion-ls>li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
}

.accordion-list li ul li {
    padding: 10px;
}

.list-step {
    margin-right: 10px;
    background-color: #006eca;
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.nos-services .collapsed {
    display: flex !important;
}

.nos-services .collapse {
    margin-top: 20px;
}

.nos-services .accordion-list li {
    background: #f3f5fa !important;

}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding-right: 30px;
    outline: none;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #006eca;
    font-weight: 600;
    font-size: 18px;
    padding-right: 10px;
}

.why-us .accordion-list i {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}



.why-us .accordion-list .icon-show {
    display: none;
}

.why-us .accordion-list a.collapsed {
    color: #006eca;
}

.why-us .accordion-list a.collapsed:hover {
    color: #006eca;
}

.why-us .accordion-list a.collapsed .icon-show {
    display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1024px) {

    .why-us .content,
    .why-us .accordion-list {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .why-us .img {
        min-height: 400px;
    }

    .why-us .content {
        padding-top: 30px;
    }

    .why-us .accordion-list {
        padding-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why-us .img {
        min-height: 200px;
    }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #006eca;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #006eca;
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    color: #006eca;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
}

.services .icon-box .icon {
    margin-bottom: 10px;
}

.services .icon-box .icon i {
    color: #006eca;
    font-size: 36px;
    transition: 0.3s;
}

.services .icon-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .icon-box h4 a {
    color: #006eca;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
    color: #006eca;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.7), rgba(40, 58, 90, 0.7)), url("/webroot/front/imgs/chargeur.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
    margin-bottom: 10px;
}

.cta .cta-btn {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #006eca;
    border: 2px solid #006eca;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
    list-style: none;
    margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 10px 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: #444444;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #006eca;
    color: #fff;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
    overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 3;
    right: 15px;
    transition: all 0.3s;
    background: rgba(55, 81, 126, 0.8);
    padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #f9fcfe;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: #006eca;
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
    transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #006eca;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #006eca;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    background: #fff;
    transition: 0.5s;
    height: 100%;
}

.team .member .pic {
    overflow: hidden;
    width: 180px;
    border-radius: 50%;
}

.team .member .pic img {
    transition: ease-in-out 0.3s;
}

.team .member:hover {
    transform: translateY(-10px);
}

.team .member .member-info {
    padding-left: 30px;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 20px;
    color: #006eca;
}

.team .member span {
    display: block;
    font-size: 15px;
    padding-bottom: 10px;
    position: relative;
    font-weight: 500;
}

.team .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #cbd6e9;
    bottom: 0;
    left: 0;
}

.team .member p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.team .member .social {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.team .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 32px;
    height: 32px;
    background: #eff2f8;
}

.team .member .social a i {
    color: #006eca;
    font-size: 16px;
    margin: 0 2px;
}

.team .member .social a:hover {
    background: #006eca;
}

.team .member .social a:hover i {
    color: #fff;
}

.team .member .social a+a {
    margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 30px 40px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #fff;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 23px;
    color: #006eca;
}

.pricing h4 {
    font-size: 30px;
    color: #006eca;
    /*    font-weight: 400;*/
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: #006eca;
    font-size: 18px;
    display: block;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: #999;
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.pricing ul i {
    color: #28a745;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing ul .na {
    color: #ccc;
}

.pricing ul .na i {
    color: #ccc;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #006eca;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid #006eca;
}

.pricing .buy-btn:hover {
    background: #006eca;
    color: #fff;
}

.pricing .featured {
    border-top-color: #006eca;
}

.pricing .featured .buy-btn {
    background: #006eca;
    color: #fff;
}

.pricing .featured .buy-btn:hover {
    background: #23a3df;
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 20px auto;
    }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #006eca;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #006eca;
    transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
    color: #006eca;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #006eca;
    border-bottom: 3px solid #006eca;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #006eca;
    float: left;
    width: 44px;
    height: 44px;
    background: #e7f5fb;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #006eca;
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6182ba;
}

.contact .info .email p {
    padding-top: 5px;
}

.contact .info .social-links {
    padding-left: 60px;
}

.contact .info .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #333;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    margin-right: 10px;
}

.contact .info .social-links a:hover {
    background: #006eca;
    color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #006eca;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #006eca;
    border-bottom: 3px solid #006eca;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 20px;
}

.contact .php-email-form label {
    padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #006eca;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #006eca;
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #209dd8;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f3f5fa;
    min-height: 40px;
    margin-top: 72px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: #006eca;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4668a2;
    content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer ul {
    padding-left: 0;
    list-style: none;
    width: 100%;
    text-align: center;
    padding: 0;
    color: #fff;
}

footer ul>li {
    text-align: initial;
}

footer a {
    color: #fff !important;
    font-size: 14px;
}

footer i {
    color: #fff !important;
    font-size: 10px;
}

.container-fluid-2 {
    background: #4a7191;
}

@media (max-width: 768px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #footer .copyright,
    #footer .credits {
        text-align: center;
        float: none;
    }

    #footer .credits {
        padding-top: 4px;
    }
}

.hero-img {
    /*    position: relative;*/
}

.hero-img img {
    border-radius: 50%;
    width: 60%;
    /*    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;*/
}

.hide {
    display: none;
}

.about .btn:hover {
    text-decoration: underline;
}

.raccordement {
    background-image: url("/webroot/front/imgs/raccordement.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.raccordement-borne {
    background-image: url("/webroot/front/imgs/raccordement-borne.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.chargeur-voiture {
    background-image: url("/webroot/front/imgs/chargeur-voiture.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.temps-de-charge {
    background-image: url("/webroot/front/imgs/temps-de-charge.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sk-stepper-container {
    display: flex;
    justify-content: space-evenly;
    padding-left: 0;
    width: calc(100% - 25px);
}

.sk-step.sk-active-step {
    color: #fff;
    background-color: #006eca;
}

@media only screen and (min-width: 921px) {
    .sk-first-step {
        border-radius: 10px 0px 0px 10px;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 600px) {
    .stepText {
        display: none;
    }
}

.sk-step {
    width: 100%;
    height: 65px;
    background-color: #ebf2fb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #464c4e;
    position: relative;
    padding: 8px 0px 8px 32px;
    text-align: left;
    cursor: pointer;
    line-height: 16px;
}

.sk-step:before {
    content: "";
    position: absolute;
    z-index: 1;
    border-left: 29px solid #fff;
    border-top: 36px solid transparent;
    border-bottom: 36px solid transparent;
    right: -29px;
    top: -4px;
}

@media only screen and (min-width: 921px) {
    .stepNumber {
        display: none;
    }
}

.stepNumber {
    font-size: 15px;
    font-weight: bold;
}

@media only screen and (min-width: 921px) {
    .stepText {
        display: block;
    }
}

.sk-step.sk-step.sk-active-step:after {
    border-left-color: #006eca;
}

.sk-step:after {
    content: "";
    position: absolute;
    z-index: 2;
    border-left: 25px solid #ebf2fb;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    top: 0;
    right: -26px;
}

@media only screen and (min-width: 921px) {
    .sk-last-step {
        border-radius: 0px 10px 10px 0px;
        padding-right: 15px;
    }
}

.form-content {
    margin-top: 7em;
}

.type-client {
    color: #000;
    border: 2px solid #d1d5db;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    text-align: left;
}

.type-client p {
    font-size: 10px;
    padding: unset;
    margin: unset;
}

.type-client i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    padding: 0;
    font-size: 17px;
    margin-right: 10px;

}

#type_client_content .card-body {
    background: #f2f8ff;
}

#particulier:checked+.type-client {
    background-color: #dbeafe;
    border-color: #2563eb;
    color: #000;
}

.type-client .fa-home {
    color: #2563eb;
    background-color: #dbeafe;
}

#particulier:checked+.type-client .fa-home {
    color: #fff;
    background-color: #2563eb;

}

.type-client .fa-building {
    color: #ea580c;
    background-color: #ffedd5;
}

#professionnel:checked+.type-client {
    background-color: #ffedd5;
    border-color: #ea580c;
    color: #000;
}

#professionnel:checked+.type-client .fa-building {
    color: #fff;
    background-color: #ea580c;

}

.type-client .fa-building-columns {
    color: #16a34a;
    background-color: #dcfce7;
}

#collectivite:checked+.type-client {
    background-color: #dcfce7;
    border-color: #16a34a;
    color: #000;
}

#collectivite:checked+.type-client .fa-building-columns {
    color: #fff;
    background-color: #16a34a;

}


.btn-check-other:active+.btn-outl,
.btn-check-other:checked+.btn-outl,
.btn-outl.active,
.btn-outl.dropdown-toggle.show,
.btn-outl:active {
    color: #fff;
    background-color: #006eca;
    border-color: #006eca;
    border-left: 8px #489f3e solid;
}

.btn-outl {
    color: #006eca;
    border-color: #006eca;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-outl span {
    font-size: 15px;
}


.btn-outl:hover {
    color: #fff !important;
    background-color: #006eca !important;
    border-color: #006eca !important;
}

.contentCgu {
    background-color: #F1F1F1;
    padding: 13px;
}

#previousStep,
#nextStep {
    text-align: center;
    width: 200px;
    font-weight: bold;
    border-radius: 30px;
    white-space: nowrap;
    cursor: pointer;
    padding: 8px;
    background-color: #006eca;
    color: #fff;
    border: unset;
}

#paymentStep {
    text-align: center;
    width: 200px;
    font-weight: bold;
    border-radius: 30px;
    white-space: nowrap;
    cursor: pointer;
    padding: 8px;
    background-color: #198754;
    color: #fff;
    border: unset;
}

input.error,
select.error,
div.error,
textarea.error {
    border: 2px solid red;
}

label.error {
    color: red;
}

.paymentReturn {
    text-align: center;
    height: 100vh;
    margin-top: 10rem;
}

.paymentReturn .successTitle {
    color: #28a745;
}

.paymentReturn .errorTitle {
    color: #dc3545;
}

.content-cgu {
    margin-top: 10rem !important;
    margin-bottom: 5rem !important;
}

table {
    font-size: 12px;
}

.btn-content {
    place-items: center;
}



#paymentForm .container {
    margin: 20px auto;
    padding: 30px;
    justify-content: center;
}

#paymentForm .card.box1 {
    width: 350px;
    height: 80%;
    background-color: #006eca;
    color: #fff;
    border-radius: 0;
}

#paymentForm .card.box2 {
    width: 450px;
    height: 100%;
    background-color: #ffffff;
    border-radius: 0;
}

#paymentForm .text {
    font-size: 13px;
}

#paymentForm .box2 .btn.btn-primary.bar {
    width: 20px;
    background-color: transparent;
    border: none;
    color: #3ecc6d;
}

#paymentForm .box2 .btn.btn-primary.bar:hover {
    color: #baf0c3;
}

#paymentForm .box1 .btn.btn-primary {
    background-color: #006eca;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

#paymentForm .box1 .btn.btn-primary:hover {
    background-color: #f6f8f7;
    color: #006eca;
}

#paymentForm .btn.btn-success {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

#paymentForm .nav.nav-tabs {
    border: none;
    border-bottom: 2px solid #ddd;
}

#paymentForm .nav.nav-tabs .nav-item .nav-link {
    border: none;
    color: black;
    border-bottom: 2px solid transparent;
    font-size: 14px;
}

#paymentForm .nav.nav-tabs .nav-item .nav-link:hover {
    border-bottom: 2px solid #3ecc6d;
    color: #05cf48;
}

#paymentForm .nav.nav-tabs .nav-item .nav-link.active {
    border: none;
    border-bottom: 2px solid #3ecc6d;
}

#paymentForm .form-control,
#paymentForm .form-select {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
}

#paymentForm .inputWithIcon {
    position: relative;
}


#paymentForm .inputWithIcon span {
    position: absolute;
    right: 5px;
    bottom: 9px;
    color: #006eca;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    font-weight: bold;
}

#paymentForm .form-control:focus,
#paymentForm .form-select:focus {
    box-shadow: none;
    border-bottom: 1px solid #ddd;
}

#paymentForm .btn-outline-primary {
    color: black;
    background-color: #ddd;
    border: 1px solid #ddd;
}

#paymentForm .btn-outline-primary:hover {
    background-color: #05cf48;
    border: 1px solid #ddd;
}

#paymentForm .btn-check-other:active+.btn-outline-primary,
#paymentForm .btn-check-other:checked+.btn-outline-primary,
#paymentForm .btn-outline-primary.active,
#paymentForm .btn-outline-primary.dropdown-toggle.show,
#paymentForm .btn-outline-primary:active {
    color: #baf0c3;
    background-color: #3ecc6d;
    box-shadow: none;
    border: 1px solid #ddd;
}

#paymentForm .btn-group>.btn-group:not(:last-child)>.btn,
#paymentForm .btn-group>.btn:not(:last-child):not(.dropdown-toggle),
#paymentForm .btn-group>.btn-group:not(:first-child)>.btn,
#paymentForm .btn-group>.btn:nth-child(n+3),
#paymentForm .btn-group>:not(.btn-check-other)+.btn {
    border-radius: 50px;
    margin-right: 20px;
}

#paymentForm form {
    font-size: 14px;
}

#paymentForm form .btn.btn-primary {
    width: 100%;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #3ecc6d;
    border: 1px solid #ddd;
}

#paymentForm form .btn.btn-primary:hover {
    background-color: #05cf48;
}

@media (max-width:750px) {
    #paymentForm .container {
        padding: 10px;
        width: 100%;
    }

    #paymentForm .text-green {
        font-size: 14px;
    }

    #paymentForm .card.box1,
    #paymentForm .card.box2 {
        width: 100%;
    }

    #paymentForm .nav.nav-tabs .nav-item .nav-link {
        font-size: 12px;
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.payment-btn {
    color: #fff;
    background: #489f3e;
    border: unset;
    border-radius: 50px;
    font-weight: 600;
}

.payment-btn:hover {
    background: #fff;
    color: #489f3e;
    border: 2px solid #489f3e;
}

#paymentForm {
    font-family: DM Sans, Noto Sans JP, sans-serif;
}

.label-pay {
    font-size: 12px;
    line-height: 16px;
    color: #6a7a8a;
}

#paymentForm .dropdown-toggle::after {
    content: none;
}

#paymentForm .wrapper {
    display: flex;
    margin: 40px auto 0;
    width: 80%;
}

#paymentForm .wrapper form {
    width: 100%;
}


#paymentForm label {
    font-size: 15px;
    line-height: 16px;
    color: #006eca;
    font-weight: bold;
}

#paymentForm .mollie-component {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #006eca;
    border-radius: 0.375rem;
}

#paymentForm .mollie-component.has-focus {
    border-color: #0077ff;
    transition: 0.3s border-color cubic-bezier(0.4, 0, 0.2, 1);
}

#paymentForm .mollie-component.is-invalid {
    border-color: #ff1717;
    transition: 0.3s border-color cubic-bezier(0.4, 0, 0.2, 1);
}

#paymentForm .field-error {
    font-size: 12px;
    margin-top: 2px;
    color: #ff1717;
    font-weight: 400;
}

#paymentForm button.submit-button {
    width: 100%;
    border: 0;
    background: #0077ff;
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1), 0px 2px 4px rgba(0, 0, 0, 0.1),
        0px 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 14px;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    opacity: 0.9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
        Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    outline: 0;
    transition: 0.3s opacity cubic-bezier(0.4, 0, 0.2, 1);
}

#paymentForm button.submit-button:hover {
    opacity: 1;
}

#paymentForm .form-fields {
    margin-bottom: 24px;
}

#paymentForm .form-group {
    width: 100%;
}


.title-pay {
    font-size: 13px;
}
.first-txt{
    line-height: 1.7;
}

#main .cart-container {
    background: #fafafa !important;
    padding-top: 20px;
}

.secure-form {
    background: #132560 !important;
    color: #ffffff;
}

#main .btn-primary {
    background: #132560 !important;
    border: 2px solid #132560 !important;
    color: #ffffff !important;
    cursor: pointer;
    animation: all 0.125s, background 0.125s !important;
    animation-timing-function: linear !important;
    transition: 0.125s !important;
}

#main .btn-primary:hover {
    background: transparent !important;
    color: #132560 !important;
}

#main .btn-outline-primary {
    border-color: #132560 !important;
    color: #132560 !important;
    cursor: pointer;
    animation: all 0.125s, background 0.125s !important;
    animation-timing-function: linear !important;
    transition: 0.125s !important;
}

#main .btn-outline-primary:hover {
    background: #132560;
    color: #ffffff !important;
}

#main #processorderbtn[disabled=disabled] {
    opacity: 0.4;
    cursor: not-allowed;
    background: gray !important;
    color: #fff !important;
    border-color: #444 !important;
}

#processorderbtn[disabled=disabled]:hover {
    opacity: 0.4;
    cursor: not-allowed;
}

.single-expedite.selected {
    border: .15em solid #000;
    border-radius: 10px;
}

.single-expedite * {
    cursor: pointer;
}

.font-weight-light {
    font-weight: 300 !important;
}

.single-expedite input:checked~.checkmark:after {
    display: block;
}

.single-expedite .checkmark:after {
    background: #fff;
    border-radius: 50%;
    height: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
}

.single-expedite .checkmark:after {
    content: "";
    display: none;
    position: absolute;
}

.form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}

/*--------------------------------------------------------------
# Simulateur
--------------------------------------------------------------*/

.simulateur .speedometer {
    width: 123px;
    height: 123px;
    border-radius: 100%;
    border: 9px solid #1669d8;
    transform: rotate(45deg);
}

.simulateur p,
span {
    line-height: 1.5;
    margin: 0;
}

.simulateur .speedometer-indicator {
    height: 81px;
    overflow: hidden;
}

.simulateur .padding-md {
    padding: 24px;
}

.extra-small-font-size {
    font-size: 11px;
}

.grey-5-text {
    color: #939fb9;
}

.speedometer-low {
    left: 35px;
    bottom: 4px;
}

.speedometer-half {
    top: 4px;
    left: 46%;
}

.speedometer-full {
    right: 35px;
    bottom: 4px;
}

.speedometer-needle-container,
.speedometer-needle-container-blog {
    right: 14px;
    bottom: 13px;
    width: 0;
    margin: 0 auto;
}

.speedometer-needle,
.speedometer-needle-blog {
    height: 43px;
    width: 14px;
    transform: rotate(calc(var(--value) * 1.8deg - 90deg));
    transform-origin: bottom center;
    transition: transform 0.3s ease;
}

.speedometer-needle-img {
    margin-top: 4px;
}

.img-fit-contain {
    object-fit: contain;
}

.speedometer-container {
    height: 100px;
}

.border-r-gutter {
    border-radius: 8px;
}

.grey-2-bg {
    background-color: #f0f1f5;
}

.h5-title,
.blog-product-container h3 {
    color: #001a70;
    font-size: 18px;
    line-height: 1.2;
    font-weight: normal;
}

.h4-title,
.offer-block-seo h4,
.text-editor-content h4 {
    color: #001a70;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.h3-title,
.offer-block-seo h3,
.text-editor-content h3 {
    color: #001a70;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.simulator-card img {
    width: 40%;
}

.simulator-card ul {
    list-style-type: none;
    padding: unset;
}

.simulator-card ul li {
    font-size: 15px;
    padding-bottom: 5px;
}

.simulator-card .fa-circle-check {
    color: #34968b;
}


/*--------------------------------------------------------------
# Page borne
--------------------------------------------------------------*/
.btn-borne {
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 15px;
    border: #006eca solid 2px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 10px 0;
    color: #006eca;
}

.faq .faq-list li {
    padding: 20px;
    background: #f3f5fa;
    border-radius: 4px;
}

.recharger-title {
    font-size: 22px !important;
}

.img-racco {
    background-image: url(/webroot/front/imgs/img-racco.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.nos-services p {
    margin-bottom: 10px;
}

.alert {
    font-weight: 600;
    margin: 10px;
}