/*
Theme Name: blank
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0-wpcom
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 blank is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

@import "css/fonts.css";
@import "css/swiper.min.css";

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
    overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
    -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
    -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
    -webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
    -moz-box-sizing: border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
    box-sizing: border-box;
}

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
    margin: 32px 32px 160px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    font-weight: normal;
    text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

a {
    outline: 0;
}

a img {
    border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
    color: #000;
    font-family: 'Plain', sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

h2, .single-work .entry-header h1 {
    font-size: 3.2rem;
    line-height: 1.25;
}

h3,
.page .wpcf7-form h2,
.page .entry-title,
#home,
.text-large,
.no-results .page-header,
.section-title {
    font-size: 2.4rem;
}

.home.page .entry-title {
    font-size: 100%;
}

h4 {
    text-transform: uppercase;
    margin: 0 0 32px;
}

p, p.aligncenter {
    margin-bottom: 32px;
}

b,
strong {
    font-weight: bold;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

sup,
sub {
    font-size: 75%;
    height: 0;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    bottom: 1ex;
}

sub {
    top: .5ex;
}

small {
    font-size: 75%;
}

big {
    font-size: 125%;
}

.hide-text {
    font-size: 0;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ol {
    margin: 0 0 1.5em 3em;
    list-style: decimal;
}

li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

figure {
    margin: 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

th {
    font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
    font-size: 100%; /* Corrects font size not being inherited in all browsers */
    margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
    vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 2px solid;
    border-color: #000;
    background: #000;
    color: #fff;
    cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
    -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
    line-height: 1;
    padding: .6em 2em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #fff;
    color: #000;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0; /* Addresses excess padding in IE8/9 */
}

input {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="search"] {
    -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
    -webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
    border: 0;
    padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    color: #000;
    border: 2px solid #000;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
    color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
    padding: 3px;
}

textarea {
    overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
    padding-left: 3px;
    vertical-align: top; /* Improves readability and alignment in all browsers */
    width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a, .entry-content .info a, .entry-content #press-list a {
    color: #000;
    text-decoration: none;
    border: none;
}

a:hover, .current_page_item a, .current_page_parent a, .current-menu-item a, .entry-content a, .tax-filter .menu-item-object-work a, .tag a:hover span, .entry-content #press-list a:hover {
    color: inherit;
    border-bottom: 2px solid #000;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.entry-content a,
.blog .links a, .single-post .links a {
    transition: color 0.2s ease-out 0s, background 0.4s ease-in 0s;
}

.entry-content a:hover, .blog .links a:hover, .single-post .links a:hover {
    color: #fff;
    background: #000;
}

.entry-content .info a:hover, .entry-content .more-link:hover {
    background: transparent;
    color: inherit;
    border-bottom: 2px solid #000;
}

.entry-content .more-link:hover, .menu-toggle:hover {
    background: transparent;
    border: none;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

.main-navigation ul {
    margin: 0;
    list-style: none;
    text-align: right;
}

/* Small menu */
.menu-toggle {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 80%;
    display: none;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
    background-color: #f1f1f1;
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto;
    text-align: center;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
    max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
    display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.hentry {
    position: relative;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
    display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
    max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

.wp-caption-text,
.section-title {
    text-align: center;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.text-uppercase,
.section-title {
    text-transform: uppercase;
}


/*--------------------------------------------------------------
13. Contact7
--------------------------------------------------------------*/

div.wpcf7-response-output {
    margin: 0;
    padding: 2px 5px 0;
}

div.wpcf7-validation-errors {
    border-color: #f00;
}

div.wpcf7-mail-sent-ok {
    border-color: #000;
}

span.wpcf7-not-valid-tip {
    margin: 5px 0;
}

/*--------------------------------------------------------------
14. RK
--------------------------------------------------------------*/

/*countdown*/

#countdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
}

#countdown > div {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*header*/
.site-header {
    position: fixed;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 0 32px;
    text-transform: uppercase;
}

.site-header a {
    text-decoration: none;
}

.site-header .site-branding, .main-navigation {
    position: absolute;
    top: 0;
}

.site-header .site-branding {
    z-index: 1000;
}

/*footer*/
.site-footer {
    text-align: center;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 64px 0 32px;
    list-style: none;
}

.site-footer li {
    display: inline-block;
    margin: 0 15px;
}

.site-footer .site-branding {
    position: fixed;
    bottom: 32px;
    left: 0;
    z-index: 1000;
    width: 100%;
    font-size: 34px;
    font-size: 3.4rem;
    text-align: center;
    pointer-events: none;
}

/*navigation*/
.main-navigation {
    right: 32px;
}

.main-navigation .lang-navigation {
    margin: 1.5em 0 0;
}

.lang-navigation li {
    display: inline-block;
    margin: 0 0 0 1em;
}

.lang-navigation li:first-child {
    margin: 0;
}

/*box model*/
.inner {
    max-width: 1080px;
    margin: 0 auto;
}

.inner.overview {
    max-width: 1800px;
}

.col {
    margin: 0 -32px;
}

.col > .col-1-2 {
    float: left;
    width: 50%;
    padding: 0 32px;
}

.col > .col-1-3 {
    float: left;
    width: 33.3%;
    padding: 0 32px;
}

.col-1-3:nth-child(3n+2) {
    clear: both;
}

.col.col4 {
    margin: 0 -16px;
}

.col.col4 > .col-1-4 {
    float: left;
    width: 25%;
    padding: 0 16px;
}

.col .col {
    margin: 0 -16px 0 -32px;
}

.col .col .col-1-2,
.col .col .col-1-3 {
    padding: 0 16px;
}

/*centered text boxes*/
.container .box {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
}

.entry-content .content,
.blog .entry-content {
    font-weight: 200;
}

.blog .entry-content .more-link {
    font-weight: 400;
}

.entry-content .container .box {
    position: static;
    width: 100%;
    transform: none;
}

.overview .container .box {
    opacity: 0;
}

.post-type-archive-work article:hover .container .box,
.tax-filter article:hover .container .box,
.projects-area article:hover .container .box {
    opacity: 1;
}

.container .box.aligncenter {
    left: 25%;
}

.container .box.alignright {
    left: auto;
    right: 0;
}

.container .box .text {
    text-align: left;
    display: inline-block;
}

/*page*/
.page .content-area, .error404 .content-area {
    max-width: 572px;
    margin: 80px auto 56px;
}

.error404 .content-area {
    text-align: center;
    min-height: 400px;
}

.page .entry-header, .error404 .page-header {
    margin: 0 0 64px;
    text-align: center;
    text-transform: uppercase;
}

.page .wpcf7-form {
    margin: 0 0 98px;
}

.page .wpcf7-form h2 {
    margin: 0 0 64px;
    text-transform: uppercase;
}

#news {
    height: calc(100vh - 64px);
}

#news a,
#news .swiper-slide {
    display: flex;
    flex-flow: column;
    height: 100%;
}

#news .image {
    margin: auto;
}

#news a {
    text-decoration: none;
    border: none;
}

#news .box {
    width: 50%;
}

#news h2,
.section-title {
    margin: 0 0 32px;
}

/*home*/
.page.page-template-page-home .content-area {
    max-width: none;
    margin: 0;
}

#home {
    margin: 32px auto 130px;
    padding: 0 32px;
    max-width: 1440px;
}

.home .entry-header {
    display: none;
}

/*info*/
.page.page-template-page-info .content-area {
    margin: 0;
    max-width: none;
}

.page-template-page-info .entry-header {
    display: none;
}

.entry-header-image {
    margin: -32px -32px 130px;
    overflow: hidden;
}

.entry-header-image img {
    display: block;
    width: 100%;
}

div.wpcf7 {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.wpcf7 input[type="text"], .wpcf7 input[type="email"] {
    width: 100%;
}

.wpcf7 .aligncenter {
    position: relative;
}

div.wpcf7 img.ajax-loader {
    position: absolute;
    top: 9px;
    margin-left: 10px;
}

.page-template-page-info .col {
    margin-bottom: 96px;
}

.page-template-page-info .entry-footer {
    margin: 130px auto 230px;
}

/*projects: overview*/
.post-type-archive-work .content-area,
.tax-filter .content-area,
.projects-area.content-area {
    margin: 80px 0 56px;
    text-align: center;
}

.no-results {
    text-align: center;
}

.blog .no-results {
    margin-bottom: 88px;
}

.post-type-archive-work .page-header,
.tax-filter .page-header,
.projects-area .page-header,
.no-results .page-header {
    text-transform: uppercase;
}

.post-type-archive-work .page-header h1,
.tax-filter .page-header h1,
.projects-area .page-header h1,
.no-results .page-header h1 {
    margin: 0 0 32px;
}

#filter {
    margin: 0 0 64px;
    list-style: none;
}

#filter i {
    font-size: 80%;
    margin-left: 5px;
}

#filter,
#filter ul {
    margin: 0 0 64px;
    list-style: none;
}

#filter li {
    display: inline;
    margin: 0 10px;
}

.post-type-archive-work article,
.tax-filter article,
.projects-area article {
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.post-type-archive-work article .entry-title,
.tax-filter article .entry-title,
.projects-area article .entry-title {
    white-space: pre-line;
}

.post-type-archive-work article img,
.tax-filter article img,
.projects-area article img,
.container .box {
    -webkit-transition: opacity .2s ease-out 0s;
    -moz-transition: opacity .2s ease-out 0s;
    -o-transition: opacity .2s ease-out 0s;
    transition: opacity .2s ease-out 0s;
}

.post-type-archive-work article img,
.tax-filter article img,
.projects-area article img {
    display: block;
}

.post-type-archive-work article:hover img,
.tax-filter article:hover img,
.projects-area article:hover img {
    opacity: .05;
}

/*projects: single*/
.single-work .entry-header {
    margin: 0 0 130px;
    text-align: center;
    text-transform: uppercase;
}

.single-work .entry-content {
    max-width: 572px;
    margin: 0 auto 96px;
    position: relative;
}

.single-work .links {
    margin: 0 0 130px;
}

.links ul {
    display: inline-block;
    margin: 0 0 32px;
    list-style: none;
}

.links > ul {
    display: block;
}

.links li {
    margin: 0 5px 0 0;
}

.links .links-social ul li {
    margin: 0 0 0 32px;
}

.links a {
    border: none;
}

.entry-slideshow {
    margin: 0 -32px;
}

.entry-slideshow .swiper-slide {
    width: auto;
    margin: 0 40px 0 0;
}

.entry-slideshow .swiper-button-prev {
    left: 0;
}

.entry-slideshow .swiper-button-next {
    right: 0;
}

.entry-slideshow .swiper-button-prev,
.entry-slideshow .swiper-button-next {
    top: 0;
    width: 25%;
    height: 100%;

}

.entry-slideshow .swiper-button-prev:after,
.entry-slideshow .swiper-button-next:after {
    content: normal;
}

/*ongoing*/
.blog .content-area, .single-post .content-area {
    max-width: 572px;
    margin: 80px auto 56px;
}

.blog .entry-title, .single-post .entry-title {
    margin: 0 0 32px;
    text-transform: uppercase;
}

.blog .entry-image, .single-post .entry-image, .blog .entry-content, .single-post .entry-content {
    position: relative;
}

.blog .entry-image, .single-post .entry-image {
    margin: 0 0 32px;
}

.blog .entry-image img, .single-post .entry-image img {
    display: block;
}

.blog .info, .single-post .info {
    position: absolute;
    top: 0;
    left: -288px;
    height: 100%;
    width: 288px;
}

.info ul {
    margin: 0;
    list-style: none;
}

.info ul.tags {
    margin-bottom: 32px;
}

.info .links-social ul {
    display: none;
}

.entry-content > .info {
    float: left;
    width: 30%;
    margin: 0 10% 0 -40%;
}

.entry-content > .content {
    float: right;
    width: 100%;
}

.entry-more {
    display: none;
}

.loading .meta-nav {
    display: none;
}

.loading:after {
    content: "\e608";
    display: inline-block;
    animation: spin .4s infinite linear;
    -webkit-animation: spin 0.5s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

#load-more {
    text-transform: uppercase;
    text-align: center;
}

/*tag search*/
.tag #content > .content-area {
    margin: 80px auto 64px;
}

.tag .page-header, .tag .section-header {
    text-align: center;
    text-transform: uppercase;
}

.tag .section-header {
    margin: 0 0 32px;
}

.tag a span {
    border-bottom: 2px solid transparent;
}

/*press*/
#press-list li {
    text-align: center;
    position: relative;
    margin: 0 0 .5em;
}

#press-list .hidden {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

#press-list a:hover .hidden {
    opacity: 1;
}

.type-press {
    margin: 0;
}



/*contact*/
.page-name-contact .content-area {
    text-align: center;
}

.page-name-contact .content-area .wpcf7-form {
    text-align: left;
}

/*footer*/
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .95;
    display: none;
}

#overlay-close {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 2200;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 30px;
    cursor: pointer;
    text-decoration: none;
    display: none;
    border: none;
}

#overlay-close:hover,
#overlay-close:hover span {
    border: none;
}

.overlay #overlay,
.overlay #overlay-close {
    display: block;
}

#search-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2100;
    width: 100%;
    padding: 30px;
    display: none;
}

#search-overlay ul {
    font-size: 48px;
    font-size: 4.8rem;
    font-size: 3.1vw;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
}

#search-overlay li {
    word-wrap: break-word;
}

/*responsive*/
#responsive {
    font-family: "S";
    display: none;
}

@media screen and (max-width: 1700px) {
    .inner.overview {
        max-width: 1080px;
    }

    .col > .col-1-3 {
        width: 50%;
    }

    .col-1-3:nth-child(3n+2) {
        clear: none;
    }

    .col-1-3:nth-child(2n+2) {
        clear: both;
    }
}

.grid--work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin: 0 10px;
}

.grid--work img {
    width: 100%;
}

@media screen and (max-width: 1024px) {
    #responsive {
        font-family: "L";
    }

    .blog .info, .single-post .info {
        left: -224px;
        width: 224px;
    }

    /*box model/global*/
    .entry-content {
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        -o-hyphens: auto;
        hyphens: auto;
    }

    .info .box, .post-type-archive-work .box,
    .tax-filter article .box,
    .projects-area article .box {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .block {
        display: block;
    }

    /*menu*/
    .menu-toggle,
    .main-navigation.toggled .nav-menu {
        display: block;
    }

    .main-navigation.toggled {
        padding: 10px;
        top: -10px;
    }

    .site-header {
        top: 0;
    }

    .main-navigation {
        left: auto;
        right: 0;
        width: auto;
        padding: 32px;
    }

    .main-navigation.white {
        background: rgba(255, 255, 255, .95);
    }

    .site-header .site-branding {
        top: 0;
        left: 0;
        padding: 32px;
    }

    .main-navigation ul {
        display: none;
        margin-top: 32px;
    }

    .blog .info, .single-post .info {
        position: static;
        width: 100%;
    }

    .info .box {
        position: static;
        margin-top: 32px;
    }

    /*ongoing*/
    .info p,
    .info ul.tags {
        margin-bottom: 15px;
    }

    /*projects*/
    .post-type-archive-work article .entry-title,
    .tax-filter article .entry-title,
    .projects-area article .entry-title {
        white-space: normal;
        text-align: center;
    }

    .entry-content > .info {
        float: none;
        width: 100%;
        margin: 0;
    }

    .entry-content > .content {
        float: none;
    }

    /*footer*/
    .site-footer .site-branding {
        position: static;
        margin-top: 68px;
    }

    #search-overlay ul {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 568px) {
    #responsive {
        font-family: "S";
    }

    body {
        margin: 10px 10px 32px;
    }

    .site-header {
        padding: 0 10px;
    }


    #news {
        height: auto;
    }

    /*fonts*/
    body,
    button,
    input,
    select,
    textarea {
        font-size: 1.4rem;
    }

    p,
    p.aligncenter {
        margin-bottom: 21px;
    }

    .info p,
    .info ul.tags {
        margin-bottom: 11px;
    }

    h2, .single-work .entry-header h1, .site-footer .site-branding {
        font-size: 24px;
        font-size: 2.4rem;
    }

    h3, .page .wpcf7-form h2, .page .entry-title, #home, .text-large, .section-title {
        font-size: 20px;
        font-size: 2rem
    }

    .loading::after {
        font-size: 90%;
    }

    /*box-model/globals*/
    .col,
    .col.col4 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col-1-2,
    .col-1-3 {
        padding: 0 10px;
    }

    .col.col4 > .col-1-4 {
        width: 50%;
        padding: 0 10px;
    }

    #news .container .box,
    .post-type-archive-work .container .box,
    .tax-filter .container .box,
    .projects-area .container .box,
    .blog .info .box,
    .single-post .info.box {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    /*menu*/
    .menu-toggle {
        right: 10px;
    }

    .main-navigation {
        padding: 32px 10px 10px;
    }

    /*home*/
    #news .image {
        display: block;
        float: none;
        margin: 0 0 32px;
        text-align: center;
    }

    #news .container .box {
        width: 100%;
        left: 0;
    }

    .container .box .text {
        text-align: inherit;
    }

    .container .box .text p {
        display: none;
    }

    #news .image.alignleft img {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #news .container {
        display: none;
    }

    #home {
        margin: 68px 32px 100px;
    }

    /*info*/
    .entry-header-image {
        margin: -10px -10px 130px;
    }

    .page-name-info .col {
        margin-left: 0;
        margin-right: 0;
    }

    .page-name-info .col-1-2,
    .page-name-info .col-1-3 {
        float: none;
        width: 100%;
        padding: 0;
    }

    .page-template-page-info .entry-footer {
        margin-bottom: 130px;
    }

    /*projects*/
    .entry-slideshow {
        margin: 0 -10px 130px;
    }

    .entry-slideshow:hover .cycle-prev {
        margin-left: 10px;
        opacity: 0;
    }

    .entry-slideshow:hover .cycle-next {
        margin-right: 10px;
        opacity: 0;
    }

    .col > .col-1-2,
    .col > .col-1-3 {
        padding: 0 8px;
    }

    #filter li {
        display: block;
        margin: 0;
    }

    #press-list .hidden {
        display: none;
    }

    .grid--work {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 5px;
        margin: 0 5px;
    }

    .grid--work .col-1-3 {
        padding: 0;
    }

    .post-type-archive-work article:hover .container .box,
    .tax-filter article:hover .container .box,
    .projects-area article:hover .container .box {
        display: none;
    }

    .post-type-archive-work article:hover img,
    .tax-filter article:hover img,
    .projects-area article:hover img {
        opacity: 1;
    }

    /*footer*/
    .site-footer li {
        display: block;
    }

    #search-overlay ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}

@media screen and (min-width: 569px) {
    #responsive {
        font-family: "L";
    }
}
