/* @media screen and (min-width: 1400px) { */
.menu_close {
    display: none;
}
.sidebar_main {
    position: fixed;
    top: 0;
    left: 0;

    width: 17.625rem;
    height: 100%;

    background-color: var(--green-6);

    z-index: 1000;
}

.sidebar_main-navbar,
.sidebar_main-contact {
    position: absolute;
    bottom: 10.8675rem;
    right: 2.875rem;
}

.sidebar_main-contact {
    width: 9.1125rem;
    height: 1.68375rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    bottom: 4.6375rem;
}

.sidebar_main-navbar > li,
.sidebar_main-contact > li {
    padding: 1rem 0rem;
    text-align: right;
}

.sidebar_main-navbar > li > a {
    text-decoration: none;

    font-size: 1.125rem;
    color: white;
}

.sidebar_main-navbar > li > a:hover {
    text-decoration: underline;
    color: #c9f04e;
}

.menu_header {
    display: none;
}
/* } */

.sidebar_main-logo-container {
    position: absolute;
    top: 2.5rem;
    left: 45%;
    transform: translateX(-50%);

    width: calc(85% - 2rem);

    padding: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: white;
    border-radius: 0px 120px 120px 0px;
}

@media screen and (max-width: 1269px) {
    .menu_close {
        display: block;

        position: absolute;

        width: 1rem;
        height: 1rem;

        top: 1.5rem;
        right: 1.5rem;

        color: white;
        fill: white;
    }

    .sidebar_main {
        left: -100%;
        transition: 0.5s;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    }

    .menu_active {
        left: 0;
        transition: 0.5s;
    }

    .menu_header {
        padding: 1rem 1.5rem;

        background-color: var(--green-6);
        width: calc(100% - 3rem);

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header_main-logo-container {
        /* position: absolute;
        top: 2rem;
        left: 45%;
        transform: translateX(-50%); */

        width: auto;

        padding: 1rem;

        display: flex;
        align-items: center;
        justify-content: center;

        background-color: white;
        border-radius: 34px;
    }
}

@media screen and (max-width: 499px) {
    .sidebar_main {
        width: 100%;
    }

    .header_main-logo-container > img {
        width: 150px;
    }
}
