@font-face {
    font-family: 'Cotta';
    src: url('fonts/Cotta-Regular.ttf') format('truetype'),
         url('fonts/Cotta-Regular.eot') format('eot'),
         url('fonts/Cotta-Regular.svg#Cotta-Regular') format('svg');
         font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TAN - PEARL';
    src: url('fonts/TAN-PEARL-Regular.eot');
    src: url('fonts/TAN-PEARL-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/TAN-PEARL-Regular.woff2') format('woff2'),
        url('fonts/TAN-PEARL-Regular.woff') format('woff'),
        url('fonts/TAN-PEARL-Regular.ttf') format('truetype'),
        url('fonts/TAN-PEARL-Regular.svg#TAN-PEARL-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TAN - PEARL';
    src: url('fonts/TAN-PEARL-Regular_1.eot');
    src: url('fonts/TAN-PEARL-Regular_1.eot?#iefix') format('embedded-opentype'),
        url('fonts/TAN-PEARL-Regular_1.woff2') format('woff2'),
        url('fonts/TAN-PEARL-Regular_1.woff') format('woff'),
        url('fonts/TAN-PEARL-Regular_1.ttf') format('truetype'),
        url('fonts/TAN-PEARL-Regular_1.svg#TAN-PEARL-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
  /* =========================
     Couleurs principales
     ========================= */

  --primary-brown-dark: #4B250B;
  --secondary-brown-light: #916241;
  --tertiary-neutral: #FFFFFF;


  /* =========================
     Variantes utiles
     ========================= */

  --brown-dark-hover: #351A08;
  --brown-dark-active: #241106;

  --brown-light-hover: #7A4F35;
  --brown-light-active: #63412C;


  /* =========================
     Neutres
     ========================= */

  --neutral-white: #FFFFFF;
  --neutral-black: #000000;

  --neutral-100: #F8F6F4;
  --neutral-200: #EDE8E3;
  --neutral-300: #D9CEC5;
  --neutral-400: #B8A99E;
  --neutral-500: #8C7A6B;
  --neutral-600: #5E5148;


  /* =========================
     Texte
     ========================= */

  --text-primary: var(--primary-brown-dark);
  --text-secondary: var(--secondary-brown-light);
  --text-inverse: var(--neutral-white);


  /* =========================
     Backgrounds
     ========================= */

  --background-primary: var(--neutral-white);
  --background-secondary: #F8F6F4;
  --background-dark: var(--primary-brown-dark);


  /* =========================
     Bordures
     ========================= */

  --border-light: #EDE8E3;
  --border-medium: #D9CEC5;
  --border-dark: var(--secondary-brown-light);


  /* =========================
     États UI
     ========================= */

  --success: #2E7D32;
  --warning: #C77800;
  --error: #B3261E;
  --info: #1565C0;


  /* =========================
     Ombres
     ========================= */

  --shadow-sm: 0 1px 3px rgba(75, 37, 11, 0.12);
  --shadow-md: 0 4px 12px rgba(75, 37, 11, 0.18);
  --shadow-lg: 0 10px 30px rgba(75, 37, 11, 0.25);
}


.blocET_child img {
    width: 100%;
    justify-content: center;
} 

a {
    text-decoration: none;
}


html {
    width: 100%;
    overflow-x: hidden;
}

header {
    transition: all 0.5s ease;

}

header.header-scroll {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    height: 70px;
    padding: 0 30px;    
       transition: all 0.5s ease;

}


img.logoColor, img.logoBlanc {
    width: 250px;
}



header a, .btnLk {
    z-index: 50;
}

a.logo-head {
    position: relative;
    width: 140px;
}


.menu {
    display: none;
    height: 0vh;    
    overflow: hidden;
    transition: all .2s cubic-bezier(.15,.57,.66,.88);
}

div#menuBurger {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
        position: relative;
    z-index: 10000 !important;
}

.menubtn {
    display: flex;
    width: 60px;
    padding-right: 10px;
}

.menu.open {
    position: fixed;
    background-color:   var(--secondary-brown-light);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 10;
    padding: 150px 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; 
    transition: all .2s cubic-bezier(.15,.57,.66,.88);
}



.boutonBurger {
    cursor: pointer;
    width: 39px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.boutonBurger.open {
    background-color: #f5f5f300;
    z-index: 25 !important;
}


.boutonBurger.open span.txtmenu {
    color: #ffffff;
}

.boutonBurger.open span.burger {
    background-image: url(images/pictos/etoile-burger_blanc.svg);
}



/* .boutonBurger span {
    background-color: var(--secondary-brown-light);
    height: 1px;
    width: 40px;
    display: block;
    margin-top: 10px;
    transition: all .2s cubic-bezier(.15,.57,.66,.88);
    z-index: 1000000;
} */

.boutonBurger span.burger {
    display: block;
    width: 14px;
    background-image: url("images/pictos/etoile-burger.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.boutonBurger:hover {
    transition: all .2s cubic-bezier(.15,.57,.66,.88);
}

/* .boutonBurger:hover span {
    background-color: var(--secondary-brown-light);
    height: 1px;
    width: 30px;
    transition: all .2s cubic-bezier(.15,.57,.66,.88);
} */
/* 
.boutonBurger.open span:nth-child(1) {
    display: none;
}

.boutonBurger.open span:nth-child(2) {
    rotate: 50deg;
    transition: all .2s cubic-bezier(.15,.57,.66,.88);
}

.boutonBurger.open span:nth-child(3) {
    rotate: -50deg;
    transition: all .2s cubic-bezier(.15,.57,.66,.88);
    position: absolute;
    top: 41px;
    margin-top: 0;
}


.boutonBurger.open span:nth-child(2) {
    rotate: 50deg;
    transition: all .2s cubic-bezier(.15,.57,.66,.88);
    margin-top: 0;
    position: absolute;
    top: 41px;
}


.boutonBurger span:nth-child(1) {
    width: 20px;
} */

a.item-little {
    font-size: 15px;
    font-family: 'Montserrat';
    line-height: 21px;
    letter-spacing: 5px;
    font-weight: 300;
}

a.item-little.contact-item {
    padding-top: 30px;
    font-weight: 600;
}


a.item-little.item-menu-top {
    padding-top: 30px;
}

.menu-drawer {
    display: none;
}


.fullBc {
    margin-bottom: 100px;
}

header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    z-index: 2500000000 !important;
    top: 0;
    padding: 30px;
    box-sizing: border-box;
}

a.logo-head {
    position: fixed;
    width: auto;
    left: 50%;
    transform: translateX(-50%);
}



body {
    font-size: 18px;
    position: relative;
    margin: 0;
    overflow-x: hidden;
}

.fond-fixe {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -50;
}



.ct.ct-intro {
    max-width: 1010px;
}


.btn_double {
    column-gap: 7px;
}

.index img.logoBlanc {
    DISPLAY: NONE;
}
a.logo-head.menuopen {
    POSITION: ABSOLUTE;
    top: 35px;
}

.Link_fixed.linkfixedopenmenu {
    position: absolute;
    top: 35px;
    right: 35px;
}


 .ct {
    FONT-WEIGHT: 100;
    margin: 0 auto 150px auto;
    width: calc(100% - 250px);
}


.ct.ct-img-txt, .bc_liste_item, .ct.ct-txt-img {
    display: flex;
    justify-content: space-between;
}

.bc-img-left, .bc-txt-left {
    width: calc(65% - 50px);

}

.bc-li_left {
    max-width: 450px;
}


.bc-txt-left {
    max-width: 650px;
}
 
.bc-txt-right, .bc-img-right {
    width: calc(35% - 50px);
}


.bc-txt-left {
    box-sizing: border-box;
    padding: 0 15% 0 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.bc-txt-right {
        display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


.bc-img-right img.img_slider {
    width: 100%;
    object-fit: cover;
}


.bc-li_left {
    width: 45%;
    min-width: 430px;
    padding-right: 130px;
}


.bc_ligne.ligne-liright {
    display: flex;
    flex-direction: row;
    text-align: left;
}

.bc_ligne.ligne-liright .bc-paragraphe {
    width: 50%;
}


.bc_ligne.ligne-liright h3.title-number {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    width: 50% !important;
    max-width: 285px;
}

.bc_ligne.ligne-liright span.number-small {
    padding-right: 10px;
    font-weight: 700;
    color: #916241;
}


.content-full-slide p {
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 0.5;
    width: 50%;
    font-weight: 400;
    padding-bottom: 50px;
}


.ct.ctTop {
    FONT-WEIGHT: 100;
    padding: 10%;
    width: 100%;
    box-sizing: border-box;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.body-ref_page h2 {
        font-size: 30px;
}


.seo-text h2{
        font-size: 30px;
        text-align: center;
}

.seo-text p {
        margin-bottom: 30px;

}

.seo-text h3 {
width: 100%;
max-width: 100%;
text-align: center;
}


.ct-center.ct-seo.is-open {
    width: 100%;
    max-width: 900px;
}

.bc-li_right {
    max-width: 630px;
}

.ct-full.ct-bc-double_full {
    width: 100%;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    margin: 0 auto 150px auto;
}

.content-ct {
    width: 50%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 5%;
}


.content-ct.ct_right {
    background-color: var(--secondary-brown-light);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.content-ct.ct_left {
    background: #ffffff;
    position: relative;
    align-items: center;
}

.content-txt-bcdouble {
    max-width: 50%;
}

.etoiles-decor img {
    width: 26px;
}

img.etoile-dc-01 {
    position: absolute;
    top: 7%;
    left: 7%;
}

.etoiles-decor {
    position: absolute;
    width: 100%;
    height: 100%;
}

img.etoile-dc-02 {
    position: absolute;
    top: 7%;
    right: 7%;
}


img.etoile-dc-03 {
    position: absolute;
    bottom: 7%;
    left: 7%;
}

img.etoile-dc-04 {
    position: absolute;
    bottom: 7%;
    right: 7%;
}


.center_txt {
    color: #ffffff !important;
    width: 70%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.center_txt h2, .center_txt h3 {
    color: #ffffff !important;
}


span.fer-right {
    text-align: right;
    width: 100%;
    display: block;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2;
    font-size: 14px;
    text-transform: uppercase;
}

.bc_ligne {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 75px 0px;
    border-bottom: solid 1px #916241;
    align-content: flex-end;
    align-items: end;
}

.bc_ligne h2 {
    padding: 0px;
}

.bc_ligne  p {
    margin: 0;
}


a.ct-full.full-slide {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 150px;
}

a.ct-full.full-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ct-seo-centre {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.ct-center.ct-seo {
    max-width: 480px;
    display: block;
    flex-direction: column;
    justify-content: center;
    display: flex;
    flex-direction: inherit;
    align-items: center;
}

.ct-center.ct-seo p {
    text-align: center;
}


.img-hover {
    height: 250px;
    width: 250px;
    overflow: hidden;
    rotate: -80deg;
    transform: rotate(90deg);
    position: relative;
    object-fit: contain;
    align-items: center;
    contain: content;
    display: block;

        transform: translateY(0) rotate(0deg) scale(1);

    transition:
        transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 1.6s cubic-bezier(0.16, 1, 0.3, 1);

    will-change: transform;
}




.bc-paragraphe {
    width: 30%;
}


h2.title-number {
    width: 36%;
}



/* BTN   */
.btn_center-double, .Link_fixed {
    display: flex;
    flex-direction: row;
    column-gap: 5px;
}

.btn_center-double {
    margin-top: 50px;
}


a.btnLink {
    padding: 8px 20px;
    background-color: #916241;
    border-radius: 42px;
    color: #ffffff;
    font-size: 13px;
    display: flex;
    flex-direction: row;
}

a.btnLink::before {
content: '';
display: block;
    width: 7px;
    margin-right: 10px;
    background-image: url(images/pictos/etoile-burger.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


body.body_casStudies.body-ref_page .ct {
    max-width: 1330px;
}



a.btnLink.btn_brown::before, a.btnLink.btn_cont-white::before  {
    background-image: url(images/pictos/etoile-burger_blanc.svg);
}

a.btnLink.btn_cont-white.btn_cont-white_left {
    background-color: transparent;
    border: solid 1px;
    color: #ffffff;
}

a.btnLink.btn_cont-brown {
    background-color: transparent;
    border: solid 1px #916241;
    color: #916241;
}

a.btnLink.btn_white {
background-color: #ffffff;
color: #916241;
}

.img-full {
    width: 100%;
}

.img-full img {
    width: 100%;
}

.ct.ctSmall {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: self-end;
}

.colDouble_txt {
    max-width: 450px;
}

/* TYPOGRAPHIE  */



span.txtmenu {
    font-family: 'Montserrat' !important;
    font-weight: 500;
    color: #916241;
    font-size: 14px;
    letter-spacing: 1px;
}


span.txtmenu, .btnLink , .btn-light{
    font-family: 'Montserrat' !important;
    font-weight: 500;
    color: #916241;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
}

span.btn-light, .btn-light  {
    display: flex;
    text-decoration: underline;
}



.btn-light::before {
    content: '';
    display: block;
    width: 7px;
    margin-right: 10px;
    background-image: url(images/pictos/etoile-burger.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 18px;
}


 h1 {
    color: var(--primary-brown-dark);
    font-family: 'TAN - PEARL';
    font-size: 80px;
    text-align: center;
    font-weight: 100;
    margin: auto;    line-height: 1.5;
    text-transform: uppercase;
}

h1 span {
    font-size: 16px;
    display: block;
    letter-spacing: 5px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 1.2;
}


h2 {
    font-family: 'TAN - PEARL';
    font-size: 40px;
    color: var(--primary-brown-dark);
    letter-spacing: 2px;
    padding-bottom: 20px;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
}

h2 span {
    font-size: 14px;
    display: block;
    letter-spacing: 5px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none !important;
}


h3 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--primary-brown-dark);;
    display: block;
    max-width: 90px;
    text-align: right;
}


p {
    font-size: 12px;
    font-family: 'Montserrat';
    line-height: 22px;
    margin: 0 auto 20px auto;
    font-weight: 400;
    color: var(--primary-brown-dark);
}







ul li a {
    font-family: 'TAN - PEARL';
    font-weight: 400;
    font-size: 5em;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    transition: all .2s 
cubic-bezier(.15, .57, .66, .88);
    filter: blur(0);
    transform: skew(0deg) scale(1) translateX(0);
    font-size: 56px;
    line-height: 1.5;
    text-transform: uppercase;
}


.menu  li {
    display: flex;
    flex-direction: column;
    justify-content: center;
} 

ul li a:hover {
    color: rgba(255,255,255,.7);
    filter: blur(1px);
    transform: skew(-5deg) scale(1.2) translateX(0);
}


/* BLOC VIGNETTES PROJETS */


.ct-content-title-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* .sigle-h2 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b4329;
    line-height: 1;
} */

.btn-light {
    text-decoration: none;
    color: #6b4329;
    font-size: .9rem;
    transition: .3s;
}

a.ct-full.full-slide .btn-light {
    color: #ffffff;
    text-decoration: none;
}

a.ct-full.full-slide .btn-light::before {
        background-image: url(images/pictos/etoile-burger_blanc.svg);
}



.btn-light:hover {
    opacity: .6;
}

/* ===========================
   PROJETS
=========================== */

.projectis {
    overflow-x: auto;
    overflow-y: hidden;
}

.projectis::-webkit-scrollbar {
    display: none;
}

.projectis-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

/* ===========================
   CARTE
=========================== */

.project-vignette {
    width: 720px;
    height: 500px;
    flex-shrink: 0;
}

.project-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}

.project-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.project-link:hover img {
    transform: scale(1.05);
}

/* ===========================
   OVERLAY
=========================== */

.content-txt {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.55),
        rgba(0,0,0,.15),
        transparent
    );
}

/* haut */

.content-info-top {
    display: flex;
    justify-content: flex-end;
}

.title-type {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-family: 'montserrat';
}

/* bas */

.content-info-hover {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-vignette {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;    
    font-weight: 400;
    font-family: 'montserrat';
}

.content-info-hover .btn-light, .span.btnLink.btn_white  {
    color: white;
    border-bottom: 1px solid white;
    padding-bottom: 3px;
}

/* .content-info-hover .btn-light::before, .span.btnLink.btn_white::before  {
    display: none;
} */

/* animation */

.content-info-hover {
    transform: translateY(25px);
    opacity: 0;
    transition: .45s;
    width: auto;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: left;
}

.project-link:hover .content-info-hover {
    transform: translateY(0);
    opacity: 1;
}

.content-info-hover span.btn-light {
    margin-left: 30px;
    text-decoration: none;
}

.btn-light {
    /* color: white; */
    border-bottom: 1px solid #916241;
    padding-bottom: 3px;
}


a.ct-full.full-slide .btn-light {
        border-bottom: 1px solid #FFFFFF;
    padding-bottom: 3px;
}

.content-info-hover span.btn-light::before {
content: '';
display: block;
    width: 7px;
    margin-right: 10px;
    background-image: url(images/pictos/etoile-burger_blanc.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;}



    .bc_ligne .img-hover {
    display: none;
    position: absolute;
    left: 25%;        rotate: -50deg;
    transform: rotate(95deg);
}


.bc_ligne:hover .img-hover {
    display: block;
        rotate: -80deg; 
}


.img-hover img {
    object-fit: cover;
    width: 100%;
    height: 100%;

        transform: translateY(0) rotate(0deg) scale(1);

    transition:
        transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 1.6s cubic-bezier(0.16, 1, 0.3, 1);

    will-change: transform;
}


.img-hover img:nth-child(2n) {
    object-fit: contain;
    width: 85px;
    height: 75px;
    position: absolute;
    top: -110px;
    left: 0;
}


.ct.ct-intro .title-intro {
    align-items: flex-end;
}


.Link_fixed.linkresponsiveok  {
    display: none;
}

.colPal {
    margin: 0 1%;
}
.bc-colors {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ctFull.ct_fullImg {
    width: calc(100% - 135px);
    margin: 0px auto 150px auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}



.ctFull.ct_fullImgimg {
    width: 100%;
}




/* SEO BLOC */

.ct-seo .seo-text {
    max-height: 4.5em; /* environ 3 lignes */
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.ct-seo .seo-text p {
    margin: 0;
}

.ct-seo .seo-more {
    margin-top: 25px;
    padding: 0;
    /* border: none; */
    /* background: none; */
    cursor: pointer;
    /* font: inherit; */
    text-decoration: none;
    /* width: 240px; */
}

.ct-seo.is-open .seo-text {
    max-height: 9000px;
}

.no-margin-bottom {
    margin: auto 0px !important;
}



/* BLOC PLEINE LARGEUR */
a.ct-full.full-slide {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    text-decoration: none;
}

/* IMAGE */
a.ct-full.full-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* VOILE LÉGER SUR L'IMAGE */
a.ct-full.full-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(18 18 18 / 34%);
    z-index: 1;
}

.content-full-slide h2, .content-full-slide  .btn_white {
 color: #ffffff;
}

/* CONTENU CENTRÉ */
.content-full-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    width: 90%;
}



/* HOVER IMAGE */
a.ct-full.full-slide img {
    transition: transform 0.6s ease;
}

a.ct-full.full-slide:hover img {
    transform: scale(1.03);
}





/* fOOTER  */

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 60px 10px 60px;
    border-top: solid 1px;
    background-color: #916241;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: 24px;
    text-decoration: none !important;
}

footer {
    letter-spacing: 2px;
    width: 100%;
    box-sizing: border-box;
}

.mention {
    font-size: 9px;
    letter-spacing: 1px;
    opacity: 0.5;
    padding-top: 35px;
}


footer a {
    color: #fff;
    text-decoration: none !important;
}

img.picto-rs {
    max-width: 25px;
}

.logo-footer {
width: 250px;
}

.bc-footer-dbl h2 {
    color: #ffffff;
    font-size: 25px;
    padding-bottom: 3px;
}

.bc-footer-dbl {
    display: flex;
    padding: 50px 0;
}


.bc-footer.bc_left {
    font-size: 13px;
    line-height: 22px;
    letter-spacing: 1px;
}


.bc-footer  {
    padding: 0 40px;
}



.ct.no-margin-bot {
    margin-bottom: 50px;
}

p.price {
    text-align: left;
    margin: 0 auto 0 0;
    color: #000000;
}

.ct_col3 h3 {
    text-align: left;
    width: 100%;
    display: block;
    max-width: initial;
    margin-bottom: 0px;
}

.ct.ct-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Anim fixed */

#parrallaxe, #p-menu {
    height: 70vh;
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0.8;
    z-index: 10000;
}

#stars01, #star01 {
    position: absolute;
    bottom: 180px;
    left: 30%;
}

#stars02, #star02 {
    position: absolute;
    top: 260px;
    right: 20%;
}

#stars03, #star03 {
    position: absolute;
    top: 100px;
    left: 30%;
}

  /* ----------------------- */

#stars04, #star04 {
    position: absolute;
    bottom: 170px;
    right: 35%;
    opacity: 1;
}

#stars05, #star05 {
    position: absolute;
    top: 320px;
    left: 17%;
    opacity: 1;
}

#stars06, #star06 {
    position: absolute;
    top: 100px;
    right: 22%;
    opacity: 1;

  }


  .ct-content-title-btn {
    width: 100%;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}


.projectis-track {
    display: flex;
    height: 90vh;
}

article.project-vignette {
    height: 85vh;
    width: 78vw;
    margin-right: 10px;
    overflow: hidden;
    object-fit: contain;
        object-position: center;

}

article.project-vignette img {
    object-fit: cover;
    width: 100%;
    object-position: center;
    object-position: center;
    align-items: center;
    justify-content: center;
    display: flex;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* ANIMATION SCROLL  HORIZONTAL  */

.projects {
  height: 100vh;
}

.projects-track {
    display: flex;
    width: 100%;
}




.project-item {
    width: 40vh;
    height: 40vh;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    padding: 0 130px;
    text-decoration: none;
}

.project-item:nth-child(2n) {
    width: 100vh;
    height: 57vh;
    flex-direction: column-reverse;
    display: flex;
    margin-top: 29vh;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;

    transform: translateY(0) rotate(0deg) scale(1);

    transition:
        transform 1.6s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 1.6s cubic-bezier(0.16, 1, 0.3, 1);

    will-change: transform;
}

.project-item:hover img {
    transform: translateY(-10px) rotate(-0.8deg) scale(1.025);
}

.center_img-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.home {
    height: 0px;
}



.projects {
    overflow: hidden;
    height: 100vh;
}

.content-slider-projt {
    display: flex;
    gap: 40px;
    width: max-content;
}

.project-vignette {
    flex: 0 0 auto;
    width: 400px;
}


/* FORMULAIRE */

:root {
    --black: #9f8755;
    --cream: #f5f1e8;
    --cream-dark: #e8e1d4;
    --text: #553821;
}



p.intro {
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 27px;
    line-height: 1.2;
    width: 50%;
    color: #7e6449;
}

.form-group{
    margin-bottom:20px;
}

form {
    font-family: 'Montserrat';
    font-size: 13px;
    color: #7e6449;
    padding-left: 50px;
    width: 50%;
    min-width: 400px;
}

label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

input[type="email"], input[type="tel"], textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 11px;
    background: var(--cream);
    font-size: 15px;
}

input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus{
    outline:none;
    border-color:var(--black);
}

textarea{
    min-height:150px;
    resize:vertical;
}

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:20px 0;
}

.checkbox input{
    margin-top:4px;
}

.checkbox label{
    margin:0;
    font-weight:400;
    line-height:1.5;
}

a{
    color:var(--black);
    text-decoration:underline;
}

button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: #916241;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    border-radius: 31px;
    display: block;
    width: auto;
    padding: 15px 40px;
    font-family: 'Montserrat';
}

button:hover{
    opacity:.92;
}

.footer-links{
    margin-top:30px;
    text-align:center;
    font-size:14px;
}

.footer-links a{
    margin:0 8px;
}

/* PAGE GALLERIE PROJET  */

.Bc-gallery_01, .Bc-gallery_02 {
    display: flex;
}


.Bc-gallery_02 {
    flex-direction: row-reverse;
}


a.gallery-item {
    width: 100%;
    display: block;
    position: relative;
    object-fit: cover;
    object-position: center;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    margin-top: -40px;
    text-decoration: none;
}

.gallery {
    width: 100%;
    margin: 0 auto 150px auto ;
}


.gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img02_project{
    display: none;
}

.Bc-galleryChild_01 {
    width: 60%;
}
.Bc-galleryChild_02 {
    width: 40%;
}


.Bc-galleryChildChild01 {
    display: flex;
    justify-content: space-between;
}


.Bc-galleryChildChild02 {
    display: flex;
    justify-content: center;
}


.Bc-galleryChild_01 a.gallery-item {
    width: calc(100%/3);
}



.gallery-image {
    height: 552px;
}


.Bc-galleryChild_01 .gallery-image {
    height: 276px;
}


.gallery-info {
    font-family: 'Montserrat';
    letter-spacing: 1px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    padding: 0px 10px 10px 10px;
    color: #000000;
    font-size: 12px;
}

.gallery-image:hover .img01_project {
display: none;
}


.gallery-image:hover .img02_project {
display: block;
}



/* PAGE CAS STUDIES */

body.body_casStudies .boutonBurger span.burger {
    background-image: url(images/pictos/etoile-burger_blanc.svg);
}

body.body_casStudies .header-scroll .boutonBurger span.burger {
    background-image: url(images/pictos/etoile-burger.svg);
}


body.body_casStudies .logoColor {
display: none;
}

body.body_casStudies  .header-scroll .logoColor {
display: block;
}

body.body_casStudies  .header-scroll .logoBlanc {
display: none;
}

body.body_casStudies span.txtmenu {
    color:#ffffff;
}

body.body_casStudies header a.btnLink.btn_cont-brown {
    background-color: transparent;
    border: solid 1px #ffffff;
    color: #ffffff;
}


body.body_casStudies  .header-scroll  span.txtmenu {
    color:#916241;
}

body.body_casStudies  .header-scroll  a.btnLink.btn_cont-brown {
    background-color: transparent;
    border: solid 1px #916241;
    color: #916241;
}



body.body_casStudies header a.btnLink::before {
    background-image: url(images/pictos/etoile-burger_blanc.svg);
}

body.body_casStudies .header-scroll   a.btnLink.btn_cont-brown.btn_cont-brown_left::before {
    background-image: url(images/pictos/etoile-burger.svg);
}


.ctSlider {
    width: 100%;
    height: 100vh;
    top: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 150PX;
}


.content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
}

.content-center h1 {
    color: #ffffff;
    padding: 0 20px ;
}

.content-center  h1 span {
    font-size: 12px;
    letter-spacing: 3px;
}


span.titlepro {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.ctSlider .btn-light {
    position: absolute;
    color: #ffffff;
    border-bottom: solid 1px #ffffff;
    bottom: 20px;
    right: 30px;
}


.ctSlider .btn-light::before {
    background-image: url(images/pictos/etoile-burger_blanc.svg);
}

/* CT INTRO  */
.ct.ct-intro {
    display: flex;
}


.categorie {
    font-size: 10px;
    display: block;
    letter-spacing: 2px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none !important;
    text-transform: uppercase;
    display: flex;
    color: #4b250b;
    margin-right: 40px;
    margin-bottom: 10px;
}

.categorie span {

    margin-right: 10px;

}


.title-intro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}


.title-intro h2 {
    margin-right: 20px;
}

.btn_double {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
}


/* Bloc Cas studies  */
.ctCasstudies {
    width: calc(100% - 135px);
    margin: 0px auto 150px auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}


.ctCasstudies h2 {
    /* display: flex; */
    /* align-items: flex-end; */
    /* padding: 0; */
    text-align: center;
}



.img-2col {
    width: 100%;
    display: flex;
    overflow: hidden;
}


.img-1col {
    width: 100%;
    display: flex;
    overflow: hidden;
}


 .img-1col img {
    width: 100%;
}


.img-2col img  {
    width: 50%;
}

.img2col2col {
    width: 50%;
}

.o22col {
    display: flex;
}

.o22col:nth-child(2n) {
    display: flex;
    flex-direction: row-reverse;
}


.o22col img {
    width: 50%;
}



/* BLOC COLORS  */

.bc-colors {
    display: flex;
}

span.colorPlt {
    display: block;
    height: 180px;
    width: 155px;
    margin-bottom: 20px;
    border-radius: 80px 80px 0 0;
    margin: 30px auto 20px auto;
}

.colPal {
    margin: 0 35px;
}



.colPal h2 {
    font-family: 'Montserrat';
    font-size: 16px;
}

.colPal h2::before {
    display: block;
    content: '';
    height: 50px;
    width: 1px;
    margin: 30px auto;
    background-color: #b29b6b;
}

img.img_slider {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctSlider::after {
    content: "";
    position: absolute;
    background: rgb(18 18 18 / 50%);
    z-index: 1;
        top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-center, .ctSlider .btn-light  {
    z-index: 10;
}



/* Page photo  */

.ct.img-4col.imgcol-photo, .ct.img-4col {
    display: flex;
    flex-wrap: wrap;
}

.contentimg {
    width: calc(33% - 4px);
    margin: 2px;
}

.contentimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ  */

.faq-section {
    padding: 60px;
    border: solid 1px #916241;
    color: #916241;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0 auto 150px auto;
        box-sizing: border-box;
}

.faq-container {
    max-width: 100%;
    margin: 0 auto;
}




.faq-item {
    border-bottom: 1px solid #dcd4cc;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #916241;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #8c5830;
}

.faq-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}


.faq-arrow::after {
    content: '';
    display: block;
    width: 7px;
    margin-right: 10px;
    background-image: url(images/pictos/flechefleche.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 18px;
}



.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 0;
}



/* État ouvert géré par JavaScript */
.faq-item.active .faq-answer {
    max-height: 300px; /* S'ajuste automatiquement selon la longueur du texte */
    transition: max-height 0.4s ease-in-out;
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg); /* Fait pivoter la flèche pour imiter l'effet de votre maquette */
}



ul {
    font-size: 12px;
    font-family: 'Montserrat';
    line-height: 22px;
    margin: 0 auto 20px auto;
    font-weight: 400;
    color: var(--primary-brown-dark);
    list-style: disc;
}

ul {
  list-style-type: disc !important; 
}







/* PORTFOLIO MASQUE */


.ct.ct-4col {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}


a.ct-4col_child {
    height: 70vh;
    width: calc(50% - 40px);
    overflow: hidden;
    display: block !important;
    justify-content: space-around;
    flex-direction: column;
    align-items: stretch;
    margin: 0 20px 60px 20px !important;
    text-decoration: none;
    position: relative;
}

a.ct-4col_child::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(170deg, transparent, #000000ba);
    mix-blend-mode: multiply;
    position: absolute;
    z-index: 70;
    background-blend-mode: multiply;
    top: 0;
    left: 0;
}


.catego {
    font-size: 12px !important;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: block;
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 100 !important;
}

.ct-4col_child h2 {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row !important;
    position: absolute;
    padding: 30px;
    bottom: 0px;
    width: calc(100% - 60px);
    z-index: 150 !important;
}

a.ct-4col_child:nth-child(3n+3) {
    width: calc(100%);
}

a.ct-4col_child img {
    height: 100%;
    object-fit: cover;
    min-height: 250px;
    margin-bottom: 0;
    z-index: -10;
    transition: all 1s ease-out;
        WIDTH: 100%;
}

.ct-4col_child h2::after {
    content: '';
    background-image: url(images/pictos/flecheTop-bl.svg);
    display: block;
    width: 23px;
    height: 23px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.bc-colors {
    display: flex;
    width: 50%;
    flex-direction: row;
    flex-wrap: wrap;
}



.bloccouleur4 span.colorPlt {
    display: block;
    height: 140px;
    width: 125px;
    margin-bottom: 20px;
    border-radius: 80px 80px 0 0;
    margin: 30px auto 20px auto;
}

.bc-colors h2 {
    font-family: 'montserrat';
    font-size: 12px;
    display: block;
    width: 100%;
}

.bloccouleur4 {
    display: flex;
    flex-wrap: wrap;
}


.bloccouleur4 .colPal {
    margin: 0 5px;
}


/* FIN PAGE CAS STUDIES  */


/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:1400px) {
    .bc-img-left, .bc-txt-left {
    width: calc(45% - 50px);
}



.bc-txt-right, .bc-img-right {
    width: calc(45% - 50px);
}

.bc-txt-left {
    padding: 0 0 0 0px;
}

}


@media (max-width:1100px) {
.ct.ct-img-txt, .ct.bc_liste_item, .ct.ct-txt-img {
    flex-direction: column;
    align-items: center;
}


.bc-img-left, .bc-txt-left, .bc-txt-right, .bc-img-right, .bc-li_left {
    width: 100%;
    margin-bottom: 40px;
        padding: 0px !important;
        min-width: 100%;
}


.bc-li_right {
    max-width: 100%;
}


a.ct-4col_child {
    width: calc(50% - 20px);
    margin: 0 10px 20px 10px !important;
}


}

@media (max-width:990px){

    .ct-content-title-btn{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .project-vignette{
        width:90vw;
        height:60vw;
        min-height:400px;
    }

    .title-vignette{
        font-size:1.7rem;
    }

a.logo-head {
        right: auto;
        transform: translate(0px, 0px);
        position: relative;
        left: auto;
        width: 170px;
    }


    a.logo-head img {
    width: 100%;
}

.ct.ctTop {
    padding: 160px 0px;
}

h1 {
    font-size: 60px;
    line-height: 1.3;
}

.project-item {
    width: 30vh;
    padding: 0 50px;
}

.content-txt-bcdouble {
    max-width: 80%;
}

article.project-vignette {
        height: 65vh !important;
        width: 78vw !important;
        margin-right: 0px;
    }


    .projectis-track {
    display: flex;
    height: auto !important;
}

.ct {
    margin: 0 auto 110px auto;
    width: calc(100% - 130px);
}

h2.title-number {
    width: 32%;
    font-size: 24px;
}
.bc-paragraphe {
    width: 50%;
}


.bc-footer-dbl {
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo-footer {
    width: 100%;
    animation: c;
    justify-content: center;
    display: flex;
    margin-bottom: 50px;
}

.bc-footer.bc_left {
    width: 32%;
}




/* PROJECT  */

    .ct.ctTop {
        padding: 200px 0px 130px 0px;
    }

.index .projects {
        overflow: auto;
        height: auto;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0 0 0 0;
    }

    .index .projects-track {
        display: flex;
        width: 100%;
        position: relative;
        padding: 0% 0% 0% 10%;
    }


        .ct {
        margin: 0 auto 10% auto;
        width: calc(100% - 20%);
    }

    .projects-track .project-item {
        width: 80%;
        height: auto;
        flex-shrink: 0;
        cursor: pointer;
        position: relative;
        padding: 0 12% 0px 0px;
        text-decoration: none;
        overflow: hidden;
        box-sizing: border-box;
    }

    .index .project-item img {
        height: 40vh !important;
        margin: 0;
    }

    .index .project-item:nth-child(2n) h2 {
    padding-top: 20px;
}

    .index .project-item:nth-child(2n) {
        width: 200px;
        height: 200px;
        flex-direction: column-reverse;
        display: flex;
        margin-top: 0;
    }



    img.Profil_picture {
    width: 160px;
    height: auto;
}

    .center_img-btn {
        justify-content: flex-start !important;
        align-items: self-start !important;
        width: 100%;
    }

     .content-ct.ct_right {
        background-color: #ffffff;
        padding: 10% 10% 5% 10%;
    }

    .center_img-btn .btn_center-double {
        display: none !important;
    }

    .center_txt {
    width: 100% !important;
}

    .ct.ctresponsivescroll {
    margin: 0 0 0 auto;
    width: calc(100% - 10%);
}
   .ct h2.sigle-h2, .ct h2 {
        font-size: 30px;
        margin-bottom: 0;
        padding: 0;
    }


    .projectis-track {
    display: flex;
    height: auto;
    width: auto !important;
}

    article.project-vignette {
        width: 90% !important;
        margin: 0 !important;
        padding: 0 !important;
    }


    #stars02, #star02 {
    position: absolute;
    top: 390px;
    right: 60px;
}

#stars05, #star05 {
    position: absolute;
    top: 420px;
    left: 27%;
    opacity: 1;
}


.ct.ct-4col {
    width: calc(100% - 40px);
}


   .ct.ct-4col h2.sigle-h2, .ct.ct-4col h2 {
        font-size: 18px;
        margin-bottom: 0;
        padding: 0;
        padding: 10px 20px;
    }


}


@media (max-width:850px){


   .center_img-btn .btn_center-double {
    margin-top: 10px;
    margin-bottom: 40px;
    padding: 0 60px;
    justify-content: flex-end;
    align-items: flex-end;
    justify-items: flex-end;
    display: flex;
    flex-direction: row;
}
.center_img-btn a.btnLink.btn_cont-white.btn_cont-white_left
{
    display: none;
}

.ct.ctSmall {
    display: flex;
    flex-direction: column;
}


.etoiles-decor {
    display: none;
}

.Bc-gallery_01, .Bc-gallery_02 {
    flex-direction: column !important;
}

    .Bc-galleryChild_01, .Bc-galleryChild_02 {
        width: 100% !important;
    }


    .bc-footer.bc_left, .bc-footer.bc_right {
    width: 100% !important;
}


.gallery .Bc-galleryChildChild02 {
    display: flex;
    justify-content: flex-end;
}

.gallery  .Bc-galleryChild_01 a.gallery-item {
    width: calc(100% / 2);
            margin-top: 0px !important;
}


a.gallery-item {
    width: calc(100% / 2);
            margin-top: 0px !important;
}


    .gallery .Bc-galleryChild_01 a.gallery-item:nth-child(2) {
        width: 100%;

    }


    .gallery-info span:nth-child(1) {
    display: none;
}

  .gallery  .gallery-info {
    position: absolute;
    top: 10px;
    color: #ffffff;
    text-transform: uppercase;
}


  .gallery  .gallery-image {
    height: 30vh !important;
    min-height: 220px;
}

.bc-footer-dbl {
    flex-wrap: wrap;
    justify-content: center;
}

.bc-footer {
    padding: 12px;
    text-align: center;
}

    .ct-full.ct-bc-double_full {
        flex-direction: column-reverse;
        margin: 0 auto 50px auto;
    }

.content-ct {
    box-sizing: border-box;
    width: 100%;
}

.content-ct.ct_right {
    background-color: #ffffff;
}

h2.sigle-h2, h2 {
    font-size: 30px;
}

.ct-content-title-btn {
        flex-direction: column !important;
    }




.bc_ligne {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 0px;
}


.img-hover img {
    display: block;
}


.bc_ligne .img-hover {
    display: block;
    position: relative;
    left: 40px;
    rotate: -85deg;
    transform: rotate(95deg);
    width: 70%;
    height: auto;
    padding: 50px 0;
}

h2.title-number {
    width: 100%;
}

h2.title-number br {
    display: none;
}


.bc-footer.bc_left {
    margin-bottom: 60px !important;
}

.bc-paragraphe {
    width: 100%;
    padding-bottom: 30px;
}


.ct-full.ct-bc-double_full.no-margin-bottom.ctdoublefullinverse {
    flex-direction: column;
}

.menu.open ul {
    padding: 0;
}

    .ct-full.ct-bc-double_full.no-margin-bottom.ctdoublefullinverse .content-ct.ct_right, .ct-full.ct-bc-double_full.no-margin-bottom.ctdoublefullinverse .content-ct.ct_left {
        background-color: #916241;
        padding: 10%;
    }

.ct-full.ct-bc-double_full.no-margin-bottom.ctdoublefullinverse .content-ct.ct_right {
        min-height: 10px;
        padding: 10%;
    }


  .ctdoublefullinverse .content-form .container {
        background: #916241;
        padding-top: 0px;
        box-sizing: border-box;
        padding: 0px;
    }

   .ctdoublefullinverse .content-form .container  form {
        width: 100%;
        padding: 0;
        color: #ffffff;
    }

   .ctdoublefullinverse a {
    color: #ffffff;
    text-decoration: underline;
}

   .ctdoublefullinverse  button.btn_brown {
    background: #ffffff;
    color: #916241;
}


ul li a {
    font-size: 36px;
}

a.logo-head.menuopen {
    display: none;
}

.p-menu {
    display: none;
}

    .ct.ctTop {
        padding: 200px 0px 160px 0px;
    }


    #stars06, #star06 {
    position: absolute;
    top: 130px;
    right: 10%;
    opacity: 1;
}


#stars05, #star05 {
    display: none;
}

#stars04, #star04 {
    position: absolute;
    bottom: 140px;
    right: 15%;
    opacity: 1;
}



#stars02, #star02 {
   display: none;
}

#stars03, #star03 {
    position: absolute;
    top: 150px;
    left: 10%;
    /* width: 25px; */
}

    #parrallaxe #stars01, #parrallaxe #star01 {
        position: absolute;
        left: 40px;
        top: 36% !important;
        bottom: auto;
    }


#stars01 img,
#stars02 img,
#stars03 img,
#stars04 img,
#stars05 img,
#stars06 img,
#stars07 img,
#stars08 img {
    width: 42px;
}


.ct.ct-intro {
    display: flex;
    flex-direction: column;
}

.body_casStudies .categories {
    display: flex;
    margin-bottom: 40px;
    flex-direction: row;
    justify-content: space-between;
}

.body_casStudies  .bc-colors {
    display: flex;
    width: 100%;
    display: flex;
    justify-content: center;
}


.body_casStudies  .colPal {
    margin: 0 5%;
}


.colPal span.colorPlt {
    display: block;
    height: 130px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 80px 80px 0 0;
    margin: 30px auto 20px auto;
}

.ctCasstudies {
    width: calc(100% - 10%) !important;
        margin: 0px auto 60px auto;

}


.body_casStudies  .categorie {
    flex-direction: column;
    column-gap: 12px;
}



.title-intro {
    flex-direction: column !important;
}

.bc-colors {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}


section.projects::-webkit-scrollbar {
    display: none;
}


.ct.ctTop #stars01, .ct.ctTop #star01 {
        position: absolute;
        left: 40px;
        top: 55%;
        bottom: auto;
    }

    .contentimg {
    width: 48%;
    margin: 2px;
}


    .ct.ctSmall {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}



@media (max-width:750px){

    a.ct-4col_child {
        width: 100%;
        margin: 0 0px 4px 0px !important;
        height: 40vh !important;
    }

    .bc_ligne {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px;
        min-width: 100px !important;
        box-sizing: border-box;
        overflow: hidden;
        width: 90%;
        animation: c;
        margin: 40px auto;
    }


.bc_ligne.ligne-liright {
    flex-direction: column;
    padding: 20px 0;
}
.btn_double {
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 7px;
}

.menu.open {
    padding: 150px 30px;
}

    .ct h2.sigle-h2, .ct h2 {
        font-size: 23px;
        margin-bottom: 0;
        padding: 0;
    }

    section.ct.faq-section {
    max-width: 100%;
    padding: 28px;
}
.ct-seo .seo-text {
    max-height: 3.5em;
}

.bc_ligne.ligne-liright h3.title-number {
    width: 100% !important;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.bc-paragraphe {
    width: 100% !important;
}

.img-2col {
    flex-direction: column;
    align-items: center;
}

    #parrallaxe #stars04, #parrallaxe #star04 {
        position: absolute;
        bottom: 47%;
        right: 50px;
        opacity: 1;
    }

#stars04 img {
    width: 22px;
}
.img-2col img {
    width: 100%;
}
.img-1col {
        width: 100%;
        display: flex;
        overflow: hidden;
        min-height: auto;
        overflow: hidden;
        object-fit: cover;
    }

    .img-1col img {
        width: 100% !important;
        object-fit: contain;
    }



.img-2col img {
        width: 100% !important;
    }


    .ctSlider .content-center {
        display: flex;
        flex-direction: column;
        width: 90%;
    }


span.titlepro {
    padding: 70px;
    transform: rotate(-90deg);
    display: block;
}


#parrallaxe {
    z-index: -1 !important;
}

.categorie {
    margin-right: 20px !important;

}

.ctFull.ct_fullImg {
    width: calc(100% - 10%);
}


header .Link_fixed {
    display: none;
}

    .Link_fixed.linkresponsiveok {
    display: flex !important;
    padding-top: 50px;
}

.Bc-galleryChild_01 {
    display: flex;
    flex-direction: column-reverse;
}

.ctFull.ct_fullImg {
    width: calc(100% - 10%);
}

.Bc-galleryChild_01 a.gallery-item {
    width: calc(100% / 2);
}


.Bc-galleryChildChild01 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}



    h1 {
        font-size: 36px;
        line-height: 1.3;
    }


    h1 span {
    font-size: 11px;
    display: block;
    letter-spacing: 2px;
    font-family: 'Montserrat';
    font-weight: 400;
    line-height: 1.2;
}


    .content-txt-bcdouble {
        max-width: 100%;
        padding: 0% 5% 15% 15%;
    }

.img2col2col {
    width: 100% !important;
}
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    a.ct-full.full-slide {
        height: 80vh;
    }

    .content-full-slide {
        width: 90%;
    }

    .content-full-slide h2 {
        font-size: 38px;
    }

    .content-full-slide h2 span {
        font-size: 14px;
        margin-top: 14px;
    }

    .content-full-slide .btn_brown {
        margin-top: 20px;
        font-size: 11px;
    }

    .container {
        padding: 35px 25px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    p.intro {
        text-align: center;
    width: 100%;
}

.ct.ctTop.ctContact h1 {
    text-align: left;
    padding-right: 0px;
}

form {
    width: 100%;
    padding: 0 50px;
    margin-top: 10px;
}

.ctContact {
    margin: 70px 0 50px 0 !important;
}

    p.intro {
        font-size: 18px;
    }


    .container {
        background: #f5f5f3;
        padding-top: 0px;
    }

input[type="email"], input[type="tel"], textarea
 {
    background: #ffffff;
}

form {
    width: 100%;
    min-width: 200px;
            padding: 0 20px;
}

    .ct.ct-intro {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin-bottom: 60px;
    }

    .ctSlider {
    margin-bottom: 30PX;
}

body.body_casStudies.body-ref_page .ct {
    width: 95%;
}

}


@media (max-width: 650px) {

      #parrallaxe #stars04, #parrallaxe #star04 {
        position: absolute;
        bottom: 100px;
        right: 50%;
        opacity: 1;
    }
    #stars03, #star03 {
        position: absolute;
        top: 110px;
        left: 10%;
        /* width: 25px; */
    }

        #parrallaxe #stars01, #parrallaxe #star01 {
        display: none;
    }




}



@media (max-width: 450px) {


    .ct {
        width: 100%;
        align-items: center;
        justify-content: center;
    }


    .contentimg {
    width: 48%;
    margin: 2px;
    height: 50vh;
    overflow: hidden;
}

.page-annexe .ct.ctTop {
    padding: 90px 0 40px;
}

}

