html, body, .container, .header {
  height: 100vh;
  width: 100vw; }

*, *::after, *::before {
  box-sizing: border-box; }

body {
  font-size: 15px;
  font-family: "Lora", serif;
  color: #555;
  background-color: #FFF;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; }

a {
  color: #9040CA;
  text-decoration: none; }

h1, h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500; }
  
h4 {
     font-family: "Montserrat", sans-serif;
     text-transform: uppercase;
      color: #D79133;
      font-weight: 700;
      margin-bottom: 10px;
      margin-top: 35px;
  }
 h5 {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 30px;
 }
  

.overflow-hidden {
  overflow: hidden; }

/* ======================================================= */
/*   UPPER TITLE                                           */
/* ======================================================= */
.upper-title__wrapper {
  position: relative;
  padding: 15vh 0;
  }

.title {
  z-index: 1;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  text-align: left; }

.title h1 {
  padding: 0;
  color: #111;
  font-weight: 800;
  font-size: 33px;
  margin: 0 auto;
  line-height: 1.2;
  max-width: 1100px;
  font-family: "Montserrat", sans-serif; }

.title .splash-logo {
  width: 170px;
  margin: 0 0 30px; }

.title .splash-logo img {
  width: 100%;
  max-width: 100%;
  height: auto; }

.title .hero {
  margin: 30px 0 0; }

.title .hero p {
  color: #555;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.8;
  margin: 0 0 30px; }

.title .hero p:last-of-type {
  margin: 0; }

@media only screen and (min-width: 600px) {
  .title {
    text-align: center;
    padding: 0 40px; }
  .title h1 {
    font-size: 40px; }
  .title .splash-logo {
    width: 250px;
    margin: 0 auto 50px; }
  .title .hero {
    margin: 40px 0 0; } }

@media only screen and (min-width: 960px) {
  .title h1 {
    font-size: 50px; }
  .title .hero p {
    font-size: 20px;
    line-height: 2; } }

@media only screen and (min-width: 1100px) {
  .title h1 {
    font-size: 65px; } }

@media only screen and (min-width: 1200px) {
  .title {
    padding: 0 7%;
    margin: 0 auto;
    max-width: 1440px; }
  .title h1 {
    font-size: 65px; } }

@media only screen and (min-width: 1440px) {
  .title.reveal h1 {
    font-size: 90px; }
  .title .hero p {
    font-size: 25px; } }

/* ======================================================= */
/*   TRIGGER BTN                                           */
/* ======================================================= */
button.trigger {
  position: fixed;
  bottom: 40px;
  left: 50%;
  z-index: 5000;
  display: block;
  margin-left: -0.5em;
  padding: 0;
  width: 1em;
  height: 1em;
  border: none;
  background: transparent;
  color: transparent;
  font-size: 33px;
  cursor: pointer; }

.container:not(.notrans) button.trigger {
  transition: opacity 0.3s 0.5s; }

.container.modify:not(.notrans) button.trigger {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0s; }

button.trigger::before {
  position: absolute;
  bottom: 100%;
  left: -100%;
  padding: 0.8em;
  width: 300%;
  color: #fff;
  content: attr(data-info);
  font-size: 0.35em;
  opacity: .5;
  text-transform: uppercase;
  font-family: "Lora", serif;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

button.trigger:focus {
  outline: none; }

button.trigger span {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%; }

button.trigger span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  content: "\f100";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-family: "Flaticon";
  line-height: 1;
  speak: none;
  transition: all .3s ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

button.trigger:hover span::before {
  color: #FDCA00; }

.cd-content__toggle {
  margin: 40px 0 0;
  position: relative; }

.cd-content__toggle a {
  display: inline-block;
  font-size: 30px;
  color: #F5AA01;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 10px 0 0;
  transition: all .3s ease-in-out; }

.cd-content__toggle a:hover {
  color: #4D3576; }

.cd-content__toggle__icon {
  display: inline-block;
  vertical-align: middle; }

.cd-content__toggle__icon--mobile-message {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-family: "Lora", serif;
  font-weight: 700;
  line-height: 1.4;
  color: #002E64; }

@media only screen and (min-width: 600px) {
  .cd-content__toggle {
    margin: 70px 0 0; }
  .cd-content__toggle a {
    padding: 0 10px;
    font-size: 40px; }
  .cd-content__toggle a:hover {
    transform: scale(1.25); }
  .cd-content__toggle:after {
    content: '';
    position: absolute;
    width: 225px;
    height: 1px;
    border-top: 1px solid #e4e4e4;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .cd-content__toggle__icon--mobile-message {
    display: none; } }

/* ======================================================= */
/*   MAIN CONTENT                                          */
/* ======================================================= */
.cd-main {
  overflow-x: hidden; }

.cd-main::before {
  display: none;
  content: 'mobile'; }

.cd-main > * {
  transition: transform 0.5s 0.4s; }

.cd-main.fold-is-open > * {
  transform: translateX(100%);
  transition: transform 0.5s 0s; }

main.content {
  margin: 0 auto; }

@media only screen and (min-width: 600px) {
  .cd-main.fold-is-open > * {
    transform: translateX(600px); } }

@media only screen and (min-width: 1100px) {
  .cd-main::before {
    content: 'desktop'; }
  .cd-main.fold-is-open > * {
    transform: translateX(0); } }

/*********************************************/
/*  Upper Image Montage                      */
/*********************************************/
.cd-image-panel__upper {
  font-size: 0;
  margin: 100px 0 0;
  position: relative;
  z-index: 10; }

.cd-image-panel__upper__img {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  position: relative; }

.cd-image-panel__upper__img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: all .2s ease-in-out; }

@media only screen and (min-width: 768px) {
  .cd-image-panel__upper__img {
    width: 25%;
    vertical-align: middle;
    box-shadow: 1px 1px 10px -2px rgba(0, 0, 0, 0.32); }
  .cd-image-panel__upper__img img {
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1); }
  .cd-image-panel__upper__img--1 img {
    transform: rotate(2deg) scale(1.25);
    z-index: 4; }
  .cd-image-panel__upper__img--2 img {
    transform: rotate(-4deg) scale(1.1);
    z-index: 3; }
  .cd-image-panel__upper__img--3 img {
    transform: rotate(4deg) scale(1.2);
    z-index: 5; }
  .cd-image-panel__upper__img--4 img {
    transform: rotate(4deg) scale(1.1);
    z-index: 3; } }

/*********************************************/
/*  Highlights:Columned Content              */
/*********************************************/
.cd-hightlights {
  display: block;
  width: 100%;
  padding: 90px 30px 90px;
  margin-top: 0 !important; }

.cd-hightlights__panel {
  display: block;
  width: 100%;
  margin: 0; }

.cd-hightlights__panel h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #4D3576;
  margin: 0 0 15px; }

.cd-hightlights__panel p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #4A4A4A; }

.cd-hightlights__panel p:last-of-type {
  margin: 0; }

@media only screen and (min-width: 600px) {
  .cd-hightlights {
    padding: 90px 40px; }
  .cd-hightlights__panel h2 {
    font-size: 20px;
    line-height: 1.3; }
  .cd-hightlights__panel p {
    font-size: 15px;
    line-height: 27px; } }

@media only screen and (min-width: 1100px) {
  .cd-hightlights {
    display: block;
    padding: 150px 7% 100px;
    margin-top: 50px !important; }
  .cd-hightlights__panel {
    display: block;
    margin: 0 auto;
    max-width: 800px; }
  .cd-hightlights__panel h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 20px; }
  .cd-hightlights__panel p {
    font-size: 18px;
    line-height: 32px; } }

/*********************************************/
/*  Lower Image Panel                        */
/*********************************************/
.cd-image-panel {
  display: block;
  width: 100%;
  margin: 0 auto;
  border-bottom: 5px solid #fff;
  line-height: 0;
  overflow: hidden; }

.cd-image-panel img {
  width: 100%;
  max-width: 100%;
  height: auto; }

/*********************************************/
/*  Seemsplitter - Table of Contents         */
/*********************************************/
.cd-gallery {
  margin: 0 -2px 0 0;
  background-color: #8667bb; }

.cd-gallery::after {
  clear: both;
  content: "";
  display: table; }

.cd-gallery::before {
  display: block;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(28, 23, 38, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s 0.4s, visibility 0s 0.9s; }

.fold-is-open .cd-gallery::before {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s 0s, visibility 0s 0s; }

.cd-item {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-right: 2px solid #FFF;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.5s 0.4s; }

.cd-item > a {
  display: table;
  height: 100%;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  padding: 50px 30px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.cd-item > a.dark-text {
  color: #363558; }

.cd-item > a.dark-text b {
  border-color: #363558; }

.cd-item div {
  display: table-cell;
  vertical-align: top; }

.cd-item.color-range-1 {
  background-color: #3e2a5f; }

.cd-item.color-range-2 {
  background-color: #45306a; }

.cd-item.color-range-3 {
  background-color: #4d3576; }

.cd-item.color-range-4 {
  background-color: #5c408d; }

.cd-item.color-range-5 {
  background-color: #6c4aa5; }

.cd-item.color-range-6 {
  background-color: #7d5bb6; }

.cd-item h2 {
  font-size: 25px; }

.cd-item h2 i {
  display: inline-block;
  font-size: 25px;
  margin: 0 5px 0 0;
  padding: 0 5px 0 0;
  opacity: .75;
  top: -4px;
  vertical-align: middle;
  position: relative;
  font-family: "Montserrat", sans-serif;
  border-right: 1px solid #F5AA01; }

.cd-item h2 span {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase; }

.cd-item p {
  line-height: 1.6;
  opacity: 0.9;
  padding: 15px 0 0;
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px; }

.cd-item b {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 16px 25px 14px;
  border-radius: 30px;
  border: none;
  margin: 20px 0 0;
  background: rgba(255, 255, 255, 0.2);
  font-family: "montsreat", sans-serif;
  line-height: 1;
  }

@media only screen and (min-width: 600px) {
  .cd-item > a {
    padding: 50px 40px; } }

@media only screen and (min-width: 768px) {
  .cd-item h2 {
    font-size: 30px; } }

@media only screen and (min-width: 1100px) {
  .cd-item {
    width: 50%;
    float: left;
    text-align: center;
    border-bottom: 2px solid #EFEFEF;
    border-right: 2px solid #EFEFEF;
    transition: transform 0.5s 0.4s; }
  .cd-item > a {
    padding: 100px 15%; }
  .cd-item h2 i {
    padding: 10px;
    margin: 0 15px 0 0;
    border: none;
    border-right: 2px solid #F5AA01;
    opacity: 1; }
  .cd-item h2 i:after {
    display: none; }
  .cd-item p {
    font-size: 18px; }
  .cd-item h2,
  .cd-item p {
    transform: translateY(30px);
    transition: transform 0.3s 0.1s; }
  .cd-item b {
    font-size: 15px;
    padding: 20px 30px 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s 0s, transform 0.3s 0s; }
  .no-touch .cd-item a:hover h2,
  .no-touch .cd-item a:hover p {
    transform: translateY(0);
    transition: transform 0.3s 0s; }
  .no-touch .cd-item a:hover b {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s; }
  .fold-is-open .cd-item {
    transition: transform 0.5s 0s;
    transform: translateX(-400px); }
  .fold-is-open .cd-item:nth-of-type(2n) {
    transform: translateX(400px); } }

@media only screen and (min-width: 1440px) {
  .cd-item h2 {
    font-size: 44px; } }

/* ======================================================= */
/*   FOLDING PANEL                                         */
/* ======================================================= */
.cd-folding-panel {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  visibility: hidden;
  overflow: hidden;
  transition: visibility 0s 0.9s; }

.cd-folding-panel .fold-left,
.cd-folding-panel .fold-right {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  perspective: 2000px; }

.cd-folding-panel .fold-left::after,
.cd-folding-panel .fold-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.5s 0.4s, background-color 0.5s 0.4s; }

.cd-folding-panel .fold-right {
  perspective-origin: 0% 50%; }

.cd-folding-panel .fold-right::after {
  transform-origin: right center;
  transform: translateX(-100%) rotateY(-90deg);
  background-color: #c0c3c3; }

.cd-folding-panel .fold-left {
  display: none; }

.cd-folding-panel .fold-left::after {
  background-color: #FFF; }

.cd-folding-panel .cd-close {
  position: absolute;
  z-index: 1;
  display: inline-block;
  top: 22px;
  right: 22px;
  height: 15px;
  width: 15px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s 0s; }

.cd-folding-panel .cd-close::after,
.cd-folding-panel .cd-close::before {
  content: '';
  position: absolute;
  height: 3px;
  width: 15px;
  left: 50%;
  top: 50%;
  background-color: #4d3576;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.2s; }

.cd-folding-panel .cd-close::after {
  transform: translateX(-50%) translateY(-50%) rotate(45deg); }

.cd-folding-panel .cd-close::before {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg); }

.cd-folding-panel.is-open {
  visibility: visible;
  transition: visibility 0s 0s; }

.cd-folding-panel.is-open .fold-right::after,
.cd-folding-panel.is-open .fold-left::after {
  transform: translateX(0);
  transition: transform 0.5s 0s, background-color 0.5s 0s; }

.cd-folding-panel.is-open .fold-right::after {
  background-color: #FFF; }

.cd-folding-panel.is-open .cd-close {
  opacity: 1;
  transition: opacity 0.2s 0.5s; }

@media only screen and (min-width: 800px) {
  .cd-folding-panel {
    width: 800px; } }

@media only screen and (min-width: 1100px) {
  .cd-folding-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 800px; }
  .cd-folding-panel .cd-close {
    top: 30px;
    right: 30px;
    height: 20px;
    width: 20px; }
  .cd-folding-panel .cd-close::after,
  .cd-folding-panel .cd-close::before {
    width: 32px; }
  .cd-folding-panel .fold-left,
  .cd-folding-panel .fold-right {
    width: 50%;
    float: left;
    height: 100%; }
  .cd-folding-panel .fold-right {
    perspective-origin: 0% 50%; }
  .cd-folding-panel .fold-right::after {
    transform-origin: right center;
    transform: translateX(-100%) rotateY(-90deg); }
  .cd-folding-panel .fold-left {
    display: block;
    perspective-origin: 100% 50%; }
  .cd-folding-panel .fold-left::after {
    transform-origin: left center;
    transform: translateX(100%) rotateY(90deg); } }

@media only screen and (min-width: 1300px) {
  .cd-folding-panel {
    width: 1000px; } }

.cd-fold-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 4em 2em;
  visibility: hidden;
  transition: visibility 0s 0.4s; }

.cd-fold-content > * {
  opacity: 0;
  transform: translateY(20px); }

.cd-fold-content h2 {
  font-size: 40px;
  color: #4d3576;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: transform 0.2s 0.2s, opacity 0.2s 0.2s; }

.cd-fold-content p,
.cd-fold-content em {
  line-height: 1.6; }

.cd-fold-content em {
  display: inline-block;
  margin: 1em 0;
  font-family: "lexia", serif;
  font-size: 1.8rem;
  color: #E5A10D;
  transition: transform 0.2s 0.1s, opacity 0.2s 0.1s; }

.cd-fold-content p {
  margin-bottom: 1em;
  font-size: 15px;
  transition: transform 0.2s 0s, opacity 0.2s 0s; }

.is-open .cd-fold-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: visible;
  transition: visibility 0s 0.5s; }

.is-open .cd-fold-content > * {
  opacity: 1;
  transform: translateY(0); }

.is-open .cd-fold-content h2 {
  transition: transform 0.2s 0.5s, opacity 0.2s 0.5s; }

.is-open .cd-fold-content em {
  transition: transform 0.2s 0.6s, opacity 0.2s 0.6s; }

.is-open .cd-fold-content p {
  transition: transform 0.2s 0.7s, opacity 0.2s 0.7s; }

@media only screen and (min-width: 600px) {
  .cd-fold-content h2 {
    font-size: 50px; } }

@media only screen and (min-width: 1100px) {
  .cd-fold-content {
    padding: 4em; }
  .cd-fold-content h2 {
    font-size: 60px; }
  .cd-fold-content > * {
    transform: translateY(40px); }
  .cd-fold-content em {
    font-size: 2.2rem; }
  .cd-fold-content p {
    font-size: 18px; } }

/* ======================================================= */
/*   Javascript disabled                                   */
/* ======================================================= */
.no-js .cd-fold-content.single-page {
  position: static;
  visibility: visible;
  height: auto;
  background-color: #dadcdc; }

.no-js .cd-fold-content.single-page > * {
  opacity: 1;
  transform: translateY(0); }

/* -------------------------- */
/* Push */
/* -------------------------- */
.intro-effect-push:not(.notrans) .header,
.intro-effect-push:not(.notrans) > .title,
.intro-effect-push:not(.notrans) main {
  transition-property: opacity, transform;
  transition-duration: .5s; }

.intro-effect-push:not(.notrans) .header {
  transition-timing-function: ease-in-out;
  transition-duration: .5s; }

.intro-effect-push .header {
  position: absolute;
  z-index: 1500; }

.intro-effect-push > .title {
  position: relative;
  top: auto;
  left: auto;
  padding: 50px 7%; }

.intro-effect-push .content > div {
  margin-top: 50px;
  color: #b2b2c0; }

.intro-effect-push > .title,
.intro-effect-push main {
  transform: translateY(400px);
  opacity: 0; }

.intro-effect-push.modify > .title,
.intro-effect-push.modify main {
  transform: translateY(0);
  opacity: 1; }

.intro-effect-push.modify .header {
  opacity: 0;
  transform: translateX(70%) scale(0.3) rotate(45deg); }

/* Delays */
.intro-effect-push.modify:not(.notrans) > .title {
  transition-delay: 0.5s; }

.intro-effect-push.modify:not(.notrans) main {
  transition-delay: 0.7s; }

@media only screen and (min-width: 960px) {
  .intro-effect-push > .title {
    padding: 150px 7%; } }

@media screen and (max-width: 27em) {
  button.trigger::before {
    display: none; } }

/* ======================================================= */
/*   FOOTER                                                */
/* ======================================================= */
footer {
  width: 100%;
  background: #464646;
  color: #fff;
  padding: 50px 7%;
  box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.6); }
  
footer h3, footer h3 {
    font-family: 'Montserrat', serif;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

footer p {
    transition: transform 0.2s 0.7s, opacity 0.2s 0.7s;
}

@media only screen and (min-width: 1100px)
footer p {
    font-size: 18px;
}
footer p {
    margin-bottom: 1em;
    font-size: 15px;
    transition: transform 0.2s 0s, opacity 0.2s 0s;
}
footer p, footer em {
    line-height: 1.6;
}


.footer__logo {
  width: 50px;
  margin: 0; }

.footer__logo a {
  display: inline-block;
  line-height: 0;
  opacity: .4;
  transition: opacity .3s ease-in-out;
  cursor: pointer; }

.footer__logo a:hover {
  opacity: 1; }

.footer__logo a img {
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: grayscale(1); }

.footer__logo a:hover img {
  filter: none; }

@media only screen and (min-width: 600px) {
  .footer__logo {
    margin: 0 auto; } }

/*# sourceMappingURL=../../maps/style-guide/style.css.map */
