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


/** SiteBrand(logo) **/

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "Alfarn";
    background: #E6E0CA;
    overflow-x: hidden;
}

.page {
    overflow: hidden;
}

.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;
}


/* --------------------------cursor------------------------- */

.hover-this .hover-anim {
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.2s linear;
    transition: -webkit-transform 0.2s linear;
    -o-transition: transform 0.2s linear;
    transition: transform 0.2s linear;
    transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor {
    pointer-events: none;
    position: fixed;
    padding: 0.3rem;
    background-color: #1F2388;
    border-radius: 50%;
    /* mix-blend-mode: difference; */
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.4s ease;
    transition: transform 0.3s ease, opacity 0.4s ease;
    transition: transform 0.3s ease, opacity 0.4s ease, -webkit-transform 0.3s ease;
    z-index: 99999;
}

.cursor-active {
    -webkit-transform: translate(-50%, -50%) scale(8);
    -ms-transform: translate(-50%, -50%) scale(8);
    transform: translate(-50%, -50%) scale(8);
    opacity: .1;
}

.site-branding {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
    flex: 0 0 103px;
    padding: 0px 0;
    position: relative;
}

.site-branding a {
    display: flex;
    align-items: center;
}

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

header {
    border-bottom: none;
    margin: 0 40px;
}

.ttm-stickable-header {
    display: flex;
    align-items: center;
    background: transparent;
    z-index: 9;
    width: 100%;
    top: 0;
    position: relative;
    top: 0;
    left: 0;
    max-height: 110px;
}

.ttm-stickable-header.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: linear-gradient(90deg, #1F2388 0%, #161961 100%);
}

.ttm-stickable-header.fixed .dark,
.ttm-stickable-header .default {
    display: flex;
}

.ttm-stickable-header .dark,
.ttm-stickable-header.fixed .default {
    display: none;
}

.ttm-stickable-header.fixed-header {
    background: transparent;
}

.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: 50px;
    justify-content: space-between;
}

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

.menu-box .left-nav {
    display: flex;
    align-items: center;
    gap: 70px;
}


/** SiteNavigation(Menu) **/

.menu-box .site-right {
    display: flex;
    align-items: end;
    gap: 60px;
}

.site-navigation {
    position: relative;
    width: 100%;
}

header .site-header-menu {
    position: absolute;
    width: 100%;
    top: 50px;
}

.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: #FFF;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

#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 0;
    position: relative;
    font-weight: 400;
    font-size: 15px;
    height: auto;
    line-height: 24px;
}

#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;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact .item {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.header-contact .item {
    color: #262b35;
    font-size: 18px;
    font-weight: 700;
}

.header-contact a.item {
    color: #262b35;
}

.header-contact a.item:hover {
    color: #70a446;
}

.header-contact-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.header-contact-top .right-contact,
.header-contact-top .left-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact-top .right-contact .social {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00475e;
    border-radius: 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;
}

.top-contact {
    height: 60px;
    align-items: center;
    color: #1E1E1E;
    display: flex;
    background: transparent;
}

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

.top-contact .info-contact {
    display: flex;
    align-items: center;
    gap: 75px;
    flex-wrap: wrap;
}

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

.top-contact .info-contact .item .description .title {
    color: #1E1E1E;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

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

.top-contact .info-contact .item .description .detail {
    color: #991915;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.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 .item .icon img {
    filter: brightness(10);
}

.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 .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;
}

header .btn-1 {
    padding: 0 20px!important;
    display: flex;
    align-items: center;
    border-radius: 50px;
    height: 54px;
    font-size: 18px;
    font-weight: 600;
}

.top-contact .btn-1 img,
header .btn-1 img {
    filter: brightness(10);
}

header .fixed .btn-1 img {
    filter: none;
}

header .fixed .btn-1 {
    background: #fff;
    color: #1F2388;
}

header .fixed .btn-1:hover {
    background: #B0B0B0;
    transition: 0.4s;
}

.top-contact .btn-1 img,
header .btn-1 img {
    padding-left: 0;
    margin-right: 6px;
}

.btn-1 {
    color: #FFF;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    line-height: 24px;
    height: 54px;
    display: inline-block;
    padding: 0px 25px;
    border-radius: 50px;
    background: linear-gradient(90deg, #1F2388 0%, #161961 100%);
    background-image: linear-gradient(to right, #1F2388 0%, #161961 100%);
    background-size: 200% auto;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    overflow: hidden;
    z-index: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    border: none;
    z-index: 2;
    gap: 12px;
}

.btn-1::before {
    position: absolute;
    left: auto;
    right: 0;
    content: "";
    background: transparent;
    z-index: -1;
    width: 0;
    height: 100%;
    transition: 0.6s;
}

.btn-1:hover::before {
    transition: 0.6s;
    display: block;
    left: 0;
    right: auto;
    width: 100%;
}

header .fixed .btn-1::before {
    background: #B0B0B0;
}

.btn-1:hover {
    background-position: right center;
    transition: 0.3s;
}

.btn-1 .to-rotate {
    transition: 0.3s;
}

.btn-1:hover .to-rotate {
    transform: rotate(45deg);
    transition: 0.3s;
}

.btn-2 {
    color: #1E1E1E;
    background: #fff;
}

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

.btn-1:hover::before {
    left: 0;
}

.btn-1:hover::after {
    right: 0;
}

.home-slide {
    position: relative;
    margin: 40px;
}

.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;
}

.box-slide .step-slide {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 100%;
    max-width: 1120px;
}

.step-slide .col-step {
    padding-top: 20px;
    border-top: 1px solid #fff;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.step-slide .col-step::before {
    content: '';
    display: block;
    position: absolute;
    top: -2px;
    left: auto;
    right: 0;
    background: linear-gradient(90deg, #161961 0%, #1F2388 100%);
    width: 0;
    height: 2px;
    transition: all 0.4s ease-in-out;
}

.step-slide .col-step.active::before,
.step-slide .col-step:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.step-slide .item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-slide .item .title {
    color: #FFF;
    font-family: "Poppins";
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
}

.step-slide .item .title span {
    font-weight: 700;
}

.banniere .contact-home .item,
.home-slide .box-slide .contact-home .item {
    width: 85px;
    height: 61px;
    background: #13a538;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.home-slide .box-slide .slide-nav {
    position: absolute;
    right: 90px;
    top: calc((100% - 129px)/ 2);
    width: auto;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    z-index: 2;
    opacity: 1;
    transition: 0.3s;
}

.service .box-slide .slide-nav .service-nav i,
.home-slide .box-slide .slide-nav .home-nav i {
    color: #9A9999;
    font-size: 24px;
    font-weight: 700;
}

.service .box-slide .slide-nav .service-nav,
.home-slide .box-slide .slide-nav .home-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    width: 50px;
    height: 50px;
    outline: none;
    background: #EEE;
    color: #9A9999;
    border: none;
    border-radius: 0;
    transition: 0.3s;
}

.service .box-slide .slide-nav .service-nav:hover,
.home-slide .box-slide .slide-nav .home-nav:hover {
    background: #565944;
    transition: 0.3s;
}

.service .box-slide .slide-nav .service-nav:hover i,
.home-slide .box-slide .slide-nav .home-nav:hover i {
    color: #ffffff;
    transition: 0.3s;
}

.home-slide .home-presentation {
    position: static;
}

.home-slide .item-slide {
    height: 960px;
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.home-slide .item-slide::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    background: linear-gradient(90deg, rgba(22, 25, 97, 0.60) 2.51%, rgba(0, 0, 0, 0.00) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
}

.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 .title {
    color: #FFF;
    font-family: "Alfarn";
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 30px;
}

.home-slide .item-slide .sub-title {
    color: #FFF;
    font-family: "Alfarn";
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.home-slide .item-slide .description {
    color: #FFF;
    font-family: "Bahnschrift";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 25px;
}

.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 {
    width: 128px;
    height: 128px;
    background: #ceb35e;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}


/* .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 .title span,
.home-slide .owl-item .item-slide .title {
    transform: translateX(250px);
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transition-delay: 0.1s;
}


/* .home-slide .owl-item .item-slide .btn-slide { */

.home-slide .owl-item .item-slide .description {
    transform: translateX(250px);
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 2;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.btn-slide {
    display: flex;
    flex-direction: column;
    gap: 28px 20px;
    flex-wrap: wrap;
    margin-top: 20px;
    max-width: max-content;
    overflow: hidden;
}

.btn-slide .btn-1 {
    display: inline-flex;
    padding: 0px 25px;
    width: max-content;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

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

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

.home-slide .owl-carousel .owl-dots {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
    width: 100%;
}

.home-slide .owl-carousel .owl-dots button {
    height: 1px;
    background: #fff;
    border: none;
    outline: none;
    width: 33.33%;
    padding: 0;
    margin: 20px 0;
    /* background: transparent; */
    position: relative;
    z-index: -1;
}

.home-slide .owl-carousel .owl-dots button::after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: auto;
    right: 0;
    background: transparent;
    width: 100%;
    height: 135px;
    z-index: -1;
}

.home-slide .owl-carousel .owl-dots button::before {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    left: auto;
    right: 0;
    background: linear-gradient(90deg, #161961 0%, #1F2388 100%);
    width: 0;
    height: 2px;
    z-index: 2;
    transition: all 0.4s ease-in-out;
}

.home-slide .owl-carousel .owl-dots button.active::before,
.home-slide .owl-carousel .owl-dots button:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

.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;
    padding: 80px 0 60px 0;
}

.devis-rdv .nav-tabs {
    padding: 50px 0 0px 0;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link {
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(9px);
    color: #1E1E1E;
    transition: 0.6s;
    padding: 15px 10px;
}

.nav-tabs .nav-link.active {
    background: #1F2388;
    color: #FFF;
    transition: 0.6s;
}

.devis-rdv .enlevement .rdv-diag {
    transform: translateX(150px);
    transition: 0.5s;
}

.devis-rdv .logo-form {
    position: absolute;
    left: -80px;
    top: 30px;
    z-index: 2;
}

.devis-rdv .enlevement.active .rdv-diag {
    transform: translateX(0px);
    display: block;
    width: 100%;
    opacity: 1;
    transition: 0.5s;
}

.devis-rdv .enlevement {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.devis-rdv .enlevement.active {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}

.rdv-diag {
    padding: 40px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(9px);
    z-index: 5;
    opacity: 1;
}

.devis-rdv .rdv-diag {
    position: absolute;
    top: 200px;
    right: 0;
}

.rdv-diag .title-devis {
    color: #1E1E1E;
    text-align: center;
    font-family: "Poppins";
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

.rdv-diag .title-devis span {
    font-weight: 600!important;
}

.rdv-diag .label {
    color: #1E1E1E;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.rdv-diag .radio {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

[type="radio"]:checked+label:after,
[type="radio"]:not(:checked)+label:after {
    content: '';
    width: 11px;
    height: 11px;
    /* background: ; */
}

input[type=radio] {
    margin: 0!important;
}

.rdv-diag .item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rdv-diag .title-devis span {
    font-weight: 600;
}

.rdv-diag input {
    border-radius: 30px;
    border: 1px solid #1F2388;
    background: #FFF;
    margin-bottom: 30px;
    height: 45px;
    padding: 0 15px 0 20px;
    width: 100%;
    outline: none;
}

.radio input {
    stroke-width: 1px;
    stroke: #1E1E1E;
    width: 11px;
    height: 11px;
}

input[type="radio"]:checked {
    background: #1E1E1E;
    border: 1px solid #1E1E1E;
}

.rdv-diag textarea,
.rdv-diag textarea::placeholder,
.rdv-diag .nice-select .option,
.rdv-diag .nice-select span,
.rdv-diag input::placeholder,
.rdv-diag input {
    color: #464646;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.rdv-diag .radio label,
.rdv-diag .radio input {
    margin: 0;
}

.rdv-diag .radio label {
    color: #1E1E1E;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.rdv-diag .nice-select {
    border-radius: 30px;
    border: 1px solid #1F2388;
    background: #FFF;
    margin: 0;
    margin-bottom: 30px;
    padding: 0 15px 0 20px;
    width: 100%;
    height: 45px;
    outline: none;
}

.rdv-diag textarea {
    border-radius: 15px;
    background: #FFF;
    min-height: 96px;
    width: 100%;
    padding: 15px 0 0 25px;
}

.rdv-diag .submit {
    gap: 10px;
}

.devis .calculator {
    position: absolute;
    top: 40px;
    left: 85px;
    transform: rotate(-9.802deg);
}

.devis .calculator.right {
    position: absolute;
    bottom: 110px;
    right: 110px;
    left: inherit;
    top: inherit;
    transform: rotate(9.346deg);
}

.devis .updown {
    -webkit-animation: upDown 1.3S infinite alternate;
    animation: upDown 1.3S infinite alternate;
}

@-webkit-keyframes upDown {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
    100% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

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

.devis .title-devis {
    color: #1E1E1E;
    text-align: center;
    font-family: "Oxanium";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    display: contents;
    width: 100%;
}

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

.devis select,
.devis input {
    border-radius: 70px;
    border: none;
    background: #FFF;
    height: 66px;
    width: 100%;
    margin: 15px 0;
    padding: 0 0 0 30px;
    outline: none;
    overflow: hidden;
}

.devis .nice-select {
    border-radius: 70px;
    border: none;
    background: #FFF;
    height: 66px;
    width: 100%;
    margin: 15px 0;
    padding: 0 0 0 30px;
    outline: none;
    display: flex;
    align-items: center;
}

.devis .nice-select span.current {
    color: #818181;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nice-select:after {
    border-bottom: 2px solid #818181;
    border-right: 2px solid #818181;
    content: '';
    display: block;
    height: 10px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 10px;
}

.devis .nice-select .list {
    background: #FCFCFC;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: max-content;
    padding: 30px;
    max-height: calc(100vh - 66px);
    overflow: auto;
}

.devis .nice-select .list li {
    padding: 0;
    color: #818181;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    background: transparent;
}

.devis .nice-select .list li:hover {
    color: #1E1E1E;
    background: transparent;
}

.devis select,
.devis select::placeholder,
.devis input,
.devis input::placeholder {
    color: #818181;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.devis input:focus-visible::placeholder {
    color: #1E1E1E;
}

.devis input:focus-visible {
    color: #1E1E1E;
    border: 1px solid #991915;
}

.devis .form-devis {
    background: transparent;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.devis .form-devis button {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.devis .label-form {
    color: #FFF;
    font-family: "Roboto";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 5px;
}

.devis .row-form {
    justify-content: center;
}

.formulaire {
    position: relative;
    z-index: 9;
}

.devis .formulaire {
    position: relative;
    left: 0;
    z-index: 2;
}

.formulaire .box-input {
    position: relative;
    margin-bottom: 18px;
}

.formulaire .box-input .icon-input {
    position: absolute;
    width: 18px;
    z-index: 1;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.icon-input.message {
    transform: none;
    top: 7px;
}

.formulaire .label-form {
    color: #FFF;
    text-align: center;
    font-family: "Montserrat";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 10px;
}

.formulaire .submit img {
    filter: brightness(10);
}

.formulaire .submit:hover img {
    filter: inherit;
}

.formulaire .submit:hover {
    background: #1E1E1E;
}

.formulaire .hr-form {
    border-bottom: 1px solid #3f3f3f;
    height: 1px;
    margin: 0 0 20px 0;
}

.content-img-text {
    position: relative;
    padding: 95px 0 0 0;
}

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

.figure-img {
    overflow: hidden;
    margin: 0;
    height: 100%;
}

.figure-img::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.figure-img:hover::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.box-img .info-item {
    position: absolute;
    z-index: 1;
    left: calc(100% - 140px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 4;
    width: 100%;
    max-width: 415px;
    transition: 0.5s;
}

.box-img .info-item .item.item2 {
    left: -40px;
}

.box-img .info-item .item {
    display: flex;
    align-items: center;
    position: relative;
    cursor: default;
}

.box-img .info-item .item .icon {
    width: 70px;
    height: 70px;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1F2388;
    z-index: 7;
}

.box-img .info-item .item .description {
    padding: 15px 30px 15px 50px;
    border-radius: 50px;
    background: #FFF;
    min-height: 65px;
    /* left: -40px; */
    height: max-content;
    z-index: 1;
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.20);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    transition: 0.6s;
}

.info-item .item .title {
    color: #1E1E1E;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding: 8px 0;
}

.info-item .item .detail {
    color: #000;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
}

.box-img .info-item .item .description {
    height: 65px;
}

.box-img .info-item .item:hover .description {
    /* transition: 0.8s; */
    height: max-content;
}

.box-img .info-item .item .description .detail {
    height: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    position: relative;
}

.box-img .info-item .item :hover {
    z-index: 6;
}

.box-img .info-item .item:hover .description .detail {
    opacity: 1;
    height: auto;
    width: auto;
    visibility: visible;
    transition: 0.9s;
}

.content-img-text .right-content {
    position: absolute;
    right: -190px;
    top: 230px;
    z-index: 1;
    width: 420px;
    height: 570px;
    border: 17px solid #fcfcfc;
}

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

.sect-title {
    position: relative;
    z-index: 1;
}

.sect-title .sub-title {
    color: #1F2388;
    font-family: "Alfarn";
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

.sect-title .h2,
.sect-title h1 {
    color: #1E1E1E;
    font-family: "Poppins";
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
}

.sect-title h1 span,
.sect-title .h2 span {
    color: #1F2388;
    font-weight: 700;
}

.sect-title .description {
    color: #FFF;
    font-family: "Poppins";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4
}

.bloc-text>p {
    color: #464646;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

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

.video {
    position: relative;
    background: #1F2388;
    margin-top: 250px;
}

.video .card-video {
    position: relative;
    height: 372px;
}

.video .card-video .box-video .logo-video {
    position: absolute;
    top: -200px;
    left: 65px;
    z-index: -1;
}

.video .box-video {
    position: relative;
    height: 502px;
    max-width: 730px;
    border-radius: 30px;
    border: 10px solid #1F2388;
    background: #D9D9D9;
    margin: 0 auto;
    top: -250px;
    z-index: 1;
}

.video .box-iframe {
    top: -250px;
    position: absolute;
    width: 100%;
    height: 100%;
}

.video .box-iframe iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

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

.rachat {
    position: relative;
}

.rachat .box-rachat {
    display: flex;
    width: 100%;
}

.box-rachat .btn-1::before {
    background: #B0B0B0;
}

.box-rachat .btn-1:hover {
    color: #1e1e1e;
    transition: 0.4s;
}

.rachat .box-rachat .box-img {
    position: relative;
}

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

.rachat .box-rachat .content-rachat {
    width: 100%;
    background: #161961;
    padding: 60px 0;
}

.valeur {
    position: relative;
    background: #FCFCFC;
    padding: 0 0 85px 0;
}

.valeur a {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}

.valeur .card-valeur {
    background: #FCFCFC;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 30px;
    border-bottom: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
    z-index: 2;
}

.valeur .card-valeur .icon {
    height: 80px;
}

.valeur .card-valeur:hover .icon img {
    filter: brightness(100);
}

.valeur .card-valeur:hover .description,
.valeur .card-valeur:hover .title {
    color: #fff;
    transition: 0.3s;
}

.valeur .card-valeur::before {
    position: absolute;
    background: #991915;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    content: "";
    transition: 0.5s;
    z-index: -1;
}

.valeur .card-valeur:hover::before {
    height: 100%;
    transition: 0.5s;
}

.valeur .card-valeur .item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.valeur .card-valeur .description {
    color: #1E1E1E;
    text-align: center;
    font-family: "Inter";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
}

.valeur .card-valeur .title {
    color: #1E1E1E;
    text-align: center;
    font-family: "Oxanium";
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
}

.valeur .top-number {
    width: 52px;
    height: 52px;
    background: #B5A595;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 45px;
    top: 22px;
    transition: 0.6s;
    color: #FFF;
    text-align: center;
    font-family: "Roboto";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

.valeur .item-slide:hover {
    background: rgba(213, 201, 192, 0.30);
    transition: 0.4s;
}

.valeur .item-slide:hover .top-number {
    width: 103px;
    height: 103px;
    top: -26px;
    right: -20px;
}

.valeur-slide .owl-dots.disabled {
    display: flex!important;
}

.valeur-slide .owl-dots {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    gap: 13px;
}

.valeur-slide .owl-dots .owl-dot {
    width: 14px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid #9A9999;
    background: transparent;
    outline: none;
}

.valeur-slide .owl-dots .owl-dot.active {
    border: 1px solid #B5A595;
    background: #B5A595;
}

.engagement {
    position: relative;
    background: #181818;
}

.engagement .img-engagement {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;
}

.img-engagement .img-cover {
    z-index: 1;
    /* transform: rotate(-15deg); */
}

.img-engagement .ban-engagement {
    position: absolute;
    width: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    /* transform: rotate(-15deg); */
}

.img-engagement .ban-engagement {
    opacity: 0.5;
    /* transform: rotate(15deg); */
    transition: 1s;
    position: absolute;
    z-index: 0;
    top: 0;
    width: auto;
}

.img-engagement {
    -webkit-transform: rotate(-30deg) scale(1.3);
    -ms-transform: rotate(-30deg) scale(1.3);
    transform: rotate(-30deg) scale(1.3);
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 2.5s ease;
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
    opacity: 0;
}

.img-engagement.animated {
    -webkit-transform: rotate(15deg) scale(1);
    -ms-transform: rotate(15deg) scale(1);
    transform: rotate(15deg) scale(1);
    opacity: 0.5;
}

.img-engagement.animated {
    -webkit-transform: rotate(-15deg) scale(1);
    -ms-transform: rotate(15deg) scale(1);
    transform: rotate(0deg) scale(1);
    animation-delay: 0.5s;
    opacity: 1;
}

.img-engagement.animated .ban-engagement {
    -webkit-transform: rotate(15deg) scale(1);
    -ms-transform: rotate(15deg) scale(1);
    transform: rotate(15deg) scale(1);
    animation-delay: 0.5s;
    opacity: 0.5;
}

.engagement .square {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% - 75px);
    z-index: 1;
}


/* --------------- process style1 --------------- */

.feature-accordion .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
    background: #181818;
}

.accordion>.card {
    border: none;
}

.feature-accordion .card .card-header {
    padding: 0;
    border-radius: 0;
    border-top: 1px solid #ffffff;
    background: #181818;
}

.feature-accordion .card .card-header button {
    border: none;
    background: #181818;
    font-size: 25px;
    color: #ffffff;
    font-weight: 700;
    font-family: 'Poppins';
    width: 100%;
    padding: 25px 0px 25px 30px;
    position: relative;
    text-align: left;
    -webkit-transition: all 400ms ease-out 0s;
    transition: all 400ms ease-out 0s;
}

.feature-accordion .card .card-header button .number {
    position: absolute;
    left: 0;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Poppins';
    color: rgba(124, 122, 122, 255);
}

.feature-accordion .card .card-header button span.to-left {
    left: -30px;
    margin-right: 20px;
    position: absolute;
}

.feature-accordion .card .card-header button span {
    height: 30px;
    /* width: 30px; */
    border-radius: 50%;
    background-color: #181818;
    color: #0f172b;
    /* line-height: 50px; */
    text-align: center;
    -webkit-transition: all 400ms ease-out 0s;
    transition: all 400ms ease-out 0s;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.feature-accordion .card .card-header button span i {
    font-size: 20px;
}

.feature-accordion .card .card-header button span.close-icon {
    display: none;
}

.feature-accordion .card .card-header button.active-accordion span.close-icon {
    display: block;
}

.feature-accordion .card .card-header button.active-accordion span.open-icon {
    display: none;
}

.feature-accordion .card .card-header button span {
    color: #fff;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* .feature-accordion .card .card-header button.active-accordion span.open-icon {
color:fcc35c;
} */

.feature-accordion .card .card-header button:hover,
.feature-accordion .card .card-header button.active-accordion {
    background-color: #181818;
    color: #ceb35e;
    border: none;
    outline: none;
}


/* .feature-accordion .card .card-header button:hover span, */

.feature-accordion .card .card-header button.active-accordion span {
    background-color: #181818;
    color: #fcc35c;
    display: flex!important;
    align-items: center;
}

.feature-accordion .card .card-body {
    padding: 15px 25px;
    background: #181818;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins';
}


/* .feature-accordion.accordion > .card:not(:last-of-type) {
boer-bottom: 1px solid #dfe9f4;
}

.feature-accordion-img {
position: relative;
z-index: 1;
}

.feature-accordion-img .shape-one {
position: absolute;
right: -90px;
top: -80px;
z-index: 2;
-webkit-animation: rotated linear 300s infinite;
animation: rotated linear 300s infinite;
}

.feature-accordion-img .shape-two {
position: absolute;
left: -15px;
bottom: -40px;
z-index: 2;
-webkit-animation: scale-up-three linear 15s infinite;
animation: scale-up-three linear 15s infinite;
}
/* -------------------------------servicess-------------------- */

.service {
    position: relative;
    padding: 50px 0 100px 0;
}

.service.interne {
    padding-top: 50px;
}

.service .container {
    position: relative;
}

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

.service .box-img {
    border-radius: 30px;
    border: 10px solid #1F2388;
    overflow: hidden;
}

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

.service .card-service {
    display: flex;
    gap: 30px;
    align-items: center;
}

.card-service .description .title {
    color: #1E1E1E;
    font-family: "Alfarn";
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.bande-service {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(90deg, #1F2388 0%, #080922 100%);
}

.band-slide {
    position: relative;
    /* background: linear-gradient(90deg, #1F2388 0%, #080922 100%); */
    /* padding-top: 60px; */
}

.band-slide {
    flex-shrink: 0;
    display: flex;
    gap: 30px;
    padding: 25px 0;
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

.band-slide a {
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    -webkit-background-clip: text;
    -webkit-text-stroke: 4px transparent;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 30px));
    }
}

.band-slide .item-slide {
    display: flex;
    align-items: center;
    gap: 25px;
}

.band-slide .item-slide .title {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #FFF;
    color: transparent;
    font-family: "Alfarn";
    font-size: 45px;
    font-weight: 700;
    line-height: 42px;
}

.etape {
    position: relative;
    padding: 95px 0;
}

.etape .item-slide {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.etape .item-slide .number {
    width: 63px;
    height: 63px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(90deg, #1F2388 0%, #33357E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    font-family: "Alfarn";
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.etape .item-slide .progress-line {
    background: #B0B0B0;
    height: 1px;
    width: 100%;
    position: relative;
}

.etape .item-slide .progress-line::before {
    width: 0;
    height: 3px;
    position: absolute;
    z-index: 2;
    background: #1F2388;
    content: "";
    left: auto;
    right: 0;
    transition: 0.4s;
}

.etape .item-slide:hover .progress-line::before {
    transition: 0.4s;
    width: 100%;
    right: auto;
    left: 0;
}

.etape .item-slide .title {
    color: #1F2388;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.etape .item-slide .description {
    color: #464646;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.contact-tel {
    position: relative;
    background-image: url('../images/bg-info-interne.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 65px 0 90px 0;
    background-color: #fcfcfc;
}

.contact-tel .title {
    color: #1E1E1E;
    font-family: "Oxanium";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
}

.contact-tel .title span {
    font-weight: 600;
}

.contact-tel .btn-1 {
    min-height: 70px;
    border-radius: 70px;
    padding: 0 40px;
}

.contact-tel .btn-1 img {
    padding-left: 0;
    margin-right: 20px;
}

.avis {
    position: relative;
    background: #D9D9D9;
    padding: 0 0 80px 0;
}

.avis .box-title-avis {
    padding: 45px 60px;
    width: auto;
    max-width: 420px;
    text-align: center;
    /* margin-bottom: 80px; */
    margin-top: -55px;
    z-index: 2;
    position: relative;
}

.avis .box-title-avis .icon {
    position: absolute;
    width: 124px;
    height: auto;
    top: -61px;
    left: -13px;
    z-index: 2;
}

.avis .box-title-avis::before {
    clip-path: polygon(0 1%, 100% 0, 87% 100%, 7% 100%);
    background: #991915;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
}

.avis .box-title-avis::after {
    position: absolute;
    background: #711;
    width: 89px;
    height: 35px;
    content: "";
    bottom: -34px;
    left: 28px;
    z-index: 2;
    clip-path: polygon(0 0, 91% 0, 100% 100%)
}

.avis .title-avis {
    color: #fff;
    font-family: "Oxanium";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: 0.5px;
    /* 129.412% */
}

.avis .bg-avis {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

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

.box-avis {
    position: relative;
}

.box-avis .slide-nav {
    position: absolute;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: calc(100% + (40px * 2) + (50px * 2));
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
    transition: 0.3s;
    z-index: 4;
}

.box-avis .slide-nav .avis-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    outline: none;
    background: #FFFFFF1A;
    border: none;
    border-radius: 50%;
    transition: 0.3s;
}

.box-avis .slide-nav .avis-nav:hover {
    background: rgba(255, 255, 255, 0.302);
    transition: 0.3s;
}

.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;
    background-color: #fcfcfc;
    padding: 80px 0;
}

.paiement::before {
    width: 100%;
    height: 100%;
    background: url('../images/bg-form.jpg') lightgray 50% / cover no-repeat;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #fcfcfc;
    /* opacity: 0.2; */
}

.paiement .img-paie {
    position: relative;
    width: 100%;
}

.paiement .text-img {
    color: #818181;
    text-align: center;
    font-family: "Inter";
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    transform: rotate(-90deg);
    flex-shrink: 0;
    position: absolute;
    left: 80px;
    width: auto;
    height: 100%;
    opacity: 0.2;
}

.paiement .description {
    color: #1E1E1E;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    /* 162.5% */
}

.paiement .title {
    font-size: 24px;
    font-family: "Urbanist";
    color: rgba(84, 72, 66, 255);
    font-weight: 300;
}

.paiement .title span {
    font-weight: 500;
    display: block;
}

.avantage {
    position: relative;
    padding: 100px 0;
}

.avantage .row-content {
    overflow: hidden;
}

.avantage .view-default {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.avantage .box-avantage {
    position: relative;
    padding: 30px;
    z-index: 3;
    transform: translateY(50px);
    transition: 0.5s;
}

.avantage .box-avantage::before {
    background: #282f3b;
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    left: 0;
    bottom: 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    z-index: 1;
    opacity: 0.5;
}

.avantage .box-avantage:hover::before {
    background: #397F88;
    height: 100%;
    display: block;
    opacity: 1;
}

.avantage .box-avantage .title {
    color: #FFF;
    font-family: "Montserrat";
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

.avantage .box-avantage .description {
    color: #FFF;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    display: block;
    opacity: 0;
    transition: 0.3s;
}

.box-avantage:hover {
    transform: translateY(0);
    transition: 0.4s;
}

.box-avantage:hover .description {
    display: block;
    opacity: 1;
    transition: 0.5s;
}

.avantage .box-avantage .number {
    color: #FFF;
    font-family: "Montserrat";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 66.667% */
}

.avantage .item-avantage .description {
    font-size: 20px;
    font-weight: 400;
    font-family: 'urbanist';
    color: rgba(255, 255, 255, 255);
    text-align: center;
}

.service .item-slide .icon .img-hover,
.cadre-avantage .icon .img-hover {
    display: none;
}

.service .item-slide:hover .icon .img-primary,
.cadre-avantage:hover .icon .img-primary {
    display: none;
}

.service .item-slide:hover .icon .img-hover,
.cadre-avantage:hover .icon .img-hover {
    display: block!important;
}

.cadre-avantage:hover .icon::before {
    background: #f7f7f7;
}

.cadre-avantage:hover {
    background: #002221;
}

.cadre-avantage:hover .title {
    color: #bcd5be;
}

.cadre-avantage:hover .description {
    color: #f7f7f7;
}

.service .owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.service .box-slide .navigation {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 4;
    max-width: 784px;
    margin: 0 auto;
    opacity: 0;
    transition: 0.4s;
}

.service .box-slide:hover .navigation {
    opacity: 1;
    transition: 0.5s;
}

.service .box-slide .slide-nav {
    position: absolute;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - (30px * 2));
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
    transition: 0.3s;
    z-index: 4;
}

.service .slide-nav .service-nav.prev {
    position: relative;
}

.service .slide-nav .service-nav.next {
    position: relative;
}

.news-letter {
    position: relative;
    margin: 0 auto;
    margin-top: -125px;
    padding: 40px 0;
    background: url('../images/bg-news.jpg') lightgray 50% / cover no-repeat;
    position: relative;
    z-index: 2;
    max-width: 1136px;
}

.news-letter .box-newsletter {
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.news-letter::before {
    background-color: rgb(57, 127, 136);
    opacity: 0.5;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    content: '';
    width: 100%;
    height: 100%;
}

.news-letter .title {
    color: #FFF;
    text-align: center;
    font-family: "Montserrat";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
}

.news-letter .accord-newsletter {
    color: #FFF;
    text-align: center;
    font-family: "Montserrat";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
}

.news-letter .newsletter {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.news-letter input {
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.80);
    padding-left: 20px;
    width: 100%;
    height: 60px;
    border: none;
    outline: none;
}

.news-letter .newsletter input,
.news-letter .newsletter input::placeholder {
    color: #444;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    /* 162.5% */
}

.news-letter .newsletter input:focus {
    outline: none;
}

.news-letter .submit {
    border: none;
    border-radius: 5px;
    background: #859579;
    height: 60px;
    padding: 0 25px;
    outline: none;
    color: #FFF;
    text-align: center;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    /* 162.5% */
    text-transform: uppercase;
}

.copyright a:hover,
.contact-footer .item a:hover,
.footer a.link:hover,
footer a:hover {
    /*  */
    text-decoration: none;
}

.title-footer {
    position: relative;
    color: #991915;
    font-family: "Oxanium";
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 25px;
}

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

.footer .content-service-footer {
    display: flex;
}

.service-footer li {
    width: max-content;
}

.actualite {
    position: relative;
    padding: 95px 0;
    background: #fcfcfc;
}

.actualite .box-actu {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
    border: 1px solid #D9D9D9;
    background: #fcfcfc;
    padding: 20px;
}

.actualite .box-actu .img img {
    width: 100%;
}

.actualite .category {
    background: #991915;
    display: inline-flex;
    padding: 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    width: max-content;
}

.actualite .title {
    color: #1E1E1E;
    font-family: "Oxanium";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    /* 140% */
}

.actualite .foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.actualite .box-actu .commentaire,
.actualite .box-actu .date {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.actualite .box-actu .commentaire .description,
.actualite .box-actu .date .description {
    color: #818181;
    font-family: "Inter";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    z-index: 2;
}

.actualite .box-actu .date .description {
    text-transform: uppercase;
}

.box-actu .bg-actu {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    display: none;
}

.box-actu:hover::before,
.box-actu:hover .bg-actu {
    display: block;
    transition: 0.6s;
}

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

.box-actu .more {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background:  #565944; */
    z-index: 2;
}

.box-actu .more .default,
.box-actu:hover .more .hovered {
    display: block;
    transition: 0.3s;
}

.box-actu .more .hovered,
.box-actu:hover .more .default {
    display: none;
    transition: 0.3s;
}

.footer .contact-footer {
    display: flex;
    align-items: flex-start;
    text-align: center;
    gap: 60px;
}

.footer .contact-footer .item {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 15px;
    color: #FFF;
}

.footer .contact-footer .item .title {
    color: #FFF;
    font-family: "Poppins";
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.2;
}

.footer .contact-footer .description {
    font-weight: 700;
    font-family: "Poppins";
    font-size: 30px;
}

.footer .contact-footer a {
    color: #FFF;
}

.footer .contact-footer .item span {
    font-weight: 700;
}

.footer .service-footer {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    color: #FFFFFF;
    margin: 0;
}

.footer .service-footer a {
    color: #FFF;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    transition: 0.5s;
}

.footer .sub-title-footer {
    color: #FFF;
    font-family: "Montserrat";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.footer .contact-footer .item a.description:hover,
.footer a:hover,
.footer .service-footer a:hover {
    color: #FFF;
    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.5s;
}

.footer .box-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: max-content;
    background: transparent;
    padding: 8px;
}

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

.confidentialite a {
    color: #FFF;
}

.confidentialite {
    color: #FFF;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}

.certification {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    /* padding-bottom: 20px; */
}

.certification .title {
    color: #FFF;
    font-family: "Bahnschrift";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    /* 108.333% */
}

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

.description-footer {
    color: #FFF;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    padding: 30px 0;
}

.social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .social .icon-social {
    position: relative;
    transition: 0.4s;
    transform: translateY(0px);
    z-index: 2;
}

.footer .social .icon-social::before {
    position: absolute;
    content: "  ";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #991915;
    transition: 0.4s;
    z-index: -1;
}

.footer .social .icon-social:hover::before {
    height: 100%;
    transition: 0.4s;
}

.footer .social .icon-social:hover {
    transform: translateY(-20px);
    border: 1px solid #991915;
    transition: 0.4s;
}

.footer .social .icon-social:hover img {
    filter: brightness(100);
}

.social .title {
    color: #FFF;
    font-family: "Inter";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

.social .icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgb(129, 129, 129, 0.6);
    transition: 0.3s;
}

.info-social .item .icon:hover {
    background: #397F88;
    transition: 0.3s;
}

.box-logo img {
    width: auto;
}

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

.footer .social-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-footer .item {
    background: transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid#fff;
    transition: 0.5s;
}

.social-footer .item:hover {
    background: rgba(255, 255, 255, 0.50);
    transition: 0.5s;
}

.social-footer .item img {
    filter: brightness(100);
    transition: 0.2s;
}

.social-footer .item:hover img {
    filter: none;
    transition: 0.2s;
}

.copyright {
    background: transparent;
    gap: 15px 25px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.row-copyright {
    gap: 15px 30px;
}

.copyright a {
    color: #FFF;
}

.copyright .span {
    color: #FFF;
    font-family: "Poppins";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 34px;
    line-height: 1.2;
}

.copyright span {
    font-weight: 600;
}

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

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

.arobiz .description {
    color: #FFF;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
}

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

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

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


/* foot footer */

.footer {
    position: relative;
    padding: 0;
    border-radius: 30px;
    background: #080922;
    margin: 40px;
    margin-top: 80px;
    padding: 60px 0 45px 0;
}

.footer .logo-footer {
    display: flex;
    align-items: center;
    width: 100%;
}

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

.footer .hr-footer {
    background: #FFF;
    height: 1px;
    width: 100%;
    margin: 30px 0;
}

.footer .container {
    position: relative;
}

.footer .newsletter input {
    background: transparent;
    color: rgba(171, 171, 171, 255);
    border: 1px solid #ffffff;
    height: 44px;
    width: 100%;
    outline: none;
    padding-left: 20px;
}

.footer .newsletter input,
.footer .newsletter input::placeholder {
    font-size: 16px;
    font-weight: 400;
    font-family: 'urbanist';
    color: #ffffff;
}

.footer .newsletter .submit {
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 0;
    height: 44px;
    min-width: inherit;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'aktiv-grotesk';
}

.footer .newsletter .submit {
    background: #13a538;
    color: #ffffff;
    outline: none;
    border: 1px solid #13a538;
}

.footer .newsletter input:focus-visible,
.footer .newsletter .submit:hover {
    border: 1px solid #13a538;
}

.footer .copyright .copy-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer .copyright .arobiz a {
    font-weight: 700;
}

.footer .newsletter-accord {
    color: rgba(247, 247, 247, 255);
    font-size: 14px;
    font-weight: 400;
    font-family: 'Urbanist';
}

.referencement {
    position: relative;
    padding: 95px 0 70px 0;
    background: #1F2388;
    z-index: 2;
    overflow: visible;
    margin-bottom: 50px;
}

.referencement .bloc-text p {
    color: #E6E0CA;
}

.referencement .bloc-text h2 {
    color: #fff;
    font-family: "Poppins";
    line-height: 1.4;
}

.referencement .map-ref {
    position: absolute;
    right: 25px;
    top: -55px;
    z-index: 0;
}

.referencement .stroke {
    right: 0;
}

.referencement .carte-ref {
    position: absolute;
}

.referencement .img-principal {
    border-radius: 0px;
    /* overflow: hidden; */
}

.content-img-text .img-principal .img-content {
    width: 100%;
    border-radius: 30px;
    border: 10px solid #1F2388;
}

.content-img-text.referencement .img-principal .box-img::before {
    display: none;
}

.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: 90px 0 70px 0;
    background: #ffffff;
}

.partenaire-slide .owl-stage-outer .owl-stage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partenaire-slide .item img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    transition: 0.5s;
}

.partenaire-slide .item:hover img {
    -webkit-filter: grayscale(0);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(0);
    transition: 0.5s;
}

.avantage {
    position: relative;
    background: url('../images/bg-avantage.jpg') lightgray 50% / cover no-repeat;
    padding: 90px 0 0 0;
}

.avantage .container {
    height: 100%;
}

.temoignage {
    position: relative;
    background: #617569;
    padding-bottom: 60px;
    /* background-image: url('../images/logo-icon.svg'); */
    background-position: 0 50px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.temoignage .logo-icon {
    position: absolute;
    bottom: -50px;
    left: 0;
    /* transform: translateX(-50%); */
    z-index: 0;
    width: 100%;
    max-width: 1100px;
    height: auto;
}

.temoignage .right-img {
    position: absolute;
    width: 33%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 5;
}

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

.banniere {
    position: relative;
    height: 509px;
    margin: 40px;
    border-radius: 30px;
    overflow: hidden;
}

.banniere::before {
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(22, 25, 97, 0.60) 2.51%, rgba(0, 0, 0, 0.00) 50%), linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    z-index: 1;
}

.banniere.contact {
    max-height: 509px;
}

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

.banniere .sect-title {
    position: relative;
}

.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;
    border-radius: 30px;
    background: url('../images/banniere.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.banniere.contact .ban-img {
    background: url('../images/ban-contact.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

.banniere .title {
    color: #FFF;
    font-family: "Alfarn";
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.banniere .ariane {
    color: #FFF;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.banniere .ariane a {
    color: #FFF;
}

.info-interne {
    position: static;
}

.info-interne .rdv-diag .nice-select,
.info-interne .rdv-diag input {
    margin-bottom: 15px;
}

.info-interne .col-xl-5 {
    /* min-height: 100vh; */
}

.info-interne .service-side-bar {
    margin-right: 30px;
    z-index: 10;
    height: fit-content;
    align-self: flex-start;
    max-height: calc(100vh - 110px);
    overflow: auto;
}

.info-interne .info-contact {
    border-radius: 30px;
    border: 10px solid #1F2388;
    padding: 64px 60px;
}

.info-interne .info-contact .item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px 0 20px 0;
}

.info-interne .info-contact .item:not(:last-of-type) {
    border-bottom: 1px solid #B0B0B0;
}

.info-interne .info-contact .item .title {
    color: #1E1E1E;
    font-family: "Poppins";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.info-interne .info-contact .item .content {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.info-interne .info-contact .item .icon img {
    filter: brightness(100);
}

.info-interne .info-contact .item .description {
    color: #1F2388;
    font-family: "Poppins";
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.info-interne .content-interne-img {
    border-radius: 30px;
    border: 10px solid #1F2388;
    overflow: hidden;
    position: relative;
    max-width: 700px;
}

.info-interne .logo-icon {
    position: relative;
    top: 0;
    left: 65px;
    z-index: 1;
    width: max-content;
}

.info-interne .content-interne-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.expertise {
    position: relative;
    padding: 100px 0px;
}

.expertise .sect-title .title {
    font-size: 40px;
    font-weight: 500;
    color: rgba(43, 43, 43, 255);
    font-family: 'noka';
}

.expertise .sect-title .title span {
    color: #13a538;
}

.expertise .list-expertise {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.expertise .list-expertise .icon {
    height: 98px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise .list-expertise .description {
    font-size: 22px;
    font-weight: 600;
    color: rgba(43, 43, 43, 255);
    font-family: 'noka';
    text-align: center;
    padding-top: 20px;
}

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

.contact-info .info-item .icon {
    display: flex;
    justify-content: center;
    width: 50px;
}

.contact-info .info-item .description {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'neulis-sans';
    color: rgba(43, 43, 43, 255);
}

.contact-info .info-item .description a {
    color: rgba(43, 43, 43, 255);
}

.contact-info .info-item .description span.sub-title {
    font-weight: 700;
}

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

section.form input {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    color: rgba(198, 198, 198, 255);
    height: 43px;
    border: 1px solid rgba(198, 198, 198, 255);
    background-color: #ffffff;
    text-align: left !important;
    padding: 0 20px;
    font-family: "Open Sans";
    margin: 20px 0;
}

section.form textarea {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    color: rgba(198, 198, 198, 255);
    border: 1px solid rgba(198, 198, 198, 255);
    background-color: transparent;
    text-align: left !important;
    padding: 5px 20px;
    font-family: "Open Sans";
    margin: 20px 0;
}

section.form textarea::placeholder,
section.form input::placeholder {
    color: rgba(198, 198, 198, 255);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
    outline: none;
}

section.form .submit {
    border: none;
    text-transform: uppercase;
    height: 50px;
}

section.form .captcha img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map .map-box {
    position: relative;
    width: 100%;
    height: 665px;
}

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

.contact-info {
    position: relative;
    background: #fcfcfc;
    padding: 90px 0;
}

.contact-info .title-form {
    color: #1E1E1E;
    font-family: "Oxanium";
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
}

.contact-info .item-contact {
    display: flex;
    gap: 15px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
    border: 1px solid #991915;
    background: transparent;
    transition: 0.3s;
    min-height: 100%;
}

.contact-info .item-contact:hover {
    border: 1px solid #991915;
    background: #991915;
    transition: 0.3s;
}

.contact-info .item-contact:hover .description,
.contact-info .item-contact:hover .title {
    color: #fff;
}

.contact-info .item-contact .title {
    color: #991915;
    text-align: center;
    font-family: "Inter";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
}

.contact-info .item-contact .description {
    color: #991915;
    text-align: center;
    font-family: "Inter";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
}

.contact-info .instruction {
    color: #1E1E1E;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
}

.contact-info .accord-form {
    color: #818181;
    font-family: "Inter";
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.2;
}

.contact-info form {
    border: 1px solid rgba(217, 217, 217, 0.40);
    padding: 30px 25px 45px 25px;
}

.contact-info input {
    height: 66px;
    border-radius: 70px;
    background: #FFF;
    color: #818181;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 18px;
    width: 100%;
    border: none;
    outline: none;
    padding-left: 30px;
}

.contact-info textarea {
    border-radius: 15px;
    background: #fff;
    color: #818181;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    width: 100%;
    height: calc(100% - 30px);
    border: none;
    outline: none;
    padding: 30px 0 0 30px;
    min-height: 220px;
}

.contact-info textarea:focus-visible,
.contact-info input:focus-visible {
    border: 1px solid #991915;
    color: #1E1E1E;
}

.contact-info textarea:focus-visible::placeholder,
.contact-info input:focus-visible::placeholder {
    color: #1E1E1E;
}

.contact-info .map {
    width: 100%;
    height: 100%;
    border: 8px solid #991915;
}

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

.contact-form {
    position: relative;
    background: #FCFCFC;
    padding: 95px 0;
}

.list-info {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.list-info .item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    padding: 20px 15px;
    min-width: 314px;
}

.list-info .item .title {
    font-family: "Roboto Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
}

.list-info .item .detail {
    color: #000000;
    font-family: "Roboto";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 118.182% */
}

.list-info .item:hover .title {
    color: #FFF;
}

.list-info .item:hover .detail {
    color: #D5C9C0;
}

.list-info .item:hover {
    background: #565944;
}

.list-info .item:hover img {
    filter: brightness(10);
}

.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%;
}

.contact-form input {
    height: 43px;
    background: transparent;
    width: 100%;
    padding-left: 0px;
    margin-bottom: 20px;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    outline: none;
    border: none;
    border-bottom: 1px solid #D9D9D9;
}

.contact-form textarea {
    background: transparent;
    width: 100%;
    padding-left: 0px;
    margin-bottom: 20px;
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    outline: none;
    border: none;
    border-bottom: 1px solid #D9D9D9;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #1E1E1E;
    font-family: "Roboto";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
}

.contact-form .title-form {
    font-family: "Roboto Mono";
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 25px;
}

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

.contact-form .accord-form {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #707070;
}

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

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

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

.clip-a-z {
    /* z-index: 10; */
    -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);
}

.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;
}

.box-form {
    position: relative;
    filter: drop-shadow(0px 0px 8px rgba(40, 40, 39, 0.102));
    border-radius: 15px;
}

.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;
}

.img-contact .right-content {
    position: absolute;
    z-index: 1;
    width: 147px;
    height: 145px;
    top: 50%;
    right: -116px;
    transform: translateY(-50%);
}

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

.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;
}

.cycle-tab-item {
    width: 50%;
    text-align: center;
    height: 100%;
}

.bloc-text p img,
.bloc-text h2 img {
    display: none;
}
.bloc-text h2 {
    color: #1E1E1E;
    font-family: "Poppins";
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    /*margin-bottom: 30px;*/
}