/* CUSTOM CSS */

/*
 *
 * INITIALISATION 
 *
 */

html, body{
    width : 100%;
    overflow: hidden;
    overflow-y: auto;
}

header .elementor-widget-image a img[src$=".svg"]{
    width: auto;
}

footer .elementor-widget-image a img[src$=".svg"]{
    width: auto;
}

/*
 *
 * GENERAL 
 *
 */
 

 /*
 *
 * HEADER 
 *
 */

 #main-header{
    position: fixed;
    transition: all .3s ease;
    top: 0;
    left: 0;
    z-index: 10;
 }

 /* STICKED */
#main-header.sticked{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
	transform : translateY(-100%);
    background-color : var(--e-global-color-accent);
	transition : transform .3s ease;
}

#main-header.sticked.active{
	transform : translateY(0);
}

.home #main-header:not(.sticked){
    background-color : transparent;
}

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

    .d-mobile{
        display: flex!important;
    }

    #main-header{
        align-items: center;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
   
 }

 .dark-bg a:not([class^="btn"]){
    color: var(--beige)!important;
 }