@charset "UTF-8";
@font-face {
  font-family: Verlag;
  font-weight: 400;
  src: url("../fonts/Verlag-Font-Family/Verlag-Book.otf") format("opentype");
}
@font-face {
  font-family: Verlag;
  font-weight: 400;
  font-style: italic;
  src: url("../fonts/Verlag-Font-Family/Verlag-Book.otf") format("opentype");
}
@font-face {
  font-family: Verlag;
  font-weight: 325;
  src: url("../fonts/Verlag-Font-Family/Verlag-Light.otf") format("opentype");
}
@font-face {
  font-family: Verlag;
  font-weight: 325;
  font-style: italic;
  src: url("../fonts/Verlag-Font-Family/Verlag-LightItalic.otf") format("opentype");
}
@font-face {
  font-family: Chronicles;
  src: url("../fonts/chronicle-display-cufonfonts/ChronicleDisplay-Roman.otf") format("opentype");
}
@font-face {
  font-family: Chronicles;
  font-weight: 300;
  font-style: italic;
  src: url("../fonts/chronicle-display-cufonfonts/ChronicleDisplay-LightItalic.otf") format("opentype");
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 102px;
  z-index: 10;
}
.header.is-mobile-open {
  z-index: 100;
}
.header.is-mobile-open:before {
  opacity: 1;
}
.header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F1F0EB;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 75%;
  height: 1px;
  background: #B0A345;
  z-index: 1;
  opacity: 0;
  transition: width 0.8s ease;
}
.header-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  z-index: 2;
}
.header-content .hamburger-bar {
  display: none;
}
@media (max-width: 1023px) {
  .header-content .hamburger-bar {
    display: block;
  }
  .header-content .hamburger-bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    height: 4px;
    background: #B0A345;
    width: 0;
    opacity: 1;
    transition: opacity 0.4s ease, width 1s ease;
  }
  .header-content .hamburger-bar:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #B0A345;
    width: 0;
    transition: width 1s ease;
  }
}
.header-content .hamburger-bar-menu {
  height: 30px;
  width: 30px;
  position: relative;
  border-radius: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.header-content .hamburger-bar-menu .bar {
  height: 3px;
  width: 30px;
  display: block;
  margin: 2px auto;
  background-color: #D6492A;
  border-radius: 10px;
  transition: all 0.4s ease;
  position: absolute;
}
.header-content .hamburger-bar-menu .bar:nth-of-type(1) {
  top: 1px;
  transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
}
.header-content .hamburger-bar-menu .bar:nth-of-type(2) {
  top: 11px;
  transition: 0.3s ease 0.3s;
}
.header-content .hamburger-bar-menu .bar:nth-of-type(3) {
  top: 21px;
  transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
}
.header-content .hamburger-bar-menu.is-mobile-open .bar:nth-of-type(1) {
  top: 11px;
  transform: rotate(45deg);
  transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
}
.header-content .hamburger-bar-menu.is-mobile-open .bar:nth-of-type(2) {
  opacity: 0;
}
.header-content .hamburger-bar-menu.is-mobile-open .bar:nth-of-type(3) {
  top: 11px;
  transform: rotate(-45deg);
  transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
}
.header-content nav, .header-content .nav {
  position: relative;
  display: flex;
  list-style: none;
  align-items: center;
  width: calc(100% - 120px);
  height: 100%;
}
@media (max-width: 1023px) {
  .header-content nav, .header-content .nav {
    position: fixed;
    top: 90px;
    left: -100vw;
    width: 100%;
    bottom: 0;
    background: #F1F0EB;
    z-index: 100;
    padding-top: 100px;
    padding-right: 24px;
    box-sizing: border-box;
    transition: left 0.4s ease;
    display: block;
  }
}
@media (max-width: 1023px) {
  .header-content nav.is-mobile-open, .header-content .nav.is-mobile-open {
    left: 0;
  }
}
@media (max-width: 1023px) {
  .header-content nav.is-mobile-open li:last-child, .header-content .nav.is-mobile-open li:last-child {
    display: block;
  }
}
.header-content nav li, .header-content .nav li {
  position: relative;
  margin-right: 48px;
}
@media (max-width: 1365px) {
  .header-content nav li, .header-content .nav li {
    margin-right: 32px;
  }
}
@media (max-width: 1023px) {
  .header-content nav li, .header-content .nav li {
    margin: 0 0 48px;
    text-align: right;
  }
}
.header-content nav li:last-child, .header-content .nav li:last-child {
  margin-right: 0;
}
@media (max-width: 1023px) {
  .header-content nav li:last-child, .header-content .nav li:last-child {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    display: none;
  }
}
.header-content nav li:first-child a, .header-content .nav li:first-child a {
  width: 215px;
}
@media (max-width: 1023px) {
  .header-content nav li:first-child a, .header-content .nav li:first-child a {
    width: auto;
  }
}
.header-content nav li:nth-child(2) a, .header-content .nav li:nth-child(2) a {
  width: 164px;
}
@media (max-width: 1023px) {
  .header-content nav li:nth-child(2) a, .header-content .nav li:nth-child(2) a {
    width: auto;
  }
}
.header-content nav li:nth-child(3) a, .header-content .nav li:nth-child(3) a {
  width: 141px;
}
@media (max-width: 1023px) {
  .header-content nav li:nth-child(3) a, .header-content .nav li:nth-child(3) a {
    width: auto;
  }
}
.header-content nav li:nth-child(4) a, .header-content .nav li:nth-child(4) a {
  width: 180px;
}
@media (max-width: 1023px) {
  .header-content nav li:nth-child(4) a, .header-content .nav li:nth-child(4) a {
    width: auto;
  }
}
.header-content nav li a, .header-content .nav li a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
}
@media (max-width: 1023px) {
  .header-content nav li a, .header-content .nav li a {
    font-size: 28px;
  }
}
@media (max-width: 400px) {
  .header-content nav li a, .header-content .nav li a {
    font-size: 24px;
  }
}
.header-content nav li a:hover, .header-content nav li a.active, .header-content .nav li a:hover, .header-content .nav li a.active {
  color: #D6492A;
  font-style: italic;
}
@media (max-width: 1023px) {
  .header-content nav li a#nav-search-toggle, .header-content .nav li a#nav-search-toggle {
    display: none;
  }
}
.header-content nav li a#nav-search-toggle.hide, .header-content .nav li a#nav-search-toggle.hide {
  display: none;
}
.header-content nav li a#nav-search-toggle.current svg path, .header-content .nav li a#nav-search-toggle.current svg path {
  fill: #D6492A !important;
}
.header-content nav li .nav-search, .header-content .nav li .nav-search {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 300px;
  height: 45px;
  background: #fff;
  border-radius: 50px;
  padding: 6px 16px;
  box-sizing: border-box;
  display: none;
}
@media (max-width: 1365px) {
  .header-content nav li .nav-search, .header-content .nav li .nav-search {
    width: 250px;
  }
}
@media (max-width: 1023px) {
  .header-content nav li .nav-search, .header-content .nav li .nav-search {
    display: block;
    width: 90%;
    margin: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 0 16px;
  }
}
.header-content nav li .nav-search.show, .header-content .nav li .nav-search.show {
  display: flex;
}
.header-content nav li .nav-search input[type=text], .header-content .nav li .nav-search input[type=text] {
  border: none;
  background: transparent;
  font-size: 20px;
  color: #595959;
  position: relative;
  width: calc(100% - 32px);
}
.header-content nav li .nav-search input[type=text]:focus-visible, .header-content .nav li .nav-search input[type=text]:focus-visible {
  outline: 2px solid #5E9ED6;
}
.header-content nav li .nav-search input[type=text]:focus, .header-content .nav li .nav-search input[type=text]:focus {
  outline: none;
}
@media (max-width: 1023px) {
  .header-content nav li .nav-search input[type=text], .header-content .nav li .nav-search input[type=text] {
    width: 100%;
    padding: 0 40px 0 20px;
    box-sizing: border-box;
    line-height: 45px;
  }
}
.header-content nav li .nav-search button, .header-content .nav li .nav-search button {
  cursor: pointer;
  text-indent: -5000px;
  border: none;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}
.header-content nav li .nav-search button#nav-search-close, .header-content .nav li .nav-search button#nav-search-close {
  background: url(../images/ico-close.png) center center no-repeat transparent;
  background-size: 65% auto;
}
@media (max-width: 1023px) {
  .header-content nav li .nav-search button#nav-search-close, .header-content .nav li .nav-search button#nav-search-close {
    display: none;
  }
}
.header-content nav li .nav-search button#nav-search-submit, .header-content .nav li .nav-search button#nav-search-submit {
  background: url(../images/ico-search-blue.png) center center no-repeat transparent;
  background-size: 85% auto;
  display: none;
}
@media (max-width: 1023px) {
  .header-content nav li .nav-search button#nav-search-submit, .header-content .nav li .nav-search button#nav-search-submit {
    display: block;
  }
}
.header-content nav:before, .header-content .nav:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  height: 4px;
  background: #B0A345;
  width: 0;
  opacity: 1;
  transition: opacity 0.4s ease, width 1s ease;
}
.header-content nav:after, .header-content .nav:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #B0A345;
  width: 0;
  transition: width 1s ease;
}
.header-content .main-logo {
  position: relative;
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1480px) {
  .header-content .main-logo.search-opened {
    display: none;
  }
}
@media (max-width: 1023px) {
  .header-content .main-logo.search-opened {
    display: block;
  }
}
.header.loaded .header-content nav:before, .header.loaded .header-content .nav:before {
  width: 84%;
}
.header.loaded .header-content nav:after, .header.loaded .header-content .nav:after {
  width: 84%;
}
.header.loaded .header-content .hamburger-bar:before {
  width: 84%;
}
.header.loaded .header-content .hamburger-bar:after {
  width: 84%;
}
.header.scrolled:before {
  opacity: 0.95;
}
.header.scrolled:after {
  opacity: 1;
  width: 100%;
}
.header.scrolled .header-content nav:before, .header.scrolled .header-content .nav:before {
  width: 0;
}
.header.scrolled .header-content nav:after, .header.scrolled .header-content .nav:after {
  width: 0;
}
.header.scrolled .header-content .hamburger-bar:before {
  width: 0;
}
.header.scrolled .header-content .hamburger-bar:after {
  width: 0;
}
.header.dark:before {
  background: url(../images/bg-reflections.png) center bottom repeat #000;
}
.header.dark.scrolled:before {
  background: url(../images/bg-reflections.png) center bottom repeat #000;
}
.header.dark.scrolled.is-mobile-open:before {
  opacity: 1;
}
@media (max-width: 1023px) {
  .header.dark .header-content nav, .header.dark .header-content .nav {
    background: url(../images/bg-reflections.png) center bottom repeat #000;
  }
}
.header.dark .header-content nav li a, .header.dark .header-content .nav li a {
  color: #fff;
}
.header.dark .header-content nav li a:hover, .header.dark .header-content .nav li a:hover {
  color: #D6492A;
  font-style: italic;
}
.header.dark .header-content nav li a.active, .header.dark .header-content .nav li a.active {
  color: #D6492A;
}
.header.dark .header-content nav li a#nav-search-toggle svg path, .header.dark .header-content .nav li a#nav-search-toggle svg path {
  fill: #fff;
}
@keyframes mrotr {
  0% {
    transform: translateY(0px) rotate(0);
  }
  50% {
    transform: translateY(15px) rotate(0);
  }
  100% {
    transform: translateY(15px) rotate(45);
  }
}
@keyframes mrotl {
  0% {
    transform: translateY(0px) rotate(0);
  }
  50% {
    transform: translateY(-15px) rotate(0);
  }
  100% {
    transform: translateY(-15px) rotate(-45);
  }
}
@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.logo {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-indent: -5000px;
  background: center center no-repeat transparent;
  background-size: cover;
}
.logo.logo-jts {
  background-image: url(../images/logo.png);
  width: 100px;
  height: 50px;
}

.ico {
  position: relative;
  text-decoration: none;
  text-indent: -5000px;
  background: center center no-repeat transparent;
  background-size: cover;
  display: inline-block;
}
.ico.ico-search {
  width: 32px;
  height: 32px;
  background-image: url(../images/ico-search.png);
}
.ico.ico-facebook {
  width: 32px;
  height: 32px;
  background-image: url(../images/ico-facebook.png);
}
.ico.ico-twitter {
  width: 32px;
  height: 32px;
  background-image: url(../images/ico-twitter.png);
}

.footer {
  position: relative;
  background: #000;
  padding: 32px 0;
}
.footer .btn-submit-reflection {
  font-size: 18px;
  color: #000;
  border: none;
  border-radius: 5px 0 0 0;
  background: #B0A345;
  padding: 16px 23px;
  position: fixed;
  bottom: 0;
  right: 0;
  text-decoration: none;
  transition: background 0.4s ease;
  z-index: 4;
  font-weight: bold;
}
@media (max-width: 767px) {
  .footer .btn-submit-reflection {
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    text-align: center;
  }
}
.footer .btn-submit-reflection:hover {
  background: #D6492A;
}
.footer .btn-submit-reflection.bottom {
  position: absolute;
  bottom: 100%;
}
.footer-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.footer-content-copy {
  position: relative;
}
.footer-content-copy p {
  font-size: 16px;
  color: #fff;
  margin: 0;
  line-height: 1;
}
.footer-content-links {
  position: relative;
}
@media (max-width: 767px) {
  .footer-content-links {
    margin-bottom: 20px;
  }
}
.footer-content-links ul {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer-content-links ul {
    justify-content: center;
  }
}
.footer-content-links ul li {
  position: relative;
  padding-left: 8px;
}
@media (max-width: 767px) {
  .footer-content-links ul li:first-child {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
.footer-content-links ul li p {
  font-size: 16px;
  color: #fff;
  padding-right: 16px;
  line-height: 1;
  margin: 0;
}
@media (max-width: 767px) {
  .footer-content-links ul li p {
    padding: 0;
  }
}
.footer-content-links ul li a {
  text-decoration: none;
}
.ui-line {
  background: #B0A345;
  display: block;
}
.ui-line.horizontal.thin {
  height: 1px;
}
.ui-line.horizontal.thick {
  height: 4px;
}
.ui-line.vertical.thin {
  width: 1px;
}
.ui-line.vertical.thick {
  width: 4px;
}

.btn-icon {
  text-indent: -5000px;
  display: inline-block;
  background: center center no-repeat transparent;
  background-size: cover;
  border: none;
  text-decoration: none;
}
.btn-icon.btn-icon-search {
  background-image: url(../images/ico-search-blue.png);
  width: 32px;
  height: 32px;
}

body.search-results {
  display: block;
  -moz-columns: unset;
       columns: unset;
}

.search-results {
  position: relative;
  -moz-columns: 4 auto;
       columns: 4 auto;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 1023px) {
  .search-results {
    -moz-columns: 3 auto;
         columns: 3 auto;
  }
}
@media (max-width: 767px) {
  .search-results {
    -moz-columns: 1 auto;
         columns: 1 auto;
  }
}
.search-results-set {
  position: relative;
  -moz-columns: 4 auto;
       columns: 4 auto;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (max-width: 1023px) {
  .search-results-set {
    -moz-columns: 3 auto;
         columns: 3 auto;
  }
}
@media (max-width: 767px) {
  .search-results-set {
    -moz-columns: 1 auto;
         columns: 1 auto;
  }
}
.search-results-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 16px;
  min-height: 150px;
  width: calc(25% - 8px);
  transition: opacity 0.4s ease;
}
@media (max-width: 1023px) {
  .search-results-item {
    width: calc(33.33% - 8px);
  }
}
@media (max-width: 767px) {
  .search-results-item {
    width: 100%;
  }
}
.search-results-item:focus-within {
  outline: none;
}
.search-results-item:focus-within:not(:focus-visible) {
  outline: none;
}
.search-results-item.loading {
  opacity: 0 !important;
}
.search-results-item .click-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -5000px;
  z-index: 3;
  display: block;
  text-decoration: none;
}
.search-results-item .click-area:hover + .search-results-item-image {
  transform: scale(1.1);
}
.search-results-item .click-area:hover + .search-results-item-quote {
  transform: scale(1.1);
}
.search-results-item .click-area:focus + .search-results-item-image {
  transform: scale(1.1);
}
.search-results-item .click-area:focus + .search-results-item-quote {
  transform: scale(1.1);
}
.search-results-item-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 2s ease;
  margin: 0;
}
.search-results-item-description {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 40%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 91.4%);
  display: flex;
  align-items: flex-end;
  max-height: 97px;
}
.search-results-item-description p {
  font-size: 20px;
  background: center right 14px no-repeat transparent;
  width: 100%;
  font-weight: bold;
  box-sizing: border-box;
  line-height: 1;
  margin: 0;
}
.search-results-item-description p.name {
  color: #fff;
  padding: 14px 50px 14px 14px;
}
.search-results-item-quote {
  position: relative;
  padding: 24px 32px;
  transition: all 2s ease;
}
.search-results-item-quote p {
  font-size: 22px;
  font-weight: 300;
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  line-height: 38px;
  color: #fff;
  font-style: italic;
}
.search-results-item.audio .search-results-item-description p {
  background-image: url(../images/ico-audio.png);
}
.search-results-item.image .search-results-item-description p {
  background-image: url(../images/ico-photo.png);
}
.search-results-item.text .search-results-item-description p {
  background-image: url(../images/ico-book.png);
}
.search-results-item.quote:before {
  content: "";
  width: 22px;
  height: 54px;
  position: absolute;
  top: 30px;
  left: 6px;
  background: url(../images/ico-quote-start.png) 0 0 no-repeat transparent;
  background-size: 100% auto;
}
.search-results-item.quote .search-results-item-description p {
  background-image: url(../images/ico-quote.png);
}
.search-results-item.video .search-results-item-description p {
  background-image: url(../images/ico-video.png);
}
.search-results-item.reflection:before {
  content: "";
  width: 22px;
  height: 54px;
  position: absolute;
  top: 30px;
  left: 6px;
  background: url(../images/ico-quote-start.png) 0 0 no-repeat transparent;
  background-size: 100% auto;
}
.search-results-item.reflection .search-results-item-description {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #569099 50.52%);
}
.search-results-none p {
  color: #fff;
  font-size: 24px;
}

.feature-box {
  position: relative;
  border: 1px solid #569099;
  border-radius: 15px;
  padding: 24px;
  display: flex;
}
.feature-box-content {
  position: relative;
  display: block;
  width: 100%;
}
.feature-box-content-snippet {
  position: relative;
  padding-bottom: 28px;
}
.feature-box-content-snippet p {
  font-size: 22px;
  line-height: 38px;
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  color: #fff;
  font-weight: 300;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.feature-box-content-author {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 65%;
  height: 20px;
  overflow: hidden;
}
.feature-box-content-author p {
  font-size: 20px;
  color: #569099;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}
.feature-box-content-link {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
}
.feature-box-content-link a {
  font-size: 20px;
  color: #D6492A;
  font-weight: bold;
}
.feature-box-content-link a:hover {
  text-decoration: none;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #000;
  opacity: 0.65;
}
.modal-content {
  position: relative;
  width: 75%;
  height: 65%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.modal-content-header {
  position: relative;
  text-align: right;
  width: 100%;
}
.modal-content-header .modal-icon-close {
  font-size: 20px;
  color: #fff;
  line-height: 48px;
  display: inline-block;
  background: url(../images/ico-close-white.png) center right no-repeat transparent;
  background-size: auto 100%;
  padding-right: 54px;
  text-decoration: none;
}
.modal-content-media {
  position: relative;
  width: 100%;
  text-align: center;
}
.modal-content-media.embed-yt {
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.modal-content-media.embed-yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.modal-content-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 65vw;
  max-height: 65vh;
  margin: auto;
}
.modal-content-media video.audioOnly {
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-content-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 65vw;
  max-height: 65vh;
  margin: auto;
}
.modal-content .modal-arrow {
  background: center center no-repeat transparent;
  background-size: cover;
  display: inline-block;
  text-decoration: none;
  border: none;
  text-indent: -5000px;
  width: 88px;
  height: 88px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
.modal-content .modal-arrow.next {
  background-image: url(../images/ico-chevron-right-white.png);
  right: -88px;
}
.modal-content .modal-arrow.prev {
  background-image: url(../images/ico-chevron-left-white.png);
  left: -88px;
}

.landing {
  background: url(../images/bg-main.png) center top repeat-x #F1F0EB;
}
.landing:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/ui-homepage-hero.png) top left 15% no-repeat transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.landing:after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/bg-reflections.png) center bottom repeat #000;
  height: 0;
  z-index: 20;
  transition: height 0.4s ease;
}
.landing-hero {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .landing-hero {
    padding-top: 46px;
  }
}
.landing-hero-slideshow {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: calc(100vh - 305px);
  min-height: 400px;
}
@media (max-width: 1023px) {
  .landing-hero-slideshow {
    height: auto;
    flex-wrap: wrap;
  }
}
.landing-hero-slideshow-title {
  position: relative;
  max-width: 720px;
  width: calc(100% - 600px);
  opacity: 0;
  transition: opacity 2s ease;
}
@media (max-height: 800px) {
  .landing-hero-slideshow-title {
    width: calc(100% - 450px);
  }
}
@media (max-width: 1023px) {
  .landing-hero-slideshow-title {
    width: 100%;
    max-width: 430px;
    margin: 40px auto 0;
  }
}
@media (max-width: 767px) {
  .landing-hero-slideshow-title {
    margin-top: 0;
  }
}
.landing-hero-slideshow-title h1 {
  position: relative;
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
  text-align: right;
}
@media (max-width: 1023px) {
  .landing-hero-slideshow-title h1 {
    padding: 0;
    width: 100%;
    text-align: left;
    max-width: 600px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .landing-hero-slideshow-title h1 {
    width: 100%;
    text-align: left;
    max-width: 300px;
    margin: auto;
    line-height: 1;
  }
}
.landing-hero-slideshow-title h1 span {
  font-family: inherit;
  color: black;
  font-style: italic;
  font-weight: 400;
  display: inline-block;
}
@media (max-width: 767px) {
  .landing-hero-slideshow-title h1 span {
    font-size: 48px;
  }
}
.landing-hero-slideshow-title h1 span.line-1 {
  display: block;
  width: 100%;
  font-size: 84px;
}
@media (max-width: 1365px) {
  .landing-hero-slideshow-title h1 span.line-1 {
    font-size: 63px;
  }
}
@media (max-width: 767px) {
  .landing-hero-slideshow-title h1 span.line-1 {
    display: inline;
    line-height: 1;
    font-size: 48px;
  }
}
.landing-hero-slideshow-title h1 span.line-2 {
  display: block;
  width: 100%;
  font-size: 92px;
}
@media (max-width: 1365px) {
  .landing-hero-slideshow-title h1 span.line-2 {
    font-size: 69px;
  }
}
@media (max-width: 767px) {
  .landing-hero-slideshow-title h1 span.line-2 {
    display: inline;
    line-height: 1;
    font-size: 48px;
  }
}
.landing-hero-slideshow-title h1 span.line-3 {
  display: block;
  width: 100%;
  font-size: 114px;
}
@media (max-width: 1365px) {
  .landing-hero-slideshow-title h1 span.line-3 {
    font-size: 86px;
  }
}
@media (max-width: 767px) {
  .landing-hero-slideshow-title h1 span.line-3 {
    display: inline;
    line-height: 1;
    font-size: 48px;
  }
}
.landing-hero-slideshow-title h1 span.line-3 span {
  padding-right: 80px;
}
@media (max-width: 767px) {
  .landing-hero-slideshow-title h1 span.line-3 span {
    padding-right: 0px;
  }
}
.landing-hero-slideshow-title h1 span.sm {
  font-size: 40px;
}
@media (max-width: 1365px) {
  .landing-hero-slideshow-title h1 span.sm {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .landing-hero-slideshow-title h1 span.sm {
    font-size: 35px;
    line-height: 1;
  }
}
.landing-hero-slideshow-title h1 span.orange {
  color: #D6492A;
}
.landing-hero-slideshow-title h1 span.pad-left {
  padding-left: 40px;
}
@media (max-width: 1023px) {
  .landing-hero-slideshow-title h1 span.pad-left {
    padding-left: 0px;
  }
}
.landing-hero-slideshow-title h1 span.pad-right {
  padding-right: 40px;
}
@media (max-width: 1023px) {
  .landing-hero-slideshow-title h1 span.pad-right {
    padding-right: 0px;
  }
}
.landing-hero-slideshow-media {
  position: relative;
  width: 570px;
  display: flex;
  justify-content: flex-end;
  height: 693px;
  box-sizing: border-box;
  padding: 40px 0;
}
@media (max-height: 800px) {
  .landing-hero-slideshow-media {
    width: 411.25px;
    height: 500px;
  }
}
@media (max-width: 1023px) {
  .landing-hero-slideshow-media {
    margin: auto;
  }
}
@media (max-width: 767px) {
  .landing-hero-slideshow-media {
    width: 300px;
    height: 365px;
    padding: 0;
    margin: 40px auto 72px;
  }
}
.landing-hero-slideshow-media-content {
  position: relative;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px 40px;
}
@media (max-height: 800px) {
  .landing-hero-slideshow-media-content {
    padding: 15px 30px;
  }
}
@media (max-width: 767px) {
  .landing-hero-slideshow-media-content {
    padding: 12px 15px;
  }
}
.landing-hero-slideshow-media-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(../images/bg-frame.png) center center no-repeat transparent;
  background-size: auto 100%;
}
.landing-hero-slideshow-media-content img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-hero-slideshow-media-content video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
.landing-hero-slideshow-media-content-controls {
  position: absolute;
  width: 176px;
  height: 48px;
  bottom: 48px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px;
  z-index: 3;
}
.landing-hero-slideshow-media-content-controls:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(176, 163, 69, 0.9);
  z-index: 1;
}
.landing-hero-slideshow-media-content-controls .btn-control {
  position: relative;
  z-index: 4;
  width: 32px;
  height: 32px;
  text-indent: -5000px;
  background: center center no-repeat transparent;
  background-size: cover;
  border: none;
  cursor: pointer;
}
.landing-hero-slideshow-media-content-controls .btn-control:focus {
  outline: 1px dashed #D6492A;
  outline-offset: 4px;
}
.landing-hero-slideshow-media-content-controls .btn-control.btn-control-audio {
  background-image: url(../images/ico-volume-on.png);
}
.landing-hero-slideshow-media-content-controls .btn-control.btn-control-audio.off {
  background-image: url(../images/ico-volume-off.png);
}
.landing-hero-slideshow-media-content-controls .btn-control.btn-control-play {
  background-image: url(../images/ico-play.png);
}
.landing-hero-slideshow-media-content-controls .btn-control.btn-control-play.playing {
  background-image: url(../images/ico-pause.png);
}
.landing-hero-slideshow-media-content-controls .btn-control.btn-control-restart {
  background-image: url(../images/ico-replay.png);
}
.landing-hero-slideshow-media-ui {
  position: relative;
  width: 20px;
  margin-left: 16px;
}
@media (max-width: 767px) {
  .landing-hero-slideshow-media-ui {
    position: absolute;
    margin: 0;
    right: -24px;
    height: 100%;
  }
}
.landing-hero-slideshow-media-ui span {
  position: absolute;
}
.landing-hero-slideshow-media-ui span.ui-circle {
  background: #595959;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 61px;
  right: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.landing-hero-slideshow-media-ui span.ui-circle:first-child {
  top: 47px;
}
.landing-hero-slideshow-media-ui span.ui-line-thin {
  background: #B0A345;
  width: 1px;
  height: 0%;
  top: 30px;
  right: 8px;
  transition: height 0.8s ease;
}
.landing-hero-slideshow-media-ui span.ui-line-thick {
  background: #B0A345;
  width: 4px;
  height: 0%;
  top: 21px;
  right: 0;
  transition: height 0.4s ease;
}
.landing-hero-name {
  position: relative;
  display: flex;
  height: 303px;
  opacity: 0;
  transition: opacity 1s ease;
}
@media (max-width: 1023px) {
  .landing-hero-name {
    height: auto;
    min-height: 180px;
  }
}
.landing-hero-name-ui {
  position: relative;
  margin-right: 24px;
  width: 9px;
}
@media (max-width: 767px) {
  .landing-hero-name-ui {
    margin-right: 8px;
  }
}
.landing-hero-name-ui .ui-line {
  position: absolute;
}
.landing-hero-name-ui .ui-line.thick {
  top: 0;
  left: 0;
  height: 177px;
}
@media (max-width: 1023px) {
  .landing-hero-name-ui .ui-line.thick {
    height: 100px;
  }
}
.landing-hero-name-ui .ui-line.thin {
  top: 8px;
  left: 8px;
  height: 205px;
}
@media (max-width: 1023px) {
  .landing-hero-name-ui .ui-line.thin {
    height: 160px;
  }
}
@media (max-width: 767px) {
  .landing-hero-name-ui .ui-line.thin {
    max-height: 160px;
  }
}
.landing-hero-name-copy {
  position: relative;
  padding: 20px 20px 0 0;
}
@media (max-width: 767px) {
  .landing-hero-name-copy {
    padding-left: 8px;
  }
}
.landing-hero-name-copy p {
  font-size: 22px;
  color: #000;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  max-width: 566px;
}
@media (max-width: 767px) {
  .landing-hero-name-copy p {
    font-size: 18px;
  }
}
.landing-hero-name-copy p.name {
  font-size: 44px;
  margin-top: 12px;
}
.landing-quote {
  position: relative;
  margin: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 2s ease;
}
@media (max-width: 1023px) {
  .landing-quote {
    height: auto;
    padding: 60px 0 0;
  }
}
.landing-quote-content {
  position: relative;
  width: 90%;
  max-width: 820px;
  margin: auto;
}
@media (max-width: 1023px) {
  .landing-quote-content {
    width: 96%;
  }
}
.landing-quote-content p {
  position: relative;
  font-size: 32px;
  font-family: "Verlag A", "Verlag B", Verlag;
  font-style: italic;
  font-weight: 300;
  line-height: 51px;
  margin: 0;
}
@media (max-width: 767px) {
  .landing-quote-content p {
    font-size: 24px;
    line-height: 40px;
  }
}
.landing-quote-content p.quote-copy {
  color: #595959;
  padding-left: 24px;
}
@media (max-width: 767px) {
  .landing-quote-content p.quote-copy {
    padding-right: 24px;
  }
}
.landing-quote-content p.quote-copy span {
  color: #D6492A;
  font-size: 38px;
  line-height: 46px;
}
.landing-quote-content p.quote-copy span.opening-quote {
  position: absolute;
  top: 0;
  left: 0;
}
.landing-quote-content p.quote-copy span.closing-quote {
  position: relative;
  top: 10px;
}
.landing-quote-content p.quote-author {
  margin: 48px 0 0;
  color: #000;
}
@media (max-width: 767px) {
  .landing-quote-content p.quote-author {
    padding-left: 20px;
  }
}
.landing-influence {
  position: relative;
  padding: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: none !important;
}
.landing-influence-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  background: url(../images/ui-homepage-1.png) center right no-repeat transparent;
  min-height: 320px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.landing-influence-content p {
  color: #569099;
  font-size: 36px;
  line-height: 47px;
  text-align: right;
  max-width: 600px;
  box-sizing: border-box;
  padding-right: 60px;
  font-weight: bold;
  margin: 0;
}
.landing-themes {
  position: relative;
  padding: 120px 0 114px;
}
@media (max-width: 1023px) {
  .landing-themes {
    padding: 74px 0 114px;
  }
}
.landing-themes-content {
  position: relative;
  width: 90%;
  max-width: 1040px;
  margin: auto;
}
.landing-themes-content-header {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 16px;
}
.landing-themes-content-header p {
  background: url(../images/ico-shape-1.png) center left no-repeat transparent;
  font-size: 20px;
  color: #000;
  padding-left: 22px;
  line-height: 1.3;
  min-height: 48px;
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
}
.landing-themes-content-list {
  position: relative;
}
.landing-themes-content-list ul {
  position: relative;
  list-style: none;
}
.landing-themes-content-list ul li {
  position: relative;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.landing-themes-content-list ul li.show {
  opacity: 1;
}
.landing-themes-content-list ul li a {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  text-decoration: none;
  font-size: 54px;
  padding: 32px 0;
  color: #000;
  transition: color 0.4s ease;
}
.landing-themes-content-list ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.7;
  background: #B0A345;
  transition: background 0.4s ease, opacity 0.4s ease;
}
.landing-themes-content-list ul li a .ui-hover {
  position: absolute;
  top: 0;
  left: -40px;
  width: 20px;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.landing-themes-content-list ul li a .ui-hover .ui-hover-line {
  height: 64px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
  background: #569099;
}
.landing-themes-content-list ul li a .ui-hover .ui-hover-line.thick {
  left: 0;
}
.landing-themes-content-list ul li a .ui-hover .ui-hover-line.thin {
  left: 8px;
}
.landing-themes-content-list ul li a .ui-hover .ui-hover-circle {
  width: 6px;
  height: 6px;
  position: absolute;
  display: block;
  left: 12px;
  background: #595959;
  border-radius: 50%;
}
.landing-themes-content-list ul li a .ui-hover .ui-hover-circle.ui-circle-top {
  top: 43%;
}
.landing-themes-content-list ul li a .ui-hover .ui-hover-circle.ui-circle-bottom {
  bottom: 43%;
}
.landing-themes-content-list ul li a .hover-copy {
  width: 55%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  color: #595959;
  font-size: 20px;
  line-height: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.landing-themes-content-list ul li a:hover {
  color: #569099;
}
.landing-themes-content-list ul li a:hover:after {
  background: #569099;
  opacity: 1;
}
.landing-themes-content-list ul li a:hover .ui-hover {
  opacity: 1;
}
.landing-themes-content-list ul li a:hover .hover-copy {
  opacity: 1;
}
@media (max-width: 1023px) {
  .landing-themes-content-list ul li a:hover .hover-copy {
    opacity: 0;
  }
}
.landing-themes-content-list ul li:first-child a {
  color: #D6492A;
  font-style: italic;
}
.landing-themes-content-list ul li:first-child a span {
  font-style: normal;
}
.landing-themes-content-list ul li:first-child a:hover {
  color: #569099;
}
.landing.loaded:before {
  opacity: 1;
}
.landing.loaded .landing-hero.loaded .landing-hero-slideshow-title {
  opacity: 1;
}
.landing.loaded .landing-hero.loaded .landing-hero-slideshow-media-content {
  opacity: 1;
}
.landing.loaded .landing-hero.loaded .landing-hero-slideshow-media-ui .ui-circle {
  opacity: 1;
}
.landing.loaded .landing-hero.loaded .landing-hero-slideshow-media-ui .ui-line-thin {
  height: 68%;
}
.landing.loaded .landing-hero.loaded .landing-hero-slideshow-media-ui .ui-line-thick {
  height: 28%;
}
.landing.loaded .landing-hero.loaded .landing-hero-name {
  opacity: 1;
}
.landing.loaded .landing-quote.loaded {
  opacity: 1;
}
.landing.loaded .landing-influence.loaded {
  opacity: 1;
}
.landing.showTheme:after {
  height: 100%;
}

.about {
  position: relative;
  background: url(../images/bg-main.png) center top repeat-x #F1F0EB;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.about-hero {
  position: relative;
}
.about-hero-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  padding: 120px 0 64px;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .about-hero-content {
    padding-top: 40px;
  }
}
.about-hero-content-copy {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
@media (max-width: 767px) {
  .about-hero-content-copy {
    width: 100%;
    margin-bottom: 40px;
  }
}
.about-hero-content-copy h1 {
  font-size: 92px;
  font-style: italic;
  font-weight: normal;
  line-height: 102.8%;
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  color: #000;
  width: 446px;
}
.about-hero-content-copy h1 {
  font-size: 84px;
}
@media screen and (min-width: 320px) {
  .about-hero-content-copy h1 {
    font-size: calc(84px + 8 * (100vw - 320px) / 1600);
  }
}
@media screen and (min-width: 1920px) {
  .about-hero-content-copy h1 {
    font-size: 92px;
  }
}
@media (max-with: 767px) {
  .about-hero-content-copy h1 {
    text-align: left;
  }
}
.about-hero-content-copy h1 span {
  font: inherit;
  color: inherit;
}
.about-hero-content-copy h1 span.orange {
  color: #D6492A;
}
.about-hero-content-image {
  position: relative;
  width: 50%;
  padding-right: 16px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .about-hero-content-image {
    width: 100%;
  }
}
.about-hero-content-image:before {
  content: "";
  height: 0;
  width: 1px;
  background: #B0A345;
  position: absolute;
  top: 0;
  right: 8px;
  transition: height 1s ease;
}
.about-hero-content-image:after {
  content: "";
  height: 0;
  top: 47px;
  width: 5px;
  right: 0;
  position: absolute;
  background: #B0A345;
  transition: height 1s ease;
}
.about-hero-content-image img {
  display: block;
  width: 100%;
}
.about-copy {
  position: relative;
}
.about-copy-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.about-copy-content-headline {
  position: relative;
}
.about-copy-content-headline .ui-line {
  position: absolute;
  display: block;
}
.about-copy-content-headline .ui-line.thick {
  height: 177px;
  top: 0;
  left: 0;
}
.about-copy-content-headline .ui-line.thin {
  height: 397px;
  top: 8px;
  left: 8px;
}
.about-copy-content-headline .ui-circle {
  position: absolute;
  background: #595959;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 92px;
  left: 12px;
}
.about-copy-content-headline .ui-circle.top {
  top: 78px;
}
.about-copy-content-headline h2 {
  color: #569099;
  font-size: 36px;
  line-height: 47px;
  text-align: left;
  max-width: 600px;
  box-sizing: border-box;
  padding: 64px 0 19px 64px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .about-copy-content-headline h2 {
    padding-left: 40px;
  }
}
.about-copy-content-main {
  position: relative;
  padding: 40px 0 200px 64px;
}
@media (max-width: 767px) {
  .about-copy-content-main {
    padding-left: 40px;
  }
}
.about-copy-content-main p {
  font-size: 20px;
  line-height: 32px;
  color: #000;
  margin-bottom: 40px;
}
.about.loaded {
  opacity: 1;
}
.about.loaded .about-hero-content-image.loaded:before {
  height: 195px;
}
.about.loaded .about-hero-content-image.loaded:after {
  height: 265px;
}

.reflections {
  position: relative;
  background: url(../images/bg-reflections.png) center bottom repeat #000;
}
.reflections-header {
  position: relative;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reflections-header:before {
  content: "";
  background: bottom left no-repeat transparent;
  background-size: auto 224px;
  position: absolute;
  height: 224px;
  bottom: -60px;
  left: 0;
  width: 100%;
  opacity: 0.04;
}
.reflections-header-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  padding: 118px 0 0;
}
.reflections-header-content-back {
  position: relative;
  padding: 0 0 30px 30px;
}
@media (max-width: 767px) {
  .reflections-header-content-back {
    padding: 0 0 30px;
  }
}
.reflections-header-content-back a {
  background: url(../images/ui-arrow-left-orange.png) center left no-repeat transparent;
  background-size: 22px auto;
  padding-left: 42px;
  height: 32px;
  display: inline-block;
}
.reflections-header-content-back a span {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  display: inline-block;
  text-decoration: underline;
  font-weight: 400;
}
.reflections-header-content-text {
  position: relative;
}
.reflections-header-content-text h1 {
  position: relative;
  padding: 0 0 16px 30px;
  font-size: 64px;
  color: #569099;
  font-weight: 400;
  line-height: 64px;
}
.reflections-header-content-text h1 span {
  position: absolute;
  display: block;
}
.reflections-header-content-text h1 span.ui-line {
  height: 64px;
  top: 0;
  background: #569099;
}
.reflections-header-content-text h1 span.ui-line.thick {
  width: 4px;
  left: 0;
}
.reflections-header-content-text h1 span.ui-line.thin {
  width: 1px;
  left: 8px;
}
.reflections-header-content-text h1 span.ui-circle {
  position: absolute;
  background: #595959;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 14px;
}
.reflections-header-content-text h1 span.ui-circle.top {
  top: 25px;
}
.reflections-header-content-text h1 span.ui-circle.bottom {
  top: 35px;
}
.reflections-header-content-text p {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  width: 90%;
  max-width: 600px;
  padding: 0 0 0 30px;
  font-weight: 400;
  margin: 0;
}
.reflections-header.loaded {
  opacity: 1;
}
.reflections-features {
  position: relative;
  padding: 100px 0 0;
  opacity: 0;
  transform: translate(0, 20px);
  transition: all 0.4s ease;
}
.reflections-features-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
.reflections-features-content-header {
  position: relative;
  padding-left: 22px;
  background: url(../images/ico-shape-1.png) center left no-repeat transparent;
  background-size: auto 48px;
}
.reflections-features-content-header h2 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  line-height: 48px;
  padding-top: 6px;
}
.reflections-features-content-list {
  position: relative;
  padding: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.reflections-features-content-list-item {
  position: relative;
  width: calc(50% - 8px);
}
@media (max-width: 767px) {
  .reflections-features-content-list-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.reflections-features.loaded {
  opacity: 1;
  transform: translate(0, 0);
}
.reflections-posts {
  position: relative;
  padding: 110px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.reflections-posts-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
.reflections-posts-content-controls {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reflections-posts-content-controls-switch {
  position: relative;
}
@media (max-width: 767px) {
  .reflections-posts-content-controls-switch {
    margin-bottom: 20px;
    width: 100%;
  }
}
.reflections-posts-content-controls-switch select {
  min-width: 180px;
  padding: 16px 52px 16px 12px;
  font-size: 20px;
  font-weight: 400;
  background: url(../images/ico-arrow-dropdown.png) center right no-repeat transparent;
  color: #fff;
  border-radius: 5px;
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .reflections-posts-content-controls-switch select {
    width: 100%;
  }
}
.reflections-posts-content-controls-switch select option {
  background: #000;
}
.reflections-posts-content-controls-filter {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.reflections-posts-content-controls-search {
  position: relative;
  height: 48px;
  border-radius: 50px;
  background: #fff;
  padding: 0 16px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .reflections-posts-content-controls-search {
    width: 100%;
    margin-bottom: 20px;
  }
}
.reflections-posts-content-controls-search:focus-within {
  outline: 1px dashed #D6492A;
  outline-offset: 4px;
}
.reflections-posts-content-controls-search input {
  border: none;
  height: 100%;
  margin-right: 24px;
  min-width: 240px;
  position: relative;
  display: block;
  margin: 0 100px 0 20px;
  font-size: 20px;
  color: #595959;
  line-height: 48px;
  outline: none;
}
@media (max-width: 767px) {
  .reflections-posts-content-controls-search input {
    min-width: 0;
    width: calc(100% - 102px);
  }
}
.reflections-posts-content-controls-search input:focus {
  outline: none;
}
.reflections-posts-content-controls-search .link-reset {
  font-size: 18px;
  color: #D6492A;
  line-height: 48px;
  position: absolute;
  top: 0;
  right: 52px;
  z-index: 2;
}
.reflections-posts-content-controls-search .btn-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  z-index: 2;
}
.reflections-posts-content-controls-sort {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .reflections-posts-content-controls-sort {
    width: 100%;
    justify-content: flex-end;
    margin: 0;
  }
}
.reflections-posts-content-controls-sort p {
  font-size: 20px;
  color: #fff;
  margin-right: 16px;
  margin-bottom: 0;
  line-height: 1;
}
.reflections-posts-content-controls-sort select {
  height: 48px;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  background: url(../images/ico-arrow-dropdown.png) center right no-repeat transparent;
  border: none;
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
  appearance: none;
  padding: 0 40px 0 10px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: right;
}
@media (max-width: 767px) {
  .reflections-posts-content-controls-sort select {
    width: auto;
  }
}
.reflections-posts-content-controls-sort select:focus {
  outline: none;
}
.reflections-posts-content-controls-sort select option {
  background: #000;
  text-align: left;
}
.reflections-posts-content-results {
  position: relative;
  padding: 32px 0;
}
.reflections-posts-content-results .search-results-item {
  opacity: 0;
  transform: translate(0, 10px);
}
.reflections-posts.loaded {
  opacity: 1;
}
.reflections-posts.loaded .reflections-posts-content-results {
  position: relative;
}
.reflections-posts.loaded .reflections-posts-content-results .search-results-item {
  animation-name: animateIn;
  animation-duration: 200ms;
  animation-delay: calc(var(--animation-order) * 50ms);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}
.reflections.god-and-humanity .reflections-header:before {
  background-image: url(../images/bg-godhumanity.png);
}
.reflections.holy-time .reflections-header:before {
  background-image: url(../images/bg-holytime.png);
}
.reflections.justice .reflections-header:before {
  background-image: url(../images/bg-justice.png);
}
.reflections.many-faiths .reflections-header:before {
  background-image: url(../images/bg-manyfaiths.png);
}
.reflections.prayer .reflections-header:before {
  background-image: url(../images/bg-prayer.png);
}
.reflections.scripture .reflections-header:before {
  background-image: url(../images/bg-scripture.png);
}
.reflections.wonder .reflections-header:before {
  background-image: url(../images/bg-wonder.png);
}
@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translate(0, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.post {
  position: relative;
}
.post-header {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  padding: 118px 0 0;
}
.post-header a {
  background: url(../images/ui-arrow-left-orange.png) center left no-repeat transparent;
  background-size: 22px auto;
  padding-left: 42px;
  height: 32px;
}
.post-header a span {
  font-size: 20px;
  line-height: 32px;
  color: #D6492A;
  display: inline-block;
  text-decoration: underline;
  font-weight: 400;
}
.post-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  padding: 28px 0 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.post-content-article {
  position: relative;
  width: calc(100% - 320px);
  padding-right: 85px;
  box-sizing: border-box;
  padding-bottom: 60px;
}
@media (max-width: 1023px) {
  .post-content-article {
    width: 100%;
    padding-right: 0;
  }
}
.post-content-article h1 {
  position: relative;
  padding: 0 0 48px 30px;
  font-size: 64px;
  color: #569099;
  font-weight: 400;
  line-height: 64px;
}
.post-content-article h1 span {
  position: absolute;
  display: block;
}
.post-content-article h1 span.ui-line {
  height: 64px;
  top: 0;
  background: #569099;
}
.post-content-article h1 span.ui-line.thick {
  width: 4px;
  left: 0;
}
.post-content-article h1 span.ui-line.thin {
  width: 1px;
  left: 8px;
}
.post-content-article h1 span.ui-circle {
  position: absolute;
  background: #595959;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 14px;
}
.post-content-article h1 span.ui-circle.top {
  top: 25px;
}
.post-content-article h1 span.ui-circle.bottom {
  top: 35px;
}
.post-content-article-top {
  position: relative;
  margin-bottom: 40px;
}
.post-content-article-top video {
  width: 100%;
  position: relative;
  z-index: 1;
}
.post-content-article-top img {
  width: 100%;
}
.post-content-article-top.post-quote {
  margin: 40px 0 80px;
}
.post-content-article-top.post-quote p {
  font-size: 30px;
  line-height: 300px;
  line-height: 46px;
  color: #D6492A;
  position: relative;
  padding: 0 40px;
  max-width: 85%;
  margin: auto;
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  font-style: italic;
}
@media (max-width: 767px) {
  .post-content-article-top.post-quote p {
    max-width: 100%;
  }
}
.post-content-article-top.post-quote p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/ico-quote-start.png) top left no-repeat transparent;
  width: 30px;
  height: 74px;
  background-size: 30px auto;
}
.post-content-article-top.post-quote p:after {
  content: "";
  position: absolute;
  bottom: 0;
  margin-left: 10px;
  background: url(../images/ico-quote-end.png) bottom left no-repeat transparent;
  width: 30px;
  height: 74px;
  background-size: 30px auto;
}
.post-content-article-top.post-video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.25;
  z-index: 2;
}
.post-content-article-top.post-video button {
  border: none;
  background: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.post-content-article-main {
  position: relative;
}
.post-content-article-main h2 {
  font-size: 32px;
  line-height: 47px;
  color: #569099;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 40px;
}
.post-content-article-main p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 40px;
}
.post-content-article-main p a {
  font: inherit;
  color: #D6492A;
}
.post-content-article-main p a:hover {
  text-decoration: none;
}
.post-content-article-main p b, .post-content-article-main p strong {
  font-weight: bold;
}
.post-content-article-main p kbd {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  font-style: italic;
  color: #D6492A;
}
.post-content-article-main img {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.post-content-article-main .wp-block-video {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
.post-content-article-main .wp-block-video:before {
  content: "";
  width: 75px;
  height: 75px;
  display: block;
  background: url(../images/ico-play-lg.png) center center no-repeat transparent;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.post-content-article-main .wp-block-video video {
  display: block;
  width: 100%;
}
.post-content-article-main .wp-block-video.is-playing:before {
  display: none;
}
.post-content-article-main blockquote {
  padding: 0 24px;
  margin-bottom: 40px;
}
.post-content-article-main blockquote p {
  font-size: 24px;
  color: #595959;
  font-weight: 300;
  font-style: italic;
  line-height: 32px;
  position: relative;
}
.post-content-article-main blockquote p:before {
  content: "“";
  font-size: 36px;
  color: #D6492A;
  line-height: 32px;
  font-weight: 300;
  position: absolute;
  top: 0;
  left: -15px;
}
.post-content-article-main blockquote p:after {
  content: "“";
  font-size: 36px;
  color: #D6492A;
  line-height: 32px;
  font-weight: 300;
  display: inline-block;
  transform: rotate(180deg);
  margin-left: 10px;
  bottom: 15px;
  position: absolute;
}
.post-content-article-main blockquote cite {
  font-size: 18px;
  font-weight: bold;
  color: #595959;
}
.post-content-article-gallery {
  position: relative;
}
.post-content-article-gallery h2 {
  font-size: 32px;
  line-height: 47px;
  color: #569099;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 40px;
}
.post-content-article-gallery .article-gallery-list {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.post-content-article-gallery .article-gallery-list-item {
  position: relative;
  width: 30%;
  padding-bottom: 30%;
  margin-bottom: 10px;
  margin-right: 10px;
}
.post-content-article-gallery .article-gallery-list-item-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}
.post-content-article-gallery .article-gallery-list-item-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 2;
}
.post-content-article-gallery .article-gallery-list-item-link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.post-content-article-gallery .article-gallery-list-item-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .post-content-article-gallery .article-gallery-list-item-link.video svg {
    height: 30px;
  }
}
@media (max-width: 767px) {
  .post-content-article-gallery .article-gallery-list-item-link.image svg {
    height: 30px;
  }
}
@media (max-width: 767px) {
  .post-content-article-gallery .article-gallery-list-item-link.audio svg {
    height: 40px;
  }
}
.post-content-article-gallery .article-gallery-list .spotify-embed, .post-content-article-gallery .article-gallery-list .youtube-embed {
  display: none;
}
.post-content-article-tags {
  position: relative;
  display: flex;
  padding: 64px 0;
}
.post-content-article-tags p {
  font-size: 20px;
  color: #000;
  margin-right: 12px;
}
.post-content-article-tags ul {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.post-content-article-tags ul li {
  position: relative;
  margin: 0 4px;
}
.post-content-article-tags ul li a {
  text-decoration: none;
  display: block;
  padding: 4px 8px;
  border: 1px solid #D6492A;
  box-sizing: border-box;
  font-size: 16px;
  color: #D6492A;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.4s ease;
}
.post-content-article-tags ul li a:hover {
  color: #fff;
  background: #D6492A;
}
.post-content-related {
  position: relative;
  width: 320px;
  border-left: 1px solid #B0A345;
  padding-left: 30px;
  box-sizing: border-box;
  margin-top: 112px;
}
@media (max-width: 1023px) {
  .post-content-related {
    width: 100%;
    border-left: none;
    padding-left: 0;
    margin: auto;
    border-top: 1px solid #B0A345;
    padding-top: 74px;
    padding-bottom: 60px;
  }
}
.post-content-related-header {
  position: relative;
  margin-bottom: 30px;
}
.post-content-related-header p {
  background: url(../images/ico-shape-1.png) center left no-repeat transparent;
  font-size: 20px;
  color: #000;
  padding-left: 22px;
  line-height: 48px;
  font-weight: bold;
  margin: 0;
}
.post-content-related-list {
  position: relative;
  width: 290px;
}
@media (max-width: 1023px) {
  .post-content-related-list {
    width: 100%;
  }
}
.post-content-related-list-item {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.post-content-related-list-item-quote {
  display: block;
  position: relative;
  bottom: auto;
  left: auto;
  z-index: 1;
  font-size: 22px;
  font-weight: 300;
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  line-height: 38px;
  color: #fff;
  font-style: italic;
  padding: 24px 32px;
  box-sizing: border-box;
}
.post-content-related-list-item img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: all 2s ease;
}
.post-content-related-list-item span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 3;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  padding-right: 45px;
  display: inline-block;
  line-height: 32px;
}
.post-content-related-list-item span.post-content-related-list-item-quote {
  display: block;
  position: relative;
  bottom: auto;
  left: auto;
  z-index: 1;
  font-size: 22px;
  font-weight: 300;
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  line-height: 38px;
  color: #fff;
  font-style: italic;
  padding: 24px 32px;
  box-sizing: border-box;
  min-height: 150px;
  transition: all 2s ease;
}
.post-content-related-list-item:hover img {
  transform: scale(1.1);
}
.post-content-related-list-item:hover .post-content-related-list-item-quote {
  transform: scale(1.1);
}
.post-content-related-list-item:before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 91.4%);
  width: 100%;
  height: 53%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.post-content-related-list-item:after {
  content: "";
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 3;
  width: 32px;
  height: 32px;
  background: center center no-repeat transparent;
  background-size: cover;
}
.post-content-related-list-item.related-audio:after {
  background-image: url(../images/ico-audio.png);
}
.post-content-related-list-item.related-video:after {
  background-image: url(../images/ico-video.png);
}
.post-content-related-list-item.related-quote {
  background: url(../images/bg-reflections.png) center bottom repeat #000;
}
.post-content-related-list-item.related-quote:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #569099 50.52%);
}
.post-content-related-list-item.related-quote:after {
  background-image: url(../images/ico-quote.png);
}
.post-content-related-list-item.related-text:after {
  background-image: url(../images/ico-book.png);
}
.post-content-related-list-item.related-image:after {
  background-image: url(../images/ico-photo.png);
}
.post-content-related-list-item.related-reflection {
  background: url(../images/bg-reflections.png) center bottom repeat #000;
}
.post-content-related-list-item.related-reflection:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #569099 50.52%);
}
.post-content-related-list-item.related-reflection:after {
  display: none;
}
.post-content-related-list-item.related-reflection .post-content-related-list-item-quote:before {
  content: "";
  width: 22px;
  height: 54px;
  position: absolute;
  top: 20px;
  left: 6px;
  background: url(../images/ico-quote-start.png) 0 0 no-repeat transparent;
  background-size: 100% auto;
}

.lifework {
  background: url(../images/bg-lifework.png) center center repeat transparent;
  background-size: contain;
}
.lifework-bio {
  position: relative;
  padding: 114px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (max-width: 1365px) {
  .lifework-bio {
    padding: 80px 0 0;
  }
}
@media (max-width: 767px) {
  .lifework-bio {
    padding: 46px 0 0;
  }
}
.lifework-bio-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lifework-bio-content-copy {
  position: relative;
  padding-left: 36px;
  width: 50%;
  max-width: 640px;
}
@media (max-width: 1023px) {
  .lifework-bio-content-copy {
    width: 100%;
    margin-bottom: 20px;
  }
}
.lifework-bio-content-copy .ui {
  position: absolute;
  display: block;
}
.lifework-bio-content-copy .ui.ui-line {
  height: 64px;
  top: 0;
  background: #B0A345;
  transition: height 1s ease;
}
.lifework-bio-content-copy .ui.ui-line.thick {
  width: 4px;
  left: 0;
  height: 0;
}
.lifework-bio-content-copy .ui.ui-line.thin {
  width: 1px;
  left: 8px;
  height: 0;
  top: 6px;
}
.lifework-bio-content-copy .ui.ui-circle {
  position: absolute;
  background: #595959;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 14px;
}
.lifework-bio-content-copy .ui.ui-circle.top {
  top: 29px;
}
.lifework-bio-content-copy .ui.ui-circle.bottom {
  top: 43px;
}
.lifework-bio-content-copy h1 {
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  color: #000;
  font-size: 64px;
  margin-bottom: 44px;
  font-weight: 400;
}
@media (max-width: 400px) {
  .lifework-bio-content-copy h1 {
    font-size: 54px;
  }
}
.lifework-bio-content-copy h1 .orange {
  font: inherit;
  color: #D6492A;
}
.lifework-bio-content-copy-excerpt {
  position: relative;
  margin-bottom: 32px;
}
.lifework-bio-content-copy-excerpt p {
  font-size: 32px;
  line-height: 46px;
  color: #000;
  font-weight: 400;
  font-style: italic;
}
.lifework-bio-content-copy-paragraph {
  position: relative;
}
.lifework-bio-content-copy-paragraph p {
  font-size: 20px;
  line-height: 32px;
  color: #000;
  font-weight: 400;
}
.lifework-bio-content-image {
  position: relative;
  width: 50%;
  background: url(../images/ui-lifework-1.png) bottom right no-repeat transparent;
  padding: 200px 25px 72px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 1023px) {
  .lifework-bio-content-image {
    width: 100%;
    padding: 0 0 60px;
  }
}
.lifework-bio-content-image img {
  display: block;
  max-width: 460px;
  width: 90%;
}
@media (max-width: 1023px) {
  .lifework-bio-content-image img {
    margin: auto;
  }
}
.lifework-timeline {
  position: relative;
  padding: 40px 0;
}
.lifework-timeline-bar {
  position: absolute;
  top: 120px;
  width: 16px;
  border-radius: 50px;
  background: #fff;
  height: calc(100vh - 240px);
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0);
  overflow: hidden;
}
@media (max-width: 767px) {
  .lifework-timeline-bar {
    display: none;
  }
}
.lifework-timeline-bar.fixed {
  position: fixed;
}
.lifework-timeline-bar.fixed .timeline-bar {
  transition: height 0.4s ease;
}
.lifework-timeline-bar .timeline-bar {
  background: #D6492A;
  display: block;
  width: 100%;
  height: 58px;
  border-radius: 50px;
  border: none;
  position: relative;
  transition: height 0.4s ease;
}
.lifework-timeline-shortcuts {
  position: sticky;
  top: 50%;
  left: 0;
  z-index: 2;
  width: 35%;
  min-width: 200px;
}
@media (max-width: 767px) {
  .lifework-timeline-shortcuts {
    display: none;
  }
}
.lifework-timeline-shortcuts .scroll-nav {
  position: relative;
}
.lifework-timeline-shortcuts .scroll-nav__list {
  position: relative;
}
.lifework-timeline-shortcuts .scroll-nav__item {
  position: relative;
  margin-bottom: 8px;
  height: 4px;
  display: block;
}
.lifework-timeline-shortcuts .scroll-nav__item:hover {
  height: 6px;
  margin-bottom: 6px;
}
.lifework-timeline-shortcuts .scroll-nav__item--active {
  margin-bottom: 8px !important;
  height: 4px !important;
}
.lifework-timeline-shortcuts .scroll-nav__item--active .scroll-nav__link:before {
  width: 56px;
  height: 4px !important;
}
.lifework-timeline-shortcuts .scroll-nav__link {
  position: relative;
  display: block;
  padding-left: 60px;
}
.lifework-timeline-shortcuts .scroll-nav__link:before {
  content: "";
  width: 48px;
  height: 4px;
  background: #D6492A;
  transition: all 0.4s ease;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.lifework-timeline-shortcuts .scroll-nav__link span {
  cursor: default;
  display: inline-block;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50px;
  font-size: 18px;
  color: #000;
  line-height: 30px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translate(0, -50%);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
  pointer-events: none;
}
.lifework-timeline-shortcuts .scroll-nav__link:hover:before {
  width: 56px;
  height: 6px;
}
.lifework-timeline-shortcuts .scroll-nav__link:hover span {
  opacity: 1;
  z-index: 2;
  left: 67px;
}
.lifework-timeline-shortcuts .scroll-nav__link:focus {
  outline: none;
}
.lifework-timeline-shortcuts-bar {
  position: relative;
  width: 48px;
  height: 4px;
  background: #D6492A;
  margin-bottom: 8px;
  transition: width 0.4s ease;
  display: block;
}
.lifework-timeline-shortcuts-bar span {
  display: inline-block;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 50px;
  font-size: 18px;
  color: #000;
  line-height: 30px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translate(0, -50%);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease;
}
.lifework-timeline-shortcuts-bar:hover {
  width: 56px;
}
.lifework-timeline-shortcuts-bar.active {
  width: 56px;
}
.lifework-timeline-shortcuts-bar.active span {
  opacity: 1;
  z-index: 2;
  left: 67px;
}
.lifework-timeline-list {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
.lifework-timeline-list-item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0px 0 120px;
  justify-content: space-between;
  opacity: 0;
  transition: all 1.5s ease;
  transform: translate(0, 100px);
}
@media (max-width: 767px) {
  .lifework-timeline-list-item {
    padding: 0px 0 120px;
    display: block;
  }
}
.lifework-timeline-list-item.show {
  opacity: 1;
  transform: translate(0, 0);
}
.lifework-timeline-list-item-header {
  position: relative;
  margin-bottom: 48px;
  width: 100%;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .lifework-timeline-list-item-header {
    padding-top: 0;
  }
}
.lifework-timeline-list-item-header h2 {
  font-size: 64px;
  line-height: 102.8%;
  color: #000;
  font-family: "Chronicle SSm A", "Chronicle SSm B";
  font-weight: 400;
  font-style: italic;
  margin-bottom: 4px;
  width: 45%;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .lifework-timeline-list-item-header h2 {
    width: 100%;
    font-size: 54px;
    word-wrap: break-word;
    padding-top: 60px;
    margin-top: 0;
  }
}
@media (max-width: 400px) {
  .lifework-timeline-list-item-header h2 {
    font-size: 48px;
  }
}
.lifework-timeline-list-item-header h3 {
  color: #D6492A;
  font-size: 36px;
  line-height: 47px;
  font-weight: bold;
  width: 45%;
}
@media (max-width: 767px) {
  .lifework-timeline-list-item-header h3 {
    width: 100%;
  }
}
.lifework-timeline-list-item-text {
  position: relative;
  width: calc(50% - 16px);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .lifework-timeline-list-item-text {
    width: 100%;
  }
}
.lifework-timeline-list-item-text p {
  font-size: 20px;
  line-height: 32px;
  color: #000;
  font-weight: 400;
}
.lifework-timeline-list-item-text p a {
  font: inherit;
  color: #D6492A;
}
.lifework-timeline-list-item-text ul {
  padding-left: 20px;
  list-style: disc;
}
.lifework-timeline-list-item-text ul li {
  font-size: 20px;
  line-height: 32px;
  color: #000;
  font-weight: 400;
  margin-bottom: 5px;
}
.lifework-timeline-list-item-text ul li a {
  font: inherit;
  color: #D6492A;
}
.lifework-timeline-list-item-text ul li p {
  font-size: 20px;
  line-height: 32px;
  color: #000;
  font-weight: 400;
}
.lifework-timeline-list-item-text ul li ul {
  list-style: circle;
}
.lifework-timeline-list-item-images {
  position: relative;
  width: calc(50% - 16px);
}
@media (max-width: 767px) {
  .lifework-timeline-list-item-images {
    width: 100%;
    margin-bottom: 20px;
  }
}
.lifework-timeline-list-item-images-item {
  position: relative;
}
.lifework-timeline-list-item-images-item img {
  cursor: pointer;
}
.lifework-timeline-list-item.title-left .lifework-timeline-list-item-header {
  text-align: left;
}
.lifework-timeline-list-item.title-right .lifework-timeline-list-item-header {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.lifework-timeline-list-item.text-left {
  flex-direction: row-reverse;
}
.lifework-timeline-list-item.text-left.photo-none {
  flex-direction: row;
}
.lifework-timeline-list-item.text-left .lifework-timeline-list-item-text {
  padding-right: 108px;
}
@media (max-width: 767px) {
  .lifework-timeline-list-item.text-left .lifework-timeline-list-item-text {
    padding: 0;
  }
}
.lifework-timeline-list-item.text-left .lifework-timeline-list-item-images {
  margin-left: auto;
}
.lifework-timeline-list-item.text-right {
  flex-direction: row;
}
.lifework-timeline-list-item.text-right.photo-none {
  flex-direction: row-reverse;
}
.lifework-timeline-list-item.text-right .lifework-timeline-list-item-text {
  padding-left: 108px;
}
@media (max-width: 767px) {
  .lifework-timeline-list-item.text-right .lifework-timeline-list-item-text {
    padding: 0;
  }
}
.lifework-timeline-list-item.text-right .lifework-timeline-list-item-images {
  margin-right: auto;
}
.lifework-timeline-list-item.photo-masonry .lifework-timeline-list-item-images {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: relative;
  max-width: 480px;
  width: 45%;
}
@media (max-width: 767px) {
  .lifework-timeline-list-item.photo-masonry .lifework-timeline-list-item-images {
    width: 100%;
    padding-bottom: 50px;
  }
}
.lifework-timeline-list-item.photo-masonry .lifework-timeline-list-item-images-item {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  margin-bottom: 10px;
}
.lifework-timeline-list-item.photo-masonry .lifework-timeline-list-item-images-item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}
.lifework-timeline-list-item.photo-masonry .lifework-timeline-list-item-images-item:last-child img {
  margin-top: 50px;
}
.lifework-timeline-list-item.photo-stacked .lifework-timeline-list-item-images {
  position: relative;
  width: calc(50% - 100px);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .lifework-timeline-list-item.photo-stacked .lifework-timeline-list-item-images {
    width: 100%;
  }
}
.lifework-timeline-list-item.photo-stacked .lifework-timeline-list-item-images-item {
  position: relative;
  width: 100%;
}
.lifework-timeline-list-item.photo-stacked .lifework-timeline-list-item-images-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 10px 0;
}
.lifework-timeline-shortcuts-mobile {
  position: sticky;
  bottom: 65px;
  z-index: 2;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  display: none;
}
@media (max-width: 767px) {
  .lifework-timeline-shortcuts-mobile {
    display: flex;
  }
}
.lifework-timeline-shortcuts-mobile ul {
  list-style: none;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 10px;
  display: none;
  position: absolute;
  bottom: 60px;
}
.lifework-timeline-shortcuts-mobile ul.show {
  display: flex;
}
.lifework-timeline-shortcuts-mobile ul li {
  position: relative;
  margin-bottom: 16px;
}
.lifework-timeline-shortcuts-mobile ul li a {
  font-size: 18px;
  color: #000;
  display: inline-block;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.95);
  line-height: 30px;
  border-radius: 50px;
  text-decoration: none;
}
.lifework-timeline-shortcuts-mobile button {
  border: none;
  width: 48px;
  height: 48px;
  background: url(../images/btn-timelines-mobile.png) 0 0 no-repeat transparent;
  background-size: cover;
  cursor: pointer;
  text-indent: -5000px;
  margin-right: 10px;
  margin-bottom: 25px;
}
.lifework.loaded .lifework-bio {
  opacity: 1;
}
.lifework.loaded .lifework-bio-content-copy.loaded .ui.thick {
  height: 137px;
}
.lifework.loaded .lifework-bio-content-copy.loaded .ui.thin {
  height: 331px;
}

.submissions {
  position: relative;
  background: url(../images/bg-reflections.png) center bottom repeat #000;
}
.submissions-header {
  position: relative;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.submissions-header:before {
  content: "";
  background: bottom left no-repeat transparent;
  background-size: auto 224px;
  position: absolute;
  height: 224px;
  bottom: -60px;
  left: 0;
  width: 100%;
  opacity: 0.04;
}
.submissions-header-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  padding: 118px 0 0;
}
.submissions-header-content-text {
  position: relative;
}
.submissions-header-content-text h1 {
  position: relative;
  padding: 0 0 16px 30px;
  font-size: 64px;
  color: #569099;
  font-weight: normal;
  line-height: 64px;
}
.submissions-header-content-text h1 span {
  position: absolute;
  display: block;
}
.submissions-header-content-text h1 span.ui-line {
  height: 64px;
  top: 0;
  background: #569099;
}
.submissions-header-content-text h1 span.ui-line.thick {
  width: 4px;
  left: 0;
}
.submissions-header-content-text h1 span.ui-line.thin {
  width: 1px;
  left: 8px;
}
.submissions-header-content-text h1 span.ui-circle {
  position: absolute;
  background: #595959;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 14px;
}
.submissions-header-content-text h1 span.ui-circle.top {
  top: 25px;
}
.submissions-header-content-text h1 span.ui-circle.bottom {
  top: 35px;
}
.submissions-header-content-text p {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  width: 90%;
  max-width: 600px;
  padding: 0 0 0 30px;
}
.submissions-header.loaded {
  opacity: 1;
}
.submissions-main {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: 80px auto 0;
  padding: 0 30px 60px;
  box-sizing: border-box;
}
.submissions-main .wpforms-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0;
}
.submissions-main .wpforms-container .wpforms-form {
  position: relative;
}
.submissions-main .wpforms-container .wpforms-form * {
  font-family: "Verlag";
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  padding: 0 16px 0 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field {
    padding-right: 0;
  }
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field .wpforms-field-label {
  color: #fff;
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field select,
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=text],
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=email],
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=number] {
  width: 100%;
  height: 48px;
  border-radius: 5px;
  color: #000;
  font-size: 24px;
  box-sizing: border-box;
  padding: 0 5px;
  border: none;
  background: #fff;
  max-width: none !important;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field select.wpforms-field-small,
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=text].wpforms-field-small,
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=email].wpforms-field-small,
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=number].wpforms-field-small {
  width: 50% !important;
}
@media (max-width: 767px) {
  .submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field select.wpforms-field-small,
  .submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=text].wpforms-field-small,
  .submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=email].wpforms-field-small,
  .submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field input[type=number].wpforms-field-small {
    width: 100% !important;
  }
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field textarea {
  width: 100%;
  height: 96px;
  border-radius: 5px;
  color: #000;
  font-size: 24px;
  box-sizing: border-box;
  padding: 0 5px;
  border: none;
  background: #fff;
}
@media (max-width: 767px) {
  .submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field textarea {
    height: 120px;
  }
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half {
  width: 50% !important;
  margin-left: 0;
}
@media (max-width: 767px) {
  .submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half {
    width: 100% !important;
  }
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half input.wpforms-field-small {
  width: 100% !important;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-field-checkbox fieldset {
  border: none;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-field-checkbox fieldset ul {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-field-checkbox fieldset ul li {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  padding-right: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-field-checkbox fieldset ul li {
    padding-right: 0;
    width: 100%;
  }
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-field-checkbox fieldset ul li input {
  margin-right: 16px;
  width: 24px;
  height: 24px;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-field-container .wpforms-field.wpforms-field-checkbox fieldset ul li label {
  color: #fff;
  font-size: 20px;
  display: block;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-submit-container {
  margin-top: 24px;
}
.submissions-main .wpforms-container .wpforms-form .wpforms-submit-container .wpforms-submit {
  display: inline-block;
  padding: 12px 24px;
  background: #D6492A;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.submissions-main .gform_wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}
.submissions-main .gform_wrapper .gform_heading {
  display: none;
}
.submissions-main .gform_wrapper .gform_validation_errors {
  border-color: #f88c74;
}
.submissions-main .gform_wrapper .gform_validation_errors .gform_submission_error {
  color: #f88c74;
}
.submissions-main .gform_wrapper .gform_validation_errors .gform_submission_error .gform-icon {
  color: #f88c74;
  border-color: #f88c74;
}
.submissions-main .gform_wrapper form {
  position: relative;
}
.submissions-main .gform_wrapper form .gform-body {
  position: relative;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  padding-right: 16px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield {
    padding-right: 0;
  }
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label {
  color: #fff;
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .gfield_label .gfield_required {
  font-size: inherit;
  color: #f88c74;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container {
  position: relative;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container select:focus, .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input:focus, .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea:focus, .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container button:focus {
  outline: 1px dashed #D6492A;
  outline-offset: 4px;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_select {
  width: 50%;
  height: 48px;
  border-radius: 5px;
  color: #595959;
  font-size: 24px;
  box-sizing: border-box;
  padding: 0 5px;
  border: none;
  background: #fff;
  line-height: 48px;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container input[type=text] {
  width: 100%;
  height: 48px;
  border-radius: 5px;
  color: #595959;
  font-size: 24px;
  box-sizing: border-box;
  padding: 0 5px;
  border: none;
  background: #fff;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  height: 96px;
  border-radius: 5px;
  color: #595959;
  font-size: 24px;
  box-sizing: border-box;
  padding: 0 5px;
  border: none;
  background: #fff;
  min-block-size: auto;
}
@media (max-width: 767px) {
  .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container textarea {
    height: 120px;
  }
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  flex-direction: row;
  gap: 0;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  padding-right: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice {
    padding-right: 0;
    width: 100%;
  }
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice input.gfield-choice-input {
  margin-right: 16px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: none;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice input.gfield-choice-input:checked {
  background: #D6492A;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice input.gfield-choice-input:checked:before {
  font-size: 24px;
  color: #fff;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice input.gfield-choice-input:focus {
  outline-color: #D6492A;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice label.gform-field-label {
  color: #fff;
  font-size: 20px;
  display: block;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area {
  border: 1px dashed #fff;
  border-radius: 5px;
  background: transparent;
  padding: 24px 20px 50px;
}
@media (max-width: 767px) {
  .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area {
    padding-bottom: 100px;
  }
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area:before {
  color: #D6492A !important;
  display: none;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area .gform_drop_instructions {
  font-size: 16px;
  color: #fff;
  display: none;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area .gform_button_select_files {
  background: transparent !important;
  border-radius: 50px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  padding: 12px 24px;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload .gform_fileupload_multifile .gform_drop_area .gform_button_select_files:hover {
  background: #D6492A !important;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload .gfield_description {
  color: #fff;
  font-size: 16px;
  text-align: center;
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container.ginput_container_fileupload .gfield_description {
    bottom: 15px;
  }
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield .gfield_description.validation_message {
  color: #f88c74;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield.gfield--width-half {
  width: 50%;
}
@media (max-width: 767px) {
  .submissions-main .gform_wrapper form .gform-body .gform_fields .gfield.gfield--width-half {
    width: 100%;
  }
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield.gfield--type-checkbox {
  border: none;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield.gfield--type-fileupload .gfield_label {
  display: none;
}
.submissions-main .gform_wrapper form .gform-body .gform_fields .gfield.gfield-ref-link.hide {
  display: none;
}
.submissions-main .gform_wrapper form .gform_footer {
  margin-top: 24px;
}
.submissions-main .gform_wrapper form .gform_footer .gform_button {
  display: inline-block;
  padding: 12px 24px !important;
  background: #D6492A !important;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 20px !important;
  min-width: 188px !important;
  box-sizing: border-box;
  color: #fff !important;
  cursor: pointer;
  transition: all 0.4s ease;
}
.submissions-main .gform_wrapper form .gform_footer .gform_button:hover {
  background: #fff !important;
  color: #D6492A !important;
  border-color: #D6492A !important;
}
.submissions-main .gform_wrapper form .gform_footer select:focus, .submissions-main .gform_wrapper form .gform_footer input:focus, .submissions-main .gform_wrapper form .gform_footer textarea:focus, .submissions-main .gform_wrapper form .gform_footer button:focus {
  outline: 1px dashed #D6492A !important;
  outline-offset: 4px !important;
  border-color: #D6492A !important;
}
.submissions-main .gform_wrapper form #add-more-ref {
  font-size: 20px;
  color: #D6492A;
}
.submissions-main .gform_wrapper form #add-more-ref:focus {
  outline: 1px dashed #D6492A;
  outline-offset: 4px;
}

.search-page {
  position: relative;
  background: url(../images/bg-reflections.png) center bottom repeat #000;
}
.search-page-header {
  position: relative;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.search-page-header:before {
  content: "";
  background: bottom left no-repeat transparent;
  background-size: auto 224px;
  position: absolute;
  height: 224px;
  bottom: -60px;
  left: 0;
  width: 100%;
  opacity: 0.04;
}
.search-page-header-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
  padding: 118px 0 0;
}
.search-page-header-content-text {
  position: relative;
}
.search-page-header-content-text h1 {
  position: relative;
  padding: 0 0 16px 30px;
  font-size: 64px;
  color: #569099;
  font-weight: normal;
  line-height: 64px;
}
.search-page-header-content-text h1 span {
  position: absolute;
  display: block;
}
.search-page-header-content-text h1 span.ui-line {
  height: 64px;
  top: 0;
  background: #569099;
}
.search-page-header-content-text h1 span.ui-line.thick {
  width: 4px;
  left: 0;
}
.search-page-header-content-text h1 span.ui-line.thin {
  width: 1px;
  left: 8px;
}
.search-page-header-content-text h1 span.ui-circle {
  position: absolute;
  background: #595959;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 14px;
}
.search-page-header-content-text h1 span.ui-circle.top {
  top: 25px;
}
.search-page-header-content-text h1 span.ui-circle.bottom {
  top: 35px;
}
.search-page-header-content-text p {
  font-size: 20px;
  line-height: 32px;
  color: #fff;
  width: 90%;
  max-width: 600px;
  padding: 0 0 0 30px;
  margin: 0;
}
.search-page-header-content-text .btn {
  font-size: 18px;
  color: #fff;
  border: none;
  border-radius: 5px;
  background: #D6492A;
  padding: 16px 23px;
  margin-top: 80px;
  text-decoration: none;
  transition: all 0.4s ease;
  z-index: 2;
  font-weight: bold;
  border: 1px solid transparent;
  display: inline-block;
  margin-left: 30px;
}
.search-page-header-content-text .btn:hover {
  background: #fff;
  border-color: #D6492A;
  color: #D6492A;
}
.search-page-header.loaded {
  opacity: 1;
}
.search-page-posts {
  position: relative;
  padding: 110px 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.search-page-posts-content {
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
.search-page-posts-content-controls {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.search-page-posts-content-controls-search {
  position: relative;
  height: 48px;
  border-radius: 50px;
  background: #fff;
  padding: 0 16px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .search-page-posts-content-controls-search {
    width: 100%;
    margin-bottom: 20px;
  }
}
.search-page-posts-content-controls-search input {
  border: none;
  height: 100%;
  margin-right: 24px;
  min-width: 240px;
  position: relative;
  display: block;
  margin: 0 100px 0 20px;
  font-size: 20px;
  color: #595959;
  line-height: 48px;
}
.search-page-posts-content-controls-search input:focus {
  outline: none;
}
.search-page-posts-content-controls-search .link-reset {
  font-size: 18px;
  color: #D6492A;
  line-height: 48px;
  position: absolute;
  top: 0;
  right: 52px;
  z-index: 2;
  display: none;
}
.search-page-posts-content-controls-search .btn-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  z-index: 2;
}
.search-page-posts-content-controls-sort {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .search-page-posts-content-controls-sort {
    width: 100%;
  }
}
.search-page-posts-content-controls-sort p {
  font-size: 20px;
  color: #fff;
  margin-right: 16px;
  line-height: 1;
  margin-bottom: 0;
}
.search-page-posts-content-controls-sort select {
  height: 48px;
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  background: url(../images/ico-arrow-dropdown.png) center right no-repeat transparent;
  border: none;
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
  appearance: none;
  padding: 0 40px 0 10px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: right;
}
@media (max-width: 767px) {
  .search-page-posts-content-controls-sort select {
    width: auto;
  }
}
.search-page-posts-content-controls-sort select:focus {
  outline: none;
}
.search-page-posts-content-controls-sort select option {
  background: #000;
  text-align: left;
}
.search-page-posts-content-results {
  position: relative;
  padding: 32px 0;
}
.search-page-posts-content-results .search-results-item {
  opacity: 0;
  transform: translate(0, 10px);
}
.search-page-posts.loaded {
  opacity: 1;
}
.search-page-posts.loaded .search-page-posts-content-results {
  position: relative;
}
.search-page-posts.loaded .search-page-posts-content-results .search-results-item {
  animation-name: animateIn;
  animation-duration: 200ms;
  animation-delay: calc(var(--animation-order) * 50ms);
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
}

.main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 102px;
}

* {
  font-family: "Verlag A", "Verlag B", "Verlag", Verlag;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a:focus, input:focus, select:focus, button:focus {
  outline: 1px dashed #D6492A;
  outline-offset: 4px;
}

a:hover {
  text-decoration: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-family: "Verlag A", "Verlag B", "Verlag", Verlag;
}

.container {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #F1F0EB 0%, rgba(241, 240, 235, 0) 88.23%);
}

h2 {
  font-size: 32px;
  line-height: 47px;
  color: #569099;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 40px;
}

p {
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 40px;
}
p a {
  font: inherit;
  color: #D6492A;
}
p a:hover {
  text-decoration: none;
}
p b, p strong {
  font-weight: bold;
}
p kbd {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  font-style: italic;
  color: #D6492A;
}
p i, p em {
  font-style: italic;
}

img {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}

.wp-block-video {
  display: block;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}
.wp-block-video:before {
  content: "";
  width: 75px;
  height: 75px;
  display: block;
  background: url(../images/ico-play-lg.png) center center no-repeat transparent;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.wp-block-video video {
  display: block;
  width: 100%;
}
.wp-block-video.is-playing:before {
  display: none;
}

blockquote {
  padding: 0 24px;
  margin-bottom: 40px;
}
blockquote p {
  font-size: 24px;
  color: #595959;
  font-weight: 300;
  font-style: italic;
  line-height: 32px;
  position: relative;
}
blockquote p:before {
  content: "“";
  font-size: 36px;
  color: #D6492A;
  line-height: 32px;
  font-weight: 300;
  position: absolute;
  top: 0;
  left: -15px;
}
blockquote p:after {
  content: "“";
  font-size: 36px;
  color: #D6492A;
  line-height: 32px;
  font-weight: 300;
  display: inline-block;
  transform: rotate(180deg);
  margin-left: 10px;
  bottom: 15px;
  position: absolute;
}
blockquote cite {
  font-size: 18px;
  font-weight: bold;
  color: #595959;
}/*# sourceMappingURL=index.css.map */