/*  ===============================================
    Header
    ------------------------*/

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "Figtree", sans-serif;
    background: #1d1816;
    overflow-x: hidden;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
}

.page {
    max-width: 100vw;
    overflow: hidden;
}

.site-main {
    position: relative;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.svg);
    background-size: 140px;
}

.site-branding {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    flex: 0 0 150px;
    padding: 0px 0;
    height: 100%;
    /* padding: 14px 0; */
    background: #16100d;
    background: transparent;
    /* box-shadow: 0px 4px 20px 0px #00000040; */
    transition: 0.4s;
}

.fixed .site-branding {
    flex: 0 0 82px;
    transition: 0.4s;
    min-height: 82px;
}

.site-branding::before {
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: calc(100% + 40px);
    background: #16100d;
    box-shadow: 0px 4px 20px 0px #00000040;
    top: -30px;
    left: 0;
}

.fixed .site-branding::before {
    height: calc(100%);
    top: 0px;
    left: 0;
}

.site-branding,
.site-branding #logo-img {
    position: relative;
    top: -14px;
    transition: 0.4s;
}

.fixed .site-branding,
.fixed .site-branding #logo-img {
    position: relative;
    top: 0px;
    transition: 0.4s;
}


/* .fixed .site-branding #logo-img {
            top: 20px;
        }
         */

header .fixed .site-branding {
    display: flex;
}

.site-branding .dark,
.fixed .site-branding .default {
    display: none;
}

.site-branding .default,
.fixed .site-branding .dark {
    display: flex;
}

.site-branding #logo-img {
    width: 100%;
}

header {
    border-bottom: none;
    position: relative;
}

header .to-contact {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 30px;
    border: 3px solid #092331;
    background: #0b6880;
    z-index: 2;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
}

header .to-contact img {
    transition: 0.4s;
    filter: contrast(0) brightness(10);
}

header .to-contact:hover img {
    transition: 0.4s;
    filter: none;
}

.ttm-stickable-header {
    display: flex;
    align-items: center;
    background: transparent;
    width: 100%;
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.6s;
}

.ttm-stickable-header.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 99;
    transition: 0.5s;
    /* box-shadow: 0px 4px 24px 0px #035C531A; */
    animation: slide-down 0.6s linear;
}

@keyframes slide-down {
    0% {
        transform: translateY(-80px);
    }
    100% {
        transform: translateY(0px);
    }
}

.fixed .right-burger {
    filter: contrast(0) brightness(10);
}

.fixed .espace-client .icon img {
    filter: contrast(0) brightness(10);
}

.ttm-stickable-header.fixed-header .site-right {
    margin-bottom: 0;
    background: none;
}

.ttm-header-top-wrapper {
    position: relative;
}

.menu-box {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    background: transparent;
    gap: 30px;
    /* justify-content: space-between; */
    padding: 0;
}

.right-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}

.right-btn .profil img {
    transition: 0.5s;
    filter: contrast(0) brightness(10);
}

.right-btn .profil:hover img {
    transition: 0.5s;
    filter: none;
}

.fixed .menu-box {
    border-bottom: none;
}


/** SiteNavigation(Menu) **/

.menu-box .site-right {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 26px;
    width: max-content;
    padding: 0px 10px;
    border: none;
    backdrop-filter: blur(40px);
    background: #ffffff33;
    width: 100%;
}

.menu-box .site-right .left-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    width: 100%;
}

.menu-box .right-social {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-contact .box-contact {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.top-contact .right-social {
    display: flex;
    gap: 15px;
}

.top-contact .item-contact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-contact .item-contact .icon {
    display: flex;
    padding: 0px;
    justify-content: center;
    align-items: center;
    background: transparent;
    position: relative;
    gap: 5px;
}

.top-contact .item-contact .icon::after {
    position: relative;
    right: 0;
    top: 0;
    content: "";
    width: 4px;
    height: 15px;
    background: url("../images/logo-icon.svg") 50% / cover no-repeat;
}

.top-contact .item-contact .description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.top-contact .item-contact .sub-title {
    color: #fff;
    font-family: "Poppins";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

.top-contact .separator {
    width: 1px;
    height: 14px;
    opacity: 1;
    background: #fff;
}

.top-contact .item-contact .detail {
    color: #f4e9db;
    font-family: "Figtree";
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0%;
    transition: 0.4s;
}

.top-contact .item-contact a.detail:hover {
    transition: 0.4s;
    color: #eb6e23;
}

.top-contact .item-contact .description,
.menu-box .left-contact .description {
    color: var(--Grey-White, #fff);
    text-align: center;
    font-family: "Poppins";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.6px;
    line-height: normal;
    position: relative;
}

.top-contact .item-contact.client .description {
    font-weight: 700;
}

.top-contact .item-contact .description {
    color: #fff;
}


/* .top-contact .item-contact:hover a.description {
                transition: 0.4s;
                color: #213A72;
            } */

.menu-box .site-right .site-contact {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding: 15px 0;
}

.top-contact .item-contact,
.menu-box .site-right .left-contact .item-contact {
    display: flex;
    align-items: center;
}

.site-navigation {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.site-navigation .menu {
    width: 100%;
}

.ttm-header-style-infostack #site-header-menu .container {
    padding: 0;
}

#site-header-menu #site-navigation .menu ul li ul>li:not(:last-child) {
    /* border-bottom: 1px solid #aaaaaa75; */
}

#site-header-menu #site-navigation .menu ul {
    padding: 0px;
    margin: 0px;
}

.ttm-menu-toggle {
    float: right;
}

.ttm-menu-toggle input[type="checkbox"] {
    display: none;
}

#site-header-menu #site-navigation .menu>ul>li {
    display: inline-block;
    position: relative;
}

#site-header-menu #site-navigation .menu ul li:hover>ul {
    opacity: 1;
    display: block;
    visibility: visible;
    height: auto;
    transform: scaleY(1) translateZ(0px);
}

#site-header-menu #site-navigation .menu ul ul>li {
    position: relative;
}

#site-header-menu #site-navigation .menu ul ul ul {
    position: absolute;
    left: 100%;
    top: 0;
}

#site-header-menu #site-navigation .menu>ul>li>a {
    color: #f4e9db;
    font-family: "Figtree";
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

#site-header-menu #site-navigation ul ul li {
    position: relative;
    border-bottom: 0px solid #e8e8e8;
}

#site-header-menu #site-navigation .menu ul li>ul li>a {
    margin: 0;
    display: block;
    padding: 15px 20px;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    height: auto;
    line-height: 1.2;
}

#site-header-menu #site-navigation .menu ul>li>ul li.has-submenu>a:after {
    content: "\f105";
    position: absolute;
    background-color: transparent;
    right: 12px;
    top: 16px;
    display: inline-block;
    font-family: "FontAwesome";
    font-size: 15px;
    margin-left: 4px;
    opacity: 0.8;
}

i.add {
    font-size: 12px;
    padding-left: 3px;
}

#site-header-menu #site-navigation .menu ul li a span {
    /* padding: 1px 3px 2px;
        border-radius: 2px;
        font-size: 10px;
        line-height: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-left: 7px; */
}


/* Button Effect 1 Styles */

.button-effect-1 {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
    line-height: 1.05;
}

.button-effect-1 .btn-text {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.button-effect-1 .btn-text-1 {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.button-effect-1 .btn-text-2 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.button-effect-1:hover .btn-text-1 {
    transform: translateY(-100%);
}

.button-effect-1:hover .btn-text-2 {
    transform: translateY(0);
}


/* Link Effect 1 Styles */

.link-effect-1 {
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s ease;
}

.link-effect-1 span.text-1 {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.link-effect-1 span.text-2 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.link-effect-1:hover span.text-1 {
    transform: translateY(-100%);
}

.avantage .link-effect-1:hover span.text-2 {
    transform: translateY(0);
}

.espace-client .has-link .link-effect-1:hover span.text-2 {
    padding-left: 25px;
}

.espace-client .item-link {
    color: #1d1d1b;
    font-family: "Archivo";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social.contact {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #56b05e;
    border-radius: 5px;
}

.header-contact-top .right-contact .social img {
    position: relative;
    top: -2px;
}

.header-contact-top .item {
    color: #ffffff;
}

.contact .top-contact {
    display: none !important;
}

.top-contact {
    max-height: 44px;
    align-items: center;
    background: #16100d;
    display: flex;
    position: relative;
    z-index: 2;
    padding: 15px 0;
}

.top-contact .item-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
}

.top-contact .item img {
    filter: none;
    transition: 0.25s;
}

.top-contact .item {
    background: transparent;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.top-contact .item .description {
    color: #ffffffb2;
    font-family: "Barlow";
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0%;
    vertical-align: middle;
}

.top-contact .item .description a {
    font-weight: 600;
    letter-spacing: 0%;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: var(--color-green-62, #7ebf7c);
    transition: 0.3s;
}

.top-contact .item .description a:hover {
    color: #fff;
    transition: 0.3s;
}

.top-contact .social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-contact .info-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.top-contact .social-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.top-contact .info-contact .item {
    display: flex;
    gap: 10px;
}

.info-contact .item .icon {
    background: #f6f2ed;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-contact .item .description {
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.top-contact .info-contact .item .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.top-contact .info-contact .item .description .detail {
    color: #cdcdcd;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    transition: 0.3s;
}

.top-contact .info-contact .item .description a.detail:hover {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    transition: 0.3s;
}

.contact-top a {
    color: #ffffff;
}

.contact-top .one-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-top .item,
.contact-xl .item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-top .item .description,
.contact-xl .item .description {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: "Montserrat";
}

.contact-top .item.client .description {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

.contact-top .item .description a,
.contact-xl .item .description a {
    color: #1d1d1b;
    text-decoration: none;
    font-weight: 700;
}

.contact-top .item .description a:hover,
.contact-top .item .description span,
.contact-xl .item .description a:hover,
.contact-xl .item .description span {
    color: inherit;
}

.contact-top {
    border: none;
    justify-content: space-between;
}

.contact-top .item .description span,
.contact-top a {
    color: #ffffff;
}

.vertical-separator {
    position: relative;
    width: 1px;
    height: 50px;
    display: flex;
    align-items: center;
    background: #70a4467a;
}

header .espace-client {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

header .espace-client .box-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

header .espace-client .item {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .espace-client .btn-icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: #9cac88;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

header .espace-client .btn-icon:hover {
    background: #495636;
}

header .espace-client .btn-1.social {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: transparent;
    min-width: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #55b7d9;
}


/* Button Effect 1 Styles */

.button-effect-1 {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
    line-height: 1.05;
}

.button-effect-1 .btn-text {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.button-effect-1 .btn-text-1 {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.button-effect-1 .btn-text-2 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.button-effect-1:hover .btn-text-1 {
    transform: translateY(-100%);
}

.button-effect-1:hover .btn-text-2 {
    transform: translateY(0);
}

.icon-box {
    overflow: hidden;
    position: relative;
    display: inline-flex;
    transition: all 0.3s ease-out 0s;
    transform: rotate(-45deg);
}

.icon-first {
    transition: all 0.3s ease-out 0s;
}

.box-parent:hover .icon-first,
.btn-1:hover .icon-first {
    transform: translateX(140%);
}

.box-parent:hover .icon-second,
.btn-1:hover .icon-second {
    transform: translateX(0);
}

.icon-second {
    position: absolute;
    transform: translateX(-140%);
    transition: all 0.3s ease-out 0s;
}

.btn-1 {
    height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0px 18px;
    gap: 6px;
    border: none;
    border-radius: 0px;
    background: linear-gradient(90deg, #eb6e23 0%, rgba(235, 110, 35, 0) 100%);
    color: #f4e9db;
    text-align: center;
    font-family: "Caveat";
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0%;
    line-height: normal;
    min-width: max-content;
    transition: all 0.95s ease;
    -moz-transition: all 0.95s ease;
    -ms-transition: all 0.95s ease;
    -o-transition: all 0.95s ease;
    overflow: hidden;
    position: relative;
    z-index: 2;
}


/*             
        
        .btn-1 img {
            transition: .3s ease;
            filter: brightness(0) invert(1);
        }
        
        .btn-1:hover img {
            transition: .3s ease;
            filter: none;
        }
         */

.box-btn {
    position: relative;
    width: max-content;
}

.btn-1::before {
    position: absolute;
    width: 100%;
    height: 0%;
    content: "";
    background: linear-gradient(90deg, rgba(235, 110, 35, 0) 0%, #eb6e23 100%);
    z-index: -1;
    top: auto;
    bottom: 0;
    right: 0;
    left: auto;
    transition: all 0.8s ease;
    opacity: 0;
}

.btn-1:hover::before {
    opacity: 1;
    height: 100%;
    left: 0;
    right: auto;
    transition: 0.8s;
}

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

.service .btn-1 {
    height: 55px;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
}

.home-slide {
    position: relative;
    background: #fff;
}

.home-slide .video {
    position: absolute;
    display: block;
    z-index: 2;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.active .zoom-in-box {
    transform-origin: center center;
    /* apply the animation */
    /* animation: zoomIn 3s ease forwards; */
    transition-delay: 1.8s;
}

.active .zoom-in-box,
.aos-animate .zoom-in-box {
    animation: zoomIn 6s ease infinite alternate;
    transition-delay: 1.8s;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.home-slide .slide-navigation {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    /* height: 0; */
    justify-content: space-between;
}

.box-slide-navigation {
    display: flex;
    align-items: center;
    gap: 14px;
}

.slide-navigation .home-nav {
    padding: 0;
    width: 24px;
    height: 24px;
    opacity: 1;
    border-radius: 50%;
    border: none;
    background: transparent;
    justify-content: center;
    outline: none;
}

.service .slide-navigation .btn-1 {
    border: 1px solid #fff;
}

.home-slide .content-slide {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.home-slide .owl-item {
    overflow: hidden;
}

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

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

.home-slide .box-slide .hs-dots {
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.home-slide .item-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.interne .home-slide .item-slide {
    height: 436px;
    min-height: inherit;
}

.home-slide .item-slide::before {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    z-index: 1;
    position: absolute;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.home-slide.interne.contact .item-slide .img-home {
    object-position: right;
}

.home-slide .z-top {
    z-index: 2;
}

.home-slide .item-slide .content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
}

.home-slide .item-slide .img-home {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slide .item-slide .navigation {
    display: flex;
    gap: 15px;
    position: relative;
    align-items: center;
}

.home-slide .item-slide .navigation .item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 14px;
    font-family: "Urbanist";
}

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

.home-slide .item-slide .bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: 0.5s;
}

.home-slide .owl-item.active .item-slide .bg-slide img {
    transform: scale(1.05);
}

.home-slide .item-slide .sub-title {
    color: #7ebf7c;
    font-family: "Barlow";
    font-size: 12px;
    font-style: normal;
    letter-spacing: 2px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.home-slide .item-slide .title {
    color: #fff;
    font-family: "Figtree";
    font-style: normal;
    font-weight: 800;
    line-height: 1.1;
    font-size: clamp(50px, 2.2vw + 1.65rem, 75px);
    margin-bottom: 20px;
}

.home-slide .item-slide .title span {
    color: #7ebf7c;
    display: block;
}

.home-slide .item-slide .description {
    color: #fff;
    text-align: center;
    font-family: "Lato";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.home-slide .item-slide .description a {
    color: #fff;
    transition: 0.4s;
    position: relative;
}

.home-slide .item-slide .description a::before {
    background: #fff;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    content: "";
    width: 0%;
    height: 1px;
    transition: 0.4s;
    opacity: 0;
}

.home-slide .item-slide .description a:hover::before {
    transition: 0.4s;
    opacity: 1;
    width: 100%;
}

.home-slide .item-slide .description span {
    color: #e6a74a;
}

.banniere .title.aos-animate span::before,
.home-slide .item-slide .title.aos-animate span::before {
    width: 100%;
    transition: 1.5s 1s;
}

.banniere .title span:hover::before .home-slide .item-slide .title.aos-animate span::before {
    transition: 1.5s;
    transition-delay: 1s;
    width: 100%;
}

.home-slide .item-slide .img-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.interne .home-slide .item-slide .img-slide {
    max-height: calc(100vh);
    min-height: 440px;
}

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

.home-slide .item-slide .carte {
    position: relative;
    width: 100%;
}

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

.home-slide .item-slide .content .link .deco-left {
    position: absolute;
    width: 0;
    left: 5px;
    top: 5px;
    opacity: 0;
    transform: 0.5s;
}

.home-slide .item-slide .content .link .deco-right {
    position: absolute;
    width: 0;
    right: 5px;
    bottom: 5px;
    opacity: 0;
    transform: 0.5s;
}

.home-slide .item-slide:hover .content .link {
    background: #433630;
    transform: 0.5s;
}

.home-slide .item-slide:hover .content .link .deco-right,
.home-slide .item-slide:hover .content .link .deco-left {
    opacity: 1;
    width: auto;
    transition: 0.7s;
}

.home-slide .item-slide .description span {
    font-weight: 700;
}

.home-slide .item-slide .more {
    font-family: "Figtree";
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #ffffff;
}


/* .home-slide .item-slide .more img {
    filter: brightness(0);
    } */

.home-slide .item-slide:hover .more .item .img,
.home-slide .item-slide .more .item .img-hover {
    display: none;
}

.home-slide .item-slide:hover .more .item .img-hover {
    display: block;
}

.home-slide .owl-item .item-slide .more,
.home-slide .owl-item .item-slide .title,
.home-slide .owl-item .item-slide .btn-slide {
    transform: translateX(-50px);
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transition-delay: 0.6s;
}

.home-slide .owl-item .item-slide .btn-slide {
    transition: 1.55s;
    transition-delay: 0.6s;
}

.btn-slide {
    display: flex;
    align-items: center;
    gap: 28px 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 20px;
}

.btn-slide .btn-1 {
    height: 48px;
    transition: 0.3s;
    gap: 10px;
}

.home-slide .owl-item.active .item-slide .more,
.home-slide .owl-item.active .item-slide .title,
.home-slide .owl-item.active .item-slide .btn-slide {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.home-slide .owl-item.active .item-slide .title {
    color: #f4e9db;
}

.home-slide .owl-carousel .owl-dots.disabled {
    display: block;
}

.home-slide .box-dot {
    position: absolute;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    z-index: 2;
    left: 0;
    bottom: 30px;
}

.home-slide .home-slide-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    height: max-content;
    left: 0px;
    bottom: 0;
    padding: 0;
    z-index: 6;
    pointer-events: all;
    border-radius: 0px;
    background: transparent;
    padding: 15px;
}

.owl-dot:focus {
    outline: none;
}


/* .owl-dot {
            outline: none;
            border: none;
            position: relative;
            background: #FFFFFF33;
            flex: 1;
            height: 1px;
            padding: 0;
            transition: 0.5s;
            border-radius: 4px;
        }
        
        .owl-dot.active {
            outline: none;
            height: 2px;
            background: #F4E9DB;
            transition: 0.5s;
        }
        
        .hone-slide-dots .dot-number {
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
        }
        
        .home-slide-dots {
            display: flex;
            gap: 20px;
        }
        
        .home-slide-dots .owl-dot {
            position: relative;
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        
        .home-slide-dots .dot-number {
            margin-bottom: 8px;
            font-family: 'Figtree';
            font-weight: 700;
            font-size: 30px;
            line-height: 100%;
            letter-spacing: 0%;
            color: #F4E9DB;
        }
        
        .home-slide-dots .progress {
            width: 0;
            height: 3px;
            background: #FFFFFF33;
            transition: .9s;
        }
        
        .home-slide-dots .owl-dot {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            flex-direction: column-reverse;
        }
        
        .progress-container {
            width: 100%;
            height: 2px;
            background: blue;
            overflow: hidden;
        }
        
        .progress {
            width: 0;
            height: 100%;
            background: #000;
        } */

.home-slide-dots {
    display: flex;
    gap: 20px;
}

.home-slide-dots .dot-number {
    margin-bottom: 8px;
    font-family: "Figtree";
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #f4e9db;
}

.home-slide .owl-dot {
    background: transparent;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    outline: none;
    flex: 1;
    border: none;
}

.progress-container {
    width: 100%;
    height: 2px;
    background: #ffffff33;
    margin-top: 8px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: #f4e9db;
}

.owl-dot.active .progress {
    width: 100%;
    transition: width 5s linear;
    /* même durée que autoplayTimeout */
}

.home-slide .owl-nav {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 870px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 0 50px;
    text-align: center;
}

.home-slide .owl-nav .owl-next,
.home-slide .owl-nav .owl-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    color: #fff;
}

.formulaire .list-form-group {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
}

.flaticon-fast-forward:before {
    content: "\f0a9";
}

.devis {
    position: relative;
    background: transparent;
    overflow-y: visible;
}

.devis .item-adresse {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.devis .title-label {
    font-family: "Figtree";
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #f4e9db;
}

.devis .formulaire {
    position: relative;
    z-index: 9;
    background: transparent;
    padding: 30px 0;
}

.devis .box-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 clamp(20px, 1.5vw + 0.5rem, 50px);
    border-right: 1px solid var(--Grey-10, #eaebee);
    border-left: 1px solid var(--Grey-10, #eaebee);
}

.box-form.type {
    border-left: none;
}

.devis .nice-select {
    border: none;
    border: 1px solid var(--color-spring-green-89, #e0e6e4);
    background: #f7faf9;
    padding: 0 15px;
    border-radius: 20px;
    width: 100%;
}

.nice-select .option {
    color: var(--Grey-100, #283550);
    font-family: "Barlow";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    display: flex;
    border-bottom: 1px solid var(--Grey-10, #eaebee);
    align-items: center;
}

.nice-select .option.disabled {
    display: none;
}

.nice-select .option:hover {
    /* border-bottom: 1px solid var(--Grey-10, #EAEBEE); */
    background: #f7faf9;
}

.nice-select:after {
    top: calc(50% - 3px);
    right: 15px;
    width: 8px;
    height: 8px;
    background: transparent;
}

.nice-select.open .list {
    width: 100%;
}

.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f7faf9;
    display: none;
}

.devis .nice-select .current {
    color: #1a2e2b;
}

.devis .nice-select.open {
    border-bottom: none;
    transition: 0.4s;
    border-radius: 20px 20px 0 0;
}

.nice-select .list {
    margin-top: 0;
    border-radius: 0 0 5px 5px;
}

.devis .hr-form {
    background: #d9d9d9;
    width: 100%;
    height: 1px;
    margin: 25px 0;
}

.devis .hr-form.secondary {
    width: calc(100% - 95px);
}

.devis .group {
    display: flex;
    align-items: flex-start;
    gap: 0px;
    position: relative;
}

.devis .title-devis {
    font-family: "Caveat";
    font-weight: 400;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0px;
    text-align: center;
    vertical-align: middle;
    color: #f4e9db;
}

.devis .title-devis span {
    font-weight: 700;
}

.devis .form-label {
    color: #7ebf7c;
    text-transform: uppercase;
    text-align: left;
    font-family: "Barlow";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

.devis .form-devis {
    background: transparent;
    padding: 0;
    width: max-content;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 5px;
    background: transparent;
}

.devis .center-block {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    /* gap: 20px; */
}

.devis .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
}

.devis .form-group.xl-form button,
.devis .form-group.xl-form {
    width: 100%;
}

.devis .next {
    color: #5e6b73;
    text-align: start;
    font-family: "Archivo";
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    padding-left: 28px;
}

.devis .form-group button {
    border: 2px solid #ffffff4d;
    gap: 10px;
    display: flex;
    min-width: 190px;
    height: 49px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 0px;
    background: transparent;
    outline: none;
    transition: 0.5s;
}

.devis .form-group button img {
    filter: none;
    transition: 0.3s;
}

.devis .form-group button.active img,
.devis .form-group button:hover img {
    filter: contrast(0) brightness(10);
    transition: 0.3s;
}

.devis .form-group button.active {
    background: linear-gradient(90deg, #eb6e23 0%, rgba(235, 110, 35, 0) 100%);
    border: 2px solid rgba(255, 255, 255, 0.502);
    transition: 0.6s;
}

.devis .form-group button.active .label-form,
.devis .form-group button:hover .label-form {
    transition: 0.3s;
    color: #fff;
}

.devis .box-input {
    position: relative;
}

.devis .box-input .icon-input {
    position: absolute;
    left: 15px;
    top: 50%;
    z-index: 1;
}

.devis .group {
    display: flex;
    align-items: flex-start;
    position: relative;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.devis .group.left::before {
    position: absolute;
    content: "";
    z-index: 1;
    background: #fff;
    height: 80px;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 55px);
}

.devis input {
    text-align: center;
    border: 1px solid #1f8536;
    background: #fff;
    box-shadow: 0 4 4 -1 rgb(12, 12, 13, 0.5) inset;
    height: 49px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.devis .submit {
    outline: none;
    text-align: center;
    justify-content: center;
    width: 100%;
    border: none;
    transition: 0.5s;
}

.devis .submit:hover svg path {
    fill: #0b6880;
    transition: 0.4s;
}

.interne .devis .next {
    text-align: center;
}

.formulaire .label-form {
    color: #f4e9db;
    font-family: "Figtree";
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0px;
    vertical-align: middle;
    line-height: normal;
}

.box-form-group {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.content-img-text {
    position: relative;
    padding: clamp(30px, 5vh + 2.5rem, 115px) 0;
    background-color: #1d1816;
}

.content-img-text .box-img {
    width: 100%;
    /* background: url('../images/content.jpg') 50% / 100% no-repeat;
            background-attachment: fixed;
         */
}

.content-img-text .box-img {
    position: relative;
    overflow: hidden;
    height: 390px;
}

.content-img-text .box-img img {
    position: absolute;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
}

.content-img-text .contactus {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: clamp(30px, 1.5vw + 1rem, 60px);
}

.interne .content-img-text .img {
    width: 100%;
    height: 100%;
    max-height: 600px;
}

.interne .content-img-text .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.text-sticky-img {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.text-sticky-img .col-img {
    width: 100%;
    max-width: 33%;
}

.text-sticky-img .col-text {
    width: 100%;
    max-width: 60%;
}

.home .content-img-text {
    position: relative;
    z-index: 2;
}

.home .content-img-text .container {
    position: relative;
    z-index: 4;
}

.content-img-text .text-principal {
    position: relative;
}

.content-img-text .img-principal .content-bottom {
    position: absolute;
    z-index: 5;
    right: 0px;
    bottom: 0;
    width: 370px;
    height: 308px;
}

.content-img-text .img-principal img {
    border-radius: 24px;
    overflow: hidden;
}

.secteur {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 7vw + 1.5rem, 95px) 0 clamp(40px, 4vw + 1.5rem, 75px) 0;
}

.box-secteur {
    position: relative;
    margin-bottom: 55px;
    padding-top: clamp(50px, 3vw + 2rem, 100px);
    height: 100%;
}

.secteur .box-img {
    width: 100%;
    height: 670px;
    overflow: hidden;
    /* background: url("../images/secteur.jpg") 50% / 100% no-repeat; */
    /* background-attachment: fixed; */
}

.secteur .box-img img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    /* background: url("../images/secteur.jpg") 50% / 100% no-repeat; */
    /* background-attachment: fixed; */
}

.box-formed {
    border-radius: 30px 0;
    background: #e9e9e9;
    overflow: hidden;
    padding: 50px;
}

.interne .box-formed {
    padding: 35px;
    border-radius: 30px;
    background: #e9e9e9;
    overflow: visible;
}

.bandeau-texte {
    overflow: hidden;
    width: 100%;
    background: #035c53;
    padding: 14px 0;
}

.bandeau-texte .item {
    color: #fff;
    font-family: "Barlow";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: 0.96px;
    display: flex;
    align-items: center;
    position: relative;
}

.bandeau-texte .item::before {
    position: relative;
    content: "*";
    width: 8px;
    height: 15px;
    top: 0;
    left: -24px;
    color: var(--color-green-62, #7ebf7c);
}

.list-texte {
    display: flex;
    width: max-content;
    gap: 48px;
    animation: slidehorizontal 22s linear infinite;
}

@keyframes slidehorizontal {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.secteur.content-img-text .text-principal {
    max-width: 100%;
}

.content-img-text .img-content>img {
    width: 100%;
    object-fit: cover;
    z-index: 3;
    position: relative;
}

.contact-form .img-content {
    width: 100%;
    position: relative;
    height: 100%;
}

.contact-form .img-content img {
    width: 100%;
    height: 100%;
}

.contact-form .img-content::before,
.secteur.content-img-text .img-principal .img-content::before {
    left: 20px !important;
    top: 20px !important;
    transform: none;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

.secteur.content-img-text .text-principal {
    padding: 0;
    background: transparent;
}

.secteur.content-img-text {
    position: relative;
    overflow: hidden;
    padding: clamp(75px, 15vh + 5rem, 120px) 0 0 0;
}

.secteur .img-content {
    position: relative;
}

@keyframes bgScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.content-img-text .img-principal {
    position: relative;
}

.content-img-text .img-content {
    position: relative;
    border-radius: 0px;
}

.content-img-text .img-box .deco-left {
    display: flex;
    width: 190px;
    height: 190px;
    border-radius: 400px;
    border: 5px solid var(--Grey-White, #fff);
    background: var(--Primary-100, #213a72);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    position: absolute;
    left: -100px;
    top: -100px;
    z-index: 5;
}

@media only screen and (max-width: 1199px) {
    .content-img-text .img-box .deco-left {
        display: flex;
        width: 100px;
        height: 100px;
        left: -50px;
        top: -50px;
        border-color: #7fadb9;
    }
    .content-img-text .img-content .deco-left img {
        width: 55px;
        height: 55px;
    }
}

@media only screen and (max-width: 1599px) {
    .content-img-text .img-box .deco-left {
        left: -55px;
        top: -72px;
    }
}

.content-img-text .img-content .deco-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    z-index: 2;
    top: -120px;
    right: -60px;
}

.rotate-img {
    animation-timing-function: linear;
    animation: spinPause 12s linear infinite;
}

@keyframes spinPause {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.content-img-text .img-content .deco-circle .center {
    position: absolute;
    width: 180px;
    height: 180px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-move {
    animation: bgMove 5s ease-in-out infinite alternate;
}

@keyframes bgMove {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(0.95) translate(0, -6%);
    }
}

.content-img-text .img-content .deco-top {
    position: absolute;
    width: 60%;
    height: 160px;
    content: "";
    z-index: -1;
    opacity: 0.28;
    background: linear-gradient( 0deg, rgba(31, 102, 46, 0.67) 0%, rgba(31, 102, 46, 0.67) 100%);
    top: -80px;
    left: -80px;
}

.content-img-text .bottom-content {
    position: absolute;
    z-index: 1;
    width: 322px;
    height: 324px;
    bottom: 0;
    right: 0;
    z-index: 5;
}

.content-img-text .right-content {
    position: absolute;
    right: -70px;
    bottom: -187px;
    z-index: 1;
    width: 440px;
    height: 284px;
    border: 20px solid #eee;
}

.content-img-text .right-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ariane {
    position: relative;
    padding: 20px 0;
}

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

.sect-title .h3,
.sect-title .h2,
.sect-title h1 {
    color: #f4e9db;
    font-family: "Figtree";
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0%;
    font-size: clamp(19px, 1.2vw + 0.9rem, 32px);
    margin-bottom: 20px;
}

.sect-title .h3 span,
.sect-title h1 span,
.sect-title .h2 span {
    color: #7ebf7c;
}

.sect-title .sub-title {
    color: #eb6e23;
    text-align: center;
    font-family: "Caveat";
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 25px;
}

.sect-title .sub-title::after {
    background: url("../images/picto/deco-sub-title.svg") 50% / cover no-repeat;
    position: absolute;
    width: 6px;
    height: 0px;
    opacity: 0;
    content: "";
    z-index: 1;
    bottom: 0;
    left: calc(100% + 10px);
    transition: 0.5s;
}

.sect-title .sub-title::before {
    position: absolute;
    width: 0%;
    height: 1px;
    content: "";
    z-index: 1;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.5s;
    background: linear-gradient( 90deg, rgba(235, 110, 35, 0) 0%, #eb6e23 25%, #f7cc2a 51.44%, #eb6e23 78.37%, rgba(235, 110, 35, 0) 100%);
}

.sect-title .aos-animate .sub-title::before,
.sect-title.aos-animate .sub-title::before {
    transition: 0.5s;
    transition-delay: 1.2s;
    opacity: 1;
    width: 100%;
}

.sect-title .aos-animate .sub-title::after,
.sect-title.aos-animate .sub-title::after {
    transition: 0.5s;
    transition-delay: 1.4s;
    opacity: 1;
    height: 22px;
}

.sect-title .description {
    color: #f4e9db;
    font-family: "Figtree";
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.4;
}

.title-decored {
    font-family: "Caveat";
    font-weight: 400;
    font-size: 50px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #ba9a57;
    position: relative;
}

.content-img-text .title-decored {
    text-align: right;
    left: 220px;
    z-index: 6;
}

.secteur .title-decored {
    text-align: left;
    left: -140px;
    z-index: 6;
}

.bloc-text>p {
    color: #f4e9db;
    font-family: "Figtree";
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.5;
}

.logo-hr {
    width: 100%;
    padding: 65px 0;
}

.engagement {
    position: relative;
    padding: clamp(40px, 7vw + 2.5rem, 95px) 0;
    overflow: hidden;
}

.list-engagement {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
}

.list-engagement .item {
    padding: 20px 30px;
    background: transparent;
    position: relative;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    min-height: max-content;
    height: 100%;
    transition: 0.4s;
    border-radius: 30px;
    border: 5px solid #e9e9e9;
    min-height: 100%;
}

.list-engagement .item:hover {
    transition: 0.4s;
    cursor: pointer;
    border-color: #0b6880;
    border-radius: 20px 0;
}

.list-engagement .item .icon svg {
    width: 50px;
    height: 50px;
}

.list-engagement .item .icon svg path {
    fill: initial;
    transition: 0.4s;
}

.list-engagement .item:hover .icon svg path {
    fill: #0b6880;
    transition: 0.4s;
}

.list-engagement .item .title {
    color: #1c1c1c;
    font-family: "Syne";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.list-engagement .item .description {
    color: #555;
    font-family: "Syne";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.card-engagement .icon {
    position: relative;
    z-index: 1;
}

.engagement.contact .card-engagement .icon {
    position: relative;
    background: #fff;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: inherit;
    right: inherit;
}

.engagement.contact .card-engagement .detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


/* ----------------------animmm----------------------- */

@-webkit-keyframes clip-a-z {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    45% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes clip-a-z {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    45% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.clip-a-z {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    -webkit-animation: clip-a-z 2s;
    animation: clip-a-z 2s;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@keyframes clip-x {
    0% {
        opacity: 0.2;
        width: 20px;
    }
    50% {
        opacity: 9;
        width: 40px;
    }
    100% {
        opacity: 1;
        width: 88px;
    }
}

.clip-x {
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    -webkit-animation: clip-x 0.8s;
    animation: clip-x 0.8s;
    -webkit-animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
    animation-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.animated {
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fade-right {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}

.fade-left {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0);
    }
}


/* -----------------------paiement---------------------- */

.paiement {
    position: relative;
}

.box-paie {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(96, 202, 243, 0.43) 100%), rgba(255, 255, 255, 0.75);
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.25);
    padding: 30px;
    bottom: -40px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* -------------------temoigange----------------------- */

.temoignage {
    z-index: 2;
    position: relative;
    padding: clamp(35px, 5vw + 2rem, 80px) 0;
}

.temoignage .texte-btn {
    display: flex;
    align-items: center;
    gap: 15px;
}

.temoignage .text {
    font-family: "Barlow";
    font-weight: 400;
    font-size: 13px;
    color: var(--color-cyan-19, #035c53);
    line-height: normal;
    vertical-align: middle;
}

.temoignage .box-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}

.temoignage .box-img .img {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
}

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

.temoignage .box-img .number-note {
    color: #fff;
    text-align: center;
    font-family: "Unbounded";
    font-size: clamp(30px, 2.5vw + 1.5rem, 50px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

.temoignage .list-star {
    display: flex;
    align-items: center;
    gap: 5px;
}

.list-star .item {
    width: 28px;
    height: 28px;
    background: url("../images/picto/star.svg") 50% / cover no-repeat;
}

.temoignage .box-text {
    background: #0b6880;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    height: 100%;
    padding: 0 40px;
}

.temoignage .secondary .box-text {
    background: #092331;
}

.temoignage .box-img .description,
.temoignage .box-text .description {
    color: #fff;
    font-family: "Syne";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.temoignage .box-text .icon-profil {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.temoignage .box-text .icon-profil .description {
    text-align: left;
}

.temoignage .box-text .icon-profil .name {
    color: #fff;
    font-family: "Syne";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

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

.temoignage-slide {
    position: relative;
    z-index: 2;
}

.temoignage-slide::before {
    position: absolute;
    content: "";
    z-index: 1;
    background: #fff;
    width: 100vw;
    height: 100%;
    right: calc(100% + 1px);
    top: 0;
}

.item-temoignage {
    border: 1px solid var(--Grey-10, #eaebee);
    background: var(--Grey-White, #fff);
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    padding: 50px clamp(25px, 2vw + 1.5rem, 60px);
    position: relative;
}

.item-temoignage::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 20px;
    background: url("../images/quote.svg") 100% / cover no-repeat;
    z-index: 1;
    top: 40px;
    right: 55px;
}

.item-temoignage .description {
    color: var(--Grey-100, #283550);
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.56px;
}

.item-temoignage .profil {
    display: flex;
    gap: 25px;
    align-items: center;
}

.item-temoignage .info-profil {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-temoignage .profil .icon {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
}

.item-temoignage .profil .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-temoignage .name {
    color: var(--Grey-100, #283550);
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.56px;
}

.item-temoignage .date {
    color: var(--Grey-60, #7e8696);
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.56px;
}


/* ---------------------------valeur---------------- */

.bottomed::before {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient( 270deg, rgba(235, 110, 35, 0) 0%, #eb6e23 25%, #f7cc2a 50%, #eb6e23 75%, rgba(235, 110, 35, 0) 100%);
    left: 0;
    bottom: 2px;
    content: "";
}

.valeur {
    position: relative;
    z-index: 2;
    padding: clamp(40px, 6vh + 1.5rem, 85px) 0;
    background: #1d1816;
}

.item-valeur .description {
    font-family: "Figtree";
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.4;
    color: #f4e9db;
}

.item-valeur .title {
    font-family: "Barlow";
    font-family: "Caveat";
    font-weight: 700;
    font-size: 20px;
    color: #eb6e23;
    line-height: 1;
}

.item-valeur {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
    width: 100%;
    position: relative;
    transition: 0.6s;
    background: #16100d;
    box-shadow: 0px 10px 20px 0px #0000001a;
}

.item-valeur:hover {
    transition: 0.6s;
    transform: translateY(-15px);
    cursor: pointer;
}

.item-valeur .icon {
    margin-left: auto;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 50%;
    background: transparent;
    transition: 0.3s;
}


/* -------------------------------servicess-------------------- */

.light .sect-title .sub-title::before {
    filter: contrast(0) brightness(10);
}

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

.bg-service::before {
    background: linear-gradient(0deg, #7ebf7c, #7ebf7c), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-service .img {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    background: url("../images/bg-serv.png") 50% / cover no-repeat;
}

.bg-service img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.z-2 {
    z-index: 2;
}

.service {
    position: relative;
    padding: clamp(50px, 7.5vh + 2.2rem, 115px) 0;
    overflow: visible;
    background: #16100d;
    margin-top: 30px;
    z-index: 1;
}

.service::after,
.service::before {
    background: #281d17;
    position: absolute;
    content: "";
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px 30px 0 0;
    width: calc(100% - 50px);
    height: 15px;
    z-index: 2;
}

.service::after {
    bottom: calc(100% + 15px);
    width: calc(100% - 100px);
    background: #34261e;
}

.service-slide {
    position: relative;
    left: 2px;
}

.service .item-slide {
    position: relative;
    transition: 0.6s;
    z-index: 4;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service .item-slide:hover {
    position: relative;
    transition: 0.5s;
    border-radius: 20px 0;
}

.service .item-slide .right-arrow {
    position: absolute;
    z-index: 4;
    right: 24px;
    top: 24px;
    border: 1px solid #ffffff38;
    background: #ffffff21;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    transition: 0.4s;
}

.service .item-slide .right-arrow img {
    filter: brightness(10) invert(0);
}

.service .item-slide:hover .right-arrow {
    transition: 0.4s;
    background: var(--color-cyan-19, #035c53);
}

.service .item-slide .icon {
    display: block;
    width: max-content;
    height: 32px;
}

.service .item-slide .icon img {
    height: 100%;
}

.service .item-slide:hover .icon svg path {
    transition: 0.4s;
    fill: #0b6880;
}

.service .item-slide .img {
    width: 100%;
    height: 400px;
    top: 0;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    transition: 0.7s;
    border-radius: 0px;
    z-index: 1;
}

.service .item-slide .img::before {
    position: absolute;
    z-index: 0;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: 0.7s;
    background: #00000033;
}

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

.service .item-slide .description {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    position: relative;
}

.service .item-slide .description .deco {
    position: absolute;
    content: "";
    background: #ffffff1f;
    z-index: 1;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 1px;
    transition: 0.4s;
}

.service .item-slide .description .deco::before {
    position: absolute;
    content: "";
    background: #ffffff1f;
    z-index: 1;
    bottom: 0px;
    right: 0;
    left: auto;
    width: 0%;
    height: 100%;
    transition: 0.4s;
}

.service .item-slide:hover .description .deco::before {
    transition: 0.4s;
    width: 100%;
    right: auto;
    left: 0;
    background: #035c53;
}

.service .item-slide:hover .description::before {
    transition: 0.4s;
    background: var(--color-cyan-19, #035c53);
}

.service .item-slide .title {
    font-family: "Figtree";
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0%;
    color: #f4e9db;
    background: linear-gradient(90deg, #eb6e23 0%, rgba(235, 110, 35, 0) 100%);
    z-index: 2;
    padding: 5px 10px;
    transition: 0.5s;
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    transition: 0.6s;
    transform: translateY(25px);
}

.service .item-slide:hover .title {
    opacity: 1;
    transition: 0.6s;
    transform: translateY(0px);
}

.service .item-slide .description {
    width: 100%;
    padding: 0 20px;
    position: absolute;
    display: flex;
    justify-content: space-between;
    top: 20px;
    z-index: 2;
    left: 0;
}

.service .item-slide .description .icon {
    width: 34px;
    height: 34px;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #16100d;
    transition: 0.4s;
    position: relative;
}

.service .item-slide:hover .description .icon {
    background: #f4e9db;
    transition: 0.4s;
}

.service .item-slide .description .icon::before {
    width: 100%;
    height: 100%;
    background: url("../images/picto/s-arrow.svg") 50% / auto no-repeat;
    filter: invert(1);
    transition: 0.4s;
    position: absolute;
    content: "";
}

.service .item-slide:hover .description .icon::before {
    filter: none;
    transition: 0.4s;
}

.service .item-slide .type {
    max-height: 34px;
    font-family: "Figtree";
    font-weight: 500;
    font-size: 14px;
    color: #f4e9db;
    line-height: 1;
    letter-spacing: 0%;
    background: #16100d;
    padding: 10px;
    opacity: 1;
    transition: 0.4s;
}

.service .item-slide:hover .type {
    transition: 0.4s;
    color: #050105;
    background: #f4e9db;
}

.service .item-slide .link {
    color: #535353;
    font-family: "Lato";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.service .container {
    position: relative;
}

.service .owl-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0px 0 20px 0;
}

.owl-carousel .owl-stage {
    /* display: flex;
                align-items: center;
                justify-content: center; */
    display: block;
}

.service .slide-nav {
    display: flex;
    gap: 10px;
}

.service .slide-nav button {
    border: none;
    outline: none;
    background: transparent;
    transition: 0.4s;
}

.service .slide-nav button:hover {
    transition: 0.4s;
    transform: scale(1.2);
}

.service .z-top {
    z-index: 9;
}

.service .box-service {
    margin: 0 auto;
    position: relative;
    width: auto;
}

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

.service .box-slide {
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
    width: 100%;
}

.navigation {
    font-family: "Figtree";
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #f4e9db;
}

.service .slide-navigation {
    position: absolute;
    left: 50%;
    width: auto;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    bottom: 0;
    transform: translateX(-50%);
}

.slide-navigation .slide-nav,
.slide-navigation .service-nav {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 0%;
    border: none;
    outline: none;
    transition: 0.6s;
}

.slide-navigation .service-nav img {
    transition: 0.6s;
    transform: none;
}

.slide-navigation .service-nav:hover img {
    transition: 0.6s;
    transform: scale(1.1);
}

.slide-navigation .service-nav {
    padding: 0;
    background: transparent;
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-navigation .service-nav img {
    filter: none;
}

.slide-navigation .service-nav:hover img {
    filter: contrast(0) brightness(10);
}

.avis {
    position: relative;
    padding: clamp(50px, 7vw + 2.5rem, 115px) 0;
}

.box-avis {
    background: #16100d;
    padding: 0 50px 0 85px;
    display: flex;
    gap: 40px;
    position: relative;
    max-width: 930px;
    min-height: 400px;
    margin: 0 auto;
}

.avis .deco-dots {
    position: absolute;
    z-index: -1;
    top: -50px;
    left: -55px;
}

.box-avis .box-img {
    margin: -40px 0;
    min-width: 320px;
}

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

.box-avis .box-content {
    position: relative;
    margin: auto 0;
}

.avis .bg-avis img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.avis .list-btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: max-content;
}

.avis .avis-slide .list-star {
    display: flex;
    align-items: center;
    gap: 6px;
}

.avis-slide .list-star i {
    width: 24px;
    font-size: 24px;
    background: transparent;
    color: #565944;
}

.avis-slide .list-star i.filled:before {
    content: "\f005";
}

.avis-slide .name {
    color: #1e1e1e;
    font-family: "Roboto Mono";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 130% */
}

.avis-slide .description {
    color: #1e1e1e;
    font-family: "Roboto";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 130% */
}

.paiement {
    display: flex;
    align-items: center;
    position: relative;
    margin: 35px 0;
}

.paiement .bg-paiement {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: calc(100% - 100px);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.list-paie {
    display: flex;
    z-index: 2;
}

.item-paie {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 18px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    max-width: 430px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
}

.item-paie:hover {
    cursor: pointer;
}

.item-paie::before {
    position: absolute;
    content: "";
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(223, 94, 46, 0.3);
    transition: 0.6s;
    opacity: 0;
}

.item-paie:hover::before {
    transition: 0.6s;
    opacity: 1;
}

.item-paie .title {
    color: #fff;
    text-align: center;
    font-family: "Bai Jamjuree";
    font-size: clamp(24px, 1.7vw + 1.1rem, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

.item-paie .description {
    color: #fff;
    text-align: center;
    font-family: "Lato";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.item-paie .icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(47, 154, 128, 0.8);
}

.paiement .bg-paiement img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paiement .box-content {
    position: relative;
    width: 100%;
    padding: 80px 0;
    z-index: 2;
}

.paiement .box-content::before {
    position: absolute;
    background: #215299;
    z-index: 1;
    width: calc(100% - 30%);
    height: 100%;
    top: 0;
    left: 0;
    content: "";
}

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


/* Link Effect 2 Styles */

.link-effect-2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.link-effect-2 .text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.link-effect-2 .text1 {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.link-effect-2 .text2 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.link-effect-2:hover .text1 {
    transform: translateY(-100%);
}

.link-effect-2:hover .text2 {
    transform: translateY(0);
}

.avantage {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    border-top: 1px solid #e38456;
    border-bottom: 1px solid #e38456;
}

.description-site {
    font-family: "Montserrat";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    background: var(--bm-1, linear-gradient(180deg, #1e4155 0%, #e38456 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-left: 65px;
}

.description-site::before {
    position: absolute;
    width: 50px;
    height: 50px;
    content: "";
    background: url("../images/logo-icon.svg") 50% / cover no-repeat;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
}

.description-site span {
    background: #e38456;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.avantage .item-avantage {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    border-left: 1px solid #1e4155;
    padding: 30px;
    position: relative;
    min-height: 100%;
    z-index: 2;
    position: relative;
    transition: 0.6s;
}

.item-avantage .icon img {
    animation: rotateSoft 15s ease-in-out infinite alternate;
}

@keyframes rotateSoft {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
        /* PAUSE */
    }
    80% {
        transform: rotate(-180deg);
    }
    100% {
        transform: rotate(-180deg);
        /* PAUSE */
    }
}

.col-xl-4:last-child .item-avantage {
    border-right: 1px solid #1e4155;
}

.avantage .item-avantage:hover {
    transition: 0.6s;
    cursor: pointer;
}

.avantage .item-avantage::before {
    /* opacity: 0.78; */
    background: url("../images/bg-avantage.png") lightgray 50% / cover no-repeat;
    content: "";
    width: 100%;
    height: 0;
    z-index: -1;
    position: absolute;
    transition: 0.6s;
    top: auto;
    bottom: 0;
    left: 0;
}

.avantage .item-avantage:hover::before {
    transition: 0.6s;
    height: 100%;
    top: 0;
    bottom: auto;
}

.item-avantage .title {
    color: #000;
    font-family: "Bebas Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    transition: 0.5s;
}

.item-avantage .description {
    color: #1e4155;
    text-align: center;
    font-family: "Montserrat";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    transition: 0.5s;
}

.item-avantage:hover .description,
.item-avantage:hover .title {
    transition: 0.5s;
    color: #fff;
}

.item-avantage:hover .icon img {
    filter: contrast(0) brightness(10);
    color: #fff;
}

.item-avantage .icon img {
    filter: none;
}

.avantage .owl-stage-outer {
    overflow: visible;
}

.avantage .owl-stage,
.avantage .owl-stage-outer {
    height: 100%;
    max-height: 60px;
}

.avantage-slide {
    display: flex !important;
    align-items: center;
    width: 100%;
    gap: 50px;
    flex-shrink: 0;
}

.avantage-slide .item-slide {
    border-radius: 10px;
    background: #f8f8f8;
    box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.25);
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.avantage-slide .item-slide .icon {
    border-radius: 5px;
    background: #d9d9d9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avantage .link-effect-1 span.text-2,
.avantage .item-slide .title {
    color: #1d1d1b;
    font-family: "Archivo";
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.avantage .owl-carousel .owl-stage {
    transition-timing-function: linear !important;
}

.carouselTicker__item {
    flex: 0 0 auto;
    display: inline-block;
    float: none;
    white-space: nowrap;
}

.carouselTicker__item .tag-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid black;
    /* background-color: white; */
    color: var(--tc-neutral-900);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.carouselTicker__item .tag-item:hover .number {
    color: black;
}

.carouselTicker__item .tag-item .number {
    font-weight: 600;
    color: black;
    transition: all 0.3s ease-in-out;
}

.copyright a:hover,
.contact-footer .item a:hover,
.footer a.link:hover,
footer a:hover {
    /*  */
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.title-footer {
    color: #ba9a57;
    font-family: "Caveat";
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0%;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact .sub-title-footer {
    color: #0b6880;
}

.sub-title-footer::before {
    position: relative;
    z-index: 1;
    left: 0;
    top: 0;
    background: url("../images/picto/logo-icon.svg") 50% / cover no-repeat;
    width: 23px;
    height: 20px;
    content: "";
}

.box-ended .sub-title-footer::before {
    left: calc(100% + 15px);
}

.link-diag,
.link-diag a {
    font-size: 15px;
    font-weight: 600;
    font-family: "Urbanist";
    color: rgba(113, 117, 128, 255);
    text-decoration: none;
}

.actualite {
    position: relative;
    padding: clamp(50px, 5.5vh + 4rem, 100px) 0;
    overflow: visible;
}

.item-actu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    overflow: hidden;
    transition: 0.6s;
    z-index: 1;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    transition: 0.4s;
}

.item-actu:hover {
    transition: 0.4s;
}

.item-actu .img {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.item-actu .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s;
    transform: none;
}

.item-actu:hover .img img {
    transition: 0.7s;
    transform: scale(1.1);
}

.item-actu .title {
    font-family: "Figtree";
    font-weight: 700;
    font-size: 22px;
    transition: 0.5s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--WHITE, #ffffff);
    transition: 0.4s;
}

.item-actu:hover .title {
    color: #ba9a57;
    transition: 0.4s;
}

.item-actu .detail {
    color: var(--Color-Scheme-1-Text, #000);
    font-family: "Poppins";
    font-size: var(--Text-Sizes-Text-Regular, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    transition: 0.5s;
}

.item-actu .description {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: 0.6s;
    padding: 0;
    z-index: 2;
    opacity: 1;
    transition: 0.4s;
}

.item-actu .date {
    display: flex;
    font-family: "Figtree";
    font-weight: 500;
    font-size: 16px;
    transition: 0.5s;
    background: linear-gradient(90deg, #eb6e23 0%, rgba(235, 110, 35, 0) 100%);
    color: #fff;
    transition: 0.5s;
    padding: 5px 15px;
    position: absolute;
    z-index: 1;
    top: 25px;
    left: 25px;
}

.hover-underline {
    position: relative;
    text-decoration: none;
    display: inline-block;
    margin: 15px 0;
}

.hover-underline .h4 {
    position: relative;
    transition: all 0.3s ease;
    display: inline;
}

.hover-underline .line-wrapper {
    position: relative;
    display: inline;
}

.hover-underline .line-wrapper::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #263237 0%, #9fb4c0 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.box-title-hover:hover .hover-underline .h4 {
    transform: translateY(-1px);
}

.box-title-hover:hover .hover-underline .line-wrapper::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hover-underline .line-wrapper::after {
    transform-origin: right;
}

.box-actu .title-actu {
    color: #1d1d1b;
    font-family: "Archivo";
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    padding: 15px 0;
}

.list-actu .category,
.box-actu .category {
    color: #444;
    font-family: "Archivo";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    border-radius: 20px;
    background: #fff;
    padding: 0 10px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.list-actu .category {
    color: #fff;
    border-radius: 20px;
    background: #9fb4c0;
}

.list-actu .date,
.box-actu .date {
    color: #444;
    font-family: "Archivo";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.box-actu {
    display: flex;
    height: 100%;
}

.footer .service-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 25px;
}

.box-centered .link {
    text-transform: uppercase;
}

.footer .box-centered .service-footer {
    gap: 15px;
}

.box-ended {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer .box-ended .service-footer .link {
    font-weight: 600;
}

.footer .service-footer.styled .link {
    position: relative;
    display: flex;
    align-items: center;
    width: max-content;
    gap: 10px;
}

.footer .service-footer.styled .link .icon {
    min-width: 24px;
}

.footer .service-footer.styled .link:hover::before {
    opacity: 1;
    transition: 0.6s;
}

.footer .service-footer.styled a:hover {
    color: #0b6880;
    transition: 0.3s;
}

.footer .service-footer .link {
    color: #fff;
    font-family: "Figtree";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer .service-footer a:hover,
.footer a:hover {
    color: #eb6e23;
    transition: 0.3s;
}


/* .footer .key {
            font-weight: 600;
        } */

.item-adresse {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Figtree";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0%;
    color: #ffffff;
}

.item-adresse .sub-title {
    font-family: "Figtree";
    font-weight: 700;
    font-size: 16px;
}

.item-adresse .detail {
    color: #ffffff;
    transition: 0.3s;
}

.devis .item-adresse a.detail:hover {
    color: #eb6e23;
    transition: 0.3s;
}

.footer .list-logo {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

.footer .box-logo {
    display: flex;
    padding: 16px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    background: transparent;
    width: 150px;
    height: 80px;
    padding: 0 10px;
}

.footer .box-logo.not-filled {
    border: 1px solid #ffffff;
}

.footer .box-logo.secondary {
    width: 100%;
    gap: 10px;
    display: flex;
    padding: 15px;
    flex-wrap: inherit;
}

.certification {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
}

.certification .title {
    font-family: "Roboto";
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
}

.certification .detail {
    font-family: "Roboto Mono";
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.box-logo img {
    width: 100%;
    width: auto;
    max-width: 200px;
}

.hr-page {
    position: relative;
    z-index: 2;
    height: 3px;
    background: #0b6880;
    width: 100vw;
    margin: 0 0 clamp(40px, 3vw + 3.5rem, 80px) 0;
}

.hr-page span {
    width: 20px;
    height: 20px;
    aspect-ratio: 1/1;
    background: #0b6880;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    left: 0%;
    transition: 0.8s;
}

.hr-page.aos-animate span {
    transition: 1.4s;
    left: 20%;
    transition-delay: 0.8s;
}

.hr-page.aos-animate span.secondary {
    left: 80%;
    transition: 1.9s;
    transition-delay: 0.8s;
}

.hr {
    width: 100%;
    position: relative;
    height: 1px;
    border-bottom: 1px solid #f7f7f7;
    margin: 20px 0;
}

.footer .push-top {
    padding-top: 200px;
}

.footer .bottom-footer {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 0;
    bottom: 0px;
    right: 0;
}

.to-top {
    border: none;
    outline: none;
    border-radius: 6px;
    padding: 0;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}

.btn-1.to-top:hover {
    color: #df5e2e;
}

.box-copyright {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-copyright .arobiz {
    color: #4b9baf;
}

.copyright {
    background: transparent;
    /* border-top: 1px solid #FFFFFF0F; */
    padding: 20px 0;
    transition: 0.3s;
    margin-top: 35px;
}

.box-copyright .left,
.copyright .right {
    display: flex;
    align-items: center;
    gap: 10px 15px;
    color: #fff;
    font-family: "Figtree";
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}

.copyright .underlined {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.copyright a {
    color: #fff;
    transition: 0.3s;
}

.link-footer a {
    color: #d4d5d9;
    font-family: "Montserrat";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

.copyright .left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px 8px;
}

.arobiz {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arobiz .text {
    color: #fff;
}

.arobiz img {
    position: relative;
    top: -3px;
}

.z-topped {
    z-index: 5;
    position: relative;
}

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


/* ------------------footers----------------------------- */

.footer {
    position: relative;
    background: #050105;
    z-index: 1;
}

.footer .link-social {
    background: #eb6e23;
    width: 27px;
    height: 27px;
    border-radius: 6px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.footer .link-social:hover {
    transition: 0.5s;
    transform: scale(1.2);
}

.info-footer {
    font-family: "Figtree";
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0%;
    color: #ffffff;
}

.info-footer a {
    transition: 0.3s;
    color: #ffffff;
}

.prefooter {
    background: #16100d;
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.bg-prefooter {
    position: absolute;
    width: 100%;
    /* max-width: 280px; */
    max-width: 300px;
    height: calc(100% + 90px);
    z-index: 2;
    background: url("../images/bg-news.png") 50% / cover no-repeat;
    right: 0;
    top: -75px;
}

.footer .accord-form {
    font-family: "Figtree";
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.4;
    color: #f4e9db;
    vertical-align: middle;
}

.contact .footer {
    margin-top: 0;
}

.footer .bg-footer {
    position: absolute;
    z-index: -1;
    background: url("../images/bg-footer.svg") top / cover no-repeat;
    width: 100%;
    height: calc(100% - 80px);
    bottom: 0px;
}

.footer .presentation {
    color: #fff;
    font-family: "Lato";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.footer .box-info {
    border-radius: 14px;
    background: #e6a74a;
    padding: 0 14px;
    margin: 0 auto;
    max-width: 868px;
    display: flex;
    gap: 0;
    top: -65px;
    position: relative;
}

.footer .box-info .item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    position: relative;
    transform: none;
    transition: 0.6s;
}

.footer .box-info .item:hover {
    cursor: pointer;
}

.footer .box-info .item.active {
    border-radius: 14px;
    background: #2f9a80;
    transform: translateY(-18px);
    transition: 0.6s;
}

.footer .box-info .item .title {
    color: #fff;
    font-family: "Lato";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer .box-info .item .description {
    color: #fff;
    font-family: "Lato";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer .box-info .item .icon {
    display: flex;
    width: 30px;
    height: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin-left: auto;
}

.contact-footer {
    display: flex;
    gap: 15px;
    flex-direction: column;
    color: #ffffff;
}

.contact-footer .item-contact-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-footer .item-contact-footer .icon {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.contact-footer .item-contact-footer .description {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-footer .item-contact-footer .title {
    color: var(--Grey-20, #d4d7dc);
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.56px;
}

.contact-footer .item-contact-footer .detail {
    color: var(--Grey-White, #fff);
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.56px;
    transition: 0.4s;
}

.contact-footer .item-contact-footer a.detail:hover {
    color: #7fadb9;
    transition: 0.4s;
}

.contact-footer .item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.contact-footer .item img {
    transition: 0.3s;
    filter: none;
}

.contact-footer .item:has(a:hover) img {
    transition: 0.3s;
    filter: contrast(0) brightness(10);
}

.contact-footer .item .description {
    display: flex;
    align-items: center;
    color: #3e4344;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    transition: 0.4s;
}

.contact-footer .item .title {
    color: #1b2e5f;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
}

.contact-footer .item .detail {
    color: #1b2e5f;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.btn-1.btn-social,
.footer .btn-1.btn-social {
    display: flex;
    align-items: center;
    background: #0077b5;
    border: none;
    justify-content: center;
    padding: 0;
}

.btn-1.btn-social img,
.footer .btn-1.btn-social img {
    filter: none;
    transform: none;
}

.footer .btn-1 .icon {
    width: 64px;
    height: 64px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
}

.footer .btn-1 .description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.footer .btn-1 .description .title {
    color: #f7ad00;
    text-align: center;
    font-family: "Montserrat";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

.footer .btn-1 .description .detail {
    color: #fff;
    text-align: center;
    font-family: "Montserrat";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    height: max-content;
    transition: 0.3s;
}

.footer a.btn-1 .description .detail:hover {
    color: #f7ad00;
    transition: 0.3s;
}

.footer .logo-footer {
    display: flex;
    align-items: center;
    height: auto;
    width: 100%;
    max-width: 220px;
}

.footer .logo-footer img {
    width: 100%;
}

.footer .row-bordered {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--Grey-60, #7e8696);
}

.footer .hr-footer {
    background: var(--Grey-60, #7e8696);
    height: 1px;
    width: 100%;
    margin: 35px 0 10px 0;
}

.footer .list-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.list-social .item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    opacity: 1;
    border-radius: 50%;
    border: 1px solid #ffffff;
    padding: 0;
}

.footer .container {
    position: relative;
}

.footer .newsletter {
    position: relative;
}

.box-newsletter {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 0px;
    background: transparent;
}

.box-newsletter .submit {
    display: flex;
    padding: 0 18px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
    outline: none;
}

.box-newsletter .submit::before {
    background: linear-gradient(90deg, rgba(235, 110, 35, 0) 0%, #eb6e23 100%);
}

.box-newsletter input {
    background: transparent;
    border: none;
    height: 40px;
    width: 100%;
    outline: none;
}

.box-newsletter input,
.box-newsletter input::placeholder {
    font-family: "Figtree";
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    color: #f4e9db;
}

.newsletter input:focus {
    outline: none;
}

.footer .box-newsletter {
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 15px;
    gap: 0;
    border-radius: 0px;
    overflow: hidden;
    background: transparent;
    border: 1px solid #ba9a57;
}

.footer .newsletter .submit {
    outline: none;
    border: none;
    background: #7ebf7c;
    border-radius: 0;
    padding: 0 15px;
    height: 40px;
}

.footer .newsletter .submit:hover img {
    transition: 0.4s;
    filter: none;
}

.footer .newsletter .submit:hover img {
    filter: none;
    transition: 0.3s;
}

.footer .newsletter .btn-1::after,
.footer .newsletter .btn-1::before {
    border-radius: 0;
    background: #d9d9d9;
}

.img-animate,
.actualite .box-actu .img img,
.content-img-text .img-content>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.box-animate:hover .img-animate,
.actualite .box-actu:hover .img img,
.content-img-text .img-content:hover>img {
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-img-text .img-principal .img-content {
    width: 100%;
    position: relative;
}

.content-img-text .img-principal .img-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-img-text .img-principal .img-content .box-circle-img {
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
}

.list-logo .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 15px;
    border-radius: 13px;
    background: #eee2e2;
    max-width: 195px;
}

.list-logo .item .title {
    color: #134a8b;
    font-family: "Montserrat";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}

.content-img-text.referencement .img-principal .box-img .bottom-content {
    width: 140px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #bcc5b1;
    border-top-right-radius: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 45px 25px 22px 25px;
}

.partenaire {
    position: relative;
    padding: 25px 0 clamp(35px, 7vw + 2.5rem, 110px) 0;
}

.list-partenaire {
    display: flex;
    width: 100%;
    max-width: 350px;
    justify-content: space-between;
    margin: 0 auto;
}

.accordion {
    width: 100%;
}

.accordion-item {
    position: relative;
    margin-bottom: 10px;
    transition: max-height 0.7s ease-out;
}

.accordion-item .title {
    color: #1d1d1b;
    font-family: "Archivo";
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.accordion-item .description {
    color: #444;
    font-family: "Archivo";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 35px;
    width: 100%;
    border-radius: 20px;
    border: 1px solid #d9d9d9;
    background: #f8f8f8;
    cursor: pointer;
    text-align: left;
    outline: none;
    min-height: 60px;
}

.accordion-header:focus {
    border: none;
    outline: none;
}

.accordion-content {
    padding: 10px;
    display: none;
    background-color: #f8f8f8;
    transition: max-height 0.7s ease-out;
    position: relative;
    z-index: 1;
    padding: 0px 35px 20px 35px;
}

.arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.accordion-header.active {
    border: none;
    border-radius: 0;
}

.accordion-item:has(.accordion-header.active) {
    border-radius: 20px;
    border: 1px solid #444;
    background: #fff;
    overflow: hidden;
    transition: 0.7s ease-out;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
}

.accordion-header.active+.accordion-content {
    display: block;
    transition: 0.7s;
}

.prefooter .list-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

a.item-contact:hover .description {
    transition: 0.3s;
    color: #1f662e;
}

.list-contact .item-contact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.old-home-presentation {
    padding: 40px 0;
}

.banniere {
    position: relative;
    height: 365px;
    background: #f9f9f9;
}

.banniere .title {
    color: #000;
    font-family: "Rajdhani";
    font-size: clamp(35px, 4vw + 1rem, 69px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
}

.banniere .title span {
    color: #227530;
    width: max-content;
    position: relative;
    margin: 0 auto;
}

.banniere .content {
    position: relative;
    z-index: 4;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.banniere .to-bottom {
    bottom: 0;
    display: flex;
    align-items: flex-end;
}

.banniere .ban-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    overflow: hidden;
}

.banniere .ban-img .banniere-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .content-img-text.interne {
    padding-bottom: 120px;
} */

.content-img-text.interne .left-content {
    position: absolute;
    top: 50%;
    width: 147px;
    height: 146px;
    left: -115px;
    transform: translateY(-50%);
}

.list-item-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 25px;
    gap: 20px 35px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
}

.contact-info .link {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: #035c53;
    font-family: "Barlow";
    font-style: normal;
    line-height: 1.2;
    padding-bottom: 24px;
    border-bottom: 1px solid #e6e6e6;
    padding-left: 16px;
    width: 100%;
    transition: 0.4s;
}

.contact-info a.link:hover {
    transition: 0.4s;
    color: #7ebf7c;
}

.contact-info .link:last-child {
    border: none;
    padding-bottom: 0;
}

.contact-info .link .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #7ebf7c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info .link img {
    filter: contrast(0) brightness(10);
}

.contact-info .item-info:hover a.description,
.contact-info .item-info:hover .link {
    transition: 0.6s;
    color: #227530;
}

.hr-contact {
    background: #d9d9d9;
    width: 100%;
    height: 1px;
    margin: 0 0 25px 0;
}

.contact-info .submit {
    border-radius: 10px;
    background: #1d1d1b;
    height: 64px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
    color: #fff;
    min-width: 200px;
}

.contact-info .box-input {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.contact-info .box-input .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.box-input input {
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    background: #fff;
    height: 70px;
    padding: 0 20px 0 50px;
    width: 100%;
    outline: none;
}

.contact-info .accord-form {
    color: #b0b0b0;
    font-family: "Archivo";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.contact-info .accord-form a {
    color: #b0b0b0;
}

.box-input.textarea {
    width: 100%;
    margin-bottom: 15px;
}

.box-input.textarea .icon {
    top: 20px;
    transform: none;
}

.box-input textarea {
    border-radius: 10px;
    border: 1px solid #d9d9d9;
    background: #fff;
    min-height: 220px;
    padding: 20px 20px 0 50px;
    width: 100%;
    outline: none;
}

.row-form-contact {
    padding-top: clamp(35px, 7vh + 2rem, 70px);
}

.contact-info .item {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}

.contact-info .item .title {
    color: #263237;
    font-family: "Archivo";
    font-size: clamp(21px, 1.5vw + 1rem, 40px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.contact-info .item .description {
    color: #444;
    font-family: "Archivo";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
}

.infos {
    position: relative;
    z-index: 4;
    margin-top: -65px;
}

.infos .list-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.infos .list-info .item .sub-title {
    color: #1e1e1e;
    font-family: "Lato";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.infos .list-info .item .detail {
    color: #1e1e1e;
    font-family: "Lato";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    transition: 0.5s;
    position: relative;
}

.infos .list-info .item .detail::before {
    position: absolute;
    width: 0%;
    height: 1px;
    background: #1e1e1e;
    top: calc(100% + 2px);
    left: 0;
    opacity: 0;
    content: "";
}

.infos .list-info .item .detail:hover::before {
    transition: 0.5s;
    opacity: 1;
    width: 100%;
}

.infos .list-info .item {
    position: relative;
    transition: 0.6s;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #fefbf8;
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.1);
    gap: 20px;
}

.infos .list-info .item::before {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    border-radius: 14px;
    background: #e6a74a;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.6s;
}

.infos .list-info .item:hover::before {
    transition: 0.6s;
    opacity: 1;
    transform: rotate(5deg);
}

.infos .list-info .item .icon {
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid #2f9a80;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.infos .list-info .item:hover .icon {
    border: 1px solid #df5e2e;
    background: rgba(223, 94, 46, 0.8);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.map {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
}

.map-box {
    width: 100%;
    height: 100%;
}

.map .deco-point {
    position: relative;
    max-height: 270px;
    left: -50px;
    z-index: -1;
    top: -45px;
}

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

.box-contact-info {
    background: #f7faf9;
    border-radius: 24px;
    padding: 45px;
}

.box-contact-info .logo-footer {
    width: 100%;
    max-width: 290px;
    margin-left: 16px;
    display: flex;
    justify-content: center;
}

.box-contact-info .logo-footer img {
    width: 100%;
}

.contact-form {
    position: relative;
    padding: clamp(40px, 8vh + 5rem, 125px) 0;
    background: #221e1c;
    overflow: visible;
}

.contact-form::before,
.contact-form .deco-bottom {
    background: #eef4f9;
}

.contact-form .label-form {
    color: var(--Grey-100, #283550);
    font-family: "Poppins";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.56px;
    text-transform: uppercase;
}

.info-contact {
    position: relative;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-contact .item-contact {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.info-contact .item-contact .icon {
    width: 89px;
    height: 89px;
    border-radius: 10px;
    background: var( --justdiagnostics, linear-gradient(180deg, #1f662e 0%, #67a97b 100%));
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-contact .item-contact .description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-contact .item-contact .description .title {
    color: #4e4d4d;
    font-family: "Playfair Display";
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.info-contact .item-contact .description .detail {
    color: #4e4d4d;
    font-family: "Poppins";
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    transition: 0.3s;
}

.info-contact .item-contact .description a.detail:hover {
    transition: 0.3s;
    color: #1f662e;
}

.contact-form .label {
    color: #000;
    font-family: "Roboto";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.contact-form .title-form {
    color: #f7f7f7;
    font-family: "Oswald";
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

.contact-form .info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .info .item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 25px;
}

.contact-form .info .item .icon {
    width: 51px;
    height: 51px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b2e5f;
    flex-shrink: 0;
    position: relative;
    top: -25px;
}

.contact-form .info .item .icon img {
    position: relative;
    right: -18px;
    top: 7px;
}

.contact-form .info .item .description {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form .info .item .title {
    color: #1b2e5f;
    font-family: "Oswald";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.contact-form .info .item .detail {
    color: #1b2e5f;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    transition: 0.3s;
}

.info .item a.detail:hover {
    transition: 0.3s;
    color: #ffc620;
}

.contact-form .box-contact {
    position: relative;
    background: var(--Grey-White, #fff);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -80px;
    z-index: 5;
}

.contact-form .item-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box-input {
    display: flex;
    position: relative;
    align-items: center;
}

.box-input .icon {
    position: absolute;
    top: 15px;
    left: 16px;
    z-index: 2;
}

.contact-form form {
    max-width: 680px;
    margin: 0 auto;
}

.contact-form textarea::placeholder,
.contact-form textarea,
.contact-form input::placeholder,
.contact-form input {
    font-family: "Figtree";
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0%;
    line-height: 1.2;
    color: #171719;
}

.contact-form input {
    height: 54px;
    border-radius: 0px;
    border: 1px solid var(--color-spring-green-89, #e0e6e4);
    background: var(--color-grey-97, #f7faf9);
    outline: none;
    margin-bottom: 24px;
    padding: 0 16px;
    width: 100%;
}

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

.list-coordonnee .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form textarea {
    min-height: 150px;
    border-radius: 0px;
    border: none;
    background: #fff;
    outline: none;
    margin-bottom: 24px;
    padding: 16px 16px 0 16px;
    outline: none;
    margin-bottom: 10px;
    width: 100%;
}

.contact-form .accord-form {
    color: #ffffff;
    font-family: "Figtree";
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 0%;
    line-height: 1.4;
}

.contact-form .accord-form a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 25%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    transition: 0.3s;
}

.contact-form .accord-form a:hover {
    transition: 0.3s;
    color: #eb6e23;
}

.contact-form .btn-1 {
    border: none;
    outline: none;
    width: 100%;
}

.contact-form .box-btn.colored span {
    border-color: initial;
}

.list-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    flex-wrap: wrap;
}

.list-info .item {
    color: #555;
    font-family: "Syne";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    transition: 0.55s;
    text-align: left;
    position: relative;
}

.list-info a.item:hover {
    transition: 0.55s;
    color: #0b6880;
}

.list-info a.item::before {
    transition: 0.55s;
    width: 0%;
    left: 0;
    height: 2px;
    background: #0b6880;
    top: calc(100% + 1px);
    opacity: 0;
    position: absolute;
    content: "";
}

.list-info a.item:hover::before {
    transition: 0.55s;
    width: 100%;
    opacity: 1;
}

.contact-form .bg-contact-form {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    z-index: 1;
    width: auto;
    height: auto;
}

.contact-form .bg-contact-form img {
    width: 100%;
    height: 100%;
}

.recaptcha {
    display: flex;
    gap: 30px 50px;
    flex-wrap: wrap;
}

.bloctel {
    display: flex;
    align-items: center;
    background: #f6f4d2;
    padding: 20px;
    gap: 10px;
}

.bloctel .separator {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.bloctel .separator::before {
    position: absolute;
    height: 50px;
    width: 1px;
    background: #534741;
    content: "";
}

.bloctel .description {
    color: rgba(83, 71, 65, 255);
    font-size: 14px;
    font-family: "Rubik";
    font-weight: 400;
}

.form-accord {
    font-size: 14px;
    font-weight: 400;
    color: #101326;
}

.form-accord a {
    color: #55b7d9;
    /* text-decoration: underline; */
    font-weight: 700;
}

.img-contact {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.btn-contact {
    background: #181818;
    width: 100%;
    max-width: 263px;
    display: flex;
    padding: 15px 30px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #ffffff;
    border: none;
    outline: none;
    text-transform: uppercase;
}

.btn-contact .icon {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    border-radius: 100%;
}

.btn-contact:hover img {
    filter: brightness(0);
}

.btn-contact:hover {
    background: #ceb35e;
    color: #2b2b2b;
}

.btn-contact:hover {
    background: #ceb35e;
    color: #2b2b2b;
}

.hide-h2 h2:first-of-type {
    display: none;
}

.w-max-content {
    width: max-content !important;
}

.bloc-text h2 {
    color: #eb6e23;
}

.bloc-text ul {
    color: #f4e9db;
}

.step-wizard .input-wrapper {
    opacity: 0.9!important;
}

.step-wizard .checkbox,
.step-wizard .checkbox+div {
    color: #fff!important;
}