body {
    margin: 0 !important;
    color: #0A2F41 !important;
}

body.fade-in {
    opacity: 0;
    background-color: white;
    animation: fade-in 0.5s ease-in-out forwards;
  }
  
  @keyframes fade-in {
    from {
      opacity: 0.5;
    }
    to {
      opacity: 1;
    }
  }

.target {
    position: relative;
    bottom: 70px;
}

.btnUnderline{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-weight: 500;
    color: #0A2F41;
    text-decoration: underline;
    cursor: pointer;
}

.displayNoneOnPhone {
    
}

.displayBlockOnPhone {
    display: none;
}

@media (min-width: 1250px) {

}

@media (max-width: 1250px) {

    .displayNoneOnPhone {
        display: none !important;
    }

    .displayBlockOnPhone {
        display: block;
    }
}


/*/////////////// main ///////////////////*/

.titre-left {
    margin: 0;
    font-size: 60px !important;
    color: #ffffff;
    font-family: 'Poppins';
    padding-left: 80px;
    transition: 0.2s ease;
    cursor: pointer;
    display: inline-block;
}
.titre-middle {
    margin: 0;
    font-size: 60px !important;
    color: #ffffff;
    font-family: 'Poppins';
    padding-left: 80px;
    transition: 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.rowHome {
    height: 70%;
    width: 100%; 
    overflow: hidden; 
}

.rowHome img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-bottom: 5px solid #0A2F41;
}

.rowHome video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-bottom: 5px solid #0A2F41;
}

.boxR, .boxL{
    margin-bottom: 100px;
}


.boxR .left , .boxR .right , .boxL .left , .boxL .right {
    transition: 0.3s ease;
}

.boxR .titre img {
    height: 50px;
}

.boxR .left {
    width: 50%;
    padding: 50px 110px 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.boxR .left *{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
}

.boxR .middle *{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
}

.boxR .left .rowTxt .titre {
    line-height: 30px;
    letter-spacing: 2px;
}

.boxR .middle .rowTxt .titre {
    line-height: 30px;
    letter-spacing: 2px;
}

.boxR .right {
    width: 50%;
    position: relative;
    right: 50px;
}

.boxR .right img{
    width: auto;
}



.boxL .left {
    width: 40%;
    position: relative;
    left: 50px;
    z-index: 2;
}

.boxL .titre img {
    height: 50px;
}


.boxL .left img{
    width: 100%;
    float: right;
}

.boxL .right {
    width: 50%;
    padding: 50px 50px 50px 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 1;
}

.boxL .right *{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
}

.boxL .middle *{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
}

.boxL .right .rowTxt .titre {
    line-height: 30px;
    letter-spacing: 2px;
}

.boxL .middle .rowTxt .titre {
    line-height: 30px;
    letter-spacing: 2px;
}

#aboutpage .rowIntro {
    border-top: none !important;
    padding: 40px 0 40px 0 !important;
    display: flex;
    justify-content: center;
    gap: 20px;
}


#aboutpage .rowIntro h1{
    font-size: 55px;
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    margin: 0;
    color: #000000;
}


@media (min-width: 1250px) {

}

@media (max-width: 1250px) {
    .rowIntro h2 {
        font-size: 22px !important;
    }

    .rowIntro h6 {
        font-size: 11px !important;
    }

    .rowHome {
        height: 30%;
        width: 100%; 
        overflow: hidden; 
    }
}

/*/////////////// main (END) ///////////////////*/



/*/////////////// header ///////////////////*/


.rowLogo-header {
    display: flex;
    background-color: #ffffff;
    padding: 10px 0 20px 0;
    height: 20%;
}

.rowLogo-header img{
    height: 120%;
}

.rowLogo-header .boxLeft {
    min-width: 33%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: #0A2F41;
    font-size: 15px;
}
.rowLogo-header .boxLeft svg{
    width: 27px;
    fill: #0A2F41;
    margin: 5px;
}

.rowLogo-header .boxLeft p{
    margin-bottom: 10px;
    cursor: pointer;
}

.rowLogo-header .boxLeft a {
    font-weight: 500;
    color: #0A2F41;
    text-decoration: none;
    position: relative;
}

.rowLogo-header .boxLeft a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #0A2F41;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.rowLogo-header .boxLeft a:hover::after {
    width: 100%;
}

.rowLogo-header .boxMiddle {
    min-width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.rowLogo-header .boxRight {
    min-width: 33%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rowLogo-header .boxRight svg{
    width: 30px;
    fill: #0A2F41;
    margin: 5px;
}

.rowLogo-header .boxRight p{
    margin-bottom: 10px;
    font-size: 15px;
}

.rowLogo-header .boxRight a {
    font-weight: 500;
    color: #0A2F41;
    text-decoration: none;
    position: relative;
}

.rowLogo-header .boxRight a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #0A2F41;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.rowLogo-header .boxRight a:hover::after {
    width: 100%;
}







.rowLogo-header-phone {
    background-color: #ffffff;
    padding: 10px 0 20px 0;
}


.rowLogo-header-phone .boxLeft {
    min-width: 33%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: #0A2F41;
    font-size: 15px;
    margin-bottom: 40px;
}
.rowLogo-header-phone .boxLeft svg{
    width: 27px;
    fill: #0A2F41;
    margin: 5px;
}

.rowLogo-header-phone .boxLeft p{
    margin-bottom: 10px;
}

.rowLogo-header-phone .boxLeft a {
    font-weight: 500;
    color: #0A2F41;
    text-decoration: none;
    position: relative;
}



.rowLogo-header-phone .boxRight {
    min-width: 33%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.rowLogo-header-phone .boxRight svg{
    width: 30px;
    fill: #0A2F41;
    margin: 5px;
}

.rowLogo-header-phone .boxRight p{
    margin-bottom: 10px;
    font-size: 15px;
}

.rowLogo-header-phone .boxRight a {
    font-weight: 500;
    color: #0A2F41;
    text-decoration: none;
    position: relative;
}






 .rowLink-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    background-color: #0A2F41;
    padding: 20px 0 20px 0;
}

.rowLink-header-scroll {
    border-bottom: 1px solid #b5b5b5;
    transition: 0.3s ease;
}

.rowLink-header a {
    font-size: 15px;
    color: white !important;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.rowLink-header a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease; /* Transition de la largeur pour un effet de soulignement progressif */
}

.rowLink-header a:hover::before {
    width: 100%; /* Le soulignement s'étend uniquement sous le texte */
}



.rowLink-header a img{
    height: 20px;
    width: auto;
}

.dropdown-header {
    position: relative;
    display: inline-block;
}

.dropdown-header svg{
    width: 9px;
    height: auto;
    fill: white;
    margin: 5px;
    position: relative;
    bottom: 2px;
}
.dropdown-header {
    position: relative;
    display: inline-block;
}

.dropdown-content-header {
    display: block;
    opacity: 0;  /* Set initial opacity to 0 */
    visibility: hidden; /* Use visibility to hide the dropdown */
    position: absolute;
    background-color: #0A2F41;
    min-width: 160px;
    z-index: 1;
    padding: 5px 0;
    transition:  0.2s ease; /* Transition for opacity and visibility */
}

.dropdown-header .langue{
    display: block;
    opacity: 0;  /* Set initial opacity to 0 */
    visibility: hidden; /* Use visibility to hide the dropdown */
    position: absolute;
    background-color: #0A2F41;
    min-width: 55px;
    z-index: 1;
    padding: 5px 0;
    transition:  0.2s ease; /* Transition for opacity and visibility */
}

.dropdown-content-header a {
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}


.dropdown-header:hover .dropdown-content-header {
    opacity: 1; /* Set opacity to 1 on hover */
    visibility: visible; /* Make dropdown visible on hover */
}




.overlay {
    display: none; /* initialement caché */
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0); /* Départ avec opacité à 0 pour transition */
    z-index: 0; /* en dessous du menu mais au-dessus du contenu de la page */
    transition: background-color 0.5s ease; /* Transition douce de l'opacité */
    }
    
.menuButton, .closeButton {
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
    position: fixed;
    top: 10px;

}

.menuButton {
    top: 0px;
    width: 100%;
    height: 50px;
    display: flex;
    background-color: white;
    align-items: center;
    padding: 15px;
    position: fixed;
    box-shadow: 0px 0px 5px rgb(0 0 0 / 29%);
}

.closeButton {
    right: 2px;
    display: none; 

}

.menuButton svg{
    fill: black;
    width: 20px;
}

.closeButton svg{
    fill: black;
    width: 20px;
}

.rowHeader {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

.rowHeader img{
    height: 35px;
    width: auto;
    position: fixed;
    z-index: 1;
    right: 7px;
}

.sideMenu {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: transform 0.5s ease; 
    transform: translateX(-100%); 
    background-color: white;
}

.sideMenuContent {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh;
}

.sideMenuContent .rowLink{
    text-align: center;
    
}

.sideMenuContent .rowLink *{
    margin-bottom: 35px;
    font-size: 18px;
    color: #000000 !important;
    font-family: 'Poppins';
    font-weight: 400;
    text-decoration: none;
}
.dropdown {
    transition: height 0.4s ease-in-out;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.dropdown-header-phone {
    height: 27px;
}

.dropdown-header-phone .bloc-top svg {
    width: 12px;
    margin-bottom: 5px !important;

}
.bloc-top-header-phone {
    margin-bottom: 7px !important;
}

.bloc-links-header-phone {
    margin-bottom: 0 !important;

}

.bloc-links-header-phone li{
    margin-top: 7px !important;
    margin-bottom: 0px !important;
    list-style-type: none;
}


.dropup-content-header {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    bottom: 100%; /* Positionner en haut du parent */
}

.dropdown-header:hover .dropup-content-header {
    display: block;
}

.dropdown-content-header, .dropup-content-header {
    display: block; 
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    opacity: 0;
    transform: translateY(10px); 
    transition: opacity 0.3s ease, transform 0.3s ease;
    visibility: hidden; 
    border-radius: 7px;
}

.dropdown-header:hover .dropdown-content-header,
.dropdown-header:hover .dropup-content-header {
    opacity: 1;
    transform: translateY(0); 
    visibility: visible; 
}


@media (min-width: 1250px) {
    .rowLink-header {
        display: block;
    }
    .rowLink-header {
        display: flex;
    }

    .headerPhone {
        display: none;
    }

    
    .rowContactPhone {
        display: none;
    }
}

@media (max-width: 1250px) {
    .rowLogo-header {
        display: none;
    }
    .rowLink-header {
        display: none;
    }

    .headerPhone {
        display: block;
        position: relative;
        z-index: 999;
    }


    .rowContactPhone {
        display: block;
    }
    
}



/*/////////////// header (END) ///////////////////*/



/*/////////////// Intro ///////////////////*/
.headerHomePage {
    width: 80%;
    margin: 0 auto;
    position: relative;
    bottom: 31px;
}

.headerHomePage *{
    background-color: #0A2F41;
    color: white;
    fill: white;
    font-weight: 400;
}

.headerHomePage * a{
    color: white;
    font-weight: 400;
}

.headerHomePage .dropdown-header .dropdown-content-header a{
    color: white;
    font-weight: 400;
}

.rowIntro{
    text-align: center;
    background-color: #ffffff;
    padding: 50px 0 50px 0;

}

.rowIntro h6{
    font-size: 13px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin: 0;
    padding-bottom: 10px;
    color: #0A2F41;
}

.rowIntro h1{
    font-size: 37px;
    font-family: 'Georgia Pro', sans-serif;
    font-style: italic;
    margin: 0;
    color: #000000;
}


.rowIntro h2{
    font-weight: 600;
    font-size: 27px;
    letter-spacing: 2px;
    color: #0A2F41;
    font-family: 'Poppins';
    margin: 0;
}


@media (max-width: 1500px) {
    .headerHomePage {
        width: 90%;
    }
    
}

@media (max-width: 1300px) {
    .headerHomePage {
        width: 95%;
    }
}
/*/////////////// Intro (END) ///////////////////*/





/*/////////////// Nos service ///////////////////*/



.boxNosService {
    height: 70%;
    margin-bottom: 100px;
    height: 500px ;
}

.boxNosService .left {
    background-color: #f1f1f1;
    justify-content: flex-start;
    width: 65%;
    padding: 50px 210px 50px 50px;
    height: 90%;
}

.boxNosService .left .rowTxt .titre {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxNosService .left .rowTxt .desc {
    font-weight: 400;
}

.boxNosService .right {
    display: flex;
    gap: 30px;
    right: 150px !important;
    width: 30%;
}

.boxNosService .right img{
    height: 500px !important;
}


@media (min-width: 1250px) {

}

@media (max-width: 1250px) {


    .boxNosService {
        display: block !important;
        height: auto !important;
        margin-bottom: 30px !important;
    }

    .boxNosService .left {
        width: 100%;
        padding: 40px 30px 40px 30px;
    }

    .boxNosService .right {
        right: 0 !important;
        width: 100%;
    }

    .boxNosService .right img {
        width: 100% !important;
        height: auto !important;
    }

    .boxR .left {
        height: auto !important;
    }



}

/*/////////////// Nos service  (END) ///////////////////*/


/*/////////////// Nos service.pthml   ///////////////////*/
.boxConvoyage {
    height: auto;
}

.boxConvoyage .middle {
    background-color: #f1f1f1;
    justify-content: flex-start;
    width: 90%;
    padding: 50px;
}

.boxConvoyage .middle .rowTxt .titre {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxConvoyage .middle .rowTxt .desc {
    font-weight: 400;
    margin-bottom: 50px;
}



.boxConvoyage .images {
    display: flex;
    gap: 50px;

}
.boxConvoyage .images h2 {
    font-size: 22px;
    padding-top: 10px;
    margin: 0;
    text-align: center;
}

.boxConvoyage .images h4 {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

.boxConvoyage .images .img1{
    width: 33%; 
    height: auto;
}

.boxConvoyage .images .img1 img, .img2 img, .img3 img{
    width: 100%;
}

.boxConvoyage .images .img2{ 
    width: 33%; 
    height: auto;
}

.boxConvoyage .images .img3{
    width: 33%; 
    height: auto;
}

.boxGrutage {
    height: 70%;
}

.boxGrutage .left {
    background-color: #f1f1f1;
    justify-content: flex-start;
    width: 55%;
    height: 85% !important;
}
.boxGrutage .right {
    width: 45%;
}

.boxGrutage .left .rowTxt .titre {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxGrutage .left .rowTxt .desc {
    font-weight: 400;

}



.boxHivernage {
    height: auto;
}

.boxHivernage .middle {
    background-color: #f1f1f1;
    justify-content: flex-start;
    width: 90%;
    padding: 50px;
}

.boxHivernage .middle .rowTxt .titre {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxHivernage .middle .rowTxt .desc {
    font-weight: 400;
    margin-bottom: 50px;
}

.boxHivernage .middle .rowTxt .images h2 {
    text-align: center;
}

.boxHivernage .middle .rowTxt .images .interieur .centre {
    text-align: center;
}

.boxHivernage .middle .rowTxt .images .interieur .centre img{
    width: 80%;
    display: block; 
    margin: 0 auto;

}

.boxHivernage .middle .rowTxt .images .exterieur{
    display: flex;
    justify-content: center;
    gap: 2%;
    margin-top: 30px;
}

.boxHivernage .middle .rowTxt .images .exterieur .ouest ,
.boxHivernage .middle .rowTxt .images .exterieur .est{
    width: 39%;
}

.boxHivernage .middle .rowTxt .images .exterieur .ouest img ,
.boxHivernage .middle .rowTxt .images .exterieur .est img{
    width: 100%;
}


.boxMecanique {
    height: 75%;
}

.boxMecanique .left {
    background-color: #0A2F41;
    justify-content: flex-start;
    color: white;
    width: 60%;
}

.boxMecanique .right {
    width: 40%;
}

.boxMecanique .left .rowTxt .titre {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxMecanique .left .rowTxt .desc {
    font-weight: 300;

}





.boxBois {
    height: 55%;
}

.boxBois .left {
    width: 40%;
    transition: 1s ease;
}

.boxBois .left img{
    width: 100%;
    height: auto;
}

.boxBois .right {
    background-color: #f1f1f1;
    justify-content: flex-start;
    width: 55%;

}

.boxBois .right .rowTxt .titre {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxBois .right .rowTxt .desc {
    font-weight: 400;

}

.boxBois .right .rowTxt .desc a {
    font-weight: 600;
    color: #0A2F41;
    text-decoration: none;
    position: relative;
}

.boxBois .right .rowTxt .desc a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #0A2F41;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.boxBois .right .rowTxt .desc a:hover::after {
    width: 100%;
}


.boxVernis {
    height: 55%;
}

.boxVernis .left {
    background-color: #f1f1f1;
    justify-content: flex-start;
    width: 55%;
    padding: 50px 210px 50px 50px;
}

.boxVernis .left .rowTxt .titre {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxVernis .left .rowTxt .desc {
    font-weight: 400;

}

.boxVernis .right {
    right: 150px !important;
    width: 40%;
}

.boxVernis .right img{
    height: auto !important;
    width: 100% !important;
}

.boxSellerie {
    height: 55%;
}

.boxSellerie .left {
    width: 35%;
    transition: 1s ease;
}

.boxSellerie .right {
    background-color: #0A2F41;
    justify-content: flex-start;
    width: 65%;
    color: white;
}

.boxSellerie .right .rowTxt .titre {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxSellerie .right .rowTxt .desc {
    font-weight: 300;
}

.boxSellerie .left img{
    width: auto;
}

.nosServicePhone .box {
    background-color: #f1f1f1;
    padding: 40px 30px 40px 30px;
}

.nosServicePhone .box .titre{
    line-height: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.nosServicePhone .box .desc{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-weight: 400;
    margin-bottom: 20px;
}

.nosServicePhone .box .desc a {
    font-weight: 600;
    color: #0A2F41;
    text-decoration: none;
    position: relative;
}

.nosServicePhone img{
    height: auto;
    width: 100%;
    margin-bottom: 30px;
}

@media (min-width: 1250px) {
    .nosServiceDesktop {
        display: block;
    }
    .nosServicePhone {
        display: none;
    }
}

@media (max-width: 1250px) {
    .nosServiceDesktop {
        display: none;
    }

    .nosServicePhone {
        display: block;
        
    }

    .nosServicePhone h2{
        font-size: 24px;
    
    }

    .nosServicePhone h4{
        font-size: 14px;
        
    }


    .nosServicePhone .box {
        margin-top: 20px;

    }

    

    .rowIntro {
        padding: 50px 0 50px 0;
    }

    #aboutpage .rowIntro {
        padding: 70px 0 70px 0 !important;
    }
}

/*/////////////// Nos service.pthml    (END) ///////////////////*/




/*/////////////// QuiSommeNous  ///////////////////*/


.boxQuiSommeNous {
    height: 65%;
}

.boxQuiSommeNous .left {
    width: 45%;
    transition: 1s ease;
}

.boxQuiSommeNous .left img{
    width: 100%;
    height: auto;
}

.boxQuiSommeNous .right {
    background-color: #f1f1f1;
    justify-content: flex-start;
    width: 55%;

}

.boxQuiSommeNous .right .rowTxt .titre {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.boxQuiSommeNous .right .rowTxt .desc {
    font-weight: 400;

}

@media (min-width: 1250px) {

}

@media (max-width: 1250px) {



    .boxQuiSommeNous{
        display: block !important;
        height: auto !important;
        margin-bottom: 30px !important;
    }

    .boxQuiSommeNous .right {
        width: 100% !important;
    }

    .boxQuiSommeNous .left {
        width: 100% !important;
    }

    .boxL .left {
        left: 0 !important;
    }

    .boxL .right {
        padding: 40px 30px 40px 30px;
        height: auto !important;
    }
    .boxQuiSommeNous img {
        width: 100% ;
    }

    .carousel-caption h5{
        font-size: 15px;
    }

    .carousel-caption p{
        font-size: 12px;
    }
    
}

/*/////////////// QuiSommeNous (END)  ///////////////////*/

/*/////////////// Photos  ///////////////////*/

.rowPhotos{
    background-color: #ffffff;
    padding: 100px 0 100px 0;
}

.rowPhotos .boxImg {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.rowPhotos .boxImg img{
    width: 250px;
    height: auto;
    border-radius: 10px;
}


/*/////////////// Photos (END) ///////////////////*/


/*/////////////// ou_nous_trouver.phtml ///////////////////*/


/*/////////////// ou_nous_trouver.phtml (END) ///////////////////*/



/*/////////////// nous_contacter ///////////////////*/

.rowNousContacterAdd {
    padding: 80px 50px 80px 50px;
    width: 90%;
    background-color: #f1f1f1;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
    display: flex;
}

.rowNousContacterAdd .boxBtn{
    width: 15%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.rowNousContacterAdd .boxBtn .btn{
    min-height: 35px;
    min-width: 170px;
    background-color: #0A2F41;
    color: white;
    border-radius: 10px;
    border: 1px solid #0A2F41;

    font-size: 15px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-weight: 400;
}

.rowNousContacterAdd .boxBtn .btn:hover {
    color: black;
    background-color: transparent;

}

.rowNousContacterAdd .rowTitre{
    font-family: 'Poppins';
    line-height: 30px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 27px;
}

.rowNousContacterAdd .rowDesc {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-weight: 400;
}


/*/////////////// nous_contacter (END) ///////////////////*/




/*/////////////// nous_contacter.phtml ///////////////////*/
.errorMsg {
    text-align: center;
    padding: 20px;
}

.rowNousContacter{
    background-color: #ffffff;
    padding: 10px 0 50px 0;
    margin: 0;
}


.rowNousContacter *{
    color: #0A2F41;
}

.rowNousContacter input{
    border: none;
    border-radius: 5px;
    background-color: #f1f1f1;
    color: black;
    padding: 0 10px 0 10px;
}

.rowNousContacter textarea{
    border: none;
    border-radius: 5px;
    background-color: #f1f1f1;
    color: black;
    padding: 10px 10px 10px 10px;
}

.rowEmail {
    display: flex;
    justify-content: center;
}
.rowEmail,
.rowInfo {
    margin: 10px;
}

.boxEmail input,
.boxTel input,
.boxNom input,
.boxPrenom input{
    width: 100%;
    height: 40px;
}

.boxEmail{
    width: 30%;
    padding: 15px;
}

.boxTel{
    width: 30%;
    padding: 15px;
}


.rowInfo {
    display: flex;
    justify-content: center;
}

.boxNom{
    width: 30%;
    padding: 15px;
}

.boxPrenom{
    width: 30%;
    padding: 15px;
}

.rowMessage {
    display: flex;
    justify-content: center;
    margin: 10px;
}

.boxMessage{
    width: 60%;
    padding: 15px;
}

.boxMessage textarea{
    width: 100%;
    height: 40px;
    min-height: 200px;
}

.rowSumbit{
    display: flex;
    justify-content: center;
    margin: 10px;
}

.boxSumbit{
    width: 80%;
    padding-right: 20px;
    display: flex;
    justify-content: flex-end;
}

.boxSumbit button{
    background-color: #0A2F41;
    border: 1px #0A2F41 solid;
    color: white;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95px;
    height: 45px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.boxSumbit button:hover{
    background-color: transparent;
    transition: 0.2s ease;
    color: white
}

.rowNumTel{
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 50px;
    padding: 70px;
    width: 58%;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.rowNumTel * {
    text-align: center;
}

@media (min-width: 1250px) {

}

@media (max-width: 1250px) {

    .boxPrenom , .boxNom , .boxEmail , .boxTel {
        width: 50%;
    }

    .boxMessage, .boxSumbit{
        width: 100%;
    }
}

/*/////////////// nous_contacter.phtml (END) ///////////////////*/




/*/////////////// ou nous trouver  ///////////////////*/

.rowOuNousTrouver .rowTitre {
    font-family: 'Poppins';
    line-height: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 35px;
    padding: 0 0 30px 80px;
}

.rowOuNousTrouver .iframe{
    display: flex;
    justify-content: center;
}

@media (min-width: 1250px) {

}

@media (max-width: 1250px) {


    .rowOuNousTrouver  {
        background-color: #f1f1f1;
        margin-bottom: 30px !important;
    }

    .rowOuNousTrouver .rowTitre {
        font-size: 27px !important;
        padding: 40px 0 30px 30px !important;
        margin-bottom: 0px !important;
    }

    .rowNousContacterAdd {
        margin: 0 !important;
        width: 100% !important;
        margin-top: 0px !important;
        padding: 40px 30px 40px 30px;
    }

}
/*///////////////  ou nous trouver (END) ///////////////////*/


/*/////////////// ou nous trouver.phtml  ///////////////////*/

.rowHistoire {

}

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

.box1, .box2, .box3, .box4 {
    margin-bottom: 50px;
}

.box1 .left {
    width: 55%;
    height: 450px;
    background-color: #f1f1f1;
    padding: 50px 110px 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box1 .left *{
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-weight: 400;
}

.box1 .right {
    width: 35%;
    height: 400px;
    position: relative;
    right: 50px;
}

.box1 .right img{
    width: auto;
    height: 100%;
}



.box2 .left {
    width: 35%;
    height: 400px;
    position: relative;
    left: 50px;
}

.box2 .left img{
    width: auto;
    height: 100%;
    float: right;
}

.box2 .right {
    width: 55%;
    height: 450px;
    background-color: #0A2F41;
    padding: 50px 50px 50px 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.box2 .right *{
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-weight: 300;
}




.box3 .right {
    width: 40%;
    height: 400px;
    position: relative;
    right: 50px;
}

.box3 .right img{
    width: auto;
    height: 100%;
}

.box3 .left {
    width: 50%;
    height: 450px;
    background-color: #f1f1f1;
    padding: 50px 110px 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box3 .left *{
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-weight: 400;
}



.box4 .middle {
    background-color: #0A2F41;
    color: white;
    width: 90%;
    height: 250px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box4 .middle  *{
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
    font-family: 'Poppins';
    font-weight: 300;
}


@media (min-width: 1250px) {

}

@media (max-width: 1250px) {

    .box1, .box2, .box3, .box4 {
        display: block !important;
        margin: 0 0 30px 0 !important;
    }

    .box1 .right , .box1 .left , .box2 .right , .box2 .left , .box3 .right , .box3 .left , .box4 .middle {
        width: 100%;
        position: static;
        height: auto;

    }

    .box1 .left, .box2 .right, .box3 .left, .box4 .middle{ 
        padding: 40px 30px 40px 30px;
    }

    
    .box1 .right img, .box2 .left img, .box3 .right img{
        width: 100%;
        height: auto;
    }
}


/*///////////////  ou nous trouver.phtml (END) ///////////////////*/



/*/////////////// creation_sur_mesure.phtml ///////////////////*/

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-auto-rows: 250px;
    gap: 10px;
    padding: 10px;
    width: 80%;
    margin: 0 auto;
}

.mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-column: span 1;
    grid-row: span 1;
}


@media (min-width: 1250px) {

}

@media (max-width: 1250px) {

    .mosaic {
        width: auto;
}

}
/*/////////////// creation_sur_mesure.phtml (END) ///////////////////*/
