.spaces_container {
    position: absolute;
    width: 100%;
    top: 5%;
    height: 90%;
    overflow: auto;
}
#spaces_left {
    position: absolute;
    width: calc(50% - 42px);
    height: 100%;
    left: 42px;
    padding-left: 90px;
    box-sizing: border-box;
}
#spaces_right{
    right: 40px;
    width: calc(50% - 40px);
    height: 100%;
    position: absolute;
    box-sizing: border-box;
}
span.spaces_name {
    display: block;
    text-align: center;
    padding-bottom: 16px;
    cursor: pointer;
    transition: 0.4s text-shadow;
}
span.spaces_name:hover{
    font-style: italic;
}
h1 {
	font-size: 2em;
    text-align: center;
    margin-top:15vh;
}
.subtitle {
    margin-top: 20px;
    display: block;
    text-align: center;
    font-size: 1.2em;
    font-family: 'Didot Italic';
}
.subtitle big{
    font-family: auto;
    font-style: italic;
    font-weight: 100;
}
.vertical_line{
    height: 21%;
    width: 2px;
    background: #2b2928;
    display: block;
    margin: 2.5em auto;
}

.spaces_image_container {
    position: fixed;
    width: calc(50% - 110px);
    height: 80vh;
    top: 50%;
    transform: translate(0, -50%);
    background-size: cover;
    background-repeat: no-repeat;
    right: 0;
    left: calc(50% + 35px);
    /* margin: auto; */
    opacity: 0;
    transition: 0.6s opacity;
}
/* .spaces_image_container {
    position: absolute;
    width: calc(100% - 70px);
    height: 80vh;
    top: 50%;
    transform: translate(0, -50%);
    background-size: cover;
    background-repeat: no-repeat;
    right: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    transition: 0.6s opacity;
} */
.spaces_image_container_show{
    opacity: 1;
}
.spaces_txt_container {
    margin-top: 1em;
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 3em;
}
footer {
    z-index: 0;
}

#projects{
    display: none;
    position: absolute;
    width: calc(100% - 84px);
    height: calc(100% - 80px);
    left: 42px;
    top: 40px;
}
.cover_container {
    width: 100%;
    height: 100%;
}
.cover_img{
    height: 58vh;
}
.cover_txt {
    display: block;
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
}
.cover_location{
    font-family: Didot Italic;
    text-transform: capitalize;
}
.cover_data_wrap{
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.proj_items{
    position: relative;
    width: 100%;
    height: 100%;
}

.proj_items span{
    text-align: center;
    line-height: 20px;
    font-style: italic;
}

.proj_item_left{
    position: absolute;
    width: 50%;
    left: 0;
    height: 100%;
}
.proj_item_right{
position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
}
.left_proj_title, .right_proj_title {
    text-align: center;
    position: absolute;
    top: calc(100% + 25px);
}
.left_proj_img, .right_proj_img, .main_proj_img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.proj_item_left_wrap, .proj_item_right_wrap {
    width: 60%;
    height: calc(65% + 80px);
    height: 65vh;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translate(0,-50%);
    display: flex;
    justify-content: center;
}
.proj_item_right_wrap {
    left:5%;
}
.main_proj_title{
    text-align: center;
    position: absolute;
    top: calc(100% + 20px);
}
.proj_item_main {
    height: 50vh;
    width: 50%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    display: flex;
    justify-content: center;
    transform: translate(0,-50%);
}
.proj_items:last-of-type {
    margin-bottom: 60px;
}
.proj_items:last-of-type.safari {
    padding-bottom: 7em;
}
.proj_navs{
    font-size: 0.8em;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
    font-family: Proxima Nova;
}
#next {
    right: calc(40px + (5vh - 0.8em) / 2);
}
#prev{
    left: calc(40px + (5vh - 0.8em) / 2);
}
#mid{
    left: 50%;
    transform: translate(-50%, -50%);
}
.proj_navs.hidePojNav {
    display: none;
}
#temp_poj_next, #temp_poj_prev {
    display: none;
}
#temp_poj_next.show_proj_title, #temp_poj_prev.show_proj_title {
    display: block;
}
.footer_nav_wrap {
    opacity: 0;
    transition: opacity 0.4s;
}
.show {
    opacity: 1;
}