/*
Added by Mitch, Box_sizing means that padding and border is included in the total height, eg if you say height:100px and add padding-top:20px, the height is still 100, with border-box
http://www.w3schools.com/cssref/css3_pr_box-sizing.asp
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; }

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.row {
  margin-left: 0;
  margin-right: 0; }
  .row:before, .row:after {
    content: "";
    display: table;
    clear: both; }

.col-1 {
  width: 8.33333%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-2 {
  width: 16.66667%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-3 {
  width: 25%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-4 {
  width: 33.33333%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-5 {
  width: 41.66667%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-6 {
  width: 50%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-7 {
  width: 58.33333%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-8 {
  width: 66.66667%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-9 {
  width: 75%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-10 {
  width: 83.33333%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-11 {
  width: 91.66667%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

.col-12 {
  width: 100%;
  min-height: 1px;
  float: left;
  position: relative;
  padding-left: 0;
  padding-right: 0; }

@media only screen and (max-width: 1200px) {
  .col-lg-1 {
    width: 8.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-2 {
    width: 16.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-3 {
    width: 25%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-4 {
    width: 33.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-5 {
    width: 41.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-6 {
    width: 50%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-7 {
    width: 58.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-8 {
    width: 66.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-9 {
    width: 75%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-10 {
    width: 83.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-11 {
    width: 91.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-lg-12 {
    width: 100%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; } }

@media only screen and (max-width: 1024px) {
  .col-md-1 {
    width: 8.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-2 {
    width: 16.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-3 {
    width: 25%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-4 {
    width: 33.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-5 {
    width: 41.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-6 {
    width: 50%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-7 {
    width: 58.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-8 {
    width: 66.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-9 {
    width: 75%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-10 {
    width: 83.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-11 {
    width: 91.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-md-12 {
    width: 100%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; } }

@media only screen and (max-width: 768px) {
  .col-sm-1 {
    width: 8.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-2 {
    width: 16.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-3 {
    width: 25%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-4 {
    width: 33.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-5 {
    width: 41.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-6 {
    width: 50%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-7 {
    width: 58.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-8 {
    width: 66.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-9 {
    width: 75%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-10 {
    width: 83.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-11 {
    width: 91.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-sm-12 {
    width: 100%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; } }

@media only screen and (max-width: 480px) {
  .col-xs-1 {
    width: 8.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-2 {
    width: 16.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-3 {
    width: 25%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-4 {
    width: 33.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-5 {
    width: 41.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-6 {
    width: 50%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-7 {
    width: 58.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-8 {
    width: 66.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-9 {
    width: 75%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-10 {
    width: 83.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-11 {
    width: 91.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xs-12 {
    width: 100%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; } }

@media only screen and (max-width: 320px) {
  .col-xxs-1 {
    width: 8.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-2 {
    width: 16.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-3 {
    width: 25%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-4 {
    width: 33.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-5 {
    width: 41.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-6 {
    width: 50%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-7 {
    width: 58.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-8 {
    width: 66.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-9 {
    width: 75%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-10 {
    width: 83.33333%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-11 {
    width: 91.66667%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
  .col-xxs-12 {
    width: 100%;
    min-height: 1px;
    float: left;
    position: relative;
    padding-left: 0;
    padding-right: 0; } }

html {
  color: #1A1A1A; }

@media only screen and (min-width: 1025px) {
  html, body {
    height: 100%;
    overflow: auto; } }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

.svg-inject {
  display: none; }
  .svg-inject.injected-svg {
    display: inline; }

body.pageload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

.img-responsive {
  width: 100%;
  height: auto; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

#main {
  width: 100%;
  padding-left: 34%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s 0.15s ease;
  -moz-transition: all 0.3s 0.15s ease;
  -o-transition: all 0.3s 0.15s ease;
  transition: all 0.3s 0.15s ease; }
  @media only screen and (max-width: 1200px) {
    #main {
      padding-left: 40%; } }
  @media only screen and (max-width: 1024px) {
    #main {
      padding-left: 0;
      margin-top: 100px; } }
  @media only screen and (max-width: 480px) {
    #main {
      margin-top: 100px; } }

.xxs-visible-block {
  display: none; }
  @media only screen and (max-width: 320px) {
    .xxs-visible-block {
      display: block !important; } }

.xs-visible-block {
  display: none; }
  @media only screen and (min-width: 321px) and (max-width: 480px) {
    .xs-visible-block {
      display: block !important; } }

.sm-visible-block {
  display: none; }
  @media only screen and (min-width: 481px) and (max-width: 768px) {
    .sm-visible-block {
      display: block !important; } }

.md-visible-block {
  display: none; }
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .md-visible-block {
      display: block !important; } }

.lg-visible-block {
  display: none; }
  @media only screen and (min-width: 1025px) and (max-width: 1200px) {
    .lg-visible-block {
      display: block !important; } }

.xl-visible-block {
  display: none; }
  @media only screen and (min-width: 1201px) {
    .xl-visible-block {
      display: block !important; } }

@font-face {
  font-family: GT-Walsheim;
  src: url("../fonts/GT-Walsheim-Bold.eot");
  src: url("../fonts/GT-Walsheim-Bold.otf") format("otf"), url("../fonts/GT-Walsheim-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: GT-Walsheim;
  src: url("../fonts/GT-Walsheim-Bold-Oblique.eot");
  src: url("../fonts/GT-Walsheim-Bold-Oblique.otf") format("otf"), url("../fonts/GT-Walsheim-Bold-Oblique.woff") format("woff");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: GT-Walsheim;
  src: url("../fonts/GT-Walsheim-Medium.eot");
  src: url("../fonts/GT-Walsheim-Medium.otf") format("otf"), url("../fonts/GT-Walsheim-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: GT-Walsheim;
  src: url("../fonts/GT-Walsheim-Medium-Oblique.eot");
  src: url("../fonts/GT-Walsheim-Medium-Oblique.otf") format("otf"), url("../fonts/GT-Walsheim-Medium-Oblique.woff") format("woff");
  font-weight: 500;
  font-style: italic; }

@font-face {
  font-family: GT-Walsheim;
  src: url("../fonts/GT-Walsheim-Regular.eot");
  src: url("../fonts/GT-Walsheim-Regular.otf") format("otf"), url("../fonts/GT-Walsheim-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: GT-Walsheim;
  src: url("../fonts/GT-Walsheim-Regular-oblique.eot");
  src: url("../fonts/GT-Walsheim-Regular-oblique.otf") format("otf"), url("../fonts/GT-Walsheim-Regular-oblique.woff") format("woff");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: LyonDisplay;
  src: url("../fonts/LyonDisplay-Regular.eot");
  src: url("../fonts/LyonDisplay-Regular.otf") format("otf"), url("../fonts/LyonDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: LyonText;
  src: url("../fonts/LyonText-Regular.eot");
  src: url("../fonts/LyonText-Regular.otf") format("otf"), url("../fonts/LyonText-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: LyonText;
  src: url("../fonts/LyonText-Regular-Italic.eot");
  src: url("../fonts/LyonText-Regular-Italic.otf") format("otf"), url("../fonts/LyonText-Regular-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic; }

.tabs {
  border-bottom: 1px solid #F85309;
  margin-bottom: 15px; }
  .tabs .tabs-inner {
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
    @media only screen and (max-width: 480px) {
      .tabs .tabs-inner {
        margin-left: -43px;
        margin-right: -43px;
        padding-left: 43px;
        padding-right: 43px; } }
    .tabs .tabs-inner ul {
      width: auto;
      display: inline-block;
      white-space: nowrap;
      font-size: 0; }
      .tabs .tabs-inner ul li {
        font-family: LyonText;
        font-weight: normal;
        font-style: normal;
        font-size: 16px;
        display: inline-block;
        margin-right: 15px;
        padding-top: 15px;
        padding-bottom: 15px;
        color: #C1C1C1;
        border-top: 3px solid #C1C1C1;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        cursor: pointer; }
        .tabs .tabs-inner ul li:last-child {
          margin-right: 0; }
        .tabs .tabs-inner ul li:hover, .tabs .tabs-inner ul li.tab-active {
          color: #F85309;
          border-top: 3px solid #F85309; }

.tabs-slide-container {
  position: relative; }
  .tabs-slide-container .tab-slide {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s, max-height 0s 0.3s;
    -moz-transition: all 0.3s, max-height 0s 0.3s;
    -o-transition: all 0.3s, max-height 0s 0.3s;
    transition: all 0.3s, max-height 0s 0.3s; }
    .tabs-slide-container .tab-slide.tab-slide-active {
      max-height: 100%;
      -webkit-transition-delay: 0.3s;
      -moz-transition-delay: 0.3s;
      -o-transition-delay: 0.3s;
      transition-delay: 0.3s;
      opacity: 1; }

.hamburger-menu-icon {
  width: 30px;
  height: 21px;
  position: relative;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out; }
  .hamburger-menu-icon.open.hamburger-menu-icon {
    width: 42px;
    -webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s; }
  .hamburger-menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #F85309;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center; }
    :hover.hamburger-menu-icon span {
      background: #1A1A1A; }
    .hamburger-menu-icon span:nth-child(1) {
      top: 0;
      z-index: 2; }
      .open.hamburger-menu-icon span:nth-child(1) {
        top: -3px;
        left: 0;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg); }
        .open.hamburger-menu-icon span:nth-child(1):after {
          content: "";
          background-color: #fef5eb;
          height: 4px;
          width: 100%;
          position: absolute;
          top: 3px; }
    .hamburger-menu-icon span:nth-child(2) {
      top: 9px; }
      .open.hamburger-menu-icon span:nth-child(2) {
        opacity: 0;
        left: 100%; }
    .hamburger-menu-icon span:nth-child(3) {
      top: 18px;
      z-index: 1; }
      .open.hamburger-menu-icon span:nth-child(3) {
        top: 27px;
        left: 0;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }

.header {
  background: #FEF5EB;
  color: #F85309;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 34%;
  padding: 45px;
  z-index: 3;
  -webkit-transition: all 0.3s 0.15s ease;
  -moz-transition: all 0.3s 0.15s ease;
  -o-transition: all 0.3s 0.15s ease;
  transition: all 0.3s 0.15s ease; }
  @media only screen and (max-width: 1200px) {
    .header {
      width: 40%; } }
  @media only screen and (max-width: 1024px) {
    .header {
      width: 100%;
      top: 0;
      left: 0;
      height: 100px; } }
  @media only screen and (max-width: 768px) {
    .header {
      width: 100%;
      top: 0;
      left: 0;
      height: 100px; } }
  .header .header-main {
    position: absolute;
    width: 100%;
    padding: 45px;
    top: 0;
    left: 0;
    z-index: 3;
    -webkit-transition: all 0.3s 0.15s ease;
    -moz-transition: all 0.3s 0.15s ease;
    -o-transition: all 0.3s 0.15s ease;
    transition: all 0.3s 0.15s ease; }
    @media only screen and (max-width: 1024px) {
      .header .header-main {
        width: 100%;
        padding: 14px 14px; } }
    @media only screen and (max-width: 480px) {
      .header .header-main {
        padding: 25px 34px; } }
    .header .header-main .hamburger-menu-icon {
      position: absolute;
      top: 30px;
      right: 0; }
      @media only screen and (max-width: 1024px) {
        .header .header-main .hamburger-menu-icon {
          top: 24px; } }
      @media only screen and (max-width: 480px) {
        .header .header-main .hamburger-menu-icon {
          top: 14px; } }
    .header .header-main .header-logo {
      position: relative;
      -webkit-transition: all 0.3s 0.15s ease;
      -moz-transition: all 0.3s 0.15s ease;
      -o-transition: all 0.3s 0.15s ease;
      transition: all 0.3s 0.15s ease; }
      .header .header-main .header-logo img {
        width: 80px;
        -webkit-transition: all 0.3s 0.15s ease;
        -moz-transition: all 0.3s 0.15s ease;
        -o-transition: all 0.3s 0.15s ease;
        transition: all 0.3s 0.15s ease; }
        @media only screen and (max-width: 1024px) {
          .header .header-main .header-logo img {
            width: 72px; } }
        @media only screen and (max-width: 480px) {
          .header .header-main .header-logo img {
            width: 50px; } }
  .header .header-menu {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    background-color: #FEF5EB;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; }
    .open.header .header-menu {
      opacity: 1;
      visibility: visible; }
    @media only screen and (max-width: 1024px) {
      .header .header-menu {
        height: 100vh;
        width: 100vw; } }
    .header .header-menu .header-menu-align {
      display: table-cell;
      vertical-align: middle;
      padding: 0 30px;
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px; }
      .header .header-menu .header-menu-align ul {
        width: 100%;
        max-width: 290px;
        margin: 0 auto;
        padding-left: 14px;
        padding-right: 14px; }
        @media only screen and (max-width: 1024px) {
          .header .header-menu .header-menu-align ul {
            margin-left: 40px; } }
        @media only screen and (max-width: 480px) {
          .header .header-menu .header-menu-align ul {
            margin-left: auto; } }
        .header .header-menu .header-menu-align ul li {
          opacity: 0;
          -webkit-transition: all 0.4s 0s;
          -moz-transition: all 0.4s 0s;
          -o-transition: all 0.4s 0s;
          transition: all 0.4s 0s;
          padding-bottom: 5px; }
          .open.header .header-menu .header-menu-align ul li {
            opacity: 1; }
            .open.header .header-menu .header-menu-align ul li:nth-child(1) {
              transition-delay: 0s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(2) {
              transition-delay: 0.1s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(3) {
              transition-delay: 0.2s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(4) {
              transition-delay: 0.3s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(5) {
              transition-delay: 0.4s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(6) {
              transition-delay: 0.5s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(7) {
              transition-delay: 0.6s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(8) {
              transition-delay: 0.7s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(9) {
              transition-delay: 0.8s; }
            .open.header .header-menu .header-menu-align ul li:nth-child(10) {
              transition-delay: 0.9s; }
          .header .header-menu .header-menu-align ul li a {
            text-decoration: none;
            color: #F85309;
            -webkit-transition: color 0.3s;
            -moz-transition: color 0.3s;
            -o-transition: color 0.3s;
            transition: color 0.3s; }
            .header .header-menu .header-menu-align ul li a:hover {
              color: #1A1A1A; }
          .header .header-menu .header-menu-align ul li.current_page_item a {
            color: #1A1A1A; }
          .contact-us-open.header .header-menu .header-menu-align ul li.current_page_item a {
            color: #F85309; }
          .contact-us-open.header .header-menu .header-menu-align ul li.show-contact-us a {
            color: #1A1A1A; }
      .header .header-menu .header-menu-align .header-menu-bottom {
        bottom: -2px;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 5;
        padding: 45px;
        visibility: hidden;
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px; }
        @media only screen and (max-width: 1024px) {
          .header .header-menu .header-menu-align .header-menu-bottom {
            position: relative;
            padding: 0;
            top: 85px; }
            .open.header .header-menu .header-menu-align .header-menu-bottom {
              opacity: 1;
              visibility: visible; } }
        @media only screen and (max-width: 480px) {
          .header .header-menu .header-menu-align .header-menu-bottom {
            position: absolute;
            padding: 45px 30px;
            top: auto; } }
        .header .header-menu .header-menu-align .header-menu-bottom .header-menu-bottom-wordmark {
          width: 100%;
          max-width: 290px;
          margin: 0 auto;
          padding-left: 14px;
          padding-right: 14px; }
          @media only screen and (max-width: 1024px) {
            .header .header-menu .header-menu-align .header-menu-bottom .header-menu-bottom-wordmark {
              margin-left: 40px; } }
          @media only screen and (max-width: 480px) {
            .header .header-menu .header-menu-align .header-menu-bottom .header-menu-bottom-wordmark {
              margin-left: auto; } }
  .header .header-bottom {
    bottom: 10px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 5;
    padding: 45px;
    visibility: visible;
    font-family: GT-Walsheim;
    font-weight: bold;
    font-style: normal;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all 0.3s 0.15s ease, opacity 0.3s 0.3s ease;
    -moz-transition: all 0.3s 0.15s ease, opacity 0.3s 0.3s ease;
    -o-transition: all 0.3s 0.15s ease, opacity 0.3s 0.3s ease;
    transition: all 0.3s 0.15s ease, opacity 0.3s 0.3s ease; }
    @media only screen and (max-width: 1024px) {
      .header .header-bottom {
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s 0.15s ease, opacity 0.15s 0s ease;
        -moz-transition: all 0.3s 0.15s ease, opacity 0.15s 0s ease;
        -o-transition: all 0.3s 0.15s ease, opacity 0.15s 0s ease;
        transition: all 0.3s 0.15s ease, opacity 0.15s 0s ease; } }
    .header .header-bottom .header-bottom-wordmark {
      width: 100%;
      max-width: 290px;
      margin: 0 auto;
      padding-left: 14px;
      padding-right: 14px; }

.header-content {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  visibility: visible;
  z-index: 1;
  -webkit-transition: all 0.3s 0.15s ease, opacity 0.3s 0.3s ease;
  -moz-transition: all 0.3s 0.15s ease, opacity 0.3s 0.3s ease;
  -o-transition: all 0.3s 0.15s ease, opacity 0.3s 0.3s ease;
  transition: all 0.3s 0.15s ease, opacity 0.3s 0.3s ease; }
  .header-content .header-content-align {
    display: table-cell;
    vertical-align: middle;
    padding: 0 30px; }
    .header-content .header-content-align .header-content-text {
      width: 100%;
      max-width: 290px;
      margin: 0 auto;
      padding-left: 14px;
      padding-right: 14px; }
      .header-content .header-content-align .header-content-text .header-content-text-large {
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 28px;
        line-height: 38px;
        color: #F85309; }
      .header-content .header-content-align .header-content-text .header-content-text-normal {
        font-family: LyonText;
        font-weight: normal;
        font-style: normal;
        font-size: 16px;
        font-size: 18px;
        line-height: 26px;
        color: #1A1A1A; }
      .header-content .header-content-align .header-content-text .header-content-text-normal-italic {
        font-family: LyonText;
        font-weight: normal;
        font-style: italic;
        font-size: 16px;
        font-size: 18px;
        line-height: 26px;
        color: #1A1A1A; }
  @media only screen and (max-width: 1024px) {
    .header-content {
      -webkit-transition: all 0.3s 0.15s ease, opacity 0.15s 0s ease;
      -moz-transition: all 0.3s 0.15s ease, opacity 0.15s 0s ease;
      -o-transition: all 0.3s 0.15s ease, opacity 0.15s 0s ease;
      transition: all 0.3s 0.15s ease, opacity 0.15s 0s ease;
      visibility: hidden;
      opacity: 0; } }

.header-nav {
  display: none;
  padding-top: 45px; }
  .header-nav .header-nav-prev {
    text-decoration: none;
    display: inline-block;
    height: 55px; }
    .header-nav .header-nav-prev path {
      -webkit-transition: fill 0.3s;
      -moz-transition: fill 0.3s;
      -o-transition: fill 0.3s;
      transition: fill 0.3s;
      fill: #F85309; }
    .header-nav .header-nav-prev .header-nav-text {
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s;
      font-family: GT-Walsheim;
      font-weight: 500;
      font-style: normal;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: block;
      padding-top: 10px;
      color: #F85309; }
    .header-nav .header-nav-prev.header-nav-disabled {
      cursor: default; }
      .header-nav .header-nav-prev.header-nav-disabled path {
        fill: #C1C1C1; }
      .header-nav .header-nav-prev.header-nav-disabled:hover path {
        fill: #C1C1C1; }
      .header-nav .header-nav-prev.header-nav-disabled:hover .header-nav-text {
        color: #C1C1C1; }
      .header-nav .header-nav-prev.header-nav-disabled .header-nav-text {
        color: #C1C1C1; }
    .header-nav .header-nav-prev:hover path {
      fill: #1A1A1A; }
    .header-nav .header-nav-prev:hover .header-nav-text {
      color: #1A1A1A; }
  .header-nav .header-nav-next {
    text-decoration: none;
    display: inline-block;
    height: 55px;
    padding-left: 50px; }
    .header-nav .header-nav-next path {
      -webkit-transition: fill 0.3s;
      -moz-transition: fill 0.3s;
      -o-transition: fill 0.3s;
      transition: fill 0.3s;
      fill: #F85309; }
    .header-nav .header-nav-next .header-nav-text {
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s;
      font-family: GT-Walsheim;
      font-weight: 500;
      font-style: normal;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: block;
      padding-top: 10px;
      color: #F85309; }
    .header-nav .header-nav-next.header-nav-disabled {
      cursor: default; }
      .header-nav .header-nav-next.header-nav-disabled path {
        fill: #C1C1C1; }
      .header-nav .header-nav-next.header-nav-disabled:hover path {
        fill: #C1C1C1; }
      .header-nav .header-nav-next.header-nav-disabled:hover .header-nav-text {
        color: #C1C1C1; }
      .header-nav .header-nav-next.header-nav-disabled .header-nav-text {
        color: #C1C1C1; }
    .header-nav .header-nav-next:hover path {
      fill: #1A1A1A; }
    .header-nav .header-nav-next:hover .header-nav-text {
      color: #1A1A1A; }

.footer {
  margin-top: 80px;
  margin-bottom: 80px; }
  @media only screen and (max-width: 480px) {
    .footer {
      margin-top: 40px;
      margin-bottom: 40px; } }
  .footer .footer-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .footer .footer-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    @media only screen and (max-width: 320px) {
      .footer .footer-inner .footer-social-container {
        text-align: center; } }
    .footer .footer-inner .footer-social-container .footer-social {
      text-decoration: none;
      padding-right: 18px; }
      .footer .footer-inner .footer-social-container .footer-social path, .footer .footer-inner .footer-social-container .footer-social circle {
        -webkit-transition: fill 0.3s;
        -moz-transition: fill 0.3s;
        -o-transition: fill 0.3s;
        transition: fill 0.3s;
        fill: #F85309; }
      .footer .footer-inner .footer-social-container .footer-social:last-child {
        padding-right: 0; }
      .footer .footer-inner .footer-social-container .footer-social:hover path, .footer .footer-inner .footer-social-container .footer-social:hover circle {
        fill: #C1C1C1; }
    .footer .footer-inner .footer-details {
      text-align: right; }
      @media only screen and (max-width: 480px) {
        .footer .footer-inner .footer-details {
          margin-top: 30px; } }
      .footer .footer-inner .footer-details .footer-copyright {
        font-family: GT-Walsheim;
        font-weight: 500;
        font-style: normal;
        font-size: 11px; }
        @media only screen and (max-width: 480px) {
          .footer .footer-inner .footer-details .footer-copyright {
            float: left; } }
        @media only screen and (max-width: 320px) {
          .footer .footer-inner .footer-details .footer-copyright {
            float: none;
            text-align: center;
            display: block; } }
      .footer .footer-inner .footer-details .footer-site-by {
        color: #C1C1C1;
        font-family: GT-Walsheim;
        font-weight: 500;
        font-style: normal;
        font-size: 11px;
        padding-left: 10px; }
        .footer .footer-inner .footer-details .footer-site-by a {
          color: #C1C1C1;
          -webkit-transition: color 0.3s;
          -moz-transition: color 0.3s;
          -o-transition: color 0.3s;
          transition: color 0.3s; }
          .footer .footer-inner .footer-details .footer-site-by a:hover {
            color: #F85309; }
        @media only screen and (max-width: 480px) {
          .footer .footer-inner .footer-details .footer-site-by {
            float: right; } }
        @media only screen and (max-width: 320px) {
          .footer .footer-inner .footer-details .footer-site-by {
            float: none;
            text-align: center;
            margin-top: 10px;
            display: block; } }

.full-screen-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .full-screen-container #big-video-wrap {
    position: absolute; }
  .full-screen-container .vjs-control-bar, .full-screen-container .vjs-caption-settings, .full-screen-container .vjs-error-display, .full-screen-container .vjs-big-play-button, .full-screen-container .vjs-loading-spinner {
    display: none !important; }
  @media only screen and (max-width: 1024px) {
    .full-screen-container {
      height: calc(100vh - 100px); } }
  @media only screen and (max-width: 480px) {
    .full-screen-container {
      height: calc(100vh - 100px); } }

.work-tile {
  height: 100%;
  width: 100%; }
  .work-tile .work-tile-wrapper {
    padding-bottom: 70%;
    top: 0;
    left: 0;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block; }
    @media only screen and (max-width: 1200px) {
      .work-tile .work-tile-wrapper {
        padding-bottom: 90%; } }
    @media only screen and (max-width: 1024px) {
      .work-tile .work-tile-wrapper {
        padding-bottom: 95%; } }
    @media only screen and (max-width: 768px) {
      .work-tile .work-tile-wrapper {
        padding-bottom: 100%; } }
    @media only screen and (max-width: 480px) {
      .work-tile .work-tile-wrapper {
        padding-bottom: 110%; } }
  .work-tile .work-tile-title {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    border-radius: 50%;
    background-color: #FFFFFF;
    height: 245px;
    width: 245px;
    display: table;
    table-layout: fixed;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    @media only screen and (min-width: 769px) {
      :hover.work-tile .work-tile-title {
        background-color: #F85309; } }
    @media only screen and (max-width: 1200px) {
      .work-tile .work-tile-title {
        height: 200px;
        width: 200px; } }
    @media only screen and (max-width: 480px) {
      .work-tile .work-tile-title {
        height: 224px;
        width: 224px; } }
    .work-tile .work-tile-title .work-tile-title-text {
      display: table-cell;
      vertical-align: middle;
      text-align: center;
      font-family: LyonText;
      font-weight: normal;
      font-style: normal;
      font-size: 20px;
      line-height: 30px;
      color: #1A1A1A;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
      @media only screen and (min-width: 769px) {
        :hover.work-tile .work-tile-title .work-tile-title-text {
          color: #FFFFFF; } }

.carousel .carousel-nav {
  text-align: center; }
  .carousel .carousel-nav .carousel-nav-prev {
    text-decoration: none; }
    .carousel .carousel-nav .carousel-nav-prev path {
      -webkit-transition: fill 0.3s;
      -moz-transition: fill 0.3s;
      -o-transition: fill 0.3s;
      transition: fill 0.3s;
      fill: #F85309; }
    .carousel .carousel-nav .carousel-nav-prev.carousel-nav-disabled {
      cursor: default; }
      .carousel .carousel-nav .carousel-nav-prev.carousel-nav-disabled path {
        fill: #C1C1C1; }
      .carousel .carousel-nav .carousel-nav-prev.carousel-nav-disabled:hover path {
        fill: #C1C1C1; }
    .carousel .carousel-nav .carousel-nav-prev:hover path {
      fill: #1A1A1A; }
  .carousel .carousel-nav .carousel-nav-next {
    text-decoration: none; }
    .carousel .carousel-nav .carousel-nav-next path {
      -webkit-transition: fill 0.3s;
      -moz-transition: fill 0.3s;
      -o-transition: fill 0.3s;
      transition: fill 0.3s;
      fill: #F85309; }
    .carousel .carousel-nav .carousel-nav-next.carousel-nav-disabled {
      cursor: default; }
      .carousel .carousel-nav .carousel-nav-next.carousel-nav-disabled path {
        fill: #C1C1C1; }
      .carousel .carousel-nav .carousel-nav-next.carousel-nav-disabled:hover path {
        fill: #C1C1C1; }
    .carousel .carousel-nav .carousel-nav-next:hover path {
      fill: #1A1A1A; }
  .carousel .carousel-nav .carousel-nav-count {
    width: 90px;
    text-align: center;
    top: -7px;
    position: relative;
    display: inline-block;
    font-family: GT-Walsheim;
    font-weight: 500;
    font-style: normal;
    font-size: 11px;
    color: #F85309; }

.carousel .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .carousel .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #C1C1C1;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
    .carousel .owl-dots .owl-dot.active span, .carousel .owl-dots .owl-dot:hover span {
      background: #F85309; }

.your-story-tile {
  height: 100%;
  width: 100%; }
  .your-story-tile .your-story-tile-wrapper {
    padding-bottom: 70%;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    background-color: #E3F1FF; }
    @media only screen and (max-width: 1200px) {
      .your-story-tile .your-story-tile-wrapper {
        padding-bottom: 90%; } }
    @media only screen and (max-width: 1024px) {
      .your-story-tile .your-story-tile-wrapper {
        padding-bottom: 95%; } }
    @media only screen and (max-width: 768px) {
      .your-story-tile .your-story-tile-wrapper {
        padding-bottom: 100%; } }
    @media only screen and (max-width: 480px) {
      .your-story-tile .your-story-tile-wrapper {
        padding-bottom: 110%; } }
  .your-story-tile .your-story-tile-title {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    display: table;
    table-layout: fixed;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .your-story-tile .your-story-tile-title .your-story-tile-title-text {
      display: table-cell;
      vertical-align: middle;
      text-align: right;
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px;
      color: #F85309;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
      .your-story-tile .your-story-tile-title .your-story-tile-title-text a {
        color: #F85309;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s; }
        .your-story-tile .your-story-tile-title .your-story-tile-title-text a:hover {
          color: #1A1A1A; }

.contact-us-button {
  position: fixed;
  right: 0;
  top: 150px;
  cursor: pointer;
  height: 40px;
  width: 72px;
  display: block;
  border-bottom: 3px solid #1A1A1A;
  z-index: 2;
  -webkit-transition: border 0.3s;
  -moz-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s; }
  .contact-us-button:hover {
    border-bottom-color: #C1C1C1; }
  @media only screen and (max-width: 1024px) {
    .contact-us-button {
      width: 64px; } }
  @media only screen and (max-width: 768px) {
    .contact-us-button {
      -webkit-transition: all 0s 0;
      -moz-transition: all 0s 0;
      -o-transition: all 0s 0;
      transition: all 0s 0;
      opacity: 0;
      visibility: hidden; } }
  .contact-us-button .contact-us-button-container .contact-us-button-open {
    position: absolute;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .open.contact-us-button .contact-us-button-container .contact-us-button-open {
      opacity: 0;
      visibility: hidden; }
    .contact-us-button .contact-us-button-container .contact-us-button-open path {
      -webkit-transition: fill 0.3s;
      -moz-transition: fill 0.3s;
      -o-transition: fill 0.3s;
      transition: fill 0.3s;
      fill: #1A1A1A; }
      :hover.contact-us-button .contact-us-button-container .contact-us-button-open path {
        fill: #C1C1C1; }
    .contact-us-button .contact-us-button-container .contact-us-button-open circle {
      -webkit-transition: fill 0.3s;
      -moz-transition: fill 0.3s;
      -o-transition: fill 0.3s;
      transition: fill 0.3s;
      fill: #1A1A1A; }
      :hover.contact-us-button .contact-us-button-container .contact-us-button-open circle {
        fill: #C1C1C1; }
  .contact-us-button .contact-us-button-container .contact-us-button-close {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .open.contact-us-button .contact-us-button-container .contact-us-button-close {
      opacity: 1;
      visibility: visible; }
    .contact-us-button .contact-us-button-container .contact-us-button-close path {
      -webkit-transition: fill 0.3s;
      -moz-transition: fill 0.3s;
      -o-transition: fill 0.3s;
      transition: fill 0.3s;
      fill: #1A1A1A; }
      :hover.contact-us-button .contact-us-button-container .contact-us-button-close path {
        fill: #C1C1C1; }
    .contact-us-button .contact-us-button-container .contact-us-button-close circle {
      -webkit-transition: fill 0.3s;
      -moz-transition: fill 0.3s;
      -o-transition: fill 0.3s;
      transition: fill 0.3s;
      fill: #1A1A1A; }
      :hover.contact-us-button .contact-us-button-container .contact-us-button-close circle {
        fill: #C1C1C1; }

.contact-us {
  height: 100vh;
  width: 66%;
  position: fixed;
  left: 100%;
  top: 0;
  background-color: #FFFFFF;
  z-index: 1;
  -webkit-transition: left 0.3s 0.15s ease;
  -moz-transition: left 0.3s 0.15s ease;
  -o-transition: left 0.3s 0.15s ease;
  transition: left 0.3s 0.15s ease; }
  @media only screen and (max-width: 1024px) {
    .contact-us {
      width: 100%;
      padding-top: 100px; } }
  @media only screen and (max-width: 480px) {
    .contact-us {
      width: 100%;
      padding-top: 100px; } }
  .contact-us.open {
    left: 34%; }
    @media only screen and (max-width: 1200px) {
      .contact-us.open {
        left: 40%; } }
    @media only screen and (max-width: 1024px) {
      .contact-us.open {
        left: 0; } }
  .contact-us .contact-us-inner {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch; }
    .contact-us .contact-us-inner .contact-us-details {
      height: 60vh;
      min-height: 416px;
      padding-top: 80px;
      padding-bottom: 80px;
      display: inline;}
      @media only screen and (max-width: 480px) {
        .contact-us .contact-us-inner .contact-us-details {
          padding-top: 40px;
          padding-bottom: 40px; } }
      @media only screen and (max-width: 480px) {
        .contact-us .contact-us-inner .contact-us-details {
          height: auto; } }
      .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner {
        width: 100%;
        max-width: 762px;
        margin: 0 auto;
        padding-left: 14px;
        padding-right: 14px; }
        @media only screen and (max-width: 480px) {
          .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner {
            padding-left: 43px;
            padding-right: 43px; } }
        .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-lets-talk {
          margin-bottom: 56px;
          padding-top:110px;}
          @media only screen and (max-width: 480px) {
            .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-lets-talk {
              margin-bottom: 30px; } }
          .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-lets-talk .contact-us-lets-talk-title {
            color: #F85309;
            font-family: GT-Walsheim;
            font-weight: bold;
            font-style: normal;
            font-size: 40px; }
            @media only screen and (max-width: 480px) {
              .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-lets-talk .contact-us-lets-talk-title {
                font-family: GT-Walsheim;
                font-weight: bold;
                font-style: normal;
                font-size: 32px;
                line-height: 42px; } }
          .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-lets-talk .contact-us-lets-talk-blurb {
            color: #1A1A1A;
            padding-top: 7px;
            font-family: LyonText;
            font-weight: normal;
            font-style: normal;
            font-size: 20px;
            line-height: 30px; }
            @media only screen and (max-width: 480px) {
              .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-lets-talk .contact-us-lets-talk-blurb {
                font-family: LyonText;
                font-weight: normal;
                font-style: normal;
                font-size: 20px;
                line-height: 30px; } }
        .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-detail {
          font-family: GT-Walsheim;
          font-weight: 500;
          font-style: normal;
          font-size: 14px;
          line-height: 24px;
          padding-top: 24px;}
          @media only screen and (max-width: 480px) {
            .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-detail {
              margin-top: 30px; }
              .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-detail:first-child {
                margin-top: 0; } }
          .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-detail a {
            color: #1A1A1A;
            -webkit-transition: color 0.3s;
            -moz-transition: color 0.3s;
            -o-transition: color 0.3s;
            transition: color 0.3s;
            text-decoration: none; }
            .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-detail a:hover {
              color: #F85309; }
          .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-detail .contact-us-detail-icon {
            margin-bottom: 18px; }
            .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-detail .contact-us-detail-icon path {
              fill: #F85309; }
            @media only screen and (max-width: 480px) {
              .contact-us .contact-us-inner .contact-us-details .contact-us-details-inner .contact-us-detail .contact-us-detail-icon {
                margin-bottom: 10px; } }
    .contact-us .contact-us-inner .contact-us-map {
      height: 40vh;
      min-height: 416px;
      background-color: #F85309;
      margin-top:40px;}
      @media only screen and (max-width: 480px) {
        .contact-us .contact-us-inner .contact-us-map {
          height: auto;
          min-height: 316px; } }

.callout-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F85309;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  font-family: GT-Walsheim;
  font-weight: bold;
  font-style: normal;
  font-size: 28px;
  line-height: 38px; }
  @media only screen and (max-width: 480px) {
    .callout-section {
      padding-top: 40px;
      padding-bottom: 40px;
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 22px;
      line-height: 28px; } }
  .callout-section.callout-section-white {
    background-color: #FFFFFF;
    color: #1A1A1A; }
  .callout-section.callout-section-baby-blue {
    background-color: #E3F1FF;
    color: #1A1A1A; }
  .callout-section .callout-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .callout-section .callout-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .callout-section .callout-section-inner .callout-section-blurb-spacing {
      margin-bottom: 40px; }
    .callout-section .callout-section-inner .callout-section-icon {
      margin-bottom: 40px;
      text-align: center; }
      @media only screen and (max-width: 480px) {
        .callout-section .callout-section-inner .callout-section-icon {
          margin-bottom: 25px; } }
      .callout-section .callout-section-inner .callout-section-icon path {
        fill: #FFFFFF; }
      .callout-section .callout-section-inner .callout-section-icon.callout-section-icon-brand path {
        fill: #F85309; }
    .callout-section .callout-section-inner .callout-section-quote {
      font-family: LyonText;
      font-weight: normal;
      font-style: italic;
      font-size: 16px; }
    .callout-section .callout-section-inner .callout-section-review-who {
      text-align: center; }
      .callout-section .callout-section-inner .callout-section-review-who .callout-section-review-who-name {
        font-family: LyonText;
        font-weight: normal;
        font-style: normal;
        font-size: 20px;
        line-height: 30px; }
        @media only screen and (max-width: 480px) {
          .callout-section .callout-section-inner .callout-section-review-who .callout-section-review-who-name {
            font-family: LyonText;
            font-weight: normal;
            font-style: normal;
            font-size: 20px;
            line-height: 30px;
            display: block;
            text-align: center;
            padding-bottom: 5px; } }
      .callout-section .callout-section-inner .callout-section-review-who .callout-section-review-who-role {
        padding-left: 10px;
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 18px; }
        @media only screen and (max-width: 480px) {
          .callout-section .callout-section-inner .callout-section-review-who .callout-section-review-who-role {
            display: block;
            text-align: center; } }
    .callout-section .callout-section-inner a {
      text-decoration: underline;
      color: #FFFFFF;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .callout-section .callout-section-inner a:hover {
        color: #1A1A1A; }
      .callout-section-baby-blue.callout-section .callout-section-inner a {
        color: #1A1A1A;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s; }
        .callout-section-baby-blue.callout-section .callout-section-inner a:hover {
          color: #F85309; }
      .callout-section-white.callout-section .callout-section-inner a {
        color: #1A1A1A;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s; }
        .callout-section-white.callout-section .callout-section-inner a:hover {
          color: #C1C1C1; }
  .callout-section .callout-section-line {
    height: 80px;
    width: 1px;
    background-color: #1A1A1A;
    margin: 0 auto;
    bottom: -40px;
    left: 50%;
    position: absolute; }
    @media only screen and (max-width: 480px) {
      .callout-section .callout-section-line {
        height: 40px;
        bottom: -20px; } }

.our-clients-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #FFFFFF;
  color: #FFFFFF; }
  @media only screen and (max-width: 480px) {
    .our-clients-section {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .our-clients-section .our-clients-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .our-clients-section .our-clients-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .our-clients-section .our-clients-section-inner .our-clients-section-title {
      text-align: center;
      margin-bottom: 80px;
      color: #F85309;
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px; }
      @media only screen and (max-width: 480px) {
        .our-clients-section .our-clients-section-inner .our-clients-section-title {
          font-family: GT-Walsheim;
          font-weight: bold;
          font-style: normal;
          font-size: 28px;
          line-height: 30px;
          margin-bottom: 40px; } }

.testimonials-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #E3F1FF; }
  @media only screen and (max-width: 480px) {
    .testimonials-section {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .testimonials-section .testimonials-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .testimonials-section .testimonials-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .testimonials-section .testimonials-section-inner .tabs {
      margin-bottom: 0; }
      .testimonials-section .testimonials-section-inner .tabs li {
        color: #55ABFF;
        border-top-color: #55ABFF; }
    .testimonials-section .testimonials-section-inner .testimonials-section-title {
      text-align: center;
      margin-bottom: 80px;
      color: #F85309;
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px; }
      @media only screen and (max-width: 480px) {
        .testimonials-section .testimonials-section-inner .testimonials-section-title {
          font-family: GT-Walsheim;
          font-weight: bold;
          font-style: normal;
          font-size: 28px;
          line-height: 30px;
          margin-bottom: 40px; } }
    .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-blurb {
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px;
      text-align: center;
      padding-top: 40px;
      padding-bottom: 40px;
      color: #1A1A1A; }
      .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-blurb a {
        color: #1A1A1A;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s; }
        .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-blurb a:hover {
          color: #F85309; }
      @media only screen and (max-width: 480px) {
        .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-blurb {
          font-family: GT-Walsheim;
          font-weight: bold;
          font-style: normal;
          font-size: 22px;
          line-height: 28px; } }
    .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-who {
      text-align: center; }
      .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-who .testimonials-section-slide-who-name {
        font-family: LyonText;
        font-weight: normal;
        font-style: normal;
        font-size: 20px;
        line-height: 30px;
        color: #F85309; }
        @media only screen and (max-width: 480px) {
          .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-who .testimonials-section-slide-who-name {
            font-family: LyonText;
            font-weight: normal;
            font-style: normal;
            font-size: 20px;
            line-height: 30px;
            display: block;
            text-align: center;
            padding-bottom: 5px; } }
      .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-who .testimonials-section-slide-who-role {
        padding-left: 10px;
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #F85309; }
        @media only screen and (max-width: 480px) {
          .testimonials-section .testimonials-section-inner .testimonials-section-slide .testimonials-section-slide-who .testimonials-section-slide-who-role {
            display: block;
            text-align: center; } }

.recent-work-section .recent-work-section-inner {
  width: 100%;
  max-width: 762px;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px; }
  @media only screen and (max-width: 480px) {
    .recent-work-section .recent-work-section-inner {
      padding-left: 43px;
      padding-right: 43px; } }
  .recent-work-section .recent-work-section-inner .recent-work-section-title {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    color: #F85309;
    font-family: GT-Walsheim;
    font-weight: bold;
    font-style: normal;
    font-size: 28px;
    line-height: 38px; }
    @media only screen and (max-width: 480px) {
      .recent-work-section .recent-work-section-inner .recent-work-section-title {
        padding-top: 40px;
        padding-bottom: 40px;
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 28px;
        line-height: 30px; } }

.instagram-section .instagram-section-inner {
  width: 100%;
  max-width: 762px;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px; }
  @media only screen and (max-width: 480px) {
    .instagram-section .instagram-section-inner {
      padding-left: 43px;
      padding-right: 43px; } }
  .instagram-section .instagram-section-inner .instagram-section-title {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #F85309;
    font-family: GT-Walsheim;
    font-weight: bold;
    font-style: normal;
    font-size: 28px;
    line-height: 38px; }
    @media only screen and (max-width: 480px) {
      .instagram-section .instagram-section-inner .instagram-section-title {
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 28px;
        line-height: 30px;
        padding-top: 40px;
        padding-bottom: 40px; } }
  .instagram-section .instagram-section-inner .instagram-section-container #sb_instagram {
    padding-bottom: 0 !important; }
  @media only screen and (max-width: 480px) {
    .instagram-section .instagram-section-inner .instagram-section-container {
      margin-left: -43px;
      margin-right: -43px;
      overflow: auto;
      -webkit-overflow-scrolling: touch; }
      .instagram-section .instagram-section-inner .instagram-section-container #sb_instagram #sbi_images {
        padding-left: 43px !important;
        padding-right: 43px !important;
        width: auto;
        white-space: nowrap; }
        .instagram-section .instagram-section-inner .instagram-section-container #sb_instagram #sbi_images .sbi_item {
          padding: 0px 7px !important;
          width: 270px !important; }
          .instagram-section .instagram-section-inner .instagram-section-container #sb_instagram #sbi_images .sbi_item .sbi_photo {
            height: 270px !important; } }

.hero-container {
  width: 100%;
  height: 648px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }
  @media only screen and (max-width: 1024px) {
    .hero-container {
      height: 480px; } }
  @media only screen and (max-width: 480px) {
    .hero-container {
      height: 260px; } }

.ask-away-section {
  padding-top: 80px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 480px) {
    .ask-away-section {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .ask-away-section .ask-away-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .ask-away-section .ask-away-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .ask-away-section .ask-away-section-inner .ask-away-section-title {
      margin-bottom: 80px;
      font-family: LyonText;
      font-weight: normal;
      font-style: normal;
      font-size: 20px;
      line-height: 30px;
      text-align: center;
      color: #F85309; }
      @media only screen and (max-width: 480px) {
        .ask-away-section .ask-away-section-inner .ask-away-section-title {
          margin-bottom: 40px;
          font-family: LyonText;
          font-weight: normal;
          font-style: normal;
          font-size: 18px;
          line-height: 28px; } }
    .ask-away-section .ask-away-section-inner .ask-away-section-tile {
      max-width: 415px;
      margin: 0 auto; }
      .ask-away-section .ask-away-section-inner .ask-away-section-tile .ask-away-section-tile-title {
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 28px;
        line-height: 38px;
        text-align: center;
        color: #F85309;
        margin-bottom: 10px; }
        @media only screen and (max-width: 480px) {
          .ask-away-section .ask-away-section-inner .ask-away-section-tile .ask-away-section-tile-title {
            font-family: GT-Walsheim;
            font-weight: bold;
            font-style: normal;
            font-size: 28px;
            line-height: 30px; } }
      .ask-away-section .ask-away-section-inner .ask-away-section-tile .ask-away-section-tile-text {
        font-family: GT-Walsheim;
        font-weight: 500;
        font-style: normal;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
        color: #F85309; }
        @media only screen and (max-width: 480px) {
          .ask-away-section .ask-away-section-inner .ask-away-section-tile .ask-away-section-tile-text {
            font-family: GT-Walsheim;
            font-weight: 500;
            font-style: normal;
            font-size: 18px;
            line-height: 28px; } }
    .ask-away-section .ask-away-section-inner .ask-away-section-primary-row {
      border-top: 5px solid #F85309;
      padding-top: 40px; }
      .ask-away-section .ask-away-section-inner .ask-away-section-primary-row .ask-away-section-tile {
        padding-bottom: 40px; }
        .ask-away-section .ask-away-section-inner .ask-away-section-primary-row .ask-away-section-tile:first-child {
          padding-right: 40px; }
          @media only screen and (max-width: 480px) {
            .ask-away-section .ask-away-section-inner .ask-away-section-primary-row .ask-away-section-tile:first-child {
              padding-right: 0; } }
        .ask-away-section .ask-away-section-inner .ask-away-section-primary-row .ask-away-section-tile:last-child {
          padding-left: 40px; }
          @media only screen and (max-width: 480px) {
            .ask-away-section .ask-away-section-inner .ask-away-section-primary-row .ask-away-section-tile:last-child {
              padding-left: 0; } }
    .ask-away-section .ask-away-section-inner .ask-away-section-secondary-row {
      border-top: 1px solid #F85309;
      padding-top: 40px;
      padding-bottom: 40px; }
      @media only screen and (max-width: 480px) {
        .ask-away-section .ask-away-section-inner .ask-away-section-secondary-row {
          padding-top: 0;
          border-top: none;
          border-bottom: 1px solid #F85309; } }

.awards-section {
  background-color: #E3F1FF;
  padding-top: 80px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 480px) {
    .awards-section {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .awards-section .awards-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .awards-section .awards-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .awards-section .awards-section-inner .awards-section-title {
      background-color: #E3F1FF;
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px;
      color: #F85309;
      text-align: center;
      margin-bottom: 80px; }
      @media only screen and (max-width: 480px) {
        .awards-section .awards-section-inner .awards-section-title {
          font-family: GT-Walsheim;
          font-weight: bold;
          font-style: normal;
          font-size: 28px;
          line-height: 30px;
          margin-bottom: 40px; } }
    .awards-section .awards-section-inner .awards-section-tile {
      text-align: center;
      padding-bottom: 40px;
      padding-left: 5px;
      padding-right: 5px; }
      @media only screen and (max-width: 480px) {
        .awards-section .awards-section-inner .awards-section-tile {
          padding-bottom: 30px; } }
      .awards-section .awards-section-inner .awards-section-tile .awards-section-tile-icon {
        height: 26px;
        width: 26px;
        margin-bottom: 15px; }
        .awards-section .awards-section-inner .awards-section-tile .awards-section-tile-icon path {
          fill: #F85309; }
      .awards-section .awards-section-inner .awards-section-tile .awards-section-tile-result {
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 14px;
        padding-bottom: 10px; }
      .awards-section .awards-section-inner .awards-section-tile .awards-section-tile-award {
        font-family: GT-Walsheim;
        font-weight: 500;
        font-style: normal;
        font-size: 14px;
        line-height: 20px;
        padding-bottom: 10px; }
        .awards-section .awards-section-inner .awards-section-tile .awards-section-tile-award p {
          padding-bottom: 5px; }
          .awards-section .awards-section-inner .awards-section-tile .awards-section-tile-award p:last-child {
            padding-bottom: 0; }
      .awards-section .awards-section-inner .awards-section-tile .awards-section-tile-from {
        font-family: LyonText;
        font-weight: normal;
        font-style: italic;
        font-size: 16px; }

.interactive-text-section {
  padding-left: 40px;
  padding-right: 40px; }
  @media only screen and (max-width: 1200px) {
    .interactive-text-section {
      padding-left: 14px;
      padding-right: 14px; } }
  @media only screen and (max-width: 480px) {
    .interactive-text-section {
      padding-left: 0;
      padding-right: 0;
      margin-bottom: 0; } }
  .interactive-text-section .interactive-text-section-info {
    font-family: LyonText;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #55ABFF;
    text-align: right;
    padding-top: 30px;
    padding-right: 10px;
    padding-bottom: 20px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    @media only screen and (max-width: 480px) {
      .interactive-text-section .interactive-text-section-info {
        padding-top: 20px;
        padding-left: 43px;
        padding-right: 43px;
        padding-bottom: 40px;
        text-align: left; } }
    .interactive-text-section .interactive-text-section-info ul li {
      padding-bottom: 12px; }
  .interactive-text-section .interactive-text-section-text {
    font-family: GT-Walsheim;
    font-weight: bold;
    font-style: normal;
    font-size: 28px;
    line-height: 38px;
    padding-left: 85px;
    padding-right: 85px;
    padding-top: 40px;
    position: relative;
    margin-bottom: -60px;
    top: -140px;
    background-color: #FFFFFF; }
    .interactive-text-section .interactive-text-section-text a {
      color: #1A1A1A;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .interactive-text-section .interactive-text-section-text a:hover {
        color: #C1C1C1; }
      .interactive-text-section .interactive-text-section-text a.interactive-text-section-link-active {
        color: #55ABFF;
        -webkit-transition: color 0.3s;
        -moz-transition: color 0.3s;
        -o-transition: color 0.3s;
        transition: color 0.3s; }
        .interactive-text-section .interactive-text-section-text a.interactive-text-section-link-active:hover {
          color: #C1C1C1; }
    @media only screen and (max-width: 1200px) {
      .interactive-text-section .interactive-text-section-text {
        padding-left: 40px;
        padding-right: 40px; } }
    @media only screen and (max-width: 480px) {
      .interactive-text-section .interactive-text-section-text {
        padding-left: 43px;
        padding-right: 43px;
        top: 0;
        margin-bottom: 0px;
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 22px;
        line-height: 28px; } }

.person-tile {
  margin: 0 7px 40px 7px;
  position: relative; }
  @media only screen and (max-width: 480px) {
    .person-tile {
      text-align: center;
      margin: 0 4px 20px 4px; } }
  .person-tile .person-tile-images img {
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
    .person-tile .person-tile-images img:hover:first-child {
      opacity: 0; }
    .person-tile .person-tile-images img:last-child {
      position: absolute;
      top: 0;
      z-index: 1; }
  .person-tile .person-tile-name {
    margin-top: 20px;
    font-family: GT-Walsheim;
    font-weight: bold;
    font-style: normal;
    font-size: 14px; }
    @media only screen and (max-width: 480px) {
      .person-tile .person-tile-name {
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 13px; } }
  .person-tile .person-tile-role {
    margin-top: 5px;
    font-family: GT-Walsheim;
    font-weight: 500;
    font-style: normal;
    font-size: 14px; }
    @media only screen and (max-width: 480px) {
      .person-tile .person-tile-role {
        font-family: GT-Walsheim;
        font-weight: 500;
        font-style: normal;
        font-size: 13px; } }
  .person-tile .person-tile-contact {
    margin-top: 10px;
    font-family: GT-Walsheim;
    font-weight: 500;
    font-style: normal;
    font-size: 14px; }
    @media only screen and (max-width: 480px) {
      .person-tile .person-tile-contact {
        font-family: GT-Walsheim;
        font-weight: 500;
        font-style: normal;
        font-size: 13px; } }
    .person-tile .person-tile-contact a {
      color: #F85309;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s; }
      .person-tile .person-tile-contact a:hover {
        color: #1A1A1A; }
      .person-tile .person-tile-contact a:first-child {
        padding-right: 15px; }
        @media only screen and (max-width: 480px) {
          .person-tile .person-tile-contact a:first-child {
            padding-right: 5px; } }

.this-is-us-section {
  padding-top: 80px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 480px) {
    .this-is-us-section {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .this-is-us-section .this-is-us-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .this-is-us-section .this-is-us-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .this-is-us-section .this-is-us-section-inner .this-is-us-section-title {
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px;
      color: #F85309;
      text-align: center;
      margin-bottom: 80px; }
      @media only screen and (max-width: 480px) {
        .this-is-us-section .this-is-us-section-inner .this-is-us-section-title {
          margin-bottom: 40px; } }

.work-with-us-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #E3F1FF; }
  @media only screen and (max-width: 480px) {
    .work-with-us-section {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .work-with-us-section .work-with-us-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .work-with-us-section .work-with-us-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .work-with-us-section .work-with-us-section-inner .work-with-us-section-inner-inner {
      width: 100%;
      max-width: 430px;
      margin: 0 auto; }
      .work-with-us-section .work-with-us-section-inner .work-with-us-section-inner-inner .work-with-us-section-title {
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 28px;
        line-height: 38px;
        color: #F85309;
        padding-bottom: 80px;
        text-align: center; }
        @media only screen and (max-width: 480px) {
          .work-with-us-section .work-with-us-section-inner .work-with-us-section-inner-inner .work-with-us-section-title {
            font-family: GT-Walsheim;
            font-weight: bold;
            font-style: normal;
            font-size: 28px;
            line-height: 30px;
            padding-bottom: 40px; } }
      .work-with-us-section .work-with-us-section-inner .work-with-us-section-inner-inner .work-with-us-section-point-block {
        padding-bottom: 40px; }
        .work-with-us-section .work-with-us-section-inner .work-with-us-section-inner-inner .work-with-us-section-point-block .work-with-us-section-point {
          color: #F85309;
          font-family: GT-Walsheim;
          font-weight: bold;
          font-style: normal;
          font-size: 75px;
          line-height: 80px;
          line-height: 72px; }
        .work-with-us-section .work-with-us-section-inner .work-with-us-section-inner-inner .work-with-us-section-point-block .work-with-us-section-point-detail {
          font-family: GT-Walsheim;
          font-weight: 500;
          font-style: normal;
          font-size: 18px;
          line-height: 28px; }
          @media only screen and (max-width: 480px) {
            .work-with-us-section .work-with-us-section-inner .work-with-us-section-inner-inner .work-with-us-section-point-block .work-with-us-section-point-detail {
              font-family: GT-Walsheim;
              font-weight: 500;
              font-style: normal;
              font-size: 18px;
              line-height: 28px; } }
          .work-with-us-section .work-with-us-section-inner .work-with-us-section-inner-inner .work-with-us-section-point-block .work-with-us-section-point-detail .work-with-us-section-point-detail-title {
            font-family: LyonText;
            font-weight: normal;
            font-style: normal;
            font-size: 26px;
            line-height: 36px;
            padding-bottom: 30px; }

.benefits-section {
  padding-top: 80px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 480px) {
    .benefits-section {
      padding-top: 40px;
      padding-bottom: 40px; } }
  .benefits-section .benefits-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .benefits-section .benefits-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .benefits-section .benefits-section-inner .row {
      margin-bottom: 80px; }
      @media only screen and (max-width: 768px) {
        .benefits-section .benefits-section-inner .row {
          margin-bottom: 0px; } }
    .benefits-section .benefits-section-inner .row:last-child {
      margin-bottom: 0px; }
    .benefits-section .benefits-section-inner .benefits-section-title {
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px;
      padding-bottom: 80px;
      color: #F85309;
      text-align: center; }

.benefits-tile {
  margin-bottom: 40px; }
  .benefits-tile .benefits-tile-image {
    text-align: center; }
    .benefits-tile .benefits-tile-image img {
      width: 200px;
      height: auto;
      border-radius: 50%;
      margin: 0 auto 30px auto;
      overflow: hidden; }
      @media only screen and (max-width: 1200px) {
        .benefits-tile .benefits-tile-image img {
          width: 185px;
          height: 185px; } }
      @media only screen and (max-width: 1024px) {
        .benefits-tile .benefits-tile-image img {
          margin-bottom: 20px; } }
      @media only screen and (max-width: 768px) {
        .benefits-tile .benefits-tile-image img {
          width: 90%;
          height: auto; } }
      @media only screen and (max-width: 480px) {
        .benefits-tile .benefits-tile-image img {
          width: 185px; } }
  .benefits-tile .benefits-tile-info {
    font-family: LyonText;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    text-align: center; }

.statistics-section {
  margin-top: -40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 500; }
  @media only screen and (max-width: 768px) {
    .statistics-section {
      padding-bottom: 40px;
      margin-top: 0px; } }
  .statistics-section .statistics-section-inner-image {
    margin: 0 auto;
    width: 100%;
    max-width: 768px; }
    .statistics-section .statistics-section-inner-image.statistics-section-secondary-inner-image {
      padding-top: 40px !important; }
    .statistics-section .statistics-section-inner-image .statistics-section-image {
      margin-bottom: 80px;
      max-width: 768px;
      width: 100%;
      height: 440px;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      -webkit-transition: all 0.3s;
      -moz-transition: all 0.3s;
      -o-transition: all 0.3s;
      transition: all 0.3s; }
      @media only screen and (max-width: 1024px) {
        .statistics-section .statistics-section-inner-image .statistics-section-image {
          height: 480px; } }
      @media only screen and (max-width: 480px) {
        .statistics-section .statistics-section-inner-image .statistics-section-image {
          margin-bottom: 40px;
          height: 260px; } }
  .statistics-section .statistics-section-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .statistics-section .statistics-section-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .statistics-section .statistics-section-inner .statistics-section-blurb {
      font-family: GT-Walsheim;
      font-weight: 500;
      font-style: normal;
      font-size: 18px;
      line-height: 28px; }
      .statistics-section .statistics-section-inner .statistics-section-blurb p {
        padding-bottom: 40px; }
        @media only screen and (max-width: 480px) {
          .statistics-section .statistics-section-inner .statistics-section-blurb p {
            font-family: GT-Walsheim;
            font-weight: 500;
            font-style: normal;
            font-size: 18px;
            line-height: 28px; }
            .statistics-section .statistics-section-inner .statistics-section-blurb p:last-child {
              padding-bottom: 0; } }

.share-section {
  text-align: center;
  position: relative;
  font-family: LyonText;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 30px; }
  .share-section > div {
    display: inline-block; }
  .share-section .share-section-emphasised {
    font-family: LyonText;
    font-weight: normal;
    font-style: italic;
    font-size: 16px;
    font-size: 22px; }
  .share-section .share-section-social-items {
    position: relative;
    top: 7px;
    padding-left: 10px; }
    .share-section .share-section-social-items .share-section-social {
      text-decoration: none;
      padding-right: 0px;
      height: 30px;
      width: 30px; }
      .share-section .share-section-social-items .share-section-social path, .share-section .share-section-social-items .share-section-social circle {
        -webkit-transition: fill 0.3s;
        -moz-transition: fill 0.3s;
        -o-transition: fill 0.3s;
        transition: fill 0.3s;
        fill: #F85309; }
      .share-section .share-section-social-items .share-section-social:hover path, .share-section .share-section-social-items .share-section-social:hover circle {
        fill: #C1C1C1; }

.results-section {
  position: relative;
  z-index: 500;
  padding-bottom: 80px; }
  @media only screen and (max-width: 480px) {
    .results-section {
      padding-bottom: 40px; } }
  .results-section .results-section-results-title {
    color: #F85309;
    font-family: GT-Walsheim;
    font-weight: bold;
    font-style: normal;
    font-size: 28px;
    line-height: 38px;
    text-align: right; }
    @media only screen and (max-width: 768px) {
      .results-section .results-section-results-title {
        text-align: center;
        padding-bottom: 40px; } }
  .results-section .results-section-stats-wrapper {
    font-family: LyonText;
    font-weight: normal;
    font-style: italic;
    font-size: 16px;
    margin-bottom: -160px;
    padding-left: 80px;
    padding-bottom: 80px;
    background-color: #FFFFFF; }
    @media only screen and (max-width: 768px) {
      .results-section .results-section-stats-wrapper {
        margin-bottom: 0;
        padding-bottom: 0;
        top: 0;
        padding-left: 43px;
        padding-right: 43px; } }
    .results-section .results-section-stats-wrapper .results-section-stats-row {
      display: table-row; }
      @media only screen and (max-width: 768px) {
        .results-section .results-section-stats-wrapper .results-section-stats-row {
          padding-bottom: 20px;
          display: block; }
          .results-section .results-section-stats-wrapper .results-section-stats-row:last-child {
            padding-bottom: 0px; } }
      @media only screen and (max-width: 480px) {
        .results-section .results-section-stats-wrapper .results-section-stats-row > div {
          display: block; } }
    .results-section .results-section-stats-wrapper .results-section-stats-number {
      color: #55ABFF;
      display: table-cell;
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 75px;
      line-height: 80px; }
    .results-section .results-section-stats-wrapper .results-section-stats-descriptor {
      max-width: 230px;
      display: table-cell;
      vertical-align: middle;
      padding-left: 10px; }
      @media only screen and (max-width: 768px) {
        .results-section .results-section-stats-wrapper .results-section-stats-descriptor {
          padding-left: 0px;
          padding-top: 10px; } }

.news-item-tile {
  padding-top: 40px;
  padding-bottom: 60px;
  max-width: 320px; }
  @media only screen and (max-width: 480px) {
    .news-item-tile {
      padding-top: 25px;
      padding-bottom: 25px;
      padding-left: 10px;
      padding-right: 10px; } }
  .news-item-tile .news-item-tile-info {
    margin-bottom: 40px; }
    @media only screen and (max-width: 480px) {
      .news-item-tile .news-item-tile-info {
        margin-bottom: 25px; } }
    .news-item-tile .news-item-tile-info .news-item-tile-info-date {
      font-family: LyonText;
      font-weight: normal;
      font-style: normal;
      font-size: 16px;
      color: #F85309; }
    .news-item-tile .news-item-tile-info .news-item-tile-info-category {
      font-family: GT-Walsheim;
      font-weight: 500;
      font-style: normal;
      font-size: 14px;
      color: #F85309;
      padding-left: 10px; }
  .news-item-tile .news-item-tile-title {
    margin-bottom: 30px; }
    .news-item-tile .news-item-tile-title a {
      font-family: GT-Walsheim;
      font-weight: bold;
      font-style: normal;
      font-size: 28px;
      line-height: 38px;
      color: #1A1A1A;
      -webkit-transition: color 0.3s;
      -moz-transition: color 0.3s;
      -o-transition: color 0.3s;
      transition: color 0.3s;
      text-decoration: none; }
      .news-item-tile .news-item-tile-title a:hover {
        color: #F85309; }
      @media only screen and (max-width: 480px) {
        .news-item-tile .news-item-tile-title a {
          font-family: GT-Walsheim;
          font-weight: bold;
          font-style: normal;
          font-size: 28px;
          line-height: 30px; } }
  .news-item-tile .news-item-tile-links a {
    font-family: GT-Walsheim;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    color: #F85309;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
    .news-item-tile .news-item-tile-links a:hover {
      color: #1A1A1A; }

.news-items-section .news-items-section-inner {
  width: 100%;
  max-width: 762px;
  margin: 0 auto;
  padding-left: 14px;
  padding-right: 14px; }
  @media only screen and (max-width: 480px) {
    .news-items-section .news-items-section-inner {
      padding-left: 43px;
      padding-right: 43px; } }
  @media only screen and (min-width: 481px) {
    .news-items-section .news-items-section-inner .row {
      border-bottom: 1px solid #E1E1E1; }
      .news-items-section .news-items-section-inner .row:last-child {
        border-bottom: none; }
      .news-items-section .news-items-section-inner .row div[class*='col-'] {
        padding-left: 40px;
        padding-right: 10px; }
        .news-items-section .news-items-section-inner .row div[class*='col-']:first-child {
          padding-left: 10px;
          padding-right: 40px;
          border-right: 1px solid #E1E1E1; } }
  @media only screen and (max-width: 480px) {
    .news-items-section .news-items-section-inner div[class*='col-'] {
      border-bottom: 1px solid #E1E1E1; }
      .news-items-section .news-items-section-inner div[class*='col-']:first-child {
        border-top: 1px solid #E1E1E1; } }
  .news-items-section .news-items-section-inner .carousel-nav {
    margin-top: 40px; }

.top-news-section {
  padding-top: 80px;
  padding-left: 43px;
  padding-right: 43px; }
  @media only screen and (max-width: 480px) {
    .top-news-section {
      padding-top: 40px; } }
  .top-news-section .top-news-item {
    margin-bottom: 80px; }
    @media only screen and (max-width: 480px) {
      .top-news-section .top-news-item {
        margin-bottom: 20px; } }
    .top-news-section .top-news-item .top-news-item-image-container {
      padding-right: 40px;
      height: 320px; }
      @media only screen and (max-width: 480px) {
        .top-news-section .top-news-item .top-news-item-image-container {
          height: 260px;
          padding-right: 0;
          margin-bottom: 5px; } }
      .top-news-section .top-news-item .top-news-item-image-container .top-news-item-image {
        background-position: center center;
        background-size: cover;
        height: 100%;
        width: 100%;
        display: block; }
    .top-news-section .top-news-item .top-news-item-details {
      padding-left: 40px;
      padding-right: 40px; }
      @media only screen and (max-width: 480px) {
        .top-news-section .top-news-item .top-news-item-details {
          padding-left: 10px;
          padding-right: 10px; } }

.mobile-header {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #FEF5EB; }
  @media only screen and (max-width: 1024px) {
    .mobile-header {
      visibility: visible;
      opacity: 1;
      max-height: none; } }
  .mobile-header .mobile-header-inner {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
    padding: 40px 260px 60px 80px; }
    @media only screen and (max-width: 480px) {
      .mobile-header .mobile-header-inner {
        padding-left: 43px;
        padding-right: 43px; } }
    .mobile-header .mobile-header-inner .header-content {
      display: block;
      table-layout: inherit;
      position: relative;
      visibility: visible;
      opacity: 1; }
      .mobile-header .mobile-header-inner .header-content .header-content-align {
        padding: 0; }
        .mobile-header .mobile-header-inner .header-content .header-content-align .header-content-text {
          padding: 0;
          max-width: none; }
    .mobile-header .mobile-header-inner .mobile-header-bottom {
      display: none;
      padding-top: 40px; }
      .mobile-header .mobile-header-inner .mobile-header-bottom .mobile-header-bottom-wordmark {
        font-family: GT-Walsheim;
        font-weight: bold;
        font-style: normal;
        font-size: 18px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #F85309; }

.mobile-video video {
  display: none; }

.mobile-video .video-js.vjs-fluid {
  min-height: 260px; }
  .mobile-video .video-js.vjs-fluid video {
    display: block; }
  .mobile-video .video-js.vjs-fluid .vjs-poster {
    background-size: cover; }
  .mobile-video .video-js.vjs-fluid .vjs-big-play-button {
    background-image: url(../images/icons/play_2x.png);
    background-size: 100px 100px;
    height: 100px;
    width: 100px;
    margin-top: -50px !important;
    margin-left: -50px !important;
    border: none;
    background-color: transparent !important; }
    @media only screen and (max-width: 480px) {
      .mobile-video .video-js.vjs-fluid .vjs-big-play-button {
        background-size: 80px 80px;
        height: 80px;
        width: 80px;
        margin-top: -40px !important;
        margin-left: -40px !important; } }
    .mobile-video .video-js.vjs-fluid .vjs-big-play-button:before {
      content: ''; }

@media only screen and (max-width: 480px) {
  .page-template-index .full-screen-container {
    height: 260px; } }

.page-template-index .mobile-header .mobile-header-inner .mobile-header-bottom {
  display: block; }

.page-template-index .full-screen-video {
  display: block; }
  @media only screen and (max-width: 1024px) {
    .page-template-index .full-screen-video {
      display: none; } }

.page-template-index .mobile-video {
  display: none; }
  @media only screen and (max-width: 1024px) {
    .page-template-index .mobile-video {
      display: block; } }

.page-template-index .full-screen-video-vol-toggle {
  position: absolute;
  bottom: 58px;
  right: 30px;
  height: 25px;
  width: 25px; }
  .page-template-index .full-screen-video-vol-toggle .full-screen-video-vol-unmute {
    opacity: 1;
    visibility: visible;
    position: absolute;
    -webkit-transition: all 0.3s 0s;
    -moz-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s; }
    .page-template-index .full-screen-video-vol-toggle .full-screen-video-vol-unmute path {
      -webkit-transition: all 0.3s 0s;
      -moz-transition: all 0.3s 0s;
      -o-transition: all 0.3s 0s;
      transition: all 0.3s 0s;
      fill: #1A1A1A; }
  .page-template-index .full-screen-video-vol-toggle .full-screen-video-vol-mute {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    -webkit-transition: all 0.3s 0s;
    -moz-transition: all 0.3s 0s;
    -o-transition: all 0.3s 0s;
    transition: all 0.3s 0s; }
    .page-template-index .full-screen-video-vol-toggle .full-screen-video-vol-mute path {
      -webkit-transition: all 0.3s 0s;
      -moz-transition: all 0.3s 0s;
      -o-transition: all 0.3s 0s;
      transition: all 0.3s 0s;
      fill: #1A1A1A; }
  .page-template-index .full-screen-video-vol-toggle.unmuted .full-screen-video-vol-unmute {
    opacity: 0;
    visibility: hidden; }
  .page-template-index .full-screen-video-vol-toggle.unmuted .full-screen-video-vol-mute {
    opacity: 1;
    visibility: visible; }
  .page-template-index .full-screen-video-vol-toggle:hover .full-screen-video-vol-unmute path {
    fill: #FFFFFF; }
  .page-template-index .full-screen-video-vol-toggle:hover .full-screen-video-vol-mute path {
    fill: #FFFFFF; }

.page-template-who-we-are .carousel-nav {
  padding-top: 40px; }

@media only screen and (min-width: 769px) {
  .single-case_study .callout-section {
    padding-top: 120px;
    padding-bottom: 120px; }
  .single-case_study .callout-section:last-child {
    padding-bottom: 80px; } }

.single-case_study .header-nav {
  display: block; }

@media only screen and (max-width: 1024px) {
  .single-post .header-content-text-container {
    display: none; } }

.single-post .blog-post-page {
  font-family: GT-Walsheim;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 28px;
  padding-top: 80px; }
  @media only screen and (max-width: 480px) {
    .single-post .blog-post-page {
      font-family: GT-Walsheim;
      font-weight: 500;
      font-style: normal;
      font-size: 18px;
      line-height: 28px; } }
  @media only screen and (max-width: 480px) {
    .single-post .blog-post-page {
      padding-top: 40px; } }
  .single-post .blog-post-page .blog-post-page-inner .blog-post-page-user-badge {
    padding-bottom: 80px;
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
    max-width: 570px; }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner .blog-post-page-user-badge {
        padding-left: 43px;
        padding-right: 43px; } }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner .blog-post-page-user-badge {
        padding-bottom: 40px; } }
    .single-post .blog-post-page .blog-post-page-inner .blog-post-page-user-badge > div {
      display: inline-block; }
    .single-post .blog-post-page .blog-post-page-inner .blog-post-page-user-badge .blog-post-page-user-badge-image {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      margin-right: 20px; }
    .single-post .blog-post-page .blog-post-page-inner .blog-post-page-user-badge .blog-post-page-user-name {
      color: #F85309;
      font-family: GT-Walsheim;
      font-weight: 500;
      font-style: normal;
      font-size: 14px;
      top: -3px;
      position: relative; }
    .single-post .blog-post-page .blog-post-page-inner .blog-post-page-user-badge .blog-post-page-user-date {
      color: #F85309;
      font-family: LyonText;
      font-weight: normal;
      font-style: normal;
      font-size: 16px;
      top: -7px;
      position: relative; }
  .single-post .blog-post-page .blog-post-page-inner .blog-post-page-title {
    font-family: GT-Walsheim;
    font-weight: bold;
    font-style: normal;
    font-size: 28px;
    line-height: 38px;
    padding-bottom: 40px;
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
    max-width: 570px; }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner .blog-post-page-title {
        padding-left: 43px;
        padding-right: 43px; } }
  .single-post .blog-post-page .blog-post-page-inner .blog-post-page-inner-offset {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner .blog-post-page-inner-offset {
        padding-left: 43px;
        padding-right: 43px; } }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner .blog-post-page-inner-offset {
        padding-left: 0;
        padding-right: 0; } }
  .single-post .blog-post-page .blog-post-page-inner p {
    padding-bottom: 40px;
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
    max-width: 570px; }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner p {
        padding-left: 43px;
        padding-right: 43px; } }
  .single-post .blog-post-page .blog-post-page-inner a {
    color: #1A1A1A;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    transition: color 0.3s; }
    .single-post .blog-post-page .blog-post-page-inner a:hover {
      color: #F85309; }
  .single-post .blog-post-page .blog-post-page-inner ul, .single-post .blog-post-page .blog-post-page-inner ol {
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
    max-width: 570px;
    padding-left: 96px; }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner ul, .single-post .blog-post-page .blog-post-page-inner ol {
        padding-left: 43px;
        padding-right: 43px; } }
    @media only screen and (max-width: 768px) {
      .single-post .blog-post-page .blog-post-page-inner ul, .single-post .blog-post-page .blog-post-page-inner ol {
        padding-left: 32px; } }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner ul, .single-post .blog-post-page .blog-post-page-inner ol {
        padding-left: 62px; } }
    .single-post .blog-post-page .blog-post-page-inner ul li, .single-post .blog-post-page .blog-post-page-inner ol li {
      padding-bottom: 40px; }
  .single-post .blog-post-page .blog-post-page-inner ul {
    list-style: disc; }
  .single-post .blog-post-page .blog-post-page-inner ol {
    list-style: decimal; }
  .single-post .blog-post-page .blog-post-page-inner blockquote {
    font-family: GT-Walsheim;
    font-weight: bold;
    font-style: normal;
    font-size: 28px;
    line-height: 38px;
    width: 100%;
    max-width: 762px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
    color: #55ABFF;
    padding-bottom: 40px;
    width: 100%;
    max-width: 408px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px; }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .blog-post-page-inner blockquote {
        padding-left: 43px;
        padding-right: 43px; } }
  .single-post .blog-post-page .blog-post-page-inner img {
    width: 100%;
    height: auto; }
  .single-post .blog-post-page .share-section {
    padding-top: 40px; }
    @media only screen and (max-width: 480px) {
      .single-post .blog-post-page .share-section {
        padding-top: 0; } }

.single-post .header-nav {
  display: block; }
