/*
========================
GOBAL CSS START
========================
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    background: #fff;
    color: #3A3A3A;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: white;
    background: #F07476;
}

::-webkit-selection {
    color: white;
    background: #F07476;
}

::-moz-selection {
    color: white;
    background: #F07476;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #1EBE73;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop i {
    color: #ffff;
}

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

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #1EBE73;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

:root {
    --hover-color: #F07476;
}

/*===============
 GOBAL CSS END  
 ============== */

/* header area style start hare  */

.header-area {
    /* background: radial-gradient(41.65% 41.64% at 51.12% 45.85%, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 100%), url('images/header-bg.png') lightgray 50% / cover no-repeat; */
    background: url(images/header-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(1.1px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Navbar transparente */
.navbar {
    background: rgba(0, 0, 0, 0.6); /* Transparence sur fond sombre */
    backdrop-filter: blur(10px); /* Ajoute un effet de flou pour lisibilité */
    padding: 15px calc((100% - 1280px) / 2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    transition: background 0.3s ease;
}

/* Effet de transparence au survol */
.navbar:hover {
    background: rgba(0, 0, 0, 0.8); /* Renforce légèrement la transparence au survol */
}

/* Liens de navigation */
.navbar-nav .nav-link {
    color: #ffffff;
    font-size: 18px;
    padding: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--hover-color); /* Utilise la couleur définie pour le hover */
}

/* Logo Navbar */
.navbar .navbar-brand {
    color: #ffffff;
    font-weight: 800;
    font-size: 22px;
}

.navbar .navbar-brand:hover {
    color: var(--hover-color);
}

/* Bouton de contact et langue */
.nav-contact-btn a {
    background-color: #1EBE73;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-contact-btn a:hover {
    background-color: #3A3A3A;
    color: #ffffff;
}

/* Switch de langue */
.switch {
    background: rgba(255, 255, 255, 0.3); /* Transparent avec léger fond clair */
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Amélioration du menu responsive pour les écrans plus larges */
@media (min-width: 1920px) {
    .navbar-nav .nav-link {
        font-size: 20px; /* Taille de texte adaptée pour écran 4K */
    }
    .navbar {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}


.navbar.menu-bg {
    background: linear-gradient(103deg, #0F0F0F -6.02%, #323232 130.24%);
}

.navbar a {
    color: #fff;
    font-size: 18px;
}

.navbar .navbar-brand {
    font-weight: 800;
}

.navbar .navbar-brand:hover {
    color: var(--hover-color);
}

.nav-contact-btn a, .action-btn a {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-contact-btn a:hover, .action-btn a:hover {
    background-color: #3A3A3A; /* Nouvelle couleur de fond au hover */
    color: #fff; /* Nouvelle couleur de texte au hover */
}
.offcanvas {
    background: linear-gradient(103deg, #0F0F0F -6.02%, #323232 130.24%);
    color: #fff;
}

.switch {
    position: relative;
    display: block;
    margin: 0 5px;
    width: 70px;
    height: 30px;
    border-radius: 60px;
    background: #D9D9D9;
    box-shadow: 0px 0px 0.9px 1px rgba(0, 0, 0, 0.60) inset;
}

input.check-toggle-round-flat + label:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-image: url('images/icon/usa-flag.svg');
    background-size: cover;
    transition: 0.3s;
}

input.check-toggle-round-flat:checked + label:after {
    margin-left: 32px; /* Diminuez la valeur pour ajuster le déplacement */
    background: url(images/icon/fr-flag.svg) no-repeat;
    background-position: center;
}



.switch>span {
    position: absolute;
    top: 8px;
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    text-align: center;
}

input.check-toggle-round-flat:checked~.off {
    color: #F36F25;
}

input.check-toggle-round-flat:checked~.on {
    color: #fff;
}

.switch>span.on {
    left: 0;
    padding-left: 2px;
    color: #F36F25;
}

.switch>span.off {
    right: 0;
    padding-right: 4px;
    color: #fff;
}

.check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.check-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.check-toggle-round-flat+label {
    padding: 2px;
    width: 70px;
    height: 30px;
    border-radius: 60px;
    background: #D9D9D9;
    box-shadow: 0px 0px 0.9px 1px rgba(0, 0, 0, 0.60) inset;
}

input.check-toggle-round-flat+label:before,
input.check-toggle-round-flat+label:after {
    display: block;
    position: absolute;
    content: "";
}

input.check-toggle-round-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #D9D9D9;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

input.check-toggle-round-flat+label:after {
    top: 4px;
    left: 0px;
    bottom: 4px;
    width: 35px;
    background: url(images/icon/usa-flag.svg) no-repeat;
    background-position: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
    height: 24px;
    background-size: cover;
}

input.check-toggle-round-flat:checked+label:after {
    margin-left: 37px;
    background: url(images/icon/fr-flag.svg) no-repeat;
    background-position: center;
}

.lag-switch-btn p {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.navbar-nav li {
    margin: 0 30px;
}
/* Simplification du hover pour les éléments de la navbar */
.navbar-nav .nav-link, .navbar-brand {
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-brand:hover {
    color: var(--hover-color); /* Applique la couleur définie par --hover-color au hover */
}

/* Suppression des animations spécifiques SMN_effect-86 et SMN_effect-14 */
.SMN_effect-86 a, .SMN_effect-14 a {
    position: relative;
}

.SMN_effect-86 a:hover:before,
.SMN_effect-86 a:hover:after,
.SMN_effect-14 a:hover:before {
    content: none; /* Désactive les éléments de décor au hover */
}
.navbar-nav .nav-link:hover,
.navbar-box a.active {
    color: var(--hover-color) !important;
}

.SMN_effect-86 a {
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.SMN_effect-86 a:before {
    border-right: 20px solid transparent;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.SMN_effect-86 a:after {
    border-left: 20px solid transparent;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.SMN_effect-86 a:hover:before {
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%);
}

.SMN_effect-86 a:hover:after {
    -webkit-transform: translateX(30%);
    transform: translateX(30%);
}

.nav-contact-btn a.active {
    color: #000 !important;
}

.header-wapper {
    max-width: 800px;
    color: #fff;
}

.header-wapper h4 {
    color: #559A72;
    font-weight: 600;
    font-size: 22px;
}
@media screen and (max-width: 576px) {
    .header-wapper h4 {
        margin-top: 15px; /* Ajustez la valeur pour contrôler la distance */
    }
}


.header-wapper h2 {
    font-size: 50px;
    font-weight: 700;
    margin: 30px 0;
}

.header-wapper h2 span {
    color: #74F0A8;
}

.header-wapper p {
    color: #ffffff;
    max-width: 685px;
}

.header-action-btn {
    margin-top: 30px;
}

.action-btn a {
    padding: 14px 32px;
    background: #74F0A8;
    border-radius: 10px;
    color: #0D1011;
    font-weight: 600;
    overflow: hidden;
    display: inline-block;
}

.action-btn a.performance-btn {
    background: var(--hover-color);
}

.header-action-btn.SMN_effect-86 a:before,
.header-action-btn.SMN_effect-86 a:after {
    border-top: 30px solid var(--hover-color);
    border-bottom: 30px solid var(--hover-color);
}

.header-action-btn.SMN_effect-86 a.performance-btn:before,
.header-action-btn.SMN_effect-86 a.performance-btn:after {
    border-top: 30px solid #74F0A8;
    border-bottom: 30px solid #74F0A8;
}

.next-section {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    transition: 0.3s;
}


/* Espace entre les éléments de la section */
.sigle-service {
    padding: 20px; /* Ajoute de l'espace autour de chaque service */
    margin-bottom: 30px; /* Espace en bas de chaque service */
}


.next-section a:hover svg circle {
    stroke: #F07476;
    color: #F07476;
}

.next-section a:hover svg path {
    stroke: #F07476;
}

/*======= header area style end hare ========= */

/*======= capitals area style start hare ======= */

.capitals-area {
    padding: 65px 0;
    background: linear-gradient(80deg, #F0F4EF 30.37%, #F3F3F3 86.46%);
    overflow: hidden;
}

.top-header h4 {
    color: #425255;
    font-weight: 600;
    letter-spacing: 0.48px;
    font-size: 20px;
}

.top-header h2 {
    font-size: 44px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.96px;
    margin: 10px 0;
}

.expertise-box {
    margin-top: 40px;
}

.sigle-expertise {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.projects-number h2 {
    margin: 17px 0;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.96px;
}

.sigle-expertise .expertise-des {
    max-width: 277px;
    margin: 0 auto;
}

.sigle-expertise .expertise-des p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.4px;
}

/*======== C&R Capitals area end hare ========= */

/*======= about us area style start hare ========== */

.about-us-area {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(103deg, #0F0F0F -6.02%, #323232 130.24%);
}

.about-content h4 {
    color: #74F0A8;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.about-content p {
    margin-top: 30px;
    color: #F0F4EF;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
}

/* about area end hare  */

/* capitals asset area start hare  */

.capitals-asset {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 213px;
    background: url('images/capitals-asset-bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: column;
    gap: 20px;
}

.capitals-asset h4 {
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    color: #fff;
}

.capitals-asset p {
    font-size: 20px;
    font-style: normal;
    font-weight: 200;
    color: #FFFFFF;
    text-align: center;
}

/*======== project area style start hare =========== */

.project-area {
    background: linear-gradient(103deg, #0F0F0F -6.02%, #323232 130.24%);
    padding-top: 56px;
    padding-bottom: 100px;
}

.project-wp-top h4 {
    color: #D1D1D1;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.project-wp-top h2 {
    margin: 30px 0;
    color: #E3E3E3;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.project-wp-top p {
    max-width: 859px;
    color: #CACACA;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.48px;
    min-height: 130px;
}

.sigle-project {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sigle-project .deshboard-cnt {
    padding-left: 10px;
    border-left: 4px solid #F07476;
}

.sigle-project .sigle-project-cnt h3 {
    color: #FFF;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.64px;
    margin: 15px 0;
}

.sigle-project .sigle-project-cnt p {
    color: #CACACA;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.4px;
    max-width: 426px;
}

.deshboard-btn a {
    background: #F07476;
}

.deshboard-btn.SMN_effect-86 a::before,
.deshboard-btn.SMN_effect-86 a::after {
    border-top: 30px solid #74F0A8;
    border-bottom: 30px solid #74F0A8;
}

.sigle-project .documents-cnt {
    padding-left: 10px;
    border-left: 4px solid #F0C074;
}

.documents-btn a {
    background: #F0C074;
}

/*========= project area style end hare ========= */

/*========== service area start hare ======= */



.service-top h4 {
    color: #3F494B;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding-bottom: 30px;
}

.service-top {
    max-width: 850px;
}
.service-area {
    background-color: #ffffff !important;
    padding-top: 100px;
    padding-bottom: 10px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}




.test-background {
    background-color: #F3F3F3 !important;
}



.service-top h2 {
    font-size: 36px;
    font-style: normal;
    letter-spacing: 0.8px;
}

.service-top p {
    margin-top: 20px;
    color: #4F4F4F;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.48px;
    min-height: 130px;
}

.sigle-service {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.sigle-service .serive-des {
    max-width: 283px;
    margin-top: 40px;
}

.sigle-service .serive-des h4 {
    color: #4F4F4F;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.48px;
}

.sigle-service .serive-des p {
    margin-top: 15px;
    color: #4F4F4F;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.32px;
}

.serive-des.trasparent {
    max-width: 300px;
}

/*========== service area style end hare =========== */

/*========== work area style start hare ======== */

.work-area {
    padding: 165px 130px;
    background: url(images/our_work_img.png) no-repeat;
    background-position: center;
    background-size: cover;
}

.work-top {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.work-top h4 {
    color: #D1D1D1;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding-bottom: 30px;
}

.work-top h2 {
    color: #FFF;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.1px;
}

.work-top p {
    padding-top: 40px;
    color: #CACACA;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.48px;
}

.works-content-box {
    margin-top: 80px;
}

.single-works-box {
    padding-left: 10px;
    border-left: 4px solid #74F0A8;
}

.single-works-box h2 {
    color: #FFF;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.64px;
}

.single-works-box p {
    min-height: 130px;
    padding-top: 20px;
    color: #CACACA;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

/*========== work area style start hare ========== */

/*========= faq area style start hare ========== */

.faq-area {
    padding: 100px 0;
    background: linear-gradient(80deg, #F0F4EF 30.37%, #F3F3F3 86.46%);
}

.faq-top h4 {
    color: #3F494B;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.faq-top {
    max-width: 600px;
}

.faq-top h2 {
    color: #0D1011;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding-top: 30px;
    padding-bottom: 20px;
}

.faq-top p {
    color: #2B2A2A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.48px;
}

.faq-cnt-box {
    margin-top: 80px;
}

.sigle-faq {
    padding-left: 10px;
    border-left: 4px solid #F0C074;
}

.sigle-faq h4 {
    color: #0D1011;
    font-size: 21px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.48px;
}

.sigle-faq p {
    margin-top: 20px;
    color: #3A3A3A;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 10px 0;
    min-height: 100px;
}

/*======= faq area style end hare ========= */

/*===== contact us area style start hare ======= */

.contact-us-area {
    padding: 80px 0;
    background: #0D1011;
}

.contact-us-top h4 {
    color: #549D73;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.contact-us-top h2 {
    color: #F0F4EF;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 25px 0;
}

.contact-us-top h2 span {
    color: #74F0A8;
}

.contact-us-top p {
    color: #A8A8A8;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.48px;
}

.contact-form form {
    max-width: 541px;
}

.contact-form form input,
.contact-form form textarea {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #000;
    background: #F0F4EF;
    font-size: 18px;
}

.contact-form form button {
    border-radius: 10px;
    background: linear-gradient(103deg, #282828 -6.02%, #464646 130.24%);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.40);
    border: none;
    outline: none;
    padding: 12px 20px;
    width: 100%;
    color: #fff;
    transition: 0.3s;
}

.contact-form form button:hover {
    background: #1EBE73;
}

.contact-info h4 {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.48px;
}

.contact-info h4 span {
    color: #C0C0C0;
}

.contact-info {
    border-left: 4px solid #74F0A8;
    padding-left: 15px;
}

.contact-info i {
    color: #74F0A8;
}

.address p {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
}

.email a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.contact-tag-line h4 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
}

.contact-tag-line p {
    text-transform: uppercase;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
}

/*========= contact us area style end hare =========== */

/*======= footer area style start hare ========= */

.footer-area { 
    padding-top: 70px;
    padding-bottom: 30px;
    background-color: #0D1011;
    background-size: cover;
    background-position: center;
}

.footer-block h4 {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
}

.footer-block p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
}

.footer-block h3 {
    color: #F0F4EF;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    margin: 20px 0;
}

.footer-block h5,
.footer-block a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 143.75%;
}

.footer-block .action-btn a {
    color: #000;
}

.footer-block>a {
    display: block;
    margin-top: 25px;
}

.footer-block>a:hover {
    color: var(--hover-color);
}

.footer-nav ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 25px;
}

.footer-nav ul li a {
    padding: 5px 10px;
    display: block;
    color: #F0F4EF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.32px;
}

.footer-nav ul li a:hover {
    color: var(--hover-color);
}

.copyright-box {
    padding: 30px 0;
}

.copyright-box p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.32px;
}

.copyright-box p a {
    text-decoration: underline;
}

.copyright-right p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

.copyright-right span {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 25.6px;
    text-align: center;
    display: block;
}

.copyright-right span a {
    text-decoration: underline;
}

.offcanvas-close-white {
    background: transparent;
    border: none;
    outline: none;
    font-size: 25px;
    margin-left: auto;
}



.SMN_effect-14 a {
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
    position: relative;
}

.SMN_effect-14 a:before {
	position: absolute;
	top: 70%;
	left: 50%;
	color: transparent;
	content: '•';
	text-shadow: 0 0 transparent;
	font-size: 13pt;
	-webkit-transition: text-shadow 0.3s, color 0.3s;
	-moz-transition: text-shadow 0.3s, color 0.3s;
	transition: text-shadow 0.3s, color 0.3s;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
	pointer-events: none;
}

.SMN_effect-14 a:hover:before, .SMN_effect-14 a:focus:before {
	color: var(--hover-color);
	text-shadow: 10px 0 var(--hover-color), -10px 0 var(--hover-color);
}

.SMN_effect-14 a:hover, .SMN_effect-14 a:focus {
	color: var(--hover-color);
}
/* Masquer le bouton Contact Us uniquement en mobile S */
@media (max-width: 576px) {
    .navbar .nav-contact-btn {
        display: none !important;
    }
}

/* Afficher le bouton Contact Us pour les tailles d'écran plus grandes */
@media (min-width: 577px) {
    .navbar .nav-contact-btn {
        display: flex !important;
        visibility: visible !important;
    }
}
/* Ajustements pour les petits écrans (Mobile S) */
@media (max-width: 320px) {
    h1 {
        font-size: 28px; /* Réduction de la taille de police sur mobile S */
        margin-top: 50px; /* Augmente la marge supérieure pour le descendre un peu */
    }
}
h1 {
    font-size: calc(4px + 1em); /* Augmente de 4px la taille du h1 */
}
