/*HEADER CSS*/
.headerContainer {
    max-width: 1024px;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.brand {
    display: flex;
    font-family: inherit;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--accent);
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
}
a.brand img {
    height: 50px;
    width: auto;
    max-width: 220px;
}
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 10;
    margin: 0 auto;
    background-color: #35343A;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1rem;
    width: 100%;
    height: 4rem;
    margin: 0 auto;
}
.menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    z-index: 10;
    overflow-y: auto;
    background-color: #5e2121;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.45s ease-in-out;
}
.menu.is-active {
    top: 0;
    left: 0;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
    margin: 1.25rem;
}
.menu-item {
    list-style: none;
    list-style-type: none;
}
.menu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    color: #faf9f9;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    text-transform: unset;
    text-decoration: none;
}
.menu-block {
    display: none;
    /*display: inline-block;*/
    font-family: inherit;
    font-size: clamp(0.88rem, calc(0.8rem + 0.38vw), 1rem);;
    font-weight: 500;
    line-height: 1.25;
    user-select: none;
    text-align: center;
    white-space: nowrap;
    margin-left: auto;
    padding: 0.65rem 1.35rem;
    border-radius: 3rem;
    color: rgb(237, 236, 241);
    background-color: var(--accent);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: none;
    outline: none;
    text-transform: unset;
    text-decoration: none;
}
.menu-block:hover {
    color: #35343A;
}
@media only screen and (min-width: 48rem) {
    .menu {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        margin-left: auto;
        background: none;
        box-shadow: none;
    }
    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 1.75rem;
        margin: 0 auto;
    }
    .menu-link {
        text-transform: capitalize;
    }
    .menu-block {
        margin-left: 2rem;
    }
}
.burger {
    position: relative;
    display: block;
    cursor: pointer;
    order: -1;
    width: 1.75rem;
    height: auto;
    border: none;
    outline: none;
    visibility: visible;
}
.burger-line {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 2px;
    margin: 6px auto;
    transform: rotate(0deg);
    background-color: #f5f1f1;
    transition: all 0.3s ease-in-out;
}
div.headerFix {
    min-height: 5rem;
}
@media only screen and (min-width: 48rem) {
    .burger {
        display: none;
        visibility: hidden;
    }

    div.headerFix {
        min-height: 6rem;
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.65);
    transition: all 0.3s ease-in-out;
}
.overlay.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
}