@charset "utf-8";
:root {
  --color-blue: #007bff;
  --color-indigo: #6610f2;
  --color-purple: #6f42c1;
  --color-pink: #e83e8c;
  --color-red: #dc3545;
  --color-orange: #fd7e14;
  --color-yellow: #ffc107;
  --color-green: #28a745;
  --color-teal: #20c997;
  --color-cyan: #17a2b8;
  --color-white: #fff;
  --color-black: #292929;
  --color-transparent: rgba(0, 0, 0, 0);
  --color-gray: #868e96;
  --color-gray-dark: #343a40;
  --color-primary: #007bff;
  --color-secondary: #868e96;
  --color-success: #28a745;
  --color-info: #17a2b8;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-light: #f8f9fa;
  --color-dark: #343a40;
  --color-bg: #292929;
  --color-theme: #3428ad;
  --color-btn: #06ac7f;
  --color-brown: #5e241f;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-headline: 'Muli', sans-serif;
  --font-theme: 'Muli', sans-serif;
}
@-ms-viewport {
  width: device-width
}
body {
  font-size: 16px;
  font-weight: 400;
  background: var(--color-bg);
  font-family: var(--font-theme);
  color: var(--color-black);
  opacity: 1;
  overflow-x: hidden;
  font-style: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.is-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}
.is-loading .app-wrapper {
  opacity: 0;
}
.loading {
  display: none;
}
.is-loading .loading {
  display: block;
}
span.loading {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  background-image: url(../images/loading.svg);
  z-index: 9999;
}
html, body {
  height: 100%;
  width: 100%;
  overflow: auto;
  position: fixed;
  transform: translateZ(0);
}
.is-hide {
  display: none !important;
}
.is-show {
  display: block !important;
}
p {
  line-height: 160%;
  margin-bottom: 25px;
  margin: 0;
}
a {
  text-decoration: none;
  outline: none;
}
button, a {
  outline: none;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 100%;
  font-family: var(--font-headline);
}
/*Slick*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-loading .slick-list {
  background: url('../images/loading.svg') center center no-repeat;
}
/* Audio Player*/
.audioplayer {
  margin: 0px 0;
  height: 2.5em;
  color: #fff;
  border: 1px solid #222;
  position: relative;
  z-index: 1;
  background: #333;
  font-size: 16px;
  font-weight: 700;
}
.audioplayer-mini {
  width: 2.5em; /* 40 */
  margin: 0 auto;
}
.audioplayer > div {
  position: absolute;
}
.audioplayer-playpause {
  width: 2.5em; /* 40 */
  height: 100%;
  text-align: left;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 2;
  top: 0;
  left: 0;
}
.audioplayer:not(.audioplayer-mini) .audioplayer-playpause {
  border-right: 1px solid #555;
  border-right-color: rgba(255, 255, 255, .1);
}
.audioplayer-mini .audioplayer-playpause {
  width: 100%;
}
.audioplayer-playpause:hover, .audioplayer-playpause:focus {
  background-color: #222;
}
.audioplayer-playpause a {
  display: block;
}
.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
  width: 0;
  height: 0;
  border: 0.5em solid transparent; /* 8 */
  border-right: none;
  border-left-color: #fff;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.5em 0 0 -0.25em; /* 8 4 */
}
.audioplayer-playing .audioplayer-playpause a {
  width: 0.75em; /* 12 */
  height: 0.75em; /* 12 */
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.375em 0 0 -0.375em; /* 6 */
}
.audioplayer-playing .audioplayer-playpause a:before, .audioplayer-playing .audioplayer-playpause a:after {
  width: 40%;
  height: 100%;
  background-color: #fff;
  content: '';
  position: absolute;
  top: 0;
}
.audioplayer-playing .audioplayer-playpause a:before {
  left: 0;
}
.audioplayer-playing .audioplayer-playpause a:after {
  right: 0;
}
.audioplayer-time {
  width: 4.375em; /* 70 */
  height: 100%;
  line-height: 2.375em; /* 38 */
  text-align: center;
  z-index: 2;
  top: 0;
}
.audioplayer-time-current {
  border-left: 1px solid #111;
  border-left-color: rgba(0, 0, 0, .25);
  left: 2.5em; /* 40 */
}
.audioplayer-time-duration {
  border-right: 1px solid #555;
  border-right-color: rgba(255, 255, 255, .1);
  right: 2.5em; /* 40 */
}
.audioplayer-novolume .audioplayer-time-duration {
  border-right: 0;
  right: 0;
}
.audioplayer-bar {
  height: 0.875em; /* 14 */
  background-color: #222;
  cursor: pointer;
  z-index: 1;
  top: 50%;
  right: 6.875em; /* 110 */
  left: 6.875em; /* 110 */
  margin-top: -0.438em; /* 7 */
}
.audioplayer-novolume .audioplayer-bar {
  right: 4.375em; /* 70 */
}
.audioplayer-bar div {
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.audioplayer-bar-loaded {
  background-color: #333;
  z-index: 1;
}
.audioplayer-bar-played {
  background: #D7C38C;
  z-index: 2;
}
.audioplayer-volume {
  width: 2.5em; /* 40 */
  height: 100%;
  border-left: 1px solid #111;
  border-left-color: rgba(0, 0, 0, .25);
  text-align: left;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 2;
  top: 0;
  right: 0;
}
.audioplayer-volume:hover, .audioplayer-volume:focus {
  background-color: #222;
}
.audioplayer-volume-button {
  width: 100%;
  height: 100%;
}
.audioplayer-volume-button a {
  width: 0.313em; /* 5 */
  height: 0.375em; /* 6 */
  background-color: #fff;
  display: block;
  position: relative;
  z-index: 1;
  top: 42%;
  left: 30%;
}
.audioplayer-volume-button a:before, .audioplayer-volume-button a:after {
  content: '';
  position: absolute;
}
.audioplayer-volume-button a:before {
  width: 0;
  height: 0;
  border: 0.5em solid transparent; /* 8 */
  border-left: none;
  border-right-color: #fff;
  z-index: 2;
  top: 50%;
  right: -0.25em;
  margin-top: -0.5em; /* 8 */
}
.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
  /* "volume" icon by Nicolas Gallagher, http://nicolasgallagher.com/pure-css-gui-icons */
  width: 0.313em; /* 5 */
  height: 0.313em; /* 5 */
  border: 0.25em double #fff; /* 4 */
  border-width: 0.25em 0.25em 0 0; /* 4 */
  left: 0.563em; /* 9 */
  top: -0.063em; /* 1 */
  -webkit-border-radius: 0 0.938em 0 0; /* 15 */
  -moz-border-radius: 0 0.938em 0 0; /* 15 */
  border-radius: 0 0.938em 0 0; /* 15 */
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.audioplayer-volume-adjust {
  height: 6.25em; /* 100 */
  cursor: default;
  position: absolute;
  left: 0;
  right: -1px;
  top: -9999px;
  background: #222;
  background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#222));
  background: -webkit-linear-gradient(top, #444, #222);
  background: -moz-linear-gradient(top, #444, #222);
  background: -ms-radial-gradient(top, #444, #222);
  background: -o-linear-gradient(top, #444, #222);
  background: linear-gradient(top, #444, #222);
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.audioplayer-volume:not(:hover) .audioplayer-volume-adjust {
  opacity: 0;
}
.audioplayer-volume:hover .audioplayer-volume-adjust {
  top: auto;
  bottom: 100%;
}
.audioplayer-volume-adjust > div {
  width: 40%;
  height: 80%;
  background-color: #222;
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin: 30% auto 0;
}
.audioplayer-volume-adjust div div {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #D7C38C;
}
.audioplayer-novolume .audioplayer-volume {
  display: none;
}
.audioplayer-play, .audioplayer-pause, .audioplayer-volume a {
  -webkit-filter: drop-shadow(1px 1px 0 #000);
  -moz-filter: drop-shadow(1px 1px 0 #000);
  -ms-filter: drop-shadow(1px 1px 0 #000);
  -o-filter: drop-shadow(1px 1px 0 #000);
  filter: drop-shadow(1px 1px 0 #000);
}
.audioplayer-bar, .audioplayer-volume-adjust > div {
  -webkit-box-shadow: -1px -1px 0 rgba(0, 0, 0, .5), 1px 1px 0 rgba(255, 255, 255, .1);
  -moz-box-shadow: -1px -1px 0 rgba(0, 0, 0, .5), 1px 1px 0 rgba(255, 255, 255, .1);
  box-shadow: -1px -1px 0 rgba(0, 0, 0, .5), 1px 1px 0 rgba(255, 255, 255, .1);
}
.audioplayer-volume-adjust div div, .audioplayer-bar-played {
  -webkit-box-shadow: inset 0 0 5px rgba(255, 255, 255, .5);
  -moz-box-shadow: inset 0 0 5px rgba(255, 255, 255, .5);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, .5);
}
.audioplayer-volume-adjust {
  -webkit-box-shadow: -2px -2px 2px rgba(0, 0, 0, .15), 2px -2px 2px rgba(0, 0, 0, .15);
  -moz-box-shadow: -2px -2px 2px rgba(0, 0, 0, .15), 2px -2px 2px rgba(0, 0, 0, .15);
  box-shadow: -2px -2px 2px rgba(0, 0, 0, .15), 2px -2px 2px rgba(0, 0, 0, .15);
}
.audioplayer *, .audioplayer *:before, .audioplayer *:after {
  -webkit-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
  -moz-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
  -ms-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
  -o-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
  transition: color .25s ease, background-color .25s ease, opacity .5s ease;
}
.app-wrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: fixed;
  transform: translateZ(0);
  opacity: 1;
  transition: 1s opacity ease-in-out;
}
.body-bg {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: fixed;
  transform: translateZ(0);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/bg.png);
}
.wrapper.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  transform: translateZ(0);
  z-index: 9999;
}
.logo-tq {
  position: absolute;
  top: 30px;
  left: 50px;
  width: 90px;
  display: block;
}
.logo-tq img {
  width: 100%;
}
nav {
  position: absolute;
  top: 30px;
  right: 50px;
}
nav a {
  display: inline-block;
  background-color: var(--color-brown);
  height: 40px;
  float: left;
  margin: 0 0 0 15px;
  border-radius: 5px;
  padding: 0px 10px;
  position: relative;
  color: var(--color-white);
}
nav a.en {
  font-size: 17px;
  font-weight: 700;
  line-height: 38px;
  display: inline-block;
}
nav a:hover {
  background-color: var(--color-bg);
}
nav a span {
  display: block;
  position: relative;
  transform: translateY(-50%);
  top: 52%;
  line-height: 100%;
}
nav a span svg {
  width: 100%;
  fill: var(--color-white);
}
nav a:nth-child(1) span {
  width: 36px;
}
nav a:nth-child(2) span {
  width: 20px;
}
nav a.btn-ugc {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0px 10px 0px 34px;
  border-radius: 5px;
  background-color: var(--color-brown);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  color: var(--color-white);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 12px center;
  background-image: url("../images/ico-pencil.svg");
}
nav a.btn-ugc:hover {
  background-color: var(--color-black);
}
a.go-back {
  display: inline-block;
  height: 40px;
  line-height: 38px;
  padding: 0px 15px 0px 25px;
  border-radius: 5px;
  background-color: var(--color-transparent);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 15px center;
  /*  background-image: url("../images/ico-pencil.svg");*/
  top: 20px;
  left: 20px;
  position: absolute;
}
a.go-back:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
a.go-back::before {
  position: absolute;
  top: 13px;
  left: 10px;
  content: '';
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--color-black);
}
a.go-back:hover::before {
  border-right: 8px solid var(--color-white);
}
.share-icons {
  position: absolute;
  top: 70px;
  right: 50px;
  width: 40px;
  transition: all 0.3s ease-in-out;
  display: none;
}
.share-icons.is-toggle {
  display: block;
}
.share-icons a {
  display: block;
  background-color: var(--color-brown);
  border-radius: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  color: #fff;
  margin-top: 10px;
}
.share-icons a svg {
  width: 100%;
  height: 100%;
}
.share-icons a:hover {
  background-color: var(--color-bg);
}
.branding {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.go-down {
  color: var(--color-black);
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 16px;
  font-weight: 700;
}
.go-down span {
  position: absolute;
  width: 25px;
  display: block;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}
.go-down span svg {
  width: 100%;
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate3d(-50%, 0, 0);
  }
  40% {
    transform: translate3d(-50%, -10px, 0);
  }
  60% {
    transform: translate3d(-50%, -5px, 0);
  }
}
.slider-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: 100%;
  transform: translate3d(0, 100%, 0);
  transition: all 0.8s ease-in-out;
}
.slider-container h1 {
  font-weight: 800;
  font-size: 45px;
  line-height: 130%;
  margin: 0 0 20px 0;
}
.card-slider {
  margin: 0px -30px;
}
.card-slider .item {
  float: left;
  width: 25%;
  padding: 30px 30px;
}
.card-slider .item-img {
  display: block;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.card-slider figure {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.card-slider figure a {
  display: inline-block;
}
.card-slider .item-img svg {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.card-slider figcaption {
  position: absolute;
  z-index: 100;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  padding: 8px 10px;
  line-height: 120%;
  color: var(--color-white);
  font-weight: 700;
  text-align: right;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #292929);
  font-size: 15px;
}
.slider-inner-container {
  position: relative;
  display: block;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  overflow: hidden;
  border-radius: 100%;
  display: block;
  z-index: 9999;
  cursor: pointer;
}
.arrow img {
  width: 100%;
}
.arrow.arrow-next {
  right: -8%;
}
.arrow.arrow-prev {
  left: -8%;
}
.letter-container {
  padding: 0px 30px 0px 10px;
  width: 100%;
  height: calc(100% - 100px);
  margin: 0 auto;
  position: absolute;
  top: 100px;
  left: 50%;
  z-index: 100;
  transform: translatex(-50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.letter-header .btn {
  float: left;
}
.letter-header {
  padding-bottom: 30px;
}
.letter-header .btn.btn-next {
  float: right;
}
.letter-header .btn {
  border-radius: 5px;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.24);
  background-color: var(--color-white);
  color: var(--color-bg);
  display: inline-block;
  text-align: center;
  width: 140px;
  height: 44px;
  line-height: 44px;
  font-weight: 700;
  font-size: 17px;
}
.letter-header .btn:hover {
  color: var(--color-brown);
}
.letter-img-text {
  margin: 0px -20px;
}
.ltr-el {
  float: left;
  width: 50%;
  padding: 0px 20px;
}
.ltr-el:nth-child(2) {
  float: right;
}
.img-holder {
  border-radius: 5px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.16);
  overflow: hidden;
  position: relative;
}
.img-holder img {
  width: 100%;
  height: auto;
  display: block;
}
.text-holder {
  border-radius: 5px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.16);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 20px 20px;
  overflow: hidden;
  position: relative;
}
.text-holder p {
  margin-bottom: 15px;
  font-weight: 600;
}
.ltr-el h3, .ltr-el h4 {
  position: absolute;
  background-color: var(--color-bg);
  color: var(--color-white);
  font-weight: 700;
  line-height: 120%;
  top: 0;
  display: inline-block;
  overflow: hidden;
}
.ltr-el h3 {
  left: 0;
  padding: 10px 20px;
  border-radius: 0px 0px 5px 0px;
}
.ltr-el h4 {
  right: 0;
  padding: 10px 15px;
  border-radius: 0px 0px 0px 5px;
}
.single-letter {
  margin-bottom: 110px;
  display: none;
}
.single-letter.active {
  display: block;
}
/*
.single-letter:last-child{
	margin-bottom: 100px;
}
*/
.audio-container {
  position: fixed;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: 0px;
  transform: translate3d(0, 100%, 0);
  z-index: 9999;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}
.controlls {
  position: relative;
  display: inline-block;
  margin-right: 25px;
}
.controlls .btn {
  display: inline-block;
  position: relative;
  width: 180px;
  color: var(--color-bg);
  font-weight: 700;
  font-size: 17px;
}
.controlls .btn:hover {
  color: var(--color-brown);
}
.controlls .btn span {
  display: block;
  text-align: center;
  position: absolute;
  top: 23px;
  width: 156px;
  line-height: 120%;
}
.controlls .btn.btn-left span {
  left: 12px;
}
.controlls .btn.btn-right span {
  right: 12px;
}
.controlls .btn img {
  width: 100%;
}
.controlls .btn.btn-left {
  margin: 0 30px 0 0;
}
.controlls .btn.btn-right {
  margin: 0 0px 0 30px;
}
.controlls .btn.btn-right.is-disabled {
  cursor: default !important;
  color: #838282;
  pointer-events: none;
}
.btn-play {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 100%;
  background-color: var(--color-brown);
  left: 50%;
  top: 0px;
  transform: translate3d(-50%, 0, 0);
}
.btn-play span {
  width: 30px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.btn-play span svg {
  width: 100%;
  vertical-align: middle;
}
.btn-play.play span:nth-child(1) {
  display: block;
}
.btn-play.play span:nth-child(2) {
  display: none;
}
.btn-play.pause span:nth-child(1) {
  display: none;
}
.btn-play.pause span:nth-child(2) {
  display: block;
}
#track {
  position: fixed;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1000;
  opacity: 0;
  visibility: hidden;
}
.detail-controller {
  width: 50%;
  margin: 30px auto 0px auto;
  position: relative;
  z-index: 9999;
  display: none !important;
}
.detail-controller a {
  border-radius: 5px;
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.24);
  background-color: var(--color-white);
  color: var(--color-bg);
  display: inline-block;
  text-align: center;
  width: 140px;
  height: 44px;
  line-height: 44px;
  font-weight: 700;
  font-size: 17px;
  float: left;
}
.detail-controller a:nth-child(2) {
  float: right;
}
.detail-controller a:hover {
  color: var(--color-brown);
}
.container.is-detail article {
  width: 50%;
  margin: 70px auto 30px auto;
  border-radius: 5px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.16);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 55px 60px 35px 60px;
  overflow: hidden;
  position: relative;
}
.container.is-detail article p {
  line-height: 180%;
  font-weight: 600;
  color: var(--color-bg);
  margin-bottom: 25px;
}
.container.is-detail article p strong {
  color: var(--color-black);
  font-weight: 700;
}
.container.is-detail article h2 {
  font-weight: 800;
  font-size: 28px;
  margin: 0 0 25px 0;
  display: block;
  line-height: 120%;
}
.article-text {
  margin: 30px 0 0px 0;
}
.article-audio {
  margin: 0px 0 20px 0;
}
.article-image {}
.article-image img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.container.is-detail article h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 150%;
  margin: 0 0 20px 0;
}
.container.is-detail {}
.media-caption {
  font-size: 90%;
  padding: 10px 0px 0 0;
  opacity: 0.6;
  display: block;
  font-weight: 600;
  font-style: italic;
}
.disclaimer {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-top: 15px;
  margin-top: 30px;
}
.letter-intro {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 0px;
  margin-bottom: 30px;
}
.disclaimer p, .letter-intro p {
  font-size: 85%;
  padding: 0px 0px 0 0;
  opacity: 0.6;
  display: block;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 15px;
}
.credits {
  display: block;
  text-align: center;
  padding-top: 15px;
  position: fixed;
  right: 50px;
  bottom: 30px;
  z-index: 9999;
}
.credits a {
  display: inline-block;
  background-color: var(--color-bg);
  color: var(--color-white);
  font-weight: 600;
  line-height: 25px;
  height: 25px;
  padding: 0px 10px;
  border-radius: 3px;
  font-size: 13px;
  opacity: 0.8;
}
.credits a:hover {
  opacity: 1;
}
.metype-cont {
  /*  display: none;*/
}
.stories-container {
  width: 70%;
  margin: 30px auto 0px auto;
  overflow: hidden;
  position: relative;
}
.story-list {
  float: left;
  width: 50%;
}
.story-item {
  margin: 0px 20px 40px 20px;
  text-align: center;
}
.story-item a {
  background-color: var(--color-bg);
  color: var(--color-white);
  display: block;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 5px;
  overflow: hidden;
}
.story-item a:hover {
  color: var(--color-bg);
  background-color: var(--color-white);
}
.img-cont {
  position: relative;
  overflow: hidden;
}
.story-img {
  position: relative;
  overflow: hidden;
  background-color: #505050;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.story-item a .story-img {
  transform: scale3d(1, 1, 1);
  transform-origin: center;
  transition: 0.2s transform ease-in-out;
}
.story-item a:hover .story-img {
  transform: scale3d(1.3, 1.3, 1.3);
}
.story-item a figcaption {
  padding: 8px 10px;
  font-size: 15px;
  line-height: 130%;
  font-weight: 700;
  min-height: 56px;
}
.stories {
  position: relative;
  margin: 20px 0;
}
.slide-footer {
  text-align: center;
  padding-top: 20px;
}
.slide-footer a {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0px 10px;
  border-radius: 5px;
  background-color: var(--color-brown);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  color: var(--color-white);
  margin: 0px 3px;
}
.slide-footer a:hover {
  background-color: var(--color-bg);
}
.slide-footer a:nth-child(2) {
  background-color: var(--color-bg);
}
.slide-footer a:nth-child(2):hover {
  background-color: var(--color-brown);
}
/*On Click Functions*/
.is-cards .go-down {
  display: none;
}
.is-cards .branding {
  pointer-events: none;
  opacity: 0;
}
.is-cards .slider-container {
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.is-cards.is-letter .slider-container {
  top: 100%;
  transform: translate3d(0, 100%, 0);
}
.is-cards.is-letter .letter-container {
  opacity: 1;
  pointer-events: inherit;
}
.is-audio .audio-container {
  transform: translate3d(0, 0%, 0);
  pointer-events: inherit;
}
.container.is-detail article.is-wall {
  padding: 0px !important;
  box-shadow: 0 0 0 0;
  background: rgba(0, 0, 0, 0);
  max-width: 500px;
  border: 0px solid #000;
}
.container.is-detail article.is-wall h3 {
  text-align: center;
  margin: 20px 0 20px 0;
  line-height: 130%;
  font-size: 170%;
}
.wall-list {}
.wall-list li {
  display: block;
  position: relative;
  margin: 30px 0px 0px 0px;
}
.wall-list li figure {
  position: relative;
}
.wall-list li .wall-img {
  float: left;
  width: 40%;
}
.wall-list li:nth-child(even) .wall-img {
  float: right;
}
.wall-list li figcaption {
  height: 100%;
  position: absolute;
  left: 40%;
  top: 0;
  display: block;
  margin: 0 0 0 30px;
}
.wall-list li:nth-child(even) figcaption {
  position: absolute;
  left: inherit;
  right: 40%;
  top: 0;
  display: block;
  margin: 0 30px 0 0px;
  text-align: right;
}
.caption-group {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 110%;
}
.wall-list li figcaption h4 {
  font-weight: 800;
  font-size: 110%;
  line-height: 130%;
  margin: 0 0 0px 0;
}
.wall-list li figcaption .media-link {
  margin-top: 15px;
}
.wall-list li figcaption .is-more {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-black);
  font-weight: 700;
  border-bottom: 1px solid var(--color-black);
  font-style: italic;
}
.wall-list li figcaption .media-link a {
  display: inline-block;
  margin: 5px 0px;
  color: var(--color-brown);
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  line-height: 100%;
}
.wall-list li figcaption .media-link a:hover {
  text-decoration: underline;
}
.wall-list li figcaption .media-link a::before {
  width: 15px;
  height: 20px;
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
}
.wall-list li figcaption .media-link a.is-video::before {
  background-image: url("../images/ico-video.svg");
}
.wall-list li figcaption .media-link a.is-photo::before {
  background-image: url("../images/ico-photo.svg");
}
.video-embed {
  border-radius: 6px;
  overflow: hidden;
}
.article-content {
  position: relative;
}
.photo-gallery.is-detail {
  position: absolute;
  top: 0;
  right: 0;
}
.photo-gallery li {
  display: none;
}
.photo-gallery li:nth-child(1) {
  display: block;
}
.photo-gallery li a {
  display: inline-block;
  margin: 5px 0px;
  color: var(--color-brown);
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  line-height: 100%;
}
.photo-gallery li a::before {
  width: 15px;
  height: 20px;
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  background-image: url(../images/ico-photo.svg);
}
.screens {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -20px;
  padding-bottom: 40px;
  overflow: hidden;
}
.single-screen {
  padding: 0px 20px;
  width: 50%;
  margin: 20px 0px;
}
.single-screen img {
  width: 100%;
}
@media (max-width: 767px) {
  .single-screen {
    padding: 0px 20px;
    width: 100%;
  }
}
.article-sub-headline {
  display: none !important;
}
.media-link .photo-gallery li {
  margin: 0;
}

.video-modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translate3d(0,0,0);
	background-color: #000;
	opacity: 0;
	transition: 0.2s opacity ease-in-out;
	pointer-events: none;
	z-index: -100;
}

body.is-modal .video-modal{
	z-index: 9999;
	opacity: 1;
	pointer-events:auto;
}

.video-modal .modal-body{
	position: absolute;
	width: 100%;
	max-width: 700px;
	height: auto;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}

.close {
  position: absolute;
  right: 30px;
  top: 20px;
  width: 20px;
  height: 20px;
  opacity: 0.3;
  font-size: 0;	
}
.close:hover {
  opacity: 1;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 20px;
  width: 2px;
  background-color: #fff;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}


.profile-pic{
	display: block;
	text-align: center;
	float: right;
}

.profile-pic img{
	width: 100%;
	max-width: 200px;
}


.intro-back{
	display: none;
}

.intro-back.is-show{
	display: block;
}

.logo-tq.is-hide{
	display: none;
}








