/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/

/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar.fixed-top {
    background-color: white; /* Changez cette couleur selon vos besoins */
    transition: background-color 0.3s ease-in-out;
    padding-left: 30px;
    padding-right: 30px;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: black;
    font-size: 15px;
    font-weight: 700;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    color: black;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    font-weight: 900;
}
.navbar .nav-item .dropdown-menu .dropdown-item:hover {
    color: #2476ac;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 0.5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
}

/*** Navbar End ***/

/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: 0.8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: 0.8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }

    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}

/* .services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: #35a5d3;
    transition: .5s;
} */

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: 0.5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: 0.5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/

/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: 0.5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: 0.5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: 0.5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/

/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/

/*** Team Start ***/

.team-item {
    border-top: 30px solid #2476ac !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: #2476ac;
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid #2476ac;
    transition: 0.5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid #2476ac;
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}
.partners-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.partners-carousel .owl-nav .owl-prev,
.partners-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
.partners-carousel .owl-nav .owl-prev:hover,
.partners-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
    .partners-carousel .owl-nav {
        top: -55px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/

/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #ffffff !important;
    box-shadow: 0 0 30px #dddddd;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, 0.3)),
        url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/

/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: 0.5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

.notification {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 300px;
}

.notification button {
    margin-left: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.notification .accept {
    background-color: green;
    color: white;
}

.notification .decline {
    background-color: red;
    color: white;
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200&display=swap");

.road-map-main {
    margin: 50px 0 51px;
}

.road-map-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 175px;
}

@media (max-width: 991px) {
    .road-map-wrapper {
        margin-bottom: 25px;
        height: auto;
        display: block;
    }
}

.road-map-wrapper::before,
.road-map-wrapper::after {
    content: "";
    width: 100%;
    clear: both;
    display: block;
}

.road-map-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 25px solid transparent;
    border-top-color: #2476ac;
    border-right-color: #2476ac;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .road-map-circle {
        position: unset;
        border: 25px solid #2476ac;
    }
}

.road-map-circle-text {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
    color: #fff;
    box-shadow: 0px 0px 10px 5px #00000021;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-45deg);
}

.road-map-card {
    width: 35%;
    background: #2476ac;
    padding: 20px 20px;
    z-index: 1;
    position: absolute;
    right: 0;
    border-radius: 5px;
}

.road-map-card::before {
    content: "";
    width: 25%;
    height: 20px;
    background: #2476ac;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -23%;
    z-index: -1;
}

@media (max-width: 991px) {
    .road-map-card {
        width: 100%;
        margin-top: 30px;
        position: unset;
    }

    .road-map-card::before {
        content: "";
        width: 20px;
        height: 30%;
        top: 50%;
        transform: translateX(-50%);
        left: 50%;
    }
}

@media (max-width: 425px) {
    .road-map-card {
        top: 45%;
    }
}

.card-head {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 15px;
    color: #fff;
}

.card-text {
    color: #fff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .card-text {
        -webkit-line-clamp: 4;
    }
}

.road-map-wrapper:nth-of-type(even) .road-map-circle {
    border-bottom-color: #2476ac;
    border-left-color: #2476ac;
    border-top-color: transparent;
    border-right-color: transparent;
}

@media (max-width: 991px) {
    .road-map-wrapper:nth-of-type(even) .road-map-circle {
        border-color: #2476ac;
    }
}

.road-map-wrapper:nth-of-type(even) .road-map-card {
    left: 0;
}

.road-map-wrapper:nth-of-type(even) .road-map-card::before {
    right: -23%;
    left: unset;
}

@media (max-width: 991px) {
    .road-map-wrapper:nth-of-type(even) .road-map-card::before {
        content: "";
        width: 20px;
        height: 30%;
        top: 50%;
        transform: translateX(-50%);
        left: 50%;
    }
}

@media (max-width: 425px) {
    .road-map-wrapper:nth-of-type(even) .road-map-card::before {
        top: 45%;
    }
}

.become-partner {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.become-partner .text-primary {
    color: #2476ac !important;
}

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

.become-partner ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.become-partner ul li i {
    margin-right: 10px;
}

.submit-cv {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.submit-cv .text-primary {
    color: #2476ac !important;
}

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

.submit-cv ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.submit-cv ul li i {
    margin-right: 10px;
}

.find-candidates {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.find-candidates .text-primary {
    color: #2476ac !important;
}

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

.find-candidates ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.find-candidates ul li i {
    margin-right: 10px;
}

.partners {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.partners .text-primary {
    color: #2476ac !important;
}

.partners-carousel .partner-item {
    padding: 15px;
}

.partners-carousel .partner-item img {
    max-width: 100%;
    max-height: 100px; /* Adjust based on your image dimensions */
    object-fit: contain;
}

.products {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.products .text-primary {
    color: #2476ac !important;
}

.products-inner .product-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.products-inner .product-img img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.products-inner .product-content {
    padding: 20px;
}

.products-inner .product-content h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.products-inner .product-content p {
    font-size: 1rem;
    color: #777;
}

.products-inner .product-content .btn {
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
}

.intermediation-financiere {
    padding: 5rem 0;
    margin-bottom: 5rem;
}

.intermediation-financiere .img-fluid {
    border-radius: 10px;
}

.intermediation-financiere h2 {
    color: #2476ac;
}

.intermediation-financiere ul {
    list-style-type: none;
    padding-left: 0;
}

.intermediation-financiere ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.intermediation-financiere ul li i {
    margin-right: 10px;
    color: #2476ac;
}

.intermediation-financiere .btn-primary {
    background-color: #2476ac;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
}

.fas {
    font-size: 24px;
    color: #2476ac;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.styled-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.styled-title::before,
.styled-title::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #2476ac;
    top: 50%;
    transform: translateY(-50%);
}

.styled-title::before {
    left: -35px;
}

.styled-title::after {
    right: -35px;
}

.styled-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.styled-main-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background-color: #2476ac;
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
}

.service-section .icon-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f1f1f1;
    font-size: 30px;
    color: #2476ac;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}
.service-section .icon-number::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
}
.service-section .content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.service-section .content::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
    transform: rotate(-2deg);
}
.service-section h2 {
    color: #2476ac;
    font-weight: bold;
}

.marketing-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 60px 0;
    overflow: hidden;
}

.marketing-item {
    margin-bottom: 40px;
}

.marketing-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.marketing-item img:hover {
    transform: scale(1.05);
}

.marketing-content {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: -70px;
    position: relative;
    z-index: 1;
}

.marketing-content .text-primary {
    color: #2476ac;
}

.marketing-content i {
    margin-top: 20px;
}

.marketing-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.marketing-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.suivi-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 60px 0;
    overflow: hidden;
}

.suivi-item {
    margin-bottom: 40px;
}

.suivi-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.suivi-item img:hover {
    transform: scale(1.05);
}

.suivi-content {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.line-separator {
    border-top: 2px solid #2476ac;
    width: 100%;
    margin-top: 20px;
}
.suivi-content .text-primary {
    color: #2476ac;
}

.suivi-content i {
    margin-top: 20px;
}

.suivi-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.suivi-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.partner-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
    overflow: hidden;
}

.partner-item {
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partner-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.partner-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #2476ac;
}

.partner-content p {
    font-size: 1rem;
    line-height: 1.6;
}

.btn-outline-primary {
    border: 2px solid #2476ac;
    color: #2476ac;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.btn-outline-primary:hover {
    background-color: #2476ac;
    color: #ffffff;
}
.btn-outline-primary:hover i {
    color: #ffffff;
}

.btnsubmit {
    background-color: transparent !important;
    border-color: #2476ac !important;
    color: #2476ac !important;
}
.btnsubmit:hover {
    background-color: #2476ac !important;
    color: white !important;
}

/* File upload section */

.fileuploader {
    position: relative;
    background: white;
    width: 100%;
    height: 400px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.fileuploader #upload-label {
    background: #2476ac;
    color: #fff;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    padding: 16px;
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    min-width: 20%;
    text-align: center;
    padding-top: 40px;
    transition: 0.8s all;
    -webkit-transition: 0.8s all;
    -moz-transition: 0.8s all;
    cursor: pointer;
}
.fileuploader.active {
    background: #2476ac;
}
.fileuploader.active #upload-label {
    background: #fff;
    color: #2476ac;
}
.fileuploader #upload-label span.title {
    font-size: 1.1em;
    font-weight: bold;
    display: block;
}
.fileuploader #upload-label i {
    text-align: center;
    display: block;
    background: white;
    color: #2476ac;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    border-radius: 100%;
    width: 80px;
    height: 80px;
    font-size: 60px;
    padding-top: 10px;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
}
/** Preview of collections of uploaded documents **/
.preview-container {
    position: fixed;
    right: 10px;
    bottom: 0px;
    width: 300px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16),
        0 2px 10px 0 rgba(0, 0, 0, 0.12);
    visibility: hidden;
}
.preview-container #previews {
    max-height: 400px;
    overflow: auto;
}
.preview-container #previews .zdrop-info {
    width: 88%;
    margin-right: 2%;
}
.preview-container #previews.collection {
    margin: 0;
}
.preview-container #previews.collection .actions a {
    width: 1.5em;
    height: 1.5em;
    line-height: 1;
}
.preview-container #previews.collection .actions a i {
    font-size: 1em;
    line-height: 1.6;
}
/* .preview-container #previews.collection .dz-error-message{
    font-size: 0.8em;
    margin-top: 212px;
    color: #F44336;
  } */
.preview-container .header {
    background: #2476ac;
    color: #fff;
    padding: 8px;
}
.preview-container .header i {
    float: right;
    cursor: pointer;
}
.fileuploader {
    border: 2px dashed #2476ac;
    padding: 50px;
    text-align: center;
}
.preview-container {
    visibility: hidden;
}

/* -------------------------------------------------- card pricing ----------------------------------- */
.card-pricing2 {
    padding-bottom: 10px;
    background: #fff !important;
    border-bottom: 7px solid;
    text-align: center;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    -webkit-box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
    -moz-box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
    box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
}
.card-pricing2:before {
    content: "";
    width: 100%;
    height: 350px;
    position: absolute;
    top: -150px;
    left: 0;
    transform: skewY(-20deg);
}
.card-pricing2 .price-value:after,
.card-pricing2 .price-value:before {
    content: "";
    left: 50%;
    transform: translateX(-50%) scaleY(0.5) rotate(45deg);
}
.card-pricing2 .value:after,
.card-pricing2 .value:before {
    content: "";
    left: 50%;
    transform: translateX(-50%) scaleY(0.5) rotate(45deg);
}
.card-pricing2 .pricing-header {
    padding: 20px 20px 60px;
    text-align: left;
    position: relative;
}
.card-pricing2 .sub-title {
    display: block;
    font-size: 16px;
    color: white;
}
.card-pricing2 .value {
    background: #fff;
}
.card-pricing2 .price-value {
    display: inline-block;
    width: 170px;
    height: 110px;
    padding: 15px;
    border: 2px solid;
    border-top: none;
    border-bottom: none;
    position: relative;
}
.card-pricing2 .price-value:after,
.card-pricing2 .price-value:before {
    width: 121px;
    height: 121px;
    border: 3px solid;
    border-right: none;
    border-bottom: none;
    position: absolute;
    top: -60px;
}
.card-pricing2 .price-value:after {
    border-top: none;
    border-left: none;
    border-bottom: 3px solid;
    border-right: 3px solid;
    top: auto;
    bottom: -60px;
}
.card-pricing2 .value {
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-top: none;
    border-bottom: none;
    z-index: 1;
    position: relative;
}
.card-pricing2 .value:after,
.card-pricing2 .value:before {
    width: 97px;
    height: 97px;
    background: #fff;
    border: 3px solid;
    border-bottom: none;
    border-right: none;
    position: absolute;
    top: -48px;
    z-index: -1;
}
.card-pricing2 .value:after {
    border-right: 3px solid;
    border-bottom: 3px solid;
    border-top: none;
    border-left: none;
    top: auto;
    bottom: -48px;
}
.card-pricing2 .currency {
    display: inline-block;
    font-size: 30px;
    margin-top: 7px;
    vertical-align: top;
}
.card-pricing2 .amount {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    /* line-height: 65px; */
}
.card-pricing2 .amount span {
    display: inline-block;
    font-size: 30px;
    font-weight: 400;
    vertical-align: top;
    margin-top: -7px;
}
.card-pricing2 .month {
    display: block;
    font-size: 16px;
    line-height: 0;
}
.card-pricing2 .pricing-content {
    padding: 50px 0 0 80px;
    margin-bottom: 20px;
    list-style: none;
    text-align: left;
    transition: all 0.3s ease 0s;
}
.card-pricing2 .pricing-content li {
    padding: 7px 0;
    font-size: 13px;
    color: grey;
    position: relative;
}
.card-pricing2 .pricing-content li i {
    /* content: "\f00c";
    font-family: 'Font Awesome 5 Solid'; */
    font-weight: 900;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 50%;
    background: #98c458;
    text-align: center;
    color: #fff;
    position: absolute;
    left: -50px;
    font-size: 9px;
}

.card-pricing2 .pricing-content li.disable i {
    background: #fe6c6c;
}

.card-pricing2.card-black {
    border-bottom-color: #1a2035;
}
.card-pricing2.card-black .price-value:before,
.card-pricing2.card-black .value:before {
    border-left-color: #1a2035;
    border-top-color: #1a2035;
}
.card-pricing2.card-black .price-value,
.card-pricing2.card-black .value {
    border-right-color: #1a2035;
}
.card-pricing2.card-black .price-value:after,
.card-pricing2.card-black .value:after {
    border-right-color: #1a2035;
}
.card-pricing2.card-black .price-value:after,
.card-pricing2.card-black .value:after {
    border-bottom-color: #1a2035;
}
.card-pricing2.card-black .value {
    color: #1a2035;
}
.card-pricing2.card-black:before {
    background: #1a2035;
}
.card-pricing2.card-black .price-value,
.card-pricing2.card-black .value {
    border-left-color: #1a2035;
}
.card-pricing2.card-primary {
    border-bottom-color: #1572e8;
}
.card-pricing2.card-primary .price-value:before,
.card-pricing2.card-primary .value:before {
    border-left-color: #1572e8;
    border-top-color: #1572e8;
}
.card-pricing2.card-primary .price-value,
.card-pricing2.card-primary .value {
    border-right-color: #1572e8;
}
.card-pricing2.card-primary .price-value:after,
.card-pricing2.card-primary .value:after {
    border-right-color: #1572e8;
}
.card-pricing2.card-primary .price-value:after,
.card-pricing2.card-primary .value:after {
    border-bottom-color: #1572e8;
}
.card-pricing2.card-primary .value {
    color: #1572e8;
}
.card-pricing2.card-primary:before {
    background: #1572e8;
}
.card-pricing2.card-primary .price-value,
.card-pricing2.card-primary .value {
    border-left-color: #1572e8;
}
.card-pricing2.card-secondary {
    border-bottom-color: #6861ce;
}
.card-pricing2.card-secondary .price-value:before,
.card-pricing2.card-secondary .value:before {
    border-left-color: #6861ce;
    border-top-color: #6861ce;
}
.card-pricing2.card-secondary .price-value,
.card-pricing2.card-secondary .value {
    border-right-color: #6861ce;
}
.card-pricing2.card-secondary .price-value:after,
.card-pricing2.card-secondary .value:after {
    border-right-color: #6861ce;
}
.card-pricing2.card-secondary .price-value:after,
.card-pricing2.card-secondary .value:after {
    border-bottom-color: #6861ce;
}
.card-pricing2.card-secondary .value {
    color: #6861ce;
}
.card-pricing2.card-secondary:before {
    background: #6861ce;
}
.card-pricing2.card-secondary .price-value,
.card-pricing2.card-secondary .value {
    border-left-color: #6861ce;
}
.card-pricing2.card-info {
    border-bottom-color: #48abf7;
}
.card-pricing2.card-info .price-value:before,
.card-pricing2.card-info .value:before {
    border-left-color: #48abf7;
    border-top-color: #48abf7;
}
.card-pricing2.card-info .price-value,
.card-pricing2.card-info .value {
    border-right-color: #48abf7;
}
.card-pricing2.card-info .price-value:after,
.card-pricing2.card-info .value:after {
    border-right-color: #48abf7;
}
.card-pricing2.card-info .price-value:after,
.card-pricing2.card-info .value:after {
    border-bottom-color: #48abf7;
}
.card-pricing2.card-info .value {
    color: #48abf7;
}
.card-pricing2.card-info:before {
    background: #48abf7;
}
.card-pricing2.card-info .price-value,
.card-pricing2.card-info .value {
    border-left-color: #48abf7;
}
.card-pricing2.card-success {
    border-bottom-color: #31ce36;
}
.card-pricing2.card-success .price-value:before,
.card-pricing2.card-success .value:before {
    border-left-color: #31ce36;
    border-top-color: #31ce36;
}
.card-pricing2.card-success .price-value,
.card-pricing2.card-success .value {
    border-right-color: #31ce36;
}
.card-pricing2.card-success .price-value:after,
.card-pricing2.card-success .value:after {
    border-right-color: #31ce36;
}
.card-pricing2.card-success .price-value:after,
.card-pricing2.card-success .value:after {
    border-bottom-color: #31ce36;
}
.card-pricing2.card-success .value {
    color: #31ce36;
}
.card-pricing2.card-success:before {
    background: #31ce36;
}
.card-pricing2.card-success .price-value,
.card-pricing2.card-success .value {
    border-left-color: #31ce36;
}
.card-pricing2.card-warning {
    border-bottom-color: #ffad46;
}
.card-pricing2.card-warning .price-value:before,
.card-pricing2.card-warning .value:before {
    border-left-color: #ffad46;
    border-top-color: #ffad46;
}
.card-pricing2.card-warning .price-value,
.card-pricing2.card-warning .value {
    border-right-color: #ffad46;
}
.card-pricing2.card-warning .price-value:after,
.card-pricing2.card-warning .value:after {
    border-right-color: #ffad46;
}
.card-pricing2.card-warning .price-value:after,
.card-pricing2.card-warning .value:after {
    border-bottom-color: #ffad46;
}
.card-pricing2.card-warning .value {
    color: #ffad46;
}
.card-pricing2.card-warning:before {
    background: #ffad46;
}
.card-pricing2.card-warning .price-value,
.card-pricing2.card-warning .value {
    border-left-color: #ffad46;
}
.card-pricing2.card-danger {
    border-bottom-color: #f25961;
}
.card-pricing2.card-danger .price-value:before,
.card-pricing2.card-danger .value:before {
    border-left-color: #f25961;
    border-top-color: #f25961;
}
.card-pricing2.card-danger .price-value,
.card-pricing2.card-danger .value {
    border-right-color: #f25961;
}
.card-pricing2.card-danger .price-value:after,
.card-pricing2.card-danger .value:after {
    border-right-color: #f25961;
}
.card-pricing2.card-danger .price-value:after,
.card-pricing2.card-danger .value:after {
    border-bottom-color: #f25961;
}
.card-pricing2.card-danger .value {
    color: #f25961;
}
.card-pricing2.card-danger:before {
    background: #f25961;
}
.card-pricing2.card-danger .price-value,
.card-pricing2.card-danger .value {
    border-left-color: #f25961;
}

@media only screen and (max-width: 991px) {
    .card-pricing2 {
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .card-pricing2:before {
        transform: skewY(-15deg);
    }
}





 /* Pour bronze */

.bronze {
  border-bottom-color: #b36b2b !important;
}

.bronze .price-value:before, .bronze .value:before {
  border-left-color: #b36b2b !important;
  border-top-color: #b36b2b !important;
}

.bronze .price-value, .bronze .value {
  border-right-color: #b36b2b !important;
}

.bronze .price-value:after, .bronze .value:after {
  border-right-color: #b36b2b !important;
}

.bronze .price-value:after, .bronze .value:after {
  border-bottom-color: #b36b2b !important;
}

.text-bronze{
  color: #b36b2b !important;
  background-color: white;
  text-align: center !important;
}
.bronze .price-value, .bronze .value {
  border-left-color: #b36b2b !important;
}
.btn-bronze{
    background-color: #b36b2b !important;
}




/* Pour argent */
.silver {
  border-bottom-color: #c0c0c0 !important;
}

.silver .price-value:before, .silver .value:before {
  border-left-color: #c0c0c0 !important;
  border-top-color: #c0c0c0 !important;
}

.silver .price-value, .silver .value {
  border-right-color: #c0c0c0 !important;
}

.silver .price-value:after, .silver .value:after {
  border-right-color: #c0c0c0 !important;
}

.silver .price-value:after, .silver .value:after {
  border-bottom-color: #c0c0c0 !important;
}

.text-silver {
  color: #c0c0c0 !important;
  background-color: white;
  text-align: center !important;
}

.silver .price-value, .silver .value {
  border-left-color: #c0c0c0 !important;
}
.btn-silver{
    background-color: #c0c0c0 !important;
}


/* Pour or */
.gold {
  border-bottom-color: #ffd700 !important;
}

.gold .price-value:before, .gold .value:before {
  border-left-color: #ffd700 !important;
  border-top-color: #ffd700 !important;
}

.gold .price-value, .gold .value {
  border-right-color: #ffd700 !important;
}

.gold .price-value:after, .gold .value:after {
  border-right-color: #ffd700 !important;
}

.gold .price-value:after, .gold .value:after {
  border-bottom-color: #ffd700 !important;
}

.text-gold {
  color: #ffd700 !important;
  background-color: white;
  text-align: center !important;
}

.gold .price-value, .gold .value {
  border-left-color: #ffd700 !important;
}
.btn-or{
    background-color: #ffd700 !important;
}



/* Pour diamant */
.diamond {
  border-bottom-color: rgb(22, 17, 17) !important;
}

.diamond .price-value:before, .diamond .value:before {
  border-left-color: rgb(22, 17, 17) !important;
  border-top-color: rgb(22, 17, 17) !important;
}

.diamond .price-value, .diamond .value {
  border-right-color: rgb(22, 17, 17) !important;
}

.diamond .price-value:after, .diamond .value:after {
  border-right-color: rgb(22, 17, 17) !important;
}

.diamond .price-value:after, .diamond .value:after {
  border-bottom-color: rgb(22, 17, 17) !important;
}

.text-diamond {
  color: rgb(22, 17, 17) !important;
  background-color: white;
  text-align: center !important;
}

.diamond .price-value, .diamond .value {
  border-left-color: rgb(22, 17, 17) !important;
}
.btn-diamond{
    background-color: rgb(22, 17, 17) !important;
}

/* Pour diamant */


.text-diamond {
  background-color: white;
  text-align: center !important;
}






/*** Plan Listing ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid #2476ac;
}

.job-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.job-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


.text-just,p{
    text-align: justify;
}