@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings:
        "wdth" 100;
}


a {
    text-decoration: none;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 80px;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    background: rgb(0, 81, 255);
    z-index: 9999;
}

.header_container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.Logo {
    font-size: 40px;
    color: white;
}

.Navigation {
    display: flex;
    width: 50%;
    justify-content: space-evenly;
}

.Navigation a {
    color: white;
    font-size: 18px;
}

.menu_burger {
    display: none;
    overflow: hidden;
}

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

    /* menu_burger */
    .menu_burger {
        position: relative;
        display: flex;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        text-align: center;
        cursor: pointer;
    }

    .menu_burger ion-icon {
        position: absolute;
        font-size: 40px;
        transition: linear .3s;
        color: white;

        transform: translateX(100px);
    }

    .menu_burger .open {
        transform: translateX(0px);
    }

    .menu_burger .close {
        opacity: 0;
    }

    .menu_active .close {
        opacity: 1;
        transition: linear .3s;
        transform: translateX(0px);
    }

    .menu_active .open {
        opacity: 0;
        transition: linear .3s;
         transform: translateX(100px);
    }

    /* /menu_burger */

    hader {
        padding: 0;
    }

    .Logo {
        padding-left: 15px;
    }

    .Navigation {
        position: absolute;
        left: 0;
        flex-direction: column;
        top: 100px;
        background: rgb(0, 81, 255);
        width: 100%;
        padding: 15px;

        visibility: hidden;
        opacity: 0;
        transition: linear .3s;
    }

    .menu_active .Navigation {
        top: 80px;
        visibility: visible;
        opacity: 1;

        transition: linear .3s;
    }

    .Navigation a {
        padding: 10px 0;
    }


}