/*

TYPEKIT FONTS:

Proxima Nova
------------
Semibold: 600
Black: 900

FreightBig Pro
----------
Medium (+ italic): 500
Bold: 700

*/

/* General Styles + Resets ================ */
/* ======================================== */

* {
  padding: 0px;
  margin: 0px;
  border: none;
  outline: none;
}

.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading p,
.wf-loading a,
.wf-loading ul {
  opacity: 0;
  transition: opacity 0.3s;
}

.wf-active h1,
.wf-active h2,
.wf-active h3,
.wf-active p,
.wf-active a,
.wf-active ul {
  opacity: 1;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100% !important;
  font-family: "freight-big-pro", serif;
  font-weight: 500;
  font-size: 100%;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
  overflow-y: scroll;
  /*-webkit-font-smoothing: antialiased;*/
  /*-moz-osx-font-smoothing: grayscale;*/
}

.sans {
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05rem;
}

.sans.light {
  font-weight: 600;
}

.sans.medium {
  font-weight: 500;
}

.nimbus {
  font-family: "nimbus-sans", sans-serif;
  letter-spacing: 0.05rem;
}

.upcase {
  text-transform: uppercase;
}

/* typekit smooth loading class */
.wf-loading .tk-fade {
  opacity: 0;
}

.wf-active .tk-fade {
  opacity: 1;
  transition: opacity 0.2s 0.2s;
}

p,
ul,
ol {
  font-size: 100%;
  font-size: 1.25vw;
}

@media all and (max-width: 1280px) {
  p,
  ul,
  ol {
    font-size: 100%;
  }
}

p strong,
li strong {
  font-weight: 700;
}

.loadme,
.bg-loadme {
  opacity: 0;
  transition: opacity 0.3s;
}

.justified .loadme {
  opacity: 0 !important;
}

.loaded,
.bg-loadme .loaded {
  opacity: 1 !important;
}

.justified .loaded {
  opacity: 1 !important;
}

/* 2022 ADDITION OF AR ROWS */

.playIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%) scale(1);
  width: 100px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s;
}

.playIcon:hover {
  transform: translate(-50%, -50%) scale(0.95);
}

@media all and (max-width: 767px) {
  .playIcon {
    width: 50px;
  }
}

.ar-rows {
  position: relative;
  width: 84%;
  margin: 0px auto;
}

.ar-rows .row {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.ar-rows .row .cell {
  float: left;
  opacity: 1;
  position: relative;
  overflow: hidden;
  border: 0px solid #fff;
  box-sizing: border-box;
}

.ar-rows .row .cell .overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s 0s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.no-touchevents .ar-rows .row .cell:hover .overlay {
  opacity: 1;
  transition: opacity 0.2s 0s;
}

.no-touchevents .ar-rows .row .cell:hover .overlay figcaption {
  opacity: 1;
}

.ar-rows .row .cell figcaption {
  width: 90%;
  padding-left: 5%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s 0s;
}

.ar-rows .row .cell figcaption h2 {
  font-size: 1.3rem;
  line-height: 0.95;
  color: #000;
}

.ar-rows .row .cell figcaption h3 {
  font-size: 1rem;
  color: #000;
  margin-top: 5px;
}

.ar-rows .row .cell img.photo {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
}

@media all and (max-width: 767px) {
  .ar-rows .row {
    display: block;
    width: 100%;
  }
  .ar-rows .row .cell {
    display: block;
    width: 100% !important;
    height: auto !important;
    float: none;
    margin-bottom: 10px;
  }
  .ar-rows .row .cell img.photo {
    width: 100%;
    height: auto !important;
  }
}

/* 2022 ADDITION OF AUTOPLAY VIDEO WITHIN GRIDS */

.cell .mediawrap {
  position: relative;
  width: 100%;
  height: 0;
}

.cell .mediawrap img.photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cell .vidhold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.slideshow .cell.autovideo .vidhold {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideshow .cell.autovideo .vidhold video {
  position: relative;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: unset;
}

.cell.playing .vidhold {
  opacity: 1;
}

.cell .vidhold video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  /*border-bottom: 1px solid #d264c8;*/
}

p a:link,
p a:visited {
  /* NOTE: using child selectors here for the li links
	to avoid conflict with the main nav's links */
  position: relative;
  display: inline-block;
}

p a:link:after,
p a:visited:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
}

.no-touchevents p a:hover:after,
.no-touchevents p a:active:after {
  width: 100%;
}

button {
  border-radius: 0;
  outline: 0;
}

button:focus,
button:active,
button:active:focus {
  outline: 0;
  outline-offset: 0;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.left {
  float: left;
}
.right {
  float: right;
}
.clear {
  clear: both;
}

.addb4:before {
  content: "";
  display: inline-block;
  height: 100%;
  width: 0px;
  /*margin-right: -4px;*/
  vertical-align: middle;
}

.ib {
  display: inline-block;
  margin-right: -4px;
}

.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%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.centerY {
  /*position: absolute;*/
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.centerX {
  /*position: absolute;*/
  top: 0%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cover {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.mobileOnly {
  display: none;
}

/* Site Structure + Sticky Footer Necessities  ========= */
/* ===================================================== */

main {
  min-height: 100%;
  margin: 0px auto;
  position: relative;
  z-index: 9;
}

.home.menuOn main {
  z-index: 20;
}

.sticky-footer main {
  margin: 0px auto -326px; /* height of footer */
}

.sticky-footer main:after {
  content: "";
  display: block;
  height: 326px;
}

.holder:before {
  content: "";
  display: block;
  height: 100px;
}

/* Header ============================== */
/* ===================================== */

header,
.fixHeader .home header {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10;
  width: 100%;
}

.home header {
  position: relative;
}

header .inner {
  position: relative;
  z-index: 2;
  height: 0px;
  background-color: rgba(255, 255, 255, 0);
}

header.solid .inner {
  position: relative;
  z-index: 2;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.97);
  transition: background-color 0.5s 0s, height 0s 0s;
}

.menuOn header.solid .inner {
  height: 0px;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.5s 0s, height 0s 0.5s;
}

header .inner h1 {
  position: absolute;
  top: 40px;
  left: 3.75%;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding-bottom: 3px;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.2s 0s, transform 0s 0s;
}

.menuOn header .inner h1 {
  opacity: 0;
  transform: translateY(-200px);
  transition: opacity 0.2s 0s, transform 0s 0.2s;
}

header .inner h1 a {
  position: relative;
}

header .inner h1 a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  transition: width 0.2s 0s;
}

.no-touchevents header .inner h1 a:hover:after,
.touchevents header .inner h1 a:after {
  width: 100%;
}

header .logo {
  position: absolute;
  top: 38px;
  color: #000;
}

header .inner .logo {
  opacity: 1;
  transition: opacity 0.3s 0.2s !important;
}

.menuOn header .inner .logo {
  opacity: 0;
}

header .logo a {
  letter-spacing: 0.1em;
  font-size: 21px;
}

.menuBtn {
  position: fixed;
  right: 25px;
  top: 25px;
  font-size: 0.7rem;
  display: block;
  cursor: pointer;
  padding-bottom: 3px;
  opacity: 1;
  transition: z-index 0s 0.4s;
}

.menuBtn:nth-last-child(2) {
  color: #000;
  z-index: 2;
}

.home .menuBtn:nth-last-child(2) {
  color: #fff;
  z-index: 2;
}

.black .menuBtn:nth-last-child(2) {
  color: #000;
  z-index: 2;
}

.fixHeader .menuBtn:nth-last-child(2) {
  color: #000;
  z-index: 2;
}

.menuBtn:last-child {
  color: #ffffff;
  z-index: 1;
}

.slideshow.black .menuBtn:last-child {
  color: black;
}

.menuOn .menuBtn:nth-last-child(2) {
  z-index: 1;
}

.menuOn .menuBtn:last-child {
  z-index: 2;
}

/*menu WORD*/
.menuBtn.open span {
  position: relative;
  opacity: 1;
  transition: opacity 0.3s 0.5s;
}
.menuBtn.close span {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.menuOn .menuBtn.open span {
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.menuOn .menuBtn.close span {
  opacity: 1;
  transition: opacity 0.3s 0.5s;
}

/*menu WORD hüvers*/
.no-touchevents .menuBtn.open:hover span {
  opacity: 1;
  transition: opacity 0.3s 0.5s;
}
.no-touchevents .menuBtn.close:hover span {
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.no-touchevents .menuOn .menuBtn.open:hover span {
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.no-touchevents .menuOn .menuBtn.close:hover span {
  opacity: 1;
  transition: opacity 0.3s 0.5s;
}

/*menu UNDERLINE*/
.menuBtn:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  height: 1px;
  background-color: currentColor;
  width: 0%;
  transition: width 0.2s ease-in-out 0s;
}

/*menu UNDERLINE hüvers*/
.no-touchevents .menuBtn:hover:after {
  width: 100%;
}

.menu-overlay {
  color: #ffffff;
  text-align: left;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
  transition: transform 0s 0.5s, opacity 0.3s 0.2s;
}

.menuOn .menu-overlay {
  transform: translateX(0%);
  opacity: 1;
  transition: transform 0s 0s, opacity 0.3s 0.2s;
}

.menu-overlay .logo {
  position: absolute;
  z-index: 1;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s 0.2s !important;
}

.menuOn .menu-overlay .logo {
  opacity: 1;
}

.menu-overlay nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(18, 18, 18, 0.96);
}

.menu-overlay nav > div {
  /*				
				position: relative;
			    left: 31.4%;
			    top: 52%;
			    width: 62%;
			    */
  position: absolute;
  left: 6%;
  top: 52%;
  width: 88%;
}

.menu-overlay nav > div p {
  font-weight: 700;
  line-height: 1;
  padding-bottom: 1em;
  letter-spacing: 0.04em;
}

header nav ul {
  list-style-type: none;
  text-align: center;
}

header nav ul li {
  font-size: 3.69vw;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0.1em 0 0.15em;
}

header nav ul li:last-child {
  font-size: 2vw;
  padding-top: 1.4em;
  padding-bottom: 0em;
}

header nav ul li div {
  display: inline-block;
}

header nav ul li a {
  display: block;
  text-decoration: none;
  position: relative;
  transform-origin: 0 0;
  transform: scale(1);
  /*transition: transform .2s ease 0s;*/

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.menu-overlay .info-col {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.96);
}

.menu-overlay .info-col > div {
  position: relative;
  left: 22.5%;
  top: 51.5%;
  width: 56%;
}

.menu-overlay .info-col h2 {
  letter-spacing: 0.06em;
  padding-bottom: 1.2em;
  line-height: 1.4;
  font-size: 100%;
  font-size: 1.25vw;
  font-weight: 500;
}

.menu-overlay .info-col p {
  letter-spacing: 0.06em;
  padding-bottom: 1.2em;
  line-height: 1.4;
}

.menu-overlay .info-col ul,
.menu-overlay .info-col ol {
  list-style-type: none;
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  font-size: 1.05vw;
  letter-spacing: 0.07em;
  line-height: 1;
  padding-bottom: 1.2em;
}

@media all and (max-width: 1280px) {
  .menu-overlay .info-col ul,
  .menu-overlay .info-col ol {
    font-size: 0.85rem;
  }
}

.menu-overlay .info-col ul li {
  padding: 0.3em 0 0.4em;
}

.menu-overlay .info-col a:after {
  background-color: #fff;
  bottom: -2px;
}

.menu-overlay .info-col *:last-child {
  padding-bottom: 0;
}

.menuOn .menu-overlay {
  transform: translateX(0%);
}

/* Header 2022 - top nav */
/* ===================================== */

header.top_nav .inner h1 {
  display: none;
}

header.top_nav .inner .logo {
  left: 30px;
  top: 30px;
  transform: unset;
}

header.top_nav .menuBtn {
  display: none;
}

header.top_nav nav {
  position: absolute;
  top: 39px;
  right: 30px;
}

header.top_nav nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

header.top_nav nav ul li {
  margin: 0 8px;
  padding: 0;
  font-size: 1.1rem;
  position: relative;
}

header.top_nav nav ul li a {
  color: #000;
  transition: color 0.2s;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

header.top_nav nav ul li a.withsubs:before {
  content: "•";
  display: block;
  order: 2;
  margin-left: 5px;
}

header.top_nav nav ul li .subwrap {
  position: absolute;
  top: 0;
  left: -60%;
  width: 240%;
}

header.top_nav nav ul li:last-child .subwrap {
  left: -85%;
}

header.top_nav nav ul li .subwrap .top_arrow {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: lighten;
  display: none;
}

header.top_nav nav ul li ul.sub {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #fff;
  border: 1px solid #707070;
  padding: 10px 15px;
  margin-top: 35px;
  text-align: left;
  display: none;
}

header.top_nav nav ul li.hasSubs:hover ul.sub,
header.top_nav nav ul li.hasSubs:hover .subwrap .top_arrow {
  display: block;
}

header.top_nav nav ul li ul.sub li {
  padding: 0;
  margin: 4px 0;
}

header.top_nav nav ul li ul.sub li a {
  font-size: 0.8rem;
  font-weight: 500;
}

@media all and (max-width: 896px) and (orientation: portrait) {
  header.top_nav nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #1b1b1b;
    color: #fff;
    align-items: flex-start;
    overflow-y: scroll;
  }
  header.top_nav nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 150px auto;
  }
  header.top_nav nav ul li .subwrap,
  header.top_nav nav ul li:last-child .subwrap {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  header.top_nav nav ul li .subwrap .top_arrow {
    display: none !important;
  }
  header.top_nav nav ul li ul.sub {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    display: block;
    background: transparent;
    border: 0;
    margin-top: 0;
    padding: 0;
    margin: 15px auto 10px auto;
    display: none;
  }
  header.top_nav nav ul li ul.sub li {
    padding: 3px 0px;
  }
  header.top_nav nav ul li ul.sub li a {
    font-size: 1.1rem;
    color: #989898;
  }
  header.top_nav nav ul li {
    padding: 7px 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  header.top_nav nav ul li a {
    color: #fff;
    font-size: 1.4rem;
  }
  header.top_nav .menuBtn {
    display: block;
  }
  .menuOn header.top_nav .inner .logo {
    opacity: 1;
    color: #fff;
  }
  .menuOn header.top_nav nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}

@media all and (max-width: 767px) {
  header.top_nav .inner h1 {
    display: block;
  }
  header.top_nav .inner .logo {
    top: 55px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}

/* Header 2024 - centered logo */
/* ===================================== */

header.top_nav.centered .inner .logo {
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
}

header.top_nav.centered nav.work {
  right: auto;
  left: 30px;
}

header.top_nav.centered nav.work li:first-child {
  margin-left: 0;
}

header.top_nav.centered nav {
  top: 19px;
}

header.top_nav.centered nav li {
  margin: 0 16px;
}

header.top_nav.centered nav li.mobile_only {
  display: none;
}

header.top_nav.centered nav li:last-child {
  margin-right: 0;
}

header.top_nav.centered nav a {
  font-weight: 700;
  font-size: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

header.top_nav.centered nav a svg {
  margin-left: 5px;
}

header.top_nav.centered nav ul li:last-child .subwrap {
  left: 0;
}

header.top_nav.centered nav ul.sub {
  border: 0;
  padding: 0 0 0 0;
  margin-top: 25px;
}

header.top_nav.centered nav ul.sub li a {
  font-weight: 700;
  font-size: 0.7rem;
  padding-bottom: 0px;
  position: relative;
  display: inline-block;
}

header.top_nav.centered nav ul.sub li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 0.3s;
}

header.top_nav.centered nav ul.sub li a.pageOn:after {
  width: 100%;
}

header.top_nav.centered nav ul.sub li a:hover:after {
  width: 100%;
}

header.top_nav.centered nav a.withsubs:after {
  display: none !important;
}

header.top_nav.centered nav ul li a.withsubs:before {
  display: none !important;
}

@media all and (max-width: 896px) and (orientation: portrait) {
  header.top_nav.centered .menuBtn {
    right: 5%;
  }

  header.top_nav.centered .inner {
    height: 60px;
  }

  header.top_nav.centered .logo a {
    font-size: 17px;
  }

  header.top_nav.centered .inner .logo {
    left: 5%;
    top: 18px;
    transform: translateX(0);
    text-align: left;
  }

  header.top_nav.centered nav ul.sub {
    margin-top: 8px;
  }

  header.top_nav.centered nav a {
    font-size: 1.1rem;
    padding: 3px 0;
  }

  header.top_nav.centered nav a svg {
    position: absolute;
    left: 105%;
    fill: #fff;
  }

  header.top_nav.centered nav ul.sub li a:after {
    bottom: 0px;
    background-color: #fff;
  }

  header.top_nav.centered nav ul li ul.sub li a {
    font-size: 1.1rem;
    padding: 3px 0;
    color: #fff;
  }

  header.top_nav.centered nav ul li a:hover {
    color: #fff;
  }

  header.top_nav.centered nav.work {
    display: none !important;
  }

  header.top_nav.centered nav li.mobile_only {
    display: flex;
  }
}

.menuOn header.top_nav.centered nav {
  top: 0 !important;
  left: 0 !important;
}

.menuOn header.top_nav.centered nav ul li {
  margin: 0 auto;
}

/* Footer ============================== */
/* ===================================== */

footer {
  text-align: center;
  position: relative;
  z-index: 15;
  width: 84%;
  margin: 0 auto;
  border-top: 1px solid #b5b5b5;
  border-bottom: none;
  box-sizing: border-box;
  padding: 20px 0 30px 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.fluids footer {
  opacity: 1;
  transition: opacity 0.3s 0.5s;
}

#back2top {
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #000;
  background-color: transparent;
  font-size: 1.1em;
  letter-spacing: 0.03em;
  appearance: none;
  cursor: pointer;
}

#back2top .arrow {
  fill: currentColor;
  transform: rotate(90deg);
  transform-origin: 50% 50%;
  position: relative;
  display: inline-block;
  width: 13px;
}

#back2top .arrow path {
  fill: inherit;
}

#back2top span {
  display: block;
  font-weight: 900;
  line-height: 1;
}

footer p {
  font-size: 1rem;
  font-family: "nimbus-sans", sans-serif;
}

footer p a {
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.2s;
}

footer p a:after {
  display: none !important;
}

footer p a:hover {
  opacity: 0.7;
}

@media all and (max-width: 1280px) {
  footer p {
    font-size: 1.13rem;
  }
}

footer p a strong,
footer p a b {
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
}

footer p#credit a.extLink {
  font-size: 100%;
}

footer p#credit {
  font-size: 0.9rem;
  color: #898989;
  font-family: "nimbus-sans", sans-serif;
}

/* 2022 single column info page */

.single-column {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 80px auto 0 10%;
  width: 90%;
  max-width: 900px;
  font-family: "proxima-nova", sans-serif;
  font-size: 1rem;
}

.single-column p,
.single-column li {
  font-weight: 300;
  font-size: 1rem;
  font-family: "proxima-nova", sans-serif;
}

.single-column p {
  margin-bottom: 20px;
}

.single-column p img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.single-column ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.single-column h2 {
  font-weight: 700;
  font-size: 1rem;
}

@media all and (max-width: 767px) {
  .single-column {
    width: 90%;
    margin: 40px auto 0 auto;
  }
}

/* Homepage ============================ */
/* ================================= */

.holder.home:before {
  display: none;
}

#hero {
  position: relative;
  z-index: 1;
}

.home #thumbs,
.home .ar-rows {
  margin-top: 100px;
}

.home .ar-rows {
  width: 84%;
}

@media all and (max-width: 896px) and (orientation: portrait) {
  .home .ar-rows {
    width: 90%;
  }
  .home #thumbs,
  .home .ar-rows {
    margin-top: 60px;
  }
}

#logo-frame {
  width: 100%;
  position: fixed;
  z-index: 2;
}

#logo-frame .logo {
  text-transform: uppercase;
  color: #fff;
  width: 788px;
  text-align: center;
  font-size: 3.2rem;
  font-size: 4vw;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%) scale(1);
}

.black #logo-frame .logo {
  color: #000;
}

#logo-frame .logo.black {
  color: #000;
  opacity: 0 !important;
}

#logo-frame .logo.small {
  width: 238px;
  clip: rect(0px 238px 25px 0px);
}

#logo-frame .logo.black.small {
  opacity: 1 !important;
  clip: rect(0px 238px 0px 0px);
}

#hero figure {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.holder.home article {
  position: relative;
  z-index: 2;
}

/* Grids =========================== */
/* ================================= */

/* Grid 1: square thumbnail containers, 2-column */
/* Grid 2: masonry grid */
/* Grid 3: square thumbnail containers, 3-column */
/* Grid 4: square thumbnail containers, 4-column */

.thumbs {
  width: 84%;
  margin: auto;
}

.thumbs.medium {
  width: 84%;
  padding-bottom: 100px;
}

.thumbs.narrow {
  width: 73%;
  padding-bottom: 100px;
}

/* Grid 1: homepage, squares */
.grid-1:before {
  content: "";
  display: block;
  width: 100%;
  height: 105px;
}

.grid-1 .cell {
  width: 30%;
  text-align: center;
  position: relative;
  margin-right: 5%;
  margin-left: -4px;
}

.grid-1 .cell:nth-child(3n) {
  margin-right: 0%;
}

.grid-1 .cell.large {
  width: 100%;
  margin-right: 0px;
}

.grid-1 .cell .imgHolder {
  width: 100%;
  text-align: center;
}

.grid-1 .cell .photo {
  width: 100%;
  height: auto;
  opacity: 1;
}

.grid-1 .cell.portrait .photo {
  height: 100%;
  width: auto;
  opacity: 1;
}

.grid-1 .cell figcaption {
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 1em;
  transform: translateX(0px);
  transition: transform 0.5s 0s;
}

.no-touchevents .grid-1 .cell:hover figcaption {
  transform: translateX(10px);
  transition: transform 0.2s 0s;
}

.grid-1 .cell figcaption:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 0%;
  background-color: #cacaca;
  position: absolute;
  bottom: -20px;
  left: 0;
  opacity: 0;
  transition: width 0.5s 0s, opacity 0.5s 0s;
}

.no-touchevents .grid-1 .cell:hover figcaption:after {
  width: calc(100% - 10px);
  opacity: 1;
  transition: width 0.2s 0s, opacity 0.2s 0s;
}

.thumbs figcaption h2 {
  font-size: 1.55vw;
}

.thumbs figcaption h3 {
  font-size: 1vw;
}

.thumbs figcaption h2 + h3 {
  padding-top: 0.5em;
}

@media all and (max-width: 970px) {
  .thumbs figcaption h2 {
    font-size: 1.4rem;
  }

  .thumbs figcaption h3 {
    font-size: 0.8rem;
  }
}

/* Grid 2: stories grid, masonry */
.grid-2 .gutter-sizer {
  width: 40px;
}

.grid-2 .grid-sizer {
  width: calc(33.33% - 40px);
}

.grid-2 .cell {
  width: calc(33.33% - 40px);
  float: left;
  display: block;
  margin-bottom: 40px;
}

.grid-2 .cell a {
  display: block;
}

.grid-2 .cell .photo {
  outline: none;
  border: none;
  display: block;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.grid-2 .cell .overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.67);
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s 0s;
}

.no-touchevents .grid-2 .cell:hover .overlay {
  opacity: 1;
  transition: opacity 0.2s 0s;
}

.grid-2 figcaption {
  width: 90%;
  text-align: center;
  opacity: 0;
  color: #000;
  transition: opacity 0.3s 0s;
}

.shop .grid-2 figcaption {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.shop .cartLink {
  width: 84%;
  margin: 0 auto 20px auto;
  text-align: left;
}

.no-touchevents .grid-2 .cell:hover figcaption {
  opacity: 1;
  transition: opacity 0.4s 0.15s;
}

.thumbs.grid-2 figcaption h2 {
  /*font-size: 1.95rem;*/
  font-size: 1.3rem;
  line-height: 0.95;
}

.thumbs.grid-2 figcaption h3 {
  /*font-size: 1.08rem;*/
  font-size: 1.15vw;
  letter-spacing: 0.04em;
  font-family: proxima-nova;
}

.thumbs.grid-2 figcaption h2 + h3 {
  padding-top: 0.3em;
}

/* Grid 3: square thumbnails, 4-column */
.squares {
  padding-bottom: 35px;
}

.squares .cell {
  width: calc(25% - 5px);
  float: left;
  display: block;
  text-align: center;
  margin-right: 5px;
  margin-bottom: 5px;
}

.no-csscalc .squares .cell {
  width: 22%;
}

.grid-3 .cell:nth-child(4n) {
  width: 25%;
  margin-right: -2px;
}

/*couple media queries to make images PERFECTLY flush*/
@media all and (min-width: 1280px) {
  .grid-3 .cell:nth-child(4n) {
    margin-right: 0px;
  }
}
@media all and (min-width: 1940px) {
  .squares .cell {
    width: calc(25% - 5px);
  }
  .no-csscalc .squares .cell {
    width: 22%;
  }
}

.squares .cell:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0px;
  height: 100%;
  margin-right: -3px;
}

.squares .cell.portrait:before {
  display: none;
}

.squares .cell a {
  display: inline-block;
  vertical-align: middle;
}

.squares .cell.portrait a {
  display: inline;
}

.squares .cell .photo {
  display: inline-block;
  height: auto;
  width: 100%;
}

.squares .cell.portrait .photo {
  width: auto;
  height: 100%;
}

/* Grid 4: square thumbnails, 4-column */
/* uses grid 3 (aka '.squares') styles, with overrides: */

.grid-4 .cell {
  width: calc(25% - 4px);
}

.no-csscalc .grid-4 .cell {
  width: 22%;
}

.grid-4 .cell:nth-child(4n) {
  width: calc(25% - 3px);
  margin-right: 0px;
}

/* Grid navigation ================= */
/* ================================= */
.grid-text {
  width: auto;
  margin: 0 auto;
  position: fixed;
  top: 67px;
  left: 3.75%;
  z-index: 11;
}

.grid-text ul {
  list-style-type: none;
  /*font-size: 0.85vw;*/
  font-size: 11px;
  letter-spacing: 0.1em;
}

.grid-text ul li {
  display: inline-block;
  vertical-align: baseline;
}

.grid-text ul li:first-child {
  font-weight: 600;
}

.grid-text ul li a {
  display: block;
  margin-left: 6px;
  padding-bottom: 3px;
  position: relative;
}

.grid-text ul li a:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0px;
  left: 0px;
  width: 0%;
  height: 1px;
  background-color: #000000;
}

.grid-text ul li a.pageOn:after {
  width: 100%;
}

/* Story Titles ==================== */
/* ================================= */

h2.story-heading {
  width: 84%;
  margin: 0 auto 1em;
  border-top: 1px solid #000000;
  padding-top: 1em;
  font-size: 1.24rem;
  font-size: 1.55vw;
  text-align: center;
}

.story_page .holder {
  margin-top: 50px;
}

.storyText {
  width: 84%;
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

.storyText h1,
.storyText h2,
.storyText h3 {
  font-family: "nimbus-sans", sans-serif;
  margin-bottom: 16px;
  letter-spacing: 0.05rem;
}

.storyText h1 {
  font-size: 1.4rem;
}

.storyText h2 {
  font-size: 1.4rem;
}

.storyText h3 {
  font-size: 1.2rem;
}

.storyText p {
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 0.9rem;
  font-family: "nimbus-sans", sans-serif;
}

h2.story-heading span:first-child {
  display: block;
  letter-spacing: 0.06em;
}

h2.story-heading span:last-child {
  font-weight: 700;
  font-size: 75%;
  letter-spacing: 0.05em;
  display: block;
  padding-top: 0em;
}

@media all and (max-width: 1280px) {
  h2.story-heading {
    font-size: 1.24rem;
  }
}

/* Slideshow ======================= */
/* ================================= */

body.slideshow {
  background-color: #0a0a0a;
  overflow: hidden;
}

.slideshow header .inner h1,
.slideshow .logo,
.slideshow .menuBtn:nth-last-child(2),
.slideshow .holder:before,
.slideshow header.top_nav nav,
.slideshow footer,
.story_page header .inner h1,
.story_page .logo,
.story_page .menuBtn:nth-last-child(2),
.story_page .holder:before,
.story_page header.top_nav nav,
.story_page footer {
  display: none;
}

.slideshow header.top_nav .menuBtn,
.story_page header.top_nav .menuBtn {
  display: block;
}

/*slideshow: close button overrides:; */
.slideshow .menuBtn:nth-last-child(2) {
  z-index: 1;
}

.slideshow .menuBtn:last-child {
  z-index: 2;
}

.slideshow .menuBtn:nth-last-child(2) span {
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.slideshow .menuBtn:last-child span {
  opacity: 1;
  font-weight: 700;
  transition: opacity 0.3s 0.5s;
}
.slideshow .menuBtn:nth-last-child(2):after {
  width: 0%;
  transition: width 0.2s ease-in-out 0s;
}
.slideshow .menuBtn:last-child:after {
  width: 0%;
  transition: width 0.2s ease-in-out 0s;
}

.story_page .menuBtn:last-child {
  z-index: 2;
}

.story_page .menuBtn:nth-last-child(2) span {
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.story_page .menuBtn:last-child span {
  color: #000 !important;
  opacity: 1 !important;
  font-weight: 700;
  transition: opacity 0.3s 0.5s;
}

.story_page .menuBtn:nth-last-child(2):after {
  width: 0%;
  transition: width 0.2s ease-in-out 0s;
}
.story_page .menuBtn:last-child:after {
  width: 0%;
  transition: width 0.2s ease-in-out 0s;
}

/*hüvers*/
.no-touchevents .slideshow .menuBtn:nth-last-child(2):hover span {
  opacity: 0;
  transition: opacity 0.3s 0.2s;
}
.no-touchevents .slideshow .menuBtn:last-child:hover span {
  opacity: 1;
  transition: opacity 0.3s 0.5s;
}
.no-touchevents .slideshow .menuBtn:nth-last-child(2):hover:after {
  width: 100%;
  opacity: 0;
  transition: width 0.2s ease-in-out 0s;
}
.no-touchevents .slideshow .menuBtn:last-child:hover:after {
  width: 100%;
  opacity: 1;
  transition: width 0.2s ease-in-out 0s;
}

.slideshow .holder {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#slideshow-container {
  background-color: #0a0a0a;
  top: 0px;
  left: 0px;
  overflow: hidden;
  /*opacity: 0;*/
}

#slideshow-container .mediahold {
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 5;
  width: 10px;
  padding: 3.75% 25px;
  height: auto;
  cursor: pointer;
  transition: opacity 0.2s 0s, z-index 0s 0s;
}

.arrow.slick-disabled {
  opacity: 0;
  z-index: -99;
  transition: opacity 0.2s 0s, z-index 0s 0.2s;
}

.arrow.prev {
  left: 0%;
}

.arrow.next {
  right: 0%;
}

.arrow path {
  fill: white;
  stroke: none;
}

.black .arrow path {
  fill: black;
}

.download {
  position: absolute;
  bottom: 27px;
  color: white;
  text-align: left;
  width: 100px;
  z-index: 1;
  transition: z-index 0s 0.15s, opacity 0.15s 0s, transform 0.3s 0s,
    color 0.3s 0s, fill 0.3s 0s;
}

.black .download {
  color: black;
}

.download-std {
  left: 25px;
}

.download-alt {
  left: 53.75%;
  opacity: 0;
  z-index: -99;
  transition: z-index 0s 0.15s, opacity 0.15s 0s;
}

.download .arrow {
  position: relative;
  top: 0;
  transform: none;
  width: 10px;
  height: auto;
  padding: 0;
  margin-right: 5px;
}

.download span {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding-left: 2px;
}

.pager {
  color: white;
  position: absolute;
  z-index: 1;
  bottom: 29px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.black .pager {
  color: black;
}

.pager-std {
  right: 25px;
  transform: translateX(0);
  transition: transform 0.4s ease 0s;
}

.pager-std.xAdj {
  transform: translateX(0px);
}

.show-popup .pager-std {
  transform: translateX(0px);
  transition: transform 0.4s ease 0s;
}

.pager-std .trigger {
  cursor: pointer;
  line-height: 1;
  margin-left: 9px;
  display: inline-block;
}

.pager-std .trigger.hide {
  display: none;
}

.pager-std .trigger svg {
  width: 10px;
  height: auto;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 4px;
  opacity: 0;
  transition: opacity 0.2s 0s;
}

.show-popup .pager-std .trigger svg {
  opacity: 1;
  transition: opacity 0.2s 0.2s;
}

.show-popup .pager-std .trigger svg {
  opacity: 1;
}

.pager-std .trigger svg polygon {
  fill: white;
  stroke: none;
}

.pager-alt {
  right: 53.75%;
  opacity: 0;
  z-index: -99;
  transition: z-index 0s 0.15s, opacity 0.15s 0s;
}

.pager .trigger {
  margin-left: 9px;
}

.show-alt-ui .pager-alt,
.show-alt-ui .download-alt {
  opacity: 1;
  z-index: 1;
  transition: z-index 0s 0s, opacity 0.3s 0.4s, transform 0.3s 0s, color 0.3s 0s,
    fill 0.3s 0s;
}

.pager-alt,
.download,
.download-alt,
.download .arrow path {
  transform: translateY(0px);
}

.show-popup .pager-alt,
.show-popup .download,
.show-popup .download-alt,
.show-popup .download .arrow path,
.show-alt-ui.show-popup .pager-alt,
.show-alt-ui.show-popup .download .show-alt-ui.show-popup .download-alt,
.show-alt-ui.show-popup .download .arrow path {
  transform: translateY(50px);
  color: #0a0a0a;
  fill: #0a0a0a;
  transition: transform 0.3s 0s, color 0.3s 0s, fill 0.3s 0s;
}

.story-text {
  position: fixed;
  top: 90px;
  right: 7.5%;
  bottom: 90px;
  left: 7.5%;
  opacity: 0;
  z-index: -99;
  transition: z-index 0s 0.3s, opacity 0.3s linear 0s;
}

.show-popup .story-text {
  opacity: 1;
  z-index: 2;
  transition: z-index 0s 0s, opacity 0.6s linear 0.3s;
}

.story-text .inner {
  position: absolute;
  max-width: 580px;
  width: 74%;
  height: auto;
  transform: translate(-50%, -45%);
  top: 50%;
  left: 50%;
  color: white;
  line-height: 1.4;
  max-height: 70%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 30px;
  margin-left: 30px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s linear 0s, transform 0s linear 0.3s;
}

.show-popup .story-text .inner {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s linear 0s, transform 0.6s ease 0.3s;
}

@media all and (min-width: 1280px) {
  .story-text .inner {
    width: 36%;
    max-width: none;
  }
}

.story-text .inner::-webkit-scrollbar {
  width: 5px;
}

.story-text .inner::-webkit-scrollbar-track {
  background-color: transparent;
}

.story-text .inner::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  transition: background-color 0.4s;
}

.no-touchevents .story-text .inner:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 0.4s;
}

.story-text h1,
.story-text h2,
.story-text h3 {
  font-size: 0.95rem;
  font-size: 1.19vw;
  letter-spacing: 0.07em;
  padding-bottom: 0.8em;
}

@media all and (max-width: 1280px) {
  .story-text h1,
  .story-text h2,
  .story-text h3 {
    font-size: 0.95rem;
  }
}

.story-text p,
.story-text ul,
.story-text ol {
  font-family: "georgia", serif;
  padding-bottom: 1em;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 16px;
  font-size: 1vw;
}

@media all and (max-width: 1650px) {
  .story-text p,
  .story-text ul,
  .story-text ol {
    font-size: 16px;
  }
}

.story-text .big-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#slideshow-container .cell {
  text-align: center;
  position: relative;
  opacity: 0;
  transition: opacity 0.6s 0.2s;
}

#slideshow-container .cell.large:before,
#slideshow-container .cell.diptych:before {
  display: none;
}

#slideshow-container.show-popup .cell {
  opacity: 0.16 !important; /* got overwritten by image loading function, changing this to be on the .photo level */
  transition: opacity 0.4s 0s;
}

#slideshow-container .cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

#slideshow-container .cell .mediahold {
  width: 78%;
  height: 82%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

#slideshow-container .cell .mediahold iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

#slideshow-container .cell .mediahold .vidhold {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#slideshow-container .cell .mediahold .vidhold video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#slideshow-container .cell.portrait .mediahold {
  max-height: 100%;
}

#slideshow-container .cell .photo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.photo-bleed {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.photo-bleed-half {
  position: relative;
  width: 50%;
  height: 100%;
}

#slideshow-container .photo,
#slideshow-container .photo-bleed,
#slideshow-container .photo-bleed-half {
  opacity: 0;
  transition: opacity 0.6s 0.2s;
}

#slideshow-container.show-popup .photo,
#slideshow-container.show-popup .photo-bleed,
#slideshow-container.show-popup .photo-bleed-half {
  opacity: 0.16;
  transition: opacity 0.4s 0s;
}

#slideshow-container figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 128px;
}

#slideshow-container figcaption .text-holder {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  /*width: 88%;*/
  /*max-width: 420px;*/
  width: 88%;
  max-width: calc(100% - 350px);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s 0s;
}

.black #slideshow-container figcaption .text-holder {
  color: black;
}

.no-touchevents
  #slideshow-container:not(.show-popup)
  figcaption:hover
  .text-holder,
.touchevents #slideshow-container:not(.show-popup) figcaption .text-holder {
  opacity: 1;
  transition: opacity 0.5s 0s;
}

#slideshow-container figcaption p,
#slideshow-container figcaption h1,
#slideshow-container figcaption h2,
#slideshow-container figcaption h3,
#slideshow-container figcaption h4,
#slideshow-container figcaption h5,
#slideshow-container figcaption h6 {
  line-height: 1.4;
  font-weight: 300;
  font-size: 0.9rem;
  font-family: "proxima-nova", sans-serif;
}

#slideshow-container figcaption strong {
  font-weight: inherit;
}

#slideshow-container figcaption .vignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: translateY(128px);
  transition: transform 0.3s;

  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.69+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.69) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.69) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.69) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#b0000000',GradientType=0 ); /* IE6-9 */
}

.no-touchevents
  #slideshow-container:not(.show-popup)
  figcaption:hover
  .vignette,
.touchevents #slideshow-container:not(.show-popup) figcaption .vignette {
  /*transform: translateY(64px);*/
  transform: translateY(0px);
}

/*=======================*/
/*SHOP SLIDESHOW*/
.shop #slideshow-container .cell {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery {
  height: 73%;
  text-align: left;
}

.image-container {
  height: 100%;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  text-align: center;
}

#slideshow-container .cell .image-container .photo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

.thumbnail-container {
  display: inline-block;
  vertical-align: bottom;
  /*width: 25%;*/
  width: 16%;
}

.thumbnail-container .thumbnail {
  margin-top: 5px;
  position: relative;
  cursor: pointer;
}

.thumbnail.video svg {
  width: 20%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product-info {
  color: #fff;
  text-align: left;
  /*margin-left: 7%;*/
  /*margin-left: 3%;*/
  margin-left: -2%;
  width: 19.2%;
  position: absolute;
  top: 13%;
  right: 8%;
  height: 84%;
  overflow-y: auto;
}

.product-info::-webkit-scrollbar {
  display: none;
}

.product-info h1 {
  font-size: 2.3vw;
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 0.9em;
}

.product-info h2,
.product-info h3 {
  font-size: 0.95rem;
  font-size: 1.19vw;
  letter-spacing: 0.07em;
  padding-bottom: 0.8em;
}

@media all and (max-width: 1280px) {
  .product-info h2 .product-info h3 {
    font-size: 0.95rem;
  }
}

.product-info p,
.product-info ul,
.product-info ol {
  font-size: 14px;
  padding-bottom: 1em;
  letter-spacing: 0.05em;
  font-family: proxima-nova;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4;
}

.product-info > div {
  padding-bottom: 2.8em;
}

.product-info > div *:last-child {
  padding-bottom: 0;
}

.product-info td {
  font-family: proxima-nova;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.4;
}

button.simple {
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid #fff;
  line-height: 1;
  background-color: transparent;
  color: #fff;
  font-size: 1.6vw;
  letter-spacing: 0.05em;
}

.no-touchevents button.simple:hover {
  border-color: #000;
  background-color: #fff;
  color: #000;
}

button.simple a {
  display: block;
  padding: 9px 27px 7px;
}

.product-info select {
  padding: 5px;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
}

.product-info input[type="image"] {
  width: 158px;
  margin: 15px 0px 0px 0px;
}

.video-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -99;
  transition: z-index 0s 0.3s, opacity 0.3s linear 0s;
}

.show-popup .video-popup {
  opacity: 1;
  z-index: 2;
  transition: z-index 0s 0s, opacity 0.6s linear 0.3s;
}

.video-popup .inner {
  position: absolute;
  width: 68%;
  height: auto;
  transform: translate(-50%, -45%);
  top: 50%;
  left: 50%;
  color: white;
  line-height: 1.4;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s linear 0s, transform 0s linear 0.3s;
}

.show-popup .video-popup .inner {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s linear 0s, transform 0.6s ease 0.3s;
}

.video-popup .big-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-on .arrow {
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s 0s, z-index 0s 0.2s;
}

.show-popup.video-on .pager-std {
  transform: translateX(10px);
  transition: none;
}

/* ======================= */
/* INFO ======== */

.info {
  width: 77%;
  margin: 0 0 0 6%;
  position: relative;
}

.info.no-photo {
  width: 67%;
  margin: 0 0 0 11%;
  position: relative;
}

.info article {
  padding-bottom: 140px;
}

.info figure {
  position: absolute;
  top: 130px;
  left: 0;
  z-index: 1;
  width: 25.2%;
}

.info figure img {
  display: block;
  width: 100%;
  height: auto;
}

.info .text-holder {
  position: relative;
  z-index: 2;
  width: 77%;
  padding-left: 23.7%;
  padding-top: 93px;
}

.info.no-photo .text-holder {
  width: auto;
  padding-left: 0;
}

.info .intro {
  margin-bottom: 37px;
}

.info .writeup {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  margin-right: -4px;
  width: calc(95% - 230px);
}

.info .contact {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  margin-right: -4px;
  width: 230px;
  margin-left: 5%;
}

.info .text-holder p {
  font-size: 1.2rem;
  font-size: 1.5vw;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

.info.no-photo .text-holder h1 {
  font-size: 43px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.info.no-photo .text-holder h2 {
  font-size: 18px;
  line-height: 1.2;
  font-family: "proxima-nova", sans-serif;
  margin-bottom: 20px;
}

.info.no-photo .text-holder p {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.info.no-photo .text-holder ul {
  list-style-type: none;
  font-size: 18px;
  margin-bottom: 30px;
}

.info.no-photo .text-holder ul li {
  padding: 0px 0px 5px 0px;
}

.info.no-photo .text-holder ul.twocol {
  margin-bottom: 0px;
}

.info.no-photo .text-holder ul.twocol .col {
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  width: 50%;
}

.contact h2 {
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.95rem;
  font-size: 1.2vw;
  letter-spacing: 0.05em;
}

.contact p {
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.contact ul,
.contact ol {
  list-style-type: none;
  text-transform: uppercase;
  font-family: "proxima-nova", sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  font-size: 1.05vw;
  letter-spacing: 0.07em;
  line-height: 1;
  padding-bottom: 1.2em;
}

/*
		@media all and (max-width: 1280px) {
			.info.no-photo .writeup p {
				font-size: 15px;
			}
				.info .writeup p {
					font-size: 1.2rem;
				}

				.contact h2 {
					font-size: .95rem;
				}
				.contact ul,
				.contact ol {
					font-size: 0.85rem; 
				}
		}

		@media all and (max-width: 950px) {
			.info.no-photo {
				max-width: none;
				margin: 0 auto;
			}

				.info.no-photo .writeup p {
					font-size: 1.2rem;
				}
		}
		*/

.contact ul li {
  padding: 0.3em 0 0.4em;
}

.contact *:last-child {
  padding-bottom: 0;
}
