/* ------------------------

CSS TABLE OF CONTENTS 

# GLOBAL CSS
    # TYPOGRAPHY
        # BODY
        # HEADINGS
        # LINKS
        # HORIZ RULES
        # HELPERS
        # TYPE SPECIMEN
    # BUTTONS
        # DEFAULT + ALT
    # MEDIA
        # IMAGES (Responsive)
    # LAYOUT
        # CONTAINER
        # MEDIA QUERIES
            # RESPONSIVE TYPOGRAPHY
    # GRID
        # FLEXBOX-BASED SEMANTIC GRID
            # HELPERS (e.g. SWAP, CENTER)
    # STRUCTURE
        # BODY
        # SITE-HEADER
        # SITE-FOOTER
        # SITE-NAV
        # SECTIONS
            # HERO
    

--------------------------- */
/* BODY */
body {
  font-family: "acumin-pro", Helvetica, arial, sans-serif;
  font-size: 100%;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.85); }

/* HEADINGs */
h1,
h2,
h3 {
  font-family: "kepler-std", georgia, serif;
  margin: 0.5em 0;
  font-weight: 400; }

h1 {
  font-size: 3em;
  line-height: 1; }

h2 {
  font-size: 2em;
  line-height: 1.1; }

h3 {
  font-size: 1.5em;
  line-height: 1.2; }

p {
  max-width: 35em; }

/* LINKS */
a {
  color: #ff0066; }

a:hover {
  color: #cc0152; }

/* HORIZONTAL RULE */
hr {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 4em 0; }

/* HELPER */
.sectionhead {
  font-family: "acumin-pro", Helvetica, arial, sans-serif;
  font-size: 1em;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 3em;
  color: rgba(0, 0, 0, 0.5); }

.meta {
  display: block;
  font-size: 0.7em;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 2em 0; }

/* TYPE SPECIMEN */
.mainhead {
  font-size: 6em;
  color: black;
  margin-bottom: 0; }

.subhead {
  font-family: "acumin-pro", Helvetica, arial, sans-serif;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1em; }

/* BUTTONS */
button,
.button {
  font-size: inherit;
  font-family: "acumin-pro", Helvetica, arial, sans-serif;
  text-decoration: none;
  line-height: 1;
  background-color: #ff0066;
  color: #fff;
  padding: 1em 2em;
  display: inline-block;
  margin: 0.5em;
  border-radius: 0.5em;
  border: 1px solid #ff0066;
  cursor: pointer; }
  button:hover,
  .button:hover {
    background-color: #cc0152;
    color: #fff;
    border-color: #cc0152; }
  button.alt,
  .button.alt {
    color: #cc0152;
    background-color: transparent; }
    button.alt:hover,
    .button.alt:hover {
      background-color: #cc0152;
      color: #fff;
      border-color: #cc0152; }
  button.dark,
  .button.dark {
    border-color: #fff;
    color: #fff;
    background-color: transparent; }
    button.dark:hover,
    .button.dark:hover {
      background-color: #fff;
      color: #000;
      border-color: #fff; }

/* Responsive Images */
img {
  max-width: 100%;
  height: auto; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html,
body {
  height: 100%; }

body {
  font-size: 87.5%;
  margin: 0; }

.container {
  padding: 0 4%;
  margin: 0 auto; }

@media (min-width: 768px) {
  body {
    font-size: 100%; } }

@media (min-width: 1050px) {
  .container {
    max-width: 1050px; } }

@media (min-width: 1050px) {
  body {
    font-size: 112.5%; }
  .container {
    max-width: 1050px; } }

/* Grid */
.row .column {
  margin-bottom: 2%; }

@media (min-width: 768px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -1%;
    margin-right: -1%; }
    .row .column {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      margin: 1%; }
      .row .column.one-half {
        width: 48%; }
      .row .column.one-third {
        width: 31.3333%; }
      .row .column.two-thirds {
        width: 64.6666%; }
      .row .column.one-fourth {
        width: 23%; }
    .row.swap {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse; }
    .row.center {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .row.cross .column:first-child {
      margin-right: -10%; }
    .row.cross.swap .column:first-child {
      margin-left: -10%;
      margin-right: -1%; }
    .row.cross.center .column:first-child {
      margin-left: -5%;
      margin-right: 0; }
    .row.cross.center .column:last-child {
      margin-top: -12%;
      margin-right: -5%; } }

.row.demo .column {
  background: rgba(0, 0, 0, 0.5);
  padding: 1em;
  text-align: center; }

/* site header and footer */
body {
  background-color: white; }

/* site header and footer */
.site-header,
.site-footer {
  position: absolute;
  width: 100%;
  padding: 1em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .site-header h1,
  .site-footer h1 {
    font-family: "acumin-pro", Helvetica, arial, sans-serif;
    font-size: 1.5em;
    margin: 0.5em 0 0 0;
    /* to adjust baseline with nav text */ }
  .site-header a,
  .site-footer a {
    color: #fff;
    text-decoration: none; }

/* site footer */
.site-footer {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 6em; }
  .site-footer a {
    color: #cc0152; }

/* SITE NAV v2*/
.site-header .site-nav {
  position: absolute;
  top: 0;
  right: 0; }
  .site-header .site-nav ul {
    position: fixed;
    top: -100%;
    left: 50%;
    z-index: 1;
    height: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    display: -ms-grid;
    display: grid;
    place-items: center start;
    font-family: "kepler-std", georgia, serif;
    font-size: 4em;
    line-height: 1; }
  .site-header .site-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(0, 1, 1, 1) 0.6s;
    -o-transition: all 0.4s cubic-bezier(0, 1, 1, 1) 0.6s;
    transition: all 0.4s cubic-bezier(0, 1, 1, 1) 0.6s; }
    .site-header .site-nav li:nth-child(1) {
      -webkit-transition-delay: 0.2s;
      -o-transition-delay: 0.2s;
      transition-delay: 0.2s; }
    .site-header .site-nav li:nth-child(2) {
      -webkit-transition-delay: 0.3s;
      -o-transition-delay: 0.3s;
      transition-delay: 0.3s; }
    .site-header .site-nav li:nth-child(3) {
      -webkit-transition-delay: 0.4s;
      -o-transition-delay: 0.4s;
      transition-delay: 0.4s; }
    .site-header .site-nav li:nth-child(4) {
      -webkit-transition-delay: 0.5s;
      -o-transition-delay: 0.5s;
      transition-delay: 0.5s; }
    .site-header .site-nav li:nth-child(5) {
      -webkit-transition-delay: 0.6s;
      -o-transition-delay: 0.6s;
      transition-delay: 0.6s; }
  .site-header .site-nav a {
    display: inline-block;
    padding: 0 1em;
    margin: 0 0.5em;
    color: rgba(255, 255, 255, 0.7); }
    .site-header .site-nav a:hover {
      color: white; }
  .site-header .site-nav .menu-button {
    color: rgba(0, 0, 0, 0);
    line-height: 1;
    cursor: pointer; }
    .site-header .site-nav .menu-button::before {
      position: absolute;
      content: "";
      top: 0.2875em;
      right: 0.1875em;
      width: 3.1875em;
      height: 3.1875em;
      border-radius: 100%;
      display: -ms-grid;
      display: grid;
      place-items: center;
      background: rgba(0, 0, 0, 0);
      -webkit-transition: all 0.4s cubic-bezier(0, 1, 0, 1);
      -o-transition: all 0.4s cubic-bezier(0, 1, 0, 1);
      transition: all 0.4s cubic-bezier(0, 1, 0, 1);
      z-index: 10; }
    .site-header .site-nav .menu-button::after {
      position: absolute;
      top: 0;
      right: 0;
      color: white;
      content: "\2630";
      padding: 0.75em;
      font-size: 1.5em;
      -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
      -o-transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
      transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
      z-index: 20; }
    .site-header .site-nav .menu-button:hover::before {
      background: #ff0066; }
    .site-header .site-nav .menu-button:hover::after {
      color: white; }
    .site-header .site-nav .menu-button::-moz-selection {
      background: rgba(255, 255, 255, 0); }
    .site-header .site-nav .menu-button::selection {
      background: rgba(255, 255, 255, 0); }
  .site-header .site-nav.active .menu-button::before {
    position: fixed;
    -webkit-transform: scale(50) translate(-25%);
    -ms-transform: scale(50) translate(-25%);
    transform: scale(50) translate(-25%);
    background: #ff0066;
    -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
    -o-transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 0.5s cubic-bezier(0.5, 0, 0.5, 1); }
  .site-header .site-nav.active .menu-button::after {
    position: fixed;
    content: "\2715";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    color: white; }
  .site-header .site-nav.active ul {
    top: 50%;
    z-index: 20; }
  .site-header .site-nav.active li {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }

/* site navigation v1 */
.site-footer .site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.site-footer .site-nav a {
  display: block;
  padding: 1em; }

section {
  padding: 4em 0;
  min-height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background-color: #ddd; }
  section:nth-child(odd) {
    background-color: #eee; }
  section:last-of-type {
    background-color: transparent; }

/* Hero Sections */
.hero {
  background-color: black;
  color: #fff; }
  .hero h1,
  .hero h2 {
    font-size: 5em;
    margin: 0; }
  .hero p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em; }

/* Bespoke Structures and Layouts */
.image-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .image-text-block .image-block {
    width: 55%;
    margin-right: -5%; }
  .image-text-block .text-block {
    width: 55%;
    margin-left: -5%; }
  .image-text-block.swap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
    .image-text-block.swap .image-block {
      margin-right: 0;
      margin-left: -5%; }
    .image-text-block.swap .text-block {
      margin-left: 0;
      margin-right: -5%; }
  .image-text-block.centered {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .image-text-block.centered .image-block {
      margin-right: 0;
      margin-left: -5%; }
    .image-text-block.centered .text-block {
      margin-left: 0;
      margin-right: -5%;
      margin-top: -12%; }

/* ANIMATION */
@-webkit-keyframes fadeanddropIn {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1; } }
@keyframes fadeanddropIn {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1; } }

.fadeanddropIn * {
  -webkit-animation: fadeanddropIn 0.6s ease-out forwards;
  animation: fadeanddropIn 0.6s ease-out forwards;
  opacity: 0; }

.fadeanddropIn *:nth-child(1) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s; }

.fadeanddropIn *:nth-child(2) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.fadeanddropIn *:nth-child(3) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s; }

.fadeanddropIn *:nth-child(4) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

.fadeanddropIn *:nth-child(5) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s; }

.fadeanddropIn *:nth-child(6) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s; }

.fadeanddropIn *:nth-child(7) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s; }

.fadeanddropIn *:nth-child(8) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s; }

.fadeanddropIn *:nth-child(9) {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.35s; }

.fadeanddropIn:last-child *:nth-child(1) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.fadeanddropIn:last-child *:nth-child(2) {
  -webkit-animation-delay: 1.65s;
  animation-delay: 1.65s; }

.fadeanddropIn:last-child *:nth-child(3) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s; }

@-webkit-keyframes fadeandscaleIn {
  0% {
    -webkit-transform: scale(0.97) translateY(5px);
    transform: scale(0.97) translateY(5px);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1; } }

@keyframes fadeandscaleIn {
  0% {
    -webkit-transform: scale(0.97) translateY(5px);
    transform: scale(0.97) translateY(5px);
    opacity: 0; }
  100% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1; } }

.revealer.active *:nth-child(1),
.fadeandscaleIn *:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s; }

.revealer.active *:nth-child(2),
.fadeandscaleIn *:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s; }

.revealer.active *:nth-child(3),
.fadeandscaleIn *:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.revealer.active *:nth-child(4),
.fadeandscaleIn *:nth-child(4) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s; }

.revealer.active *:nth-child(5),
.fadeandscaleIn *:nth-child(5) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

.revealer.active *:nth-child(6),
.fadeandscaleIn *:nth-child(6) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s; }

.revealer.active *:nth-child(7),
.fadeandscaleIn *:nth-child(7) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s; }

.revealer.active *:nth-child(8),
.fadeandscaleIn *:nth-child(8) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s; }

.revealer.active *:nth-child(9),
.fadeandscaleIn *:nth-child(9) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s; }

.revealer.active *:nth-child(10),
.fadeandscaleIn *:nth-child(10) {
  -webkit-animation-delay: 1.35s;
  animation-delay: 1.35s; }

.revealer * {
  opacity: 0; }

.revealer.active *,
.fadeandscaleIn * {
  -webkit-animation: fadeandscaleIn 0.6s ease-out forwards;
  animation: fadeandscaleIn 0.6s ease-out forwards;
  opacity: 0; }
