/* CSS Custom pour Juris Website */

* {
    font-family: 'Titillium Web', sans-serif;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
}

.page {
    overflow-x: hidden;
}

img {
    max-width: 100%;
}


/* Preloader */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    animation: preloaderZoom 2s ease-in-out infinite;
}

@keyframes preloaderZoom {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}


/* Header */

.main-header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.main-header.fixed-header {
    background: #fff;
    position: fixed;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}

.header-top {
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
}

.top-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.top-contact .btn-1 {
    padding: 5px 10px 5px 5px;
    min-height: 30px;
    font-size: 12px;
    min-width: max-content;
}

.top-contact .btn-1 .icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
}

.main-header.fixed-header .header-top {
    display: none;
}

.menu-box {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.menu-box .menu-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 11px;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    gap: 10px;
    border-radius: 40px;
}

.menu-box .menu-right {
    flex: 0 0 205px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    height: 80px;
    backdrop-filter: blur(30px);
    border-radius: 40px;
}

.menu-box .menu-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
    font-family: "Inter", sans-serif;
    color: #000;
    transition: all 0.3s;
}

.menu-box .menu-right:hover {
    background: #fff;
    color: #000;
}

.menu-box .menu-right:hover .icon {
    border-color: #000000;
    background: #000;
}

.menu-box .menu-right:hover .icon img {
    filter: brightness(0) invert(1);
}

.menu-box .menu-right .icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #005497;
}

.main-nav {
    padding: 0px 0;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: bold;
    display: block;
    color: #000;
    transition: color 0.3s;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: #005497;
}

.navbar-nav .nav-item .sub-menu {
    display: block;
    padding: 10px 0;
}

.navbar-nav .nav-item .sub-menu li {
    list-style: none;
}

.navbar-nav .nav-item .sub-menu li a {
    display: block;
    padding: 7px 10px 7px 20px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.navbar-nav .nav-item .sub-menu li a:hover {
    color: #005497;
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
}

.btn-header {
    background: #0082BF;
    color: white;
    padding: 6px 20px 6px 6px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    line-height: 1.2;
    min-height: 48px;
    font-size: 18px;
    gap: 10px;
}

.btn-header .content span {
    display: block;
}

.btn-header .content span:nth-child(1) {
    font-size: 12px;
}

.btn-header .icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-header.btn-header-phone {
    background: #5BB144;
}

.btn-header:hover {
    background: #005497;
    color: white;
    text-decoration: none;
}

.btn-header.btn-header-phone:hover {
    background: #007E45;
}


/* Hero Section */

.home-slide-section {
    position: relative;
}

.home-slide .item {
    height: 700px;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 400px 400px;
}

.home-slide .item .bg-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.home-slide .owl-item .item .bg-slide {
    transition: all 1s;
    transition-delay: 0.4s;
    opacity: 0;
}

.home-slide .owl-item.active .item .bg-slide {
    opacity: 1;
}

.home-slide .item .bg-slide::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #3A3A3A;
    position: absolute;
    opacity: 0.5;
    top: 0;
    left: 0;
    z-index: 1;
}

.home-slide .item .bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slide .item .container {
    position: relative;
    z-index: 1;
}

.home-slide .item .container .desc {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
    line-height: 1.2;
}

.home-slide .owl-item .item .container .desc {
    opacity: 0;
    transition: all 0.5s;
    transition-delay: 0.5s;
    transform: translateX(-50%);
}

.home-slide .owl-item.active .item .container .desc {
    opacity: 1;
    transform: translateX(0);
}

.home-slide .item .container .desc::before,
.home-slide .item .container .desc:after {
    content: '';
    width: 100px;
    height: 3px;
    background: #fff;
    display: inline-block;
}

.home-slide .item .container .title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    line-height: 1.2;
    margin-bottom: 20px;
}

.home-slide .owl-item .item .container .title {
    opacity: 0;
    transition-delay: 0.5s;
    transition: all 0.5s;
    transform: translateY(50%);
}

.home-slide .owl-item.active .item .container .title {
    opacity: 1;
    transform: translateY(0);
}

.home-slide .owl-item .item .container .btn-devis {
    opacity: 0;
    transition: all 0.5s;
    transition-delay: 0.5s;
    transform: translateY(50%);
}

.home-slide .owl-item.active .item .container .btn-devis {
    opacity: 1;
    transform: translateY(0);
}

.btn-1 {
    background: #0082BF;
    border: 0px solid #fff;
    border-radius: 25px;
    color: #fff;
    padding: 6px 20px 6px 7px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-1 .icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-2,
.wawa2 p a {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 25px;
    color: #fff;
    padding: 6px 20px 6px 7px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-2:before,
.wawa2 p::before a {
    content: '';
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: url(../images/deco-logo.svg) no-repeat center center / 27px 29px, #fff;
}

.wawa2 p a {
    color: #005497;
}

.btn-1::after,
.btn-2:after {
    content: '';
    width: 0px;
    height: 0px;
    background: #fff;
    position: absolute;
    top: var(--top);
    left: var(--left);
    transition: 1s, top 0s, left 0s;
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.btn-1::after {
    background: #005497;
}

.btn-1:hover:after,
.btn-2:hover:after {
    width: 1000px;
    height: 1000px;
}

.btn-1:hover {
    color: #fff;
}

.btn-2:hover {
    color: #0082BF;
}


/* Content Sections */

.content-section {
    padding: 80px 230px 230px;
}

.sect-title {
    text-align: center;
    margin-bottom: 40px;
}

.sect-title .sub-title {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #0082BF;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.sect-title .sub-title::before,
.sect-title .sub-title::after {
    content: "";
    width: 100px;
    height: 3px;
    background: #0082BF;
    display: inline-block;
}

.sect-title .sub-title.text-white::before,
.sect-title .sub-title.text-white::after {
    background: #fff;
}

.sect-title.text-start .sub-title::before {
    display: none;
}

.sect-title .h1,
.sect-title .h2,
.sect-title h2,
.sect-title h1 {
    color: #000;
    font-family: "Titillium Web";
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.sect-title .h1,
.sect-title .h2,
.sect-title h2 {
    font-size: 38px;
}

.sect-title h2 {
    font-size: 28px;
}

.bloc-text,
.bloc-text p {
    color: #777;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.bloc-text p:first-of-type img:first-of-type,
.bloc-text p:first-of-type img:nth-of-type(2),
.bloc-text h2:first-of-type img:first-of-type {
    display: none;
}

.bloc-text h2 {
    color: #0082BF;
    font-family: "Titillium Web";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    break-before: column;
}

.bloc-text.break-after-avoid h2 {
    break-after: avoid;
    break-before: initial;
}

.bloc-text ul {
    list-style: disc;
    padding: 0 0 0 50px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.bloc-text ul li::marker {
    color: #005497;
}


/* Engagements Section */

.engagements-section {
    background: url(../images/back-eng.jpg) no-repeat center center / cover;
    position: relative;
    z-index: 2;
    padding: 100px 0 0;
    background-attachment: fixed;
}

.engagement-btn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.engagement-btn .btn-1 {
    position: relative;
    z-index: 3;
}

.engagement-btn:before {
    content: '';
    width: 100%;
    top: 22px;
    flex: 1;
    height: 116px;
    position: relative;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    border-radius: 50px 0 0 0;
}

.engagement-btn:after {
    content: '';
    width: 100%;
    flex: 1;
    top: 22px;
    position: relative;
    height: 116px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    border-radius: 0 50px 0 0;
}


/* Feature Section */

.feature-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.feature-card .feature-img {
    position: relative;
    z-index: 3;
    height: 244px;
}

.feature-card .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card .feature-img .feature-icon {
    position: absolute;
    bottom: -51px;
    left: 50%;
    transform: translateX(-50%);
    width: 102px;
    height: 102px;
    display: flex;
    border-radius: 50%;
    border: 8px solid #fff;
    justify-content: center;
    transition: 0.5s;
    background: #0082BF;
    align-items: center;
    z-index: 2;
}

.feature-card:hover .feature-img .feature-icon {
    background: #fff;
}

.feature-card .feature-img .feature-icon img {
    width: 50px;
    height: 50px;
    filter: contrast(0) brightness(0) invert(1);
    object-fit: contain;
}

.feature-card:hover .feature-img .feature-icon img {
    filter: contrast(1) brightness(1) invert(0);
}

.feature-card .content {
    padding: 82px 20px 20px;
    position: relative;
    z-index: 1;
}

.feature-card .content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    transition: 0.5s;
    transform: scaleY(0);
    z-index: -1;
    background: #0082BF;
    top: 0;
    left: 0;
    transform-origin: center bottom;
}

.feature-card:hover .content::before {
    transform: scaleY(1);
}

.feature-card .content .title {
    color: #0082BF;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 20px;
}

.feature-card .content .desc {
    color: #777;
    font-family: "Titillium Web";
    font-size: 16px;
    font-weight: 400;
    height: 120px;
    overflow: hidden;
    line-height: 24px;
}

.feature-card:hover .content .desc,
.feature-card:hover .content .title {
    color: #fff;
}

.deco-avantage {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    z-index: 3;
    border-left: 4px solid #0082BF;
    border-right: 4px solid #0082BF;
}

.deco-avantage::before {
    content: '';
    width: 800px;
    max-width: 40vw;
    height: 600px;
    background: url(../images/tampon-1.png) left center / 100% auto no-repeat;
    position: absolute;
    top: -50%;
    left: 70%;
    z-index: -1;
}


/* Testimonials */

.testimonials-section {
    background: #fff;
}

.testimonials-carousel {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.testimonial-card {
    background: url(../images/back-testi.svg) no-repeat right bottom / 200px auto, #fff;
    border-radius: 15px;
    padding: 30px;
    display: block;
    transition: 0.5s;
}

.testimonials-carousel .stars {
    color: #FFB542;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: flex-start;
}

.testimonials-carousel .testimonial-text {
    color: #777;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 30px;
    height: 150px;
    margin-bottom: 10px;
    overflow: hidden;
}

.testimonials-carousel .testimonial-author {
    color: #777;
    font-family: "Titillium Web";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.deco-testimonials {
    position: relative;
    z-index: 3;
    padding: 80px 30px;
}

.deco-testimonials::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 60%;
    top: 0;
    left: 0;
    z-index: -1;
    border: 4px solid #0082BF;
    border-top: none;
    border-radius: 0 0 50px 50px;
}

.seo-section {
    position: relative;
    z-index: 4;
}

.seo-content::before {
    position: absolute;
    display: block;
    width: 828px;
    right: 70%;
    bottom: 65%;
    height: 629px;
    content: "";
    z-index: 3;
    max-width: 33vw;
    background: url(../images/camera.png) no-repeat center / 100% auto;
}

.seo-section .seo-content {
    position: relative;
    z-index: 1;
    background: url(../images/back-seo.svg) no-repeat right calc(100% + 90px) / 400px auto, #fff;
    border-radius: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
    padding: 50px 40px 50px 40%;
}

.seo-section .seo-content .seo-img {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px 0 0 20px;
    width: 35%;
    height: 100%;
    object-fit: cover;
}


/* Franchise Section */

.franchise-section {
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.franchise-section::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 700px;
    background: url(../images/back-franchise.jpg) no-repeat center top / cover, #3A3A3A;
    top: 0;
    left: 0;
    z-index: -1;
    background-attachment: fixed;
}

.franchise-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 40px;
}


/* Publications Section */

.publications-section {}

.publication-card {
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
    padding: 0 30px 30px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.publication-card:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 100px);
    background: #fff;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
    border-radius: 50px;
}

.publication-card:hover:before {
    background: #0082BF;
}

.publication-image {
    height: 200px;
    width: 100%;
    margin-bottom: 0px;
}

.publication-image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.publication-content {
    padding: 50px 0 0px;
    position: relative;
    z-index: 1;
}

.publication-date {
    color: #005497;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: -33px;
    left: 50%;
    transform: translateX(-50%);
    background: #0082BF;
    border: 4px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 66px;
    flex-direction: column;
    gap: 0px;
    height: 66px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    transition: 0.5s;
    z-index: 2;
}

.publication-card:hover .publication-date {
    background: #fff;
    color: #0082BF;
    border-color: #0082BF;
}

.publication-date span:first {
    font-size: 18px;
}

.publication-title {
    color: #000;
    font-family: "Titillium Web";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
    height: 84px;
    overflow: hidden;
}

.publication-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    justify-content: center;
    padding: 5px 20px 5px 5px;
    min-height: 40px;
    border-radius: 50px;
    background: #0082BF;
    transition: 0.5s;
}

.publication-link .icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    transition: 0.5s;
}

.publication-card:hover .publication-link .icon svg path {
    fill: #fff !important;
}

.publication-card:hover .publication-link .icon {
    background: #0082BF;
}

.publication-card:hover .publication-link {
    background: #fff;
    color: #0082BF;
}

.publication-card:hover .publication-title {
    color: #fff;
}


/* References */

.references-section {
    background: #D9D9D9;
    padding: 60px 0;
}

.ass-slide.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.ass-slide .ass-slider-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ass-slide .ass-slider-item img {
    width: auto;
    object-fit: contain;
}

.certification-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 20px 80px;
    background: #fff;
    border-radius: 80px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.certification-box .title {
    color: #000;
    text-align: right;
    font-family: "Titillium Web";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.certification-box .item-certification {
    display: flex;
    align-items: center;
    gap: 20px;
}

.certification-box .item-certification .desc {
    color: #777;
    text-align: right;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}


/* Footer */

.main-footer {
    background: #D9D9D9;
    color: white;
    position: relative;
    z-index: 1;
    padding: 0px 0 0px;
}

.main-footer::before {
    position: absolute;
    content: '';
    width: 100%;
    height: calc(100% - 100px);
    background: url(../images/back-footer.svg) no-repeat center bottom / contain, #3A3A3A;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 25vw 25vw 0 0;
}

.geo-slide .owl-stage-outer {
    overflow: visible;
}

.geo-slide .geo-slider-item {
    display: block;
    overflow: hidden;
    border-radius: 40px;
}

.geo-slide .geo-slider-item .img {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.geo-slide .geo-slider-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.geo-slide .geo-slider-item:hover .img img {
    transform: scale(1.1) rotate(4deg);
}

.geo-slide .geo-slider-item .content {
    padding: 15px 30px 20px;
    background: #fff;
    color: #000;
    text-align: center;
}

.geo-slide .geo-slider-item .content .title {
    color: #000;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
}

.geo-slide .geo-slider-item:hover .content {
    background: #0082BF;
    color: #fff;
}

.geo-slide .geo-slider-item:hover .content .title {
    background: #0082BF;
    color: #fff !important;
}

.text-foot {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
}

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

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    background: #000000;
}

.footer-bottom a {
    color: #fff;
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Effet de scroll sur le header */

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}


/* Dots du carousel */

.testimonials-carousel .owl-dots {
    text-align: center;
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.testimonials-carousel button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: transparent;
    display: inline-block;
    transition: all 0.3s;
    border: 1px solid #0082BF;
}

.testimonials-carousel button.owl-dot:hover,
.testimonials-carousel button.owl-dot.active {
    background: #0082BF;
}

.link-service a:hover {
    color: #0082BF;
}

.link-service a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 10px;
    text-decoration: none;
}


/* Styles pour les liens sociaux */

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-links.footer-social {
    justify-content: flex-start;
    gap: 30px;
}

.social-links.footer-social a {
    width: auto;
    border: none;
}

.social-links.footer-social a:hover {
    background: transparent;
    color: #0082BF;
}

.social-links a {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid #fff;
    color: white;
    text-align: center;
    line-height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #fff;
    transform: translateY(-2px);
    color: #0056b3;
    text-decoration: none;
}


/* Responsive utilities */

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-services {
        margin-top: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.form-newsletters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.form-newsletters input {
    width: 100%;
    border: none;
    outline: none;
    height: 50px;
    border-radius: 25px;
    border: 1px solid #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #fff;
    background: transparent;
}

.form-newsletters input::placeholder {
    color: #fff;
}

.form-newsletters .btn-1 {
    width: 100%;
    text-transform: uppercase;
    font-weight: 400;
    justify-content: flex-start;
}

.banner-section {
    position: relative;
    z-index: 1;
}

.banner-box {
    position: relative;
    z-index: 1;
}

.banner-box .img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.banner-box .img img {
    width: 100%;
    filter: brightness(0.7) contrast(0.8);
    height: 100%;
    border-radius: 0 0 25vw 25vw;
    object-fit: cover;
}


.img-box {
    max-width: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 40px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.img-box::before {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/deco-img.svg) no-repeat 97% 97% / 100px 100px;
    z-index: 1;
}

.services-section {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.services-section::before {
    content: '';
    width: 100%;
    height: 420px;
    background: url(../images/service/back-service.jpg) center center / cover no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.services-slide.owl-carousel {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.services-slide.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.services-slide .item {
    display: block;
    overflow: hidden;
    border-radius: 40px;
}

.services-slide .item .img {
    width: 100%;
    height: 300px;
}

.services-slide .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-slide .item .content {
    padding: 70px 20px 20px;
    background: #fff;
    color: #000;
    position: relative;
    z-index: 2;
    text-align: center;
    transition: 0.5s;
}

.services-slide .item:hover .content {
    background: #0082BF;
}

.services-slide .item .content .icon {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0082BF;
    border-radius: 50%;
    transition: 0.5s;
    border: 4px solid #fff;
}

.services-slide .item:hover .content .icon {
    background: #fff;
    border-color: #0082BF;
}

.services-slide .item .content .icon img {
    width: 67px;
    height: 71px;
    filter: contrast(0) brightness(0) invert(1);
    object-fit: contain;
}

.services-slide .item:hover .content .icon img {
    filter: contrast(1) brightness(1) invert(0);
}

.services-slide .item .content .title {
    color: #0082BF;
    font-family: "Titillium Web";
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.services-slide .item:hover .content .title {
    color: #fff;
}

.services-slide .owl-dots {
    text-align: center;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.services-slide .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid #000000;
}

.services-slide .owl-dots button.owl-dot.active,
.services-slide .owl-dots button.owl-dot:hover {
    background: #000;
}

.title-deco-box {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
    gap: 30px;
    max-width: calc(100% - 80px);
    margin: 0 auto;
    white-space: nowrap;
}

.title-deco-box::before {
    content: '';
    width: 100%;
    height: 150px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    border-radius: 50px 0 0 0;
    top: 63px;
    position: relative;
    z-index: -1;
}

.title-deco-box::after {
    content: '';
    width: 100%;
    height: 150px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    border-radius: 0 50px 0 0;
    z-index: -1;
    top: 63px;
    position: relative;
}

.deco-slide-box {
    position: relative;
    z-index: 3;
}

.deco-slide-box::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: calc(100% - 80px);
    height: 100%;
    border-bottom: 4px solid #0082BF;
    border-left: 4px solid #0082BF;
    border-right: 4px solid #0082BF;
    border-radius: 0 0 50px 50px;
    z-index: -1;
}

.coordonner-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px 30px;
    padding: 20px 20px;
    background: #fff;
    border-radius: 80px;
    margin-top: -90px;
    z-index: 4;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.coordonner-box .item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.coordonner-box .item .icon {
    width: 60px;
    flex: 0 0 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coordonner-box .item .content {
    flex: 1;
}

.coordonner-box .item .content .title {
    color: #0082BF;
    font-family: "Titillium Web";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 10px;
}

.coordonner-box .item .content .desc {
    color: #777;
    font-family: "Titillium Web";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.coordonner-box .item .content .desc a {
    color: #777;
}

.coordonner-box .separator {
    width: 2px;
    height: 100px;
    flex: 0 0 2px;
    background: #0082BF;
}

.form-box {
    margin: 0 auto;
    max-width: 990px;
}

.form-contact {
    padding: 30px 40px;
    margin-bottom: 150px;
    background: #0082BF;
    border-radius: 20px;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.form-contact::before {
    position: absolute;
    content: '';
    width: 606px;
    max-width: 35vw;
    height: 543px;
    background: url(../images/cont-img.png) no-repeat left center / 100% auto;
    top: 40%;
    left: 80%;
    z-index: -1;
}

.text-cont {
    color: #777;
    text-align: center;
    font-family: "Titillium Web";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.form-contact .form-control {
    background: #fff;
    border-radius: 25px;
    border: none;
    padding: 10px 20px;
    height: 66px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #0082BF;
    outline: none;
    box-shadow: none;
}

.form-contact .form-control::placeholder {
    color: #0082BF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    outline: none;
    box-shadow: none;
}

.form-contact textarea.form-control {
    height: 180px;
}

.form-contact .text-bloctel {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.form-contact .text-bloctel a {
    color: #fff;
}

.map-box {
    height: 600px;
    width: 100%;
    max-width: 100%;
    margin-top: -120px;
}

.map-box>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-expand-xl .navbar-nav {
    align-items: center;
}

.coordonner-box a {
    font-weight: bold;
}

.btn-2 .icon {
    background: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.form-devis-content fieldset .form-groupe label span {
    text-transform: uppercase;
}