* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Avenir";
    src: url("./../fonts/Avenir-Regular.woff") format("woff");
}

body {
    font-family: "Avenir";
}

.container {
    /* max-width: 1300px; */
    max-width: 2000px;
    margin: 0 auto;
    /* box-shadow: 1px 1px 5px rgba(0, 0, 0, .5);  */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 92px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    gap: 10px;
    background: #fff;
    padding: 0 140px;
    z-index: 4;
    padding-bottom: 18px;
}

.header a {
    text-decoration: none;
    /* transform: translateY(-8px); */
}

.header h4 {
    color: #828282;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 500 !important;
}

.header-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1300px;
    width: 100%;
    position: relative;
}

.header img {
    transform: translateY(2px);
}

#home_navigation {
    display: none;
}

#home_navigation img {
    transform: translateY(5px);
}

#page_navigation {
    display: block;
}

#page_navigation a {
    margin-left: 10px;
}

.dropdown {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    position: absolute;
    z-index: 10;
    right: 0;
}

.dropdown a,
#page_navigation a {
    text-align: right;
    margin-bottom: 8px;
    text-decoration: none;
    color: #828282;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.08em;
}

.contents {
    width: 100%;
    padding-top: 84px;
    height: 100%;
}

@media screen and (max-width: 800px) {
    .header {
        padding: 0 70px;
    }
}

@media screen and (max-width: 600px) {
    .header {
        padding: 0 30px;
    }

    /*.header img {*/
    /*  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(84deg) brightness(97%) contrast(116%);*/
    /*}*/

    .header h4 {
        font-size: 12px;
    }

    #home_navigation {
        display: block;
    }

    #page_navigation {
        display: none;
    }
}
