/* //////////////////////////////////////////////////////////////////////////

   BBE Custom Blocks

   //////////////////////////////////////////////////////////////////////////

   I.BBE
   |
   ├─ 1.Logo
   ├─ 2.Header
   └─ 3.Footer
   
*/

.isNavOpen {
    height: 100vh;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   1.Logo
   -------------------------------------------------------------------------- */

.Logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.Logo svg {
    fill: currentColor;
}

.Logo-text {
    margin-left: 0.62rem;
}

/* --------------------------------------------------------------------------
   2.Header
   -------------------------------------------------------------------------- */

.Header {
    color: var(--color-custom-five);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(21 / 14);
    margin: 0 0 4.35rem;
    padding: 1.5rem 0;
    position: relative;
}

.Header a {
    color: currentColor;
}

.Header a:hover {
    color: #969696;
}

.Header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Header-logo {
    position: relative;
    z-index: 11;
}

.Header-menuBtn {
    background: transparent;
    border: 0;
    color: currentColor;
    font-weight: 500;
    padding: 0;
    position: relative;
    z-index: 11;
}

.Header-search {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 1px;
    margin: 0 0.8rem;
    height: 1.2rem;
    width: 1.2rem;
}

.Header-search:hover {
    opacity: 0.55;
}

.Header-search svg {
    display: block;
    width: 100%;
    height: 100%;
}

.Header-navWrapper {
    box-sizing: border-box;
    display: none;
}

@media (max-width:1024px) {
    .Header {
        margin-bottom: 1.35rem;
    }

    .isNavOpen .Header {
        color: #fff;
    }

    .isNavOpen .Header-navWrapper {
        background: var(--color-custom-five);
        color: #fff;
        display: flex;
        flex-direction: column;
        overflow: auto;
        padding-top: 5.2rem;
        padding-bottom: 5.2rem;
        padding-right: var(--margin-wrap-left-right);
        padding-left: var(--margin-wrap-left-right);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: 100vh;
        z-index: 10;
    }

    .Header-nav {
        margin-top: 1.6rem;
    }

    .Header-nav a,
    .Header-navAuth a {
        display: block;
        font-size: 1.8rem;
        line-height: calc(26.4 / 24);
        padding: 1.5rem 0;
    }
}

@media (min-width:1025px) {
    .Header {
        font-size: 1.5rem;
        line-height: calc(19.8 / 16);
    }

    .Header-navWrapper {
        display: contents;
    }

    .Header-nav {
        margin: 0 auto;
    }
}

@media (min-width:1281px) {
    .Header {
        font-size: 1.9rem;
        line-height: calc(19.8 / 16);
    }

    .Header-search {
        margin: 0 1rem;
        height: 1.4rem;
        width: 1.4rem;
    }
}

.Header-nav ul,
.Header-navSocials {
    list-style: none;
    margin: 0;
    padding: 0;
}

.Header-nav li {
    border-bottom: 1px solid #ffffff10;
}

.Header-navSocials {
    margin: auto 0 0;
    padding: 4rem 0 0;
}

.Header-navSocials li:not(:last-child) {
    border-bottom: 1px solid #ffffff10;
}

.Header-navSocials a {
    display: block;
    font-size: 1.4rem;
    line-height: calc(19.2 / 16);
    padding: 1.5rem 0;
}

@media (min-width:1025px) {
    .Header-nav ul {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: calc(var(--scale) * 25);
    }

    .Header-menuBtn,
    .Header-navSocials {
        display: none;
    }
}

@media (min-width:1481px) {
    .Header-logo,
    .Header-navAuth {
        min-width: 22rem;
    }

    .Header-navAuth {
        text-align: right;
    }
}

/* --------------------------------------------------------------------------
   3.Footer
   -------------------------------------------------------------------------- */
