@import url(../animate.css);
@import url(../menu_footer.css);
:root {
    --bg: #c9c4b6;
    --green: #abc895;
    --l_grey: #dbd9d4;
    --brown: #9d6b26;
}
@font-face { font-family: 'Gills Sans MT Condensed'; src: url(../../fonts/GILC____.TTF); }
@font-face { font-family: 'Geometr231B'; src: url(../../fonts/GEO231B.TTF); }
@font-face { font-family: 'Geometr231B lt'; src: url(../../fonts/Geo231Lt.ttf); }
@font-face { font-family: 'bank gothic light bt'; src: url(../../fonts/bank_gothic_light_bt.ttf); }
@font-face { font-family: 'Trajan_Pro_Regular'; src: url(../../fonts/Trajan_Pro_Regular.ttf); }
@font-face {
    font-family: "Avalon Quest";
    src: url("../../fonts/Avalon-Quest.ttf") format("truetype");
    font-weight:normal;
    font-style:normal;
}
header nav,footer .body { background: #c9c4b6; }
.site.side-open { height: 100vh; }
.P_header .page_heading {
    padding: 5px 0 0 0;
    font-size: 36px;
    max-width: 190px;
    border-bottom: 1px solid #e8e8e9;
    color: #000;
    margin: 0 auto;
    font-family: 'Gills Sans MT Condensed';
}
.P_header .sub_heading {
    padding: 10px 25px 7px 25px;
    border-bottom: 1px solid #0a0b0c;
    width: 40vw;
    margin: 0 auto;
    font-size: 22px;
    font-family: 'Geometr231B';
    color: #1f1a17;
}
.P_logo {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    min-height: 50vh;
}
.P_logo .image {
    min-height: 50vh;
    margin: 10vh auto;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.35));
}
.P_logo .image img { width: 260px; transition: all 0.2s; }
.P_logo .image img:hover { transform: scale(1.05); transition: all 0.2s; }
.head {
    width: 90%;
    margin: 5vh auto;
    height: auto;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.7);
    padding: 10vh 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 2.8em;
}
.head .head_holder {
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr repeat(2,max-content) 1fr;
    grid-gap: 0 25px;
    font-family: 'Trajan_Pro_Regular';
    font-size: 30px;
}
.head .head_holder div:first-child {
    border-top: 1px solid #000;
    text-align: right;
}
.head .head_holder div:last-child {
    border-bottom: 1px solid #000;
    text-align: left;
}
.box {
    position: relative;
    width: 90%;
    margin: 10vh auto;
    min-height: 150vh;
    background: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,.7);
    display: grid;
    grid-template-columns: 15% 1fr;
    grid-gap: 15px;
    transition: all 0.3s;
}
.box::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -3px;
    width: 15%;
    height: calc(100% + 30px);
    background: var(--bg);
    z-index: 400;
}
.box.change {
    width: 15%;
    overflow: hidden;
    margin: 10vh auto 10vh 150px;
    transition: all 0.3s;
}
.box .left { position: relative; }
.box .left .ul_holder {
    position: sticky;
    top: 150px;
    height: 70%;
}
.box .left ul {
    margin: 140px 0 0 0;
    height: auto;
    width: 100%;
}
.box .left li {
    list-style: none;
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 165%;
    overflow: hidden;
    padding: 0 10px 0 0;
    text-transform: uppercase;
    font-family: 'Trajan_Pro_Regular';
    text-align: right;
    margin: 5px 0;
    font-size: 12px;
    color: #242722;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s;    
}
.box .left li:first-child { background: var(--green); }
.box .left li:nth-child(2) { background: var(--l_grey); }
.box .left li:last-child { background: var(--brown); }
.box .left li:hover {
    margin-left: 180px;
    transition: all 0.2s;
}
.box .right .title {
    position: relative;
    width: 85%;
    margin: 3vh 20px 8vh auto;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Trajan_Pro_Regular';
    font-size: 2em;
    color: #907F69;
}
.box .right .title::before,
.box .right .title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background: #907f69;
}
.box .right .title::before { top: 0; left: 0; }
.box .right .title::after { bottom: 0; right: 0; }
.box .right .content {
    text-align: center;
}