:root {
    --primary-blue: #0F172A;
    --primary-green: #1F3A32;
    --alt-bg-color : #f5f5f5;
    --color-ivoire : #F8F7F3;
    --primary-gray: #666666;
    --color-gold : #B8860B;

    --gold-gradient: linear-gradient(
        90deg,
        #B8860B 0%,
        #D4AF37 20%,
        #F9E27D 40%,
        #FFD700 50%,
        #F9E27D 60%,
        #D4AF37 80%,
        #B8860B 100%
    );
}

::selection {
    background-color: var(--primary-blue);
    color: #fff;
}

.text-right {
    text-align: right;
}

.marge-section {
    margin-bottom: 150px;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--primary-gray);
}

.container-wide {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.m-t-about {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 15px;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: var(--primary-blue);
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--primary-blue);
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--color-gold);
}

.menu {
    padding: 20px;
    padding-bottom: 20px;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;

    transition: all .35s ease;
}

.menu.scrolled {

    background: rgba(248, 247, 243, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 5px 30px rgba(0,0,0,.06);

    border-radius: 0 0 18px 18px;
}

.menu > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-menu {
    height: 80px;
    width: auto;
}

.cont-item-menu {
    margin-bottom: 0
}

.cont-item-menu > li {
    display: inline;
    margin: 0 10px;
}

.item-menu {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
}

.item-menu:hover {
    color: var(--color-gold);
    font-weight: 600;
}

.hero-home {
    position: relative; /* important */
    height: 85vh;
    width: 100%;
    background-image: url(../images/hero/banner-home.jpeg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* overlay */
.hero-home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80vw;
    height: 100%;

    background: linear-gradient(
        to right,
        rgb(248, 247, 243, 0.95) 0%,
        rgba(248, 247, 243, 0.8) 40%,
        rgba(248, 247, 243, 0.4) 70%,
        rgba(248, 247, 243, 0) 100%
    );

    z-index: 1;
}

.hero-s-p {
    position: relative; /* important */
    height: 60vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* overlay */
.hero-s-p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 80vw;
    height: 100%;

    background: linear-gradient(
        to right,
        rgb(248, 247, 243, 0.95) 0%,
        rgba(248, 247, 243, 0.8) 40%,
        rgba(248, 247, 243, 0.4) 70%,
        rgba(248, 247, 243, 0) 100%
    );

    z-index: 1;
}

.hero-home .container,
.hero-home .content,
.hero-s-p .container,
.hero-s-p .content {
    position: relative;
    z-index: 2;
    height: 100%;
}

.sep-titre {
    width: 8vw;
    height: 5px;
    background: var(--gold-gradient);
    margin: 10px 0;
    display: block;
    border-radius: 5px;
}

.cont-txt-banner {
    height: 100%;
    display: grid;
    align-items: center;
    align-content: center;
    gap: 20px;
}

.titre-page {
    display: grid;
    align-items: center;
    align-content: center;
}

.cta-banner {
    display: flex;
    justify-content: space-between;
}

.lien-cat-icn {
    color: #000;
    text-decoration: none;
    border-left: 8px solid var(--color-gold);
    border-radius: 5px 0 0 5px;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lien-cat-icn > i {
    font-size: 20px;
    color: var(--color-gold);
}

.lien-cat-icn:hover, .lien-cat:hover, .cta-icn-section:hover {
    color: var(--color-gold);
}

.lien-cat {
    color: #000;
    text-decoration: underline;
    text-decoration-color: var(--color-gold);
    text-decoration-thickness: 4px;
    text-underline-offset: 10px;
}

.competences {
    padding: 80px 0;
    background-color: var(--color-ivoire);
}

.stats {
    padding: 80px 0;
    background-color: var(--alt-bg-color);
}

.sep-item-section {
    height: 100%;
    width: 2px;
    display: block;
    background-color: var(--primary-blue);
}

.cont-item-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.item-section {
    display: grid;
    align-items: center;
    text-align: center;
    align-content: center;
}

.item-section > i {
    font-size: 40px;
    color: var(--primary-blue);
}

.cont-cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.cta-icn-section {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration-color: var(--color-gold);
    text-decoration-thickness: 4px;
    text-underline-offset: 5px;
}

.cta-icn-section > i {
    font-size: 30px;
    color: var(--color-gold);
}

.cont-item-collab {
    height: 380px;
    width: 100%;
    background-color: var(--primary-green);
    border-radius: 20px;
    padding: 20px;
    display: grid;
    align-content: space-between;
}

.titre-item-collab > i {
    color: var(--color-gold);
    font-size: 30px;
    margin-bottom: 15px;
}

.titre-item-collab > h4 {
    color: #fff;
    font-size: 17px;
}

.cont-item-collab > p {
    color: #fff;
    font-size: 12px;
}

.cont-item-avt {
    height: 380px;
    width: 100%;
    background-color: var(--primary-green);
    border-radius: 30px;
}

.cont-pp-avt {
    width: 100%;
    height: 80%;
    border-radius: 30px;
    background-color: var(--alt-bg-color);
}

.cont-txt-avt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 10px;
}

.cont-txt-avt > div > h4 {
    font-size: 14px;
    color: #FFF;
}

.cont-txt-avt > div > p {
    font-size: 12px;
    color: var(--color-gold);
    margin-bottom: 0;
}

.btn-plus-color {
    border: 2px solid var(--color-gold);
    background-color: transparent;
    color: #FFF;
    font-size: 20px;
    border-radius: 20px;
}

.btn-plus {
    border: 2px solid var(--color-gold);
    background-color: transparent;
     color: #000;
    font-size: 20px;
    border-radius: 20px;
}

.stats > div {
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.item-stats {
    flex: 1;
    display: grid;
    justify-items: center;
}

.sep-stats {
    width: 2px;
    display: block;
    background-color: var(--primary-blue);
}

.txt-icn-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.txt-icn-stats > i {
    color: var(--color-gold);
    font-size: 40px;
}

.cont-banner-cbt {
    height: 450px;
    width: 100%;
    background-image: url(../images/hero/banner-approche.jpeg);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.cta-contact > div > div {
    background-color: var(--primary-green);
    border-radius: 30px;
    padding: 40px 100px;
}

.cont-pp-contact {
    text-align: right;
}

.cont-pp-contact > img {
    height: 250px;
    width: auto;
    margin-bottom: -40px;
}

.txt-cta-contact > h3 {
    color: #fff;
    margin-bottom: 30px;
}

.txt-cta-contact > p {
    color: #fff;
    margin-bottom: 40px;
}

.pd-page {
    text-align: center;
}

.cpr-ft {
    padding: 15px 0;
    margin-bottom: 0;
}

.cpr-ft > a {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
}

.sep-ft {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--gold-gradient);
    border-radius: 100%;
}

.cnt-ft {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.lien-cnt-ft {
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.lien-cnt-ft:hover {
    color: var(--color-gold);
}

.lien-cnt-ft > i {
    color: var(--color-gold);
    font-size: 30px;
}

.logo-ft > img {
    height: 80px;
    width: auto;
}

.cont-p-contact {
    margin-top: 250px;
}

.cont-p-about {
    position: relative;
    margin-top: 50px;
    z-index: 2;
}

.cont-item-d-about {
    height: auto;
    width: 100%;
    background-color: var(--primary-green);
    border-radius: 20px;
    padding: 40px;
    margin-top: -80px;
}

.item-d-about {
    display: flex;
    gap: 20px;
}

.item-d-about > i {
    color: var(--color-gold);
    font-size: 50px;
}

.txt-item-d-about, .txt-item-d-about > h5 {
    color: #fff;
}

.cont-item-comp > div {
    display: flex;
    height: 100%;
    gap: 20px;
}

.cont-item-comp > div > .item-section {
    flex: 1;
}

.cont-p-comp {
    margin-top: -80px;
    position: relative;
    z-index: 2 ;
}

.cont-p-comp > div > div {
    padding: 40px;  
    background-color: var(--alt-bg-color);
    border-radius: 40px;
    border: 1px solid var(--primary-blue);
}

.sep-item-comp {
    width: 2px;
    display: block;
    background-color: var(--primary-blue);
}

.item-collab {
    height: 380px;
    width: 100%;
    background-color: var(--alt-bg-color);
    border-radius: 30px;
    padding: 10px;
}

.cont-pp-collab {
    width: 100%;
    height: 80%;
    border-radius: 30px;
    background-color: #fff;
}

.cont-txt-collab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 10px;
}

.cont-txt-collab > div > h4 {
    font-size: 14px;
}

.cont-txt-collab > div > p {
    font-size: 12px;
    color: var(--color-gold);
    margin-bottom: 0;
}

.cont-item-act-ass {
    height: auto;
    width: 100%;
    background-color: var(--primary-green);
    border-radius: 40px;
    padding: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.pp-act-ass {
    width: 100%;
    height: 250px;
    border-radius: 30px;
    background-color: #fff;
}

.txt-act-ass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.txt-act-ass > div > h4 {
    color: #FFF;
}

.txt-act-ass > div > p {
    color: var(--color-gold);
    margin-bottom: 0;
}

.item-act-ass {
    display: flex;
    gap: 20px;
}

.item-act-ass > div {
    flex: 1;
}

.btn-act-ass {
    height: 100%;
    display: grid;
    align-items: end;
}

.btn-menu-m {
    border: none;
    color: var(--color-gold);
    background-color: transparent;
    font-size: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-menu-m > span {
    font-size: 20px;
    font-weight: 500;
}

.cont-item-menu-mobile{
    position: fixed;
    inset: 0;
    min-width: 100vh;
    background-color: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
}
 .fnt-item-menu-mobile {
    height: 100%;
    width: 40vw;
    background-color: var(--color-ivoire);
    border-radius: 0 30px 30px 0;
    padding: 30px;
    display: grid;
 }

 .btn-c-menu-m {
    border: none;
    color: #000;
    background-color: transparent;
    font-size: 25px;
 }

 .cont-item-menu-m {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 20px;
 }

 .cont-item-menu-m > li {
    padding: 10px;
 }