html, body {
    height: 100%;
    font-family: 'Roboto Condensed', sans-serif;
    color: #000;
    background-color: #FFF;
    margin: 0;
}

::-moz-selection {
  color: #FAFAFA;
  background: #222;
}

::selection {
  color: #FAFAFA;
  background: #222;
}

strong {
    font-weight: 700;
}

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

a:focus {
    border: 0;
}

.thumbnail {
    width: 100%;
    height: auto;
}

.grid_block {
    padding: 0;
    margin: 0;
    animation: fadein 1.3s ease;
    animation-fill-mode: both;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 101%;
    opacity: 0;
    transition: .4s ease;
}

.grid_block:hover .overlay {
    opacity: .85;
}

.grid_block_info {
    width: 80%;
    margin: 0;
    padding-bottom: 0.4em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 300;
    text-transform: uppercase;
    color: #FFF;
}

.grid_block a {
    text-decoration: none;
    height: 100%;
}

.folio_image {
    display: block;
    width: 100%;
    height: auto;
    animation: fadein 0.7s ease-out;
}

.thumbnail_icon {
    width: 40%;
    height: auto;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    -ms-transform: translate(-50%, -55%);
    text-align: center;
    opacity: 40%;
}

#close_tab {
    position: absolute;
    top: 40px;
    right: 0;
    background-color: red;
    width: 60px;
    height: 60px;
    z-index: 999;
}

#left {
    min-height: 280px;

    padding: 30px;
    background-color: #FFF;
    background-image: url("img/logo.svg");
    background-repeat: no-repeat;
    background-size: 40px auto;
    background-position: left bottom;
    background-origin: content-box;
}

#left_back {
    min-height: 86px;
    z-index: 1;
    
    padding: 30px;
    background-color: #FFF;
}

#right {
    padding: 0;
    z-index: 0;
}

#intro_name {
    font-size: 26px;
    line-height: 28px;
    font-weight: 300;
    text-transform: uppercase;
}

#intro_back {
    
    
    font-size: 26px;
    line-height: 28px;
    font-weight: 300;
    text-transform: uppercase;
}

#intro_email {
    padding-top: 1.5em;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.4px;
}

#info_block {
    width: 100%;
    min-height: 60px;
    padding: 30px 50px 100px 30px;
    font-size: 17px;
    line-height: 24px;
    font-weight: 300;
}

#info_block a {
    font-weight: 500;
}

#e-404 {
    width: 40%;
    min-width: 492px;
    max-width: 600px;
    margin: 0;
    top: 42%;
    left: 50%;
    padding-bottom: 2em;
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: left;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}

#e-404 a {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    #left_back {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }    
}



@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}