* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* COLORS */
    --main-header-primary-color: #101010;
    --main-header-secondary-color: #151515;
    --main-header-tertiary-color: #252525;
    --main-header-quaternary-color: #aaa;
    --main-header-shadow-color: rgba(0, 0, 0, 0.9);

    /* FONT */
    --main-header-font-family: Calibri, sans-serif;

    /* MAIN HEADER */

    --main-header-menu-button-height: 40px;
    --main-header-menu-button-width: 80px;

    /* TRASITION */
    --main-header-transition: all 0.35s ease;
}

/* MAIN HEADER */
.main-header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: center;
    background: var(--main-header-primary-color);
    height: 70px;
    font-family: var(--main-header-font-family); 
    box-shadow: 0 0 10px var(--main-header-shadow-color);   
    text-transform: uppercase;
    transition: var(--main-header-transition);
}
    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1140px;
    }
        .main-header-logo {
            margin: 20px;
		
           
        }
        .main-header-menu {
            display: none;
            font-weight: 100;
            width: var(--main-header-menu-width);
            margin: 20px;
        }
            .main-header-menu ul {
                display: flex;
                justify-content: space-between;
                height: 100%;
                width: 100%;    
                list-style-type: none;
            }
                .main-header-menu a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: var(--main-header-secondary-color);
                    color: var(--main-header-quaternary-color);
                    border: 1px solid var(--main-header-tertiary-color);
                    width: var(--main-header-menu-button-width);
                    height: var(--main-header-menu-button-height);
                    border-radius: 5px;
                    margin: 5px;
                    transition: var(--main-header-transition);
                    text-decoration: none;
                }
                    .main-header-menu a:hover {
                        background: var(--main-header-tertiary-color);
                        box-shadow: 0px 4px 10px var(--main-header-shadow-color);
                    }

/* DROPDOWN MENU */
.dropdown-menu {
    display: flex;
    width: 100%;
}
    .dropdown-menu ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        height: 0;
        top: 70px;
        left: 0;
        background: var(--main-header-secondary-color);
        overflow: hidden;
        transition: var(--main-header-transition);
    }
        .dropdown-menu a {
            height: calc(var(--main-header-menu-button-height) * 1.8);
            width: 100%;
            margin: 0;
            border: none;
            border-radius: unset;
            border-bottom: 1px solid var(--main-header-tertiary-color);
        }
            .dropdown-menu a:hover {
                box-shadow: unset;
            }

/* DROPDOWN BUTTON */
.main-header-dropdown-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: var(--main-header-menu-button-height);
    min-width: Var(--main-header-menu-button-height);
    margin: 20px;
    background: var(--main-header-secondary-color);
    border: 1px solid var(--main-header-tertiary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--main-header-transition);
}
    .main-header-dropdown-button:hover {
        background: var(--main-header-tertiary-color);
        box-shadow: 0px 4px 10px var(--main-header-shadow-color);
    }
    .main-header-dropdown-button .stripes {
        background: var(--main-header-quaternary-color); 
        height: 2px;
        min-width: 25px;
        margin: 2px 0;
    }

/* MEDIA QUERIES MAIN HEADER */
@media (min-width: 768px) {
.main-header-menu {
 display: flex;
}
.dropdown-menu {
display: none;
}
.main-header-dropdown-button {
 display: none;
}
	
.main-header-logo {
 margin: 20px;
 width:200px;
		
}
}