
/* Dependencies */

:root {

  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 400;

}

* {
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  min-width: 320px;
}

section {
  position: relative;
  overflow: hidden;
  margin-bottom: 120px;
}

a {
  text-decoration: underline;
  color: inherit;
}

a[data-external]:after,
a[data-chevron]:after {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 2px 0 4px;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

a[data-external="white"]:after {
  background-image: url(/images/icons/external-link-white-icon.svg);
}

a[data-external="black"]:after {
  background-image: url(/images/icons/external-link-black-icon.svg);
}

a[data-chevron="white"]:after {
  background-image: url(/images/chevron-down-white-icon.svg);
}

a[data-chevron="black"]:after {
  background-image: url(/images/chevron-down-black-icon.svg);
}

p, h1, h2, h3, h4, h5, h6, li {
  line-height: 1.7em;
  font-size: 16px;

}

@media (min-width: 768px) {

  p, h1, h2, h3, h4, h5, h6, li {

    font-size: 18px;

  }

}

p {
  margin-bottom: 80px;
}

hr {
  width: 50%;
  text-align: left;
  border: none;
  border-bottom: 2px solid #e1e1e1;
  margin-bottom: 30px;
}

img {
  max-width: 100%;
}

ul {

}

ul, ol {
  padding-left: 30px;
}

ul li {
  list-style: square;
  margin-left: 35px;
  margin-bottom: 20px;
}

button {
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  border-radius: 0;
}

input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus,
textarea {
  font-size: inherit;
  border-radius: 0;
}

input[type='submit'] {
  -webkit-appearance: none;
}

.playfair-large {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  line-height: 1.1em;
}

.playfair-medium {
  font-family: 'Playfair Display', serif;
  line-height: 1em;
  font-size: 30px;
  margin-bottom: 20px;
}

.playfair-small {
  font-family: 'Playfair Display', serif;
  line-height: 1em;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 30px;
}

.roboto-large {
  font-family: 'Roboto', sans-serif;
  font-size: 50px;
  line-height: 1.1em;
}

.roboto-medium {
  font-family: 'Roboto', sans-serif;
  line-height: 1em;
  font-size: 30px;
  margin-bottom: 20px;
}

.roboto-small {
  font-family: 'Roboto', sans-serif;
  line-height: 1em;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 30px;
}

.uppercase {
  text-transform: uppercase;
}

/* Components */

header {
  position: fixed;
  will-change: top;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 25px;
  line-height: 88px;
  /* background: blue; */
  background: rgba(0, 0, 0, .75);
  /* background: red; */
  z-index: 9999;
  -webkit-transition: top 1s;
  transition: top 1s;

}

@media (min-width: 650px) {

  header {

    padding: 0 40px;

  }

}

header .logo {

  position: relative;

  top: -2px;

  margin-right: 20px;

  line-height: 25px;

  letter-spacing: -1px;

  text-decoration: none;

  font-family: 'Playfair Display', serif;

  font-size: 32px;

  color: #fff;

  display: inline-block;

  vertical-align: middle;

}

header button.toggle {

  position: relative;

  float: right;

  width: 50px;

  height: 50px;

  margin: 20px 0;

  cursor: pointer;

}

@media (min-width: 768px) {

  header button.toggle {

    display: none;

  }

}

header button.toggle:before, header button.toggle:after {

  display: block;

  position: absolute;

  top: 50%;

  left: 50%;

  content: '';

  width: 30px;

  height: 3px;

  background: #fff;

  -webkit-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  -webkit-transition: all 0.5s;

  transition: all 0.5s;

  border-radius: 2px;

  opacity: 1;

  margin-top: -12px;

}

header button.toggle:after {

  margin-top: 12px;

}

header button.toggle span:before, header button.toggle span:after {

  display: block;

  position: absolute;

  top: 50%;

  left: 50%;

  content: '';

  width: 30px;

  height: 3px;

  background: #fff;

  -webkit-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  -webkit-transition: all 0.5s;

  transition: all 0.5s;

  border-radius: 2px;

  opacity: 1;

}

header button.toggle span:after {

  opacity: 0;

}

header nav {

  display: inline-block;

  vertical-align: middle;

}

@media (max-width: 767px) {

  header nav {

    position: absolute;

    bottom: 90px;

    left: 0;

    width: 100%;

    padding: 20px 0;

    background: #171717;

  }

}

header nav a {

  display: block;

  height: 70px;

  line-height: 70px;

  font-weight: bold;

  text-align: center;

  color: #ffffff;

  text-decoration: none;

}

@media (min-width: 768px) {

  header nav a {

    display: inline;

    margin-left: 18px;

    font-size: 13px;

  }

}

@media (min-width: 1024px) {

  header nav a {

    margin-left: 40px;

  }

}

header nav a:hover {

  text-decoration: underline;

}

@media (min-width: 768px) {

  header nav a[href*="map"] {

    display: none;

  }

}

header .map {

  display: none;

  color: #fff;

  font-size: 11px;

}

@media (min-width: 768px) {

  header .map {

    display: block;

    float: right;

    height: 40px;

    line-height: 40px;

    padding: 0 20px;

    margin: 25px 0;

    background-color: #8089ff;

    border-radius: 5px;

  }

}

header .map span {

  display: none;

}

@media (min-width: 1024px) {

  header .map span {

    display: inline;

  }

}

header .map:before {

  content: '';

  display: inline-block;

  vertical-align: middle;

  position: relative;

  top: -1px;

  width: 17px;

  height: 30px;

  margin-right: 8px;

  background-image: url(/images/icons/map-white-icon.svg);

  background-size: contain;

  background-repeat: no-repeat;

  background-position: center;

}

header[nav-show='true'] button.toggle:before, header[nav-show='true'] button.toggle:after {

  opacity: 0;

}

header[nav-show='true'] button.toggle span:before {

  -webkit-transform: translate(-50%, -50%) rotate(45deg);

          transform: translate(-50%, -50%) rotate(45deg);

}

header[nav-show='true'] button.toggle span:after {

  opacity: 1;

  -webkit-transform: translate(-50%, -50%) rotate(-45deg);

          transform: translate(-50%, -50%) rotate(-45deg);

}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  top: 0;
  will-change: top;
  color: #fff;
  background-color: #000

}

footer > * {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

      -ms-flex-direction: column;

          flex-direction: column;

  -webkit-box-pack: end;

      -ms-flex-pack: end;

          justify-content: flex-end;

  padding: 30px 25px;

}

@media (min-width: 768px) {

  footer > * {

    padding: 50px 40px;

  }

}

@media (min-width: 1024px) {

  footer > * {

    width: 33.3%;

  }

}

footer .middle a {

  display: block;

  margin-bottom: 20px;

  text-decoration: none;

}

footer .middle a:before {

  display: inline-block;

  vertical-align: baseline;

  position: relative;

  top: 2px;

  margin-right: 8px;

  width: 1em;

  height: 1em;

  content: '';

  background-position: center;

  background-repeat: no-repeat;

  background-size: contain;

}

footer .middle a[href*='mail']:before {

  background-image: url(/images/icons/letter-white-icon.svg);

}

footer .middle a[href*='tel']:before {

  background-image: url(/images/icons/phone-white-icon.svg);

}

footer .middle a[href*='facebook']:before {

  background-image: url(/images/icons/facebook-white-icon.svg);

}

footer .middle a[href*='instagram']:before {

  background-image: url(/images/icons/instagram-white-icon.svg);

}

footer .middle a[href*='twitter']:before {

  background-image: url(/images/icons/twitter-white-icon.svg);

}

footer .right {

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

  line-height: 42px;

  text-align: left;

  font-family: sans-serif;

  font-family: 'Playfair Display', serif;

  font-size: 52px;

  background: #222;

}

@media (max-width: 1023px) {

  footer .right {

    width: 100%;

  }

}

form {
  width: 100%;
  max-width: 500px

}

form p {

  margin-bottom: 20px;

}

form label {

  display: block;

  margin-bottom: 5px;

}

form label.required:after {

  content: ' *';

  color: #a00;

}

form .field {

  margin-bottom: 20px;

}

form textarea,
  form input[type="text"],
  form input[type="email"] {

  display: block;

  width: 100%;

  padding: 10px 15px;

  font-size: 16px;

  background: #fff;

  border: 1px solid #aaa;

  border-radius: 5px;

}

form input[type="submit"] {

  padding: 15px 20px;

  font-size: 15px;

  color: #fff;

  background: #8089ff;

  border: none;

  border-radius: 5px;

  cursor: pointer;

}

/* Common */

.stage {
  height: 40vh;
  min-height: 370px;
  padding-top: 90px;
  margin-bottom: 80px;
  background-position: center;
  background-size: cover;

}

@media (min-width: 768px) {

  .stage {

    margin-bottom: 120px;

  }

}

.stage .lock {

  display: table;

}

.stage h1 {

  line-height: 1.1em;

  font-family: 'Playfair Display', serif;

  font-size: 50px;

  display: table-cell;

  vertical-align: middle;

}

.lock {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 25px;

}

@media (min-width: 650px) {

  .lock {

    padding: 0 40px;

  }

}

@media (min-width: 768px) {

  .lock {

    width: 768px;

  }

}

@media (min-width: 1024px) {

  .lock {

    width: 1024px;

  }

}

.two-column {
  width: 100%;

}

@media (min-width: 768px) {

  .two-column {

    margin-bottom: 40px;

    display: table;

  }

}

@media (min-width: 768px) {

  .two-column > div {

    display: table-cell;

    vertical-align: top;

    width: 50%;

  }

}

.two-column > div:first-of-type {

  margin-bottom: 40px;

}

@media (min-width: 768px) {

  .two-column > div:first-of-type {

    padding-right: 40px;

    margin-bottom: 0;

  }

}

@media (min-width: 768px) {

  .two-column > div:last-of-type {

    padding-left: 40px;

  }

}

@media (min-width: 768px) {

  .two-thirds-columns > div:first-of-type {

    width: 67%;

  }

}

@media (min-width: 768px) {

  .two-thirds-columns > div:last-of-type {

    width: 33%;

  }

}

@media (min-width: 650px) {

  .info-with-line-above {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

  }

}

.info-with-line-above p, .info-with-line-above a {

  margin-bottom: 0;

  display: block;

  padding-bottom: 0;

  line-height: 1em;

  font-size: 16px;

  font-weight: 700;

}

@media (min-width: 650px) {

  .info-with-line-above p, .info-with-line-above a {

    padding: 15px;

    border-top: 1px solid #ffffff;

  }

}

@media (min-width: 650px) {

  .info-with-line-above p {

    border-right: 1px solid #ffffff;

  }

}

@media (max-width: 649px) {

  .info-with-line-above p span {

    border-bottom: 1px solid #ffffff;

    display: inline-block;

    padding: 15px 0;

  }

}

.info-with-line-above p:first-of-type {

  padding-left: 0;

}

.info-with-line-above a {

  color: #ff0;

  text-decoration: none;

  padding-right: 20px;

}

@media (max-width: 649px) {

  .info-with-line-above a {

    padding: 15px 0;

  }

}

.info-with-line-above a:hover {

  text-decoration: underline;

}

@-webkit-keyframes mouse {
  0% {
    opacity: 0;
    top: -55px;
    height: 12px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    height: 10px;
    top: -42px;
  }
}

@keyframes mouse {
  0% {
    opacity: 0;
    top: -55px;
    height: 12px;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    height: 10px;
    top: -42px;
  }
}

.skip-intro {
  z-index: 999;
  color:  ;
  color: #ffffff;
  margin-top: 20px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);

}

@media (min-width: 768px) {

  .skip-intro {

    bottom: 80px;

  }

}

.skip-intro p {

  font-weight: 500;

  font-size: 12px;

  margin-bottom: 0;

}

@media (min-width: 480px) {

  .skip-intro p {

    font-size: 14px;

  }

}

.skip-intro button {

  color:  ;

  font-weight: 500;

  font-size: 12px;

}

@media (min-width: 480px) {

  .skip-intro button {

    font-size: 14px;

  }

}

.skip-intro > div {

  position: relative;

}

.skip-intro > div:before {

  content: "";

  position: absolute;

  top: -65px;

  left: 50%;

  -webkit-transform: translateX(-50%);

          transform: translateX(-50%);

  height: 55px;

  width: 32px;

  border-radius : 15px;

  border: 2px solid #ffffff;

  z-index: 999;

}

.skip-intro > div:after {

  content: "";

  position: absolute;

  top: -55px;

  left: 50%;

  -webkit-transform: translateX(-50%);

          transform: translateX(-50%);

  height: 12px;

  width: 3px;

  z-index: 999;

  background-color: #e32e2e;

  -webkit-animation-name: mouse;

          animation-name: mouse;

  -webkit-animation-duration: 2s;

          animation-duration: 2s;

  -webkit-animation-iteration-count: infinite;

          animation-iteration-count: infinite;

  -webkit-animation-direction: normal;

          animation-direction: normal;

}

.call-to-action {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  margin: 25px 0;
  background-color: #8089ff;
  border-radius: 5px;
  color: #ffffff;
  text-decoration: none;
}

.content-block .call-to-action {

  margin-bottom: 5px;

}

.content-block .link-disclaimer {

  font-size: 12px;

}

.list-with-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px

}

.list-with-image:last-of-type {

  margin-bottom: 0;

}

.list-with-image img {

  width: 50px;

}

@media (min-width: 650px) {

  .list-with-image img {

    width: 50px;

  }

}

.list-with-image p {

  margin-left: 30px;

  margin-bottom: 0;

  line-height: 1.2em;

  font-weight: bold;

}

@-webkit-keyframes large-momentary {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  20% {
    visibility: visible;
    opacity: 1;
  }
  80% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes large-momentary {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  20% {
    visibility: visible;
    opacity: 1;
  }
  80% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

@-webkit-keyframes large-fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  20% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes large-fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  20% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}

body[data-ios="true"] section {
  background-attachment: scroll;
}

section {
  height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 0;
  min-height: 800px

}

section .content {

  position: absolute;

  width: 100%;

  text-align: center;

  color: #ffffff;

  top: 140px;

}

@media (min-width: 650px) {

  section .content {

    top: 50%;

    left: 50%;

    -webkit-transform: translate(-50%, -50%);

            transform: translate(-50%, -50%);

  }

}

section .content h1 {

  font-size: 30px;

  font-size: calc(30px + 6vw);

  font-family: 'Playfair Display', serif;

  line-height: 1em;

  letter-spacing: 1px;

  font-weight: 300;

  margin-bottom: 20px;

  opacity: 0;

}

@media (min-width: 1024px) {

  section .content h1 {

    font-size: 100px;

  }

}

section .content h2 {

  margin-bottom: 40px;

  font-size: 22px;

  font-size: calc(18px + 1vw);

  font-family: 'Playfair Display', serif;

  line-height: 1em;

  opacity: 0;

}

section .content h3 {

  text-transform: uppercase;

  font-family: 'Chathura', sans-serif;

  font-size: 22px;

  font-size: calc(18px + 2vw);

  color: #fff;

  font-weight: 300;

  opacity: 0;

}

section .content div {

  margin-bottom: 20px;

  opacity: 0;

}

@media (min-width: 650px) {

  section .content div {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

  }

}

section .content div a {

  color: #fff;

  background: #8089ff;

  display: inline-block;

  height: 60px;

  line-height: 60px;

  display: block;

  vertical-align: middle;

  width: 185px;

  font-size: 14px;

  border-radius: 5px;

  text-decoration: none;

}

@media (max-width: 649px) {

  section .content div a {

    margin: 0 auto;

    margin-top: 15px;

  }

}

section .content div a:first-of-type {

  color: #000;

  background: #ff0;

}

@media (max-width: 649px) {

  section .content div a:first-of-type {

    margin-top: 0;

  }

}

@media (min-width: 650px) {

  section .content div a:first-of-type {

    margin-right: 15px;

  }

}

section .skip-intro {

  opacity: 0;

}

body[show-animation="false"] h1, body[show-animation="false"] h2, body[show-animation="false"] h3, body[show-animation="false"] .content > div, body[show-animation="false"] .skip-intro {

  visibility: visible;

  opacity: 1;

}

body[show-animation="true"] h1 {

  opacity: 1;

  -webkit-transition: opacity 2s ease-in-out;

  transition: opacity 2s ease-in-out;

}

body[show-animation="true"] h2 {

  opacity: 1;

  -webkit-transition: opacity 1.5s ease-in-out;

  transition: opacity 1.5s ease-in-out;

  -webkit-transition-delay: .5s;

          transition-delay: .5s;

}

body[show-animation="true"] .content > div, body[show-animation="true"] h3, body[show-animation="true"] .skip-intro {

  opacity: 1;

  -webkit-transition: opacity 1.5s ease-in-out;

  transition: opacity 1.5s ease-in-out;

  -webkit-transition-delay: 1s;

          transition-delay: 1s;

}

#introduction {
  background-attachment: scroll;
}

.places-wrapper .scroll-button-container {

  position: fixed;

  top: 50%;

  right: -60px;

  -webkit-transform: translateY(-50%);

          transform: translateY(-50%);

  -webkit-transition: opacity .5s ease-in-out;

  transition: opacity .5s ease-in-out;

}

@media (max-width: 767px) {

  .places-wrapper .scroll-button-container {

    display: none;

  }

}

.places-wrapper .scroll-button-container[showing="false"] {

  -webkit-transition: right .3s;

  transition: right .3s;

  right: -60px;

}

.places-wrapper .scroll-button-container[showing="true"] {

  -webkit-transition: right 1s;

  transition: right 1s;

  right: 30px;

}

.places-wrapper .scroll-button-container button {

  height: 50px;

  width: 50px;

  background-color: rgba(255, 255, 255, 1);

  border-radius: 50%;

  cursor: pointer;

  position: relative;

  display: block;

}

.places-wrapper .scroll-button-container button:first-of-type {

  margin-bottom: 10px;

}

.places-wrapper .scroll-button-container button:first-of-type:before {

  border-width: 3px 0 0 3px;

  margin-top: 10px;

}

.places-wrapper .scroll-button-container button:last-of-type:before {

  border-width: 0 3px 3px 0;

}

.places-wrapper .scroll-button-container button:disabled {

  opacity: .3;

}

.places-wrapper .scroll-button-container button:before {

  content: "";

  display: block;

  width: 18px;

  height: 18px;

  margin-left: -10px;

  position: absolute;

  top: 50%;

  left: 50%;

  border-style: solid;

  border-color: #8089ff;

  -webkit-transform: rotate(45deg) translate(-50%, -50%);

          transform: rotate(45deg) translate(-50%, -50%);

}

.place:last-of-type {

  background-attachment: scroll;

}

.place:before {

  position: absolute;

  display: block;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  content: '';

  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .75)), to(rgba(0, 0, 0, .15)));

  background: linear-gradient(to right, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .15) 100%);

}

@media (min-width: 768px) {

  .place:before {

    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .7)), to(rgba(0, 0, 0, .05)));

    background: linear-gradient(to right, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .05) 100%);

  }

}

@media (min-width: 1024px) {

  .place:before {

    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .7)), color-stop(60%, rgba(0, 0, 0, 0)));

    background: linear-gradient(to right, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, 0) 60%);

  }

}

.placement-right {
  background-position: right center;
}

.place-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  z-index: 9

}

.place-content .lock > span {

  width: 50px;

  height: 50px;

  line-height: 49px;

  padding-top: 1px;

  font-family: 'Chathura', sans-serif;

  font-size: 12px;

  font-weight: 700;

  font-size: 30px;

  text-align: center;

  background-color: #8089ff;

  border-radius: 50%;

  display: block;

  margin-bottom: 10px;

}

.place-content h1 {

  font-family: 'Playfair Display', serif;

  font-size: 40px;

  font-size: calc(30px + 2vw);

  font-weight: 400;

  padding-bottom: 15px;

  line-height: 1em;

}

@media (max-width: 649px) {

  .place-content h1 {

    border-bottom: 1px solid #ffffff;

  }

}