body,
html {
    background-color: #000;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin: 0;
    padding: 0;
    font-size: calc((100vw * .0015) + 15px);
    font-family: "Varta", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

a {
    color: inherit;
    text-decoration: none;
}

span {
    line-height: 2.1rem;
    color: #2A2B2E;
}

h1, h2, h3, h4, h5, h6 {
    color: #445B20;
    font-family: "DM Serif Text", serif;
}

.nav {
    height: 3.8rem;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.nav .lgt, .nav .drk {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
}

.nav .logo {
    height: 1.8rem;
    width: auto;
    margin: 1rem 0;
}

.nav .logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
}

.nav .menu {
    z-index: 2;
}

.nav .menu .icn {
    height: 1.2rem;
    width: auto;
    margin: 1.1rem 0;
    cursor: pointer;
}

.nav .menu .icn img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
}

.nav .opn {
    width: calc(20rem - 4rem);
    max-width: calc(100vw - 4rem);
    height: calc(100vh - 6rem - 3svh);
    padding: calc(4rem + 2svh) 2rem calc(2rem + 1svh);
    position: fixed;
    top: 0;
    right: -33rem;
    background-color: #121111;
    /* background-color: #1a1b1b; */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: right;
    -webkit-box-shadow: 0rem -0rem 1rem 0.6rem rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0rem -0rem 1rem 0.6rem rgba(0, 0, 0, 0.2);
    box-shadow: 0rem -0rem 1rem 0.6rem rgba(0, 0, 0, 0.2);
    /* z-index: 2; */
}

.nav .opn div {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
}

.nav .opn a {
    /* color: #fff; */
    border-bottom: solid 2px transparent;
    transition: all 0.4s;
}

.nav .opn a:hover {
    border-bottom: solid 2px #e19c68;
    transition: all 0.4s;
}

.nav .spacer {
    width: 100%;
    height: 0.8rem;
    /* margin: 0.6rem 0 -0.4rem; */
    font-size: 0.8rem;
    opacity: 0.6;
    display: block;
}

.nav .btm-lnk {
    font-size: 1.1rem;
    opacity: 0.8;
}

.container {
    display: flex;
    flex-wrap: wrap;
}

.container .itm {
    height: 50vh;
    width: 50%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.container .itm img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    transition: all 1s ease-in-out;
}

.container .itm:hover img {
    opacity: 0.8;
    transition: all 1s ease-in-out;
}

.container .itm span {
    position: absolute;
    top: calc(50% + 0.4rem);
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 1.4rem #000000;
    padding-bottom: 0.6rem;
    text-wrap: nowrap;
}


@media only screen and (max-width: 960px) {
    .container .itm {
        width: 100%;
        height: 25vh;
        min-height: 18rem;
    }
}