/*
* HEADER
*/

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 48vw;
    height: 190px;
    overflow: hidden;
    background-color: white;
    border-bottom: solid 0.5px black;
    padding: 30px;
    z-index: 3;

}

.header_left_side {
    position: fixed;
    width: 170px;
}

.header_logo {
    width: 7em;
    padding-bottom: 2em;
}

.precommand_link {
    position: relative;
    font-family: "BG_Regular";
    font-size: 18px;
    text-transform: uppercase;
    border: solid 1px black;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: black;
}

.precommand_link:hover {
    background-color: black;
    color: white;
}

.header_right_side {
    position: fixed;
    top: 0;
    right: 0;
    font-family: "BG_Regular";
    padding: 30px;
    font-size: 16px;
    text-transform: uppercase;
    text-align: right;
    overflow: hidden;
    transition: right 0.2s ease-in-out;
    z-index: 4;

}

.menu_links {

    color: black;
    padding-bottom: 1px;


}

.link {
    color: black;
    display: inline-block;

}

.catalogue_link {
    display: none;
}

.link:hover {
    background-color: black;
    color: white;
}

.logo_insta {
    margin-top: 3px;
    width: 1em;
    display: inline-block;

}

.header_aside_right_background {
    display: none;
    position: fixed;
    top: 79px;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: transparent;
    z-index: 3;
}



/*
*MEDIA SCREEN
*/

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

.precommand_link {
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
}


 }


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

    .header {
        width: 100vw;
        height: 80px;
        padding-top: 20px;
    }

    .header_logo {
        width: 6em;
        padding-bottom: 0;
    }

    .header_right_side {
        display: none;
        top: 79px;
        padding: 0;
        width: 100vw;
        margin: 0;
        border-bottom: 1px solid black;
    }

    .precommand_link {
        display: none;
    }

    .show { 
        display: block;
    }

    .show_background {
        display: block;
    }

    .menu_links {

        padding: 4px;
        border-top: 1px solid white;
        border-right: 1px solid white;
        border-left: 1px solid white;
        background-color: black;

    }

    .catalogue_link {
        display: block;
    }

    .link {
        color: white;
        font-size: 30px;
        padding-right: 12px;
        display: block;

    }

    .menu_links:hover {
        background-color: white;
        color: black;
        border-top: 1px solid black;
        border-right: 1px solid black;
        border-left: 1px solid black;
    }

    .menu_links:hover a {
        background-color: white;
        color: black;

    }


    .insta_link {

        display: none;

    }

}


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


    .header_logo {
        width: 5em;
    }

}