/*
Theme Name: Mosal
Description: Inside Web 2025 - thème
Version: 2.0.0
Author: Inside Web
Author URI: https://www.insideweb.be
*/

/*Example to import font*/
/*@font-face {
  font-family: "Circular-Std";
  src: url("https://insideweb.be/layout/themes/insideweb/fonts/CircularStd-Black.ttf") format('truetype');
  font-weight: 700;
}*/

:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #A2887A;
    --secondary: #F5F4F0;
    --transparent: #ffffff00;
    --area: "area-normal", sans-serif;
}

body{
    font-family: var(--area);
    font-weight:400;
    margin: 0;
    overflow-y: scroll;
    /*14px-16px*/
    font-size: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
    color:var(--primary);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--primary);
}

img {
    width: 100%;
}

p:last-child {
    margin-bottom: 0;
}

button, .button{
    background: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 10px 20px;
    color: var(--primary);
    /*14px-16px*/
    font-size: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
    transition: all 0.5s ease 0s;
}

button:hover, .button:hover{
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.hide{
    display: none;
}

.btnSite{
    border: 1px solid var(--primary);
    color: var(--primary);
    background-color: var(--transparent);
    padding: 12px 30px;
    transition: all 0.3s ease-in-out;
    display: block;
    border-radius: 40px;
    max-width: max-content;
    font-family: var(--area);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.btnSite:hover{
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.mb-20{
    margin-bottom: 20px;
}

.mb-30{
    margin-bottom: 30px;
}

.mb-40{
    margin-bottom: 40px;
}

.mt-40{
    margin-top: 40px;
}

/* HEADER */

.nav-link{
    font-family: var(--area);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--black);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    margin-left: var(--bs-navbar-nav-link-padding-x);
    margin-right: var(--bs-navbar-nav-link-padding-x);
}

.nav-link:hover{
    border-top: 7px solid var(--black);
    border-bottom: 7px solid var(--transparent);
}

.borderTopActive{
    border-top: 7px solid var(--black);
    border-bottom: 7px solid var(--transparent);
}

header .navbar-brand img{
    width: auto;
    max-width: 105px;
}

.navbar-brand{
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-expand-md{
    padding-top: 0;
    padding-bottom: 0;
}

.offcanvas-footer{
    display: flex;
    align-items: center;
    padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

.offcanvas{
    height: 100vh !important;
    background-color: var(--white);
}

.firstSection{
    margin-top: 105px;
}

header{
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.logoBlack{
    display: none;
}

.burger{
    display: flex;
    align-items: center;
    outline: none;
    height: 30px;
    width: 35px;
    border: 0;
    padding: 0px;
    background: var(--transparent);
    transition: all 250ms ease-out;
    cursor: pointer;
    z-index: 9999;
}

.burger:focus, .burger:hover{
    box-shadow: none;
    border: none;
}
.offcanvas{
    z-index: 9998;
}
.offcanvas-header{
    height: 122px;
    padding-left: 10%;
}
.offcanvas-body{
    padding-left: 10%;
}

.ligne{
    content: '';
    width: 35px;
    height: 2px;
    position: absolute;
    transition: all 250ms ease-out;
    will-change: transform;
}

.ligne.active3{
    background-color: var(--button);
}

.ligne-gauche{
    background-color: var(--black);
    transform: translateY(9px);
}

.ligne-center{
    background-color: var(--black);
    transform: translateY(0px);
}

.ligne-droite{
    background-color: var(--black);
    transform: translateY(-9px);
}

.ligne-gauche.active{
    transform: translateY(0) rotate(45deg);
}

.ligne-center.active{
    opacity: 0;
}

.ligne-droite.active{
    transform: translateY(0) rotate(-45deg);
}

/* FIN HEADER */

/* FOOTER */

.logo-footer{
    max-width: 175px;
}

footer{
    background-color: var(--black);
    padding-top: 60px;
    padding-bottom: 30px;
}

.flexLienFooter{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.divLienReseaux{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
}

.p-footer{
    font-family: var(--area);
    font-weight: 400;
    font-size: 10px;
    line-height: 18px;
    color: var(--secondary);
    text-align: center;
    padding-top: 30px;
}

/* FIN FOOTER */

/* CONTACT */

/* FIN CONTACT */

/* PAGE 404 */

#page404{
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-self: center;
}

/* FIN PAGE 404 */

/* FRONT PAGE */

.color-white{
    color: var(--white);
}

.color-black{
    color: black;
}

.color-grey{
    color: var(--primary) !important;
}

.space{
    margin-bottom: 100px;
    margin-top: 100px;
}

.bgWhite{
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--white);
}

.bgBeigePadding{
    background-color: var(--secondary);
    padding-top: 60px;
    padding-bottom: 60px;
}

.bg-beige{
    background-color: var(--secondary);
}

.absoluteContainer{
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.title1Home{
    font-family: var(--area);
    font-weight: 600;
    font-size: 60px;
    letter-spacing: 3px;
    line-height: 70px;
    text-transform: uppercase;
    background-color: var(--black);
    padding: 45px;
    max-width: fit-content;
}

.title1{
    font-family: var(--area);
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 3px;
    line-height: 45px;
    text-transform: uppercase;
}

.h2Home{
    font-family: var(--area);
    font-weight: 600;
    font-size: 25px;
    color: var(--white);
}

.imgHome{
    height: calc(100vh - 86.55px);
    object-fit: cover;
}

.h2Home2{
    font-family: var(--area);
    font-weight: 800;
    font-size: 65px;
    letter-spacing: 1.63px;
    text-transform: uppercase;
    color: var(--primary);
    text-align: end;
}

.p-site{
    font-family: var(--area);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.38px;
    line-height: 25px;
    color: var(--black);
}

.p-site-green{
    font-family: var(--area);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0.63px;
    line-height: 35px;
    color: var(--primary);
}

.p-site-black{
    font-family: var(--area);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0.63px;
    line-height: 35px;
    color: var(--black);
}

.card-page {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .card-page .imgAbsoluteHome {
    width: 100%;
    height: 100%;
    display: block;
    /* transition: opacity 0.1s ease-in-out; */
    min-height: 500px;
  }

.imgAbsoluteHome{
    object-fit: cover;
}

  
  /* image par défaut visible */
  .imgHover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 1;
  }
  
  /* image hover cachée */
  .card-page .imgHover {
    opacity: 0;
    z-index: 2;
  }
  
  /* au hover : inversion */
  .card-page:hover .imgNotHover {
    opacity: 0;
  }
  
  .card-page:hover .imgHover {
    opacity: 1;
  }
  
.h3Card{
    font-family: var(--area);
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 45px;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.rond, .rondFooter{
    width: 40px;
    height: 40px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.rond:hover{
    background-color: var(--primary);
    border-color: var(--primary);
}

.rondFooter:hover{
    border-color: var(--white);
}

.rond i{
    color: var(--white);
}

.divAbsoluteCard{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.card-actualite, .card-domaine{
    padding: 40px;
    background-color: var(--secondary);
    height: 100%;
}

.card-domaine{
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: space-between;
    color: var(--black);
    transition: all 0.3s ease-in-out;
    font-family: var(--area);
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.75px;
    color: var(--primary);
    line-height: 35px;
    height: 100%;
}

.card-domaine:hover{
    color: var(--white);
    background-color: var(--black);
}

.h4Home{
    font-family: var(--area);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 18px;
    color: var(--primary);
}

.lienSite{
    font-family: var(--area);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--black);
    transition: all 0.3s ease-in-out;
    display: block;
}

.lienSite:hover{
    color: var(--primary);
}

.h2-titre{
    font-family: var(--area);
    font-weight: 600;
    font-size: 40px;
    letter-spacing: 1px;
    color: var(--black);
}

/* FIN FRONT PAGE */

/* DOMAINE D'EXPERTISE */

.imgFirstSectionTop{
    height: 300px;
    object-fit: cover;
}

.absoluteTitre{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.borderRight{
    border-right: 1px solid var(--primary);
    height: 100%;
}

.arrowTaille{
    font-size: 40px;
}

.row-special{
    --bs-gutter-y: calc(var(--bs-gutter-x) * 1);
}

/* FIN DOMAINE D'EXPERTISE */

/* EQUIPE */

.h1-titre{
    font-family: var(--area);
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
}

.imgEquipe{
    aspect-ratio: 1;
    object-fit: cover;
}

.titrePersonne{
    font-family: var(--area);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.45px;
    color: var(--primary);
    margin-top: 15px;
    text-align: center;
}

.row-special-2{
    --bs-gutter-y: calc(var(--bs-gutter-x) * 1.5);
}



/* FIN EQUIPE */

/* ACTUALITE */

.flexFiltre {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.flexFiltre li a{
    color: var(--black);
    font-family: var(--area);
    font-weight: 600;
    font-size: 12px;
    line-height: 30px;
    text-transform: uppercase;
    display: block;
    transition: all 0.3s ease-in-out;
}

.flexFiltre li a:hover{
    color: var(--primary);
}

.filtre-bloc {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.filtre-cat {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    position: relative;
}

.filtre-cat:not(:last-child)::after {
    content: "|";
    margin-left: 8px;
    color: #999;
}

.linkedin{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    position: relative;
    border: 1px solid var(--black);
    border-radius: 5rem;
    padding: 8px 15px;
    margin-top: 2rem;
    display: block;
    max-width: max-content;
}

.linkedin:hover{
    background-color: var(--black);
    color: var(--white);
}


.pMin{
    font-family: var(--area);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: var(--black);
    text-transform: uppercase;
}

.p-site-3{
    font-family: var(--area);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.45px;
    line-height: 25px;
    color: var(--black);
}

/* FIN ACTUALITE */

/* CONTACT */

.borderLeft{
    border-left: 1px solid var(--black);
}

.lienContact{
    font-family: var(--area);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.45px;
    color: var(--black);
    line-height: 25px;
    display: block;
}

.p-site-green-petit{
    font-family: var(--area);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.38px;
    color: var(--primary);
    line-height: 25px;
}

.h2Contact{
    font-family: var(--area);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0.63px;
    color: var(--primary);
}

/* FIN CONTACT */

/* CATEGORIE */

.h3-category{
    font-family: var(--area);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.23px;
    color: var(--black);
}

.h4-category{
    font-family: var(--area);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.23px;
    color: var(--black);
}

.h2-category{
    font-family: var(--area);
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.75px;
    color: var(--primary);
}

.largeurImageSingle{
    max-width: 278px;
    margin-top: 30px;
}

.h2-equipe{
    font-family: var(--area);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0.63px;
    color: var(--primary);
}

.listeLienEquipe li{
    font-family: var(--area);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.38px;
    color: var(--black);
}

.h2-actualite, .h3-actualite{
    font-family: var(--area);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.38px;
    color: var(--primary);
    line-height: 25px;
    margin-bottom: 0;
}

.h4-actualite{
    font-family: var(--area);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0.63px;
    line-height: 30px;
    color: var(--black);
    margin-top: 20px;
}

.minHeight{
    min-height: 80vh;
}

.lienSpecial{
    color: var(--black);
}

.lienSpecial a{
    color: var(--primary);
}

.lienSpecial a:hover{
    color: var(--black);
}

.lienActualite{
    font-family: var(--area);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: var(--primary);
}

.h3-cabinet{
    font-family: var(--area);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 0.63px;
    color: var(--primary);
}

.imgCabinet{
    max-width: 280px;
    object-fit: cover;
}

.navbar-nav{
    height: 100%;
}

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

.video{
    height: calc(100vh - 105px);
    object-fit: cover;
}

.videoPage{
    height: 40vh;
    object-fit: cover;
}

.breadcrumb {
    margin: 10px 0;
    font-size: 14px;
  }
  .breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-family: var(--area);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 25px;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }

  .color-black-text{
    color: var(--black) !important;
    text-decoration: none;
    font-family: var(--area);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.3px;
    line-height: 25px;
  }

.paddingBeige{
    padding-bottom: 60px;
    padding-top: 60px;
}

/* FIN CATEGORIE */

/* SWIPER */

.swiper {
    width: 100%;
}

.absoluteSlider{
    position: absolute;    
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.swiper-button-prev, .swiper-button-next{
    background-color: var(--black);
    color: var(--white);
    width: 82px;
    border: 1px solid var(--black);
    transition: all 0.3s ease-in-out;
}

.swiper-button-prev:hover, .swiper-button-next:hover{
    background-color: var(--transparent);
    color: var(--black);
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after, .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px;
}

.spaceBottom60{
    margin-bottom: 60px;
}

.flexDekstopCenter{
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.flexDekstopCenterColumn{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.paddingTopDomaine{
    padding-top: 5rem;
}

.fontBlack{
    color: var(--black);
}

#lienColor a{
    color: var(--primary);
}

#lienColor a:hover{
    color: var(--black);
}

.imgContact{
    height: 100%;
    object-fit: cover;
}

/* FIN SWIPER */

@media only screen and (max-width: 1400px){ 

}
@media only screen and (max-width: 1200px){ 

}
@media only screen and (max-width: 992px){ 
    .paddingBeige{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .imgCabinet{
        width: 100%;
    }
    .title1, .title1Home{
        font-size: 25px;
        line-height: 27px;
    }
    .h2Home{
        font-size: 18px;
        line-height: 18px;
    }
    header .navbar-brand img{
        max-width: 100px;
    }
    .firstSection{
        margin-top: 100px;
    }
    .imgHome{
        height: calc(100vh - 66.36px);
    }
    .space{
        margin-bottom: 50px;
        margin-top: 50px;
    }
    .h2Home2{
        font-size: 35px;
        letter-spacing: 1px;
        text-align: start;
    }
    .p-site-green{
        font-size: 20px;
        line-height: 25px;
    }
    .card-actualite, .card-domaine{
        margin-bottom: 20px;
        padding: 20px;
    }
    .rowMobile{
        --bs-gutter-y: 1.5rem;
    }
    .mb-40{
        margin-bottom: 25px;
    }
    .h2-titre{
        font-size: 25px;
    }
    .nav-link{
        font-size: 16px;
        text-align: center;
    }
    .borderTopActive, .borderTopActive:hover, .nav-link:hover{
        border-top: 0;
        border-bottom: 0;
    }
    .listeFiltre li a{
        font-size: 10px;
    }
    .h1-titre{
        font-size: 25px;
        letter-spacing: 2px;
    }
    .p-site{
        font-size: 13px;
        line-height: 20px;
    }
    .mt-40{
        margin-top: 20px;
    }
    .flexLienFooter{
        flex-direction: column;
        align-items: start;
    }
    .divLienReseaux{
        justify-content: start;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .imgFirstSectionTop{
        height: 40vh;
        object-fit: cover;
    }
    .mb-30{
        margin-bottom: 15px;
    }
    .logo-footer{
        margin-bottom: 20px;
    }
    .copyright{
        margin-top: 20px;
    }
    .p-footer{
        text-align: start;
    }
    .offcanvas-body{
        padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    }
    .largeurImageSingle{
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .h2-equipe{
        font-size: 20px;
    }
    .imgCabinet{
        max-width: 100%;
        margin-top: 20px;
    }
    .row-reverse-mobile{
        flex-direction: column-reverse;
    }
    .row-special{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .marginBottomMobile{
        margin-bottom: 20px;
    }
    .absoluteContainer{
        top: 80%;
    }
}
@media only screen and (max-width: 768px) { 

}
@media only screen and (max-width: 576px) { 

}

