/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */

.wrapper {
    --header-height: 104px;
    padding-top: var(--header-height);
}

@media screen and (max-width: 1024px) {
    .wrapper {
        --header-height: 63px;
    }
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    transition: padding 0.4s;
    font-size: 24px;
    font-family: "GothamHTF-Condensed", Courier;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0;
}

.header .container {
    display: flex;
    column-gap: 28px;
    padding: 0 50px;
}

@media screen and (max-width: 768px) {
    .header .container {
        padding: 0 20px;
    }
}

.header .container:before,
.header .container:after {
    content: none;
}

.header .logo {
    display: block;
    margin: 15px auto 10px 0;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    .header .logo {
        position: relative;
        /* z-index: 150; */
    }
}

.header .logo picture {
    display: block;
}

.header .logo img {
    width: auto;
    height: 79px;
    object-fit: contain;
}

@media screen and (max-width: 1024px) {
    .header .logo img {
        height: 38px;
    }
}

.header .btn-mobile-nav {
    display: none;
}

@media screen and (max-width: 1024px) {
    .header .btn-mobile-nav {
        display: block;
        /* z-index: 150; */
    }
}

@media screen and (max-width: 1024px) {
    .header .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: calc(var(--header-height)) 0 0;
        background: #fff;
        overflow: hidden auto;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s, visibility 0.4s;
    }

    body.show-mobile-nav .header .header__nav {
        opacity: 1;
        visibility: visible;
    }
}

.header .header__nav .nav {
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .header .header__nav .nav {
        margin-bottom: 26px;
        transition: none;
        overflow-y: auto;
        max-height: calc(100dvh - calc(var(--header-height)));
        padding: 31px 20px 48px;
    }

    .header .header__nav .nav:last-child {
        margin-bottom: 0;
    }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */

.nav ul {
    list-style: none;
}

.nav li {
    position: relative;
}
.nav li > a:hover::after {
    opacity: 1;
}
.nav li.current > a:after {
    transform: none;
    transform-origin: 0 0;
}

.nav li a {
    position: relative;
}
.nav li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #000;
    opacity: 0;
}
.nav li a:hover {
    text-decoration: none;
}

.nav > ul {
    height: 100%;
    display: flex;
    align-items: flex-end;
    column-gap: 56px;
}
@media screen and (max-width: 1024px) {
    .nav > ul {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
    }
}

.nav > ul > li {
    position: relative;
    display: block;
}
.nav > ul > li > a {
    display: inline-block;
    padding: 0 8px 30px;
    height: 100%;
}
@media screen and (max-width: 1024px) {
    .nav > ul > li > a {
        padding: 4px 0;
        margin-right: 48px;
    }
}

.nav > ul > li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    width: 305px;
    padding: 21px 0 19px;
    font-size: 20px;
    line-height: 22px;
    transition: transform 0.4s, margin 0.2s, opacity 0.4s, visibility 0.4s;
    pointer-events: none;
}
@media screen and (min-width: 1024px) {
    .nav > ul > li > ul {
        display: block !important;
    }
}
.nav > ul > li > ul:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    z-index: -1;
    transform: rotateX(90deg);
    transform-origin: 0 0;
    width: 200vw;
    background: #fff;
    transition-property: transform, opacity, visibility;
    transition-duration: 0.3s;
    transition-delay: 0.1s;
}
@media screen and (max-width: 1024px) {
    .nav > ul > li > ul {
        position: static;
        width: 100%;
        padding: 23px 0 0;
        margin-top: 0;
        font-size: 20px;
        pointer-events: all;
    }

    .nav > ul > li > ul:after {
        display: none;
    }
}

.nav > ul > li > ul > li {
    /* z-index: 5; */
    padding: 5px 0;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.4s;
}
@media screen and (max-width: 1024px) {
    .nav > ul > li > ul > li {
        padding: 7px 0;
    }
}
@media screen and (max-width: 1024px) {
    .nav > ul > li > ul > li {
        padding: 0;
        opacity: 1;
        visibility: visible;
    }
}

.nav > ul > li > ul > li > a {
    display: inline-block;
}
@media screen and (max-width: 1024px) {
    .nav > ul > li > ul > li > a {
        padding: 5px 0;
    }
}

.nav > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.nav > ul > li:hover > ul:after {
    transform: rotateX(0);
    transition-delay: 0s;
}

.nav > ul > li:hover > ul > li {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 1024px) {
    .nav.is-active > ul > li:not(.is-active) a {
        color: #888;
    }
}
@media screen and (max-width: 1024px) {
    .nav.is-active > ul > li:not(.is-active) a:after {
        background-color: #888;
    }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */

.now-open {
    display: flex;
    align-items: flex-end;
    background-color: #0e9f08;
    margin-bottom: 10px;
    z-index: 10;
}

.now-open span {
    text-transform: uppercase;
    padding: 0 32px 20px;
}

@media screen and (max-width: 1024px) {
    .now-open span {
        padding: 0 15px 10px;
    }
}

.now-open.closed {
    background-color: #ff5757;
}

/* ------------------------------------------------------------ *\
	Mobile Nav Button
\* ------------------------------------------------------------ */

.btn-mobile-nav {
    display: none;
    position: relative;
    width: 37px;
    height: 37px;
    margin-bottom: 10px;
    align-self: flex-end;
}

@media screen and (max-width: 1024) {
    .btn-mobile-nav {
        display: inline-block;
    }
}

.btn-mobile-nav span {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -2px;
    height: 3px;
    background-color: #000;
    transition: margin 0.4s, transform 0.4s;
}

.btn-mobile-nav span:before,
.btn-mobile-nav span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -1px;
    height: 3px;
    background-color: #000;
    transition: margin 0.4s, transform 0.4s;
}

.btn-mobile-nav span:before {
    margin-top: -11px;
}

.btn-mobile-nav span:after {
    margin-top: 9px;
}

body.show-mobile-nav .btn-mobile-nav span {
    background-color: transparent;
}

body.show-mobile-nav .btn-mobile-nav span:before {
    margin-top: -1px;
    transform: rotate(45deg);
}

body.show-mobile-nav .btn-mobile-nav span:after {
    margin-top: -1px;
    transform: rotate(-45deg);
}

/* ------------------------------------------------------------ *\
	Mobile Nav Expand Button
\* ------------------------------------------------------------ */

.mobile-subnav {
    position: relative;
    display: none;
    border: none;
    padding: 0;
    top: -8px;
    background-color: transparent;
    width: 17px;
    height: 17px;
    border-bottom: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
}

li.is-active > .mobile-subnav {
    top: 4px;
    transform: rotate(225deg);
}

@media screen and (max-width: 1024px) {
    .mobile-subnav {
        display: inline-block;
    }
}

@media screen and (max-width: 1024px) {
    .nav.is-active > ul > li:not(.is-active) .mobile-subnav {
        border-color: #888;
    }
}

/* ------------------------------------------------------------ *\
	Home Page
\* ------------------------------------------------------------ */

.home main .section-title {
    padding-top: 0;
    background-image: none;
    font-family: "GothamHTF-Book";
    font-weight: 700;
    text-transform: uppercase;
    font-size: 58px;
    line-height: 1;
    margin-bottom: 38px
}

@media screen and (max-width: 1024px) {
    .home main .section-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .home main .section-title {
        font-size: 28px;
    }
}