:root {
    --font-myriad-pro: "Source Sans 3", sans-serif;
}

body .Mypage {
    overflow: hidden;
    background-color: #EEECE9;
}

body .site-main-diag {
    background-color: #EEECE9;
}

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


/* Navigateur */

.section-navigateur {
    position: absolute;
    width: 100%;
    padding: 0 0;
    z-index: 10;
    background: transparent;
}

.ul-lien {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.li-lien1 {
    position: relative;
    height: 142px;
    width: 176px;
    background: #1F3643;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 32px;
}

.li-lien1 a {
    position: absolute;
    background: #1F3643;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
    height: calc(100% + 36px);
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lien-mobile {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    margin: 35px 0;
}

.has-dropdown>a {
    position: relative;
    font-family: var(--font-myriad-pro);
    font-weight: 600;
    font-size: 16px;
    line-height: 10px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 30px;
    z-index: 1;
}

.has-dropdown>a::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: #A58D44;
    border-radius: 40px;
    opacity: 0;
    z-index: -1;
    transition: all 0.6s ease;
}

.has-dropdown>a:hover::before {
    opacity: 1;
}

.btn-nav {
    height: 64px;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A58D44;
    border-radius: 50%;
}

.email-nav {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    color: #FFFFFF;
}

.line-nav {
    width: 70px;
    height: 1px;
    background: #FFFFFF;
    margin-top: 8px;
}

.li-lien3 ul {
    display: flex;
    align-items: center;
    gap: 30px;
}


/* ul.menu>li>a:hover {
  background: #A58D44;
  border-radius: 40px;
} */

.has-submenu>a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: relative;
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.has-submenu>a {
    display: flex;
    justify-content: space-between;
    gap: 11px;
    align-items: center;
}


/* section-slide */

section.section-slide {
    position: relative;
    padding: 0 0;
}

.item-slide {
    position: relative;
    width: 100%;
    height: 1100px;
    max-height: 100vh;
    min-height: 750px;
    overflow: hidden;
}

.Mypage.page .item-slide {
    height: 670px;
    min-height: unset;
}

.Mypage.page .bloc-titre-slide {
    padding-top: 70px;
}

.Mypage.page .section-service {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.item-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000059;
    z-index: 1;
}

.item-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1);
    opacity: 1;
    animation: zoomIn 3s ease forwards;
}


/* animation appliquée via classe JS */

.zoom-img {
    animation: zoomIn 2s ease forwards;
}

.owl-item.active .item-slide img {
    animation: zoomIn2 2s ease forwards;
}

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

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

.bloc-titre-slide {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 15px;
}

.titre-slide {}

.Mypage.home .titre-slide {
    margin-bottom: 70px;
}

.btn-slide {
    display: flex;
    align-items: center;
    gap: 60px;
}


/* formulaire */

.section-formulaire {
    position: absolute;
    width: 100%;
    top: calc(50% + 22px);
    right: 10px;
    transform: translateY(-50%);
    z-index: 5;
}

.section-formulaire .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 0;
}

.bloc-form {
    position: relative;
    width: 100%;
    max-width: 578px;
    border-top: 5px solid #A58D44;
    backdrop-filter: blur(20px);
    box-shadow: 5px 10px 20px 0px #00000040;
    background: #EEECE9CC;
    border-radius: 10px;
    padding: 50px;
}

.titre-form {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: clamp(22px, 1vw + 1rem, 48px);
    line-height: 100%;
    text-align: center;
    color: #1F3643;
    margin-bottom: 35px;
}

.titre-form span {
    font-weight: 400;
    font-size: clamp(22px, .7vw + 1rem, 38px);
    color: #A58D44;
}

.label-form {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    color: #1F3643;
    margin-bottom: 20px;
}

.bloc-champ-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
}

.champ-form button.active,
.champ-form button:hover {
    background-color: #1F3643;
    color: #FFFFFF;
}

.champ-form button {
    width: 100%;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #FFFFFF;
    border-top: 4px solid #A58D44;
    transition: all 0.4s ease;
}

.champ-form button {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: #393939;
}

.row-form {
    margin-right: -12px;
    margin-left: -12px;
}

.row-form .col-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.style-form {
    position: absolute;
    bottom: -99px;
    right: -177px;
    z-index: 2;
    pointer-events: none;
}

.img-form {
    position: relative;
}

.location2 {
    position: absolute;
    pointer-events: all;
    top: 63%;
    left: 27%;
    transform: translate(-50%, -50%) scale(1);
}

.location1 {
    position: absolute;
    pointer-events: all;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 70px;
    height: 106px;
}

.location2:hover {
    transform: translate(-50%, -50%) scale(1.3);
}

.location1:hover {
    transform: translateX(-50%) scale(1.3);
}


/* marque */

section.section-marque {
    overflow: hidden;
    padding: 0;
}

.marque-anim-container {
    background: #1F3643;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bloc-marque {
    display: flex;
    gap: 60px;
    animation: defilementInfini 40s linear infinite;
    padding: 30px 0;
    width: max-content;
}

.bloc-marque>div {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: clamp(13px, 2.4vw + 1rem, 50px);
    line-height: 100%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #C6AC7D;
    background-image: linear-gradient(90deg, #C6AC7D 0%, #C6AC7D 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    transition: background-size 1s ease;
    cursor: default;
}

.bloc-marque>div:hover {
    background-size: 100% 100%;
}


/* Animation fluide et continue */

@keyframes defilementInfini {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* presentation */

section.section-presentation {
    position: relative;
    overflow: hidden;
}

.para-pre {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #1E1E1E;
    display: table;
}


/* referencement */

.img-float {
    float: right;
    margin-left: 130px;
    pointer-events: all;
}

.section-reference .img-pre {
    position: relative;
    display: inline-block;
    border-top: 5px solid #A58D44;
    border-radius: 10px;
    margin-right: calc((100vw - 1220px) / -2);
}

.Mypage.page .section-reference .img-pre {
    margin-right: 0;
}

.Mypage.page .img-float {
    margin-left: 99px;
}

.section-reference .img-presentation {
    border-radius: 10px;
    object-fit: cover;
}

.deco-ref1 {
    position: absolute;
    bottom: -52px;
    left: -89px;
}

.img-ref {
    position: relative;
}

.location-ref1 {
    position: absolute;
    top: -43px;
    left: 43%;
    transform: translateX(-50%) scale(1);
    width: 80px;
    height: 120px;
}

.location-ref2 {
    position: absolute;
    bottom: 129px;
    left: 25px;
    transform: scale(1);
    width: 80px;
    height: 120px;
}

.location-ref1:hover {
    transform: translateX(-50%) scale(1.3);
}

.location-ref2:hover {
    transform: scale(1.3);
}

.section-reference .bloc-text-pre {
    pointer-events: none;
}


/* valeur */

.section-presentation .bloc-title {
    font-weight: 700;
}

.bloc-valeur {
    position: relative;
    border: 2px solid #C6AC7D;
    border-radius: 50%;
    width: 70vw;
    height: 70vw;
    max-width: 550px;
    max-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-valeur {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #393939;
    max-width: 352px;
}

.banner-valeur6,
.banner-valeur5,
.banner-valeur4,
.banner-valeur3,
.banner-valeur2,
.banner-valeur1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.valeur6,
.valeur5,
.valeur4,
.valeur3,
.valeur2,
.valeur1 {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E5D3B3;
}

.valeur1 {
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.valeur2 {
    top: 25%;
    right: -15px;
    transform: translateY(-50%);
}

.valeur3 {
    top: 75%;
    right: -15px;
    transform: translateY(-50%);
}

.valeur4 {
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.valeur5 {
    top: 75%;
    left: -15px;
    transform: translateY(-50%);
}

.valeur6 {
    top: 25%;
    left: -15px;
    transform: translateY(-50%);
}

.valeur6:hover,
.valeur5:hover,
.valeur4:hover,
.valeur3:hover,
.valeur2:hover,
.valeur1:hover {
    border: 2px solid #C6AC7D;
}

.banner-valeur6,
.banner-valeur5,
.banner-valeur4,
.banner-valeur3,
.banner-valeur2,
.banner-valeur1 {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.bloc-valeur6.active .banner-valeur6,
.bloc-valeur5.active .banner-valeur5,
.bloc-valeur4.active .banner-valeur4,
.bloc-valeur3.active .banner-valeur3,
.bloc-valeur2.active .banner-valeur2,
.bloc-valeur1.active .banner-valeur1 {
    opacity: 1;
    visibility: visible;
}

.bloc-valeur6.active .valeur6,
.bloc-valeur5.active .valeur5,
.bloc-valeur4.active .valeur4,
.bloc-valeur3.active .valeur3,
.bloc-valeur2.active .valeur2,
.bloc-valeur1.active .valeur1 {
    border: 2px solid #C6AC7D;
}

.valeur6:hover+.banner-valeur6,
.valeur5:hover+.banner-valeur5,
.valeur4:hover+.banner-valeur4,
.valeur3:hover+.banner-valeur3,
.valeur2:hover+.banner-valeur2,
.valeur1:hover+.banner-valeur1 {
    opacity: 1;
    visibility: visible;
}

.bloc-valeur {
    animation: rotate 25s linear infinite;
}

.bloc-valeur>div .banner-valeur1,
.bloc-valeur>div .banner-valeur2,
.bloc-valeur>div .banner-valeur3,
.bloc-valeur>div .banner-valeur4,
.bloc-valeur>div .banner-valeur5,
.bloc-valeur>div .banner-valeur6 {
    animation: anti-rotate 25s linear infinite;
}

.bloc-valeur>div .valeur1,
.bloc-valeur>div .valeur4 {
    animation: anti-rotate14 25s linear infinite;
}

.bloc-valeur>div .valeur2,
.bloc-valeur>div .valeur3,
.bloc-valeur>div .valeur5,
.bloc-valeur>div .valeur6 {
    animation: anti-rotateautre 25s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes anti-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes anti-rotate14 {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(-360deg);
    }
}

@keyframes anti-rotateautre {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(-360deg);
    }
}


/* services */

.section-service {
    background: linear-gradient(180deg, rgba(233, 223, 205, 0.5) 0%, rgba(229, 211, 179, 0.5) 100%);
}

.item-service {
    width: 100%;
}

.img-service {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}

.hover-service {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 2;
}


/* .img-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(53, 107, 137, 0.7) 0%, rgba(31, 54, 67, 0.7) 100%);
  border-radius: 10px;
  opacity: 0;
  transition: all 0.6s ease;
} */

.img-service img {
    object-fit: cover;
    max-height: 382px;
}

.text-service {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #A58D44;
    margin-bottom: 5px;
}

.titre-service {
    font-family: var(--font-myriad-pro);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    color: #1E1E1E;
}

.lien-service {
    font-family: var(--font-myriad-pro);
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
}

.pycto {
    position: absolute;
    bottom: -30px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #1F3643;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    z-index: 2;
}

.item-service:hover .hover-service {
    opacity: 1;
}

.item-service:hover .img-serv::before,
.item-service:hover .img-service::before {
    opacity: 1;
}

.item-service:hover .titre-service {
    color: #A58D44;
}

.pycto {
    transition: background 0.6s ease;
}

.pycto svg path {
    transition: fill 0.6s ease;
}

.item-service:hover .pycto {
    background: #C6AC7D;
}

.item-service:hover .pycto svg path {
    fill: #1F3643;
}

.img-serv {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.img-serv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(53, 107, 137, 0.7) 0%, rgba(31, 54, 67, 0.7) 100%);
    border-radius: 10px;
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: all 0.6s ease;
    z-index: 1;
}

.img-serv img {
    transition: transform 0.6s ease;
    transform: scale(1);
}

.item-service:hover .img-serv img {
    transform: scale(1.1);
}


/* dots  et nav*/

.bloc-dots {
    position: relative;
    margin-top: 50px;
}

.custom-dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 5;
    pointer-events: auto;
}

.custom-dots-container .owl-dot {
    width: 10px;
    height: 10px;
    background: #C6AC7D;
    border-radius: 50%;
}

.custom-dots-container .owl-dot.active {
    background: transparent;
    width: 16px;
    height: 16px;
    border: 1px solid #1F3643;
}

.dots-nav {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 35px;
}

.bloc-dots2 {
    position: relative;
    margin-top: 50px;
}

.custom-dots-container2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    z-index: 5;
    pointer-events: all;
}

.custom-dots-container2 .owl-dot {
    width: 180px;
    height: 5px;
    background: #EEECE94D;
}

.custom-dots-container2 .owl-dot.active {
    background: #C6AC7D;
}


/* avis */

.section-avis .bloc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bloc-avis {
    background: #1F3643;
    /* box-shadow: 0px 4px 30px 0px #00000040; */
    border-radius: 10px;
    padding: 26px 40px;
    height: 100%;
    transition: all 0.4s ease;
}

.banner-avis {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-avis .bloc-avis {
    padding: 30px 50px;
    position: absolute;
    width: 168%;
    height: 115%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.stars-avis {
    margin-bottom: 10px;
}

.banner-avis .stars-avis {
    margin-bottom: 20px;
}

.text-avis {
    font-family: var(--font-myriad-pro);
    font-weight: 600;
    font-size: 15px;
    line-height: 26px;
    height: 104px;
    overflow: hidden;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.banner-avis .text-avis {
    font-size: 20px;
    margin-bottom: 30px;
}

.perso-avis {
    font-family: var(--font-myriad-pro);
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
}

.bloc-avis::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 37px;
    width: 78px;
    height: 69px;
    background: url('../images/avis/deco2.svg')no-repeat;
}

.banner-avis .bloc-avis::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: #A58D44;
}

.banner-avis .bloc-avis::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50px;
    width: 100px;
    height: 89px;
    background: url('../images/avis/deco.svg')no-repeat;
}


/* footer */

footer {
    background: #1F3643;
    padding: 50px 0;
}

.bloc-footer1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 50px 0;
}

.contact-footer {
    font-family: var(--font-myriad-pro);
    font-weight: 600;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    color: #D9D9D9;
}

.contact-footer span i,
.contact-footer span {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: 18px;
    text-transform: none;
}

.footer2 {
    padding: 70px 0;
    border-top: 1px solid #C6AC7D;
}

.apropos-footer {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #D9D9D9;
}

.apropos-footer span {
    font-weight: 600;
}

.apropos-footer div {
    margin-top: 30px;
}

.titre-footer {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.lien-footer {
    display: flex;
    flex-direction: column;
}

.lien-footer a {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #D9D9D9;
}

.contact-footer2 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.contact-footer2 a {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #D9D9D9;
}

.contact-footer2 a span {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
}

.champ-footer {
    position: relative;
    margin-bottom: 15px;
}

.champ-footer input {
    height: 46px;
    width: 100%;
    padding: 0 20px;
    padding-right: 60px;
    border: 1px solid #D9D9D9;
    background: transparent;
    border-radius: 5px;
}

.champ-footer input::placeholder,
.champ-footer input {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #D9D9D9;
}

.btn-champ-footer {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding-right: 15px;
    height: 100%;
    background: transparent;
}

.text-champ-footer {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #D9D9D9;
}

.copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.copyright li:first-child {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #C6AC7D;
}

.copyright li:last-child {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.copyright li:last-child span {
    font-weight: 600;
}


/* paiement en ligne */

section.section-paiement {
    background: url('../images/paiement/paiment.jpg')no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 200px 0 50px 0;
    margin: 50px 0;
}

.section-paiement:after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #A58D44;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.4s;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.section-paiement .sect-title {
    transition: opacity 0.4s ease;
    opacity: 1;
}

.section-paiement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(238, 236, 233, 0.64) 0%, rgba(238, 236, 233, 0) 100%);
    z-index: -1;
}

.bloc-marque2>div,
.titre-paiement {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: clamp(13px, 1.5vw + 1rem, 40px);
    line-height: 100%;
    text-transform: uppercase;
    color: #1F3643;
    margin-top: 30px;
}

.bloc-marque2>div {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    color: #FFFFFF;
}

.bloc-marque2>div::before {
    content: '/';
    position: relative;
}

.hover-paiement {
    position: absolute;
    top: 0;
    left: 0;
    background: #314652c9;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marque-anim-container2 {
    background: transparent;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.bloc-marque2 {
    display: flex;
    gap: 30px;
    animation: defilementInfini2 40s linear infinite;
    width: max-content;
}

.bloc-marque2:hover {
    animation-play-state: paused;
}

.section-paiement:hover .hover-paiement {
    opacity: 1;
}

.section-paiement:hover .sect-title {
    opacity: 0;
}

.section-paiement:hover::after {
    opacity: 1;
}


/* Animation fluide et continue */

@keyframes defilementInfini2 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* actualite */

.img-actu {
    border-top: 5px solid #A58D44;
    border-radius: 10px;
    overflow: hidden;
}

.img-actu img {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 350px;
    transform: scale(1);
    transition: all 0.6s ease;
}

.bloc-actu:hover .img-actu img {
    transform: scale(1.2);
}

.text-actu {
    display: flex;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #D9D9D9;
}

.col-xl-6>.bloc-actu .text-actu {
    border: none;
    padding-bottom: 0;
}

.bloc-actu {
    display: flex;
    flex-direction: column;
    gap: 35px;
    height: 100%;
}

.date-actu span {
    font-family: var(--font-myriad-pro);
    font-weight: 700;
    font-size: clamp(40px, 3.375vw + 1rem, 70px);
    line-height: 100%;
    color: #A58D44;
    margin-bottom: 5px;
}

.date-actu>div {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #393939;
}

.titre-actu {
    font-family: var(--font-myriad-pro);
    font-weight: 600;
    font-size: clamp(22px, 0.875vw + 1rem, 30px);
    line-height: 40px;
    color: #1E1E1E;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.row-actu {
    height: 100%;
}

.row-actu .col-xl-12:last-child {
    margin-top: auto;
}

.bloc-row-actu {
    position: relative;
}

.bloc-row-actu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 54%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #D9D9D9;
}

.titre-actu a {
    background-image: linear-gradient(to left, #A58D44, #A58D44);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size 1.2s;
    display: inline;
}

.bloc-actu .titre-actu a:hover {
    background-size: 100% 1px;
    color: #A58D44;
    /* text-decoration: underline; */
    /* transition: 0.8s ease; */
}


/* form-contact */

.section-form-contact {
    position: relative;
    background: linear-gradient(180deg, rgba(233, 223, 205, 0.5) 0%, rgba(229, 211, 179, 0.5) 100%);
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
}

.style-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.champ-contact {
    position: relative;
}

.champ-contact textarea,
.champ-contact input {
    height: 42px;
    width: 100%;
    padding-right: 20px;
    background: transparent;
    border-bottom: 1px solid #393939;
}

.champ-contact textarea {
    height: 106px;
    margin-top: 5px;
    min-height: 42px;
}

.champ-contact textarea,
.champ-contact textarea::placeholder,
.champ-contact input::placeholder,
.champ-contact input {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #393939;
}

.champ-contact img {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

img.img-textarea {
    position: absolute;
    top: 15px;
    right: 0;
}

.text-form-contact {
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #393939;
}

.btn-contact {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.champ-contact:hover input {
    border-bottom: 1px solid #A58D44;
}


/* info-contact */

.bloc-info {
    display: flex;
    gap: 25px;
}

.contact-info {
    font-family: var(--font-myriad-pro);
    font-weight: 400;
    font-size: 20px;
    line-height: 38px;
    text-transform: uppercase;
    color: #393939;
}

.contact-info span i,
.contact-info span {
    font-weight: 700;
    font-size: clamp(13px, 1vw + 1rem, 34px);
    line-height: 38px;
}

.contact-info span {
    white-space: nowrap;
    position: relative;
}

.icon-info {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info span::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1E1E1E;
    transition: all 0.4s ease;
}

.contact-info:hover span::before {
    width: 100%;
}


/* template mobile */


/* menu */

ul.menu {
    list-style: none;
}

ul.menu>li {
    position: relative;
}

.section-navigateur.fixed ul.dropdown,
.section-navigateur ul.dropdown {
    top: 100%;
}

ul.dropdown {
    display: block;
    position: absolute;
    left: 0;
    min-width: 180px;
    background: #FFFFFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 0;
    list-style: none;
    z-index: 1;
    width: 300px;
    text-align: left;
    transition: 0.5s;
    visibility: hidden;
    transform: translateY(50px);
    opacity: 0;
    padding: 16px 0;
    border-radius: 5px;
}

ul.dropdown li a {
    width: 100%;
    display: block;
    padding: 12px 24px !important;
    text-decoration: none;
    font-family: var(--font-myriad-pro);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #262626;
}

ul.dropdown li:last-child {
    border-bottom: none;
}

ul.dropdown li a {
    position: relative;
    display: inline-block;
    color: #33302D;
    text-decoration: none;
    padding-left: 16px;
}

ul.dropdown li:hover a {
    color: #A58D43;
    margin-left: 10px;
}

.show-dropdown {
    display: block !important;
}


/* navigateur mobile */

.icon-bar {
    width: 100%;
    height: 6px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle {
    width: 40px;
    height: 33px;
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 0;
    z-index: 1001;
}

.menu-toggle.open .top {
    transform: rotate(45deg) translate(10px, 6px);
}

.menu-toggle.open .middle {
    opacity: 0;
}

.menu-toggle.open .bottom {
    transform: rotate(-45deg) translate(13px, -12px);
}


/* fixed */

.section-navigateur.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #C6AC7D;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: auto;
}

.temoignage-item-slide {
    position: relative;
    height: 231px;
    width: 100%;
}

.bloc-avis {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease, transform 0.4s ease;
}

.owl-carousel.temoignage .owl-stage-outer {
    padding: 21px 0px;
    background: #EEECE9;
}

@media (max-width: 1199px) {
    .bloc-navigateur-principal {
        background: transparent;
    }
    ul.dropdown {
        display: block;
        position: relative;
        left: 0;
        background: #EEECE9;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.0);
        padding: 0;
        list-style: none;
        z-index: 1;
        width: 100%;
        text-align: left;
        transition: 0.5s;
        visibility: visible;
        opacity: 0;
        display: none;
    }
    .lien-mobile {
        position: absolute;
        top: 100%;
        width: 100%;
        display: block;
        flex-direction: column;
        left: 0px;
        background-color: #EEECE9;
        gap: 0px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, transform 0.5s ease;
        transform: translateY(-15px);
        overflow: hidden;
    }
    .has-dropdown>a::before {
        display: none;
    }
    .lien-mobile {
        align-items: center;
        justify-content: center;
        border: 1px solid transparent;
        border-radius: 0px;
        margin: 0;
    }
    .lien-mobile.actived {
        opacity: 1;
        visibility: visible;
        transform: translateY(0px);
        overflow-y: auto;
        max-height: calc(100vh - 80px);
    }
    .lien-mobile>li {
        width: 100%;
    }
    .nav-lien img.logo-fixed,
    .nav-lien img.logo-default {
        padding: 15px 0;
    }
    .lien-mobile a br {
        display: none;
    }
    .lien-mobile a {
        width: 100%;
        justify-content: space-between;
    }
    .has-dropdown>a,
    ul.dropdown li a {
        color: #1F3643;
    }
    .has-dropdown>a {
        padding: 15px 18px !important;
    }
    .lien-mobile.actived ul.dropdown.active {
        display: block;
        opacity: 1;
        transform: translateY(0px);
    }
    .has-submenu>a.active::after,
    .has-dropdown .active i,
    .has-dropdown .active img {
        transform: rotate(180deg);
    }
    .has-dropdown div {
        pointer-events: none;
    }
}

.map-mobile {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1;
    max-width: 15vw;
    min-width: 100px;
}