section.home-header {
    position: relative;
}

.logo-container {
    position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    display: grid;
    place-content: center;
    right: 0;
    z-index: 2;
    padding: 2em;
}


section#identity img, .logo-container a {
    max-width: 195px;
    width: 100%;
}

.logo-container img {
    width: 195px;
}

.bottom-container {
    padding: 0 15px;
}

.header-container h1 {
    font-size: 82px;
    font-weight: 200;
    margin: 0;
    text-align: center;
    position: absolute;
    bottom: 0.45em;
    left: 0;
    color: var(--white);
    width: 100%;
}

.bottom-container {
    color: var(--white);
    display: grid;
    place-items: center;
    place-content: center stretch;
    margin: auto;
    width: 100%;
    gap: 60px;
}

.bottom-container h1 {
    position: absolute;
    bottom: 20%;
    filter: drop-shadow(0 0 0 var(--black));
    font-weight: 200;
    font-size: 35px;
}

.bottom-container ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 320px));
    place-content: stretch center;
    place-items: center;
}

.bottom-container ul li {
    display: grid;
    place-content: center;
    width: 100%;
    border-left: solid 1px var(--white);
    text-align: center;
    min-height: 76px;
}

.bottom-container ul li:last-of-type {
    border-right: solid 1px var(--white);
}

.bottom-container ul a {
    color: var(--white);
    text-decoration: none;
    text-transform: lowercase;
    font-size: 25px;
    font-weight: 300;
}

section.main_menu {
    width: 100%;
    position: absolute;
    bottom: 0%;
}

section.main_menu a {
    filter: drop-shadow(0px 0px 0px var(--black));
}


/* SLIDER HOME */

#slider {
    max-height: 100vh;
    height: 100vh;
    overflow: hidden;
}

#slider .glide__track,
#slider .glide__slides,
#slider .glide__slide {
    height: 100%;
}

#slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.header-container.bg-image {
    height: 500px;
    position: relative;
}

.header-container .deco-bottom {
    position: absolute;
    bottom: 0;
}

.header-container .deco-bottom.header_white_part {
    height: 105px;
}

.header-container .deco-bottom.header_transparent_part {
    height: 145px;
    background-position: 50% 0;
    transform: translate(0px, 40px);
}


@media(max-width: 680px) {

    #menu-toggle {
        display: flex;
        flex-flow: column;
        gap: 4px;
        position: absolute;
        right: 2em;
        top: 2em;
        z-index: 99999;
    }

    .menu-bar {
        width: 30px;
        height: 3px;
        background: var(--white);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    body.open #menu-toggle .menu-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.open #menu-toggle .menu-bar:nth-child(2) {
        opacity: 0;
    }

    body.open #menu-toggle .menu-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    section.main_menu {
        display: none;
        visibility: hidden;
    }

    body.open section.main_menu {
        display: flex;
        visibility: visible;
        position: absolute;
        inset: 0;
        background-color: rgba(122,122,122, .7);
        justify-content: center;
        align-items: start;
        padding: 5em 15px 0;
    }

    body.open .bottom-container ul {
        grid-template-columns: 1fr;
    }

    body.open .bottom-container ul li {
        border: unset !important;
    }

    .bottom-container h1 {
        bottom: 50%;
    }
}