/* HEADER */

.header {
    z-index: 100;
    width: 100%;
    height: 150px;
    padding: 10px 0;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    color: #444;
    top: 0;
    left: 0;
    transition: 0.4s;
    box-shadow: none;
}
.header.header-small {
    height: 80px;
    background-color: #FFFFFFCC;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 10px #00000011;
}
.header-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 28px;
    margin-left: 12vw;
    cursor: pointer;
    width: 182px;
    color: #444;
    text-decoration: none;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    transition: 0.2s;
}
.header-title:hover {
    border-top-color: #FFF;
    border-bottom-color: #FFF;
}
.header-title.black:hover {
    border-top-color: #444;
    border-bottom-color: #444;
}
.header-title-top {
    letter-spacing: 1.44px;
}
.header-nav {
    width: 24%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-right: 8%;
}
.header-nav a {
    font-size: 18px;
    text-decoration: none;
    color: #444;
}
.header-nav a.active {
    cursor: default;
}
.header-nav a:after {
    content: '';
    display: block;
    width: 0px;
    height: 2px;
    background-color: #B5AC8C;
    transition: 0.3s;
    margin: 3px auto;
}
.header-nav a.active:after {
    width: 100%;
}
.header-nav a:hover:after {
    width: 100%;
}
.header-nav a:active {
    color: #AAA;
}
.menu-toggler {
    display: none;
    margin-right: 20px;
    background-color: transparent;
    border: none;
    color: #444;
    outline: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: 0.2s;
}
.menu-toggler:active {
    color: #DDD;
    background-color: #77777755;
}
@media screen and (max-width: 1050px) {
    .header {
        height: 65px;
        box-shadow: 0 5px 10px #00000011;
    }
    .header.header-small {
        height: 65px;
    }
    .header-title {
        font-size: 26px;
        margin-left: 6vw;
        border: none;
    }
    .header-nav {
        display: none;
    }
    .menu-toggler {
        display: block;
    }
}

/* MENU */

.menu {
    z-index: 100;
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #00000055;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}
.menu .menu-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 80px;
    transition: 0.5s;
}
.menu-top .close-button {
    margin-right: 20px;
    background-color: transparent;
    border: none;
    color: #FFF;
    outline: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: 0.2s;
}
.menu .close-button:active {
    color: #DDD;
    background-color: #77777755;
}
.menu-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu-links a {
    margin-top: 25px;
    color: #FFF;
    text-decoration: none;
    font-size: 24px;
    text-shadow: 0 0 10px #00000044;
}
.menu-links a.active {
    border-bottom: 2px solid #FFF;
    padding-bottom: 3px;
}
@media screen and (max-width: 1050px) {
    .menu .menu-top {
        height: 65px;
    }
}