:root {
    /*--primary: #9BA0CE;*/
    --primary: #323648;
    --secondary: #FE5A5F;
    --light: #F2F8FE;
    --dark: #111111;
    --background-color: #ffffff;
    --default-color: #0a0f14;
    --heading-color: #0f2943;
    --accent-color: #e87532;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}
@media (min-width: 769px) {
    body {
        font-size: 110%;
    }
}
a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

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

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

.back-to-top:hover {
    background: var(--secondary);
    color: #fff;
}

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

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 130px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    /*background: rgba(42, 44, 57, 0.9);*/
    background: rgb(51, 54, 74, 0.9);
}

#header.header-transparent {
    background: transparent;
}

#header.header-scrolled {
    background: rgba(42, 44, 57, 0.9);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 130px;
    height: 120px;
}

.home-container {
    min-height:600px;
    padding-top: 130px
}
.home-container p {
    font-size: 1.2rem;
    text-align: justify;
}
.show-mobile {
    display: none;
}
@media (max-width: 768px) {
    #header {
        height: 90px;
    }
    #header .logo h1 {
        font-size:1.2rem;
    }
    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 80px;
        height: 80px;
    }
    .home-container {
        padding-top: 50px;
        min-height: 700px;
    }
    .home-container p {
        font-size: inherit;
    }
    .show-mobile {
        display: block;
    }

    .social-links {
        display: none;
    }
}



/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px 7px 15px;
    margin-left: 5px;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    background: var(--secondary);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 5px;
    top: calc(100% + 30px);
    margin: 5px 0 0 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: 15px;
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #2a2c39;
    margin: 0 5px;
    font-size: 14px;
}

.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: #fff;
}

.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 !important;
    line-height: 0;
    transition: 0.5s;
}

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

    .navbar ul {
        display: none;
    }

    .navbar-mobile li:nth-child(7), li:nth-child(8), li:nth-child(9) {
        display:inline-block;
    }

    .navbar-mobile .show-mobile a {
        font-size: 18px;
        display: inline-block;
        background: var(--secondary);
        color: #fff !important;
        line-height: 1;
        padding: 8px 0;
        margin-right: 4px;
        border-radius: 50%;
        text-align: center;
        width: 36px;
        height: 36px;
        transition: 0.3s;
    }

    .navbar a i {
        font-size: 20px;
        line-height: 1;
        margin-left: 0;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(20, 21, 28, 0.9);
    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;
    margin: 5px;
    font-size: 15px;
    color: #2a2c39;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.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: #fff;
}

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

/*--------------------------------------------------------------
# home Section
--------------------------------------------------------------*/
#home {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(0deg, rgb(42, 44, 57) 0%, rgb(51, 54, 74) 100%);
    padding: 0;
}

#home .h2 {
    font-size: 56px;
    font-weight: 700;
}

#home .h3 {
    font-size: 32px;
    font-weight: 700;
}

#home p {
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #fff;
}

@media (max-width: 768px) {
    #home .h2 {
        font-size: 32px;
    }
    #home .h3 {
        margin-top: 20px;
        font-size: 24px;
    }
}

.home-waves {
    display: block;
    width: 100%;
    height: 60px;
    position: relative;
}

.wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
}

.wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
}

.wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

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

.section-title {
    padding-bottom: 40px;
}

.section-title p {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title p::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--secondary);
    margin: 4px 10px;
}

.section-title h2 {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #2a2c39;
}
@media (max-width: 768px) {
    .section-title p {
        font-size: 28px;
    }
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding-bottom: 0;
}

.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: var(--secondary);
    line-height: 1;
}

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

.about .content .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: var(--secondary);
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--secondary);
}

.about .content .btn-learn-more:hover {
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    border: 1px solid #d4d6df;
    padding: 15px;
    transition: 0.3s;
    color: #2a2c39;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    color: var(--secondary);
}

.features .nav-link.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--secondary);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: var(--secondary);
    padding: 40px 0;
}

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

.cta p {
    color: #fff;
}

.cta .cta-btn, #header .cta-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    color: var(--secondary);
    background: #fff;
}
#header .cta-btn {
    font-size: 11px;
    padding: 10px 20px;
}

.cta .cta-btn:hover {
    background: #fff;
    color: var(--secondary);
}

.partenaires {
    padding-bottom: 0;
}
.secondary-btn-effect {
    position: relative;
    padding: 10px 40px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-btn-effect::before,
.secondary-btn-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid var(--secondary);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.white-btn-effect {
    position: relative;
    padding: 10px 40px;
    background: white;
    color: var(--secondary);
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.white-btn-effect::before,
.white-btn-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid white;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.secondary-btn-effect::before, .white-btn-effect::before {
    animation: ripple 2s cubic-bezier(0.65, 0, 0.34, 1) infinite;
}

.secondary-btn-effect::after, .white-btn-effect::after {
    animation: ripple 2s cubic-bezier(0.65, 0, 0.34, 1) 1s infinite;
}

.secondary-btn-effect:hover, .white-btn-effect:hover {
    transform: scale(1.05);
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(254, 90, 95, 0.3),
        0 4px 15px rgba(254, 90, 95, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(254, 90, 95, 0.6),
        0 6px 20px rgba(254, 90, 95, 0.4);
    }
}

.tarif-h3 {
    text-transform: uppercase;
    font-size: 2rem !important;
}
.pourcentage {
    font-size: 10rem;
    font-weight: bold;
    margin: 0;
}

@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: 0 0 10px 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::before {
    content: "[";
    margin-right: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li::after {
    content: "]";
    margin-left: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: var(--secondary);
}

.portfolio #portfolio-flters li.filter-active::before,
.portfolio #portfolio-flters li.filter-active::after {
    color: var(--secondary);
}

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

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

.portfolio .portfolio-item .portfolio-img img {
    transition: all 0.8s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 3;
    right: 15px;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.5);
    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: #fedac0;
    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: var(--secondary);
}

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

.portfolio .portfolio-item .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
    color: var(--secondary);
}

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

.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 var(--secondary);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--secondary);
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(42, 44, 57, 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;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 25px -20px;
    padding: 30px 15px;
    font-size: 18px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: var(--secondary);
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: var(--secondary);
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: var(--secondary);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: var(--secondary);
}

.pricing .featured {
    border: 2px solid var(--secondary);
}

.pricing .featured h3 {
    color: #fff;
    background: var(--secondary);
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: var(--secondary);
    color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
    padding-top: 0;
}

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

.faq .faq-list li {
    border-bottom: 1px solid #ececf1;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-family: var(--secondary);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 25px;
    cursor: pointer;
    color: var(--secondary);
    transition: 0.3s;
}

.faq .faq-list i {
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
    line-height: 1.5;
}

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

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

.faq .faq-list .collapsed {
    color: black;
}

.faq .faq-list .collapsed:hover {
    color: var(--secondary);
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    background: #fff;
    padding: 60px 0;
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a {
    transition: color 0.3s;
    margin: 0 3px;
    border-radius: 50px;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    transition: ease-in-out 0.3s;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team .member .social a:hover {
    background: var(--secondary);
}

.team .member .social i {
    font-size: 18px;
    line-height: 0;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #2a2c39;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

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

.contact .info h3 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2a2c39;
}

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

.contact .info .secteur-p {
    padding-left: 75px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--secondary);
    color: #fff;
}

.contact .email-form {
    width: 100%;
    background: #fff;
}

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

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

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

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

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

.contact .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 input,
.contact select,
.contact textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
}

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

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

.contact .email-form button[type=submit] {
    background: var(--secondary);
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .email-form button[type=submit]:hover {
    background: var(--secondary);
}

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

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

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

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
}

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

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

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

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

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

#estimate img {
    width: 40%;
}
.project-img-width {
    width: 50% !important;
}
@media (max-width: 768px) {
    #estimate img {
        width: 60%;
    }
    .project-img-width {
        width: 100% !important;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #14151c;
    color: #fff;
    font-size: 14px;
    padding: 30px 0;
}

#footer h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    position: relative;
    font-family: "Poppins", sans-serif;
    padding: 0;
    margin: 0 0 15px 0;
}

#footer p {
    font-size: 15px;
    padding: 0;
    margin: 0 0 40px 0;
}

#footer p.titre {
    font-size: 1.25rem;
}
#footer p.categorie {
    font-size: 1rem;
}
.social-links {
    margin-right: 50px;
}

.social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}
@media (max-width: 991px) {
    .social-links {
        display: none;
    }
}
@media (max-width: 1500px) {
    .social-links {
        margin-right: 20px;
    }
    .social-links a {
        display: table-cell;
        font-size: 16px;
        padding: 8px 10px;
        width: 25px;
        height: 25px;
    }
}

#footer .social-links a:hover {
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    margin: 0 0 5px 0;
}

#footer .credits {
    font-size: 13px;
}

.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.ri-check-double-line {
    padding: 0 20px
}


.services h4 {
    font-size: 1.2rem;
    font-weight: bold;
}
.services p, .service-item p, .faq-list p {
    text-align: justify;
}
.text-justify {
    text-align: justify;
}

.hr-services {
    border: solid 10px var(--primary);
    opacity: 0.75;
}


.testimony {
    padding-bottom: 0;
}
.demo{ background: #f8f8f8; }
.testimonial{
    margin: 0 20px 40px;
}
.testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background: var(--secondary);
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid var(--secondary);
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}
.testimonial h3{
    font-weight: bold;
    color: var(--secondary);
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: var(--secondary);
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: var(--secondary);
}

.name-testimony {
    font-size: 1.25rem;
    color: var(--secondary);
    font-weight: bold;
}

#about h3 {
    font-size: 1.5rem;
}
#partenaires h3 {
    font-size: 1.25rem;
}

.blockquote-footer {
    margin-top: initial;
}
.blockquote-footer::before {
    content: none;
}

#contact-form select option[value=""], #contact-form select:invalid, #contact-form input::placeholder, #contact-form textarea::placeholder {
    color: #999B9D;
}

.border-primary {
    border-color: var(--secondary) !important;
}


.ratings i{
    color: var(--secondary);
}



#timeline {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    position: relative;
    padding: 0 40px;
}

#timeline:before {
    content:"";
    width: 3px;
    background: #DCDCDC;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
}

/* ---- TIMELINE ITEM EN COLONNE (IMPORTANT) ---- */
.timeline-item {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Items impairs → gauche */
}
.timeline-icon i {
    color: white;
    font-size: 26px;
}
/* Items pairs → alignés à droite */
.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

/* ---- ICON ---- */
.timeline-icon {
    background: var(--secondary);
    width: 55px;
    height: 55px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -27px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

/* ---- CARD ---- */
.timeline-content {
    width: 45%;
    background: white;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform .2s ease;
}

.timeline-content:hover {
    transform: translateY(-4px);
}

.timeline-content h3 {
    background: var(--secondary);
    color: white;
    margin: -25px -25px 15px -25px;
    padding: 15px;
    font-weight: 500;
    border-radius: 8px 8px 0 0;
    font-size: 1.5rem;
}
.timeline-content.right h3, .timeline-icon.right {
    background: var(--primary);
}

/* ---- FLECHES ---- */
.timeline-content:before {
    content:"";
    position: absolute;
    top: 20px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* Impairs → flèche vers la droite */
.timeline-item:nth-child(odd) .timeline-content:before {
    left: 100%;
    border-left: 10px solid var(--secondary);
}

/* Pairs → flèche vers la gauche */
.timeline-item:nth-child(even) .timeline-content:before {
    right: 100%;
    border-right: 10px solid var(--primary);
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {

    #timeline:before {
        left: 25px; /* ligne à gauche */
    }

    .timeline-item {
        padding-left: 60px; /* espace pour l’icone */
    }

    .timeline-icon {
        left: 25px;              /* icône sur la ligne */
        margin-left: 0;
        transform: translateX(0);
        width: 45px;
        height: 45px;
    }

    .timeline-content,
    .timeline-content.right {
        width: 100%;             /* prend toute la largeur */
        float: none;             /* plus de décalage droite */
        margin-top: 20px;        /* éviter l’écrasement */
    }

    .timeline-content:before,
    .timeline-content.right:before {
        display: none !important;
    }
}

.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-outline-primary:hover {
    color: #ffffff !important;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}
.btn-outline-secondary {
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}
.btn-outline-secondary:hover {
    color: #ffffff !important;
    border-color: var(--secondary) !important;
    background-color: var(--secondary) !important;
}
.btn-primary {
    color: #ffffff !important;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}
.btn-primary:hover {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: #ffffff !important;
}
.btn-secondary {
    color: #ffffff !important;
    border-color: var(--secondary) !important;
    background-color: var(--secondary) !important;
}
.btn-secondary:hover {
    color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    background-color: #ffffff !important;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .servies-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.services .service-item {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.services .service-item:hover {
    transform: scale(1.05);
}

.services .service-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    display: inline-block;
}

.services .service-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.services .service-item h3 a:hover {
    color: var(--secondary);
}

.services .service-item p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 991px) {
    .services h2 {
        font-size: 2rem;
    }
}




/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.home-services .img {
    border-radius: 8px;
    overflow: hidden;
}

.home-services .img img {
    transition: 0.6s;
}

.home-services .details {
    background: color-mix(in srgb, var(--surface-color), transparent 5%);
    padding: 50px 30px;
    margin: -50px 30px 0 30px;
    transition: all ease-in-out 0.3s;
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.home-services .details .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--secondary);
    color: var(--contrast-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
    position: absolute;
    top: -36px;
    left: calc(50% - 36px);
}

.home-services .details h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.home-services .details p {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.home-services .service-item:hover .details h3 {
    color: var(--secondary);
}

.home-services .service-item:hover .details .icon {
    background: var(--surface-color);
    border: 2px solid var(--secondary);
}

.home-services .service-item:hover .details .icon i {
    color: var(--secondary);
}

.home-services .service-item:hover .img img {
    transform: scale(1.2);
}


#guide {
    padding-top: 0;
    padding-bottom: 50px;
}

#guide .container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Typographie */
/*#guide h2 {*/
/*    color: #34495e;*/
/*    margin-top: 40px;*/
/*    margin-bottom: 20px;*/
/*    padding-left: 15px;*/
/*    border-left: 4px solid #323648;*/
/*}*/

#guide h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

#guide h4 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

/* Listes */
#guide ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

#guide li {
    margin-bottom: 8px;
}

/* Liens et boutons */
#guide .highlight-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin: 5px 0;
    transition: transform 0.2s;
}

#guide .highlight-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Sections et conteneurs */
#guide .section {
    margin-bottom: 50px;
    padding: 25px;
    border-left: 3px solid #FE5A5F;
    background: #fafafa;
    border-radius: 0 8px 8px 0;
}

#guide .city-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

#guide .city-section h2,
#guide .city-section h3 {
    color: white;
    border: none;
    padding: 0;
}

/* Étapes numérotées */
#guide .steps {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

#guide .steps ol {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}

#guide .steps ol li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

#guide .steps ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #323648;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Encadrés d'information */
#guide .warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

#guide .success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

#guide .info-box {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

#guide .revenue-highlight {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

/* Call-to-action */
#guide .cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

#guide .cta-box h3 {
    color: white;
    margin-top: 0;
}

/* Tableaux */
#guide .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

#guide .comparison-table th,
#guide .comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

#guide .comparison-table th {
    background: #323648;
    color: white;
    font-weight: bold;
}

#guide .comparison-table tr:nth-child(even) {
    background: #f9f9f9;
}

/* Grilles de cartes */
#guide .location-grid,
#guide .travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

#guide .location-card,
#guide .travel-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

#guide .location-card:hover,
#guide .travel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#guide .location-card h3,
#guide .travel-card h3,
#guide .travel-card h4 {
    color: #323648;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Emojis */
#guide .emoji {
    font-size: 1.2em;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    #guide .container {
        padding: 20px;
    }

    #guide h1 {
        font-size: 1.8em;
    }

    #guide h2 {
        font-size: 1.5em;
    }

    #guide .location-grid,
    #guide .travel-grid {
        grid-template-columns: 1fr;
    }

    #guide .steps ol li {
        padding-left: 40px;
    }

    #guide .steps ol li::before {
        width: 25px;
        height: 25px;
        font-size: 0.9em;
    }
}

#section-breadcrumb {
    padding: 150px 0 0;
}
.breadcrumb {
    font-size: 1rem;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FE5A5F;
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(254, 90, 95, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-3px);
    background-color: #e04a50;
}
