header {
    background-color: #ffffff;
    z-index: 999;
}

.header-section {
    margin: 0;
    padding: 5vh 0 2vh 0;
}

.header-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    
}

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.header-sticky + section {
    padding-top: 10vh;
}

.header-logo {
    display: flex;
}

/* MOBILE BURGER MENU - START */

.header-menu-main-mobile {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    border: 3px solid #686663;
}

.header-menu-main-mobile-burger {
    width: 36px;
    height: 5px;
    background: #686663;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.header-menu-main-mobile-burger::before,
.header-menu-main-mobile-burger::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 5px;
    background: #686663;
    border-radius: 5px;
    transition: all .5s ease-in-out;
}

.header-menu-main-mobile-burger::before {
    transform: translateY(-12px);
}

.header-menu-main-mobile-burger::after {
    transform: translateY(12px);
}

/* ANIMATION */

.header-menu-main-mobile.open .header-menu-main-mobile-burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none;
}

.header-menu-main-mobile.open .header-menu-main-mobile-burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}

.header-menu-main-mobile.open .header-menu-main-mobile-burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}

/* MOBILE BURGER MENU - END */

@media only screen and (max-width: 1024px) {
    .header-section {
       /*margin: 0 0 5vh 0;*/
       padding-top: 0;
    }

    .header-content {
        flex-direction: column-reverse;
    }

    .header-logo {
        justify-content: space-between;
        margin-top: 5vh;
    }

    .header-zone {
        display: flex;
        justify-content: flex-end;
    }

    .header-logo-img {
        align-self: flex-end;
    }
}

@media only screen and (min-width: 1024px) {
    .header-menu-main-mobile {
        display: none;
    }

    .header-logo {
        align-self: end;
    }
}

.header-logo-img svg .hl-b {
    fill: #008295;
}

.header-logo-img svg .hl-g {
    fill: #686663;
}

.header-button {
    background-image: linear-gradient(to bottom, #009cd3, #007da6);
    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
    padding: 0.2rem 1rem;
    color: white;
}
