@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --main-color: #ff8500;
    --main-color-hover: #6d1c1a;
    --main-color-1: #368a00;
    --main-color-2: #00b1d2ff;
    --main-color-3: #5252d4ff;
    --main-color-4: #d85f16;
    --main-red-opacity: #fefaf0;
    --btn-bg-color: radial-gradient(at 48% 36%, rgb(15, 187, 195), rgb(6, 140, 147));
    --bg-circle: rgb(235, 252, 255);
    --text-black: rgb(46, 46, 46);
    --text-color: #5e5e5e;
    --text-gray-1: #747474;
    --main-border: #ffeded;
    --border-color: #e9e9e9;
    --bottom: #dee2e6;
    --d1: #d1d1d1;
    --footer-color: #051017;

    --e-global-color-primary: #253C56;
    --e-global-color-7b1170c: #4B6B90;

    --f7: #f7f7f7;
    --gray: #d3d3d3;

    --white: white;
    --white-1: rgba(255, 255, 255, 0.1);
    --white-2: rgba(255, 255, 255, 0.2);
    --white-3: rgba(255, 255, 255, 0.3);
    --white-4: rgba(255, 255, 255, 0.4);
    --white-5: rgba(255, 255, 255, 0.5);
    --white-6: rgba(255, 255, 255, 0.6);
    --white-7: rgba(255, 255, 255, 0.7);
    --white-8: rgba(255, 255, 255, 0.8);
    --white-9: rgba(255, 255, 255, 0.9);

    --dark-1: rgba(0,0,0,0.1);
    --dark-2: rgba(0,0,0,0.2);
    --dark-3: rgba(0,0,0,0.3);
    --dark-4: rgba(0,0,0,0.4);
    --dark-5: rgba(0,0,0,0.5);
    --dark-6: rgba(0,0,0,0.6);
    --dark-7: rgba(0,0,0,0.7);
    --dark-8: rgba(0,0,0,0.8);
    --dark-9: rgba(0,0,0,0.9);

    --box-shadow: 0 8px 20px rgba(0,0,0,0.09);



    --font-carousel: 'Italianno', cursive;
    --font-syncopate: 'Syncopate', sans-serif;
    --font-raleway: "Raleway", sans-serif;
}

*{
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
}
*,::before,::after{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    padding: 0!important;
    margin: 0!important;
    font-family: "Raleway", sans-serif;
    overflow-x: hidden!important;
}

a{
    text-decoration: none;
    font-size: 1rem;
}

li{
    text-decoration: none;
    list-style: none;
    font-size: 1rem;
}

h1{
    font-size: 1.5rem;
}

p{
    font-size: 1rem;
}

.container{
    max-width: 90%;
    margin: 0 auto;
}

.max-width{
    max-width: 90%;
    margin: 0 auto;
}

.max-w80{
    max-width: 80%;
    margin: 0 auto;
}

.max-w70{
    max-width: 70%;
    margin: 0 auto;
}

.max-w50{
    max-width: 50%;
    margin: 0 auto;
}

.fa-google-plus-square::before{
    content: '\f0d4';
    font-family: FontAwesome;
    font-style: normal;
}

.fa-star::before{
    content: '\f005';
    font-family: FontAwesome;
    font-style: normal;
}



.page-link {
    position: relative;
    display: block;
    color: var(--main-color);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--main-color);
    border-color: var(--main-color);
}
.result{
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.nothing p{
    font-size: 1.2rem;
    color: var(--text-color);
}
.nothing p i{
    padding-right: 10px;
}

/* line 1253, src/assets/scss/custom/_style.scss */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 999999;
}

/* line 1266, src/assets/scss/custom/_style.scss */
.preloader-icon {
    width: 80px!important;
    /* height: 60px!important; */
    margin-bottom: 15px;
    object-fit: contain;
}

/* line 1270, src/assets/scss/custom/_style.scss */
.loading-bar {
    width: 80px;
    height: 3px;
    margin-top: 30px;
    margin: auto;
    position: relative;
    overflow: hidden;
    background: #e2e2e2;
}

/* line 1279, src/assets/scss/custom/_style.scss */
.loading-bar::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--main-color-1);
    position: absolute;
    left: -34px;
    animation: bluebar 1.5s infinite ease;
}

@keyframes bluebar {
    50% {
        left: 100px;
    }
}

/******** HEADER **********/

#header{
    position: relative;
    width: 100%;
    height: 100px;
    background: #254056;
    z-index: 999;
}

#navbar{
    position: relative!important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
nav .navbar{
    height: 100%!important;
    width: 100%!important;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 0!important;
    padding-bottom: 0!important;
    overflow: visible;
    -webkit-overflow: visible;
    -moz-overflow: visible;
    color: #ececec;
}
nav .navbar .navbarLeft{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%!important;
}
nav .navbar .logo{
    width: 100px!important;
    height: 100px!important;
    object-fit: cover;
    overflow: visible;
    margin-top: -20px;
    transition: all 0.3s linear;
}
nav .navbar .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
nav .navbar .nav-links{
    height: 100%!important;
    overflow: visible;
    -webkit-overflow: visible;
    -moz-overflow: visible;
}
nav .navbar .nav-links .links{
    display: flex;
    overflow: visible;
    -webkit-overflow: visible;
    -moz-overflow: visible;
    margin-top: 10px;
    padding-left: 0!important;
}
nav .navbar .nav-links .links li{
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 10px;
    line-height: 80px;
}
nav .navbar .nav-links .links .estimerNavbar{
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-overflow: visible;
    -moz-overflow: visible;
}
nav .navbar .nav-links .links .estimerNavbar img{
    position: absolute;
    overflow: visible;
    -webkit-overflow: visible;
    -moz-overflow: visible;
    width: 90px!important;
    object-fit: cover;
    z-index: -1;
}
nav .navbar .nav-links .links .estimerNavbar a{
    color: var(--main-color-1)!important;
    font-weight: 600!important;
}
nav .navbar .nav-links .links li a{
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s linear;
}
nav .navbar .nav-links .links li:hover a{
    color: var(--main-color);
    transition: all 0.3s linear;
}

nav .navbar .nav-links .links li .arrow{
    text-align: center;
    font-size: 1rem;
}
nav .navbar .nav-links .links li a:hover{
    color: var(--main-color);
}

nav .navbar .nav-links .links li .htmlcss-arrow,
nav .navbar .nav-links .links li .js-arrow{
    transition: all 0.5s ease;
}
nav .navbar .nav-links .links li:hover .htmlcss-arrow,
nav .navbar .nav-links .links li:hover .js-arrow{
    transform: rotate(180deg);
    transition: all 0.5s ease;
}
nav .navbar .nav-links .links .sub-menu{
    position: absolute;
    top: 70px;
    left: 0;
    width: 250px;
    background: var(--white);
    border-radius: 5px;
    display: none;
    transition: 1s;
    margin: 0!important;
    padding: 0!important;
}
nav .navbar .nav-links .links .sub-menu::before{
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    height: 10px;
    width: 10px;
    background: var(--white);
    transform: rotate(45deg);
}
nav .navbar .nav-links .links .sub-menu li{
    margin: 0!important;
    padding: 0 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1rem!important;
    border-bottom: 1px solid #f7f7f7;
    transition: 0.5s;
}
nav .navbar .nav-links .links .sub-menu li:last-child{
    border-bottom: none;
}
nav .navbar .nav-links .links .sub-menu li:hover{
    background: var(--main-color);
}
nav .navbar .nav-links .links .sub-menu li a:before{
    content: '';
    width: 0px;
    height: 0px;
    background: none;
    position: absolute;
}

nav .navbar .nav-links .links .sub-menu li a:after{
    content: '';
    width: 0px;
    height: 0px;
    background: none;
    position: absolute;
}
nav .navbar .nav-links .links .sub-menu li:hover a:before{
    width: 0px;
}
nav .navbar .nav-links .links .sub-menu li:hover a:after{
    width: 0px;
}

nav .navbar .nav-links .links .sub-menu li a{
    font-weight: 500;
    width: 100%;
    margin: 0!important;
    padding: 0!important;
    color: var(--text-color)!important;
    font-size: 0.9rem!important;
    /* text-transform: none; */
    line-height: 1.2rem;
    transition: all 0.3s;
}
nav .navbar .nav-links .links .sub-menu li:hover a{
    color: white!important;
}

nav .navbar .nav-links .links li:hover .htmlCss-sub-menu,
nav .navbar .nav-links .links li:hover .js-sub-menu{
    display: block;
}


.navbarLeft .opacityEstimation,
.navbar .fa-bars,
.nav-links .sidebar-logo .logo_name,
.nav-links .sidebar-logo .close,
.responsiveMenu{
    display: none;
}

.estimation-login-lang{
    display: flex;
    align-items: center;
    margin-top: -10px;
}

.estimation-login-lang .widget{
    display: flex;
    align-items: center;
}

.estimation-login-lang .widget img{
    position: relative;
    width: 40px!important;
    height: 40px!important;
    object-fit: contain;
}

.estimation-login-lang .widget a{
    color: var(--main-color-1);
    font-size: 0.8rem;
    line-height: 0.9rem;
    text-transform: uppercase;
}

.estimation-login-lang .circle:hover{
    transform: scale(0.8);
}

.estimation-login-lang .text{
    width: 100%;
    height: 100%;
    position: absolute ;
    animation: animtext 10s linear infinite;
}
@keyframes animtext{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.estimation-login-lang .text p{
    color: var(--main-color-1);
}
.estimation-login-lang .text span{
    position: absolute;
    left: 50%;
    font-size: 1em;
    transform-origin: 0 50px;
}
.estimation-login-lang .circle .lien{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}
.estimation-login-lang .circle .lien a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.estimation-login-lang .circle .lien a i{
    font-size: 1.5rem;
    color: var(--main-color-1);
}

.estimation-login-lang .estimation{
    height: 40px;
    line-height: 40px;
}
.estimation-login-lang .estimation a{
    border: 2px solid var(--white);
    padding: 6px 20px;
    color: var(--white);
    background: var(--white-2);
    margin-right: 5px;
    transition: all 0.3s ease;
}
.estimation-login-lang .estimation a:hover{
    background: var(--white);
    color: var(--main-color-1);
}

.estimation-login-lang .another{
    height: 40px!important;
    line-height: 40px;
    margin-left: 10px;
    display: flex;
}
.estimation-login-lang .login{
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    align-items: center;
}
.estimation-login-lang .login img{
    width: 20px!important;
    height: 20px!important;
    margin-right: 5px;
}
.estimation-login-lang .login a{
    display: block;
    height: 23px;
    line-height: 23px;
    color: var(--white)!important;
    font-weight: 300;
    font-family: 'EB Garamond', sans-serif;
    background: var(--main-color-1);
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 3px;
    font-size: 0.9rem;
}

.estimation-login-lang .instagram{
    margin-right: 15px;
}

.estimation-login-lang .instagram i{
    font-size: 1.5rem;
    line-height: 40px;
    color: var(--main-color);
}
.estimation-login-lang .btn-lang{
    background: transparent!important;
    outline: none!important;
    border: none!important;
    color: var(--main-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.estimation-login-lang .contact a{
    padding: 10px 30px;
    background: var(--main-color);
    font-size: 0.9rem!important;
    text-transform: uppercase;
    color: white;
    border-radius: 30px;
}

.dropdown-menu{
    min-width: 0px!important;
    box-shadow: var(--box-shadow);
}

.dropdown-item{
    font-size: 0.9rem!important;
}

.dropdown-item:hover{
    color: white;
    background: var(--main-color-1)!important;
}

/* POPUP LOGIN */

.button-close{
    position: absolute;
    top: 5px;
    right: 5px;

}

.button-close button{
    border: 2px solid var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border-radius: 5px;
}

.image-login-logo{
    width: 100px;
    height: 100px;
    margin: 20px auto;
}

.image-login-logo img{
    width: 100%!important;
    height: 100%;
    object-fit: contain;
}

.title-login h1{
    text-align: center;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--main-color);
}

.title-login p{
    text-align: center;
    padding-top: 10px;
    color: var(--dark-7);
    font-size: 1.2rem;
}

.block-login{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
}

.block-login a{
    display: flex;
    width: 100%;
    height: 100%;
    padding: 30px;
    border: 2px solid var(--dark-2);
    border-radius: 8px;
    transition: all 0.3s linear;
}

.block-login .item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    transition: all 0.3s linear;
}

.block-login .item img{
    width: 80px!important;
    height: 80px!important;
    margin: 20px auto;
}

.block-login .item i{
    font-size: 4.5rem;
    color: var(--main-color);
    transition: all 0.3s linear;
}

.block-login .item .text{
    margin-top: 20px;
}

.block-login .item h1{
    color: var(--main-color);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'EB Garamond', sans-serif;
    text-align: center;
    transition: all 0.3s linear;
}

.block-login a:hover{
    /* box-shadow: inset 0px 0px 15px 5px var(--main-color-1); */
    border: 2px solid transparent;
    background: var(--main-color-1);
}

.block-login a:hover h1,
.block-login a:hover i{
    color: var(--white);
}



/* ===== HOME SECTION ========== */

#home{
    height: calc(100vh - 100px);
    width: 100%;
    overflow: hidden;
    
}

.home{
    position: relative;
    height: 100%!important;
    width: 100%!important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: transparent;
    background-image: linear-gradient(110deg, var(--e-global-color-primary) 53%, var(--e-global-color-7b1170c) 100%);
    opacity: 0.85;
    z-index: 2;
}

.home .video{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.home .content{
    position: relative;
    width: 50%;
    color: var(--white);
    text-align: center;
    z-index: 3;
}

.home .content .title h1{
    font-size: 3.5rem;
    font-weight: 300;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.home .content .title h2{
    font-size: 3rem;
    font-weight: 600;
    padding-bottom: 10px;
}

.home .content .title p{
    color: var(--white);
    font-weight: 300;
}

.home .lien{
    margin-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home a{
    margin: 40px auto;
}

/* ======= END SECTION HOME ======== */




/******* ABOUT *******/

#about {
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    background: var(--e-global-color-primary);
    color: #c4c4c4;
}

#about img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.circle{
    position: absolute;
    left: -45%;
    top: 10%;
    border: 100px solid rgba(104, 104, 104, 0.3);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: transparent;
    animation: jumping 3s infinite;
    transform: translate3d(0px, 180px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
    -webkit-transform: translate3d(0px, 180px, 0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(1);
}

@keyframes jumping{
    0%{
        -webkit-transform: translateY(0);
        transform: translateY(0);
        /* opacity: 0; */
    }
    50% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        /* opacity: 1; */
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        /* opacity: 0; */
    }
}

.about {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    z-index: 9;
    align-items: center;
}

.about .left .first-image {
    width: 100%;
    height: 450px;
    border: 10px solid var(--main-color);
}

.about .left .second-image {
    position: relative;
    width: 400px;
    height: 450px;
    border: 30px solid white;
    margin-top: -100px;
    margin-left: 40%;
    overflow: hidden;
    z-index: 2;
}

.about .right {
    padding-top: 70px;
    padding: 30px;
    position: relative;
}

.about .home-cube {
    position: absolute;
    left: -8%;
    top: -5%;
    width: 200px;
    height: 200px;
    animation: movedelement 5s linear infinite;
}

@keyframes movedelement{
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }
    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }
    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.about .right h1 {
    color: var(--main-color);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.about .right h2,
.about .right p {
    color: white;
}

.about .right h2 {
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 20px;
}

.about .right p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 2rem;
    text-align: justify;
    border-left: 1px solid var(--text-color);
    padding-left: 50px;
    margin-top: 30px;
}

.about .right a {
    margin-top: 50px;
}

.notreadn{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 100px;
    position: relative;
    z-index: 9;
    align-items: stretch;
}

.notreadn .item{
    padding: 30px;
    border-radius: 10px;
    align-self: flex-start;
    position: relative;
    z-index: 9;
    background: white;
    box-shadow: 0px 0px 20px 0px rgba(10, 50, 80, 0.1);
    align-items: stretch;
    height: 100%!important;
}

.notreadn .item .icon{
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.notreadn .item .icon img{
    margin-left: -5px;
    height: 50px!important;
    width: 50px!important;
    object-fit: contain;
}

.notreadn .item:nth-child(1) .icon{
    background: #13537a;
}

.notreadn .item:nth-child(2) .icon{
    background: #e12b28;
}

.notreadn .item:nth-child(3) .icon{
    background: #054937;
}

.notreadn .item:nth-child(4) .icon{
    background: var(--main-color);
}

.notreadn .item:nth-child(4) .icon img{
    height: 40px!important;
    width: 40px!important;
}

.notreadn .item .contenu h1{
    /* font-size: 1.5rem; */
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 30px;
    padding-bottom: 10px;
    color: var(--text-black);
}

.notreadn .item .contenu p{
    font-size: 1rem;
    color: var(--text-black);
    font-weight: 300;
    line-height: 1.5rem;
}


/*===== end ABOUT =========*/





/************ SERVICE SECTION ***********/

#services{
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--f7);
}

#services img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.services .title{
    text-align: center;
}
.services .title h1{
    font-size: 2.5rem;
    color: var(--main-color);
    font-family: 'Syncopate', sans-serif!important;
    text-transform: uppercase;
}
.services .title h2{
    font-size: 4rem;
    color: var(--text-black);
}
.services .title p{
    width: 500px;
    color: #747474;
    margin: 10px auto;
}
.services .block{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 40px;
}
.services .block .item{
    position: relative;
    text-align: center;
    /* padding: 40px; */
    width: 100%!important;
    height: 400px;
    transition: all 0.3s linear;
}
.services .block .item:hover{
    border: 2px solid transparent;
}
.services .block .item .icon{
    position: relative;
    background: rgb(243, 243, 243);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    display: flex;
    transition: all 0.3s linear;
}

.services .block .item .icon .img{
    position: relative;
    height: 100%;
    width: 100%;
}

.services .block .item .contenu{
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.04), rgba(15, 15, 15, 0.95));
}
.services .block .item .contenu h1{
    font-size: 1.9rem;
    color: white;
    text-align: left;
}
.services .block .item .contenu p{
    font-size: 1.2rem;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    color: var(--text-gray-1);
}
.services .block .item .lien{
    padding: 10px;
}
.services .block .item .lien a{
    padding: 10px 20px;
    background: rgb(243, 243, 243);
    border-radius: 10px;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s linear;
}
.services .block .item:hover .lien a{
    background: var(--main-color-1);
    color: white;
}

.services .block .item > .front{
    position: absolute;
    transform: perspective(600px) rotateY(0deg);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backface-visibility: hidden;
    transition: transform 0.5s linear;
}
.services .block .item > .back{
    position: absolute;
    transform: perspective(600px) rotateY(180deg);
    background: var(--main-color);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backface-visibility: hidden;
    transition: transform 0.5s linear;
}
.services .block .item .back h1{
    color: var(--white);
    padding-bottom: 20px;
}
.services .block .item .back p{
    color: var(--white);
    text-align: justify;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
.services .block .item .back a{
    padding: 10px 15px;
    background: var(--main-color-1);
    color: white;
    font-size: 1rem;
    border-radius: 8px;
}
.services .block .item:hover > .front{
    transform: perspective(600px) rotateY(-180deg);
}
.services .block .item:hover > .back{
    transform: perspective(600px) rotateY(0deg);
}

.services .lienPage{
    text-align: center;
    margin-top: 50px;
}
.services .lienPage a{
    padding: 10px 20px;
    background: var(--main-color-1);
    border-radius: 15px;
    color: var(--white);
    font-size: 20px;
    border: 2px solid var(--main-color-1);
    transition: all 0.3s linear;
}
.services .lienPage a:hover{
    background: transparent;
    border: 2px solid var(--main-color-1);
    color: var(--main-color-1);
}

/*********** END SERVICE SECTION *********/


/*********** PRISE DE CONTACT SECTION *********/

#contactPrise{
    padding-top: 50px;
    padding-bottom: 50px;
    background: #ffdebb;
}

/*********** END PRISE DE CONTACT SECTION *********/


/*  */

#serviceOther {
    background: white;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    padding-top: 100px;

}

.container {
    max-width: 1200px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 1s ease-out;
}

.section-header h2{
    color: var(--text-black);
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 30px;
}

.section-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ff8500 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    /* border: 1px solid rgba(255, 133, 0, 0.2); */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 133, 0, 0.25);
}

.icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 133, 0, 0.1);
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-container {
    transform: scale(1.1);
}

.icon-container i {
    font-size: 48px;
    color: #ff8500;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-black);
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.btn-container {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.btn {
    display: inline-block;
    padding: 13px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(90deg, #ff8500 0%, #ffaa00 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(255, 133, 0, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 133, 0, 0.5);
    background: linear-gradient(90deg, #ffaa00 0%, #ff8500 100%);
}

.btn:active {
    transform: translateY(0);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Particules de fond */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 133, 0, 0.2);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100vh) translateX(100px); }
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h1 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/********** INVESTISSEMENT *************/

#investissement{
    position: relative;
    background: var(--main-color-1);
    z-index: 9;
}

.investissement{
    padding-top: 50px;
    padding-bottom: 50px;
}

.investissement{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.investissement .left h1{
    color: white;
    font-family: 'EB Garamond', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.investissement .right a{
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    background: var(--main-color);
    box-shadow: rgba(176, 139, 70, 0.5) 0px 20px 30px 0px;
    transition: all 0.3s linear;
}

.investissement .right a:hover{
    background: var(--main-color);
    box-shadow: none;
    color: white;
}

/********* END INVESTISSEMENT ***********/




/*********** TESTIMONY ******************/

#testimonySection{
    position: relative;
    background: var(--footer-color);
    padding-top: 100px;
    padding-bottom: 30px;
    overflow: hidden;
}

#testimonySection img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#testimonySection .img-absolute{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0px;
    opacity: 0.5;
    z-index: 1;
}
#testimonySection .img-absolute img{
    width: 98%!important;
    height: 98%!important;
    object-fit: contain;
    filter: grayscale(100%);
}
.testimonySection .titre{
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 9;
}
.testimonySection .titre h1{
    font-size: 2.5rem;
    font-family: 'Syncopate', sans-serif!important;
    text-transform: uppercase;
    color: var(--main-color);
}
.testimonySection .titre p{
    color: var(--white);
    padding-top: 15px;
}
.testimonySection .titre p span{
    color: var(--main-color);
}
.testimonySection .block{
    display: grid;
    grid-template-columns: 25% 1fr;
    gap: 10px;
    z-index: 2;
}
.testimonySection .block .left .item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #343434;
    border-radius: 10px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 30px;
    padding-left: 30px;
    z-index: 2;
}
.testimonySection .block .left .item .img{
    height: 70px;
    margin: 40px auto;
}
.testimonySection .block .left .item .another p{
    color: var(--white);
    text-align: center;
}
.testimonySection .block .left .item .another p i{
    color: yellow!important;
    font-size: 0.9rem;
}

.testimonySection .block .left .title h1{
    font-size: 2.5rem;
    color: var(--white);
    font-family: 'Syncopate', sans-serif!important;
    text-transform: uppercase;
}
.testimonySection .block .left .title h1 span{
    font-size: 1.8rem!important;
}
.testimonySection .block .left .title h2{
    font-size: 1.5rem;
    color: var(--main-color);
}
.testimonySection .block .left .title h2 span{
    color: var(--main-color-1)!important;
}
/* .testimonySection .block .left .image img{
    height: 600px!important;
    width: 300px!important;
} */

.testimonySection .block .right{
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.testimonySection .block .right .title{
    width: 100%!important;
}
.testimonySection .block .right .title h1{
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    width: 100%!important;
}
.testimonySection .block .right .title i{
    color: yellow!important;
}
.testimonySection .block .right .title .line{
    height: 5px;
    width: 100px;
    margin: 20px auto;
    background: var(--main-color-1);
}
.swiper-container{
    width: 100%;
    padding-bottom: 50px;
}
.swiper-slide{
    background-position: center;
    background-size: cover;
    padding: 40px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 10px;
}
.testimonialBox{
    position: relative;
    width: 100%;
    padding-top: 90px;
    color: #999;
}
.testimonialBox .quote{
    position: absolute;
    top: 5px;
    right: 10px;
    opacity: 0.4;
    height: 50px!important;
    width: 50px!important;
}
.testimonialBox .details{
    display: flex;
    align-items: center;
    margin-top: 60px;
}
.testimonialBox .details .imgBx{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}
.testimonialBox .details .imgBx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonialBox .details h3{
    font-size: 18px;
    font-weight: 500;
    color: black;
    padding-left: 10px;
}
.testimonialBox .details h3 span{
    font-size: 15px!important;
    font-weight: 400;
    color: #999!important;
}
.testimonialBox .content p{
    color: var(--text-color);
}
.testimonialBox .content .stars i{
    color: yellow;
    font-size: 14px;
}
.testimonialBox .content .stars span{
    color: black;
    font-size: 16px;
    padding-left: 10px;
}
.owl-nav{
    margin: 0px auto;
    width: 70px;
    display: flex;
    justify-content: space-between;

}
.owl-nav span{
    text-align: center;
    font-size: 4rem;
    color: var(--border-color);
    transition: all 0.3s linear;
}
.owl-nav span:hover{
    color: var(--main-color-1);
}


/************ END TESTIMONY *************/


/********* REJOINDRE START **************/

#aproposcontact{
    padding-top: 100px;
    padding-bottom: 100px;
}

#aproposcontact img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aproposcontact .block{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}
.aproposcontact .block .left{
    position: relative;
}
.aproposcontact .effet-1{
    position: absolute;
    left: -12%;
    top: -6%;
    width: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.aproposcontact .effet-1 div{
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background: var(--main-color-1);
    margin: 0 10px 10px;
}
@keyframes movedelement{
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(10px,10px);
        transform: translate(10px,10px);
    }
    50% {
        -webkit-transform: translate(5px,5px);
        transform: translate(5px,5px);
    }
    75% {
        -webkit-transform: translate(10px,-5px);
        transform: translate(10px,-5px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
.aproposcontact .block .left .image-video{
    position: relative;
    border-radius: 10px;
    height: 400px;
    width: 90%;
    /* z-index: 9; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.aproposcontact .block .left .image-video::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border: 10px solid var(--main-color);
    border-radius: 10px;
    top: 30px;
    left: -30px;
    z-index: -1;
}
.aproposcontact .block .left .image-video .btnVideo{
    position: relative;
}
.aproposcontact .block .left .image-video .btnVideo .play{
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 15px 25px gray;
    transform: scale(.8);
}
.aproposcontact .block .left .image-video .btnVideo .play:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid white;
    animation: hamburger_puls 1s ease infinite;
}
@keyframes hamburger_puls{
    0%{
        opacity: 1;
        transform: scale(1);
    }
    100%{
        opacity: 0;
        transform: scale(1.4);
    }
}

.aproposcontact .block .left .image-video .btnVideo .play i{
    color: var(--main-color-1);
    font-size: 1.5rem;
}

/* .apropos .block .left .image-video .play::before{
    content: '';
    position: absolute;
    border: 25px solid gray;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 0px solid transparent;
    transform: translateX(5px);
} */

.aproposcontact .block .left .image-video .video-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
.aproposcontact .block .left .image-video .video-container .close{
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}
.aproposcontact .block .left .image-video .video-container video{
    width: 75%;
    /* max-width: 800px; */
    transform: scale(0);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
    outline: none;
    transition: all 0.3s;
}
.aproposcontact .block .left .image-video .video-container.show{
    pointer-events: all;
    opacity: 1;
}
.aproposcontact .block .left .image-video .video-container.show video{
    transform: scale(1);
}

.aproposcontact .block .right{
    background: var(--f7);
    border-radius: 10px;
    padding: 20px;
}

.aproposcontact .block .right .image{
    width: 200px;
}
.aproposcontact .block .right .text h1{
    font-size: 2.5rem;
    color: var(--main-color);
    /* font-weight: 600; */
    font-family: 'Syncopate', sans-serif!important;
    padding-top: 25px;
    padding-bottom: 25px;
}
.aproposcontact .block .right .text p{
    text-align: justify;
    color: var(--text-color);
}
.aproposcontact .block .right .lien{
    margin-top: 40px;
}
.aproposcontact .block .right .lien a{
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    margin-top: 50px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: rgba(176, 139, 70, 0.3) 0px 20px 30px 0px;
    background: var(--main-color);
    border-radius: 30px;
    transition: 0.3s linear;
}
.aproposcontact .block .right .lien a:hover{
    color: var(--white);
    background: var(--main-color-1);
}


/********** END contact section ***************/


/*********** NUMBER SPEAK ***************/

#numberSpeak{
    padding-top: 50px;
    padding-bottom: 50px;
    background: var(--main-color-1);
}
.numberSpeak .title{
    padding-bottom: 30px;
}
.numberSpeak .title h1{
    text-align: center;
    color: white;
    font-size: 2rem;
    font-family: 'Syncopate', sans-serif!important;
}
.numberSpeak .block{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.numberSpeak .block .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background: var(--white-2);
    border-radius: 10px;
}
.numberSpeak .block .item:last-child{
    border-right: none;
}
.numberSpeak .block .item .number{
    display: flex;
    align-items: center;
    justify-content: center;
}
.numberSpeak .block .item h1{
    font-size: 4.5rem;
    font-weight: 600;
    color: white;
}
.numberSpeak .block .item span{
    font-size: 4rem;
    font-weight: 600;
    color: white;
}
.numberSpeak .block .item p{
    color: white;
}

/*********** END NUMBER SPEAK ***********/




/******* FOOTER SECTION **********/

.footer .footer-grid{
    padding-top: 100px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 450px;
    gap: 2rem;
}

.footer .footer-grid .logo img{
    width: 180px!important;
}

.footer .footer-grid .title{
    margin-bottom: 20px;
}

.footer .footer-grid .title h1{
    color: white;
}

.footer .footer-grid .item .ul{
    display: flex;
    flex-direction: column;
}

.footer .footer-grid .item .ul a{
    color: white;
    display: block;
    margin-bottom: 7px;
    transition: all 0.5s ease;
    font-weight: 300;
}

.footer .footer-grid .item .ul a:hover{
    text-decoration: underline;
    color: var(--main-color);
    padding-left: 10px;
}

.footer .footer-grid .item .texte p{
    margin-bottom: 7px;
}

.footer .footer-grid .item form{
    display: grid;
    grid-template-columns: 70% 1fr;
    gap: 1rem;
}

.footer .footer-grid .item form input{
    height: 45px;
    background: var(--white-1);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    border: 1px solid var(--white-1);
    padding-left: 10px;
    color: white;
    outline: none;
}

.footer .footer-grid .item form button{
    background: var(--footer-color);
    color: white;
    border-radius: 5px;
    border: 1px solid var(--white-1);
}

.footer .footer-grid .item .notif{
    font-size: 14px;
    color: #838383;
    text-align: justify;
    margin-top: 10px;
}

.footer .footer-grid .item .texte a{
    color: white;
    font-weight: 300;
}

.footer-bottom{
    background: var(--e-global-color-primary);
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom .block{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .block .left{
    font-weight: 300;
}

.footer-bottom .block .right{
    display: flex;
}

.footer-bottom .block .right a{
    color: white;
    display: flex;
    margin: 0 10px;
    font-weight: 300;
}


/*===============================*/
/*========== LES PAGES =========*/
/*===============================*/


/*===============================
        PAGE BARNIERE SECTION
=================================*/
   
#barniere{
    position: relative;
    height: 400px;
    width: 100%;
}

.barniere{
    position: relative;
    width: 100%;
    height: 100%;
}

.barniere .max-w80{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    border: 2px solid white;
}

.barniere::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(110deg, var(--e-global-color-primary) 53%, var(--e-global-color-7b1170c) 100%);
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 2;
}

.barniere .img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

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

.barniere h1{
    position: relative;
    font-size: 4rem;
    color: white;
    text-transform: uppercase;
    text-transform: uppercase;
    z-index: 3;
}


/* Section contact */
.contactBarniere {
    background: #4B6B90;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.contactBarniere h2{
    padding-bottom: 10px;
}

.contactBarniere p{
    padding-bottom: 30px
}
.contactBarniere .btn {
    background: var(--main-color);
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}




/*===== FIN BARNIERE SECTION =========*/


/*===============================
    PAGE EXPLORATION MINIERE
=================================*/

.service-content{
    padding-top: 50px;
    /* padding-bottom: 50px; */
    text-align: center;
}

.service-content h2{
    font-size: 2.5rem;
    color: var(--e-global-color-primary);
    padding-bottom: 10px;
}

.service-content p{
    font-size: 1rem;
    color: var(--text-color);
    max-width: 70%;
    margin: 20px auto;
}

.service-content p span{
    color: var(--main-color);
}

.service-content img {
    width: 100%;
    margin-top: 20px;
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.servicesPages{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.servicesPages .service-block {
    background-color: #f9f9f9;
    border-left: 4px solid var(--main-color);
    padding: 15px;
    border-radius: 0 5px 5px 0;
}

.servicesPages .service-block h3{
    padding-bottom: 20px;
}

.servicesPages .service-block p{
    padding-bottom: 10px;
}

.servicesPages .service-block i{
    padding-right: 5px;
    color: var(--main-color);
    font-size: 0.8rem;
}

.serviceWhy{
    padding-top: 50px;
}

.serviceWhy h2{
    text-align: center;
    color: var(--e-global-color-primary);
    font-size: 2rem;
    padding-bottom: 20px;
}
.serviceWhy .why-us {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}
.serviceWhy .why-us-item {
    background-color: var(--e-global-color-primary);
    padding: 15px;
    margin-bottom: 15px;
    color: white;
    border-radius: 5px;
}

.serviceWhy .why-us-item strong{
    font-size: 1.1rem;
}

.serviceWhy .why-us-item p{
    padding-top: 20px;
    font-weight: 300;
}

.contact-info {
    background-color: #2E86C1;
    color: white;
    padding: 25px;
    border-radius: 5px;
    margin-top: 40px;
}
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 8px;
}
.highlight {
    font-weight: bold;
    color: #2E86C1;
}
.emoji {
    font-size: 1.2em;
    margin-right: 5px;
}



/*===== FIN EXPLORATION MINIERE ====*/


/*===============================
    PAGE MATERIELS
=================================*/


.materielSection .section-title {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.materielSection .section-title h2 {
    display: inline-block;
    background: white;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    color: var(--primary);
}

.materielSection .section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: 0;
}
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.equipment-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-image {
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.equipment-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.spec {
    background: var(--light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--dark);
}


/*===== FIN PAGE MATERIEL ====*/



/*===============================
    PAGE A PROPOS
=================================*/

#aproposSection{
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f7f7f7;
}

#aproposSection img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aproposSection{
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 2rem;
    align-items: center;
}

.aproposSection .left{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.aproposSection .left .block{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aproposSection .left .block:nth-child(1) .img:nth-child(1){
    height: 400px;
}

.aproposSection .left .block:nth-child(1) .img:nth-child(2){
    height: 200px;
}

.aproposSection .left .block:nth-child(2) .img:nth-child(1){
    height: 200px;
}

.aproposSection .left .block:nth-child(2) .img:nth-child(2){
    height: 400px;
}


.aproposSection .right h1{
    font-size: 3.5rem;
    color: var(--e-global-color-primary);
    padding-bottom: 20px;
    text-transform: uppercase;
}

.aproposSection .right .line{
    height: 6px;
    width: 80px;
    background: var(--main-color);
    border-radius: 3px;
    margin-bottom: 20px;
}

.aproposSection .right h1 span{
    text-transform: uppercase;
}

.aproposSection .right p{
    color: var(--text-color);
    padding-bottom: 20px;
    text-align: justify;
}

/*===== FIN PAGE A PROPOS ====*/

/*===============================*/
/*========== RESPONSIVE =========*/
/*===============================*/

@media (max-width: 768px) {

    section{
        overflow-x: hidden!important;
    }
    .max-width,
    .max-w80,
    .max-w70{
        max-width: 100%;
        width: 100%;
    }

    #header{
        position: relative;
    }
    nav .navbar .logo,
    .estimation-login-lang{
        display: none;
    }

    nav .navbar .nav-links .links li a{
        color: var(--text-color) !important;
    }

    .responsiveMenu{
        height: 80px;
        position: relative;
        margin-top: 0;
        display: grid;
        grid-template-columns: 70% 1fr;
        align-items: center;
        width: 100%!important;
    }
    .responsiveMenu .logo{
        display: block!important;
        margin-left: 20px;
    }
    .responsiveMenu .right{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: right;
        height: 100%;
        z-index: 1;
        padding-right: 20px;
    }

    .responsiveMenu .right i{
        position: relative;
        z-index: 1;
        font-size: 2rem;

    }

    #navbar{
        height: 100%;
        width: 100%;
        /* padding-left: 10px; */
        border-top: 1px solid var(--color-f7);
    }
    nav .navbar .nav-links{
        display: block;
        position: fixed !important;
        top: 0;
        left: -100%;
        max-width: 100vw;
        width: 100vw;
        height: 100vh;
        overflow-y: auto;
        background: #fff;
        padding: 20px;
        transition: all 0.5s ease;
        z-index: calc(3.40282e+40)!important;
    }
    nav .navbar .nav-links .sidebar-logo{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
        height: 80px;
        width: 100%;
        background-color: green;
    }
    nav .navbar .logo{
        margin-top: 0;
        height: 70px !important;
    }
    .responsiveMenu .logo{
        height: 70px;
    }

    .responsiveMenu .logo img{
        height: 70px!important;
        object-fit: contain;
    }

    .nav-links .sidebar-logo .logo_name img{
        height: 70px !important;
        object-fit: contain;
    }
    .navbar .fa-bars{
        /* border: 1px solid var(--white); */
        color: var(--d1)!important;
        height: 38px;
        width: 40px;
        font-size: 2.2rem!important;
        border-radius: 4px;
        line-height: 38px;
        text-align: center;
        z-index: 5;
    }
    .navbarLeft .opacityEstimation{
        display: block!important;
        margin-top: 2rem;
    }
    .navbarLeft .opacityEstimation .estimation-login-lang{
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .navbarLeft .opacityEstimation .estimation-login-lang .another .login{
        margin-left: 0;
    }
    .nav-links .sidebar-logo .close{
        display: block;
        height: 45px;
        width: 45px;
        background: var(--main-color);
        padding: 10px;
        position: absolute;
        top: 7px;
        right: 7px;
        transition: transform 0.2s;
    }
    .nav-links .sidebar-logo .close img{
        width: 100%!important;
        object-fit: contain;
    }
    .nav-links .sidebar-logo .close:hover img{
        transform: rotate(45deg);
    }
    .navbar .fa-bars,
    .nav-links .sidebar-logo .logo_name{
        display: block;
        color: var(--dark-800);
        font-size: 23px;
        font-weight: 500;
    }

    

    .nav-links .sidebar-logo .fa-times{
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        color: var(--main-color);
        font-size: 25px;
        font-weight: normal;
    }
    nav .navbar .nav-links .links{
        display: block;
    }
    nav .navbar .nav-links .links li:nth-child(1){
        border-top: 1px dashed var(--d1);
    }
    nav .navbar .nav-links .links li{
        display: block;
        line-height: 50px!important;
        border-bottom: 1px dashed var(--d1);
    }
    nav .navbar .nav-links .links li i{
        display: none;
    }

    nav .navbar .nav-links .links .estimerNavbar{
        justify-content: left;
    }

    nav .navbar .nav-links .links .estimerNavbar img{
        left: -20px;
        /* height: 60px!important; */
        width: 100px!important;
        /* object-fit: contain; */
    }

    nav .navbar .nav-links .links .sub-menu{
        display: block;
        position: relative;
        padding-left: 30px;
        top: 0;
        width: 100%;
        background: transparent;
        box-shadow: none;
    }
    nav .navbar .nav-links .links .sub-menu li{
        border-top: 1px dashed var(--d1);
        line-height: 50px!important;
        /* padding: 0; */
    }
    nav .navbar .nav-links.show1 .links .sub-menu.htmlCss-sub-menu{
        display: block;
    }
    nav .navbar .nav-links.show2 .links .sub-menu.js-sub-menu{
        display: block;
    }


    /* HOME */

    .home .content{
        width: 100%;
        padding: 10px;
    }

    .home .content .title h1{
        font-size: 2.5rem;
    }

    .home .content .title h2{
        font-size: 2rem;
    }

    /* ABOUT */

    .about{
        display: flex;
        flex-direction: column;
    }

    .about .right h2{
        font-size: 2rem;
    }

    .notreadn{
        display: flex;
        flex-direction: column;
    }

    /* SERVICE */

    .services{
        padding: 10px;
    }
    .services .title h1{
        font-size: 2rem;
    }

    .services .title p{
        width: 100%;
    }

    .services .block{
        display: flex;
        flex-direction: column;
    }

    /* PRISE CONTACT */

    #contactPrise .rsp{
        flex-direction: column!important;
    }

    /* TESTIMONY */

    .testimonySection{
        padding: 10px;
    }

    .testimonySection .block{
        display: flex;
        flex-direction: column;
    }

    /* REJOINDRE */

    .aproposcontact .block{
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .aproposcontact .block .left .image-video{
        width: 100%;
        height: auto;
    }
    
    /* SECTION FOOTER */

    .footer{
        padding: 10px;
    }

    .footer .footer-grid{
        display: flex;
        flex-direction: column;
    }
    .footer-bottom .block{
        flex-direction: column-reverse;
    }

    
}

