/* Colours */
/* Transition */
@font-face {
  font-family: "Mikro";
  src: url(../fonts/Mikro-Light.woff2) format("woff2"), url(../fonts/Mikro-Light.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

@font-face {
  font-family: "SangBleu Sunrise";
  src: url(../fonts/SangBleuSunrise-Regular-WebM.woff2) format("woff2"), url(../fonts/SangBleuSunrise-Regular-WebM.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal; }

.carousel-words__wrapper .word, .home-header h1, .page-header h1, .portfolio-header h1,
.portfolio-header h2, .portfolio-content__header h1 {
  font-family: "SangBleu Sunrise";
  font-weight: 400;
  font-size: 38px;
  line-height: 46px; }
  @media print, screen and (min-width: 40em) {
    .carousel-words__wrapper .word, .home-header h1, .page-header h1, .portfolio-header h1,
    .portfolio-header h2, .portfolio-content__header h1 {
      font-size: 52px;
      line-height: 60px; } }
  @media print, screen and (min-width: 64.0625em) {
    .carousel-words__wrapper .word, .home-header h1, .page-header h1, .portfolio-header h1,
    .portfolio-header h2, .portfolio-content__header h1 {
      font-size: 70px;
      line-height: 80px; } }

.page-content h2 {
  font-family: "SangBleu Sunrise";
  font-weight: 400;
  font-size: 24px;
  line-height: 32px; }
  @media print, screen and (min-width: 40em) {
    .page-content h2 {
      font-size: 38px;
      line-height: 48px; } }
  @media print, screen and (min-width: 64.0625em) {
    .page-content h2 {
      font-size: 52px;
      line-height: 60px; } }

.takeover > ul > li a, .takeover > ul > li > ul li a, .page-content h3, .page-content.contact-content p {
  font-family: "SangBleu Sunrise";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px; }
  @media print, screen and (min-width: 40em) {
    .takeover > ul > li a, .takeover > ul > li > ul li a, .page-content h3, .page-content.contact-content p {
      font-size: 24px;
      line-height: 32px; } }
  @media print, screen and (min-width: 64.0625em) {
    .takeover > ul > li a, .takeover > ul > li > ul li a, .page-content h3, .page-content.contact-content p {
      font-size: 38px;
      line-height: 48px; } }

.carousel-words__wrapper h4, .carousel-testimonials .testimonial, .page-content h4, .page-content p, .page-content.contact-content p small, .footer__content p {
  font-family: "SangBleu Sunrise";
  font-weight: 400;
  font-size: 18px;
  line-height: 24px; }
  @media print, screen and (min-width: 40em) {
    .carousel-words__wrapper h4, .carousel-testimonials .testimonial, .page-content h4, .page-content p, .page-content.contact-content p small, .footer__content p {
      font-size: 24px;
      line-height: 34px; } }
  @media print, screen and (min-width: 64.0625em) {
    .carousel-words__wrapper h4, .carousel-testimonials .testimonial, .page-content h4, .page-content p, .page-content.contact-content p small, .footer__content p {
      font-size: 24px;
      line-height: 34px; } }

.button, .header .nav ul li a, .takeover.mobileNav > ul > li > a, .carousel-testimonials .testimonial span:last-of-type, .page-nav {
  font-family: "Mikro";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px; }
  @media print, screen and (min-width: 40em) {
    .button, .header .nav ul li a, .takeover.mobileNav > ul > li > a, .carousel-testimonials .testimonial span:last-of-type, .page-nav {
      font-size: 18px;
      line-height: 24px; } }

.footer__copyright p {
  font-family: "Mikro";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px; }

/*!
 * animsition v4.0.2
 * A simple and easy jQuery plugin for CSS animated page transitions.
 * http://blivesta.github.io/animsition
 * License : MIT
 * Author : blivesta (http://blivesta.com/)
 */
.animsition,
.animsition-overlay {
  position: relative;
  opacity: 0;
  animation-fill-mode: both; }

/**
 * overlay option
 */
.animsition-overlay-slide {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ddd; }

/* loading option */
.animsition-loading,
.animsition-loading:after {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  z-index: 100; }

.animsition-loading {
  background-color: transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  transform: translateZ(0);
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.6, 0.1, 0.48, 0.9);
  animation-duration: 0.8s;
  animation-name: animsition-loading; }

@keyframes animsition-loading {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@keyframes fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fade-in {
  animation-name: fade-in; }

@keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.fade-out {
  animation-name: fade-out; }

@keyframes fade-in-up {
  0% {
    transform: translateY(500px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.fade-in-up {
  animation-name: fade-in-up; }

@keyframes fade-out-up {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(-500px);
    opacity: 0; } }

.fade-out-up {
  animation-name: fade-out-up; }

@keyframes fade-in-up-sm {
  0% {
    transform: translateY(100px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.fade-in-up-sm {
  animation-name: fade-in-up-sm; }

@keyframes fade-out-up-sm {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(-100px);
    opacity: 0; } }

.fade-out-up-sm {
  animation-name: fade-out-up-sm; }

@keyframes fade-in-up-lg {
  0% {
    transform: translateY(1000px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.fade-in-up-lg {
  animation-name: fade-in-up-lg; }

@keyframes fade-out-up-lg {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(-1000px);
    opacity: 0; } }

.fade-out-up-lg {
  animation-name: fade-out-up-lg; }

@keyframes fade-in-down {
  0% {
    transform: translateY(-500px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.fade-in-down {
  animation-name: fade-in-down; }

@keyframes fade-out-down {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(500px);
    opacity: 0; } }

.fade-out-down {
  animation-name: fade-out-down; }

@keyframes fade-in-down-sm {
  0% {
    transform: translateY(-100px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.fade-in-down-sm {
  animation-name: fade-in-down-sm; }

@keyframes fade-out-down-sm {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(100px);
    opacity: 0; } }

.fade-out-down-sm {
  animation-name: fade-out-down-sm; }

@keyframes fade-in-down-lg {
  0% {
    transform: translateY(-1000px);
    opacity: 0; }
  100% {
    transform: translateY(0);
    opacity: 1; } }

.fade-in-down-lg {
  animation-name: fade-in-down; }

@keyframes fade-out-down-lg {
  0% {
    transform: translateY(0);
    opacity: 1; }
  100% {
    transform: translateY(1000px);
    opacity: 0; } }

.fade-out-down-lg {
  animation-name: fade-out-down-lg; }

@keyframes fade-in-left {
  0% {
    transform: translateX(-500px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

.fade-in-left {
  animation-name: fade-in-left; }

@keyframes fade-out-left {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(-500px);
    opacity: 0; } }

.fade-out-left {
  animation-name: fade-out-left; }

@keyframes fade-in-left-sm {
  0% {
    transform: translateX(-100px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

.fade-in-left-sm {
  animation-name: fade-in-left-sm; }

@keyframes fade-out-left-sm {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(-100px);
    opacity: 0; } }

.fade-out-left-sm {
  animation-name: fade-out-left-sm; }

@keyframes fade-in-left-lg {
  0% {
    transform: translateX(-1500px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

.fade-in-left-lg {
  animation-name: fade-in-left-lg; }

@keyframes fade-out-left-lg {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(-1500px);
    opacity: 0; } }

.fade-out-left-lg {
  animation-name: fade-out-left-lg; }

@keyframes fade-in-right {
  0% {
    transform: translateX(500px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

.fade-in-right {
  animation-name: fade-in-right; }

@keyframes fade-out-right {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(500px);
    opacity: 0; } }

.fade-out-right {
  animation-name: fade-out-right; }

@keyframes fade-in-right-sm {
  0% {
    transform: translateX(100px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

.fade-in-right-sm {
  animation-name: fade-in-right-sm; }

@keyframes fade-out-right-sm {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(100px);
    opacity: 0; } }

.fade-out-right-sm {
  animation-name: fade-out-right-sm; }

@keyframes fade-in-right-lg {
  0% {
    transform: translateX(1500px);
    opacity: 0; }
  100% {
    transform: translateX(0);
    opacity: 1; } }

.fade-in-right-lg {
  animation-name: fade-in-right-lg; }

@keyframes fade-out-right-lg {
  0% {
    transform: translateX(0);
    opacity: 1; }
  100% {
    transform: translateX(1500px);
    opacity: 0; } }

.fade-out-right-lg {
  animation-name: fade-out-right-lg; }

@keyframes rotate-in {
  0% {
    transform: rotate(-90deg);
    transform-origin: center center;
    opacity: 0; }
  100% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }

.rotate-in {
  animation-name: rotate-in; }

@keyframes rotate-out {
  0% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  100% {
    transform: rotate(90deg);
    transform-origin: center center;
    opacity: 0; } }

.rotate-out {
  animation-name: rotate-out; }

@keyframes rotate-in-sm {
  0% {
    transform: rotate(-45deg);
    transform-origin: center center;
    opacity: 0; }
  100% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }

.rotate-in-sm {
  animation-name: rotate-in-sm; }

@keyframes rotate-out-sm {
  0% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  100% {
    transform: rotate(45deg);
    transform-origin: center center;
    opacity: 0; } }

.rotate-out-sm {
  animation-name: rotate-out-sm; }

@keyframes rotate-in-lg {
  0% {
    transform: rotate(-180deg);
    transform-origin: center center;
    opacity: 0; }
  100% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }

.rotate-in-lg {
  animation-name: rotate-in-lg; }

@keyframes rotate-out-lg {
  0% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  100% {
    transform: rotate(180deg);
    transform-origin: center center;
    opacity: 0; } }

.rotate-out-lg {
  animation-name: rotate-out-lg; }

@keyframes flip-in-x {
  0% {
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  100% {
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x {
  animation-name: flip-in-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-out-x {
  0% {
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  100% {
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x {
  animation-name: flip-out-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-in-x-nr {
  0% {
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  100% {
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x-nr {
  animation-name: flip-in-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-out-x-nr {
  0% {
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  100% {
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x-nr {
  animation-name: flip-out-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-in-x-fr {
  0% {
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  100% {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }

.flip-in-x-fr {
  animation-name: flip-in-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-out-x-fr {
  0% {
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  100% {
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

.flip-out-x-fr {
  animation-name: flip-out-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-in-y {
  0% {
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  100% {
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y {
  animation-name: flip-in-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-out-y {
  0% {
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  100% {
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y {
  animation-name: flip-out-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-in-y-nr {
  0% {
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  100% {
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y-nr {
  animation-name: flip-in-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-out-y-nr {
  0% {
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  100% {
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y-nr {
  animation-name: flip-out-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-in-y-fr {
  0% {
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  100% {
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }

.flip-in-y-fr {
  animation-name: flip-in-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flip-out-y-fr {
  0% {
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  100% {
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }

.flip-out-y-fr {
  animation-name: flip-out-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes zoom-in {
  0% {
    transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in {
  animation-name: zoom-in; }

@keyframes zoom-out {
  0% {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(0.7);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out {
  animation-name: zoom-out; }

@keyframes zoom-in-sm {
  0% {
    transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in-sm {
  animation-name: zoom-in-sm; }

@keyframes zoom-out-sm {
  0% {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(0.95);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out-sm {
  animation-name: zoom-out-sm; }

@keyframes zoom-in-lg {
  0% {
    transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 1; } }

.zoom-in-lg {
  animation-name: zoom-in-lg; }

@keyframes zoom-out-lg {
  0% {
    transform: scale(1);
    opacity: 1; }
  50% {
    transform: scale(0.4);
    opacity: 0; }
  100% {
    opacity: 0; } }

.zoom-out-lg {
  animation-name: zoom-out-lg; }

@keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

.overlay-slide-in-top {
  top: 0;
  height: 0;
  animation-name: overlay-slide-in-top; }

@keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

.overlay-slide-out-top {
  top: 0;
  height: 100%;
  animation-name: overlay-slide-out-top; }

@keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  100% {
    height: 0; } }

.overlay-slide-in-bottom {
  bottom: 0;
  height: 0;
  animation-name: overlay-slide-in-bottom; }

@keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

.overlay-slide-out-bottom {
  bottom: 0;
  height: 100%;
  animation-name: overlay-slide-out-bottom; }

@keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

.overlay-slide-in-left {
  width: 0;
  animation-name: overlay-slide-in-left; }

@keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

.overlay-slide-out-left {
  left: 0;
  width: 100%;
  animation-name: overlay-slide-out-left; }

@keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  100% {
    width: 0; } }

.overlay-slide-in-right {
  right: 0;
  width: 0;
  animation-name: overlay-slide-in-right; }

@keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

.overlay-slide-out-right {
  right: 0;
  width: 100%;
  animation-name: overlay-slide-out-right; }

/*! Flickity v2.1.2
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing; }

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333; }

.flickity-button:hover {
  background: white;
  cursor: pointer; }

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19f; }

.flickity-button:active {
  opacity: 0.6; }

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none; }

.flickity-button-icon {
  fill: #333; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%); }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.5; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #ccc; }
    .mfp-preloader a:hover {
      color: #fff; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
  display: none; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: none;
    background: #444; }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75); }
  .mfp-arrow-left {
    transform-origin: 0; }
  .mfp-arrow-right {
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/*********************
BASE TYPE STYLES
*********************/
::-moz-selection {
  background: #1e284b;
  color: #ffffff; }
::selection {
  background: #1e284b;
  color: #ffffff; }

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html.site {
  margin-top: 0 !important; }

body {
  font-family: "SangBleu Sunrise Trial";
  background-color: #ffffff;
  color: #1e284b;
  font-weight: 400; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0;
  padding: 0; }
  h1:not(:last-of-type),
  h2:not(:last-of-type),
  h3:not(:last-of-type),
  h4:not(:last-of-type),
  h5:not(:last-of-type),
  h6:not(:last-of-type) {
    margin-bottom: 1em; }

a {
  color: inherit;
  text-decoration: none;
  transition: 400ms cubic-bezier(0.25, 0.75, 0.5, 1.25); }

p {
  margin-top: 0;
  margin-bottom: 0; }
  p:not(:last-of-type) {
    margin-bottom: 36px; }

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0; }

.button {
  display: inline-block;
  border-bottom: 1px solid transparent;
  margin-top: 20px; }
  .button:hover, .button:active, .button:focus {
    border-bottom: 1px solid currentColor; }

/*********************
HEADER
*********************/
.header {
  position: fixed;
  z-index: 20;
  top: 0;
  width: 100%;
  height: 85px;
  background-color: #ffffff;
  transition: background-color 300ms ease-in-out; }
  .single-portfolio:not(.is-scrolled-past-header) .header {
    background-color: transparent; }
  .header div {
    height: 100%; }
  .header .logo {
    position: relative;
    display: block;
    height: 100%;
    z-index: 100; }
    .header .logo svg:nth-of-type(1) {
      opacity: 0; }
    .header .logo svg:nth-of-type(2) {
      opacity: 1; }
    .single-portfolio:not(.is-scrolled-past-header) .header .logo svg:nth-of-type(1) {
      opacity: 1; }
    .single-portfolio:not(.is-scrolled-past-header) .header .logo svg:nth-of-type(2) {
      opacity: 0; }
    .header .logo svg {
      position: absolute;
      left: 0;
      width: auto;
      max-width: 100%;
      transition: 300ms ease-in-out;
      top: 15px;
      height: calc(100% - 30px); }
      .single-portfolio:not(.is-scrolled-past-header) .header .logo svg .change path {
        fill: #ffffff; }
      .header .logo svg .words {
        display: none; }
        @media print, screen and (min-width: 40em) {
          .header .logo svg .words {
            display: block; } }
      @media print, screen and (min-width: 64.0625em) {
        .header .logo svg {
          top: 40px;
          height: 100%; }
          .is-scrolled .header .logo svg {
            top: 15px;
            height: calc(100% - 30px); } }
  .header .nav {
    height: 100%;
    position: relative;
    z-index: 100;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end; }
    @media print, screen and (min-width: 40em) {
      .header .nav {
        display: -ms-flexbox;
        display: flex; } }
    .header .nav__hamburger {
      outline: none;
      transition: transform 600ms ease-in-out; }
      .is-takeover .header .nav__hamburger {
        transform: rotate(90deg); }
      @media print, screen and (min-width: 40em) {
        .header .nav__hamburger {
          display: none; } }
    .header .nav ul {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: end;
          justify-content: flex-end;
      height: 100%;
      -ms-flex-align: center;
          align-items: center;
      display: none; }
      @media print, screen and (min-width: 40em) {
        .header .nav ul {
          display: block; } }
      .header .nav ul li {
        height: 100%;
        display: inline-block; }
        .header .nav ul li:last-of-type a {
          padding-right: 0; }
        .header .nav ul li a {
          height: 100%;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          padding: 0 10px; }
          @media print, screen and (min-width: 64.0625em) {
            .header .nav ul li a {
              padding: 0 40px; } }
          .single-portfolio:not(.is-scrolled-past-header) .header .nav ul li a {
            color: #ffffff; }
          .is-takeover .header .nav ul li a {
            color: #848284 !important; }
          .header .nav ul li a:hover, .header .nav ul li a:active, .header .nav ul li a:focus {
            color: #cd9b50; }

.main {
  padding-top: 85px; }
  .single-portfolio .main {
    padding-top: 0; }

/*********************
TAKEOVER
*********************/
@media print, screen and (min-width: 64.0625em) {
  body:before {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 30;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: 600ms 0s ease-in-out; } }

body.is-takeover:before {
  opacity: 1;
  transition: 600ms 400ms ease-in-out; }

.takeover {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ecece8;
  box-shadow: -1px 0px 30px 0px rgba(0, 0, 0, 0.15);
  transform: translateX(110%);
  transition: transform 600ms 0s ease-in-out; }
  @media screen and (max-width: 39.9375em) {
    .takeover {
      overflow-y: scroll;
      overflow-x: hidden; } }
  @media print, screen and (min-width: 64.0625em) {
    .takeover {
      width: 50%;
      transition: transform 600ms 400ms ease-in-out; } }
  .takeover > ul {
    width: 100%;
    max-width: 764px;
    margin-top: 150px;
    margin-left: 18px;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    min-height: calc(100vh - 150px); }
    @media print, screen and (min-width: 64.0625em) {
      .takeover > ul {
        max-width: 720px;
        -ms-flex-pack: end;
            justify-content: flex-end; } }
    .takeover > ul > li {
      margin-bottom: 30px;
      width: 100%;
      max-width: 600px;
      padding-right: 50px; }
      .takeover > ul > li a {
        color: #848284; }
        .takeover > ul > li a:hover, .takeover > ul > li a:active, .takeover > ul > li a:focus {
          color: #1e284b; }
      .takeover > ul > li > ul li {
        padding-top: 10px; }
  .is-portfolioNav .takeover.portfolioNav {
    transform: translateX(0%);
    transition: transform 600ms 0s ease-in-out; }
  .is-aboutNav .takeover.aboutNav {
    transform: translateX(0%);
    transition: transform 600ms 0s ease-in-out; }
  .is-mobileNav .takeover.mobileNav {
    transform: translateX(0%);
    transition: transform 600ms 0s ease-in-out; }

/*********************
CAROUSEL
*********************/
.carousel {
  min-height: 400px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  outline: none; }
  @media print, screen and (min-width: 40em) {
    .carousel {
      min-height: 330px; } }
  .carousel > div {
    width: 100%; }
  .carousel .flickity-slider {
    transform: translateX(0%) !important; }
    .carousel .flickity-slider > div {
      opacity: 0;
      transition: opacity 1s 0s ease-in-out;
      left: 0% !important; }
      .carousel .flickity-slider > div.is-selected {
        opacity: 1;
        transition: opacity 1s 1s ease-in-out; }
  .carousel-words__wrapper {
    background-color: #1e284b;
    min-height: 300px;
    padding-top: 60px;
    padding-bottom: 60px; }
    @media print, screen and (min-width: 40em) {
      .carousel-words__wrapper {
        min-height: 500px; } }
    @media print, screen and (min-width: 64.0625em) {
      .carousel-words__wrapper {
        padding-top: 100px;
        padding-bottom: 100px; } }
    .carousel-words__wrapper h4 {
      color: #ffffff;
      text-align: center;
      display: block;
      margin-bottom: 20px; }
    .carousel-words__wrapper .word {
      color: #cd9b50;
      width: 100%;
      text-align: center; }
      @media print, screen and (min-width: 40em) {
        .carousel-words__wrapper .word {
          min-height: 90px; } }
  .carousel-testimonials {
    background-color: #848284;
    width: 100%;
    padding: 40px 0; }
    @media print, screen and (min-width: 64.0625em) {
      .carousel-testimonials {
        padding: 80px 0; } }
    .carousel-testimonials .testimonial {
      color: #ffffff;
      text-align: center;
      width: 100%; }
      .carousel-testimonials .testimonial span {
        display: block;
        width: 100%; }
        .carousel-testimonials .testimonial span:last-of-type {
          color: #a0bec8;
          margin-top: 30px; }

/*********************
FRONT PAGE
*********************/
.home-header {
  min-height: calc(100vh - 85px);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  position: relative; }
  .home-header > div {
    height: 400px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center; }
    @media print, screen and (min-width: 40em) {
      .home-header > div {
        height: calc(50vh - 42.5px); } }
    @media print, screen and (min-width: 64.0625em) {
      .home-header > div {
        height: 100%; } }
  .home-header h1 {
    color: #cd9b50; }
  .home-header__bg {
    width: 100%;
    height: 400px; }
    .home-header__bg img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center center;
         object-position: center center; }
    @media print, screen and (min-width: 64.0625em) {
      .home-header__bg {
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        height: 100%; } }
  .home-header .btn-scroll {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 51px;
    height: 51px;
    outline: none;
    cursor: pointer; }
    @media print, screen and (min-width: 64.0625em) {
      .home-header .btn-scroll {
        display: block; } }

/*********************
PAGE HEADER
*********************/
.page-header {
  min-height: 150px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .page-header > .grid-container {
    width: 100%; }
  @media print, screen and (min-width: 40em) {
    .page-header {
      min-height: 250px; } }
  @media print, screen and (min-width: 64.0625em) {
    .page-header {
      min-height: 430px; } }
  .page-header h1 {
    text-align: center;
    color: #cd9b50;
    width: 100%; }

/*********************
PAGE CONTENT
*********************/
.page-content {
  background-color: #a0bec8;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media print, screen and (min-width: 64.0625em) {
    .page-content {
      padding-top: 100px;
      padding-bottom: 100px; } }
  .page-content > *:not(:last-child) {
    margin-bottom: 60px; }
    @media print, screen and (min-width: 64.0625em) {
      .page-content > *:not(:last-child) {
        margin-bottom: 100px; } }
  .page-content h2 {
    color: #ffffff; }
  .page-content h3 {
    color: #1e284b; }
  .page-content h4 {
    color: #ffffff;
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid currentColor;
    margin-bottom: 20px; }
  .page-content p {
    color: #1e284b; }
  @media print, screen and (min-width: 40em) {
    .page-content .heading-spacer {
      margin-top: 80px; } }
  .page-content__intro .cell, .page-content__body .cell {
    margin-bottom: 30px; }
    @media print, screen and (min-width: 64.0625em) {
      .page-content__intro .cell, .page-content__body .cell {
        margin-bottom: 0; } }
  .page-content__circle-image {
    margin-top: 40px; }
    @media print, screen and (min-width: 40em) {
      .page-content__circle-image {
        margin-top: 80px; } }
    .page-content__circle-image img {
      border-radius: 50%;
      width: 100%;
      height: auto;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center center;
         object-position: center center; }
  .page-content__logos .logos {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center; }
    .page-content__logos .logos svg,
    .page-content__logos .logos img {
      max-height: 120px;
      display: block;
      margin-right: 70px;
      margin-bottom: 20px; }
  .page-content.contact-content {
    background-color: #fefefe;
    padding-top: 60px;
    padding-bottom: 60px; }
    @media print, screen and (min-width: 40em) {
      .page-content.contact-content {
        padding-top: 160px;
        padding-bottom: 100px; } }
    .page-content.contact-content h4 {
      color: #cd9b50; }
    .page-content.contact-content p:not(:last-of-type) {
      margin-bottom: 18px; }
    .page-content.contact-content p {
      color: #848284; }
      .page-content.contact-content p strong {
        font-weight: 400;
        color: #1e284b; }

.page-nav {
  margin-top: 30px;
  border-top: 1px solid #1e284b;
  padding-top: 20px; }
  .page-nav span {
    color: #ffffff; }
  .page-nav a {
    display: block;
    margin-bottom: 5px; }
    .page-nav a:hover span, .page-nav a:active span, .page-nav a:focus span {
      color: #1e284b; }

/*********************
PORTFOLIO
*********************/
/* Archive */
.portfolio-archive {
  padding-bottom: 0; }
  @media screen and (max-width: 39.9375em) {
    .portfolio-archive .page-content__intro {
      margin-bottom: 30px; } }
  @media screen and (min-width: 40em) and (max-width: 64em) {
    .portfolio-archive .page-content__intro {
      margin-bottom: 30px; } }
  .portfolio-archive__body {
    background-color: #ecece8;
    padding-top: 60px;
    padding-bottom: 60px; }
    @media print, screen and (min-width: 64.0625em) {
      .portfolio-archive__body {
        padding-top: 100px;
        padding-bottom: 100px; } }
    .portfolio-archive__body h4 {
      color: #cd9b50; }
  .portfolio-archive__item {
    display: block; }
    .portfolio-archive__item:not(:last-of-type) {
      margin-bottom: 30px; }
      @media print, screen and (min-width: 64.0625em) {
        .portfolio-archive__item:not(:last-of-type) {
          margin-bottom: 60px; } }
    .portfolio-archive__item h3,
    .portfolio-archive__item img {
      transition: 400ms cubic-bezier(0.25, 0.75, 0.5, 1.25);
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden; }
    .portfolio-archive__item:hover h3, .portfolio-archive__item:active h3, .portfolio-archive__item:focus h3 {
      color: #cd9b50; }

@supports (display: flex) {
  .portfolio-header {
    top: 0 !important; } }

.portfolio-header {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  top: 50vh; }
  @media screen and (max-width: 39.9375em) {
    .portfolio-header {
      transition: height 0s 5s linear; } }
  .portfolio-header > div {
    width: 100%; }
  .portfolio-header h1,
  .portfolio-header h2 {
    color: #ffffff;
    position: fixed;
    transform: translateY(-50%);
    width: calc(100% - 36px); }
  .portfolio-header__bg {
    position: fixed;
    z-index: -1;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 39.9375em) {
      .portfolio-header__bg {
        transition: height 0s 5s linear; } }
    .portfolio-header__bg img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center center;
         object-position: center center; }
      @media screen and (max-width: 39.9375em) {
        .portfolio-header__bg img {
          transition: height 0s 5s linear; } }
    .portfolio-header__bg:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.25); }
  .portfolio-header .btn-scroll {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    outline: none;
    cursor: pointer; }
    .portfolio-header .btn-scroll svg {
      display: block;
      width: 35px;
      height: 35px; }
    @media print, screen and (min-width: 40em) {
      .portfolio-header .btn-scroll {
        bottom: 40px; }
        .portfolio-header .btn-scroll svg {
          width: 51px;
          height: 51px; } }

.portfolio-content {
  background-color: #ecece8;
  position: relative;
  z-index: 1; }
  .portfolio-content__header h1 {
    color: #cd9b50;
    position: relative;
    top: -10px;
    opacity: 0;
    transition: 100ms ease-in-out; }
    .is-scrolled-50 .portfolio-content__header h1 {
      top: 0;
      opacity: 1; }
  .portfolio-content__body {
    margin-top: 60px; }
    .portfolio-content__body > div:not(:last-of-type) {
      margin-bottom: 60px; }
    @media print, screen and (min-width: 40em) {
      .portfolio-content__body {
        margin-top: 120px; }
        .portfolio-content__body > div:not(:last-of-type) {
          margin-bottom: 100px; } }
    .portfolio-content__body nav a span {
      color: #cd9b50; }
  .portfolio-content__images {
    margin-top: 60px; }
    @media print, screen and (min-width: 40em) {
      .portfolio-content__images {
        margin-top: 100px; } }
    .portfolio-content__images .cell:not(:last-of-type) {
      margin-bottom: 36px; }
  .portfolio-content h3 {
    margin-bottom: 80px; }
  .portfolio-content h4 {
    color: #1e284b; }

.popup-gallery a {
  display: block; }

.portfolio-contact {
  position: relative;
  z-index: 1; }
  .portfolio-contact p span {
    width: 40px;
    display: inline-block;
    color: #ffffff; }
  .portfolio-contact p a:hover, .portfolio-contact p a:active, .portfolio-contact p a:focus {
    color: #ffffff; }
  .portfolio-contact .cell:not(:last-of-type) {
    padding-bottom: 30px; }
    @media print, screen and (min-width: 40em) {
      .portfolio-contact .cell:not(:last-of-type) {
        padding-bottom: 0; } }

/*********************
FOOTER
*********************/
.footer {
  position: relative;
  z-index: 1;
  background-color: #ffffff; }
  .footer__bg {
    height: 200px;
    width: 100%;
    background-image: url(../images/footer_bg.svg);
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 201px; }
    @media print, screen and (min-width: 40em) {
      .footer__bg {
        height: 300px;
        background-size: unset; } }
  .footer__content {
    background-color: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px; }
    @media print, screen and (min-width: 40em) {
      .footer__content {
        padding-top: 80px;
        padding-bottom: 80px; } }
    .footer__content p {
      color: #848284; }
      .footer__content p strong {
        font-weight: 400;
        color: #1e284b; }
    .footer__content .cell:not(:last-of-type) {
      padding-bottom: 30px; }
      @media print, screen and (min-width: 40em) {
        .footer__content .cell:not(:last-of-type) {
          padding-bottom: 0; } }
  .footer__copyright {
    background-color: #ecece8;
    min-height: 80px;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding: 30px 0; }
    @media print, screen and (min-width: 40em) {
      .footer__copyright {
        padding: 0; } }
    .footer__copyright .break {
      display: none; }
      @media print, screen and (min-width: 40em) {
        .footer__copyright .break {
          display: inline; } }
    .footer__copyright span {
      display: block; }
      @media print, screen and (min-width: 40em) {
        .footer__copyright span {
          display: inline; } }
    .footer__copyright > div {
      width: 100%; }
    .footer__copyright p {
      color: #848284; }
    .footer__copyright-copy a {
      border-bottom: 1px solid transparent; }
      .footer__copyright-copy a:hover, .footer__copyright-copy a:active, .footer__copyright-copy a:focus {
        border-bottom: 1px solid currentColor; }
    @media print, screen and (min-width: 40em) {
      .footer__copyright-abn {
        text-align: right; } }
    .footer__copyright .cell:not(:last-of-type) {
      padding-bottom: 30px; }
      @media print, screen and (min-width: 40em) {
        .footer__copyright .cell:not(:last-of-type) {
          padding-bottom: 0; } }

/*# sourceMappingURL=app.css.map*/