
img{
    max-width:  100%;
    width:  100%;
}
.site-logo img {
    max-height: 42px;
    width: auto;
}
/* .navigation-bar {
    position: absolute;
    top: 60px;
} */
body {
    --color-bg-item1: #15171b;
    --color-bg-item2: #2c35b7;
    --color-bg-item3: #0f1013;
    --color-bg-item4: #1d2027;
    --color-bg-item5: #0f1013;
    --color-item-alt: #494d54;
    --color-quote: #5b677a;
    --color-info: #57535a;
    --color-tagline: #e2e2e2;
    min-height: 100vh;
    background-color: #fff;
    background-color: var(--color-bg);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.navigation-bar svg.hidden {
    display: block !important;
    position: relative;
    width: auto;
    height: auto;
    display: none !important;
}


/* Icons */
.icon {
    display: block;
    width: 1.5em;
    height: 60px;
    margin: 0 auto;
    fill: #000;
}


.action {
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 0;
}

.action--menu {
    pointer-events: auto;
    position: relative;
    float: right;
    z-index: 9999;
    right: 0;
}
button.action.action--close .icon {
    fill: #fff;
    width: 3rem;
}
nav.menu .row {
    position: relative;
}
.menu--open .action--menu {
    pointer-events: none;
}

.action--close {
    pointer-events: auto;
    position: absolute;
    right: 100px;
    z-index: 1000;
    opacity: 0;
    padding: 0 0.5rem;
    top: 50px;
}
.site-logo {
    display: inline-block;
    position: relative;
}
.navigation-bar {
    margin-top: 40px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    position: absolute;
    top: 0;
}
.home .navigation-bar{
    border:  none;
}
.icon--menu {
    width: 55px;
}

.icon--close {
    width: 1rem;
}

nav.menu{
    text-align: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}
.menu--open nav.menu {
    z-index: 999999;
}
.menu--open {
    pointer-events: auto;
}

.menu__item {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.menu__item-inner {
    overflow: hidden;
    transform: translate3d(100%,0,0);
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu__item--1 .menu__item-inner {
    background: #000;
}
.menu__item--2 .menu__item-inner {
    background: var(--color-bg-item2);
}
.menu__item--3 .menu__item-inner {
    background: var(--color-bg-item3);
}
.menu__item--4 .menu__item-inner {
    background: var(--color-bg-item4);
}
.menu__item--5 .menu__item-inner {
    background: var(--color-bg-item5);
}

.menu__item--4,
.menu__item--5 {
    display: none;
}

.label {
    display: none;
}

.mainmenu__item {
    opacity: 0;
}

.mainmenu__item,
.sidemenu__item {
    position: relative;
    overflow: hidden;
    transition: color 0.1s;
    margin: 0.25rem 0;
    display: block;
}

.sidemenu__item-inner {
    display: block;
    transform: translate3d(0,100%,0);
}

.menu__item-map {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/2.jpg) no-repeat 50% 50%;
    background-size: cover;
    transition: transform 0.8s cubic-bezier(0.2,1,0.8,1);
}

.menu__item-inner:hover .menu__item-map {
    transform: scale3d(1.1,1.1,1);
}

.menu__item-hoverlink {
    font-weight: bold;
    text-transform: capitalize;
    position: relative;
    z-index: 1000;
    display: block;
}

.menu__item-hoverlink:hover {
    color: var(--color-link);
}

.quote {
    font-size: 2rem;
    padding: 1rem;
    text-align: center;
    max-width: 70%;
    color: var(--color-quote);
    font-family: "sabbath-black",serif;
}

.menu__item-link {
    text-align: left;
    align-self: flex-start;
    justify-self: start;
    font-size: 1.5rem;
    width: 100%;
    line-height: 1;
    padding: 2rem ;
    margin: 3rem 0 auto;
    display: flex;
    flex-direction: column;
    height: calc(100% - 3rem);
}

.menu__item-link::after {
    content: '\27F6';
    display: block;
    margin-top: auto;
    font-size: 0.95rem;
}

@media screen and (min-width: 53em) {

    .frame a {
        pointer-events: auto;
    }

    nav.menu{
        width: 100%;
        height: 100vh;
        overflow: hidden;
        position: fixed;
        top: 0;
        left: 0;
        grid-template-columns: 20% 30% 50%;
        grid-template-rows: 60% 40%;
        grid-template-areas:
            "item3 item2 item1"
            "item4 item5 item1";
    }
    .menu__item {
        height: 100%;
    }
    .menu__item--1 {
        grid-area: item1;
    }
    .menu__item--2 {
        grid-area: item2;
    }
    .menu__item--3 {
        grid-area: item3;
    }
    .menu__item--4 {
        grid-area: item4;
    }
    .menu__item--5 {
        grid-area: item5;
    }
    .menu__item--4,
    .menu__item--5 {
        display: block;
    }
    .menu__item-inner {
        align-items: center;
    }
    .label {
        display: block;
        color: var(--color-item-alt);
        position: absolute;
        z-index: 1000;
        font-size: 0.85rem;
        font-weight: bold;
        margin: 0;
        white-space: nowrap;
    }
    .label--topleft {
        top: 2rem;
        left: 2rem;
    }
    .label--vert,
    .label--vert-mirror {
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }
    .label--vert-mirror {
        transform: rotate(180deg);
    }
    .label--bottomright {
        bottom: 2rem;
        right: 2rem;
    }
    .label::before {
        content: '------------- ';
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        letter-spacing: -1px;
        margin: 0 0.75rem 0 0;
    }
    .label--vert::before,
    .label--vert-mirror::before {
        margin: 0.75rem 0;
    }
    .mainmenu,
    .sidemenu {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .mainmenu {
        counter-reset: menuitem;
    }
.mainmenu__item {
    font-size: 5vw;
    text-transform: lowercase;
    overflow: visible;
    margin: 0.5rem 0;
    padding: 17px 0.5rem;
    position: relative;
    transition: color 0.3s;
    color: #fff;
}
    .mainmenu__item:hover {
        color: var(--color-item-alt);
    }
    .mainmenu__item::before {
        counter-increment: menuitem;
        content: counters(menuitem, "", decimal-leading-zero);
        position: absolute;
        font-size: 0.85rem;
        top: 25%;
        left: -1.25rem;
        color: var(--color-item-alt);
    }
    .mainmenu__item::after {
        content: '';
        width: 100%;
        top: 58%;
        height: 6px;
        background: var(--color-link-hover);
        position: absolute;
        left: 0;
        opacity: 0;
        transform: scale3d(0,1,1);
        transition: transform 0.3s, opacity 0.3s;
        transform-origin: 100% 50%;
    }
    .mainmenu__item:hover::after {
        opacity: 1;
        transform: scale3d(1,1,1);
    }
    .sidemenu__item {
        text-transform: uppercase;
        letter-spacing: 0.15rem;
        font-size: 0.85rem;
    }
    .menu__item-hoverlink {
        font-size: 1.25rem;
        text-transform: lowercase;
        border-bottom: 2px solid #fff;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .menu__item-inner:hover .menu__item-hoverlink {
        opacity: 1;
    }
}

.mainmenu ul li a {
    font-size: 5vw;
    text-transform: lowercase;
    overflow: visible;
    position: relative;
    transition: color 0.3s;
    color: #fff;
}
.mainmenu ul li {
    padding: 14px 0;
    position: relative;
    text-align: center;
    list-style: none;
    font-family: proxima;
}
ul#menu-menu {
    padding: 0;
}
ul#menu-menu {
    padding: 0;
    list-style: none;
}
.mainmenu ul.sub-menu {
    padding: 0;
    display: none;
}
.mainmenu ul.sub-menu {
    padding: 0;
    display: none;
}
.menu ul {
    padding: 0;
    margin: 0;
}

.button_container {
    position: relative;
    top: auto;
    right: auto;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
    float: right;
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container span {
    background: #000;
    border: none;
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .35s ease;
    cursor: pointer;
}
.button_container {
    position: relative;
    top: 11px;
    right: auto;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    transition: opacity .25s ease;
    float: right;
}
.button_container .middle {
    top: 10px;
    left: 12px;
}
.button_container .bottom{
    top: 21px;
}

#overlay {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 99;
    pointer-events: auto;
}
#overlay.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
    overflow: hidden;
}

#overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 50px;
 font-family: proxima;
  font-weight: 400;
  text-align: center;
}
#overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
#overlay ul li {
    display: block;
    position: relative;
    padding: 19px 0;
}
#overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
}
#overlay ul li a:hover:after, #overlay ul li a:focus:after, #overlay ul li a:active:after {
  width: 100%;
}


@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
.block-revealer input {
    border: 2px solid #333d45;
    color: #333d45;
    padding: 5px 13px;
}
.block-revealer select.form__select {
    height: 46px;
}
.inner-pages .navigation-bar {
    position: relative !important;
}
