@charset "UTF-8";
/* Third Party */
/* Responsive */
/* Modules */
/* Base */
/* Helpers */
/* Buttons */
/* Angled Edges */
/* Tooltips */
/* Animations */
@import url("https://fonts.googleapis.com/css?family=Asap:400,700|Open+Sans:400,400i,600,700");
@import url("//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css");
@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1em);
    transform: translateY(1em); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

/* Breakpoints */
/* Max Width */
/* Typography */
/* Modular Typography */
/* Colours */
/* Line Colours */
/* Font Colours */
/* Button Variables */
/* Spacers */
/* Global */
* {
  outline: 0;
  -moz-outline: 0; }

html {
  overflow-x: hidden;
  -ms-overflow-x: hidden; }

body {
  position: relative;
  overflow-x: hidden;
  -ms-overflow-x: hidden; }

img {
  max-width: 100%;
  width: 100%;
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */ }

.wow {
  visibility: hidden; }

.wrapper {
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative; }
  .wrapper::after {
    clear: both;
    content: "";
    display: table; }
  .wrapper::after {
    clear: both;
    content: "";
    display: table; }

.wrapperFull {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px; }
  .wrapperFull::after {
    clear: both;
    content: "";
    display: table; }

.line {
  width: 33.333%;
  float: left;
  position: absolute;
  top: 0;
  height: 5px;
  display: block;
  z-index: 3; }
  .line.red {
    background: #c53b33;
    left: 0%; }
  .line.green {
    background: #acd46f;
    left: 33.333%; }
  .line.white {
    background: white;
    left: 33.333%; }
  .line.blue {
    background: #76c5d5;
    right: 0; }

.grid {
  background-image: url(../images/graphics/grid@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover; }

.grid-small {
  background-image: url(../images/graphics/grid2@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover; }

/*
 * Modifiers
 */
.float-left {
  float: left;
  margin-right: 1em; }

.float-right {
  float: right;
  margin-left: 1em; }

.noMargin {
  margin-bottom: 0 !important; }

/* HR */
hr {
  border-top: 1px solid #f2f2f2;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  margin-top: 150px;
  margin-bottom: 150px; }
  @media (max-width: 768px) {
    hr.l-wrapper {
      margin-top: 0; } }
  hr.divider {
    width: auto;
    max-width: 1280px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px; }
    hr.divider::after {
      clear: both;
      content: "";
      display: table; }
    @media (max-width: 850px) {
      hr.divider {
        margin-top: 75px;
        margin-bottom: 75px; } }
  hr.small {
    width: auto;
    max-width: 1280px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 75px;
    margin-bottom: 75px; }
    hr.small::after {
      clear: both;
      content: "";
      display: table; }
    @media (max-width: 850px) {
      hr.small {
        margin-top: 30px;
        margin-bottom: 30px; } }

/* TOOL TIP */
.tooltip-attached {
  position: relative; }
  .tooltip-attached:hover .tooltip {
    visibility: visible;
    -webkit-animation: slide-up 0.3s;
    animation: slide-up 0.3s; }

.tooltip {
  left: 50%;
  bottom: 100%;
  width: 14em;
  margin-left: -7em;
  padding: .75em 1.25em .85em 1.25em;
  box-shadow: 0;
  text-align: center;
  position: absolute;
  box-sizing: border-box;
  margin-bottom: 0.75em;
  background-color: #76c5d5;
  cursor: default;
  visibility: hidden;
  border: 0.1em solid flase;
  color: #fff;
  border-radius: 10px; }
  .tooltip:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 0.65em solid #76c5d5;
    border-left: 0.65em solid transparent;
    border-right: 0.65em solid transparent;
    margin-left: -0.65em; }
  .tooltip:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 0.75em solid flase;
    border-left: 0.75em solid transparent;
    border-right: 0.75em solid transparent;
    margin-left: -0.75em; }
  .tooltip h5 {
    font-size: 19px;
    letter-spacing: 2px; }
  .tooltip h6 {
    text-transform: uppercase; }

/*
 * Alignment
 */
.text-left {
  text-align: left   !important; }

.text-center {
  text-align: center !important; }

.text-right {
  text-align: right  !important; }

/*
 * Base Typography
 */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Asap", sans-serif; }

h1, h2 {
  letter-spacing: 2px; }

h1 {
  font-size: 1.4641em;
  color: #c53b33;
  margin-bottom: 15px;
  line-height: 1.1; }
  @media (min-width: 20em) and (max-width: 30em) {
    h1 {
      font-size: calc( 1.4641em + 0.4367 * ( ( 100vw - 20em) / 10 )); } }
  @media (min-width: 30em) and (max-width: 40em) {
    h1 {
      font-size: calc( 1.9008em + 0.2476375 * ( ( 100vw - 30em) / 10 )); } }
  @media (min-width: 40em) and (max-width: 50em) {
    h1 {
      font-size: calc( 2.1484375em + 0.2682625 * ( ( 100vw - 40em) / 10 )); } }
  @media (min-width: 50em) and (max-width: 60em) {
    h1 {
      font-size: calc( 2.4167em + 0.4741792 * ( ( 100vw - 50em) / 10 )); } }
  @media (min-width: 60em) {
    h1 {
      font-size: 2.8908792em; } }

h2 {
  font-size: 1.331em;
  font-weight: bold;
  color: #333e48;
  line-height: 1.2;
  margin-bottom: 15px; }
  @media (min-width: 20em) and (max-width: 30em) {
    h2 {
      font-size: calc( 1.331em + 0.253 * ( ( 100vw - 20em) / 10 )); } }
  @media (min-width: 30em) and (max-width: 40em) {
    h2 {
      font-size: calc( 1.584em + 0.13475 * ( ( 100vw - 30em) / 10 )); } }
  @media (min-width: 40em) and (max-width: 50em) {
    h2 {
      font-size: calc( 1.71875em + 0.14025 * ( ( 100vw - 40em) / 10 )); } }
  @media (min-width: 50em) and (max-width: 60em) {
    h2 {
      font-size: calc( 1.859em + 0.23584 * ( ( 100vw - 50em) / 10 )); } }
  @media (min-width: 60em) {
    h2 {
      font-size: 2.09484em; } }

.wrapper h2 {
  margin-bottom: 30px; }

h2.layered {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 100px;
  line-height: 1.0;
  position: relative;
  color: #f2f2f2;
  text-align: center;
  margin-bottom: 75px; }
  @media (max-width: 850px) {
    h2.layered {
      margin-bottom: 30px;
      word-break: break-word; } }
  h2.layered span {
    font-size: 40px;
    color: #acd46f;
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 30px;
    top: 33%; }
  @media (max-width: 540px) {
    h2.layered {
      font-size: 80px; }
      h2.layered span {
        top: 11%; } }

h3 {
  font-size: 1.21em;
  line-height: 1.4; }
  @media (min-width: 20em) and (max-width: 30em) {
    h3 {
      font-size: calc( 1.21em + 0.11 * ( ( 100vw - 20em) / 10 )); } }
  @media (min-width: 30em) and (max-width: 40em) {
    h3 {
      font-size: calc( 1.32em + 0.055 * ( ( 100vw - 30em) / 10 )); } }
  @media (min-width: 40em) and (max-width: 50em) {
    h3 {
      font-size: calc( 1.375em + 0.055 * ( ( 100vw - 40em) / 10 )); } }
  @media (min-width: 50em) and (max-width: 60em) {
    h3 {
      font-size: calc( 1.43em + 0.088 * ( ( 100vw - 50em) / 10 )); } }
  @media (min-width: 60em) {
    h3 {
      font-size: 1.518em; } }

h4 {
  font-size: 1.1em;
  color: #acd46f;
  text-transform: uppercase;
  font-weight: normal; }
  @media (min-width: 20em) and (max-width: 30em) {
    h4 {
      font-size: calc( 1.1em + 0 * ( ( 100vw - 20em) / 10 )); } }
  @media (min-width: 30em) and (max-width: 40em) {
    h4 {
      font-size: calc( 1.1em + 0 * ( ( 100vw - 30em) / 10 )); } }
  @media (min-width: 40em) and (max-width: 50em) {
    h4 {
      font-size: calc( 1.1em + 0 * ( ( 100vw - 40em) / 10 )); } }
  @media (min-width: 50em) and (max-width: 60em) {
    h4 {
      font-size: calc( 1.1em + 0 * ( ( 100vw - 50em) / 10 )); } }
  @media (min-width: 60em) {
    h4 {
      font-size: 1.1em; } }

h5 {
  font-size: 1.21em; }
  @media (min-width: 20em) and (max-width: 30em) {
    h5 {
      font-size: calc( 1.21em + 0.11 * ( ( 100vw - 20em) / 10 )); } }
  @media (min-width: 30em) and (max-width: 40em) {
    h5 {
      font-size: calc( 1.32em + 0.055 * ( ( 100vw - 30em) / 10 )); } }
  @media (min-width: 40em) and (max-width: 50em) {
    h5 {
      font-size: calc( 1.375em + 0.055 * ( ( 100vw - 40em) / 10 )); } }
  @media (min-width: 50em) and (max-width: 60em) {
    h5 {
      font-size: calc( 1.43em + 0.088 * ( ( 100vw - 50em) / 10 )); } }
  @media (min-width: 60em) {
    h5 {
      font-size: 1.518em; } }

p {
  font-size: 1.1em;
  font-family: "Open Sans", sans-serif;
  color: #8f9191;
  margin-bottom: 15px; }
  @media (min-width: 20em) and (max-width: 30em) {
    p {
      font-size: calc( 1.1em + 0 * ( ( 100vw - 20em) / 10 )); } }
  @media (min-width: 30em) and (max-width: 40em) {
    p {
      font-size: calc( 1.1em + 0 * ( ( 100vw - 30em) / 10 )); } }
  @media (min-width: 40em) and (max-width: 50em) {
    p {
      font-size: calc( 1.1em + 0 * ( ( 100vw - 40em) / 10 )); } }
  @media (min-width: 50em) and (max-width: 60em) {
    p {
      font-size: calc( 1.1em + 0 * ( ( 100vw - 50em) / 10 )); } }
  @media (min-width: 60em) {
    p {
      font-size: 1.1em; } }
  p.intro {
    font-size: 1.21em;
    line-height: 1.4; }
    @media (min-width: 20em) and (max-width: 30em) {
      p.intro {
        font-size: calc( 1.21em + 0.11 * ( ( 100vw - 20em) / 10 )); } }
    @media (min-width: 30em) and (max-width: 40em) {
      p.intro {
        font-size: calc( 1.32em + 0.055 * ( ( 100vw - 30em) / 10 )); } }
    @media (min-width: 40em) and (max-width: 50em) {
      p.intro {
        font-size: calc( 1.375em + 0.055 * ( ( 100vw - 40em) / 10 )); } }
    @media (min-width: 50em) and (max-width: 60em) {
      p.intro {
        font-size: calc( 1.43em + 0.088 * ( ( 100vw - 50em) / 10 )); } }
    @media (min-width: 60em) {
      p.intro {
        font-size: 1.518em; } }

small {
  font-size: 11px; }

a {
  color: #333e48;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  cursor: pointer; }

/*
 * Buttons
 */
button.primary, .btn-primary, .gform_button {
  background: #acd46f;
  border: 2px solid transparent !important;
  color: white;
  padding: 15px 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border-radius: 40px;
  text-transform: uppercase;
  font-family: "Asap", sans-serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s; }
  button.primary:hover, .btn-primary:hover, .gform_button:hover {
    color: #ebebeb;
    transition: all 0.3s ease; }
  button.primary:active, button.primary.nice-select.open, .btn-primary:active, .btn-primary.nice-select.open, .gform_button:active, .gform_button.nice-select.open {
    color: #bfbfbf; }
  button.primary:hover, .btn-primary:hover, .gform_button:hover {
    background: #c53b33; }

button.secondary, .btn-secondary {
  background: transparent;
  border: 2px solid #acd46f !important;
  color: #acd46f;
  padding: 15px 30px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  border-radius: 40px;
  text-transform: uppercase;
  font-family: "Asap", sans-serif;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s; }
  button.secondary:hover, .btn-secondary:hover {
    color: #9acb50;
    transition: all 0.3s ease; }
  button.secondary:active, button.secondary.nice-select.open, .btn-secondary:active, .btn-secondary.nice-select.open {
    color: #6d972d; }
  button.secondary:hover, .btn-secondary:hover {
    border: 2px solid #76c5d5 !important;
    background: transparent;
    color: #76c5d5 !important; }

p .btn-secondary, p .btn-primary {
  margin-top: 10px; }

/* Layout */
/* Header */
.headRow {
  position: absolute;
  width: 100%;
  top: 50px;
  z-index: 2; }
  .headRow header {
    width: auto;
    max-width: 1280px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px; }
    .headRow header::after {
      clear: both;
      content: "";
      display: table; }
    .headRow header::after {
      clear: both;
      content: "";
      display: table; }
    .headRow header .logo {
      max-width: 225px;
      width: 100%;
      float: left; }
      @media (max-width: 480px) {
        .headRow header .logo {
          max-width: 160px; } }
    .headRow header nav {
      float: right;
      position: relative; }
      .headRow header nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        margin-top: 40px; }
        @media (max-width: 900px) {
          .headRow header nav ul {
            margin-top: 53px; } }
        @media (max-width: 795px) {
          .headRow header nav ul {
            margin: -1px;
            padding: 0;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            clip: rect(0, 0, 0, 0);
            position: absolute; } }
        .headRow header nav ul li {
          display: inline-block;
          margin-left: 20px;
          position: relative;
          -webkit-transition: all 0.15s ease-out 0s;
          -moz-transition: all 0.15s ease-out 0s;
          transition: all 0.15s ease-out 0s; }
          .headRow header nav ul li ul.sub-menu {
            visibility: hidden;
            /* hides sub-menu */
            opacity: 0;
            position: absolute;
            margin-top: 20px;
            top: 100%;
            left: 0;
            padding: 0;
            width: 100%;
            min-width: 240px;
            margin-left: -95px;
            transform: translateY(-2em);
            z-index: -1;
            transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
            border-top-left-radius: 10px;
            border-bottom-right-radius: 10px;
            border-top-right-radius: 10px; }
            .headRow header nav ul li ul.sub-menu:after {
              content: "";
              position: absolute;
              bottom: 100%;
              left: 50%;
              width: 0;
              height: 0;
              border-bottom: 0.65em solid #acd46f;
              border-left: .65em solid transparent;
              border-right: .65em solid transparent;
              margin-left: -.65em; }
            .headRow header nav ul li ul.sub-menu li {
              display: block;
              width: 100%;
              margin-left: 0px;
              padding-top: 4px;
              position: relative; }
              .headRow header nav ul li ul.sub-menu li:first-child {
                border-top-left-radius: 10px;
                border-top-right-radius: 10px; }
              .headRow header nav ul li ul.sub-menu li:nth-last-child(-n + 1) {
                border-bottom-left-radius: 10px;
                border-bottom-right-radius: 10px; }
              .headRow header nav ul li ul.sub-menu li::after {
                content: '';
                width: calc(100% - 40px);
                left: 20px;
                position: absolute;
                border-top: 1px solid #8cb847;
                top: 100%;
                -webkit-transition: all 0.15s ease-out 0s;
                -moz-transition: all 0.15s ease-out 0s;
                transition: all 0.15s ease-out 0s; }
              .headRow header nav ul li ul.sub-menu li:nth-last-child(-n + 1)::after {
                display: none; }
              .headRow header nav ul li ul.sub-menu li a {
                color: white;
                padding: 12px 20px;
                text-decoration: none;
                display: block; }
          .headRow header nav ul li:hover ul.sub-menu {
            visibility: visible;
            /* shows sub-menu */
            opacity: 1;
            z-index: 1;
            transform: translateY(0%);
            transition-delay: 0s, 0s, 0.3s;
            /* this removes the transition delay so the menu will be visible while the other styles transition */
            background-color: #acd46f; }
            .headRow header nav ul li:hover ul.sub-menu li:hover {
              background: #95c848; }
              .headRow header nav ul li:hover ul.sub-menu li:hover::after {
                display: none; }
          .headRow header nav ul li a {
            text-decoration: none;
            padding-top: 10px;
            padding-bottom: 10px; }
            .headRow header nav ul li a:hover {
              color: #76c5d5; }
            .headRow header nav ul li a.btn-primary {
              color: white;
              padding: 15px 30px; }
              .headRow header nav ul li a.btn-primary:hover {
                color: white; }
            .headRow header nav ul li a i {
              margin-right: 5px; }
              @media (max-width: 1000px) {
                .headRow header nav ul li a i {
                  margin-right: 0; } }
            @media (max-width: 1000px) {
              .headRow header nav ul li a span {
                margin: -1px;
                padding: 0;
                width: 1px;
                height: 1px;
                overflow: hidden;
                clip: rect(0 0 0 0);
                clip: rect(0, 0, 0, 0);
                position: absolute; } }
          @media (max-width: 900px) {
            .headRow header nav ul li.btn {
              margin: -1px;
              padding: 0;
              width: 1px;
              height: 1px;
              overflow: hidden;
              clip: rect(0 0 0 0);
              clip: rect(0, 0, 0, 0);
              position: absolute; } }
          .headRow header nav ul li.active a {
            color: #acd46f; }
            .headRow header nav ul li.active a:hover {
              color: #76c5d5; }
      .headRow header nav a.m-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 43px;
        font-size: 20px;
        padding: 10px 13px;
        background: #333e48;
        color: white;
        border-radius: 40px; }
        @media (max-width: 795px) {
          .headRow header nav a.m-menu {
            display: block; } }
        .headRow header nav a.m-menu:hover {
          background: #acd46f; }
        @media (max-width: 480px) {
          .headRow header nav a.m-menu {
            top: 20px; } }

/* Main */
/* CTA */
#l-cta {
  max-width: 100%;
  width: 100%;
  background-color: #f2f2f2;
  padding: 30px 0px; }
  #l-cta::after {
    clear: both;
    content: "";
    display: table; }
  #l-cta .l-ctaWrap {
    width: auto;
    max-width: 700px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px; }
    #l-cta .l-ctaWrap::after {
      clear: both;
      content: "";
      display: table; }
    #l-cta .l-ctaWrap .third {
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.3333333333%;
      margin-left: 0%;
      margin-right: 3%;
      text-align: center; }
      #l-cta .l-ctaWrap .third::after {
        clear: both;
        content: "";
        display: table; }
      #l-cta .l-ctaWrap .third:last-child {
        margin-right: 0%; }
      #l-cta .l-ctaWrap .third a {
        text-decoration: none;
        color: #333e48;
        -webkit-transition: all 0.15s ease-out 0s;
        -moz-transition: all 0.15s ease-out 0s;
        transition: all 0.15s ease-out 0s; }
        #l-cta .l-ctaWrap .third a:visited {
          color: #333e48; }
        #l-cta .l-ctaWrap .third a svg {
          fill: none;
          stroke: #333e48;
          stroke-linecap: round;
          stroke-linejoin: round;
          stroke-width: 3px;
          max-height: 70px;
          -webkit-transition: all 0.15s ease-out 0s;
          -moz-transition: all 0.15s ease-out 0s;
          transition: all 0.15s ease-out 0s; }
        #l-cta .l-ctaWrap .third a img {
          max-height: 70px;
          width: auto;
          margin-bottom: 10px; }
        #l-cta .l-ctaWrap .third a p {
          margin-bottom: 0;
          margin-top: 5px;
          color: #333e48; }
          #l-cta .l-ctaWrap .third a p.bold {
            font-weight: bold; }
          @media (max-width: 700px) {
            #l-cta .l-ctaWrap .third a p.detail {
              margin: -1px;
              padding: 0;
              width: 1px;
              height: 1px;
              overflow: hidden;
              clip: rect(0 0 0 0);
              clip: rect(0, 0, 0, 0);
              position: absolute; } }
        #l-cta .l-ctaWrap .third a:hover {
          color: #76c5d5; }
          #l-cta .l-ctaWrap .third a:hover svg {
            stroke: #76c5d5; }
          #l-cta .l-ctaWrap .third a:hover p {
            color: #76c5d5;
            -webkit-transition: all 0.15s ease-out 0s;
            -moz-transition: all 0.15s ease-out 0s;
            transition: all 0.15s ease-out 0s; }
      @media (max-width: 480px) {
        #l-cta .l-ctaWrap .third {
          float: left;
          clear: none;
          text-align: inherit;
          width: 24%;
          margin-left: 0%;
          margin-right: 14%;
          text-align: center;
          font-size: 14px; }
          #l-cta .l-ctaWrap .third::after {
            clear: both;
            content: "";
            display: table; }
          #l-cta .l-ctaWrap .third:last-child {
            margin-right: 0%; } }

/* Footer */
footer {
  max-width: 100%;
  width: 100%;
  background: #dbdbdb; }
  footer .l-footerWrap {
    width: auto;
    max-width: 1280px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 30px; }
    footer .l-footerWrap::after {
      clear: both;
      content: "";
      display: table; }
    footer .l-footerWrap::after {
      clear: both;
      content: "";
      display: table; }
  footer .l-details, footer .l-links {
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
    footer .l-details::after, footer .l-links::after {
      clear: both;
      content: "";
      display: table; }
    footer .l-details:last-child, footer .l-links:last-child {
      margin-right: 0%; }
    footer .l-details a:hover, footer .l-links a:hover {
      color: #c53b33; }
    footer .l-details .btn-primary:hover, footer .l-links .btn-primary:hover {
      color: white !important; }
  @media (max-width: 1130px) {
    footer .l-details {
      float: left;
      clear: none;
      text-align: inherit;
      width: 38.2%;
      margin-left: 0%;
      margin-right: 3%; }
      footer .l-details::after {
        clear: both;
        content: "";
        display: table; }
      footer .l-details:last-child {
        margin-right: 0%; } }
  @media (max-width: 980px) {
    footer .l-details {
      float: left;
      clear: none;
      text-align: inherit;
      width: 34.4545454545%;
      margin-left: 0%;
      margin-right: 3%; }
      footer .l-details::after {
        clear: both;
        content: "";
        display: table; }
      footer .l-details:last-child {
        margin-right: 0%; } }
  @media (max-width: 770px) {
    footer .l-details {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
      footer .l-details:first-child {
        margin-left: auto; }
      footer .l-details:last-child {
        margin-right: auto; } }
  footer .l-details img {
    max-width: 175px; }
  @media (max-width: 1130px) {
    footer .l-links {
      float: left;
      clear: none;
      text-align: inherit;
      width: 58.8%;
      margin-left: 0%;
      margin-right: 3%; }
      footer .l-links::after {
        clear: both;
        content: "";
        display: table; }
      footer .l-links:last-child {
        margin-right: 0%; } }
  @media (max-width: 980px) {
    footer .l-links {
      float: left;
      clear: none;
      text-align: inherit;
      width: 62.5454545455%;
      margin-left: 0%;
      margin-right: 3%; }
      footer .l-links::after {
        clear: both;
        content: "";
        display: table; }
      footer .l-links:last-child {
        margin-right: 0%; } }
  @media (max-width: 770px) {
    footer .l-links {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 30px; }
      footer .l-links:first-child {
        margin-left: auto; }
      footer .l-links:last-child {
        margin-right: auto; } }
  footer .l-links #l-badge {
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.3333333333%;
    margin-left: 0%;
    margin-right: 3%; }
    footer .l-links #l-badge::after {
      clear: both;
      content: "";
      display: table; }
    footer .l-links #l-badge:last-child {
      margin-right: 0%; }
    @media (max-width: 880px) {
      footer .l-links #l-badge {
        float: left;
        clear: none;
        text-align: inherit;
        width: 22.75%;
        margin-left: 0%;
        margin-right: 3%;
        text-align: left; }
        footer .l-links #l-badge::after {
          clear: both;
          content: "";
          display: table; }
        footer .l-links #l-badge:last-child {
          margin-right: 0%; } }
  footer .l-links .menu-primary-menu-container, footer .l-links .menu-footer-menu-container {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.3333333333%;
    margin-left: 0%;
    margin-right: 3%; }
    footer .l-links .menu-primary-menu-container::after, footer .l-links .menu-footer-menu-container::after {
      clear: both;
      content: "";
      display: table; }
    footer .l-links .menu-primary-menu-container:last-child, footer .l-links .menu-footer-menu-container:last-child {
      margin-right: 0%; }
    footer .l-links .menu-primary-menu-container ul, footer .l-links .menu-footer-menu-container ul {
      list-style-type: none;
      margin: 0;
      padding: 0; }
    @media (max-width: 880px) {
      footer .l-links .menu-primary-menu-container, footer .l-links .menu-footer-menu-container {
        float: left;
        clear: none;
        text-align: inherit;
        width: 35.625%;
        margin-left: 0%;
        margin-right: 3%;
        text-align: left; }
        footer .l-links .menu-primary-menu-container::after, footer .l-links .menu-footer-menu-container::after {
          clear: both;
          content: "";
          display: table; }
        footer .l-links .menu-primary-menu-container:last-child, footer .l-links .menu-footer-menu-container:last-child {
          margin-right: 0%; } }
    @media (max-width: 770px) {
      footer .l-links .menu-primary-menu-container:nth-last-child(1), footer .l-links .menu-footer-menu-container:nth-last-child(1) {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important; } }
    @media (max-width: 575px) {
      footer .l-links .menu-primary-menu-container, footer .l-links .menu-footer-menu-container {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        footer .l-links .menu-primary-menu-container:first-child, footer .l-links .menu-footer-menu-container:first-child {
          margin-left: auto; }
        footer .l-links .menu-primary-menu-container:last-child, footer .l-links .menu-footer-menu-container:last-child {
          margin-right: auto; } }
    footer .l-links .menu-primary-menu-container li, footer .l-links .menu-footer-menu-container li {
      margin-bottom: 10px; }
      footer .l-links .menu-primary-menu-container li a, footer .l-links .menu-footer-menu-container li a {
        text-decoration: none; }
  footer .l-links #l-mainLinks li .sub-menu {
    display: none; }
  footer .l-links #l-badge {
    text-align: center; }
    footer .l-links #l-badge img {
      max-width: 150px;
      width: 100%;
      height: auto; }
    @media (max-width: 880px) {
      footer .l-links #l-badge {
        text-align: left; } }

.socialWrap {
  width: 100%; }
  .socialWrap::after {
    clear: both;
    content: "";
    display: table; }

.smGlobalBtn {
  /* global button class */
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border: 2px solid #333e48;
  /* add border to the buttons */
  padding: 0px;
  text-decoration: none;
  text-align: center;
  color: #333e48;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.9em;
  border-radius: 28px;
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  margin-right: 5px;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s; }
  @media (max-width: 768px) {
    .smGlobalBtn {
      margin-bottom: 5px; } }

/* facebook button class*/
.facebookBtn:before {
  /* use :before to add the relevant icons */
  font-family: "FontAwesome";
  content: "\f09a";
  /* add facebook icon */ }

/* twitter button class*/
.twitterBtn:before {
  font-family: "FontAwesome";
  content: "\f099";
  /* add twitter icon */ }

/* linkedin button class*/
.linkedInBtn:before {
  font-family: "FontAwesome";
  content: "\f0e1";
  /* add linkedin icon */ }

.facebookBtn:hover, .twitterBtn:hover, .linkedInBtn:hover {
  color: #c53b33;
  border-color: #c53b33; }

/* Modules */
/* [hero] */
section.m-hero {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  margin-bottom: 150px; }
  @media (max-width: 590px) {
    section.m-hero {
      margin-bottom: 75px; } }
  section.m-hero .homePeople {
    position: absolute;
    max-width: 250px;
    right: 100px;
    bottom: -50px; }
    @media (max-width: 950px) {
      section.m-hero .homePeople {
        right: -40px;
        bottom: -145px;
        max-width: 170px; } }
    @media (max-width: 590px) {
      section.m-hero .homePeople {
        right: -70px; } }
  section.m-hero .m-heroContent {
    width: auto;
    max-width: 600px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 290px;
    padding-bottom: 130px; }
    section.m-hero .m-heroContent::after {
      clear: both;
      content: "";
      display: table; }
    section.m-hero .m-heroContent .m-heroContentImage {
      text-align: center; }
      section.m-hero .m-heroContent .m-heroContentImage .people {
        max-width: 150px;
        margin-bottom: 30px; }
    section.m-hero .m-heroContent .m-heroContentText {
      text-align: center; }
      section.m-hero .m-heroContent .m-heroContentText h3 {
        letter-spacing: 1px;
        font-size: 1.1em;
        color: #404041;
        font-weight: normal;
        margin-bottom: 15px; }
        @media (min-width: 20em) and (max-width: 30em) {
          section.m-hero .m-heroContent .m-heroContentText h3 {
            font-size: calc( 1.1em + 0 * ( ( 100vw - 20em) / 10 )); } }
        @media (min-width: 30em) and (max-width: 40em) {
          section.m-hero .m-heroContent .m-heroContentText h3 {
            font-size: calc( 1.1em + 0 * ( ( 100vw - 30em) / 10 )); } }
        @media (min-width: 40em) and (max-width: 50em) {
          section.m-hero .m-heroContent .m-heroContentText h3 {
            font-size: calc( 1.1em + 0 * ( ( 100vw - 40em) / 10 )); } }
        @media (min-width: 50em) and (max-width: 60em) {
          section.m-hero .m-heroContent .m-heroContentText h3 {
            font-size: calc( 1.1em + 0 * ( ( 100vw - 50em) / 10 )); } }
        @media (min-width: 60em) {
          section.m-hero .m-heroContent .m-heroContentText h3 {
            font-size: 1.1em; } }
    @media (max-width: 590px) {
      section.m-hero .m-heroContent {
        padding-top: 230px;
        padding-bottom: 80px; } }
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      section.m-hero .m-heroContent {
        padding-top: 240px; } }
    @media (max-width: 480px) {
      section.m-hero .m-heroContent {
        padding-top: 170px; } }
  section.m-hero#home {
    margin-bottom: 250px;
    position: relative;
    z-index: 0; }
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      section.m-hero#home {
        margin-bottom: 265px; } }
    section.m-hero#home .m-heroContent {
      width: auto;
      max-width: 845px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 40px;
      padding-right: 40px;
      padding-top: 290px;
      padding-bottom: 200px;
      text-align: left; }
      section.m-hero#home .m-heroContent::after {
        clear: both;
        content: "";
        display: table; }
      @media (max-width: 950px) {
        section.m-hero#home .m-heroContent {
          padding-top: 255px;
          padding-bottom: 140px; } }
      @media (max-width: 700px) {
        section.m-hero#home .m-heroContent {
          padding-top: 230px;
          padding-bottom: 120px; } }
      @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
        section.m-hero#home .m-heroContent {
          padding-top: 240px; } }
      @media (max-width: 480px) {
        section.m-hero#home .m-heroContent {
          padding-top: 190px; } }
      section.m-hero#home .m-heroContent .m-heroContentImage {
        float: left;
        clear: none;
        text-align: inherit;
        width: 37.7142857143%;
        margin-left: 0%;
        margin-right: 9%; }
        section.m-hero#home .m-heroContent .m-heroContentImage::after {
          clear: both;
          content: "";
          display: table; }
        section.m-hero#home .m-heroContent .m-heroContentImage:last-child {
          margin-right: 0%; }
        @media (max-width: 760px) {
          section.m-hero#home .m-heroContent .m-heroContentImage {
            display: block;
            clear: both;
            float: none;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            text-align: center; }
            section.m-hero#home .m-heroContent .m-heroContentImage:first-child {
              margin-left: auto; }
            section.m-hero#home .m-heroContent .m-heroContentImage:last-child {
              margin-right: auto; }
            section.m-hero#home .m-heroContent .m-heroContentImage img {
              max-width: 250px;
              margin-left: 39px; } }
        @media (max-width: 480px) {
          section.m-hero#home .m-heroContent .m-heroContentImage img {
            max-width: 140px;
            margin-left: 15px; } }
      section.m-hero#home .m-heroContent .m-heroContentText {
        position: relative;
        margin-top: 50px;
        float: left;
        clear: none;
        text-align: inherit;
        width: 53.2857142857%;
        margin-left: 0%;
        margin-right: 9%;
        margin-right: 0; }
        section.m-hero#home .m-heroContent .m-heroContentText::after {
          clear: both;
          content: "";
          display: table; }
        section.m-hero#home .m-heroContent .m-heroContentText:last-child {
          margin-right: 0%; }
        @media (max-width: 760px) {
          section.m-hero#home .m-heroContent .m-heroContentText {
            display: block;
            clear: both;
            float: none;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            text-align: center; }
            section.m-hero#home .m-heroContent .m-heroContentText:first-child {
              margin-left: auto; }
            section.m-hero#home .m-heroContent .m-heroContentText:last-child {
              margin-right: auto; } }
        @media (max-width: 480px) {
          section.m-hero#home .m-heroContent .m-heroContentText {
            margin-top: 20px; } }
        section.m-hero#home .m-heroContent .m-heroContentText .m-pathway {
          height: 445px;
          left: 10px;
          bottom: -460px; }
          @media (max-width: 950px) {
            section.m-hero#home .m-heroContent .m-heroContentText .m-pathway {
              height: 309px;
              bottom: -331px; } }
          @media (max-width: 760px) {
            section.m-hero#home .m-heroContent .m-heroContentText .m-pathway {
              left: 50%;
              margin-left: -10px; } }
  section.m-hero#grid .m-heroContent {
    width: auto;
    max-width: 550px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 290px;
    padding-bottom: 140px;
    position: relative; }
    section.m-hero#grid .m-heroContent::after {
      clear: both;
      content: "";
      display: table; }
    @media (max-width: 795px) {
      section.m-hero#grid .m-heroContent.about {
        padding-top: 0 !important; } }
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      section.m-hero#grid .m-heroContent.about {
        padding-top: 0 !important; } }
    @media (max-width: 768px) {
      section.m-hero#grid .m-heroContent {
        padding-top: 230px; } }
    @media (max-width: 480px) {
      section.m-hero#grid .m-heroContent {
        padding-top: 160px; } }
    section.m-hero#grid .m-heroContent .m-heroContentImage {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      margin-bottom: 30px; }
      section.m-hero#grid .m-heroContent .m-heroContentImage:first-child {
        margin-left: auto; }
      section.m-hero#grid .m-heroContent .m-heroContentImage:last-child {
        margin-right: auto; }
      section.m-hero#grid .m-heroContent .m-heroContentImage img {
        max-width: 120px; }
        section.m-hero#grid .m-heroContent .m-heroContentImage img.houseTick {
          margin-left: 25px; }
          @media (max-width: 480px) {
            section.m-hero#grid .m-heroContent .m-heroContentImage img.houseTick {
              margin-left: 27px; } }
    section.m-hero#grid .m-heroContent .m-heroContentText {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      text-align: center; }
      section.m-hero#grid .m-heroContent .m-heroContentText:first-child {
        margin-left: auto; }
      section.m-hero#grid .m-heroContent .m-heroContentText:last-child {
        margin-right: auto; }
    section.m-hero#grid .m-heroContent .m-pathway {
      margin-top: 5px;
      left: 50%;
      left: calc(50% - 3px); }

/* [Pathway] */
.m-pathway {
  height: 245px;
  width: 5px;
  background-color: #c53b33;
  display: block;
  position: absolute;
  z-index: 5; }
  @media (max-width: 480px) {
    .m-pathway {
      height: 195px; } }
  .m-pathway .m-pathwayStart, .m-pathway .m-pathwayEnd {
    width: 15px;
    height: 15px;
    display: block;
    background-color: #333e48;
    border-radius: 7px;
    position: absolute; }
  .m-pathway .m-pathwayStart {
    left: -5px;
    top: -7px;
    font-size: 13px;
    text-align: center;
    color: white; }
  .m-pathway .m-pathwayEnd {
    left: -5px;
    bottom: -14px; }

/* [Center] */
.m-center {
  width: auto;
  max-width: 700px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  margin-bottom: 75px; }
  .m-center::after {
    clear: both;
    content: "";
    display: table; }
  @media (max-width: 480px) {
    .m-center {
      margin-bottom: 30px; } }
  .m-center.intro p {
    font-size: 1.21em;
    line-height: 1.4; }
    @media (min-width: 20em) and (max-width: 30em) {
      .m-center.intro p {
        font-size: calc( 1.21em + 0.11 * ( ( 100vw - 20em) / 10 )); } }
    @media (min-width: 30em) and (max-width: 40em) {
      .m-center.intro p {
        font-size: calc( 1.32em + 0.055 * ( ( 100vw - 30em) / 10 )); } }
    @media (min-width: 40em) and (max-width: 50em) {
      .m-center.intro p {
        font-size: calc( 1.375em + 0.055 * ( ( 100vw - 40em) / 10 )); } }
    @media (min-width: 50em) and (max-width: 60em) {
      .m-center.intro p {
        font-size: calc( 1.43em + 0.088 * ( ( 100vw - 50em) / 10 )); } }
    @media (min-width: 60em) {
      .m-center.intro p {
        font-size: 1.518em; } }
  .m-center.m-programsIntro {
    margin-bottom: 150px; }
  .m-center.m-getInTouch {
    margin-bottom: 150px;
    margin-top: 150px; }
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      .m-center.m-getInTouch {
        margin-bottom: 75px;
        margin-top: 0; } }
    @media (max-width: 850px) {
      .m-center.m-getInTouch {
        margin-bottom: 75px;
        margin-top: 75px; } }

/* [Actions] */
.m-actions {
  width: auto;
  max-width: 850px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 150px; }
  .m-actions::after {
    clear: both;
    content: "";
    display: table; }
  .m-actions::after {
    clear: both;
    content: "";
    display: table; }
  .m-actions .m-action {
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.3333333333%;
    margin-left: 0%;
    margin-right: 0%;
    text-align: center;
    box-sizing: border-box;
    padding: 60px 20px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    position: relative; }
    .m-actions .m-action::after {
      clear: both;
      content: "";
      display: table; }
    .m-actions .m-action:nth-child(n) {
      float: left;
      clear: none; }
    .m-actions .m-action:nth-child(3n) {
      float: right; }
    .m-actions .m-action:nth-child(3n + 1) {
      clear: both; }
    .m-actions .m-action a {
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0; }
    .m-actions .m-action:nth-child(n + 4) {
      border-top: 1px solid #f2f2f2; }
    .m-actions .m-action:nth-child(2), .m-actions .m-action:nth-last-child(2) {
      border-left: 1px solid #f2f2f2;
      border-right: 1px solid #f2f2f2; }
    @media (max-width: 700px) {
      .m-actions .m-action {
        float: left;
        clear: none;
        text-align: inherit;
        width: 50%;
        margin-left: 0%;
        margin-right: 0%;
        text-align: center; }
        .m-actions .m-action::after {
          clear: both;
          content: "";
          display: table; }
        .m-actions .m-action:nth-child(n) {
          float: left;
          clear: none; }
        .m-actions .m-action:nth-child(2n) {
          float: right; }
        .m-actions .m-action:nth-child(2n + 1) {
          clear: both; }
        .m-actions .m-action:nth-child(n + 4) {
          border-top: none; }
        .m-actions .m-action:nth-child(2), .m-actions .m-action:nth-last-child(2) {
          border-left: none;
          border-right: none; }
        .m-actions .m-action:nth-child(-n + 4) {
          border-bottom: 1px solid #f2f2f2; }
        .m-actions .m-action:nth-child(2n) {
          border-left: 1px solid #f2f2f2; } }
    @media (max-width: 590px) {
      .m-actions .m-action {
        padding: 30px 10px; }
        .m-actions .m-action p {
          display: none; } }
    @media (max-width: 480px) {
      .m-actions .m-action h4 {
        font-size: 14px; } }
    .m-actions .m-action img, .m-actions .m-action .svg {
      width: auto;
      max-height: 100px;
      margin-bottom: 10px; }
      @media (max-width: 590px) {
        .m-actions .m-action img, .m-actions .m-action .svg {
          max-height: 70px; } }
    .m-actions .m-action .svg path {
      fill: #8f9191;
      -webkit-transition: all 0.15s ease-out 0s;
      -moz-transition: all 0.15s ease-out 0s;
      transition: all 0.15s ease-out 0s; }
    .m-actions .m-action:hover {
      background: white;
      box-shadow: 0px 10px 40px #e7e7e7;
      /*
		 	.svg {
			 	-webkit-animation: pulse 1s;
			 	animation: pulse  1s;
		 	}
*/ }
      .m-actions .m-action:hover .svg path {
        fill: #acd46f; }

main .m-actions {
  max-width: 100%;
  padding: 0;
  margin-bottom: 0; }
  main .m-actions::after {
    clear: both;
    content: "";
    display: table; }
  main .m-actions .m-action h4 {
    margin-top: 0; }
  main .m-actions .m-action .svg path {
    fill: #8f9191;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s; }
  main .m-actions .m-action:hover {
    background: white;
    box-shadow: 0px 10px 40px #e7e7e7; }
    main .m-actions .m-action:hover .svg path {
      fill: #acd46f; }

/* [Full Width] */
.m-fullWidth {
  max-width: 100%;
  width: 100%;
  padding: 130px 0px 20px 0px;
  margin-bottom: 225px;
  width: 100%;
  position: relative;
  color: white; }
  .m-fullWidth::before, .m-fullWidth::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: inherit;
    z-index: -1;
    transition: ease all .5s; }
  .m-fullWidth::before {
    top: 0;
    transform-origin: left top;
    transform: skewY(-1deg); }
  .m-fullWidth::after {
    bottom: 0;
    transform-origin: right bottom;
    transform: skewY(-1deg); }
  @media (max-width: 850px) {
    .m-fullWidth {
      margin-bottom: 75px; } }
  @media (max-width: 480px) {
    .m-fullWidth {
      padding-top: 80px; } }
  .m-fullWidth h2 {
    margin-bottom: 30px; }
  .m-fullWidth p {
    color: white; }
  .m-fullWidth a.btn-secondary {
    background: transparent;
    border: 2px solid white !important;
    color: white;
    padding: 15px 30px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    text-transform: uppercase; }
    .m-fullWidth a.btn-secondary:hover {
      color: #ebebeb;
      transition: all 0.3s ease; }
    .m-fullWidth a.btn-secondary:active, .m-fullWidth a.btn-secondary.nice-select.open {
      color: #bfbfbf; }
  .m-fullWidth.green {
    position: relative; }
    .m-fullWidth.green:after {
      background: url("../images/backgrounds/green-bg@2x.png") 100% 100% no-repeat, url("../images/backgrounds/white-icons-left@2x.png") 0px 0px no-repeat;
      background-color: #acd46f;
      background-repeat: no-repeat;
      background-size: contain; }
      @media (max-width: 780px) {
        .m-fullWidth.green:after {
          background: url("../images/backgrounds/white-icons-left@2x.png") center bottom no-repeat;
          background-color: #acd46f;
          background-repeat: no-repeat; } }
    .m-fullWidth.green a.btn-secondary:hover {
      background: white;
      border: 2px solid white !important;
      color: #acd46f;
      padding: 15px 30px;
      display: inline-block;
      text-decoration: none;
      font-weight: bold;
      border-radius: 40px;
      text-transform: uppercase;
      color: #acd46f !important; }
      .m-fullWidth.green a.btn-secondary:hover:hover {
        color: #9acb50;
        transition: all 0.3s ease; }
      .m-fullWidth.green a.btn-secondary:hover:active, .m-fullWidth.green a.btn-secondary.nice-select.open:hover {
        color: #6d972d; }
    .m-fullWidth.green h2 {
      color: #94bd55; }
      .m-fullWidth.green h2 span {
        color: white; }
        @media (max-width: 480px) {
          .m-fullWidth.green h2 span {
            font-size: 1.75rem; } }
    .m-fullWidth.green .fullWidthEye {
      position: absolute;
      top: -76px;
      left: -54px;
      max-width: 300px;
      z-index: -1; }
  .m-fullWidth.navy {
    margin-top: 75px;
    position: relative; }
    .m-fullWidth.navy:after {
      background: url("../images/backgrounds/navy-bg@2x.png") 0% 100% no-repeat, url("../images/backgrounds/white-icons-right@2x.png") 100% 100% no-repeat;
      background-color: #333e48;
      background-repeat: no-repeat;
      background-size: contain; }
      @media (max-width: 780px) {
        .m-fullWidth.navy:after {
          background: url("../images/backgrounds/white-icons-right@2x.png");
          background-color: #333e48;
          background-repeat: no-repeat;
          background-size: 80%;
          background-position: right bottom; } }
    .m-fullWidth.navy.goals:after {
      background: url("../images/backgrounds/navy-bg-staff@2x.png") 0% 100% no-repeat, url("../images/backgrounds/white-icons-right@2x.png") 100% 100% no-repeat;
      background-color: #333e48;
      background-repeat: no-repeat;
      background-size: contain; }
      @media (max-width: 780px) {
        .m-fullWidth.navy.goals:after {
          background: url("../images/backgrounds/white-icons-right@2x.png");
          background-color: #333e48;
          background-repeat: no-repeat;
          background-size: 80%;
          background-position: right bottom; } }
    .m-fullWidth.navy h2 {
      color: #263039; }
      .m-fullWidth.navy h2 span {
        color: white; }
        @media (max-width: 480px) {
          .m-fullWidth.navy h2 span {
            font-size: 1.75rem; } }
    .m-fullWidth.navy a.btn-secondary:hover {
      background: white;
      border: 2px solid white !important;
      color: #333e48;
      padding: 15px 30px;
      display: inline-block;
      text-decoration: none;
      font-weight: bold;
      border-radius: 40px;
      text-transform: uppercase;
      color: #333e48 !important; }
      .m-fullWidth.navy a.btn-secondary:hover:hover {
        color: #222930;
        transition: all 0.3s ease; }
      .m-fullWidth.navy a.btn-secondary:hover:active, .m-fullWidth.navy a.btn-secondary.nice-select.open:hover {
        color: black; }
  .m-fullWidth .m-center::after {
    clear: both;
    content: "";
    display: table; }
  .m-fullWidth .m-third {
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.3333333333%;
    margin-left: 0%;
    margin-right: 3%; }
    .m-fullWidth .m-third::after {
      clear: both;
      content: "";
      display: table; }
    .m-fullWidth .m-third:last-child {
      margin-right: 0%; }
    @media (max-width: 820px) {
      .m-fullWidth .m-third {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px; }
        .m-fullWidth .m-third:first-child {
          margin-left: auto; }
        .m-fullWidth .m-third:last-child {
          margin-right: auto; }
        .m-fullWidth .m-third p {
          max-width: 270px;
          margin-left: auto;
          margin-right: auto; }
        .m-fullWidth .m-third:nth-last-child(-n + 1) {
          margin-bottom: 50px; } }
    .m-fullWidth .m-third h3 {
      font-size: 1.4641em; }
      @media (min-width: 20em) and (max-width: 30em) {
        .m-fullWidth .m-third h3 {
          font-size: calc( 1.4641em + 0.4367 * ( ( 100vw - 20em) / 10 )); } }
      @media (min-width: 30em) and (max-width: 40em) {
        .m-fullWidth .m-third h3 {
          font-size: calc( 1.9008em + 0.2476375 * ( ( 100vw - 30em) / 10 )); } }
      @media (min-width: 40em) and (max-width: 50em) {
        .m-fullWidth .m-third h3 {
          font-size: calc( 2.1484375em + 0.2682625 * ( ( 100vw - 40em) / 10 )); } }
      @media (min-width: 50em) and (max-width: 60em) {
        .m-fullWidth .m-third h3 {
          font-size: calc( 2.4167em + 0.4741792 * ( ( 100vw - 50em) / 10 )); } }
      @media (min-width: 60em) {
        .m-fullWidth .m-third h3 {
          font-size: 2.8908792em; } }
    .m-fullWidth .m-third p {
      margin: 0 auto; }

/* [Slideshow] */
.slide {
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 75px;
  margin-bottom: 225px; }
  @media (max-width: 850px) {
    .slide {
      margin-bottom: 75px;
      padding-bottom: 15px; } }
  .slide .m-center {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important; }
  .slide .link {
    position: absolute;
    max-width: 900px;
    right: -450px;
    bottom: -115px; }
    @media (max-width: 850px) {
      .slide .link {
        max-width: 600px;
        right: -200px;
        bottom: auto;
        top: 400px; } }
    @media (max-width: 700px) {
      .slide .link {
        max-width: 500px;
        right: -250px;
        bottom: auto;
        top: 354px; } }
    @media (max-width: 1320px) {
      .slide .link.about {
        max-width: 800px;
        bottom: -104px; } }
    @media (max-width: 1100px) {
      .slide .link.about {
        max-width: 700px;
        bottom: -94px; } }
    @media (max-width: 950px) {
      .slide .link.about {
        max-width: 700px;
        bottom: -35px;
        right: -317px; } }
    @media (max-width: 850px) {
      .slide .link.about {
        max-width: 700px;
        top: 47px;
        right: -277px; } }
  .slide .wrapper {
    padding-left: 0px;
    padding-right: 0px; }
    .slide .wrapper ul.rslides li.m-slideshowItem .m-slideshowContent h2 {
      margin-bottom: 15px; }

.rslides {
  position: relative;
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0; }

.rslides li.m-slideshowItem {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0; }

.rslides li.slideshowItem:first-child {
  position: relative;
  display: block;
  float: left; }

.m-slideshowContainer {
  width: 100%;
  margin-bottom: 150px; }
  .m-slideshowContainer .m-slideshowItem {
    padding-bottom: 75px;
    box-sizing: border-box;
    padding-right: 30px; }
    .m-slideshowContainer .m-slideshowItem::after {
      clear: both;
      content: "";
      display: table; }
    @media (max-width: 850px) {
      .m-slideshowContainer .m-slideshowItem {
        padding-right: 0px; } }
    .m-slideshowContainer .m-slideshowItem .m-slideshowImage, .m-slideshowContainer .m-slideshowItem .m-slideshowContent {
      float: left;
      clear: none;
      text-align: inherit;
      width: 48.5%;
      margin-left: 0%;
      margin-right: 3%; }
      .m-slideshowContainer .m-slideshowItem .m-slideshowImage::after, .m-slideshowContainer .m-slideshowItem .m-slideshowContent::after {
        clear: both;
        content: "";
        display: table; }
      .m-slideshowContainer .m-slideshowItem .m-slideshowImage:last-child, .m-slideshowContainer .m-slideshowItem .m-slideshowContent:last-child {
        margin-right: 0%; }
    .m-slideshowContainer .m-slideshowItem .m-slideshowImage {
      position: relative;
      left: 51.5%; }
      @media (max-width: 980px) {
        .m-slideshowContainer .m-slideshowItem .m-slideshowImage {
          float: left;
          clear: none;
          text-align: inherit;
          width: 58.8%;
          margin-left: 0%;
          margin-right: 3%;
          position: relative;
          left: 41.2%; }
          .m-slideshowContainer .m-slideshowItem .m-slideshowImage::after {
            clear: both;
            content: "";
            display: table; }
          .m-slideshowContainer .m-slideshowItem .m-slideshowImage:last-child {
            margin-right: 0%; } }
      @media (max-width: 850px) {
        .m-slideshowContainer .m-slideshowItem .m-slideshowImage {
          position: static;
          left: 0;
          display: block;
          clear: both;
          float: none;
          width: 100%;
          margin-left: auto;
          margin-right: auto; }
          .m-slideshowContainer .m-slideshowItem .m-slideshowImage:first-child {
            margin-left: auto; }
          .m-slideshowContainer .m-slideshowItem .m-slideshowImage:last-child {
            margin-right: auto; } }
      .m-slideshowContainer .m-slideshowItem .m-slideshowImage img {
        box-shadow: 0px 18px 49px #989898; }
    .m-slideshowContainer .m-slideshowItem .m-slideshowContent {
      position: relative;
      left: -51.5%;
      padding-top: 55px; }
      @media (max-width: 980px) {
        .m-slideshowContainer .m-slideshowItem .m-slideshowContent {
          float: left;
          clear: none;
          text-align: inherit;
          width: 38.2%;
          margin-left: 0%;
          margin-right: 3%;
          position: relative;
          left: -61.8%; }
          .m-slideshowContainer .m-slideshowItem .m-slideshowContent::after {
            clear: both;
            content: "";
            display: table; }
          .m-slideshowContainer .m-slideshowItem .m-slideshowContent:last-child {
            margin-right: 0%; } }
      @media (max-width: 850px) {
        .m-slideshowContainer .m-slideshowItem .m-slideshowContent {
          position: static;
          left: 0;
          display: block;
          clear: both;
          float: none;
          width: 100%;
          margin-left: auto;
          margin-right: auto;
          padding-top: 40px;
          text-align: center !important; }
          .m-slideshowContainer .m-slideshowItem .m-slideshowContent:first-child {
            margin-left: auto; }
          .m-slideshowContainer .m-slideshowItem .m-slideshowContent:last-child {
            margin-right: auto; } }

/* [Indicators] */
ul.numbers {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  position: absolute;
  top: 10px;
  z-index: 3; }
  @media (max-width: 850px) {
    ul.numbers {
      position: relative;
      top: auto;
      text-align: center; } }
  ul.numbers li {
    display: inline-block;
    box-sizing: border-box;
    padding: 5px 10px;
    border-radius: 30px;
    border: 1px solid #c3c5c5;
    color: #c3c5c5;
    margin-right: 5px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s; }
    ul.numbers li a {
      text-decoration: none;
      color: #c3c5c5; }
    ul.numbers li:hover {
      border-color: #acd46f; }
      ul.numbers li:hover a {
        color: #acd46f; }
        ul.numbers li:hover a:hover {
          color: #acd46f; }
    ul.numbers li.rslides_here, ul.numbers li.story_here, ul.numbers li.slideshow_here {
      color: #acd46f;
      border-color: #acd46f; }
      ul.numbers li.rslides_here a, ul.numbers li.story_here a, ul.numbers li.slideshow_here a {
        color: #acd46f; }
        ul.numbers li.rslides_here a:visited, ul.numbers li.story_here a:visited, ul.numbers li.slideshow_here a:visited {
          color: #acd46f; }

/* [Stories] */
.m-storiesWrapper {
  width: auto;
  max-width: 980px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  position: relative; }
  .m-storiesWrapper::after {
    clear: both;
    content: "";
    display: table; }
  .m-storiesWrapper ul.numbers {
    left: 54%; }
    @media (max-width: 590px) {
      .m-storiesWrapper ul.numbers {
        position: relative;
        left: auto;
        top: -55px; } }

.m-storiesContainer {
  width: 100%;
  margin-bottom: 225px; }
  @media (max-width: 850px) {
    .m-storiesContainer {
      margin-bottom: 75px; } }
  .m-storiesContainer::after {
    clear: both;
    content: "";
    display: table; }
  .m-storiesContainer .m-storiesImage {
    float: left;
    clear: none;
    text-align: inherit;
    width: 46%;
    margin-left: 0%;
    margin-right: 8%;
    position: relative; }
    .m-storiesContainer .m-storiesImage::after {
      clear: both;
      content: "";
      display: table; }
    .m-storiesContainer .m-storiesImage:last-child {
      margin-right: 0%; }
    @media (max-width: 590px) {
      .m-storiesContainer .m-storiesImage {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center; }
        .m-storiesContainer .m-storiesImage:first-child {
          margin-left: auto; }
        .m-storiesContainer .m-storiesImage:last-child {
          margin-right: auto; } }
    .m-storiesContainer .m-storiesImage img {
      box-shadow: 0px 18px 49px #989898;
      z-index: 1;
      position: relative; }
      @media (max-width: 590px) {
        .m-storiesContainer .m-storiesImage img {
          max-width: 70%; } }
    .m-storiesContainer .m-storiesImage .m-storiesBgElement {
      background-image: url(../images/graphics/white-icon-pattern.png);
      background-repeat: repeat-x;
      background-size: contain;
      display: block;
      height: 100%;
      padding: 80px 0;
      width: 3000px;
      position: absolute;
      right: 50%;
      top: -80px;
      z-index: 0; }
      @media (max-width: 590px) {
        .m-storiesContainer .m-storiesImage .m-storiesBgElement {
          padding: 45px 0;
          top: -45px; } }
      .m-storiesContainer .m-storiesImage .m-storiesBgElement.green {
        background-color: #acd46f; }
      .m-storiesContainer .m-storiesImage .m-storiesBgElement.blue {
        background-color: #76c5d5;
        background-position-x: 300px; }
      .m-storiesContainer .m-storiesImage .m-storiesBgElement.red {
        background-color: #c53b33;
        background-position-x: 450px; }
  .m-storiesContainer .m-storiesContent {
    float: left;
    clear: none;
    text-align: inherit;
    width: 46%;
    margin-left: 0%;
    margin-right: 8%;
    padding-top: 55px; }
    .m-storiesContainer .m-storiesContent::after {
      clear: both;
      content: "";
      display: table; }
    .m-storiesContainer .m-storiesContent:last-child {
      margin-right: 0%; }
    @media (max-width: 590px) {
      .m-storiesContainer .m-storiesContent {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-top: 90px; }
        .m-storiesContainer .m-storiesContent:first-child {
          margin-left: auto; }
        .m-storiesContainer .m-storiesContent:last-child {
          margin-right: auto; } }

.story__video {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto; }
  @media (max-width: 850px) {
    .story__video {
      padding-bottom: 75px; } }

.video__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 0;
  height: 0;
  box-shadow: 0px 18px 49px #989898; }
  .video__wrapper iframe, .video__wrapper .video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.video__wrapper .video__overlay {
  background: #76c5d5;
  opacity: 0.8; }
  .video__wrapper .video__overlay i {
    display: inline-block;
    position: absolute;
    height: 100px;
    width: 100px;
    font-size: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px); }
    @media (max-width: 850px) {
      .video__wrapper .video__overlay i {
        height: 76px;
        width: 76px;
        font-size: 76px;
        top: calc(50% - 38px);
        left: calc(50% - 38px); } }
    @media (max-width: 500px) {
      .video__wrapper .video__overlay i {
        height: 50px;
        width: 50px;
        font-size: 50px;
        top: calc(50% - 25px);
        left: calc(50% - 25px); } }

/* [Dual Message] */
.m-dualMessage {
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
  margin-bottom: 150px; }
  .m-dualMessage::after {
    clear: both;
    content: "";
    display: table; }
  @media (max-width: 850px) {
    .m-dualMessage {
      margin-bottom: 75px; } }
  .m-dualMessage .m-dualMessageHalf {
    float: left;
    clear: none;
    text-align: inherit;
    width: 46%;
    margin-left: 0%;
    margin-right: 8%;
    box-sizing: border-box;
    position: relative;
    padding: 50px 0px; }
    .m-dualMessage .m-dualMessageHalf::after {
      clear: both;
      content: "";
      display: table; }
    .m-dualMessage .m-dualMessageHalf:last-child {
      margin-right: 0%; }
    .m-dualMessage .m-dualMessageHalf:first-child:after {
      content: '';
      width: 0;
      height: 100%;
      position: absolute;
      border-right: 1px solid #f2f2f2;
      top: 0;
      left: 108%; }
    @media (max-width: 600px) {
      .m-dualMessage .m-dualMessageHalf {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        .m-dualMessage .m-dualMessageHalf:first-child {
          margin-left: auto; }
        .m-dualMessage .m-dualMessageHalf:last-child {
          margin-right: auto; }
        .m-dualMessage .m-dualMessageHalf:first-child:after {
          border-right: none !important; } }

/* [Staff] */
.m-staffPeople {
  max-width: 140px;
  margin-bottom: 30px; }
  @media (max-width: 590px) {
    .m-staffPeople {
      max-width: 90px;
      margin-top: 15px;
      margin-bottom: 15px; } }

.m-director {
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px; }
  .m-director::after {
    clear: both;
    content: "";
    display: table; }
  .m-director::after {
    clear: both;
    content: "";
    display: table; }
  .m-director .m-directorImage {
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
    .m-director .m-directorImage::after {
      clear: both;
      content: "";
      display: table; }
    .m-director .m-directorImage:last-child {
      margin-right: 0%; }
    @media (max-width: 670px) {
      .m-director .m-directorImage {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center; }
        .m-director .m-directorImage:first-child {
          margin-left: auto; }
        .m-director .m-directorImage:last-child {
          margin-right: auto; }
        .m-director .m-directorImage .circle {
          width: 208px;
          height: 208px;
          padding: 0;
          margin: auto; } }
  .m-director .m-directorContent {
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: left !important;
    padding-top: 30px; }
    .m-director .m-directorContent::after {
      clear: both;
      content: "";
      display: table; }
    .m-director .m-directorContent:last-child {
      margin-right: 0%; }
    .m-director .m-directorContent h6 {
      margin-bottom: 15px; }
    @media (max-width: 670px) {
      .m-director .m-directorContent {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        padding-top: 10px; }
        .m-director .m-directorContent:first-child {
          margin-left: auto; }
        .m-director .m-directorContent:last-child {
          margin-right: auto; }
        .m-director .m-directorContent h5, .m-director .m-directorContent h6, .m-director .m-directorContent p {
          text-align: center; } }

#m-staff {
  margin-bottom: 150px; }
  @media (max-width: 850px) {
    #m-staff {
      margin-bottom: 75px; } }
  #m-staff .m-staffMember {
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 45px; }
    #m-staff .m-staffMember::after {
      clear: both;
      content: "";
      display: table; }
    #m-staff .m-staffMember:nth-child(n) {
      margin-right: 3%;
      float: left;
      clear: none; }
    #m-staff .m-staffMember:nth-child(4n) {
      margin-right: 0%;
      float: right; }
    #m-staff .m-staffMember:nth-child(4n + 1) {
      clear: both; }
    @media (max-width: 768px) {
      #m-staff .m-staffMember {
        float: left;
        clear: none;
        text-align: inherit;
        width: 31.3333333333%;
        margin-left: 0%;
        margin-right: 3%; }
        #m-staff .m-staffMember::after {
          clear: both;
          content: "";
          display: table; }
        #m-staff .m-staffMember:nth-child(n) {
          margin-right: 3%;
          float: left;
          clear: none; }
        #m-staff .m-staffMember:nth-child(3n) {
          margin-right: 0%;
          float: right; }
        #m-staff .m-staffMember:nth-child(3n + 1) {
          clear: both; } }
    @media (max-width: 590px) {
      #m-staff .m-staffMember {
        float: left;
        clear: none;
        text-align: inherit;
        width: 48.5%;
        margin-left: 0%;
        margin-right: 3%;
        margin-bottom: 30px; }
        #m-staff .m-staffMember::after {
          clear: both;
          content: "";
          display: table; }
        #m-staff .m-staffMember:nth-child(n) {
          margin-right: 3%;
          float: left;
          clear: none; }
        #m-staff .m-staffMember:nth-child(2n) {
          margin-right: 0%;
          float: right; }
        #m-staff .m-staffMember:nth-child(2n + 1) {
          clear: both; } }
    #m-staff .m-staffMember h5, #m-staff .m-staffMember h6 {
      text-align: center; }
    @media (max-width: 670px) {
      #m-staff .m-staffMember h5 {
        font-size: 1.1875rem;
        letter-spacing: 1px; } }

.m-staffMember .circle, .m-directorImage .circle, .m-directorContent .circle {
  position: relative;
  border-radius: 50%;
  width: 100%;
  height: auto;
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
  box-sizing: border-box;
  border: 8px solid #f2f2f2;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s; }
  @media (max-width: 590px) {
    .m-staffMember .circle, .m-directorImage .circle, .m-directorContent .circle {
      padding-top: 96%; } }

.m-staffMember h5, .m-directorImage h5, .m-directorContent h5 {
  font-size: 1.4375rem;
  letter-spacing: 2px;
  margin-top: 10px;
  color: #333e48;
  margin-bottom: 4px; }

.m-staffMember h6, .m-directorImage h6, .m-directorContent h6 {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #acd46f; }

/* [Roadmap] */
.m-roadmap {
  width: auto;
  max-width: 600px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  overflow: auto;
  margin-top: 15px;
  margin-bottom: 150px; }
  .m-roadmap::after {
    clear: both;
    content: "";
    display: table; }
  .m-roadmap::after {
    clear: both;
    content: "";
    display: table; }
  @media (max-width: 850px) {
    .m-roadmap {
      margin-bottom: 75px; } }
  @media (max-width: 480px) {
    .m-roadmap {
      margin-bottom: 15px; } }
  .m-roadmap hr.horizontalLine {
    margin-top: 0px;
    margin-bottom: 0px;
    position: absolute;
    width: 350px;
    left: 50%;
    margin-left: -175px;
    top: 50px; }
    @media (max-width: 535px) {
      .m-roadmap hr.horizontalLine {
        top: 36px; } }
    @media (max-width: 480px) {
      .m-roadmap hr.horizontalLine {
        width: 250px;
        margin-left: -125px;
        top: 28px; } }
  .m-roadmap .m-roadmapStep {
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.6666666667%;
    margin-left: 0%;
    margin-right: 16%;
    text-align: center;
    background: white;
    position: relative;
    /*
			@include first(1) {
				&:after {
					content: "";
					display: block;
					border-top: solid 1px $gray-line;
					width: 500px;
					height: 1px;
					position: absolute;
					top: 35%;
					z-index: -1;
					left: 15%;
				}
			}
*/ }
    .m-roadmap .m-roadmapStep::after {
      clear: both;
      content: "";
      display: table; }
    .m-roadmap .m-roadmapStep:last-child {
      margin-right: 0%; }
    .m-roadmap .m-roadmapStep img {
      margin-bottom: 15px;
      max-height: 100px;
      width: auto; }
      @media (max-width: 535px) {
        .m-roadmap .m-roadmapStep img {
          max-height: 72px;
          width: auto; } }
    @media (max-width: 480px) {
      .m-roadmap .m-roadmapStep p {
        font-size: 14px;
        line-height: 17px; } }
    .m-roadmap .m-roadmapStep p a {
      text-decoration: none; }

/* [Steps] */
.m-steps {
  width: auto;
  max-width: 1280px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px; }
  .m-steps::after {
    clear: both;
    content: "";
    display: table; }
  .m-steps::after {
    clear: both;
    content: "";
    display: table; }
  .m-steps .m-stepsImg, .m-steps .m-stepsContent {
    float: left;
    clear: none;
    text-align: inherit;
    width: 46%;
    margin-left: 0%;
    margin-right: 8%; }
    .m-steps .m-stepsImg::after, .m-steps .m-stepsContent::after {
      clear: both;
      content: "";
      display: table; }
    .m-steps .m-stepsImg:last-child, .m-steps .m-stepsContent:last-child {
      margin-right: 0%; }
  .m-steps .m-stepsImg {
    text-align: center; }
    .m-steps .m-stepsImg img {
      max-height: 520px;
      width: auto; }
    @media (max-width: 950px) {
      .m-steps .m-stepsImg {
        float: left;
        clear: none;
        text-align: inherit;
        width: 36.4%;
        margin-left: 0%;
        margin-right: 6%; }
        .m-steps .m-stepsImg::after {
          clear: both;
          content: "";
          display: table; }
        .m-steps .m-stepsImg:last-child {
          margin-right: 0%; } }
    @media (max-width: 768px) {
      .m-steps .m-stepsImg {
        float: left;
        clear: none;
        text-align: inherit;
        width: 15.2%;
        margin-left: 0%;
        margin-right: 6%; }
        .m-steps .m-stepsImg::after {
          clear: both;
          content: "";
          display: table; }
        .m-steps .m-stepsImg:last-child {
          margin-right: 0%; } }
    @media (max-width: 590px) {
      .m-steps .m-stepsImg {
        margin: -1px;
        padding: 0;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip: rect(0, 0, 0, 0);
        position: absolute; } }
    .m-steps .m-stepsImg .stepImg {
      max-height: 400px;
      display: inline-block;
      max-width: 400px;
      margin: auto;
      width: 100%;
      margin-right: 40px; }
      @media (max-width: 960px) {
        .m-steps .m-stepsImg .stepImg {
          margin-right: 0px !important; } }
      .m-steps .m-stepsImg .stepImg .circle {
        position: relative;
        border-radius: 50%;
        width: 100%;
        max-height: 400px;
        max-width: 400px;
        height: auto;
        padding-top: 100%;
        background-size: cover;
        background-position: center center;
        box-sizing: border-box;
        border: 8px solid #f2f2f2;
        -webkit-transition: all 0.15s ease-out 0s;
        -moz-transition: all 0.15s ease-out 0s;
        transition: all 0.15s ease-out 0s;
        box-shadow: 0px 12px 30px #989898;
        margin-top: -10px; }
        @media (max-width: 770px) {
          .m-steps .m-stepsImg .stepImg .circle {
            padding-top: 96%;
            border: 4px solid #f2f2f2; } }
  .m-steps .m-stepsContent {
    padding-top: 30px; }
    @media (max-width: 950px) {
      .m-steps .m-stepsContent {
        float: left;
        clear: none;
        text-align: inherit;
        width: 57.6%;
        margin-left: 0%;
        margin-right: 6%; }
        .m-steps .m-stepsContent::after {
          clear: both;
          content: "";
          display: table; }
        .m-steps .m-stepsContent:last-child {
          margin-right: 0%; } }
    @media (max-width: 768px) {
      .m-steps .m-stepsContent {
        float: left;
        clear: none;
        text-align: inherit;
        width: 78.8%;
        margin-left: 0%;
        margin-right: 6%;
        padding-top: 0px; }
        .m-steps .m-stepsContent::after {
          clear: both;
          content: "";
          display: table; }
        .m-steps .m-stepsContent:last-child {
          margin-right: 0%; } }
    @media (max-width: 590px) {
      .m-steps .m-stepsContent {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        .m-steps .m-stepsContent:first-child {
          margin-left: auto; }
        .m-steps .m-stepsContent:last-child {
          margin-right: auto; } }
    .m-steps .m-stepsContent ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      margin-top: 30px;
      margin-bottom: 15px; }
      .m-steps .m-stepsContent ul::after {
        clear: both;
        content: "";
        display: table; }
      .m-steps .m-stepsContent ul li {
        float: left;
        clear: none;
        text-align: inherit;
        width: 48%;
        margin-left: 0%;
        margin-right: 4%;
        background-image: url("../images/icons/application-icon@2x.png");
        background-repeat: no-repeat;
        background-position: left top;
        background-size: 65px;
        padding-left: 80px;
        box-sizing: border-box;
        padding-top: 10px;
        -webkit-transition: all 0.15s ease-out 0s;
        -moz-transition: all 0.15s ease-out 0s;
        transition: all 0.15s ease-out 0s; }
        .m-steps .m-stepsContent ul li::after {
          clear: both;
          content: "";
          display: table; }
        .m-steps .m-stepsContent ul li:last-child {
          margin-right: 0%; }
        @media (max-width: 600px) {
          .m-steps .m-stepsContent ul li {
            display: block;
            clear: both;
            float: none;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 15px; }
            .m-steps .m-stepsContent ul li:first-child {
              margin-left: auto; }
            .m-steps .m-stepsContent ul li:last-child {
              margin-right: auto; } }
        .m-steps .m-stepsContent ul li:hover {
          background-image: url("../images/icons/application-hover-icon@2x.png"); }
          .m-steps .m-stepsContent ul li:hover h5, .m-steps .m-stepsContent ul li:hover p {
            color: #acd46f; }
        .m-steps .m-stepsContent ul li h5, .m-steps .m-stepsContent ul li p {
          color: #8f9191;
          -webkit-transition: all 0.15s ease-out 0s;
          -moz-transition: all 0.15s ease-out 0s;
          transition: all 0.15s ease-out 0s; }
        .m-steps .m-stepsContent ul li h5 {
          font-weight: normal;
          font-size: 1.1em;
          letter-spacing: 1px;
          margin-bottom: 0;
          padding-bottom: 0; }
          @media (min-width: 20em) and (max-width: 30em) {
            .m-steps .m-stepsContent ul li h5 {
              font-size: calc( 1.1em + 0 * ( ( 100vw - 20em) / 10 )); } }
          @media (min-width: 30em) and (max-width: 40em) {
            .m-steps .m-stepsContent ul li h5 {
              font-size: calc( 1.1em + 0 * ( ( 100vw - 30em) / 10 )); } }
          @media (min-width: 40em) and (max-width: 50em) {
            .m-steps .m-stepsContent ul li h5 {
              font-size: calc( 1.1em + 0 * ( ( 100vw - 40em) / 10 )); } }
          @media (min-width: 50em) and (max-width: 60em) {
            .m-steps .m-stepsContent ul li h5 {
              font-size: calc( 1.1em + 0 * ( ( 100vw - 50em) / 10 )); } }
          @media (min-width: 60em) {
            .m-steps .m-stepsContent ul li h5 {
              font-size: 1.1em; } }
        .m-steps .m-stepsContent ul li p {
          font-size: 13px; }

/* [Forms] */
form input {
  margin-bottom: 15px;
  apple-appearance: none; }

form input[type=text], form input[type=email] {
  border-radius: 30px;
  border: 1px solid #f2f2f2;
  padding: 16px 24px;
  apple-appearance: none;
  width: 100%;
  box-sizing: border-box;
  color: #8f9191;
  text-align: left; }
  form input[type=text].half, form input[type=email].half {
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: left; }
    form input[type=text].half::after, form input[type=email].half::after {
      clear: both;
      content: "";
      display: table; }
    form input[type=text].half:nth-child(n), form input[type=email].half:nth-child(n) {
      margin-right: 3%;
      float: left;
      clear: none; }
    form input[type=text].half:nth-child(2n), form input[type=email].half:nth-child(2n) {
      margin-right: 0%;
      float: right; }
    form input[type=text].half:nth-child(2n + 1), form input[type=email].half:nth-child(2n + 1) {
      clear: both; }
    @media (max-width: 590px) {
      form input[type=text].half, form input[type=email].half {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        form input[type=text].half:first-child, form input[type=email].half:first-child {
          margin-left: auto; }
        form input[type=text].half:last-child, form input[type=email].half:last-child {
          margin-right: auto; } }
  form input[type=text]:focus, form input[type=email]:focus {
    border: 1px solid #acd46f;
    outline: none;
    color: #8f9191; }

form textarea {
  border-radius: 10px;
  min-height: 100px;
  border: 1px solid #f2f2f2;
  padding: 16px 24px;
  apple-appearance: none;
  width: 100%;
  box-sizing: border-box;
  color: #8f9191;
  text-align: left;
  margin-bottom: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  form textarea:focus {
    border: 1px solid #acd46f;
    outline: none;
    color: #8f9191; }

form ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }
  form ul li {
    clear: both; }
  form ul li.half {
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: left; }
    form ul li.half::after {
      clear: both;
      content: "";
      display: table; }
    form ul li.half:nth-child(n) {
      margin-right: 3%;
      float: left;
      clear: none; }
    form ul li.half:nth-child(2n) {
      margin-right: 0%;
      float: right; }
    form ul li.half:nth-child(2n + 1) {
      clear: both; }
    @media (max-width: 590px) {
      form ul li.half {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        form ul li.half:first-child {
          margin-left: auto; }
        form ul li.half:last-child {
          margin-right: auto; } }
    form ul li.half:nth-last-child(-n + 1) {
      margin-right: 0; }
  form ul label {
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    position: absolute; }

form .formNames {
  width: 100%;
  overflow: auto;
  padding-top: 15px; }
  form .formNames::after {
    clear: both;
    content: "";
    display: table; }
  form .formNames ul {
    list-style-type: none; }

form#gform_wrapper_7 {
  color: white !important; }
  form#gform_wrapper_7 ul li label {
    margin: auto;
    padding: auto;
    width: auto;
    height: auto;
    overflow: auto;
    position: relative;
    font-size: 14px;
    color: white; }

#gform_fields_7 .address_city {
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%; }
  #gform_fields_7 .address_city::after {
    clear: both;
    content: "";
    display: table; }
  #gform_fields_7 .address_city:last-child {
    margin-right: 0%; }

#gform_fields_7 .address_state {
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-right: 0; }
  #gform_fields_7 .address_state::after {
    clear: both;
    content: "";
    display: table; }
  #gform_fields_7 .address_state:last-child {
    margin-right: 0%; }

#gform_fields_7 .address_zip {
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%; }
  #gform_fields_7 .address_zip::after {
    clear: both;
    content: "";
    display: table; }
  #gform_fields_7 .address_zip:last-child {
    margin-right: 0%; }

#gform_fields_7 .address_country {
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-right: 0; }
  #gform_fields_7 .address_country::after {
    clear: both;
    content: "";
    display: table; }
  #gform_fields_7 .address_country:last-child {
    margin-right: 0%; }
  #gform_fields_7 .address_country .nice-select {
    width: 100%;
    max-width: 100%; }
    #gform_fields_7 .address_country .nice-select ul.list {
      width: 100%; }

#gform_fields_7 .gfield_error, #gform_fields_7 .gfield_creditcard_warning_message, #gform_fields_7 .gform_confirmation_wrapper_7 {
  background: #369baf;
  box-sizing: border-box;
  padding: 15px;
  border-radius: 10px;
  color: white;
  margin: 30px 0; }

#gform_fields_7 .gfield_error .gfield_creditcard_warning_message {
  padding: 0;
  margin: 0 0 15px 0; }

#gform_fields_7 .ginput_complex::after {
  clear: both;
  content: "";
  display: table; }

#gform_fields_7 .donationAmountIntro {
  color: white;
  margin-bottom: 15px;
  display: block; }
  #gform_fields_7 .donationAmountIntro p {
    color: white; }
  #gform_fields_7 .donationAmountIntro h4 {
    color: #333e48;
    font-weight: bold;
    margin-bottom: 5px; }

#gform_fields_7 li.half {
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: left; }
  #gform_fields_7 li.half::after {
    clear: both;
    content: "";
    display: table; }
  #gform_fields_7 li.half:last-child {
    margin-right: 0%; }
  @media (max-width: 590px) {
    #gform_fields_7 li.half {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
      #gform_fields_7 li.half:first-child {
        margin-left: auto; }
      #gform_fields_7 li.half:last-child {
        margin-right: auto; } }

#gform_fields_7 #field_7_2 {
  margin-right: 0; }

#gform_fields_7 #field_7_7 {
  padding-top: 20px; }

#gform_fields_7 .ginput_total.ginput_total_7 {
  color: white;
  font-size: 32px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding: 5px 0;
  margin: 10px 0 20px 0;
  display: block; }

#gform_fields_7 .gform_card_icon_container {
  margin: 20px 0 10px 0; }

#gform_fields_7 .gform_card_icon_mastercard, #gform_fields_7 .gform_card_icon_visa {
  width: 50px;
  height: 31px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -2500px;
  display: inline-block;
  margin-right: 5px; }

#gform_fields_7 .gform_card_icon_mastercard {
  background-image: url("../images/icons/MasterCard.png"); }

#gform_fields_7 .gform_card_icon_visa {
  background-image: url("../images/icons/Visa.png"); }

#gform_7 .gform_footer {
  text-align: right; }

.ginput_cardextras {
  display: block; }
  .ginput_cardextras::after {
    clear: both;
    content: "";
    display: table; }

.ginput_cardinfo_left, .ginput_cardinfo_right {
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  display: block; }
  .ginput_cardinfo_left::after, .ginput_cardinfo_right::after {
    clear: both;
    content: "";
    display: table; }
  .ginput_cardinfo_left:last-child, .ginput_cardinfo_right:last-child {
    margin-right: 0%; }
  @media (max-width: 530px) {
    .ginput_cardinfo_left, .ginput_cardinfo_right {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
      .ginput_cardinfo_left:first-child, .ginput_cardinfo_right:first-child {
        margin-left: auto; }
      .ginput_cardinfo_left:last-child, .ginput_cardinfo_right:last-child {
        margin-right: auto; } }

.ginput_cardinfo_left .ginput_card_expiration_month, .ginput_cardinfo_left .ginput_card_expiration_year {
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  box-sizing: border-box; }
  .ginput_cardinfo_left .ginput_card_expiration_month::after, .ginput_cardinfo_left .ginput_card_expiration_year::after {
    clear: both;
    content: "";
    display: table; }
  .ginput_cardinfo_left .ginput_card_expiration_month:last-child, .ginput_cardinfo_left .ginput_card_expiration_year:last-child {
    margin-right: 0%; }

.ginput_cardinfo_left .ginput_card_expiration_year {
  margin-right: 0; }

/* [Support] */
#support {
  padding-top: 210px;
  margin-bottom: 150px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 150px; }
  #support::after {
    clear: both;
    content: "";
    display: table; }
  @media (max-width: 850px) {
    #support {
      margin-bottom: 75px;
      padding-bottom: 75px; } }
  @media (max-width: 600px) {
    #support {
      padding-top: 166px; } }
  #support aside .dropdown button.btn-secondary {
    margin-top: 0; }

aside {
  float: left;
  clear: none;
  text-align: inherit;
  width: 22.8571428571%;
  margin-left: 0%;
  margin-right: 8%;
  background: #f2f2f2;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  box-sizing: border-box;
  padding: 35px 40px 40px; }
  aside::after {
    clear: both;
    content: "";
    display: table; }
  aside:last-child {
    margin-right: 0%; }
  aside.abNav {
    display: none; }
    @media (max-width: 795px) {
      aside.abNav {
        display: block;
        padding: 145px 40px 0px 40px; } }
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      aside.abNav {
        display: block;
        padding: 145px 40px 0px 40px; } }
  @media (max-width: 1035px) {
    aside {
      float: left;
      clear: none;
      text-align: inherit;
      width: 30.6666666667%;
      margin-left: 0%;
      margin-right: 4%; }
      aside::after {
        clear: both;
        content: "";
        display: table; }
      aside:last-child {
        margin-right: 0%; } }
  @media (max-width: 820px) {
    aside {
      padding: 30px; } }
  @media (max-width: 795px) {
    aside {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      background: transparent;
      padding: 0;
      border-radius: 0;
      margin-bottom: 0px; }
      aside:first-child {
        margin-left: auto; }
      aside:last-child {
        margin-right: auto; } }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    aside {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      background: transparent;
      padding: 0;
      border-radius: 0;
      margin-bottom: 0px; }
      aside:first-child {
        margin-left: auto; }
      aside:last-child {
        margin-right: auto; } }
  aside ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    aside ul li {
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #dbd9d9; }
      aside ul li:nth-last-child(-n + 1) {
        margin-bottom: 0; }
      aside ul li a {
        text-decoration: none; }
        aside ul li a:hover {
          color: #acd46f; }

.dropdown {
  position: relative !important;
  display: block;
  z-index: 10; }
  .dropdown:hover button.btn-secondary {
    border-color: #acd46f !important;
    color: #acd46f;
    font-weight: bold; }
    .dropdown:hover button.btn-secondary:hover {
      color: #acd46f !important; }
  .dropdown ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    .dropdown ul li {
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid #dbd9d9; }
      .dropdown ul li:nth-last-child(-n + 1) {
        margin-bottom: 0; }
      .dropdown ul li a {
        text-decoration: none; }
        .dropdown ul li a:hover {
          color: #acd46f; }
  .dropdown button.btn-secondary {
    display: none;
    width: 100%;
    text-align: left;
    border: solid 1px #f2f2f2 !important;
    font-family: inherit;
    font-weight: normal;
    font-size: 1em;
    color: #8f9191;
    text-transform: capitalize;
    margin-bottom: 30px;
    margin-top: 30px; }
    .dropdown button.btn-secondary:hover {
      border-color: #acd46f !important;
      z-index: 50; }
    .dropdown button.btn-secondary:after {
      border-bottom: 2px solid #acd46f;
      border-right: 2px solid #acd46f;
      content: '';
      display: block;
      height: 5px;
      margin-top: -4px;
      pointer-events: none;
      position: absolute;
      right: 25px;
      top: 50%;
      transform-origin: 66% 66%;
      transform: rotate(45deg);
      transition: all 0.15s ease-in-out;
      width: 5px; }
    @media (max-width: 795px) {
      .dropdown button.btn-secondary {
        display: block; } }
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      .dropdown button.btn-secondary {
        display: block; } }

/* Dropdown Content (Hidden by Default) */
@media (max-width: 795px) {
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #f2f2f2;
    width: 100%;
    z-index: 10 !important;
    margin-top: -29px;
    text-align: left;
    box-sizing: border-box;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    color: #8f9191 !important; }
    .dropdown-content ul li {
      border-bottom: 0px !important;
      line-height: 48px;
      padding-left: 24px;
      padding-right: 35px;
      padding-bottom: 0;
      margin-bottom: 0;
      -webkit-transition: all 0.15s ease-out 0s;
      -moz-transition: all 0.15s ease-out 0s;
      transition: all 0.15s ease-out 0s; }
      .dropdown-content ul li:first-child {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px; }
      .dropdown-content ul li:nth-last-child(-n + 1) {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px; }
      .dropdown-content ul li:hover {
        background-color: #f2f2f2; }
      .dropdown-content ul li a {
        color: #8f9191 !important;
        dipslay: block !important; } }

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #f2f2f2;
    width: 100%;
    z-index: 10 !important;
    margin-top: -29px;
    text-align: left;
    box-sizing: border-box;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    color: #8f9191 !important; }
    .dropdown-content ul li {
      border-bottom: 0px !important;
      line-height: 48px;
      padding-left: 24px;
      padding-right: 35px;
      padding-bottom: 0;
      margin-bottom: 0;
      -webkit-transition: all 0.15s ease-out 0s;
      -moz-transition: all 0.15s ease-out 0s;
      transition: all 0.15s ease-out 0s; }
      .dropdown-content ul li:first-child {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px; }
      .dropdown-content ul li:nth-last-child(-n + 1) {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px; }
      .dropdown-content ul li:hover {
        background-color: #f2f2f2; }
      .dropdown-content ul li a {
        color: #8f9191 !important;
        dipslay: block !important; } }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
  z-index: 999 !important; }

main {
  float: left;
  clear: none;
  text-align: inherit;
  width: 64%;
  margin-left: 0%;
  margin-right: 8%;
  margin-right: 0;
  position: relative;
  z-index: 1; }
  main::after {
    clear: both;
    content: "";
    display: table; }
  main:last-child {
    margin-right: 0%; }
  @media (max-width: 1035px) {
    main {
      float: left;
      clear: none;
      text-align: inherit;
      width: 61%;
      margin-left: 0%;
      margin-right: 4%;
      margin-right: 0 !important; }
      main::after {
        clear: both;
        content: "";
        display: table; }
      main:last-child {
        margin-right: 0%; } }
  @media (max-width: 795px) {
    main {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
      main:first-child {
        margin-left: auto; }
      main:last-child {
        margin-right: auto; } }
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    main {
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
      main:first-child {
        margin-left: auto; }
      main:last-child {
        margin-right: auto; } }
  main hr {
    margin-top: 75px;
    margin-bottom: 75px; }
  main h4 {
    margin-bottom: 15px;
    margin-top: 30px; }
    main h4:first-child {
      margin-bottom: 0; }
    @media (max-width: 795px) {
      main h4:first-child {
        margin-top: 15px; } }
    @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      main h4:first-child {
        margin-top: 15px; } }
  main ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    main ul li {
      color: #8f9191;
      margin-bottom: 8px;
      font-size: 1.1em;
      font-family: "Asap", sans-serif; }
      @media (min-width: 20em) and (max-width: 30em) {
        main ul li {
          font-size: calc( 1.1em + 0 * ( ( 100vw - 20em) / 10 )); } }
      @media (min-width: 30em) and (max-width: 40em) {
        main ul li {
          font-size: calc( 1.1em + 0 * ( ( 100vw - 30em) / 10 )); } }
      @media (min-width: 40em) and (max-width: 50em) {
        main ul li {
          font-size: calc( 1.1em + 0 * ( ( 100vw - 40em) / 10 )); } }
      @media (min-width: 50em) and (max-width: 60em) {
        main ul li {
          font-size: calc( 1.1em + 0 * ( ( 100vw - 50em) / 10 )); } }
      @media (min-width: 60em) {
        main ul li {
          font-size: 1.1em; } }
    main ul li:before {
      content: "• ";
      color: #acd46f;
      /* or whatever color you prefer */
      padding-right: 0.5em; }
    main ul.m-supportOptions::after {
      clear: both;
      content: "";
      display: table; }
    main ul.m-supportOptions li {
      float: left;
      clear: none;
      text-align: inherit;
      width: 48.5%;
      margin-left: 0%;
      margin-right: 3%;
      margin-bottom: 10px; }
      main ul.m-supportOptions li::after {
        clear: both;
        content: "";
        display: table; }
      main ul.m-supportOptions li:nth-child(n) {
        margin-right: 3%;
        float: left;
        clear: none; }
      main ul.m-supportOptions li:nth-child(2n) {
        margin-right: 0%;
        float: right; }
      main ul.m-supportOptions li:nth-child(2n + 1) {
        clear: both; }
      main ul.m-supportOptions li p {
        margin-bottom: 0; }
        main ul.m-supportOptions li p b {
          font-weight: 600; }
      @media (max-width: 590px) {
        main ul.m-supportOptions li {
          display: block;
          clear: both;
          float: none;
          width: 100%;
          margin-left: auto;
          margin-right: auto; }
          main ul.m-supportOptions li:first-child {
            margin-left: auto; }
          main ul.m-supportOptions li:last-child {
            margin-right: auto; } }
    main ul.m-supportOptions li:before {
      content: "";
      padding-right: 0; }
  main ul.tenantResources {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 15px; }
    main ul.tenantResources::after {
      clear: both;
      content: "";
      display: table; }
    main ul.tenantResources li {
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.3333333333%;
      margin-left: 0%;
      margin-right: 3%;
      background-image: url("../images/icons/application-icon@2x.png");
      background-repeat: no-repeat;
      background-position: left top;
      background-size: 65px;
      padding-left: 80px;
      box-sizing: border-box;
      padding-top: 10px;
      -webkit-transition: all 0.15s ease-out 0s;
      -moz-transition: all 0.15s ease-out 0s;
      transition: all 0.15s ease-out 0s;
      margin-bottom: 15px; }
      main ul.tenantResources li::after {
        clear: both;
        content: "";
        display: table; }
      main ul.tenantResources li:nth-child(n) {
        margin-right: 3%;
        float: left;
        clear: none; }
      main ul.tenantResources li:nth-child(3n) {
        margin-right: 0%;
        float: right; }
      main ul.tenantResources li:nth-child(3n + 1) {
        clear: both; }
      @media (max-width: 1100px) {
        main ul.tenantResources li {
          float: left;
          clear: none;
          text-align: inherit;
          width: 48.5%;
          margin-left: 0%;
          margin-right: 3%; }
          main ul.tenantResources li::after {
            clear: both;
            content: "";
            display: table; }
          main ul.tenantResources li:nth-child(n) {
            margin-right: 3%;
            float: left;
            clear: none; }
          main ul.tenantResources li:nth-child(2n) {
            margin-right: 0%;
            float: right; }
          main ul.tenantResources li:nth-child(2n + 1) {
            clear: both; } }
      @media (max-width: 730px) {
        main ul.tenantResources li {
          display: block;
          clear: both;
          float: none;
          width: 100%;
          margin-left: auto;
          margin-right: auto;
          margin-bottom: 15px; }
          main ul.tenantResources li:first-child {
            margin-left: auto; }
          main ul.tenantResources li:last-child {
            margin-right: auto; } }
      main ul.tenantResources li:hover {
        background-image: url("../images/icons/application-hover-icon@2x.png"); }
        main ul.tenantResources li:hover h5, main ul.tenantResources li:hover p {
          color: #acd46f; }
      main ul.tenantResources li h5, main ul.tenantResources li p {
        color: #8f9191;
        -webkit-transition: all 0.15s ease-out 0s;
        -moz-transition: all 0.15s ease-out 0s;
        transition: all 0.15s ease-out 0s; }
      main ul.tenantResources li h5 {
        font-weight: normal;
        font-size: 1.1em;
        letter-spacing: 1px;
        margin-bottom: 0;
        padding-bottom: 0; }
        @media (min-width: 20em) and (max-width: 30em) {
          main ul.tenantResources li h5 {
            font-size: calc( 1.1em + 0 * ( ( 100vw - 20em) / 10 )); } }
        @media (min-width: 30em) and (max-width: 40em) {
          main ul.tenantResources li h5 {
            font-size: calc( 1.1em + 0 * ( ( 100vw - 30em) / 10 )); } }
        @media (min-width: 40em) and (max-width: 50em) {
          main ul.tenantResources li h5 {
            font-size: calc( 1.1em + 0 * ( ( 100vw - 40em) / 10 )); } }
        @media (min-width: 50em) and (max-width: 60em) {
          main ul.tenantResources li h5 {
            font-size: calc( 1.1em + 0 * ( ( 100vw - 50em) / 10 )); } }
        @media (min-width: 60em) {
          main ul.tenantResources li h5 {
            font-size: 1.1em; } }
      main ul.tenantResources li p {
        font-size: 13px; }
      main ul.tenantResources li a {
        text-decoration: none !important; }
  main h2.job {
    margin-bottom: 5px; }
    main h2.job span {
      font-size: 1rem;
      letter-spacing: 0;
      color: #8f9191; }
  main h4.award {
    margin-top: 0;
    margin-bottom: 5px; }
  main p.moreInfo {
    margin-bottom: 75px;
    padding-bottom: 75px;
    border-bottom: 1px solid #f2f2f2; }
    main p.moreInfo:nth-last-child(-n + 1) {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: 0; }
    main p.moreInfo a {
      color: #acd46f; }

/* [Contact] */
#contact {
  padding-top: 210px; }
  @media (max-width: 600px) {
    #contact {
      margin-bottom: 75px; } }

.m-contact {
  width: 100%;
  border-top: 1px solid #f2f2f2;
  padding-top: 75px;
  margin-bottom: 75px; }
  .m-contact::after {
    clear: both;
    content: "";
    display: table; }
  @media (max-width: 660px) {
    .m-contact {
      padding-top: 30px;
      margin-bottom: 30px; } }
  .m-contact .m-contactHalf {
    float: left;
    clear: none;
    text-align: inherit;
    width: 46%;
    margin-left: 0%;
    margin-right: 8%;
    box-sizing: border-box;
    position: relative;
    padding: 50px 30px;
    text-align: center;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s; }
    .m-contact .m-contactHalf::after {
      clear: both;
      content: "";
      display: table; }
    .m-contact .m-contactHalf:last-child {
      margin-right: 0%; }
    .m-contact .m-contactHalf .tel {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
    @media (max-width: 660px) {
      .m-contact .m-contactHalf {
        padding: 30px 0; } }
    .m-contact .m-contactHalf:hover {
      background-color: rgba(0, 0, 0, 0.02); }
    .m-contact .m-contactHalf:first-child:after {
      content: '';
      width: 0;
      height: 100%;
      position: absolute;
      border-right: 1px solid #f2f2f2;
      top: 0;
      left: 108%; }
    @media (max-width: 880px) {
      .m-contact .m-contactHalf {
        float: left;
        clear: none;
        text-align: inherit;
        width: 48%;
        margin-left: 0%;
        margin-right: 4%;
        text-align: center; }
        .m-contact .m-contactHalf::after {
          clear: both;
          content: "";
          display: table; }
        .m-contact .m-contactHalf:last-child {
          margin-right: 0%; }
        .m-contact .m-contactHalf:first-child:after {
          left: 105%; } }
    @media (max-width: 660px) {
      .m-contact .m-contactHalf {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        .m-contact .m-contactHalf:first-child {
          margin-left: auto; }
        .m-contact .m-contactHalf:last-child {
          margin-right: auto; }
        .m-contact .m-contactHalf:first-child:after {
          border-right: 0 !important; } }
    .m-contact .m-contactHalf .icon {
      max-height: 70px;
      width: auto;
      margin-bottom: 15px; }
    .m-contact .m-contactHalf .contact {
      margin-bottom: 0; }
    .m-contact .m-contactHalf form {
      margin-top: 30px;
      margin-bottom: 75px; }
      .m-contact .m-contactHalf form input.half {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto; }
        .m-contact .m-contactHalf form input.half:first-child {
          margin-left: auto; }
        .m-contact .m-contactHalf form input.half:last-child {
          margin-right: auto; }
    .m-contact .m-contactHalf .fullWrapper {
      margin-top: 30px; }
      .m-contact .m-contactHalf .fullWrapper .third {
        float: left;
        clear: none;
        text-align: inherit;
        width: 31.3333333333%;
        margin-left: 0%;
        margin-right: 3%;
        color: #333e48;
        position: relative; }
        .m-contact .m-contactHalf .fullWrapper .third::after {
          clear: both;
          content: "";
          display: table; }
        .m-contact .m-contactHalf .fullWrapper .third:last-child {
          margin-right: 0%; }
        .m-contact .m-contactHalf .fullWrapper .third::after {
          clear: both;
          content: "";
          display: table; }
        @media (max-width: 990px) {
          .m-contact .m-contactHalf .fullWrapper .third {
            display: block;
            clear: both;
            float: none;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 30px; }
            .m-contact .m-contactHalf .fullWrapper .third:first-child {
              margin-left: auto; }
            .m-contact .m-contactHalf .fullWrapper .third:last-child {
              margin-right: auto; } }
        .m-contact .m-contactHalf .fullWrapper .third:hover .svg path {
          color: #acd46f; }
        .m-contact .m-contactHalf .fullWrapper .third a {
          display: block;
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0; }
        .m-contact .m-contactHalf .fullWrapper .third img {
          max-height: 66px;
          width: auto;
          margin-bottom: 5px; }
        .m-contact .m-contactHalf .fullWrapper .third .svg {
          max-height: 110px;
          width: auto;
          margin-bottom: 5px; }
        .m-contact .m-contactHalf .fullWrapper .third .svg path {
          fill: #333e48;
          -webkit-transition: all 0.15s ease-out 0s;
          -moz-transition: all 0.15s ease-out 0s;
          transition: all 0.15s ease-out 0s; }
        .m-contact .m-contactHalf .fullWrapper .third p {
          color: #333e48;
          margin-bottom: 0; }
          .m-contact .m-contactHalf .fullWrapper .third p b {
            font-weight: 600; }
    .m-contact .m-contactHalf a {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      height: 100%;
      width: 100%;
      display: block; }
      .m-contact .m-contactHalf a.gform_anchor {
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        width: 0%;
        height: 0; }

/* [Modal] */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(118, 197, 213, 0.8); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0; }

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  border-radius: 10px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #8f9191;
  background: #fff; }
  .remodal img.logo {
    max-width: 200px;
    margin: 20px 0; }
  .remodal h4 {
    margin-bottom: 15px; }
  .remodal h3 {
    margin-bottom: 15px;
    color: #333e48;
    font-weight: normal;
    font-size: 1.21em; }
    @media (min-width: 20em) and (max-width: 30em) {
      .remodal h3 {
        font-size: calc( 1.21em + 0.11 * ( ( 100vw - 20em) / 10 )); } }
    @media (min-width: 30em) and (max-width: 40em) {
      .remodal h3 {
        font-size: calc( 1.32em + 0.055 * ( ( 100vw - 30em) / 10 )); } }
    @media (min-width: 40em) and (max-width: 50em) {
      .remodal h3 {
        font-size: calc( 1.375em + 0.055 * ( ( 100vw - 40em) / 10 )); } }
    @media (min-width: 50em) and (max-width: 60em) {
      .remodal h3 {
        font-size: calc( 1.43em + 0.088 * ( ( 100vw - 50em) / 10 )); } }
    @media (min-width: 60em) {
      .remodal h3 {
        font-size: 1.518em; } }
  .remodal p {
    max-width: 530px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px; }
  .remodal iframe {
    width: 100% !important; }
  .remodal ul {
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 30px; }
    .remodal ul li {
      text-align: center;
      color: #8f9191;
      margin-bottom: 10px;
      line-height: 1.3; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #404041;
  border: 0;
  outline: 0;
  background: transparent; }

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38; }

.remodal-close:before {
  font-family: 'ASAP', Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center; }

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; } }

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; } }

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px; } }

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 700px; }

/* [Fullscreen Nav] */
.m-fullscreenNavBg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%; }

/* The Overlay (background) */
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: #333e48;
  overflow-x: hidden;
  transition: 0.5s; }
  .overlay .headRow header nav a.m-menu {
    background: white;
    color: #333e48; }

.overlay-content {
  position: relative;
  width: 100%;
  /* 100% width */
  text-align: center;
  /* Centered text/links */
  margin-top: 180px;
  /* 30px top margin to avoid conflict with the close button on smaller screens */ }
  .overlay-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    .overlay-content ul li.menu-item-has-children a {
      margin-bottom: 0px; }
    .overlay-content ul li ul.sub-menu {
      list-style-type: none;
      margin: 0;
      padding: 0;
      max-width: 250px;
      margin: auto;
      margin-bottom: 15px; }
      .overlay-content ul li ul.sub-menu li {
        border-bottom: 1px solid #1e242a; }
        .overlay-content ul li ul.sub-menu li a {
          font-size: 1.125rem;
          margin-bottom: 0; }

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 1.331em;
  color: white;
  margin-bottom: 15px;
  display: block;
  /* Display block instead of inline */
  transition: 0.3s;
  /* Transition effects on hover (color) */ }
  @media (min-width: 20em) and (max-width: 30em) {
    .overlay a {
      font-size: calc( 1.331em + 0.253 * ( ( 100vw - 20em) / 10 )); } }
  @media (min-width: 30em) and (max-width: 40em) {
    .overlay a {
      font-size: calc( 1.584em + 0.13475 * ( ( 100vw - 30em) / 10 )); } }
  @media (min-width: 40em) and (max-width: 50em) {
    .overlay a {
      font-size: calc( 1.71875em + 0.14025 * ( ( 100vw - 40em) / 10 )); } }
  @media (min-width: 50em) and (max-width: 60em) {
    .overlay a {
      font-size: calc( 1.859em + 0.23584 * ( ( 100vw - 50em) / 10 )); } }
  @media (min-width: 60em) {
    .overlay a {
      font-size: 2.09484em; } }

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #acd46f; }

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px; }

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px; }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px; } }

/* [Donations] */
@keyframes donationTab {
  from {
    right: 0px; }
  to {
    right: -125px; } }

@keyframes opacity {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

#m-donation {
  height: 55px;
  width: 170px;
  position: fixed;
  box-sizing: border-box;
  right: -125px;
  top: 225px;
  display: block;
  z-index: 5;
  background: #76c5d5;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  padding: 10px;
  text-align: left;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  overflow-x: hidden;
  cursor: pointer;
  animation-name: donationTab;
  animation-duration: .5s;
  animation-delay: 1s; }
  #m-donation::after {
    clear: both;
    content: "";
    display: table; }
  #m-donation img, #m-donation svg {
    width: 34px;
    max-height: 34px; }
    @media (max-width: 795px) {
      #m-donation img, #m-donation svg {
        width: 25px;
        max-height: 25px; } }
    #m-donation img.svg, #m-donation svg.svg {
      float: left;
      margin-right: 8px; }
  #m-donation h4 {
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    float: left;
    color: white;
    display: block;
    line-height: 33px;
    font-size: 14px;
    letter-spacing: 1px;
    animation-name: opacity;
    animation-duration: 1.5s;
    animation-delay: 1.5s; }
  #m-donation:hover {
    right: 0;
    background: #62bdcf;
    /*
		img, svg {
			-webkit-animation: tada 1s;
			 	animation: tada  1s;
		}
*/ }
    #m-donation:hover h4 {
      display: inline-block;
      opacity: 1; }
  @media (max-width: 795px) {
    #m-donation {
      position: absolute;
      width: 43px;
      height: 43px;
      border-top-left-radius: 45px;
      border-top-right-radius: 45px;
      border-bottom-left-radius: 45px;
      border-bottom-right-radius: 45px;
      border-bottom-left-radius: 45px;
      border-top-left-radius: 45px;
      border-bottom-right-radius: 45px;
      border-top-right-radius: 45px;
      right: 92px;
      top: 92px;
      animation-name: none; }
      #m-donation:hover {
        right: 92px;
        background: #62bdcf; }
        #m-donation:hover h4 {
          display: none; }
        #m-donation:hover img, #m-donation:hover svg {
          -webkit-animation: tada 1s;
          animation: tada  1s; } }
  @media (max-width: 480px) {
    #m-donation {
      top: 70px; } }

#m-donationOverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #76c5d5;
  z-index: 99;
  -webkit-transition: all 0.15s ease-out 0s;
  -moz-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  overflow: scroll; }
  #m-donationOverlay .love {
    display: none;
    opacity: 0;
    -webkit-transition: all 0.15s ease-out 0s;
    -moz-transition: all 0.15s ease-out 0s;
    transition: all 0.15s ease-out 0s;
    position: absolute;
    width: 50%;
    left: -15%;
    top: 190px; }
    @media (max-width: 740px) {
      #m-donationOverlay .love {
        left: -23% !important; } }
    @media (max-width: 680px) {
      #m-donationOverlay .love {
        position: absolute;
        width: 80%;
        top: 200px;
        opacity: .5 !important; } }
    @media (max-width: 480px) {
      #m-donationOverlay .love {
        width: 500px;
        left: -200px; } }
  #m-donationOverlay.is-open {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible; }
    #m-donationOverlay.is-open .love {
      display: block;
      opacity: 1; }
  #m-donationOverlay header {
    position: relative; }
  #m-donationOverlay .close {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-decoration: none;
    color: white;
    border: 0;
    outline: 0;
    background: transparent; }
  #m-donationOverlay .close:hover,
  #m-donationOverlay .close:focus {
    color: #333e48; }
  #m-donationOverlay .close:before {
    font-family: 'ASAP', Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 34px;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center; }
  #m-donationOverlay .m-donationWrapper {
    margin-top: 190px;
    position: relative;
    width: auto;
    max-width: 1280px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 40px;
    padding-right: 40px; }
    #m-donationOverlay .m-donationWrapper::after {
      clear: both;
      content: "";
      display: table; }
    #m-donationOverlay .m-donationWrapper h2 {
      position: relative; }
      #m-donationOverlay .m-donationWrapper h2 img {
        max-width: 70px;
        position: absolute;
        right: 0;
        top: 5px; }
  #m-donationOverlay .m-donationContent {
    margin-top: 20px;
    position: relative;
    width: 60%;
    margin-left: 40%; }
    @media (max-width: 740px) {
      #m-donationOverlay .m-donationContent {
        width: 70%;
        margin-left: 30%; } }
    @media (max-width: 680px) {
      #m-donationOverlay .m-donationContent {
        width: 100%;
        margin-left: 0%; } }
    #m-donationOverlay .m-donationContent p {
      color: white !important; }
    #m-donationOverlay .m-donationContent hr {
      border-top: 1px solid white;
      margin-top: 75px;
      margin-bottom: 75px; }

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 30px;
  border: solid 1px #f2f2f2;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-weight: normal;
  font-size: 1em;
  height: 50px;
  line-height: 48px;
  outline: none;
  padding-left: 24px;
  padding-right: 49px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
  color: #8f9191 !important;
  margin-bottom: 15px; }
  .nice-select:hover {
    border-color: #e5e5e5; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #acd46f; }
  .nice-select:after {
    border-bottom: 2px solid #acd46f;
    border-right: 2px solid #acd46f;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 25px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #f7f7f7;
    color: #404041;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #d9ebbe; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(0.75) translateY(-25px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 48px;
    list-style: none;
    min-height: 48px;
    outline: none;
    padding-left: 24px;
    padding-right: 35px;
    text-align: left;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f2f2f2; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #404041;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }
