:root {
    --font-plus-jakarta-sans: "Plus Jakarta Sans", sans-serif;
}

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

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    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: relative;
    width: 100%;
    padding: 0 0;
    z-index: 10;
    background: transparent;
}

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

.lien-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.has-dropdown:not(:first-child)>a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: #FFFFFF4D;
    z-index: 2;
}

.has-dropdown>a {
    position: relative;
    padding: 30px 0;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FAFAFA;
}

.bloc-nav-contact {
    position: relative;
    z-index: 1;
    background: #111520;
}

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

.icon-lnc {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #83CCD8;
}

.lnc {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 800;
    font-size: 15px;
    line-height: 18px;
    color: #FFFFFF;
}

.lnc:hover {
    color: #83CCD8;
}

.txt-lnc span {
    font-weight: 400;
}


/* section-slide */

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

.item-slide {
    position: relative;
    width: 100%;
    height: 640px;
    max-height: calc(100vh - 250px);
    overflow: hidden;
    min-height: 620px;
}

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

.Mypage.page .deco-slide {
    position: relative;
    margin-top: -30px;
}

.img-page-slide {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
}

.img-page-slide span {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    width: 100%;
    height: 100%;
}

.img-page-slide span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(98.63deg, #0E4D5F 26.69%, #1E2432 50%, #0A0D15 73.31%);
    opacity: 0.3;
    z-index: 2;
}

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


/* .item-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
} */

.bloc-img-slide {
    position: absolute;
    width: 100%;
    top: 5%;
    object-fit: cover;
    z-index: 0;
}

.bloc-img-slide .container {
    display: flex;
    justify-content: flex-end;
}

.img-slide {
    position: relative;
    display: inline-block;
}

.img-slide>img {
    border-radius: 50% 50% 0 0;
}

.deco1-img-slide {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
    -webkit-mask-image: url('../images/mask.svg');
    mask-image: url('../images/mask.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
}

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

.deco2-img-slide {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
    z-index: -1;
}

.titre-slide {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 700;
    font-size: clamp(26px, 2.43vw + 1rem, 50px);
    line-height: 1.3;
    letter-spacing: -2.07px;
    color: #FAFAFA;
    max-width: 696px;
}

.text-slide {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 500;
    font-size: clamp(13px, 0.57vw + 1rem, 24px);
    line-height: 1.4;
    color: #FAFAFA;
    max-width: 696px;
}

.bloc-titre-slide .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.deco-slide {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.owl-carousel.accueil .owl-item .btn-slide,
.owl-carousel.accueil .owl-item .text-slide,
.owl-carousel.accueil .owl-item .titre-slide {
    transform: translateY(50px);
}

.owl-carousel.accueil .owl-item .titre-slide {
    transition: all 1s ease 0.1s;
}

.owl-carousel.accueil .owl-item .text-slide {
    transition: all 1s ease 0.2s;
}

.owl-carousel.accueil .owl-item .btn-slide {
    transition: all 1s ease 0.3s;
}

.owl-carousel.accueil .owl-item.active .btn-slide,
.owl-carousel.accueil .owl-item.active .text-slide,
.owl-carousel.accueil .owl-item.active .titre-slide {
    transform: translateY(0);
}

.dots-slide {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

#customDotsSlide {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

#customDotsSlide .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #83CCD8;
    pointer-events: all;
}

#customDotsSlide .owl-dot.active {
    height: 34px;
    border-radius: 999px;
    transition: all 0.4s ease;
}


/* formulaire */

.section-formulaire {
    position: relative;
    z-index: 1;
    padding: 14px 0;
    background: #83CCD8;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 200px;
}

.les-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.form-title {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    text-align: right;
    color: #0E4D5F;
}

.form-title div {
    display: inline;
    white-space: nowrap;
}

.form-title span {
    font-size: 32px;
    line-height: 27px;
    color: #FAFAFA;
}

.champ-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #0E4D5F;
    white-space: nowrap;
}

.champ-form button {
    width: 56px;
    height: 56px;
    border: 2px solid #0E4D5F;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.champ-form button:hover,
.champ-form button.active {
    background: #0E4D5F;
    border: 2px solid #0E4D5F;
}

.champ-form button:hover svg path,
.champ-form button.active svg path {
    fill: #83CCD8;
}

.row-form {
    align-items: center;
}

.titre-label-form {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    text-align: right;
    text-transform: uppercase;
    color: #0E4D5F;
    width: 74px;
}

.btn-form button {
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 800;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0E4D5F;
    color: #FAFAFA;
    border-radius: 50%;
    flex-direction: column;
    gap: 6px;
}


/* presentation */

.section-presentation {
    position: relative;
    clear: both;
    z-index: 2;
}

.img-pre {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    height: 100%;
    z-index: 1;
    max-width: 483px;
}

.img-pre1 {
    border-top-right-radius: 200px;
}

.img-pre2 {
    border-bottom-left-radius: 200px;
}

.para-pre {
    position: relative;
    z-index: 1;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FAFAFA;
    display: table;
}

.pycto-int {
    position: absolute;
    bottom: -50px;
    right: 0;
    z-index: -1;
    width: 58%;
    max-width: 467px;
}

.titre-para {
    font-weight: 700;
    font-size: 22px;
    color: #83CCD8;
}

.bloc-deco-pre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48%;
}

.deco-pre {
    position: relative;
}

.img-pre-animate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.img-pre-animate {
    animation: roue 20s linear infinite;
    transform-origin: center;
}

@keyframes roue {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* valeur */

.para-valeur {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    color: #FAFAFA;
}

.titre-valeur {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 800;
    font-size: 22px;
    line-height: 24px;
    color: #83CCD8;
}

.bloc-valeur {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 55px 93px 50px 30px;
    background: #FFFFFF;
    border-bottom-right-radius: 160px;
    width: 100%;
    max-width: 404px;
}

.banner-valeur {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.text-valeur {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1E2432;
}

.icon-valeur {
    position: absolute;
    top: 30px;
    right: 30px;
}


/* avis */

.section-avis {
    background: #0E4D5F;
    border-bottom-right-radius: 160px;
    border-bottom-left-radius: 160px;
}

.item-avis {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: #1E2432;
    padding: 20px 40px;
    border-bottom-right-radius: 80px;
    height: 300px;
}

.text-avis {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-style: Italic;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.client-avis {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 700;
    font-size: 22px;
    line-height: 36px;
    color: #83CCD8;
}

.quote {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

#customDotsavis {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

#customDotsavis .owl-dot {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    background: #83CCD8;
    border-radius: 50%;
}

#customDotsavis .owl-dot.active {
    width: 50px;
    border-radius: 50px;
    transition: all 0.4s ease;
}


/* referencement */

.img-ref {
    position: relative;
    width: 100%;
    height: 320px;
    border-top-right-radius: 160px;
    border-bottom-left-radius: 160px;
    overflow: hidden;
    margin-bottom: 40px;
}

.img-ref::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #83CCD8;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.ref-i {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cedn-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 38%;
    min-width: 180px;
}


/* actualites */

.bloc-actu {
    display: block;
}

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

.img-actu {
    overflow: hidden;
    border-radius: 50% 50% 0 0;
    width: 100%;
    height: 460px;
    margin-bottom: 20px;
}

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

.date-actu {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 800;
    font-size: 18px;
    line-height: 36px;
    text-transform: uppercase;
    color: #83CCD8;
}

.text-actu {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 700;
    font-size: clamp(18px, 0.714vw + 1rem, 26px);
    line-height: 1.4;
    color: #FAFAFA;
}

.btn-atu {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
    color: #FAFAFA;
    padding-top: 20px;
    border-top: 1px solid #83CCD8;
    margin-top: 40px;
    color: #83CCD8;
}


/* service */

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

.item-service {
    position: relative;
    width: 100%;
    height: 460px;
    border-bottom-right-radius: 160px;
    overflow: hidden;
}

.item-service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(14, 77, 95, 0) 45.87%, #1E2432 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.item-service::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(160.32deg, #0E4D5F 3.44%, #1E2432 50%, #0A0D15 96.56%);
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0.6;
}

.item-service:hover::after {
    height: 100%;
}

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

.img-service {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.titre-service {
    position: absolute;
    inset: 30px;
    top: unset;
    z-index: 2;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #83CCD8;
    opacity: 1;
    transition: all 0.4s ease;
}

.titre-service span {
    font-weight: 700;
}

.icon-service {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 160px;
    height: 160px;
    background: #83CCD8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0;
}

.item-slide:hover .icon-service {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.item-slide:hover .titre-service {
    opacity: 0;
}

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

.custom-dots {
    padding: 14px 30px;
    border-radius: 100px;
    border: 1px solid #FFFFFF21;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    margin-bottom: 40px;
}

.custom-dots button {
    background: transparent;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #FFFFFFB2;
}

.dot-btn.active-text {
    color: #E2E4EA;
    text-decoration: underline;
    text-decoration-style: solid;
}


/* footer */

footer {
    background: #0A0D15;
}

.titre-news {
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 28px;
    text-align: right;
    color: #FAFAFA;
}

.titre-news span {
    color: #0E4D5F;
}

.bloc-news {
    border-top-right-radius: 160px;
    border-bottom-left-radius: 160px;
    background: #83CCD8;
    padding: 27px 60px;
}

.bloc-news form {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
}

.banner-news {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.champ-footer {
    position: relative;
    width: 100%;
}

.label-footer {
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-50%);
    font-family: "Urbanist", sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FAFAFA;
    padding: 0 12px;
    background: #83CCD8;
    z-index: 5;
}

.champ-footer input {
    width: 100%;
    height: 42px;
    padding: 14px 30px 10px 30px;
    border: 2px solid #FAFAFA;
    border-radius: 999px;
    background: transparent;
}

.champ-footer input,
.champ-footer input::placeholder {
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-style: Italic;
    font-size: 16px;
    line-height: 1;
    color: #1E2432;
}

.text-nws {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.titre-footer {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    color: #78C6BE;
    margin-bottom: 20px;
}

.info-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 800;
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #FFFFFF;
}

.info-footer div {
    font-weight: 700;
    font-size: 16px;
    text-transform: lowercase;
}

.info-footer span {
    font-weight: 400;
    font-size: 16px;
    text-transform: lowercase;
}

.lien-footer {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #FFFFFF;
}

.bloc-copyright a:hover,
.info-footer a:hover,
.lien-footer a:hover {
    color: #83CCD8;
}

.bloc-footer {
    position: relative;
    padding: 30px 0;
    border-top: 1px solid #F8F7F380;
    border-bottom: 1px solid #F8F7F380;
}

.bloc-footer::after,
.bloc-footer::before {
    content: '';
    position: absolute;
    background: #F8F7F380;
    left: 25%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: calc(100% - 60px);
}

.bloc-footer::after {
    left: 50%;
}

.txt-footer {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.flex-footer-g {
    display: flex;
    gap: 20px;
}

.flex-footer {
    display: flex;
    justify-content: center;
}

.bloc-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.bloc-copyright span,
.bloc-copyright a {
    font-weight: 700;
}

.copyright {
    padding: 30px 0;
}

.arobiz {
    display: flex;
    align-items: end;
    gap: 6px;
    flex-wrap: wrap;
    text-align: center;
}

.arobiz svg {
    position: relative;
    top: -5px;
}


/* contact */

.champ-contact textarea,
.champ-contact input {
    height: 60px;
    border-bottom-right-radius: 80px;
    padding: 18px 20px 18px 46px;
    background: #FFFFFF;
}

.champ-contact textarea {
    height: 191px;
}

.champ-contact textarea::placeholder,
.champ-contact input::placeholder,
.champ-contact textarea,
.champ-contact input {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #3B445980;
}

.text-form-contact {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #F2F6F780;
    margin-bottom: 34px;
}

.btn-contact {
    display: flex;
    align-items: center;
    gap: 10px 48px;
    flex-wrap: wrap;
}

.champ-contact {
    position: relative;
}

.icon-contact {
    position: absolute;
    top: 16px;
    left: 20px;
    z-index: 2;
}


/* 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: #FAFAFA;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    list-style: none;
    z-index: 1;
    width: max-content;
    text-align: left;
    transition: 0.5s;
    visibility: hidden;
    transform: translateY(50px);
    opacity: 0;
}

ul.dropdown li a {
    width: 100%;
    display: block;
    padding: 8px 24px;
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #1E2432;
}

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

ul.dropdown li:hover a {
    color: #83CCD8;
}

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

.has-dropdown>a:hover {
    color: #83CCD8;
}


/* navigateur mobile */

.icon-bar {
    width: 100%;
    height: 6px;
    background: #FAFAFA;
    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: 99999;
    background: #0A0D15DB;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: auto;
}

.btn-nav {
    display: none;
}

.section-navigateur.fixed .btn-nav {
    display: inline-flex;
}

.section-navigateur.fixed .li-lien1 {
    max-width: 161px;
}

@media (max-width: 1199px) {
    .bloc-navigateur-principal {
        background: transparent;
    }
    ul.dropdown {
        display: block;
        position: relative;
        left: 0;
        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: flex;
        flex-direction: column;
        left: 0px;
        background: #FAFAFA;
        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;
    }
    .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;
        padding: 10px 15px;
        color: #0A0D15;
    }
    .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;
    }
}

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

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

.img-deco1 {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 0;
}

.img-deco5,
.img-deco3,
.img-deco2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 90%;
    z-index: -1;
}

.img-deco4 {
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0;
    min-width: 530px;
}

.info-c {
    padding: 40px 80px 10px 30px;
    background: #FFFFFF;
    border-bottom-right-radius: 160px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 374px;
}

.titre-info-c {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 800;
    font-size: 22px;
    line-height: 24px;
    color: #83CCD8;
}

.txt-info-c {
    font-family: var(--font-plus-jakarta-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1E2432;
}

.txt-info-c span {
    font-weight: 700;
}

.bloc-info {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.img-info img {
    border-top-right-radius: 200px;
}

.font-w-400 {
    font-weight: 300 !important;
}

.color--2 {
    color: #1E2432;
}

.color--2:hover {
    color: #FFF;
}

.wizard-custom-select .wizard-custom-select-header div.text-container .label,
.checkbox,
.checkbox+div,
.checkbox+div a,
.wizard-custom-select .wizard-custom-select-header div.text-container .selected-value {
    color: #ffffff !important;
}

#step3-1 .input-wrapper {
    opacity: 0.8
}