                            /*  SPINNER */
 
#spinner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#spinner img {
    width: 200px;
    background: #f0f0f0 !important;
}

.loader {
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
  
 @keyframes split {
   0% , 25%{ width: 64px }
   100%{ width: 148px }
  }
    

.fade-in {
    opacity: 0;
    transition: opacity 1s ease, transform 1s ease;
}

.show-content {
    opacity: 1;
    transition: 1s;
}  

                        /* FIN SPINNER */


                        /* BG SITE */
*{
    font-family: "Montserrat", sans-serif !important;
    transition: 1s;
}

body{
    background-color: #f8f8f8;
    height: 100%;
    font-family: system-ui;
    background-color: white;
    transition: 1s;
}
.bg-site{
    background-image: url('../IMAGES/maison.jpg');
    /*background-image: url('../IMAGES/EL1.gif');*/
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 90vh;
    background-repeat: no-repeat;
    position: relative;
}
header{
    background-color: rgba(0, 0, 0, 0.299);
    height: 100%;
}

                        /* FIN BG SITE */

                        /* NAV */
.bg-nav-dropdown{
    display: flex;
    justify-content: flex-end !important;
    width: 100% !important;
}
#main {
    position: relative;
    list-style: none;
    font-weight: 400;
    font-size: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "nav-li-1 nav-li-2 nav-li-3";
    padding: 10px;
    color: black;
    border-bottom-left-radius: 10px;
    text-align: center;
    column-gap: 6vw;
}
@media screen and (min-width: 1800px){
   #main{
    padding: 40px 0px 0px 0px;
   }
}
.nav-li-1{
    grid-area: nav-li-1;
}
.nav-li-1 a:hover, .drop a:hover{
    color: rgba(255, 177, 66, 1.0) !important;
    font-size: 20px;
    /*border-bottom: 2px solid rgba(255, 177, 66, 1.0);*/
    /*padding-bottom: 7px;*/
    transition: all 0.2s;
    /*padding: 0px 10px 7px 10px;*/
    width: fit-content !important;
}
.nav-li-2{
    grid-area: nav-li-2;
}
.nav-li-3{
    grid-area: nav-li-3;
}

#main li{
    font-size: 18px;
    letter-spacing: 3px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    z-index: 5;
    color: white;
}
#main li a{
    text-decoration: none;
    color: white;
}
#main .nav-li-1, .nav-li-2{
    padding: 30% 0px 0px 0px;
}
.nav-li-img img{
    width: 12.5vw !important;
    position: fixed;
    right: 10px;
    top: -20px;
    z-index: 100;
}
@media screen and (min-width: 1170px) and (max-width: 1400px){
    .nav-li-img img{
        width: 14vw !important;
    }
}
@media screen and (min-width: 1050px) and (max-width: 1170px){
    .nav-li-img img{
        width: 15.5vw !important;
    }
}
@media screen and (max-width: 1050px) and (min-width: 900px){
    .nav-li-img img{
        width: 18vw !important;
    }
}
@media screen and (max-width: 900px){
    .nav-li-img img{
        width: 22vw !important;
    }
}

li {
    margin: 0;
}

.drop {
    overflow: hidden;
    list-style: none;
    position: absolute;
    padding: 0;
    width: fit-content;
    left: 0;
    top: 100%;
}

.drop div {
    transform: translate(0, -100%);
    transition: all 0.5s 0.1s;
    position: relative;
    width: 100%;
    color: white;
}
.drop .drop-li-1 a, .drop .drop-li-2 a, .drop .drop-li-3 a{
    color: white !important;
}
.drop-li-1, .drop-li-2, .drop-li-3{
    background-color: rgba(255, 255, 255, 0.2);
}
.drop .drop-li-1{
    padding: 30px 0px 30px 0px;
}
.drop .drop-li-2{
    padding: 30px 0px 30px 0px;
}
.drop .drop-li-3{
    padding: 30px 0px 30px 0px;
}

.drop li {
    display: block;
    padding: 0;
    width: 100%;
}

#marker {
    height: 100%;
    position: absolute;
    bottom: 0;
    width: 70px !important;
    text-align: center !important;
    z-index: 2;
    transition: all 0.35s;
}

/* Effets au survol */
#main li:nth-child(1):hover ul div {
    transform: translate(0, 0);
}
#main li:nth-child(1):hover ~ #marker { 
    transform: translate(0px, 0);
}
#main li:nth-child(2):hover ul div {
    transform: translate(0, 0);
}
#main li:nth-child(2):hover ~ #marker {
    transform: translate(120px, 0);
}

#main li:nth-child(3):hover ul div {
    transform: translate(0, 0);
}
#main li:nth-child(3):hover ~ #marker {
    transform: translate(240px, 0);
}

#main li:nth-child(4):hover ul div {
    transform: translate(0, 0);
}
#main li:nth-child(4):hover ~ #marker {
    transform: translate(360px, 0);
}


    /* Début animtion dropdown menu */
    .bg-button-dropdown {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }
    
    /* Button component */
    .button-dropdown {
    position: relative;
    /*padding: 1em 1.5em;*/
    padding: 10px 10px 10px 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    font-size: 18px;
    }
    
    /* Effet type2 */

    .button-dropdown.type2::after,
    .button-dropdown.type2::before {
    /*content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: 20%;
    width: 60%;
    height: 2px;
    background-color: rgba(255, 177, 66, 1.0);
    background-color: red;
    transition: all 0.3s ease;
    transform: scale(0.85);*/
    }

    .button-dropdown.type2:hover::before {
    top: 0;
    transform: scale(1);
    width: 60% !important;
    }

    .button-dropdown.type2:hover::after {
    transform: scale(1);
    width: 60% !important;
    }
                        /* FIN NAV */



                        
	            /* FOOTER */
    
.footer{
    height: 20vh;
}	

.copy-footer {
    background-color: #ffb142;
    /*background-color: rgba(176, 142, 107, 1.0);
    background-color: rgba(0, 0, 0, 1.0);*/
    color: black;
    text-align: center;
    padding: 20px 0px 5px 0px;
}