/* Layout */
body {
    padding: var(--default-spacing);
    background: #1C1C1C;
}
#container {
    max-width: 1200px;
    margin: auto;
}

#header {
    position: fixed;
    left: var(--default-spacing);
    top: var(--default-spacing);
    right: var(--default-spacing);
    z-index: 100;
    display: flex;
    align-items: center;
}
#logo {
    padding-right: var(--default-spacing);
    flex-grow: 2;
}
#path h2,
#logo h1 {
    display: inline-block;
    font-size: var(--title2-font-size);
    line-height: var(--title2-line-height);
}
#path {
    flex-grow: 2;
    display: none;
}
#menu_button {
    cursor: pointer;
    width: 30px;
    height: 20px;
    background: url('../img/menu.svg') no-repeat;
    background-size: 100%;
    filter: invert(1);
}
#menu {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: 0.5s;
    width: 100%;
    background: var(--menu-color);
}
body.menu_expanded #menu {
    transform: translateX(0);
    transition: 0.5s;
}
body.menu_expanded #menu_button {
    height: 30px;
    background: url('../img/close.svg') no-repeat;
    background-size: 100%;
}
#menu ul {
    margin-top: 80px;
    margin-right: var(--default-spacing);
}
#menu ul li {
    text-align: right;
}
#menu ul li a {
    font-family: var(--title-font-family);
    font-size: var(--title-font-size);
    line-height: var(--title-line-height);
}
#menu .contact {
    text-align: right;
    margin-right: var(--default-spacing);
}
#content {
    padding: 80px 0;
}
#footer {
}
.networks {
    margin-bottom: var(--default-spacing);
}
.fb {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../img/fb.svg') no-repeat;
    background-size: 100%;
    filter: invert(1);
    font-size: 0 !important;
    margin-left: 10px;
}
.ig {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../img/ig.svg') no-repeat;
    background-size: 100%;
    filter: invert(1);
    font-size: 0 !important;
    margin-left: 10px;
}
.yt {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url('../img/yt.svg') no-repeat;
    background-size: 100%;
    filter: invert(1);
    font-size: 0 !important;
    margin-left: 10px;
}


@media only screen and (min-width: 768px) {
    #logo {
        flex-grow: 0;
    }
    #menu {
        width: 240px;
    }
    #path {
        display: block;
    }
}