/*******  STYLES POUR TOUTE L A PAGE ********/
*, ::before, ::after{
    box-sizing: border-box;
}

/* Les couleurs par défaut */
:root {
    --color-default: rgb(45, 44, 44);
    --color-primary: white;
    --color-secondary: rgb(54, 55, 56);
    }

/* Scroll lente */
:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
        Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background: var(--color-default);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 0px 20px var(--color-default);
    transition: all 0.4s;
}

.scroll-top:hover {
    background: rgb(151, 116, 0);
    color: var(--color-default);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 90px;
}  

/*--------------------------------------------------------------
        Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
}
  
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: rgb(151, 116, 0) transparent rgb(151, 116, 0) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}
  
@keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
}
  
/* Style pour cacher et afficher des éléments */

.lien,.lien:hover{
    color : var(--color-primary);
    text-decoration : none;
}

.lien::after {
    content: ' \00bb ';
    position: relative;
    opacity: 0;
    z-index: 1;
    margin-left: 0%;
    transition: 0.3s ease-in-out;
    color: var(--color-primary);
    font-size: 20px;
    font-weight:small;
}
.lien:hover::after {
    opacity: 1;
    margin-left: 5%;
    color:var(--color-primary);
}

.fade-in {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.transition-margin {
    transition: margin-top 0.5s ease-in-out;
}

button{
    cursor: pointer;
}

.toupper{
    text-transform: uppercase;
}

    /********** STYLES HEADER ********** */

.header-backed{
    /* background: url(images/bg_dark.png); */
    /* background: transparent; */
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%; */
    background: var(--color-default);
}

header {
    padding-top: 6px;
    padding-bottom: 6px;
    position: relative;
    z-index: 99;
    height: 131px;
}

.logo:hover{
    transform: scale(1.1,1.1);
    transition: transform 0.3s ease-in-out;
}

.logo div img{
    width: 60%;
}
.header-Top{
    position: relative;
}

.search-top {
    padding-bottom: 10px;
    position: absolute;
    top: 33%;
}

.search-top, .search-top {
    width: 23%;
    right: 1%;
}

.new-header.menu-row {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu-row ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
    width: 41%;
}
.menu-row ul li {
    display: inline-block;
    position: relative;
}

.lang-switch {
    padding: 0;
    margin: 0;
    position: relative;
    left: -20% !important;
    padding: 1% 0;
    border: thin solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 15px;
}
.lang-switch a{
    display: flex;
    padding: 0 15px;
    font-size: 16px;
    cursor: pointer;
    color: white; 
    font-weight: 500; 
    font-family: Montserrat-Medium;
}

.lang-switch:hover{
    transform: scale(1.1, 1.1);
}

.last-dropbtn,.dropbtn{
    background: transparent;
    border: none;
    padding: 2px 10px;
    cursor: pointer;
    color: var(--color-primary);
    /* font-size: medium; */
}

.last-dropbtn:hover, .dropbtn:hover{
    border-bottom: thin solid var(--color-primary);
}
    
.dropdown-content {
    display: none;
    position: absolute;
    background: var(--color-default);
    /* background: url(images/bg_dark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%; */
    color: var(--color-primary);
    box-shadow: 0px 0px 16px var(--color-default);
    border-radius: 3px;
    min-width: 250px;
    margin-top: 2px;
    z-index: 9999;
}

.dropdown-content a {
    color: var(--color-primary);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    width: 100%;
}

.dropdown-content a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    border-radius: 3px;
    color: var(--color-primary);
}

a, a:hover{
    text-decoration: none;
    cursor: pointer;
    color: var(--color-default);
}

ul li, li:hover {
    list-style: none;
}


.new-header .logo {
    margin-left: 3% !important;
    margin-right: 3% !important;
}

.headerMenutwo {
    width: 41% !important;
    text-align: left;
    padding-right: 14%;

}

img, svg {
    vertical-align: middle;
}

#div_form{
    margin-top: -40px;
}

.search-top .search-li {
    width: 100%;
}
.search-top .search-li {
    margin-right: 15px;
    min-height: 23px;
    text-align: right;
}

.search-top .active {
    top: 31%;
}
.form-control.active {
    position: relative;
    z-index: 999;
    padding: 10px;
    border: none;
    background: transparent !important;
}
.form-control.active:focus{
    border: none;
    background: transparent;
    box-shadow: 0px 0px 2px transparent;
}

.search-top .search-li .search-form .form-control.active {
    opacity: 1;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in;
    color: var(--color-primary);
}

.search-form form.active {
    border-bottom: 2px solid  var(--color-primary) ;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    right: auto;
    margin-top: 31px;
    width: 100%;
    min-width: auto;
}

.million{
    color: black;
    float: right;
    margin-top: -26%;
    margin-right: -7%;
}
.yard{
    color: var(--color-primary);
    float: right;
    margin-top: -11%;
    margin-right: 34%;
}
#btnSubmit{
    border: none;
    background: rgba(41, 41, 41, 0.72);    
}

    /* ***** STYLES DU CONTENU Où IL Y A LA VIDEO */

.banner .video-banner {
    overflow: hidden;
    margin-top: 130px;
}

.home .banner .video-banner {
    overflow: hidden;
}
.banner .video-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

.banner .video-banner video {
    width: 100%;
}

video {
    object-fit: contain;
    overflow-clip-margin: content-box;
    overflow: clip;
}

/* STYLES  DU CONTENU AVEC LES SELECT RECHERCHE */

.banner .banner-content{
    padding-left:32px;;
    margin-top: 400px;
    padding-right:32px
}
.banner .banner-content .container{
    padding-left:0;
    padding-right:0;
}
.home-filter{
    background-color:rgba(41,41,41,0.72);
    padding:22px 39px;margin-top:100px;
}
@media(max-width:991.98px){
    .home-filter .black-button{
        width:212px;
        height:57px;
    }
}
@media(max-width:1600px){
    .home-filter{
        padding:15px 25px;
        margin-top:80px;

    }
    .home-filter .black-button{
        font-size:14px;
        padding:20px 30px;

    }
}
@media(max-width:1600px) and (max-width:1280.98px){
    .home-filter .black-button{
        padding:12px 24px
    }
}
@media(max-width:1600px) and (min-width:1280px) and (max-width:1600px){
    .home-filter .black-button{
        padding:13px 25px;
        height:50px
    }
}
@media(max-width:1600px) and (min-width:1201px) and (max-width:1299px){
    .home-filter .black-button{
        padding:13px 18px;
        font-size:12px;

    }
}
@media(max-width:1600px) and (max-width:991.98px){
    .home-filter .black-button{
        width:212px;
        height:57px
    }
}
@media(max-width:1600px) and (min-width:1800px){
    .home-filter .black-button{
        width:100%;
    }
}
@media(max-width:991.98px){
    .home-filter{
        opacity:0;
        position:absolute;
        bottom:22px;
        left:0;
        right:0;
        margin:auto 32px;
        padding:24px 24px;
        height:0;
        -webkit-transition:height .8s 0,opacity .5s .5s;
        transition:height .8s 0,opacity .5s .5s;
        z-index:-1;
        overflow-y:hidden;
    }
}
.home-filter .select-hidden{
    display:none;
    visibility:hidden;
    padding-right:10px;

}
.home-filter .select-styled{
    top:0;right:0;
    bottom:0;
    left:0;
    padding:8px 0;
    padding-bottom:0;
    color:#ffff;
    font-size:16px;
    font-family:'Montserrat-Regular';
    font-weight:400;
    cursor:pointer
}
@media(min-width:1800px){
    .home-filter .select-styled{
        font-size:19px;
        font-family:'Montserrat-Regular';
        font-weight:400
    }
}
@media(max-width:1600px){
    .home-filter .select-styled{
        font-size:14px;padding:0;
    }
}
@media(max-width:991.98px){
    .home-filter .select-styled{
        padding-bottom:16px;
        border-bottom:1px solid var(--color-primary);
        border-radius:0;
        font-size:16px;
    }
}
.home-filter .select-styled::after{
    content:"";
    width:16px;
    height:12px;
    background:url("../images/dropdown-arrow.svg") no-repeat;
    position:absolute;
    top:3px;
    right:10px
}

@media(max-width:991.98px){
    .home-filter .select-styled::after{
        background:url("../images/dropdown-arrow.svg") no-repeat
    }
}
.home-filter .select-styled:hover{
    background-color:transparent;
}
.home-filter .select-styled:active:after,.home-filter .select-styled.active:after{
    top:8px;
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg)
}
.home-filter .select-options{
    /* display:none; */
    bottom: -220px;
    position:absolute;
    right:0;left:0;
    z-index:999;
    margin:0;
    padding:0;
    list-style:none;
    background: var(--color-default);
    /* background: url(images/bg_dark.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%; */
    color: var(--color-primary);
    box-shadow: 0px 8px 16px 0px var(--color-secondary);
    padding-right:0;
    max-height:194px;
    overflow-y:auto;
    scrollbar-width:thin;
    scrollbar-color:var(--color-primary) var(--color-default);
    border-radius: 3px;

}
@media(max-width:1025px){
    .home-filter .select-options{
        bottom:-100%;
    }
}
.home-filter .select-options li{
    color: var(--color-primary);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media(min-width:1800px){
    .home-filter .select-options li{
        padding:12px 34px;
        font-size:18px;
    }
}

.home-filter .select-options li:hover,.home-filter .select-options li.is-selected{
    color:#ffff;
    background-color:var(--color-default)
}

.home-filter .select-options li[rel="hide"]{
    display:none
}

.home-filter .select-options li:nth-child(2){
    border-top:0
}

.home-filter .select-options::-webkit-scrollbar{
    width:10px;
    position:absolute;
    border-radius:5px
}

.home-filter .select-options::-webkit-scrollbar-track{
    background:transparent;
    border-radius:5px
}

.home-filter .select-options::-webkit-scrollbar-thumb{
    background:#000;
    border-radius:5px
}

.home-filter .select-options::-webkit-scrollbar-thumb:hover{
    background:#000}

.home-filter form{
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center}

@media(max-width:991.98px){
    .home-filter form{
    -webkit-transition:all 1s ease-in;
    transition:all 1s ease-in}
}

.home-filter form label{
    display:block;
    color:#bab8b8;
    text-transform:uppercase;
    font-size:15px;
    line-height:22px;
    font-family:'Montserrat-Regular';
    font-weight:400;
    margin-bottom:20px}

@media(max-width:1600px){
    .home-filter form label{
        font-size:12px;
        margin-bottom:10px
    }
}

@media(max-width:991.98px){
    .home-filter form label{
        font-size:14px;
        color:#ddd
    }
}

.home-filter form .form-control,.home-filter form select{
    background-color:transparent;
    color:#ffff;
    font-size:16px;
    border:0;
    -webkit-box-shadow:none;
    box-shadow:none;
    outline:0;
    background-color:#292929;
    padding-left:0;
    padding-bottom:0;
    position:relative;
    cursor:pointer}

@media(min-width:1800px){
    .home-filter form .form-control,.home-filter form select{
        font-size:15px;
        font-family:'Montserrat-Regular';
        font-weight:400
    }
}

@media(max-width:1600px){
    .home-filter form .form-control,.home-filter form select{
        font-size:14px
    }
}

@media(max-width:991.98px){
    .home-filter form .form-control,.home-filter form select{
        padding-bottom:10px;
        border-bottom:1px solid var(--color-primary);
        border-radius:0
    }
}

.home-filter form .select-wrapper{
    position:relative;
    z-index:2;
}
.home-filter form .form-group{
    position:relative
}

.home-filter form .form-group:after{
    content:"";
    position:absolute;
    width:1px;
    height:56px;
    right:-2%;
    top:0;
    bottom:0;
    margin:auto;
    background-color:#bab8b8
}

@media(min-width:1280px) and (max-width:1600px){
    .home-filter form .form-group:after{
        height:50px
    }
}

@media(max-width:991.98px){
    .home-filter form .form-group:after{
    display:none}
}

.home-filter form .form-group:last-child{
    border-right:0
}

.home-filter form .form-group:last-child:after{
    display:none
}

@media(max-width:991.98px){
    .home-filter form .form-group{
        border:0;
        margin-bottom:30px
    }
}

@media(min-width:1300px){
    .home-filter form .button-block{
        width:19.666667%
    }
}

@media(max-width:991.98px){
    .home-filter form .button-block{
        margin-bottom:0;
    }
}

.form-close{
    display:none;
}

@media(max-width:991.98px){
    .home-filter.on{
        height:435px;
        z-index:1;
        opacity:1;
        -webkit-transition:height .8s 0,opacity .5s .5s;
        transition:height .8s 0,opacity .5s .5s;
        bottom:-3px;
        backdrop-filter:blur(20px);
        -webkit-backdrop-filter:blur(20px);
    }

.home-filter.on form{
    -webkit-transition:all 2s ease-in;
    transition:all 2s ease-in}
}

@media(max-width:991.98px){
    .home-filter.on .form-close svg{
        height:16px;
        width:16px;
        display:none;
    }
}

@media(max-width:991.98px){
    .home-filter.on .form-close{
        display:inline-block;
        margin-left:20px;
        margin-top:22px;margin-right:0;
        background:url(../images/filter-close-mob.svg) no-repeat center center;
        width:14px;height:14px;
    }
}

.black-button {
    background: var(--color-default);
    /* background:url(images/bg_dark.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; */
    padding: 20px 24px;
    color: var(--color-primary);
    font-family: Montserrat-Bold !important;
    border: 0;
    outline: 0;
    -webkit-box-shadow: inset 0 0 var(--color-default);
    box-shadow: inset 0 0 var(--color-default);
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
    width: auto;
}

.black-button, .btn-white {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
}

.black-button:hover{
    background: var(--color-primary);
    color: var(--color-default);
    border: thin solid var(--color-default);
    transition: all 0.3s ease-in;
}

.show-up {
    opacity: 1;
    visibility: visible;
    display: block;
    transition: all 0.5s ease-in-out;
}

.show-off {
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: all 0.5s ease-in-out;
}

/* Par défaut, le trait de l'icône est en white */
.arrow-right path {
    stroke: white;
    transition: stroke 0.3s ease;
}

/* Au survol de .button-flex, change la couleur du texte et du trait */
.button-flex:hover .discovery {
    color: rgb(45, 44, 44);
}

.button-flex:hover .arrow-right path {
    stroke: rgb(45, 44, 44);
}

#div_head{
    /* background: url(images/bg_dark.png) no-repeat; */
    background: var(--color-default);
}

#downIndication img{
    position: absolute;
    margin: 1% 23%;
    animation: upNdown 1s ease-out 0s infinite;
}

@keyframes upNdown {
    0%{
        margin-top: 1%;
    }
    50%{
        margin-top: 3%;
    }
    100%{
        margin-top: 1.1%;
    }
}

/* ****************** STYLES RESPONSIVE ************* */

@media screen and (max-width: 1330px) {
    #div_head{
        padding-bottom: 5px;
    }
}
            /************* HEADER ***********/
#menu_mobile{
    position: absolute;
    top: 35px;
    opacity: 0;
    left: 10%;
    display: none;
    visibility: hidden;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}
#close_nav:hover, #menu_mobile:hover{
    transform: scale(1.1,1.1);
}

#nav_menu{
    display: none;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    /* background: url(images/bg_dark.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat; */
    background: var(--color-default);
    box-shadow: 0px 0px 20px var(--color-default);
    -webkit-overflow-scrolling: touch;
    transition: all 0.5s ease-in-out;
    animation: show_nav 0.5s ease-in-out;
}

@keyframes show_nav {
    0%{
        width: 10%;
        opacity: 0;
    }
    100%{
        width: 50%;
        opacity: 1;
    }
}

#nav_logo{
    width:100px;
    height:auto;
}

.nav_dropdown-content {
    color: var(--color-primary);
    border-radius: 3px;
    margin-top: 2px;
    margin-left: 3%;
    z-index: 9999;
}

.nav_dropdown-content a {
    color: var(--color-primary);
    border-top: 0.5px solid var(--color-default);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    width: 95%;
}
.nav_dropdown-content a:last-child{
    border-bottom: 0.5px solid var(--color-default);
}

.nav_dropdown-content a:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.headerMenu{
    display: flex;
    flex-direction: row;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
    header{
        padding-bottom: 10px;
    }

    .logo div img{
        width: 60%;
    }

    .lang-switch{
        left: 0%;
    }
    .headerMenu, .headerMenutwo{
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 991.98px) {
    .header{
        height: 80px;
        color: #FFD700;
        color: hsl(51, 100%, 50%);
        color: rgb(151, 115, 23);
    }
    .banner .video-banner {
        margin-top: 79.98px;
    }
    #menu_mobile{     
        opacity: 1;
        visibility: visible;
        display: block;
        top: 20px;
        transition: all 0.3s ease-in-out;
    }
    .menu-row ul li{
        display: none;
    }
    .logo div img{
        width: auto;
        height: 70px;
    }
    .search-form form.active {
        position: fixed;
        width: 80%;
        left: 10%;
        top: 55px;
        background-color: var(--color-default);
        box-shadow: 0px 0px 3px var(--color-primary);
    }
    #btnSubmit{
        background-color: var(--color-primary);
        margin-right: 4px;
    }
    #btnSubmit path{
        stroke: var(--color-default);
        transition: stroke 0.3s ease;
    }

    #nav_menu{
        width: 70%;
        transition: all 0.5s ease-in-out;
        animation: show_medium_nav 0.5s ease-in-out;
    }
    
    @keyframes show_medium_nav {
        0%{
            width: 20%;
            opacity: 0;
        }
        100%{
            width: 70%;
            opacity: 1;
        }
    }
}

@media screen and (max-width: 600px) {
    #nav_menu{
        width: 100%;
        transition: all 0.5s ease-in-out;
        animation: show_small_nav 0.5s ease-in-out;
    }
    
    @keyframes show_small_nav {
        0%{
            width: 40%;
            opacity: 0;
        }
        100%{
            width: 100%;
            opacity: 1;
        }
    }
}

@media screen and (max-width: 300px) {
    #nav_logo{
        width: 70px;
    }
}



/************** STYLES CAREERS **********/

#careers_head{
    background: url(../images/dark.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#careersHeaderContent{
    width: 35%; 
    margin: auto;
    padding-bottom: 2%;
}

.voir{
    font-weight: 400;
    line-height: 19px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-family: Montserrat-Regular;
    overflow: hidden;
    z-index: 1;
    outline: 0;
    padding: 15px 25px;
    background: 0 0;
    border: 1px solid var(--color-primary);
    color:var(--color-primary);
    transition: all 0.3s ease-in-out;
    -webkit-animation: 1s ease-in both fadeIn;
    animation: 1s ease-in both fadeIn;
}

.voir:hover{
    color: #000;
    background: white;
    border: 1px solid #000;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (max-width: 991.98px) {
    #careers_head{
        background: url(images/dark.jpg);
        background-position: center;
        background-size: 200% 100%;
        background-repeat: no-repeat;
    }
    
    #careersHeaderContent{
        width: 95%; 
    }

}





/************** STYLES SIGNATURE QUALITY **********/

#signature_header{
    height: 650px;
    background: url(../images/rayure.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

#signatureHeaderContent{
    width: 70%; 
    margin: auto;
    padding-bottom: 2%;
}
.span {
    font-size: 30px;
    font-family: 'Montserrat-SemiBold';
    color: #302c2859;
    background-image: -webkit-linear-gradient(90deg, rgba(48, 44, 40, 0.35), #bd9a7d);
    background-clip: text;
    -webkit-background-clip: text;
    line-height: normal;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-right: 15px;
}
.link{
    font-size: 16px;
    color:var(--color-primary);
    font-family: 'Montserrat-Regular';
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    color:var(--color-primary);
    border-bottom: thin solid white;
}
.link:hover{
    color: #bd9a7d;
}

#content, .content{
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    -webkit-animation: 2.5s ease-in both showContent;
    animation: 2.5s ease-in both showContent;
}

@keyframes showContent{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -40%, 0);
        transform: translate3d(0, -40%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.links{
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    -webkit-animation: 1s ease-in both showLinks;
    animation: 2s ease-in both showLinks;
    animation-delay: 2.3s;
}

@keyframes showLinks{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 70%, 0);
        transform: translate3d(0, 70%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (max-width: 1155px) and (min-width: 992px ) {
    #signature_header{
        height: 700px;
    }

}

@media screen and (max-width: 720px) {
    #signature_header{
        background-position: center;
        background-size: 150% 100%;
        background-repeat: no-repeat;
    }
    
    #signatureHeaderContent{
        width: 95%; 
    }
}

@media screen and (max-width: 525px) {
    #signature_header{
        height: 700px;
    }
}

@media screen and (max-width: 401px) {
    #content h2{
        font-size: medium;
    }
    .link{
        font-size: small;
    }
}

@media screen and (max-width: 300px) {
    #signature_header{
        height: 800px;
    }

}



/********** STYLES MILLIONAIRES YARD 1 **************/

#M-Y-1_header{
    height: 600px;
    background: url(../images/img_avec_herbes.jpg);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.content .div-comm h2 {
    font-family: chronicle display !important;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 50px;
    
}

.arrow-btn {
    background:var(--color-primary);
    border: 1px solid #000;
    border-radius: 0;
    color: #000;
    padding: 15px 25px;
    margin: 0 16px;
    font-size: 24px;
    font-weight: 500;
    font-family: Montserrat-Medium;
    width: 200px;
    transition: all 0.1s ease-in-out;
}

.arrow-btn.active, .arrow-btn:hover{
    background: #2c2c2c;
    color:var(--color-primary);
}

.anotherContent{
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    -webkit-animation: 2.5s ease-in both show;
    animation: 2.5s ease-in both show;
}

@keyframes show{
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 70%, 0);
        transform: translate3d(0, 70%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media screen and (max-width: 720px) {
    #M-Y-1_header{
        background-position: center;
        background-size: 150% 100%;
        background-repeat: no-repeat;
    }
}

.slider {
    cursor: pointer;
}

.slide-text {
    position: sticky;
    bottom: 20px;
    left: 20px;
    margin-top: -50%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 10px;
    color: var(--color-primary);
    width: 100%;
    z-index: 99;
    max-width: 300px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.text-title {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-top: 15%;
}

.text-content {
    display: block;
    opacity: 0;
    font-size: 18px;
}

.slider:hover .image-item {
    transition: all 0.2s ease-in-out;
    transform: scale(1.05, 1.05);
}

.slider:hover .slide-text {
    transform: translateY(-80%);
}

.slider:hover .text-title {
    margin-top: 5%;
    margin-bottom: 5%;
}

.slider:hover .text-content {
    opacity: 1;
}


.amenity {
	background: #ebebeb;
}

.amenity h2 {
	color: #696969;
	font-size: 32px;
	font-weight: 300;
	text-align: center;
	position: relative;
	margin: 40px 70px;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
}
.amenity h2::after {
	content: "";
	width: 100%;
	position: absolute;
	margin: 0 auto;
	height: 2px;
	border-radius: 1px;
	background: #d4d4d4;
	left: 0;
	right: 0;
	bottom: 14px;
}
.amenity h2 span {
	display: inline-block;
	padding: 0 25px;
	background:#ebebeb;
	position:relative;
	z-index:2;
}
.amenity .carousel {	
	margin: 0 auto;
	padding: 0 68px;
}
.amenity .carousel .carousel-item {
	text-align: center;
	overflow: hidden;
	height: 271px;
}
.amenity .carousel .carousel-item .img-box {
    position: relative;
    height: 270px;
    width: 250px;
	background: #fff;
    border: thin solid var(--color-default);
	box-shadow: 0 6px 20px -6px rgba(0,0,0,0.4);
    cursor: pointer;
}

.amenity .carousel .carousel-item img.show {
    margin: 0 auto;
    display: none;
    height: 0px;
    transition: opacity 0.5s ease, height 0.5s ease; /* Ajout de la transition */
}

.amenity .carousel .carousel-item .img-box:hover{
    transition: all 0.5s ease-in-out;

    img.show {
        display: block;
        height: 269px;
        opacity: 1;
    }
    
    img.hide {
        display: none;
        height: 0;
        opacity: 0;
        transition: opacity 0.5s ease, height 0.5s ease; /* Ajout de la transition */
    }
    
    .carousel-content{
        margin-top: -80%;
        .carousel-text{
            color: white;
        }
    }
} 

.amenity .carousel-control-prev, .carousel-control-next {
	width: 30px;
	background: none;
}
.amenity .carousel-indicators {
	bottom: -50px;
}
.amenity .carousel-indicators li, .carousel-indicators li.active {
	width: 10px;
	height: 10px;
	border: none;
	border-radius: 50%;
	margin: 1px 4px;
	box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
.amenity .carousel-indicators li {	
	background: #b1b0b0;
	border-color: transparent;
}
.amenity .carousel-indicators li.active {
	background: var(--color-default);
}

.amenity span.carousel-control-prev-icon {
    background-image: url("../images/arrow-left.svg");
    background-size: 50% 50%;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0px 20px 60px black;
    z-index: 9;
    margin: auto 50px;
}

.amenity span.carousel-control-next-icon {
    background-image: url("../images/arrow-right.svg");
    background-size: 50% 50%;
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0px 20px 60px black;
    z-index: 9;
    margin: auto 50px;
}

.amenity .carousel-content {
    position: sticky;
    bottom: 0px;
    left: 0px;
    margin-top: -20%;
    background: transparent;
    padding: 30px 10px;
    color: var(--color-primary);
    width: 100%;
    z-index: 99;
    max-width: 300px;
    /* transform: translateY(-50%); */
    transition: all 0.3s ease;
}

.amenity .carousel-text{
    font-size: larger;
    font-family: Chronicle display !important;
    font-weight: 500;
    color: #000;
}


    /************** STYLES DETAILS COMMUNAUTES **********/

.details #myCarousel {
    img {
        height: 400px;
        width: auto;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}

#thumbSlider {
    .carousel-inner {
        padding-left: 3rem;
        padding-right: 3rem;

        .row {
            overflow: hidden;
        }

        .thumb {
            &:hover {
                cursor: pointer;
            }

            &.active img {
                opacity: 1;
            }
        }

        img {
            height: 150px;
            margin-left: auto;
            margin-right: auto;
            display: block;
            opacity: .5;

            &:hover {
                opacity: 1;
            }
        }

        .carousel-control-prev-icon {
            left: 0;
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20fill='%23000'%20viewBox='0%200%208%208'%3E%3Cpath%20d='M5.25%200l-4%204%204%204%201.5-1.5-2.5-2.5%202.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
            background-size: 50% 50%;
            padding: 30px;
            border-radius: 50%;
            box-shadow: 0px 0px 50px black;
            z-index: 999;
        }
        
        .carousel-control-next-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20fill='%23000'%20viewBox='0%200%208%208'%3E%3Cpath%20d='M2.75%200l-1.5%201.5%202.5%202.5-2.5%202.5%201.5%201.5%204-4-4-4z'/%3E%3C/svg%3E");
            background-size: 50% 50%;
            padding: 30px;
            border-radius: 50%;
            box-shadow: 0px 0px 50px black;
            z-index: 999;
        }
    }
}


    /************* Millionnaires Yard  2*************/
    
    #M-Y-2_header{
        height: 600px;
        background: url(../images/img_batiments.jpg);
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    
    
    /************* Millionnaires Yard  Réservé *************/

    #M-Y-R_header{
        height: 600px;
        background: url(../images/img_lumineuse.jpg);
        background-position: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }