:root {
    --unit: 73px;
    --um: 17px;
    --rn-width6: calc(2 * var(--unit) + 2 * var(--um));
    --rn-width4: calc(3 * var(--unit) + 4 * var(--um));
    --rn-width3: calc(4 * var(--unit) + 6 * var(--um));
    --rn-width2: calc(6 * var(--unit) + 10 * var(--um));
    --rn-width1: calc(12 * var(--unit) + 22 * var(--um));

    --title-size: 40px;
    --sous-title-size: 17px;

    --veryLightGray: #F2F2F2;
    --LightGray: #DADADA;
    --Gray: #9D9D9C;
    --hardGray: #999999;
    --yellow: #EC6528;
    --Green: #646B52;
}

body {
    margin: 0;
    padding: 0;
}


@font-face {
    font-family: "ReadLight";
    src: url("../../assets/fonts/ReadLight.woff2") format("truetype");
}
@font-face {
    font-family: "ReadMedium";
    src: url("../../assets/fonts/Read-Medium.woff2") format("truetype");
}
@font-face {
    font-family: "DaciaBlock";
    src: url("../../assets/fonts/DaciaBlock.otf") format("truetype");
}
@font-face {
    font-family: "DaciaBlockBold";
    src: url("../../assets/fonts/DaciaBlockBold.otf") format("truetype");
}
@font-face {
    font-family: "DaciaBlockExtended";
    src: url("../../assets/fonts/DaciaBlockExtended.otf") format("truetype");
}
@font-face {
    font-family: "DaciaBlockExtendedBold";
    src: url("../../assets/fonts/DaciaBlockExtendedBold.otf") format("truetype");
}
@font-face {
    font-family: "DaciaBlockExtendedLight";
    src: url("../../assets/fonts/DaciaBlockExtendedLight.otf") format("truetype");
}
@font-face {
    font-family: "DaciaBlockLight";
    src: url("../../assets/fonts/DaciaBlockLight.otf") format("truetype");
}


h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
    line-height: normal;
    color: inherit;
    text-align: inherit;
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}
a{
    text-decoration: none;
}
.container, .containerGray, .containerGreen{
    width: 100%;
    margin-bottom: 40px;
}
.containerSwiper {
    width: 100%;
    height: 606px;
    overflow: hidden; 
    transition: height 0.5s ease; 
}
.containerGray{
    background-color: var(--veryLightGray);
}
.containerGreen{
    background-color: var(--Green);
    color: white;
}


/*/------------------ alert ------------/*/
.alert.success {
    background: #5b614b;
    background: -webkit-linear-gradient(to right, #646B52, #5b614b);
    background: linear-gradient(to right top, #646b52f2, #5b614b85);
}
.alert.danger {
    background: #614b4b;
    background: -webkit-linear-gradient(to right, #6b5252, #614b4b);
    background: linear-gradient(to right top, #6b5252, #614b4b7d);
}
.alert {
    max-width: 320px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 0.5rem;
    padding: 10px;
    color: rgb(107, 114, 128);
    box-shadow: 0px 87px 78px -39px rgba(0,0,0,0.4);
    position: fixed;
    right: 6px;
    top: 8%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 100;
}
.alert.show {
    opacity: 1;
    transform: translateX(0);
}
.alert.hide {
    opacity: 0;
    transform: translateX(100%);
}
.content {
    display: flex;
    flex-direction: column;
}  
.alert .content .title {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: left;
    font-family: 'DaciaBlock';
    color: rgb(255, 255, 255);
}  
.alert .content .desc {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-family: 'ReadLight';
    color: rgb(202, 200, 200);
}

/*/------------------ loader ------------/*/
.swiper-lazy-preloader.formloader {
    left: 38%;
    bottom: 25px;
    top: auto;
}
.swiper-lazy-preloader {
    position: absolute;
    border: none;
    display: block;
    --height-of-loader: 4px;
    --loader-color: #646B52;
    width: 100px;
    left: 47%;
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: rgba(0,0,0,0.2);
}  
.swiper-lazy-preloader::before {
    content: "";
    position: absolute;
    background: var(--loader-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;
}  
@keyframes moving {
    50% {
      width: 100%;
    }
  
    100% {
      width: 0;
      right: 0;
      left: unset;
    }
}       
/*/------------------ loader end ------------/*/

/*/--------- Header (titles) -------/*/
.container_header{
    padding: 120px 0;
    background-color: var(--veryLightGray);
    margin: 2px 0;
}
.container_header .desc{
    font-family: 'ReadMedium';
    font-size: 16px;
    width: 65%;
    margin: 20px auto;
    text-align: center;
}
/*/--------- Header (titles) end -------/*/

/*/--------- page titles -------/*/
.title_zone{
    width: var(--rn-width1);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: 'DaciaBlock';
}
.title_zone .title, .title_zone .titleWithSoub, .title_zone .titleWithTopSoub{
    font-size: var(--title-size);
    text-transform: uppercase;
    text-align: center;
}
.title_zone .titleWithSoub{
    margin-bottom: 10px;
}
.title_zone .titleWithTopSoub{
    margin: 0px;
}
.title_zone .sous-title{
    font-size: var(--sous-title-size);
    margin: 0;
    text-align: center;
    margin-bottom: 2em;
    font-family: 'ReadMedium';
}
.title_zone .sous-top-title{
    color: #646B52;
    margin: 0;
    font-size: 20px;
}
/*/--------- page titles end -------/*/

/*/------------------ breadcrumb ------------/*/
.breadcrumb_Container{
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: var(--veryLightGray);
}
.breadcrumb {
    display: flex;
    height: 40px;
    width: var(--rn-width1);
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    font-family: 'ReadMedium';
}
.breadcrumb a{
    font-size: 13px;
    color: #000000;
}
.breadcrumb svg{
    width: 26px;
    height: 10px;
    color: #ff671b;
}
/*/------------------ breadcrumb end ------------/*/



@media(max-width: 1225px){
    :root {
        --unit: 52px;
        --um: 10px;
        --title-size: 33px;
        --sous-title-size: 15px;
    }

    /* Header (titles) */
    .container_header .desc {
        width: 65%;
    }
    .container_header {
        padding: 60px 0;
    }
    /* Header (titles) */

    /* header carousel */
    .zonetext p {
        font-size: 30px;
        margin: 10px 0;
    }
    .zonetext .buttons .btn_decouvrez, .zonetext .buttons .btn_essai {
        height: 38px;
    }
    .custom-swiper-button-next, .custom-swiper-button-prev {
        width: 34px;
        height: 75px;
    }
    /*  header carousel end*/
    
    /* alert */
    .success .content .title {
        font-size: 12px;
        text-align: left;
    }
    .desc {
        font-size: 11px;
        line-height: 14px;
    }
    .success.show {
        width: 23% !important;
    }
    /* alert end */
    
    .containerSwiper {
        height: 430px;
    }
    .swiper-lazy-preloader.formloader {
        bottom: 0px;
    }
}
@media(max-width: 846px){
    :root {
        --unit: 42px;
        --um: 10px;
        --title-size: 25px;
        --sous-title-size: 12px;
    }
    .title_zone .sous-top-title {
        font-size: 18px;
    }

    .container, .containerGray, .containerGreen {
        margin-bottom: 30px !important;
    }

    /* Header (titles) */
    .container_header .desc {
        width: 75%;
        font-size: 13px;
    }
    .container_header {
        padding: 45px 0;
    }
    /* Header (titles) end*/

    /* header carousel */
    .zonetext p {
        font-size: 24px;
        margin: 10px 30px;
    }
    .zonetext .buttons {
        /*margin-left: 30px;*/
        gap: 10px;
    }
    .zonetext .buttons .btn_decouvrez, .zonetext .buttons .btn_essai {
        height: 34px;
        width: 141px;
        font-size: 12px;
    }
    .custom-swiper-button-next, .custom-swiper-button-prev {
        width: 25px;
        height: 65px;
    }
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    .swiper-pagination-bullet-active::after {
        width: 6px;
        height: 6px;
    }
    /*  header carousel end */

    /*--- breadcrumb ---*/
    .breadcrumb a {
        font-size: 11.5px;
    }
    /*--- breadcrumb end ---*/
    
    /* alert */
    .success.show {
        width: 30% !important;
    }
    .alert {
        top: 10%;
    }
    /* alert end */


    .containerSwiper {
        height: 430px;
    }
}
@media(max-width: 728px){
    :root {
        --rn-width1: 90%;

        --title-size: 20px;
        --sous-title-size: 9px;
    }

    .container, .containerGray, .containerGreen {
        margin-bottom: 30px !important;
    }

    /* header carousel */
    .swiper-slide {
        align-items: flex-end;
    }
    .zonetext .buttons .btn_decouvrez, .zonetext .buttons .btn_essai {
        width: 100%;
    }
    .zonetext {
        margin: 40px 0;
    }
    .zonetext p {
        width: 82%;
        font-size: 24px;
        margin: 0px;
    }
    .zonetext .buttons {
        margin: 0;
    }
    .custom-swiper-button-next, .custom-swiper-button-prev{
        display: none;
    }
    /*  header carousel end */
}
@media(max-width: 440px){
    /* Header (titles) */
    .container_header .desc {
        width: 95%;
        font-size: 12px;
    }
    /*--- Header (titles) end ---*/

    /*--- breadcrumb ---*/
    .breadcrumb a {
        font-size: 10.5px;
    }
    /*--- breadcrumb end ---*/
    
    /* alert */
    .success.show {
        width: 100% !important;
    }
    /* alert end */

    .containerSwiper {
        height: 592px;
    }
    .swiper-lazy-preloader.formloader {
        position: relative;
        margin: 20px auto;
        left: 0;
        bottom: -10px;
    }
}

@media(max-width: 380px){
    .containerSwiper {
        height: 522px;
    }
}
