:root {
    --unit: 73px;
    --um: 17px;

    --rn-width1: calc(13 * var(--unit) + 22 * var(--um));
    --rn-widthsolutions: calc(18 * var(--unit) + 6 * var(--um));

    --MoreLinksWidth1: calc(13 * var(--unit) + 16 * var(--um));
    --MoreLinksWidth2: calc(13 * var(--unit) + 16 * var(--um));

    --titleSize: 40px;
    --discrSize: 18px;

    --linksSize: 18.3px;

    --red: #e53740;
    --blue: #69c1bd;
    --gray: #222224;
}

@font-face {
    font-family: "PoppinsBold";
    src: url("/fonts/Axiforma-Bold.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "PoppinsMedium";
    src: url("/fonts/Axiforma-Medium.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "PoppinsRegular";
    src: url("/fonts/Axiforma-Regular.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "PoppinsSemiBold";
    src: url("/fonts/Axiforma-SemiBold.ttf") format("truetype");
    font-display: swap;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.subtitle {
    text-transform: uppercase;
    font-family: "PoppinsBold";
    margin-bottom: 15px;
    color: rgba(176, 176, 176, 1);
}
.section-title {
    /* color: #333; */
    font-size: var(--titleSize);
    /* margin-bottom: 80px; */
    font-family: 'PoppinsBold';
    line-height: 60px;
}
.section-subtitleleft {
    /* text-align: left; */
    font-size: 22px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 22px;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}


a {
    text-decoration: none;
}
li {
    list-style: none;
}
.containerB,
.containerG,
.containerW {
    font-family: "PoppinsRegular";
    margin-bottom: 40px;
}
.containerB {
    background-color: BLACK;
    color: white;
    position: relative;
    overflow: hidden;
}
.containerW {
    background-color: white;
    color: black;
    margin-top: 40px;
    margin-bottom: 40px;
}
.containerG {
    background-color: #f8f8f8;
}
/**
new css for container w :
*/
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.containerW {
    opacity: 0;
    transform: translateX(-50px);
    margin-top: 40px;
    margin-bottom: 40px;
}

.containerW.is-visible {
    animation: fadeInLeft 1s ease-out forwards;
    opacity: 1;
    margin-top: 60px;
    margin-bottom: 40px;
    transform: translateX(0);
    margin-top: 60px;
    margin-bottom: 40px;
}

/* end */
/*  titles */
h1,
h2,
h3,
h4 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
    line-height: normal;
    color: inherit;
    text-align: inherit;
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    display: block;
    margin-block-end: 10px;
    unicode-bidi: isolate;
}
p {
    margin: 0;
}

.pageTitles {
    font-family: "PoppinsBold";
    font-size: var(--titleSize);
    color: var(--red);
    line-height: 46px;
    /* text-transform: uppercase; */
}
.pageTitles.W {
    color: white;
}
.pageTitles.B {
    color: black;
}
.pageTitles .line {
    width: 60px;
    height: 1px;
    background-color: var(--red);
    margin-left: 18px;
    margin-bottom: -3px;
}
.pageTitles.centre {
    display: flex;
    justify-content: center;
    text-align: center;
}
.lineUnder {
    width: 120px;
    height: 1px;
    background-color: var(--red);
    margin: 22px 0;
}

.logoZone.bg-red .logo{
    width: 60%;
}
.logoZone.bg-red a{
    display: flex;
    justify-content: center;
}
.logo_social .logo{
    width: 60%;
}

/***
=============================================
   Thm Btn
=============================================
***/

.thm-btn {
    position: relative;
    display: inline-block;
    border-radius: 0px;
    padding: 15px 25px 13px;
    color: #ffffff;
    font-size: var(--linksSize);
    background: transparent;
    overflow: hidden;
    font-family: "PoppinsRegular";
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    z-index: 1;
}
.thm-btn.red.inMenu,
    .thm-btn.red.w.inMenu {
        letter-spacing: 0;
        padding: 10px 9px 10px;
        /* font-size: 12px; */
        width: 140px;
    }
.thm-btn.W:before,
.thm-btn.W:after,
.thm-btn.W.txt

 {
    background: white;
    color: #000;
}
.thm-btn:before {
    position: absolute;
    left: 46px;
    top: 0px;
    right: 95px;
    content: "";
    background: var(--red);
    height: 1px;
    content: "";
    z-index: 1;
    transition: all 0.5s ease;
}
.thm-btn:hover:before {
    left: 0px;
    right: 0px;
    background: var(--red);
}
.thm-btn:after {
    position: absolute;
    left: 91px;
    bottom: 0px;
    right: 50px;
    content: "";
    background: var(--red);
    height: 1px;
    content: "";
    z-index: 1;
    transition: all 0.5s ease;
}
.thm-btn:hover::after {
    left: 0px;
    right: 0px;
    background: var(--red);
}
.thm-btn .bdrl {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: var(--red);
    -webkit-transform: scale(0);
    transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    transition: all 0.5s ease;
    z-index: -1;
}
.thm-btn:hover .bdrl {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    background: var(--red);
}
.thm-btn .bdrr {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: var(--red);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    transition: all 0.5s ease;
    z-index: -1;
}
.thm-btn:hover .bdrr {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    background: var(--red);
}
.thm-btn .txt {
    position: relative;
    z-index: 1;
    font-family: "PoppinsRegular";
}
.thm-btn:hover,
.thm-btn:focus {
    color: #ffffff;
}
/*btn.red*/
.thm-btn.red,
.thm-btn.red.bgw {
    background-color: var(--red);
    /* padding: 11px 11px 11px; */
    letter-spacing: 0;
    font-size: 17px;
    border-radius: 12px;
    width: auto;
    text-align: center;
}
.thm-btn.red:hover {
    background-color: transparent;
}
.thm-btn.red.bgg:hover {
    color: var(--red);
}
.thm-btn.red::before,
.thm-btn.red::after {
    left: 0px;
    right: 0px;
}
.thm-btn.red .bdrl,
.thm-btn.red .bdrr {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}
.thm-btn.red:hover:before {
    left: 46px;
    right: 95px;    height: 1px;

}
.thm-btn.red:hover:after {
    left: 95px;
    right: 46px;
}
.thm-btn.red:hover .bdrl,
.thm-btn.red:hover .bdrr {
    -webkit-transform: scale(0);
}
/*btn.red*/
.thm-btn.red.bgw:hover {
    color: var(--red);
}
.thm-btn.W {
    background-color: #ffffff;
    color: black;
}

.thm-btn.W::after ,.thm-btn.W::before {
    background-color: #ffffff;
    color: black;
    left: 0;
    bottom: 0px;
    right: 0;
    content: "";
    height: 0;
}

/***
=============================================
   header(menu)
=============================================
***/
header {
    background-color: rgb(0, 0, 0);
    color: white;
    width: 100%;
    z-index: 1000;
    top: 0px;
}
.menu {
    width: var(--rn-width1);
    margin: auto;
    padding: 20px 0;
    align-items: center;
}
.logoAndLinks {
    display: flex;
    width: 100%;
}
.links {
    display: flex;
    gap: 40px;
    position: relative;
}
.links .menuLink {
    color: white;
    transition: color 0.5s ease;
    font-family: "PoppinsSemiBold";
    font-size: var(--linksSize);
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.links .menuLink:hover {
    color: var(--red);
}
.contactBTN {
    background-color: var(--red);
    color: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 195px;
    font-family: "PoppinsRegular";
    font-size: var(--linksSize);
}
.logoAndLinks .hamburger-lines,
.logoAndLinks .checkbox {
    display: none;
}
.logoAndLinks .mobileLinksZone {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.logoAndLinks .mobileLinksZone .logoZone {
    width: 24%;
}
.logoZone.Mobile {
    display: none;
}

#keepHovering1,
#keepHovering2 {
    display: block;
    height: 100px;
    position: absolute;
}
#keepHovering1 {
    width: 27%;
    top: -9px;
    left: -3%;
}
#keepHovering2 {
    width: 27%;
    top: -9px;
    left: 51%;
}
.showMoreLinks {
    width: var(--MoreLinksWidth1);
    border: 3px solid white;
    background-color: black;
    color: white;
    display: none;
    position: absolute;
    z-index: 100;
    top: 90px;
}
.showMoreLinks.two {
    width: var(--MoreLinksWidth2);
}
.showMoreLinks.show {
    display: flex;
}

.selectionList {
    width: 30%;
    padding: 0 15px;
    background: rgb(9, 9, 9);
    position: relative;
}
.selectionList.two {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 18px;
}

.selectionListCard {
    margin: 10px 0;
    padding: 7px 6px;
    outline-offset: 4px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    background-color: rgb(10, 10, 10);
}
.selectionListBefore {
    height: 60px;
    width: 321px;
    content: "";
    position: absolute;
    top: 29px;
    left: 12px;
    right: 9px;
    bottom: 5px;
    z-index: 1;
    border-radius: 14px;
    background: linear-gradient(
        45deg,
        rgb(12, 12, 12),
        rgb(215, 5, 5),
        rgb(222, 80, 80)
    );
    padding: 1px;
    transition: all 0.3s ease;
}

.selectionListBefore.one {
    top: 8px;
}
.selectionListBefore.two {
    top: 77px;
}
.selectionListBefore.three {
    top: 77px;
}
.selectionListBefore.fore {
    top: 146px;
}
.selectionListBefore.five {
    top: 215px;
}
.selectionListBefore.six {
    top: 283px;
}
.selectionListBefore.seven {
    top: 352px;
}
.selectionListBefore.eat {
    top: 421px;
}
.selectionListBefore.nine {
    top: 500px;
}

.selectionListBefore .whiteThing {
    padding: 10px;
    border-radius: 12px;
    background-color: rgb(12, 12, 12);
    height: 40px;
    width: 300px;
    margin: 0px;
}
.resultContentCard .titleAndSvg {
    font-size: 15px;
    gap: 10px;
}
.selectionListCard .titleAndSvg {
    font-size: 15px;
    justify-content: space-between;
}
.selectionListCard .titleAndSvg,
.resultContentCard .titleAndSvg {
    display: flex;
    align-items: center;
    font-family: "PoppinsSemiBold";
    z-index: 1;
    position: relative;
    margin-bottom: 2px;
}
.selectionListCard .titleAndSvg svg,
.resultContentCard .titleAndSvg svg {
    fill: var(--red);
}
.resultContentCard .titleAndSvg svg {
    width: 19px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.selectionListCard .underTitle,
.resultContentCard .underTitle {
    font-family: "PoppinsRegular";
    font-size: 12px;
    z-index: 1;
    position: relative;
    margin: 0;
}
.resultList {
    width: 70%;
    padding: 50px 0;
    position: relative;
}
.resultContentCard {
    border: none;
    margin: 0;
    padding: 0px;
}
.resultsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.resultListAll {
    position: absolute;
    opacity: 0;
    top: 25px;
    width: 95%;
    left: 20px;
    transition: opacity 0.2s ease, top 0.4s ease;
}
.resultListAll.show {
    opacity: 1;
    top: 30px;
    height: 62%;
}
.resultListCard {
    display: flex;
    align-items: flex-start;
    flex: 0 0 calc(50% - 13px);
    margin-bottom: 48px;
    gap: 12px;
    color: white;
}
.resultListCard svg {
    width: 75px;
    fill: #fff;
}
.resultListCard .difrentsvg {
    width: 50px;
}
.selectionList.two .resultListCard {
    margin-bottom: 0px;
}
.selectionList.two .resultListCard .icone {
    width: 50px;
}
.resultListCard:hover svg {
    opacity: 1;
}
.downLinkZone {
    font-size: 17px;
    font-family: "PoppinsSemiBold";
    margin: 0px;
    position: absolute;
    bottom: -144px;
    right: 15px;
}
.downLinkZone a {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.4s ease;
}
.downLinkZone a:hover {
    color: var(--red);
}

.m-siteMenu__arrow {
    position: absolute;
    top: -9px;
    width: 25px;
    left: 35px;
    height: 20px;
    background: #ffffff;
    margin: auto;
    -webkit-clip-path: polygon(
        0% 20%,
        60% 20%,
        60% 0%,
        100% 50%,
        60% 100%,
        60% 80%,
        0% 80%
    );
    clip-path: polygon(
        71% 14%,
        60% 20%,
        60% 0%,
        100% 50%,
        60% 100%,
        60% 80%,
        60% 19%
    );
    z-index: 2;
    pointer-events: none;
    transform: rotate(270deg);
}
.showMoreLinks.two .m-siteMenu__arrow {
    left: 285px;
}
.downLinkZone button {
    display: none;
}
.mobileSelectionList.down,
.mobileSelectionList {
    display: none;
}

.backToTop {
    width: 53px;
    height: 52px;
    border-radius: 50%;
    background-color: #e8e9e9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.47);
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: fixed;
    right: 4%;
    bottom: 10%;
    opacity: 0;
    z-index: 2000;
    transition: background-color 0.5s ease;
}
.backToTop svg {
    transform: rotate(270deg);
    fill: #000;
    transition: fill 0.5s ease;
}
.backToTop:hover {
    background-color: var(--red);
}
.backToTop:hover svg {
    fill: #e8e9e9;
}

/***
=============================================
footer
=============================================
***/
footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
footer {
    width: 100%;
    background-color: BLACK;
    color: white;
    margin-top: 200px;
}
footer .topFooter {
    display: flex;
    align-items: center;
    gap: 300px;
    /* margin-bottom: 60px; */
}
footer .topFooter .text {
    /* margin: 18 0; */
    font-family: "PoppinsSemiBold";
    /* font-size: var(--titleSize); */
 font-size: 30px;

}
footer .topFooter .under-text {
    font-family: "PoppinsRegular";
    font-size: 13px;
    display: flex;
    align-items: center;
    /* gap: 200px; */
    /* margin-bottom: 60px; */
}
.footerContent {
    width: var(--rn-width1);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 80px 0 35px 0;
}
.footerContent hr {
    width: 100%;
    border: 1px solid var(--gray);
    margin-top: 40px;
}
.footerContent_first,
.footerContent_second {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footerContent .expertises,
.footerContent .contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footerContent .logo_social {
    width: 31%;
}
.expertisesAndcontact {
    display: flex;
    width: 60%;
    justify-content: space-between;
}
.footerContent .expertises h2,
.footerContent .contact h2 {
    font-family: "PoppinsBold";
    color: white;
    font-size: 23px;
}
.footerContent .expertises a,
.footerContent .contact p {
    color: white;
    transition: color 0.5s ease;
    font-family: "PoppinsRegular";
    font-size: 18px;
}
.footerContent .expertises a:hover {
    color: var(--red);
}
.footerContent .logo_social p {
    font-size: 16px;
    font-family: "PoppinsRegular";
    width: 90%;
    line-height: 35px;
    letter-spacing: 2px;
    margin: 20px 0;
}
.footerContent .logo_social .social_icones {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
}
.footerContent .logo_social .social_icones svg {
    transition: scale 0.3s ease;
    cursor: pointer;
}
.footerContent .logo_social .social_icones svg:hover {
    scale: 1.1;
    fill: #fff;
}
.footerContent_second {
    font-family: "PoppinsRegular";
    font-size: 14px;
    color: white;
}

/* BREADCRUMB  */
.breadcrumb {
    list-style: none;
    display: flex;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "  /  ";
    padding: 0 5px;
}

.breadcrumb-item a {
    text-decoration: none;
    /* color: black; */
    font-family: "PoppinsSemiBold";
}
.breadcrumb-item a:hover {
    border-bottom: 1px solid grey;
}
.breadcrumb-item .darkFont {
    color: black;
}
.breadcrumb-item .lightFont {
    color: white;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/******************************
   *************************
        **Responsive**
    ***********************
******************************/
.thm-btn.red.w:hover {color:rgb(255, 255, 255);font-size:17px;color: #ffffff;background-color: transparent;}
.thm-btn.red.w {font-size:17px;
    background-color: white;
    color: #000;

}
@media (max-width: 1300px) {
    :root {
        --unit: 54px;
        --um: 10px;

        --MoreLinksWidth1: calc(12 * var(--unit) + 30 * var(--um));
        --MoreLinksWidth2: calc(7 * var(--unit) + 0 * var(--um));

        --titleSize: 32px;
        --discrSize: 15px;

        --linksSize: 13px;
    }

    .containerB,
    .containerG,
    .containerW {
        margin-bottom: 40px;
    }

    .pageTitles {
        line-height: 35px;
    }
    .thm-btn.red.w:hover {color:rgb(255, 255, 255);font-size:12px;color: #ffffff;background-color: transparent;}
    .thm-btn.red.w {font-size:12px;
        background-color: white;
        color: #000;

    }
    /*+++++++++++++++++
    header(menu)
    +++++++++++++++++++*/
    .logoAndLinks svg {
        width: 100px;
    }
    .links {
        gap: 18px;
    }
    .thm-btn.red.inMenu,
    .thm-btn.red {
        letter-spacing: 0;
        padding: 10px 9px 10px;
        font-size: 12px;
        width: 187px;
    }
    .thm-btn.red.inMenu,.thm-btn.red.w.inMenu
    {
        letter-spacing: 0;
        padding: 10px 9px 10px;
        font-size: 12px;
        width: 140px;
    }
    .thm-btn.red.w{
                letter-spacing: 0;
        padding: 10px 9px 10px;
        font-size: 12px;
    }
    .thm-btn.red.bgw {
        padding: 11px 10px 11px;
        font-size: var(--linksSize);
        line-height: 20px;
        /* min-width: 155px; */
    }
    .thm-btn.red:hover:before {
        left: 17px;
        right: 55px;
    }
    .thm-btn.red:hover:after {
        left: 54px;
        right: 18px;
    }
    .thm-btn.exeption:after{
        left: 0 px;
        right: 0px;
        height:0px;
    }

    .section-title {
        line-height: 36px;
    }
    /*+++++++++++++++++
    footer
    +++++++++++++++++++*/
    .footerContent {
        gap: 25px;
    }
    .footerContent .logo_social p {
        font-size: 13px;
        line-height: 26px;
        letter-spacing: 2px;
    }
    .footerContent .logo_social {
        width: 35%;
    }
    .social_icones #fb {
        width: 13px;
    }
    .social_icones #inst {
        width: 22px;
    }
    .social_icones #linked,
    .social_icones #youtube {
        width: 25px;
    }
    .footerContent .expertises {
        width: 40%;
    }
    .footerContent .expertises a,
    .footerContent .contact p {
        font-size: 14px;
    }
    .footerContent .expertises h2,
    .footerContent .contact h2 {
        font-size: 21px;
    }
    .footerContent_second {
        font-size: 11px;
    }

    /*+++++++++++++++++
    More Links Width
    +++++++++++++++++++*/
    .selectionListCard .titleAndSvg {
        font-size: 12px;
    }
    .selectionListCard .underTitle,
    .resultContentCard .underTitle {
        font-size: 10px;
    }
    .showMoreLinks {
        top: 68px;
    }
    .selectionListCard .titleAndSvg svg {
        width: 18px;
    }
    .m-siteMenu__arrow {
        top: -7px;
        left: 27px;
        width: 19px;
        height: 15px;
    }
    .selectionListCard {
        margin: 10px 0;
        padding: 4px 0px;
        color: white;
    }
    .selectionListBefore .whiteThing {
        height: 54px;
        width: 255px;
        padding: 0px;
    }
    .selectionListBefore {
        height: 54px;
        width: 256px;
    }
    .selectionListBefore.one {
        top: 8px;
    }
    .selectionListBefore.two {
        top: 80px;
    }
    .selectionListBefore.three {
        top: 65px;
    }
    .selectionListBefore.fore {
        top: 126px;
    }
    .selectionListBefore.five {
        top: 184px;
    }
    .selectionListBefore.six {
        top: 242px;
    }
    .selectionListBefore.seven {
        top: 300px;
    }
    .selectionListBefore.eat {
        top: 359px;
    }
    .selectionListBefore.nine {
        top: 400px;
    }
    .resultContentCard .titleAndSvg {
        font-size: 12px;
    }
    .resultListCard svg {
        width: 60px;
    }
    .downLinkZone {
        font-size: 12px;
        bottom: -70px;
    }

    .showMoreLinks.two .m-siteMenu__arrow {
        left: 227px;
    }
    .selectionList.two .resultListCard .icone {
        width: 40px;
    }
    .breadcrumb {
        font-size: 10px;
    }
}

@media (max-width: 900px) {
    :root {
        --unit: 40px;
        --um: 10px;

        --MoreLinksWidth1: 100%;
    }

    /*+++++++++++++++++
    breadcrumb
    +++++++++++++++++++*/
    .breadcrumb {
        font-size: 10px;
    }

    /*+++++++++++++++++
    header(menu)
    +++++++++++++++++++*/
    #keepHovering1,
    #keepHovering2 {
        display: none;
    }
    .menu {
        position: fixed;
        background-color: #000000c4;
        width: 100%;
        z-index: 100;
        padding: 15px 0;
    }
    .logoAndLinks {
        display: flex;
        height: 35px;
        justify-content: flex-start;
        align-items: center;
        padding: 0 26px;
    }
    .logoAndLinks .checkbox {
        position: absolute;
        display: block;
        height: 32px;
        width: 32px;
        top: 16px;
        right: 30px;
        opacity: 0;
        cursor: pointer;
        z-index: 102;
    }
    .logoAndLinks .hamburger-lines {
        display: block;
        height: 26px;
        width: 32px;
        position: absolute;
        top: 16px;
        right: 30px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 101;
    }
    .logoAndLinks .hamburger-lines .line {
        display: block;
        height: 2.6px;
        width: 100%;
        border-radius: 10px;
        background: #ffffff;
    }
    .logoAndLinks .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }
    .logoAndLinks .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }
    .logoAndLinks .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }
    .links {
        width: var(--rn-width1);
        margin: 15px auto;
        flex-direction: column;
        text-align: left;
        gap: 15px;
    }
    .logoAndLinks .mobileLinksZone {
        overflow: scroll;
        height: 100vh;
        width: 100%;
        transform: translateX(150%);
        display: flex;
        flex-direction: column;
        margin-top: 60px;
        transition: transform 0.5s ease-in-out;
        position: fixed;
        top: 0;
        right: 0;
        background-color: black;
        z-index: 100;
        justify-content: flex-start;
    }
    .logoAndLinks .mobileLinksZone .menuLink {
        color: white;
        position: relative;
        padding: 15px 0;
        border-bottom: 1px solid rgb(74, 74, 74);
    }
    .logoAndLinks .mobileLinksZone .menuLink:last-child {
        border-right: none;
    }
    .logoAndLinks .mobileLinksZone .menuLink::before {
        content: "";
        position: absolute;
        right: 0px;
        top: 25px;
        width: 20px;
        height: 20px;
        background: no-repeat
            url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMzAnIGhlaWdodD0nMzEnIHZpZXdCb3g9JzAgMCAzMCAzMScgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMTAuNjU3NCA3LjUwMTgzTDE5LjM0MjggMTYuMjgyOUwxMC42NTc0IDI1LjAwMTgnIHN0cm9rZT0nYmxhY2snIHN0cm9rZS13aWR0aD0nMicgc3Ryb2tlLWxpbmVjYXA9J3JvdW5kJyBzdHJva2UtbGluZWpvaW49J3JvdW5kJy8+PC9zdmc+Cg==);
        background-size: 100% auto;
        margin-top: -10px;
        transition: all 0.5s;
    }
    .logoAndLinks input[type="checkbox"]:checked ~ .mobileLinksZone {
        transform: translateX(0);
    }
    .logoAndLinks input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }
    .logoAndLinks input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }
    .logoAndLinks input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }
    .headerBtnZone {
        display: flex;
        justify-content: center;
        margin-top: 48px;
    }
    .logoZone.Mobile {
        display: flex;
    }

    /*+++++++++++++++++
    footer
    +++++++++++++++++++*/
    .footerContent_first {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    .footerContent .logo_social {
        width: 100%;
        text-align: center;
        gap: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    footer .topFooter .text {
        font-size: 21px;
    }
    footer .topFooter {
        gap: 19px;
    }
    .footerContent .logo_social .social_icones {
        justify-content: center;
    }
    .footerContent .logo_social p {
        margin: auto;
    }
    .expertisesAndcontact {
        width: 100%;
        justify-content: space-evenly;
    }
    .footerContent {
        padding: 40px 0 35px 0;
    }

    /*+++++++++++++++++
    More Links Width
    +++++++++++++++++++*/
    .logoAndLinks .mobileLinksZone .logoZone {
        display: none;
    }
    .showMoreLinks {
        top: 60px;
        border: none;
    }
    .m-siteMenu__arrow {
        display: none;
    }
    .selectionList {
        display: none;
    }
    .mobileSelectionList {
        display: none;
    }
    .mobileSelectionList.down {
        /* height: 465px; */
        display: flex;
        flex-direction: column;
    }
    .logoAndLinks svg {
        width: 90px;
    }
    .resultList {
        width: 100%;
        padding: 50px 0;
        position: absolute;
        right: -765px;
        height: 90vh;
        background: black;
        z-index: 1;
        transition: right 0.4s ease;
    }
    .resultList.active {
        right: 0px;
    }
    .resultListAll,
    .resultListAll.show {
        top: 50px;
    }
    .downLinkZone {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        width: 96%;
    }
    .downLinkZone button {
        color: white;
        display: flex;
        align-items: center;
        gap: 10px;
        border: none;
        background: transparent;
        font-family: "PoppinsSemiBold";
    }
    .downLinkZone button svg {
        transform: rotate(180deg);
    }
    .selectionList.two {
        display: none;
    }
}

@media (max-width: 700px) {
    :root {
        --rn-width1: 90%;
        --titleSize: 26px;
    }

    /*+++++++++++++++++
    footer
    +++++++++++++++++++*/
    .footerContent .expertises {
        width: 100%;
    }

    /*+++++++++++++++++
    More Links Width
    +++++++++++++++++++*/
    .resultsContainer {
        flex-direction: column;
    }
    .resultListCard svg {
        width: 45px;
    }

    /*+++++++++++++++++
    back To Top
    +++++++++++++++++++*/
    .backToTop {
        width: 45px;
        height: 45px;
    }
    .backToTop svg {
        width: 23px;
    }

    .thm-btn.red.inMenu{
    justify-content: center;
        margin-top: 47px;
    }
     .thm-btn.red {
    justify-content: center;
        /* margin-top: 47px; */
    }
     .footermargin{
        margin-bottom:40px;

    }
}
@media (max-width: 600px) {

        footer .topFooter {
        height: 224px;
    }

    .footerContent .logo_social {

        margin-top: 30px;
    }
.thm-btn.red.w {
        letter-spacing: 0;
        padding: 10px 9px 10px;
        font-size: 12px;
        text-align: center;
    }
}


.three_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: transparent; /* Make background transparent */
    clip-path: circle(0vw at 50% 50%);
    opacity: 0;
    transition: clip-path 1.2s ease-in-out, opacity 0.8s;
}

#three-scene {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Position the globe to match your screenshot */
#three-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 5%;
}

/* Ensure content stays on top of the globe with proper positioning */
.topSection {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.titleAndBtn {
    width: 60%;
    margin-right: auto;
}

.titleTopSection {
    color: #fff;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'PoppinsBold';
}

.titleTopSection span {
    color: #e63946; /* Red color for highlighted text */
}

.certif {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.image {
    display: flex;
    align-items: center;
    justify-content: center;
}


/**/
/*footer last macket*/

.footerContent {
    /* margin: 100px auto; */
    border-radius: 20px;
    position: relative;
    padding-top: 150px;
    max-width: 1200px;
}

.topFooter {
    background: linear-gradient(135deg, #e53e3e, #dd3333);
    padding: 30px 40px;
    text-align: left;
    position: absolute;
    top: -123px;
    left: 50%;
    transform: translateX(-50%);
    width: var(--rn-width1);
    max-width: 1000px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: row;
    gap: 98px;
    align-items: center;
    justify-content: space-between;
    height: 150px;
}

.topFooter .text-content {
    text-align: left;
    flex: 1;
}

.topFooter h3 {
    margin-bottom: 8px;
    color: #fff;
}

.topFooter .under-text {
    margin-bottom: 0;
    opacity: 0.9;
    color: #fff;
}

.topFooter .thm-btn {
    background-color: white;
    color: black;
    border-radius: 14px;
}
.topFooter .thm-btn:before {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 95px;
    content: "";
    background: var(--red);
    height: 0px;
    content: "";
    z-index: 1;
    transition: all 0.5s ease;
}

.thm-btn:after {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    background: var(--red);
    height: 1px;
    content: "";
    z-index: 1;
    transition: all 0.5s ease;
}
.topFooter .thm-btn:hover {
    color: rgb(255, 255, 255);
    color: black;
}


/* Responsive Design */
@media (max-width: 768px) {
    .topFooter {
        padding: 25px 20px;
        width: 95%;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .topFooter h3 {
        font-size: 1.3rem;
    }

    .topFooter .under-text {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .thm-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .topFooter {
        padding: 20px 15px;
        width: 98%;
    }
    .topFooter .thm-btn{
        margin-bottom: 30px;
        top:-7px
    }
    .topFooter h3 {
        font-size: 1.2rem;
    }

    .topFooter .under-text {
        font-size: 0.75rem;
    }

    .thm-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .thm-btn.gray{
        width: 80%;
    }
}


/* ,av icon */
.carousel-nav {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    justify-content: flex-end;
    margin-top: 20px;
}
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 20%;
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
        margin: 20px 0 0 0;
}
.carousel-btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.buttonSvg{
    width: 20px;
    fill: white;
}
.buttonSvg.R{
    fill: black;
}
.buttonSvg.W.bgg{
    fill: var(--red);
}

/* .thm-btn.red.w::before,.thm-btn.red.w::after {background: none; */

/* } */
.thm-btn.red.w::before,.thm-btn.red.w::after {background: white;

}
.thm-btn.red.w:hover .buttonSvg.R {
  fill: rgb(255, 255, 255); /* ou une autre couleur */
}


.thm-btn.gray:hover {color:rgb(255, 255, 255);color: #000000;background-color: transparent;}
.thm-btn.gray {
    background-color: #2d2d2d;
    color: #ffffff;
    border-radius: 12px;
    width: 70%;
    /* text-align: left; */

}
/* .thm-btn.red.w::before,.thm-btn.red.w::after {background: none; */

/* } */
.thm-btn.gray::before {background: #2d2d2d;height: 1px;right: 135px;left: 55px;


}
.thm-btn.gray::after {background: #2d2d2d;height: 1px;right: 44px;left: 135px;


}
.thm-btn.gray:hover{border-color: transparent;

}
.thm-btn.gray:hover .buttonSvg {
  fill: rgb(0, 0, 0); /* ou une autre couleur */
}

.thm-btn.red.bgw:hover .buttonSvg.W {
  fill: var(--red); /* ou une autre couleur */
}

@media (max-width: 750px) {
.thm-btn.gray {

    width: 90%;
    /* text-align: left; */
justify-content: center
}
.card_contact {
    background-color: #e8e8e8;
    border-radius: 12px;
    padding: 40px;
    flex: 1;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

}
