/* *************** NOTES *******************

	Before going live:

	- Run stylesheets through autoprefixer: https://autoprefixer.github.io
	- Minify stylesheets: https://cssminifier.com/

*/

/* *************** SITE FONTS ********************** */
/* ** (Enter font info below, for easy reference) **

Font Name
--------------------
Weight: 400
Weight: 500
Weight: 700

Font Name
--------------------
Weight: 400
Weight: 500

*/

/* ************** GENERAL STYLES + RESETS ******************* */

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

html {
  font-size: 100%;
}

.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading p,
.wf-loading a {
  opacity: 0;
  transition: opacity 1s;
}

.wf-active h1,
.wf-active h2,
.wf-active h3,
.wf-active p,
.wf-active a {
  opacity: 1;
}

body {
  width: 100%;
  /* height: 100% !important; */ /* for skrollr */
  font-family: "neuzeit-grotesk", sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  font-style: normal;
  font-size: 1rem;
  background-color: #ddddd7;
  color: #404040;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.masonry {
  overflow-y: scroll;
}

.upcase {
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #f2f2f2;
  transition: border-bottom 0.2s;
}

a:hover {
  border-bottom: 1px solid transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

p {
  line-height: 1.4;
  padding-bottom: 1em;
}

em,
i {
  font-style: italic;
}

label,
input,
textarea,
select {
  font-size: 16px;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
}

input,
textarea {
  background-color: transparent;
  padding: 0px 10px;
  height: 34px;
  color: #000;
  border: 1px solid #000;

  border-radius: 0px;
  box-sizing: border-box;

  appearance: none;
  -webkit-appearance: none;
}

input[type="submit"] {
  padding: 0px 10px;
  border: 0px;
  cursor: pointer;

  border-radius: 0px;
  box-sizing: border-box;

  appearance: none;
  -webkit-appearance: none;
}

label {
  padding-bottom: 5px;
}

.clear {
  clear: both;
}

.clear-after:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.req {
  color: #c1cd23;
}

.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}

.addb4:before {
  content: "";
  display: inline-block;
  height: 100%;
  width: 0;
  vertical-align: middle;
}

.ib {
  display: inline-block;
}

.v-top {
  vertical-align: top;
}
.v-middle {
  vertical-align: middle;
}
.v-bottom {
  vertical-align: bottom;
}
.v-baseline {
  vertical-align: baseline;
}

.centerXY {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.centerY {
  position: absolute;
  top: 50%;
  left: 0%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.centerX {
  position: absolute;
  top: 0%;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cover {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
}

.cover.loaded {
  opacity: 1;
  transition: opacity 0.3s;
}

.loadme,
.loadmeview {
  opacity: 0;
}

.bg-loadme {
  opacity: 0;
}

.zeroOpacity {
  opacity: 0;
  transition: 0.5s opacity;
}

.loadme.loaded,
.loadmeview.loaded,
.bg-loadme.loaded {
  opacity: 1;
  transition: opacity 0.3s;
}

.photo.size-width {
  width: 102%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.photo.size-height {
  width: auto;
  height: 102%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.social ul {
  opacity: 0;
}

.cell {
  position: relative;
}

.cell .mediawrap {
  position: relative;
  width: 100%;
  height: 0;
}

.cell .mediawrap img.photo,
.cell .mediawrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ************** SITE STRUCTURE ******************* */

main {
  margin: 0px auto;
  position: relative;
  z-index: 1;
}

/* add "sticky-footer" class to body if sticky footer is needed: */

.sticky-footer main {
  margin: 0 auto -200px; /* 200px = height of footer */
}

.sticky-footer main:after {
  content: "";
  display: block;
  height: 200px; /* 200px = height of footer */
}

.sticky-footer footer {
  height: 200px;
}

#content:before {
  content: "";
  display: block;
  height: 100px;
}

/* ************** HEADER ******************* */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 100;
  color: #000;
  background-color: rgba(221, 221, 215, 0);
  transition: background-color 0.3s, color 0.3s;
}

.homepage header {
  color: #fff;
}

header .inner {
  position: absolute;
  z-index: 5;
  width: calc(100% - 6rem);
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
}

header .bg_mobile {
  display: none;
}

header .logo {
  width: 114px;
  display: block;
  position: relative;
  top: 0%;
  height: auto;
  border-bottom: 0px !important;
}

header .logo img,
header .logo svg {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1);
}

.homepage header .logo img {
  filter: invert(0);
  transition: filter 0.3s;
}

header .logo svg * {
  fill: #000;
}

header .mobile_nav {
  display: none;
}

header nav {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 3rem;
  width: calc(100% - 260px);
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

header nav ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

header nav ul.main {
  width: 30%;
  text-align: right;
  justify-content: flex-end;
}

header nav ul.subs {
  width: 70%;
  text-align: left;
}

header nav li {
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  margin-right: 54px;
}

header nav ul.main li {
  margin-right: 25px;
  font-size: 1.1rem;
}

header nav ul.main li:last-child {
  margin-right: 0px;
}

header nav li:last-child {
  margin-right: 0px;
}

header nav a {
  display: block;
  border-bottom: 0px;
}

header nav ul a {
  border-bottom: 1px solid transparent;
}

header nav ul a:hover,
header nav ul a.pageOn {
  border-bottom: 1px solid currentColor;
}

header nav ul.main a.pageOn,
.no-touchevents header nav ul.main a:hover {
  border-bottom: 1px solid currentColor;
}

header nav ul.subs.breadcrumb li {
  margin-right: 25px;
}

header nav ul.subs.breadcrumb li img {
  display: inline-block;
  zoom: 1;
  vertical-align: top;
  width: 6px;
  padding: 2px 6px 0px 0px;
}

header nav ul.subs.breadcrumb li a.backlink {
  color: #5f5f5f;
  border-bottom: 1px solid #5f5f5f;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
}

.header_bg header {
  background-color: rgba(255, 255, 255, 0.35);
  color: #231f20;
}

.header_bg header .logo img {
  filter: invert(1);
}

/* ************** FOOTER ******************* */

footer {
  position: relative;
  z-index: 5;
  text-align: center;
}

footer .inner {
  width: 100%;
  margin: auto;
  text-align: center;
  padding: 75px 0px;
}

footer .inner img {
  max-width: 180px;
  width: auto;
  height: auto;
}

footer .inner ul {
  list-style-type: none;
}

.social {
  margin: 35px 0px 15px auto;
}

.social li {
  margin-right: 6px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
}

.social li a {
  border-bottom: 0px !important;
}

.social li svg {
  height: 13px;
  width: auto;
}

.social li svg * {
  stroke: none;
  fill: #000;
}

footer .inner p {
  font-size: 12px;
  color: #0f0f0f;
}

/* ************** PAGE / LAYOUT SPECIFIC ***************** */

.intro {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 30;
}

.intro img.logo {
  position: absolute;
  top: 30px;
  left: 54px;
  width: 114px;
  z-index: 10;
}

.intro .downarrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  width: 40px;
  z-index: 5;
  cursor: pointer;
}

/* ************** SLIDESHOW - SLICK CAROUSEL ***************** */

.ui {
  width: 18px;
  position: absolute;
  z-index: 20;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.ui.prev {
  left: 0px;
  padding: 23px;
}
.ui.next {
  right: 0;
  padding: 23px;
}

.ui.close {
  width: 20px;
  height: 20px;
  padding: 20px 22px;
  top: 0;
  left: 0;
  -ms-transform: none;
  transform: none;
}

.ui line {
  stroke: #000000;
  stroke-width: 4;
}

.slickslideshow .cell {
  text-align: center;
  position: relative;
  font-size: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: opacity 0.6s 0.2s;
}

.slickslideshow .cell img.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slickslideshow .cell .inner {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.slickslideshow .cell iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slickslideshow .cell video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ************** GRIDS, GRIDS AND MORE GRIDS ******************* */

/* PARENT GRID CLASSES

.ar-rows - row based, "AR ROWS"
.masongrid - masonry style
.grid-alternating - alternating rows of two and three cells
.justified - Justified Gallery plugin
.animategrid - triggers animate on scroll

*/

.grid.rows {
  position: relative;
  width: calc(100% - 6rem);
  margin: 0 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.grid.rows .cell {
  position: relative;
  width: calc(33.33% - 1.33rem);
  z-index: 10;
}

.grid.rows .cell a {
  display: block;
  width: 100%;
  border-bottom: 0;
}

.grid.rows .cell.vert_top {
  align-self: flex-start;
}

.grid.rows .cell.medium {
  width: 49%;
}

.grid.rows .cell.medium.horz_right {
  margin: 0 0 0 auto;
}

.grid.rows .cell.medium.horz_middle {
  margin: 0 auto 0 auto;
}

.grid.rows .cell.large {
  width: 64%;
  margin: 0 18%;
}

.grid.rows .cell.large.horz_right {
  margin: 0 0 0 36%;
}

.grid.rows .cell.large.horz_left {
  margin: 0 36% 0 0;
}

.grid.rows .cell.xlarge {
  width: 100%;
}

.grid.rows .cell .summary {
  position: absolute;
  top: calc(100% - 75px);
  left: calc(100% - 60px);
  width: 300px;
  padding: 2rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.5s, transform 0.5s;
}

.grid.rows .cell .summary.left {
  top: calc(100% - 75px);
  right: calc(100% - 75px);
  left: auto;
}

.grid.rows .cell .summary p {
  font-size: 0.9rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.grid.rows .cell:hover {
  z-index: 15;
}

.grid.rows .cell:hover img {
  opacity: 0.7;
}

.grid.rows .cell:hover .summary {
  opacity: 1;
  transform: translateY(0);
}

.grid.rows .cell figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 10px 0 0 0;
}

.grid.rows .cell figcaption div {
  width: 50%;
  font-size: 0.9rem;
}

.grid.rows .cell figcaption .titles {
  color: #4d4d4d;
}

.grid.rows .cell figcaption .count {
  color: #7e7e7e;
}

@media all and (max-width: 896px) and (orientation: portrait) {
  .grid.rows {
    width: 100%;
    margin: 0 auto;
    gap: 2rem;
  }
  .grid.rows .cell {
    width: 80%;
    margin: 0 auto !important;
  }
  .grid.rows .cell.medium,
  .grid.rows .cell.small {
    width: 80%;
  }
  .grid.rows .cell.large {
    width: 90%;
  }
  .grid.rows .cell.xlarge {
    width: 100%;
  }
  .grid.rows .cell .summary {
    display: none;
  }
}

.gridpage .cell .info {
  z-index: 10;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s 0s, transform 0s 0.2s;
}

.no-touchevents .masongrid .cell:hover .info {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}

.gridpage .cell .photo {
  position: relative;
  z-index: 1;
}

.gridpage .cell .color {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s 0s;
}

.no-touchevents .masongrid .cell:hover .color {
  opacity: 0.83;
}

.project .intro_text {
  margin: 0 0 2rem 3rem;
  width: 90%;
  max-width: 500px;
}

.project .intro_text h1,
.project .intro_text p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 2;
}

.project .intro_text h1 {
  margin-bottom: 20px;
}

.project .intro_text p:last-child {
  margin-bottom: 0;
}

/* row-based, ar-rows */
.ar-rows {
  margin: 0 3rem 0 3rem;
  min-height: 100vh;
}

.home .ar-rows {
  min-height: 0px;
}

.inner.gridpage .ar-rows {
  margin-bottom: 100px;
}

.ar-rows .row {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

/*
.ar-rows .row:after {
    content: '';
    display: block;
    clear: both;
}
*/

.ar-rows .full-width-hovers figure {
  position: relative;
  cursor: pointer;
}

.ar-rows .full-width-hovers a.row {
  display: block;
}

.ar-rows .row .cell {
  display: block;
  width: 100%;
  float: left;
  opacity: 1;
  position: relative;
  overflow: hidden;
  border: 0px solid #fff;
  box-sizing: border-box;
}

.ar-rows .row .cell:hover img {
  opacity: 0.7;
}

.ar-rows .row .cell img {
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ar-rows .row .cell figcaption {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 30;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  opacity: 1;
  transition: opacity 0.3s;
}

.ar-rows .row .cell:hover figcaption {
  opacity: 1;
}

.ar-rows.projects .row .cell:hover img {
  opacity: 0.5;
}

.ar-rows .row .cell figcaption h1 {
  font-size: 4vw;
  font-weight: 300;
  color: #fff;
}

.ar-rows .row .cell figcaption span {
  font-size: 18px;
  color: #fff;
  display: block;
  line-height: 1.7;
}

/*masonry-style*/

.masongrid {
  width: 100%;
  list-style-type: none;
  min-height: 100%;
}

.masongrid .cell {
  display: block;
  float: left;
  /*opacity: 0;*/
  overflow: hidden;
  text-align: left;
}

.grid-sizer,
.masongrid .cell {
  width: 24.5%;
  height: auto;
}

.masongrid .cell.large {
  width: 49.66%;
}

.gutter-sizer {
  width: 0.66%;
}

.masongrid .shown,
.no-js .masongrid figure,
.no-cssanimations .masongrid figure {
  opacity: 1;
}

.masongrid figure a,
.masongrid figure img {
  outline: none;
  border: none;
  width: 100%;
  display: block;
  text-decoration: none;
}

/* Effect 1: opacity */

.masongrid.effect-1 figure.animate {
  animation: fadeIn 0.65s ease forwards;
  -webkit-animation: fadeIn 0.65s ease forwards;
  -moz-animation: fadeIn 0.65s ease forwards;
  -o-animation: fadeIn 0.65s ease forwards;
}

/* Effect 2: Move Up */
.masongrid.effect-2 figure.animate {
  opacity: 1;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-animation: moveUp 0.65s ease forwards;
  animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}

@keyframes moveUp {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
  }
  100% {
    opacity: 1;
  }
}

/* alternating cell widths grid */

.grid-alternating {
  width: 93.2%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid-alternating figure.cell {
  width: 30.83%;
  background: rgba(0, 0, 0, 1);
  font-size: 0;
  margin-bottom: 45px;

  /* sets bottom margins equal to grid gutters */
  /* first number in calc() equation is grid's width (as percentage of viewport width) */
  /* second number is "gutter" (percentage of grid's width) as a decimal */
  margin-bottom: calc(93.2vw * 0.0375);
}

.grid-alternating figure.cell:nth-child(5n + 1),
.grid-alternating figure.cell:nth-child(5n + 2) {
  width: 48.125%;
}

.grid-alternating figure.cell:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  padding-top: 56%; /* adjust this for different aspect ratios */
}

.grid-alternating .cell a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
}

.grid-alternating .cell .cover {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: 0.2s;
}

.no-touchevents .grid-alternating .cell:hover .cover {
  opacity: 0.5;
  transition: 0.3s;
}

.grid-alternating .cell figcaption {
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 10%;
  font-size: 1rem;
  z-index: 5;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s 0s, transform 0s 0.2s;
}

.no-touchevents .grid-alternating .cell:hover figcaption {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}

.grid-alternating .cell .title {
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1;
}

.grid-alternating .cell .sub-title {
  display: block;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.85em;
}

.grid-alternating .cell .title + .sub-title {
  padding-top: 1em;
}

.divider {
  width: 96%;
  margin: auto;
}

#section-cats.divider,
.inner.gridpage #section-projects.divider {
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 35px;
}

.divider h2.title {
  padding: 25px 0px 16px 0px;
  font-size: 18px;
  display: block;
}

#section-cats.divider h2.title,
.inner.gridpage #section-projects.divider h2.title {
  font-size: 16px;
}

/* grid - justified gallery */
.justified {
  width: 96%;
  margin: 0px auto 100px auto;
  min-height: 100vh;
}

.home .justified {
  min-height: 0px;
}

.inner.gridpage .justified {
  margin: 0px auto 25px auto;
}

.inner.gridpage .justified.last {
  margin-bottom: 100px;
  min-height: 0px;
}

.homepage .justified {
  min-height: 5vh;
}

.justified.videos {
  min-height: 100vh;
  margin: 0px auto 30px auto;
}

.justified .cell {
  border-bottom: 0px !important;
}

.justified .photo {
  z-index: 1;
  opacity: 1;
  transition: 0.3s;
}

.no-touchevents .justified .cell:hover .photo {
  opacity: 0.5;
  transition: 0.3s;
}

.justified .cell figcaption {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
}

.justified .cell:hover figcaption {
  opacity: 1;
}

.justified .cell:hover img {
  opacity: 0.7;
}

.justified .cell figcaption span {
  font-size: 18px;
  color: #fff;
  display: block;
  line-height: 1.7;
}

/* ************** OVERLAYS ******************* */

#overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;

  opacity: 0;
  z-index: -1;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);

  transition: z-index 0s 0.4s, transform 0s 0.4s, opacity 0.3s 0s;
  -webkit-transition: z-index 0s 0.4s, transform 0s 0.4s, opacity 0.3s 0s;
  -ms-transition: z-index 0s 0.4s, transform 0s 0.4s, opacity 0.3s 0s;
}

#overlay.on {
  opacity: 1;
  z-index: 300;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);

  transition: z-index 0s 0s, transform 0s 0s, opacity 0.3s 0s;
  -webkit-transition: z-index 0s 0s, transform 0s 0s, opacity 0.3s 0s;
  -ms-transition: z-index 0s 0s, transform 0s 0s, opacity 0.3s 0s;
}

#overlay .closer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: none;
}

.closeicon {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 200;
  cursor: pointer;
  width: 35px;
  height: 35px;
  transform: scale(1);
  backface-visibility: hidden;

  transition: transform 0.2s;
}

header .closeicon {
  top: 13px;
  right: 10px;
}

.closeicon:hover {
  transform: scale(0.8);
}

.closeicon .line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
  top: 48%;
  position: absolute;
}

.closeicon .line:last-child {
  transform: rotate(-45deg);
}

#overlay .inner {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  width: 85%;
  height: 90%;
  margin: auto;
}

#overlay .inner .arrows .arrow {
  position: fixed;
  top: 50%;
  z-index: 30;
  cursor: pointer;
  color: #fff;
  width: 30px;
  height: 30px;
}

#overlay .inner .arrows .arrow.next {
  right: 25px;
  transform: rotate(180deg);
}

#overlay .inner .arrows .arrow.prev {
  left: 25px;
}

#overlay .inner .arrows .line {
  display: block;
  width: 15px;
  height: 2px;
  background-color: #fff;
  transform: rotate(45deg);
  top: 18px;
  position: absolute;
  left: 5px;
}

#overlay .inner .arrows .line:last-child {
  transform: rotate(-45deg);
  top: 8px;
}

#overlay .inner .imgwrap {
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 0px;
  letter-spacing: 0px;
}

#overlay .inner .imgwrap:before {
  content: "";
  width: 0px;
  height: 100%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
}

#overlay .inner .imgwrap .centerme {
  /* width: 90%;
	height: 90%; */
  width: 100%;
  height: 100%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  text-align: center;
  vertical-align: middle;
}

#overlay .inner .imgwrap .centerme:before {
  content: "";
  width: 0px;
  height: 100%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
}

#overlay .inner a {
  border-bottom: 0px;
}

#overlay .inner .imgwrap .centerme img {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
  margin: 0px auto;
  opacity: 0;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#overlay .inner .videowrap {
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 0px;
  letter-spacing: 0px;
}

#overlay .inner .videowrap:before {
  content: "";
  width: 0px;
  height: 100%;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: middle;
}

#overlay .inner .videowrap .centerme {
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
  width: 100%;
  margin-right: 0px;
}

#overlay .inner .info {
  color: #c5c5c5;
  text-align: left;
  padding-top: 17px;
  padding-left: 9px;
  line-height: 2;
  opacity: 0;
}

#overlay .inner .info h1 {
  font-size: 14px;
  letter-spacing: 0.05em;
  /* font-family: "base-mono-narrow",monospace; */
}

#overlay .inner .info p {
  font-size: 11px;
  letter-spacing: 0em;
}

#overlay .inner iframe {
  position: relative;
  z-index: 100;
  opacity: 0;
  display: inline-block;
  margin-right: -4px;
  vertical-align: middle;
}

/* ************** TEXT PAGE ******************* */

.inner.textpage {
  width: 90%;
  max-width: 1060px;
  margin: 60px auto 60px 9rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.inner.textpage .col {
  display: block;
  width: 300px;
}

.inner.textpage .col:last-child {
  width: calc(100% - 350px);
}

.inner.textpage h1 {
  font-size: 24px;
}

.inner.textpage h2 {
  font-size: 20px;
}

.inner.textpage h3 {
  font-size: 18px;
}

.inner.textpage p {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.inner.textpage a {
  border-bottom: 1px solid currentColor;
}

.inner.textpage .col:first-child p {
  font-size: 14px;
}

.inner.textpage .social {
  margin-top: 0px;
}

.inner.textpage .social ul li {
  margin-right: 12px;
}

.inner.textpage .social ul li svg {
  width: 15px !important;
  height: auto;
}

.inner.textpage .social ul li svg * {
  fill: #404040;
}

.homepage-nav {
  display: none;
}
