/*---------------------------------------------------
LESS Elements 0.9
---------------------------------------------------
A set of useful LESS mixins
More info at: http://lesselements.com
---------------------------------------------------*/
@font-face {
  font-family: 'Lateral Compressed';
  src: url('../fonts/Lateral-CompressedBlack.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Lateral Compressed';
  src: url('../fonts/Lateral-CompressedBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Lateral Standard';
  src: url('../fonts/Lateral-StandardLight.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Lateral Standard';
  src: url('../fonts/Lateral-StandardMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Lateral Standard';
  src: url('../fonts/Lateral-StandardBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
/* COLOURS */
/* Project Colours */
/* FONTS STACKS */
/** Base Global Elements **/
html {
  touch-action: manipulation;
}
html,
body {
  background: #FFF;
  -webkit-font-smoothing: antialiased;
}
html.noScroll,
body.noScroll {
  overflow: hidden !important;
  height: 100% !important;
}
hr {
  margin: 0;
  border: none;
  border-bottom: solid 1px #162226;
}
hr.animated {
  width: 0;
  opacity: 1 !important;
  -webkit-transition: all 1s ease-out 0s;
  -moz-transition: all 1s ease-out 0s;
  -o-transition: all 1s ease-out 0s;
  transition: all 1s ease-out 0s;
}
hr.animated.fadeIn {
  width: 100%;
  opacity: 1 !important;
}
iframe {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}
/** Clears and Floats **/
.clear {
  clear: both;
}
.clearLeft {
  clear: left;
}
.clearRight {
  clear: right;
}
.floatLeft {
  float: left;
}
.floatRight {
  float: right;
}
/** Links **/
a {
  text-decoration: none;
  color: #3b3b3b;
  outline: none;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
a:hover {
  color: #77AD1C;
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}
/** Lists **/
ul,
ol {
  margin: 0 0 15px 15px;
  padding: 0;
}
ul li,
ol li {
  margin: 0 0 10px 10px;
  padding: 0;
  /* For Custom Bullets */
  /*
    list-style: none;
    position: relative;
    &:before {
      content: "•";
      position: absolute;
      left: -15px;
      color: @blue;
    }
    */
}
ol ul {
  margin-top: 10px;
}
ol ul li {
  list-style: disc;
}
/** Menu Lists **/
ul.menu {
  margin: 0;
  padding: 0;
}
ul.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.menuVertical li {
  margin: 0 0 15px 0;
}
ul.menuVertical li:last {
  margin-bottom: 0;
}
ul.menuHorizontal li {
  float: left;
  margin: 0 15px 0 0;
}
ul.menuHorizontal li:last-child {
  margin-right: 0;
}
/** Page Wrappers **/
.pageWrapper {
  width: 100%;
  float: left;
  min-height: calc((100vh - 55px));
  -webkit-transition: all 0.25s ease-in 0s;
  -moz-transition: all 0.25s ease-in 0s;
  -o-transition: all 0.25s ease-in 0s;
  transition: all 0.25s ease-in 0s;
}
@media only screen and (min-width: 768px) {
  .pageWrapper {
    min-height: calc((100vh - 95px));
  }
}
.animated {
  opacity: 0;
}
.animated.in {
  opacity: 1;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 5px !important;
}
.mt-2 {
  margin-top: 15px !important;
}
.mt-3 {
  margin-top: 15px !important;
}
.mt-4 {
  margin-top: 20px !important;
}
.mt-5 {
  margin-top: 25px !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 5px !important;
}
.mb-2 {
  margin-bottom: 15px !important;
}
.mb-3 {
  margin-bottom: 15px !important;
}
.mb-4 {
  margin-bottom: 20px !important;
}
.mb-5 {
  margin-bottom: 25px !important;
}
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 5px !important;
}
.ml-2 {
  margin-left: 15px !important;
}
.ml-3 {
  margin-left: 15px !important;
}
.ml-4 {
  margin-left: 20px !important;
}
.ml-5 {
  margin-left: 25px !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 5px !important;
}
.mr-2 {
  margin-right: 15px !important;
}
.mr-3 {
  margin-right: 15px !important;
}
.mr-4 {
  margin-right: 20px !important;
}
.mr-5 {
  margin-right: 25px !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 5px !important;
}
.pt-2 {
  padding-top: 15px !important;
}
.pt-3 {
  padding-top: 15px !important;
}
.pt-4 {
  padding-top: 20px !important;
}
.pt-5 {
  padding-top: 25px !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 5px !important;
}
.pb-2 {
  padding-bottom: 15px !important;
}
.pb-3 {
  padding-bottom: 15px !important;
}
.pb-4 {
  padding-bottom: 20px !important;
}
.pb-5 {
  padding-bottom: 25px !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.pr-1 {
  padding-right: 5px !important;
}
.pr-2 {
  padding-right: 15px !important;
}
.pr-3 {
  padding-right: 15px !important;
}
.pr-4 {
  padding-right: 20px !important;
}
.pr-5 {
  padding-right: 25px !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pl-1 {
  padding-left: 5px !important;
}
.pl-2 {
  padding-left: 15px !important;
}
.pl-3 {
  padding-left: 15px !important;
}
.pl-4 {
  padding-left: 20px !important;
}
.pl-5 {
  padding-left: 25px !important;
}
@media only screen and (min-width: 768px) {
  .mt-0 {
    margin-top: 0 !important;
  }
  .mt-1 {
    margin-top: 10px !important;
  }
  .mt-2 {
    margin-top: 20px !important;
  }
  .mt-3 {
    margin-top: 30px !important;
  }
  .mt-4 {
    margin-top: 40px !important;
  }
  .mt-5 {
    margin-top: 50px !important;
  }
  .mb-0 {
    margin-bottom: 0 !important;
  }
  .mb-1 {
    margin-bottom: 10px !important;
  }
  .mb-2 {
    margin-bottom: 20px !important;
  }
  .mb-3 {
    margin-bottom: 30px !important;
  }
  .mb-4 {
    margin-bottom: 40px !important;
  }
  .mb-5 {
    margin-bottom: 50px !important;
  }
  .ml-0 {
    margin-left: 0 !important;
  }
  .ml-1 {
    margin-left: 10px !important;
  }
  .ml-2 {
    margin-left: 20px !important;
  }
  .ml-3 {
    margin-left: 30px !important;
  }
  .ml-4 {
    margin-left: 40px !important;
  }
  .ml-5 {
    margin-left: 50px !important;
  }
  .mr-0 {
    margin-right: 0 !important;
  }
  .mr-1 {
    margin-right: 10px !important;
  }
  .mr-2 {
    margin-right: 20px !important;
  }
  .mr-3 {
    margin-right: 30px !important;
  }
  .mr-4 {
    margin-right: 40px !important;
  }
  .mr-5 {
    margin-right: 50px !important;
  }
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 10px !important;
  }
  .pt-2 {
    padding-top: 20px !important;
  }
  .pt-3 {
    padding-top: 30px !important;
  }
  .pt-4 {
    padding-top: 40px !important;
  }
  .pt-5 {
    padding-top: 50px !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 10px !important;
  }
  .pb-2 {
    padding-bottom: 20px !important;
  }
  .pb-3 {
    padding-bottom: 30px !important;
  }
  .pb-4 {
    padding-bottom: 40px !important;
  }
  .pb-5 {
    padding-bottom: 50px !important;
  }
  .pr-0 {
    padding-right: 0 !important;
  }
  .pr-1 {
    padding-right: 10px !important;
  }
  .pr-2 {
    padding-right: 20px !important;
  }
  .pr-3 {
    padding-right: 30px !important;
  }
  .pr-4 {
    padding-right: 40px !important;
  }
  .pr-5 {
    padding-right: 50px !important;
  }
  .pl-0 {
    padding-left: 0 !important;
  }
  .pl-1 {
    padding-left: 10px !important;
  }
  .pl-2 {
    padding-left: 20px !important;
  }
  .pl-3 {
    padding-left: 30px !important;
  }
  .pl-4 {
    padding-left: 40px !important;
  }
  .pl-5 {
    padding-left: 50px !important;
  }
}
.col-5 {
  width: 20%;
}
.container {
  max-width: 1170px;
}
@media only screen and (min-width: 768px) {
  .container {
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .container {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-xs-1,
  .col-sm-1,
  .col-md-1,
  .col-lg-1,
  .col-xs-2,
  .col-sm-2,
  .col-md-2,
  .col-lg-2,
  .col-xs-3,
  .col-sm-3,
  .col-md-3,
  .col-lg-3,
  .col-xs-4,
  .col-sm-4,
  .col-md-4,
  .col-lg-4,
  .col-xs-5,
  .col-sm-5,
  .col-md-5,
  .col-lg-5,
  .col-xs-6,
  .col-sm-6,
  .col-md-6,
  .col-lg-6,
  .col-xs-7,
  .col-sm-7,
  .col-md-7,
  .col-lg-7,
  .col-xs-8,
  .col-sm-8,
  .col-md-8,
  .col-lg-8,
  .col-xs-9,
  .col-sm-9,
  .col-md-9,
  .col-lg-9,
  .col-xs-10,
  .col-sm-10,
  .col-md-10,
  .col-lg-10,
  .col-xs-11,
  .col-sm-11,
  .col-md-11,
  .col-lg-11,
  .col-xs-12,
  .col-sm-12,
  .col-md-12,
  .col-lg-12 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.container,
.container-fluid {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
.container-padding {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1170px) {
  .container-padding {
    max-width: calc(100vw - (100vw - 1170px)/2);
  }
}
html,
body {
  font-family: 'Lateral Standard', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
  color: #3b3b3b;
}
@media only screen and (min-width: 1600px) {
  html,
  body {
    font-size: 20px;
  }
}
p {
  margin: 0 0 15px 0;
}
p:last-child {
  margin-bottom: 0;
}
b,
strong {
  font-weight: 500;
  font-family: inherit;
}
.lead {
  font-size: 5vw;
  color: #000;
}
.lead p {
  font-size: 5vw;
  color: #000;
}
small,
.small {
  font-size: 14px;
}
.text-black {
  color: #000 !important;
}
.text-white {
  color: #FFF !important;
}
.text-grey {
  color: #666666 !important;
}
.text-greyLight {
  color: #dddbd3 !important;
}
.text-greyMedium {
  color: #3b3b3b !important;
}
.text-greyDark {
  color: #2a2a2a !important;
}
.text-green {
  color: #77AD1C !important;
}
.text-navy {
  color: #162226;
}
.text-orange {
  color: #F1624E;
}
.font-weight-light {
  font-weight: 300;
}
.font-weight-medium {
  font-weight: 400;
}
.font-weight-bold {
  font-weight: 500;
}
.font-weight-heavy {
  font-weight: 700;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  color: inherit;
}
h1 small {
  vertical-align: 20%;
}
/** Headings **/
h1,
.h1,
h2,
.h2 {
  font-family: 'Lateral Compressed', sans-serif;
  margin: 0 0 36px 0;
}
h1,
.h1 {
  font-size: 40px;
  line-height: 36px;
  font-weight: 900;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 100px;
    line-height: 80px;
  }
}
@media (min-width: 1600px) {
  h1,
  .h1 {
    font-size: 120px;
    line-height: 96px;
  }
}
h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 25px;
}
@media (min-width: 1600px) {
  h2 {
    font-size: 36px;
    line-height: 30px;
  }
}
h3 {
  font-size: 20px;
  font-weight: 300;
  line-height: 20px;
  font-family: 'Lateral Standard', sans-serif;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .lead {
    font-size: 2.6vw;
    line-height: 1.2em;
    margin-bottom: 5px;
    letter-spacing: -1px;
  }
  .lead p {
    font-size: 2.6vw;
    line-height: 1.2em;
    margin-bottom: 5px;
    letter-spacing: -1px;
  }
}
@media only screen and (min-width: 992px) {
  .lead {
    font-size: 1.6vw;
    line-height: 1.2em;
    margin-bottom: 5px;
    letter-spacing: -1px;
  }
  .lead p {
    font-size: 1.6vw;
    line-height: 1.2em;
    margin-bottom: 5px;
    letter-spacing: -1px;
  }
}
input[type="submit"]:not(.vjs-button),
input[type="button"]:not(.vjs-button),
button:not(.vjs-button),
.button:not(.vjs-button),
.btn:not(.vjs-button),
a.button:not(.vjs-button),
a.btn:not(.vjs-button),
.btn-cta a:not(.vjs-button) {
  line-height: 25px;
  max-width: none;
  display: inline-block;
  margin: 0 auto;
  background: transparent;
  color: #3b3b3b;
  font-family: 'Lateral Standard', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1px solid #3b3b3b;
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
input[type="submit"]:not(.vjs-button):focus,
input[type="button"]:not(.vjs-button):focus,
button:not(.vjs-button):focus,
.button:not(.vjs-button):focus,
.btn:not(.vjs-button):focus,
a.button:not(.vjs-button):focus,
a.btn:not(.vjs-button):focus,
.btn-cta a:not(.vjs-button):focus {
  outline: none !important;
  outline-offset: -2px;
  box-shadow: none;
}
input[type="submit"]:not(.vjs-button).gform_previous_button,
input[type="button"]:not(.vjs-button).gform_previous_button,
button:not(.vjs-button).gform_previous_button,
.button:not(.vjs-button).gform_previous_button,
.btn:not(.vjs-button).gform_previous_button,
a.button:not(.vjs-button).gform_previous_button,
a.btn:not(.vjs-button).gform_previous_button,
.btn-cta a:not(.vjs-button).gform_previous_button {
  background: none;
  color: #3b3b3b;
}
input[type="submit"]:not(.vjs-button).gform_previous_button:hover,
input[type="button"]:not(.vjs-button).gform_previous_button:hover,
button:not(.vjs-button).gform_previous_button:hover,
.button:not(.vjs-button).gform_previous_button:hover,
.btn:not(.vjs-button).gform_previous_button:hover,
a.button:not(.vjs-button).gform_previous_button:hover,
a.btn:not(.vjs-button).gform_previous_button:hover,
.btn-cta a:not(.vjs-button).gform_previous_button:hover {
  background: none;
  color: #77AD1C;
}
input[type="submit"]:not(.vjs-button).gform_previous_button:focus,
input[type="button"]:not(.vjs-button).gform_previous_button:focus,
button:not(.vjs-button).gform_previous_button:focus,
.button:not(.vjs-button).gform_previous_button:focus,
.btn:not(.vjs-button).gform_previous_button:focus,
a.button:not(.vjs-button).gform_previous_button:focus,
a.btn:not(.vjs-button).gform_previous_button:focus,
.btn-cta a:not(.vjs-button).gform_previous_button:focus {
  background: none;
  color: #77AD1C;
}
.text-wrapper + input[type="submit"],
.text-wrapper + input[type="button"],
.text-wrapper + button,
.text-wrapper + .button,
.text-wrapper + .btn,
.text-wrapper + a.button,
.text-wrapper + a.btn,
.text-wrapper + .btn-cta a {
  margin-top: 36px;
}
.bg-dark input[type="submit"],
.bg-dark input[type="button"],
.bg-dark button,
.bg-dark .button,
.bg-dark .btn,
.bg-dark a.button,
.bg-dark a.btn,
.bg-dark .btn-cta a {
  color: #dddbd3;
  border-color: #dddbd3;
}
/** Forms **/
form {
  width: 100%;
  margin: 0;
  padding: 0;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="phone"],
input[type="number"],
input[type="tel"],
textarea {
  width: 100%;
  height: 55px;
  padding: 0 15px;
  font-family: 'Lateral Standard', sans-serif;
  font-weight: 400;
  color: #000;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
textarea {
  min-height: 100px;
  padding: 20px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
input,
textarea {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.btn.btnClear {
  width: 40px;
  line-height: 42px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 18px;
  color: #dddbd3;
  position: absolute;
  top: 0px;
  right: 0px;
}
.ginput_container_select {
  width: 100%;
  font-family: 'Lateral Standard', sans-serif;
  position: relative;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.ginput_container_select select {
  width: 100%;
  height: 100%;
  padding: 0 20px;
  color: #000;
  font-weight: 400;
  border: none;
  box-shadow: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.ginput_container_select select::-ms-expand {
  display: none;
}
.ginput_container_select:before {
  content: "\f123";
  font-family: 'Ionicons';
  color: #000;
  position: absolute;
  right: 5px;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  font-size: 14px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.ginput_container_multiselect select {
  width: 100%;
  border: none;
  padding: 10px 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
input[type=radio],
input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  background: transparent;
  display: inline-block;
  position: relative;
  margin: 0 10px 0 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: none;
}
input[type=checkbox]:checked {
  background: #000;
}
input[type=checkbox]:checked:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-family: 'Ionicons';
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
input[type=radio] {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
input[type=radio]:checked:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #000;
  border: solid 3px #FFF;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.ginput_container_fileupload .gform_drop_area {
  width: 100%;
  float: left;
  margin: 0 0 15px 0;
  padding: 20px;
  text-align: center;
  border: dashed 2px #dddbd3;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.ginput_container_fileupload .gform_drop_area .gform_drop_instructions {
  width: 100%;
  float: left;
  text-align: center;
  display: block;
  margin: 0 0 10px 0;
}
.ginput_container_fileupload .gform_drop_area .gform_drop_instructions input[type="button"] {
  margin: 0 auto;
  float: none;
}
.ginput_container_fileupload #extensions_message {
  font-size: 12px;
}
label {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #000;
  font-weight: 400;
}
.hidden_label label.gfield_label {
  display: none;
}
.hidden_label .ginput_container_creditcard label {
  display: none;
}
.animatedLabel {
  position: relative;
}
.animatedLabel input {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.animatedLabel label {
  position: absolute;
  z-index: 2;
  padding: 0 20px;
  opacity: 1;
  left: 15px;
  top: 15px;
  pointer-events: none;
  margin: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.animatedLabel.inFocus label {
  font-weight: normal;
  opacity: 1;
  font-size: 10px;
  padding: 0 20px;
  top: 0;
  color: #666666;
}
.animatedLabel.inFocus input,
.animatedLabel.inFocus select {
  padding: 15px 20px 0 20px;
}
.animatedLabel ::-webkit-input-placeholder {
  /* WebKit browsers */
  opacity: 1;
  font-weight: 400;
  color: #000;
}
.animatedLabel :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  opacity: 1;
  font-weight: 400;
  color: #000;
}
.animatedLabel ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  opacity: 1;
  font-weight: 400;
  color: #000;
}
.animatedLabel :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  opacity: 1;
  font-weight: 400;
  color: #000;
}
@media only screen and (min-width: 768px) {
  .animatedLabel label {
    top: 13px;
  }
  .animatedLabel.inFocus label {
    font-size: 11px;
  }
}
/** Form Validation **/
.gfield_error input[type="text"],
.gfield_error input[type="email"],
.gfield_error input[type="number"],
.gfield_error input[type="password"],
.gfield_error input[type="phone"],
.gfield_error input[type="number"],
.gfield_error input[type="tel"],
.gfield_error input[type=radio],
.gfield_error input[type=checkbox],
.gfield_error textarea,
.gfield_error .ginput_container_select {
  border: solid 1px #FF0000;
}
.gfield_error .gform_drop_area {
  border: dashed 2px #FF0000;
}
.gfield_error .ginput_container_select:before {
  border-color: #FF0000 transparent transparent transparent;
}
.gfield_error .validation_message {
  color: #FF0000;
  margin: 5px 0 0 0;
  font-size: 12px;
  font-weight: 400;
}
.validation_message {
  color: #FF0000;
  margin: 5px 0 0 0;
  font-size: 12px;
  font-weight: 400;
}
/** Global Validation Message **/
.validation_error {
  padding: 15px;
  margin: 0 0 15px 0;
  text-align: center;
  color: #FF0000;
}
/** Form Wrapper **/
/** Styled specifically for Gravity Forms class structure **/
.gform_wrapper {
  width: 100%;
  margin: 0 auto;
}
.gform_wrapper form {
  float: left;
}
.gform_wrapper.noLabels_wrapper .gfield_label {
  display: none;
}
.gform_wrapper .checkBoxGroup .gfield_label {
  display: inline-block;
}
ul.gform_fields {
  margin: 0;
  padding: 0;
}
ul.gform_fields li {
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
}
ul.gform_fields li .ginput_container {
  position: relative;
}
ul.gform_fields li .ginput_container .ginput_counter {
  display: none;
}
ul.gform_fields li.hideLabel > label {
  display: none;
}
ul.gform_fields li.dateOfBirthLabel {
  margin: 0;
}
ul.gform_fields li:before {
  display: none;
}
@media only screen and (min-width: 768px) {
  ul.gform_fields li {
    margin-bottom: 20px;
  }
  ul.gform_fields li.col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
}
ul.gfield_checkbox,
ul.gfield_radio {
  margin: 0;
  padding: 0;
}
ul.gfield_checkbox li,
ul.gfield_radio li {
  margin: 0 0 10px 0;
}
ul.gfield_checkbox li input,
ul.gfield_radio li input {
  float: left;
}
ul.gfield_checkbox li label,
ul.gfield_radio li label {
  margin: -3px 0 0 0;
  display: block;
  overflow: hidden;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  ul.gfield_checkbox li label,
  ul.gfield_radio li label {
    font-size: 15px;
    display: inline-block;
  }
}
.ginput_container_consent label {
  margin: -3px 0 0 0;
  display: inline-block;
  max-width: 90%;
  overflow: hidden;
}
.ginput_container_consent .gfield_required {
  display: none;
}
.ginput_container_consent input[type=checkbox] {
  float: left;
}
.gfield_creditcard_warning_message {
  margin: 0 0 30px 0;
  color: #FF0000;
  font-size: 16px;
}
.ginput_container_creditcard .StripeElement {
  height: 55px;
  padding: 0 20px;
  margin: 0 0 30px 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.ginput_container_creditcard .StripeElement.StripeElement--invalid {
  margin-bottom: 5px;
  border: solid 1px #FF0000;
}
.ginput_container_creditcard .validation_message {
  margin-bottom: 30px;
}
/* The switch - the box around the slider */
/* Hide default HTML checkbox */
.checkboxSwitch {
  overflow: hidden;
}
.checkboxSwitch .ginput_container {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.checkboxSwitch .ginput_container input {
  display: none;
}
.checkboxSwitch .ginput_container input:checked + .slider {
  background-color: #77AD1C;
}
.checkboxSwitch .ginput_container input:focus + .slider {
  box-shadow: 0 0 1px #77AD1C;
}
.checkboxSwitch .ginput_container input:checked + .slider:before {
  transform: translateX(26px);
}
.checkboxSwitch .ginput_container .gfield_label {
  width: 500px;
  max-width: none;
  float: none;
  padding-left: 75px;
  position: relative;
  z-index: 3;
  line-height: 34px;
}
.checkboxSwitch .ginput_container .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #dddbd3;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
}
.checkboxSwitch .ginput_container .slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 2px;
  bottom: 2px;
  background: #FFF;
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
/** Specific Gravity Form Classes **/
.gform_heading,
.gform_body,
.gform_footer,
.gform_page_fields,
.gform_page_footer {
  width: 100%;
  float: left;
}
.gform_footer,
.gform_page_footer {
  text-align: center;
  padding: 0 15px;
}
.gform_footer input[type="submit"],
.gform_page_footer input[type="submit"] {
  margin: 0 auto;
  float: none;
  min-width: 160px;
}
.gform_confirmation_wrapper {
  padding: 0 15px;
}
.donateOptions .ginput_container_radio {
  margin-left: -15px;
  margin-right: -15px;
}
.donateOptions ul.gfield_radio li {
  width: 100%;
  padding: 0 15px 15px 15px;
  position: relative;
  margin-bottom: 0;
}
.donateOptions ul.gfield_radio li label {
  height: 100%;
  padding: 15px;
  margin: 0;
  border: solid 1px #F1624E;
  font-weight: 300;
  cursor: pointer;
  font-size: 16px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.donateOptions ul.gfield_radio li label img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.donateOptions ul.gfield_radio li label h3 {
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .donateOptions ul.gfield_radio li label:hover {
    background: #FFF;
  }
}
.donateOptions ul.gfield_radio li input[type=radio] {
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.donateOptions ul.gfield_radio li input[type=radio]:checked + label {
  background: #F1624E;
  color: #FFF;
}
.donateOptions ul.gfield_radio li input[type=radio]:checked + label h3 {
  color: #FFF;
}
@media only screen and (min-width: 768px) {
  .donateOptions ul.gfield_radio {
    display: flex;
  }
  .donateOptions ul.gfield_radio li {
    width: 20%;
    margin-bottom: 10px;
  }
}
.paymentOptionsTab ul {
  width: 100%;
  max-width: 400px;
  height: 55px;
  margin: 0 auto 15px auto;
}
.paymentOptionsTab ul li {
  width: 50%;
  height: 55px;
  display: inline-block;
  position: relative;
  margin: 0;
}
.paymentOptionsTab ul li input[type="radio"] {
  opacity: 0;
}
.paymentOptionsTab ul li input[type="radio"]:checked + label {
  background: #F1624E;
  color: #000;
}
.paymentOptionsTab ul li label {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 10;
  text-align: center;
  font-size: 16px;
  border: solid 1px #F1624E;
  border-left: none;
  cursor: pointer;
  line-height: 55px;
}
.paymentOptionsTab ul li:first-child span {
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.paymentOptionsTab ul li:first-child label {
  border-left: solid 1px #F1624E;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.paymentOptionsTab ul li:last-child span {
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.paymentOptionsTab ul li:last-child label {
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.amount-field .ginput_container_product_price input {
  font-weight: 500;
  font-size: 32px;
  height: 80px;
  line-height: 80px;
}
@media only screen and (min-width: 768px) {
  .amount-field .ginput_container_product_price input {
    font-size: 42px;
  }
}
.amount-field .ginput_container_product_price .ginput_total:after {
  content: " AUD";
}
@media only screen and (min-width: 768px) {
  .amount-field.animatedLabel label {
    top: 25px;
  }
  .amount-field.animatedLabel.inFocus label {
    top: 0;
  }
}
.totalCost {
  display: none;
}
.totalCost .ginput_container_total .ginput_total {
  font-weight: 500;
}
.totalCost .ginput_container_total .ginput_total:after {
  content: " total, helping cover transaction costs.";
}
.coverCostNote {
  font-weight: 500;
}
.coverCostNote .ginput_product_price_label {
  display: none;
}
.coverCostNote .ginput_product_price:before {
  content: "+ " gform_page_footer;
}
.coverCostNote .ginput_product_price:after {
  content: " AUD helping cover transaction costs.";
}
/* WEBSITE HEADER & NAVIGATION STYLES */
/** Fixed Header Padding Compensation **/
body.menuOpen {
  overflow: hidden;
}
.logo {
  width: 203px;
  color: #FFF;
  display: inline-block;
  line-height: 0;
}
.logo svg {
  width: 100%;
  height: auto;
}
.logo:hover,
.logo:focus {
  color: #1F2E33;
}
@media only screen and (max-width: 767px) {
  .navWrapper {
    width: 100%;
    position: fixed;
    top: 90px;
    left: 0;
    bottom: 0;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .sticky .navWrapper {
    top: 70px;
  }
  .sticky .logo {
    width: 120px;
    margin-top: 24px;
  }
}
/** START Main Navigation Styles **/
nav {
  width: 100%;
  height: 90px;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transform: translateZ(0);
  -webkit-transform: trzanslateZ(0);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
}
nav .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
nav .container-fluid:before,
nav .container-fluid:after {
  display: none;
}
nav ul.menuMain {
  width: 100%;
  height: 0;
  font-size: 24px;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
  -webkit-transition: all 0.5s ease-in 0s;
  -moz-transition: all 0.5s ease-in 0s;
  -o-transition: all 0.5s ease-in 0s;
  transition: all 0.5s ease-in 0s;
}
nav ul.menuMain li {
  width: 100%;
  height: auto;
  display: table;
  margin: 0;
}
nav ul.menuMain li a {
  width: 100%;
  color: #FFF;
  display: table-cell;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 700;
}
nav ul.menuMain li .arrowToggle {
  display: none;
}
nav ul.menuMain li .ion {
  width: 25px;
  font-size: 18px;
  float: left;
  text-align: center;
}
nav ul.menuMain li.active a,
nav ul.menuMain li.current-menu-item a,
nav ul.menuMain li.current_page_item a {
  color: #FFF;
}
nav ul.menuMain li.menu-item-has-children > a {
  display: table;
  position: relative;
  cursor: default;
}
nav ul.sub-menu {
  font-family: 'Lateral Standard', sans-serif;
  background: none;
  padding: 0 15px;
  margin: 0;
  font-size: 12px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
nav ul.sub-menu li {
  width: 100%;
  height: auto;
  margin-right: 0 !important;
}
nav ul.sub-menu li a {
  height: auto;
  padding: 15px 0;
  position: relative;
  color: #FFF;
  text-transform: capitalize;
}
nav ul.sub-menu li a:hover {
  color: #FFF;
}
nav ul.sub-menu li a:focus {
  color: #FFF;
}
nav ul.sub-menu li:last-of-type {
  margin-bottom: 15px;
}
nav.sticky {
  height: 70px;
  background: #FFF;
}
nav.sticky .logo {
  color: #1F2E33;
}
/** END Main Navigation Styles **/
/** START Mobile Navigation Drop-down Style **/
@media only screen and (max-width: 767px) {
  nav .logo {
    margin-top: 33px;
  }
  nav.navDropdown {
    -webkit-transition: all 0.35s ease-in 0s;
    -moz-transition: all 0.35s ease-in 0s;
    -o-transition: all 0.35s ease-in 0s;
    transition: all 0.35s ease-in 0s;
  }
  nav.navDropdown ul.menuMain {
    padding: 30px 20px;
    height: 100%;
    max-height: 0;
    opacity: 0;
    -webkit-transition: all 0.35s ease-in 0s;
    -moz-transition: all 0.35s ease-in 0s;
    -o-transition: all 0.35s ease-in 0s;
    transition: all 0.35s ease-in 0s;
  }
  nav.navDropdown ul.menuMain li {
    margin-top: 15px;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children {
    position: relative;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children .arrowToggle {
    width: 50px;
    height: 59px;
    display: block;
    position: absolute;
    right: -15px;
    top: 0;
    z-index: 1;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children.open > a {
    display: inline-block;
    width: auto;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children.open > a:after {
    content: "";
    background: #FFF;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
  nav.navDropdown ul.menuMain li.menu-item-has-children.open ul.sub-menu {
    max-height: 2000px;
  }
  nav.navDropdown ul.sub-menu {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.35s ease-out 0s;
    -moz-transition: all 0.35s ease-out 0s;
    -o-transition: all 0.35s ease-out 0s;
    transition: all 0.35s ease-out 0s;
  }
  nav.navDropdown ul.sub-menu li a {
    color: #FFF !important;
    padding: 0;
  }
  nav.navDropdown ul.sub-menu li:last-of-type {
    margin-bottom: 0;
  }
  nav.navDropdown ul.sub-menu li.active a,
  nav.navDropdown ul.sub-menu li.current-menu-item a,
  nav.navDropdown ul.sub-menu li.current_page_item a {
    color: #FFF;
  }
  .menuOpen nav.navDropdown {
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
  }
  .menuOpen nav.navDropdown:before {
    opacity: 1;
  }
  .menuOpen nav.navDropdown ul.menuMain {
    max-height: 1500px;
    opacity: 1;
    height: auto;
  }
  .menuOpen nav.sticky .logo {
    color: #FFF;
  }
}
/** END Mobile Menu Drop-down Style **/
/** START Mobile Hamburger Menu Icon **/
.mobileMenu {
  width: 48px;
  height: 58px;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 16px;
  cursor: pointer;
}
.mobileMenu .icon {
  width: 20px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -9px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.mobileMenu .icon span {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  opacity: 1;
  background: #FFF;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.mobileMenu .icon span:nth-child(1) {
  top: 0;
}
.mobileMenu .icon span:nth-child(2),
.mobileMenu .icon span:nth-child(3) {
  top: 6px;
}
.mobileMenu .icon span:nth-child(4) {
  top: 12px;
}
.sticky .mobileMenu {
  top: 6px;
}
.sticky .mobileMenu .icon span {
  background: #3b3b3b;
}
.menuOpen .mobileMenu .icon span:nth-child(1) {
  width: 0%;
  top: 9px;
  left: 50%;
}
.menuOpen .mobileMenu .icon span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menuOpen .mobileMenu .icon span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menuOpen .mobileMenu .icon span:nth-child(4) {
  width: 0%;
  top: 9px;
  left: 50%;
}
.menuOpen .sticky .mobileMenu .icon span {
  background: #FFF;
}
/** END Mobile Hamburger Menu Icon **/
@media only screen and (min-width: 768px) {
  nav.navDesktop {
    padding-top: 45px;
    height: 160px;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  nav.navDesktop ul.menuMain {
    width: auto;
    position: relative;
    z-index: 2;
    top: auto;
    left: auto;
    padding: 0;
    margin: 0;
    opacity: 1;
    font-size: 12px;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    -moz-transition-property: margin;
    -o-transition-property: margin;
    transition-property: margin;
  }
  nav.navDesktop ul.menuMain li {
    display: table;
    width: auto;
    float: left;
    margin: 0 30px 0 0;
    border: none;
    position: relative;
  }
  nav.navDesktop ul.menuMain li:last-child {
    margin-right: 0;
  }
  nav.navDesktop ul.menuMain li:last-child a {
    margin-right: 0;
  }
  nav.navDesktop ul.menuMain li a {
    width: auto;
    height: 100%;
    display: table-cell;
    vertical-align: top;
    padding-bottom: 6px;
    position: relative;
  }
  nav.navDesktop ul.menuMain li a:before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    bottom: -7px;
    width: 20px;
    margin: 0 auto;
    height: 8px;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    background-image: url("../assets/images/sitedesign-icon-triangle-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0;
  }
  nav.navDesktop ul.menuMain li.active a:before,
  nav.navDesktop ul.menuMain li.current-menu-item a:before,
  nav.navDesktop ul.menuMain li.current_page_item a:before {
    opacity: 1;
  }
  nav.navDesktop ul.menuMain li.active.menu-item-object-custom a:before,
  nav.navDesktop ul.menuMain li.current-menu-item.menu-item-object-custom a:before,
  nav.navDesktop ul.menuMain li.current_page_item.menu-item-object-custom a:before {
    opacity: 0;
  }
  nav.navDesktop ul.menuMain li.current-menu-parent a:before {
    opacity: 1;
  }
  nav.navDesktop ul.menuMain li:hover a:before {
    opacity: 1;
  }
  nav.navDesktop ul.menuMain li.menu-item-has-children > a {
    display: table-cell;
    line-height: inherit;
  }
  nav.navDesktop ul.menuMain li.menu-item-has-children:hover ul.sub-menu {
    max-height: 800px;
    padding: 10px 0;
    opacity: 1;
  }
  nav.navDesktop ul.sub-menu {
    min-width: 180px;
    position: absolute;
    left: -10px;
    right: 0;
    top: 100%;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    font-family: 'Lateral Standard', sans-serif;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    padding: 0;
    -moz-transition-property: max-height, padding-top, padding-bottom, opacity;
    -o-transition-property: max-height, padding-top, padding-bottom, opacity;
    transition-property: max-height, padding-top, padding-bottom, opacity;
  }
  nav.navDesktop ul.sub-menu li {
    width: 100%;
    height: auto;
    background: none;
    padding: 0 10px;
    -webkit-transition: all 0s ease-out 0s;
    -moz-transition: all 0s ease-out 0s;
    -o-transition: all 0s ease-out 0s;
    transition: all 0s ease-out 0s;
  }
  nav.navDesktop ul.sub-menu li a {
    padding: 5px 0 !important;
    position: relative;
    background: none !important;
    border-bottom: none !important;
    display: inline-block;
  }
  nav.navDesktop ul.sub-menu li a:before {
    display: none;
  }
  nav.navDesktop ul.sub-menu li:hover a,
  nav.navDesktop ul.sub-menu li.active a,
  nav.navDesktop ul.sub-menu li.current-menu-item a,
  nav.navDesktop ul.sub-menu li.current_page_item a {
    color: #2a2a2a;
  }
  nav.navDesktop .menuSecondaryWrapper {
    position: absolute;
    z-index: 1;
    top: 30px;
    right: 15px;
    left: auto;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
  }
  nav.navDesktop .navBlocker {
    display: none;
  }
  nav.navDesktop.sticky {
    height: 68px;
    padding-top: 15px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
  }
  nav.navDesktop.sticky .container-fluid {
    align-items: center;
    width: 100%;
  }
  nav.navDesktop.sticky .logo {
    width: 120px;
  }
  nav.navDesktop.sticky ul.menuMain {
    top: 4px;
    border-top: solid 0px rgba(0, 0, 0, 0);
  }
  nav.navDesktop.sticky ul.menuMain > li a {
    vertical-align: middle;
    color: #1F2E33;
  }
  nav.navDesktop.sticky ul.menuMain > li a:before {
    background-image: url("../assets/images/sitedesign-icon-triangle-black.svg");
  }
  nav.navDesktop.sticky ul.menuMain > li:hover > a,
  nav.navDesktop.sticky ul.menuMain > li.active > a,
  nav.navDesktop.sticky ul.menuMain > li.current-menu-parent > a,
  nav.navDesktop.sticky ul.menuMain > li.current-menu-item > a,
  nav.navDesktop.sticky ul.menuMain > li.current_page_item > a {
    color: #2a2a2a;
  }
  nav.navDesktop.sticky ul.sub-menu {
    background-color: #FFF;
  }
  nav.navDesktop.sticky ul.sub-menu > li:hover a,
  nav.navDesktop.sticky ul.sub-menu > li.active a,
  nav.navDesktop.sticky ul.sub-menu > li.current-menu-item a,
  nav.navDesktop.sticky ul.sub-menu > li.current_page_item a {
    color: #2a2a2a;
  }
}
@media only screen and (min-width: 992px) {
  nav.navDesktop ul.menuMain li {
    margin: 0 60px 0 0;
  }
}
.mobileSubNav {
  width: 100%;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.mobileSubNav.nav-up {
  top: -50px;
}
.mobileSubNav.nav-down {
  top: 0;
}
/** Search **/
nav ul li.searchWrapper {
  margin: 0;
}
nav ul.search {
  margin: 0;
}
nav ul.search li {
  margin: 0;
}
nav ul.search li .searchForm {
  width: 190px;
  height: 72px;
  max-width: 0;
  overflow: hidden;
  border-bottom: solid 4px #77AD1C;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
nav ul.search li .searchForm input[type="text"] {
  height: 76px;
  background: none;
  color: #FFF;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
nav ul.search li .searchForm ::-webkit-input-placeholder {
  /* WebKit browsers */
  opacity: 1;
  color: #FFF;
}
nav ul.search li .searchForm :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  opacity: 1;
  color: #FFF;
}
nav ul.search li .searchForm ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  opacity: 1;
  color: #FFF;
}
nav ul.search li .searchForm :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  opacity: 1;
  color: #FFF;
}
nav ul.search li .ion {
  font-size: 24px;
  height: 32px;
  line-height: 78px;
  padding-left: 0;
  box-sizing: content-box;
  color: #FFF;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  cursor: pointer;
  position: relative;
}
nav ul.search.open li .searchForm {
  max-width: 190px;
  margin-left: 10px;
}
nav ul.search.open li .ion {
  padding-left: 20px;
}
nav ul.search.open li .ion:after {
  opacity: 0;
}
nav.sticky ul.search li .ion {
  color: #3b3b3b;
}
@media only screen and (min-width: 768px) {
  nav ul.search.open li .searchForm {
    max-width: 190px;
  }
  nav ul.search.open li .searchForm input[type="text"] {
    padding: 0;
  }
  nav.sticky ul.search.open li .searchForm {
    height: 76px;
  }
  nav.sticky ul.search.open li .searchForm input[type="text"] {
    height: 76px;
    color: #2a2a2a;
  }
  nav.sticky ul.search.open li .searchForm ::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #3b3b3b;
  }
  nav.sticky ul.search.open li .searchForm :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #3b3b3b;
  }
  nav.sticky ul.search.open li .searchForm ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #3b3b3b;
  }
  nav.sticky ul.search.open li .searchForm :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #3b3b3b;
  }
}
@media only screen and (min-width: 768px) {
  nav.navDesktop ul li.searchWrapper {
    margin: 0;
  }
  nav.navDesktop ul.search li {
    margin: 0;
  }
}
@media only screen and (min-width: 1600px) {
  nav.navDesktop ul.menuMain {
    font-size: 20px;
  }
}
footer {
  padding: 75px 5%;
  margin: 0;
  background: #2a2a2a;
  text-align: center;
  clear: both;
  font-size: 12px;
}
@media (min-width: 1600px) {
  footer {
    font-size: 16px;
  }
}
footer .row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer .row {
    align-items: flex-end;
    flex-direction: row;
  }
}
footer .logo-footer {
  max-width: 140px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  footer .logo-footer {
    margin-right: 90px;
    margin-bottom: 0;
  }
}
footer .footer-left-block {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer .footer-left-block {
    align-items: flex-start;
    flex-direction: row;
  }
}
footer .footer-right-block {
  display: flex;
  flex-direction: row;
  margin-top: 40px;
}
@media (min-width: 768px) {
  footer .footer-right-block {
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 0;
  }
}
footer ul.menuFooter {
  display: flex;
  flex-direction: column;
}
footer ul.menuFooter li {
  margin: 0 0 15px 0;
  width: 100%;
  text-align: left;
}
footer ul.menuFooter li a {
  display: block;
  color: #FFF;
  font-weight: 300;
}
footer ul.menuSocial {
  max-width: 150px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  footer ul.menuSocial {
    justify-content: flex-end;
  }
}
footer ul.menuSocial li {
  width: auto;
  display: block;
  margin: 0 0 5px 0;
  text-align: left;
}
@media (min-width: 768px) {
  footer ul.menuSocial li {
    margin: 0 0 0 5px;
    text-align: right;
  }
}
footer ul.menuSocial li a {
  color: #FFF;
}
footer ul.menuSocial li.social-icon-instagram a,
footer ul.menuSocial li.social-icon-twitter a,
footer ul.menuSocial li.social-icon-linkedin a,
footer ul.menuSocial li.social-icon-youtube a {
  font-size: 0;
  display: inline-block;
}
footer ul.menuSocial li.social-icon-instagram a:before,
footer ul.menuSocial li.social-icon-twitter a:before,
footer ul.menuSocial li.social-icon-linkedin a:before,
footer ul.menuSocial li.social-icon-youtube a:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
footer ul.menuSocial li.social-icon-instagram a:before {
  background-image: url(../assets/images/icon-instagram.svg);
}
footer ul.menuSocial li.social-icon-twitter a:before {
  background-image: url(../assets/images/icon-twitter.svg);
}
footer ul.menuSocial li.social-icon-linkedin a:before {
  background-image: url(../assets/images/icon-linkedin.svg);
}
footer ul.menuSocial li.social-icon-youtube a:before {
  background-image: url(../assets/images/icon-youtube.svg);
}
footer ul.menuSocial li:last-child {
  width: 100%;
}
footer ul.menuSocial li.active a,
footer ul.menuSocial li.current-menu-item a,
footer ul.menuSocial li.current_page_item a {
  color: #FFF;
}
@media only screen and (min-width: 768px) {
  footer ul.menuSocial ul.menuSocial {
    font-size: 18px;
  }
  footer ul.menuSocial ul.menuSocial li {
    margin: 0 0 0 25px;
  }
}
/** Base Modals **/
.modal .modal-content {
  background: #FFF;
  border: none;
  box-shadow: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.modal .modal-content .btnClose {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0;
  z-index: 2;
  background: none;
  font-size: 40px;
  color: #2a2a2a;
}
.modal .modal-content .modal-body {
  padding: 0 15px;
  height: 400px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.modal .modal-content .modal-header {
  min-height: 50px;
  border: none;
  padding: 0;
  margin: 0 15px;
  display: table;
}
.modal .modal-content .modal-header .inner {
  display: table-cell;
  vertical-align: middle;
}
.modal .modal-content .modal-footer {
  min-height: 70px;
  border: none;
  padding: 15px;
  text-align: center;
  margin: 0 -5px;
}
.modal .modal-content .modal-footer input[type="submit"],
.modal .modal-content .modal-footer input[type="button"],
.modal .modal-content .modal-footer button,
.modal .modal-content .modal-footer .button .btn,
.modal .modal-content .modal-footer a.button,
.modal .modal-content .modal-footer a.btn {
  width: calc((50% - 13px));
  margin: 0 5px;
}
@media only screen and (min-width: 768px) {
  .modal {
    text-align: center;
  }
  .modal .modal-content {
    text-align: left;
  }
  .modal .modal-content .modal-body {
    height: 400px;
  }
  .modal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
  }
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    height: 100%;
  }
}
/** Modals with Fixed Footer **/
.modal.modalFixedFooter .modal-content .modal-body {
  height: calc((100vh - 140px));
}
@media only screen and (min-width: 768px) {
  .modal.modalFixedFooter .modal-content .modal-body {
    height: 400px;
  }
}
/** Full Screen Modals **/
.modal.modalFullScreen {
  width: 100%;
}
.modal.modalFullScreen .modal-dialog {
  width: 100%;
  margin: 0 auto;
}
.modal.modalFullScreen .modal-content {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.modal.modalFullScreen .modal-body {
  height: calc((100vh - 50px));
}
.modal.modalFullScreen:before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .modal.modalFullScreen:before {
    display: none;
  }
}
.modal-backdrop.in {
  opacity: 0.7;
}
/** Sections **/
section {
  margin: 0;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: #FFF;
  z-index: 2;
}
section.noPaddingTop {
  padding-top: 0;
}
section.noPaddingBottom {
  padding-bottom: 0;
}
section.noPadding {
  padding: 0;
}
section .container,
section .container-fluid {
  position: relative;
  z-index: 5;
}
.panel-1 section:not(.banner-image-static) {
  padding-top: 100px;
}
@media only screen and (min-width: 768px) {
  section {
    padding: 150px 5%;
  }
  section.noPaddingTop {
    padding-top: 0;
  }
  section.noPaddingBottom {
    padding-bottom: 0;
  }
  section.noPadding {
    padding: 0;
  }
  .panel-1 section:not(.banner-image-static) {
    padding-top: calc((5% + 100px));
  }
}
/** Full Screen Banner **/
section.fullScreenBanner {
  height: 100vh;
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  section.fullScreenBanner {
    height: 100vh;
  }
}
@media only screen and (min-width: 992px) {
  section.fullScreenBanner {
    height: 100vh;
  }
}
/** Full Width Slider **/
/** Slider **/
.swiper-container {
  padding-bottom: 50px;
}
.swiper-button-prev,
.swiper-button-next {
  background: none;
  line-height: 44px;
  font-size: 24px;
  outline: none !important;
  display: none;
}
.swiper-button-next {
  right: 15px;
}
.swiper-button-prev {
  left: 15px;
}
.swiper-pagination {
  bottom: 0 !important;
  display: flex;
}
.swiper-pagination .swiper-pagination-bullet {
  width: auto;
  height: 4px;
  flex: 1;
  margin: 0 !important;
  background: #dddbd3;
  opacity: 1;
  cursor: pointer;
  border: none;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #77AD1C;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 60px;
    height: 60px;
    display: block;
    line-height: 60px;
    font-size: 36px;
    background: rgba(0, 0, 0, 0.6);
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: #000000;
  }
}
/** Column Blocks **/
.colBlock {
  margin: 0 0 15px 0;
}
.colBlock .blockWrapper {
  width: 100%;
  float: left;
  height: auto;
  position: relative;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
}
.colBlock .imageWrapper {
  width: 100%;
  height: 0;
  float: left;
  padding-bottom: 66.66666%;
  position: relative;
  overflow: hidden;
  margin: 0 0 15px 0;
}
.colBlock .imageWrapper .image {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  z-index: 1;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.colBlock .imageWrapper .image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  z-index: 2;
  background: #000;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.colBlock .textWrapper {
  width: 100%;
  height: 100%;
  display: block;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-behavior: url(/ie/PIE.php);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.colBlock .textWrapper .textOuter {
  display: table;
  width: 100%;
  height: 100%;
}
.colBlock .textWrapper .textOuter .text {
  display: table-cell;
  vertical-align: top;
}
.exampleItem1:hover .imageWrapper .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.exampleItem1:hover .imageWrapper .image:before {
  opacity: 0.5;
}
.exampleItem2 .blockWrapper {
  box-shadow: 0 2px 4px 0 rgba(75, 79, 84, 0.25);
}
.exampleItem2 .textWrapper {
  padding: 15px;
}
.exampleItem2:hover .imageWrapper .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.exampleItem2:hover .imageWrapper .image:before {
  opacity: 0.5;
}
.exampleItem3 h4 {
  color: #FFF;
}
.exampleItem3 .textWrapper {
  padding: 15px;
  position: absolute;
  z-index: 2;
  opacity: 0;
  color: #FFF;
}
.exampleItem3 .textWrapper .textOuter .text {
  vertical-align: middle;
}
.exampleItem3:hover .imageWrapper .image {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.exampleItem3:hover .imageWrapper .image:before {
  opacity: 0.5;
}
.exampleItem3:hover .textWrapper {
  opacity: 1;
}
/** Pagination **/
.pagination {
  width: 100%;
  height: 30px;
  text-align: center;
  font-size: 16px;
  margin: 10px 0 25px 0;
}
.pagination li {
  list-style: none;
  float: none;
  display: inline-block;
  font-size: 12px;
  margin: 0;
}
.pagination li a {
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: solid 1px #dddbd3;
  border-left: none;
  color: #33a4be;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.pagination li a:hover {
  border: solid 1px #dddbd3;
  border-left: none;
}
.pagination li:first-child a {
  border-left: solid 1px #dddbd3;
}
.pagination li:first-child a:hover {
  border-left: solid 1px #dddbd3;
}
.pagination li.active a {
  background: #2a2a2a;
  border: solid 1px #2a2a2a;
}
.pagination li.active a:hover {
  background: #33a4be;
  border: solid 1px #33a4be;
}
/** Full Width Banner **/
section.fullWidthBanner {
  height: 100vh;
  padding: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-size: cover !important;
  background-position: center !important;
  text-align: center;
  font-size: 16px;
  z-index: 1;
}
section.fullWidthBanner .bannerWrapper {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 5%;
}
section.fullWidthBanner .bannerWrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.3;
  z-index: 1;
  background: #000;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
section.fullWidthBanner .bannerWrapper .container,
section.fullWidthBanner .bannerWrapper .container-fluid {
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.fullWidthBanner .bannerWrapper .text {
  font-size: 50px;
}
section.fullWidthBanner .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover !important;
  background-position: center !important;
  width: 100%;
  height: 100%;
}
section.bannerSlim .bannerWrapper .container .row .col,
section.bannerSlim .bannerWrapper .container-fluid .row .col {
  padding: 40px 20px;
}
section .logo-front-page {
  width: 88px;
  height: auto;
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  z-index: 100;
  margin: 0 auto;
}
/** Carousel Banner **/
.line {
  width: 30px;
  height: 4px;
  background: #1F2E33;
  display: block;
  margin-bottom: 30px;
}
.line.animated {
  width: 0;
  opacity: 1 !important;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.line.animated.fadeIn {
  opacity: 1 !important;
  width: 60px;
}
.triggerStickyNav {
  position: absolute;
  top: 40vh;
  left: 0;
}
.triggerStickyNav.banner_image_static {
  top: 100vh;
}
.quote {
  display: inline;
  background: #3b3b3b;
  color: #FFF;
  box-shadow: 10px 0 0 0 #697378, -10px 0 0 0 #697378, -10px 10px 0 0 #697378, 10px 10px 0 0 #697378;
}
section.third-party-platform-embeds-block {
  background: #3b3b3b;
}
@media only screen and (max-width: 767px) {
  section.third-party-platform-embeds-block .embed-responsive-16by9 {
    padding-bottom: 75vh;
  }
}
.rowFlex {
  display: flex;
  flex-wrap: wrap;
}
.jusitfy-content-center {
  justify-content: center!important;
}
.tile-statistic {
  color: #F1624E;
  text-align: center;
}
.tile-statistic .stat-ring {
  width: 200px;
  height: 200px;
  display: block;
  margin: 0 auto;
  position: relative;
  border: solid 15px #F1624E;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.tile-statistic .stat-ring .stat {
  width: 170px;
  padding: 0 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 700;
  font-size: 45px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.tile-statistic .stat-ring .stat span {
  display: inline-block;
  margin: 0 -4px;
}
.tile-sponsor img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .tile-sponsor .content {
    display: flex;
    flex-direction: column;
  }
  .tile-sponsor .buttonWrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 768px) {
  section.panel-content-and-text .row-content-item {
    padding-bottom: 5%;
    padding-top: 5%;
  }
  section.panel-content-and-text .row-content-item.items-1 .content-block {
    flex: none;
  }
  section.panel-content-and-text .row-content-item:last-of-type {
    padding-bottom: 0;
  }
  section.panel-content-and-text .row-content-item:first-of-type {
    padding-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  .rowFlex:before,
  .rowFlex:after {
    display: none;
  }
  .rowFlex.text-center {
    justify-content: center;
  }
  .rowInlineBlock .content-block,
  .rowInlineBlock .tile-basic {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }
}
@media only screen and (-ms-high-contrast: none), (-ms-high-contrast: active) and (min-width: 768px) {
  .rowFlex.items-1 .content-block {
    flex: 1 1 auto;
  }
}
@media only screen and (-ms-high-contrast: none), (-ms-high-contrast: active) and (min-width: 768px) {
  section.panel-tiles {
    padding-bottom: 100px !important;
  }
}
.tile-basic {
  text-align: left;
  flex: none;
  margin-bottom: 20px;
}
.tile-basic .innerWrapper {
  width: 100%;
  height: 100%;
  display: block;
}
.tile-basic .image {
  width: 100%;
  height: 0;
  padding-bottom: 110%;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}
.tile-basic .content {
  padding: 20px;
}
@media only screen and (min-width: 768px) {
  .tile-basic {
    margin-bottom: 0;
  }
  .tile-basic .content {
    padding: 10%;
  }
}
.tile-team img {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  height: auto;
  max-width: none !important;
}
.tile-cta .innerWrapper {
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  position: relative;
  display: block;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.tile-cta .innerWrapper h4 {
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.tile-cta .innerWrapper h3 {
  position: relative;
  padding-right: 5%;
}
.tile-cta .innerWrapper h3:after {
  content: "\f3d3";
  font-family: 'Ionicons';
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media only screen and (min-width: 768px) {
  .tile-cta .innerWrapper h3:after {
    font-size: 3.5vw;
  }
}
.tile-cta .innerWrapper .line {
  max-width: 0;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.tile-cta .innerWrapper.noLink {
  cursor: default;
}
.tile-cta .innerWrapper:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: #77AD1C;
  z-index: 4;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.tile-cta .innerWrapper:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.tile-cta .innerWrapper.link:hover:before {
  width: 100%;
}
.tile-cta .innerWrapper.link:hover:after {
  opacity: 0.2;
}
.tile-cta .innerWrapper.link:hover h4 {
  opacity: 1;
}
.tile-cta .innerWrapper.link:hover h3:after {
  opacity: 1;
}
.tile-cta .innerWrapper.link:hover .line {
  max-width: 200px;
}
.tile-cta .innerWrapper.link .image:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#66000000', GradientType=0);
  /* IE6-9 */
}
@media only screen and (min-width: 768px) {
  .tile-cta .innerWrapper.link:hover {
    -webkit-transform: translate(0, -5%);
    -moz-transform: translate(0, -5%);
    -o-transform: translate(0, -5%);
    -ms-transform: translate(0, -5%);
    transform: translate(0, -5%);
  }
}
.tile-cta .content {
  height: auto;
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 5%;
  z-index: 2;
}
.tile-cta .image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover !important;
  background-position: center !important;
}
@media only screen and (min-width: 768px) {
  section.cta-block .background {
    position: absolute;
    z-index: 1;
    bottom: 0;
    top: 50%;
    left: 0;
    right: 0;
  }
}
section.locality-block .heading-row {
  margin-bottom: 5%;
}
.tile-locality {
  margin-bottom: 5%;
}
.tile-locality .innerWrapper .image {
  position: relative;
}
.tile-locality .innerWrapper .image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.tile-locality .innerWrapper .line {
  margin-top: 40px;
  background: #2a2a2a;
}
section.video-block .videoContent {
  position: absolute;
  left: 5%;
  bottom: 5%;
  z-index: 2;
}
section.video-block .videoContent h2 {
  margin-bottom: 0;
}
.video {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}
.video .video-js {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.video .video-js .vjs-poster {
  background-size: cover !important;
}
.video .video-js .vjs-big-play-button {
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 40px;
  min-width: 0;
  background: #77AD1C;
  border: none;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media only screen and (min-width: 768px) {
  .video .video-js .vjs-big-play-button {
    width: 80px;
    height: 80px;
    font-size: 48px;
    line-height: 80px;
  }
}
.video .video-js .vjs-big-play-button .vjs-icon-placeholder:before {
  content: "\f488";
  font-family: 'Ionicons';
  color: #FFF;
}
.video .video-js:hover .vjs-big-play-button {
  background: #77AD1C;
}
.video .video-js:hover .vjs-big-play-button .vjs-icon-placeholder:before {
  color: #FFF;
}
.video .video-js.vjs-youtube-mobile .vjs-big-play-button {
  display: block;
}
.video .video-js .vjs-text-track-display {
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.video .video-js:hover .vjs-text-track-display {
  background: rgba(0, 0, 0, 0.5);
}
.video .video-js.vjs-has-started .vjs-text-track-display {
  background: none;
}
/** Tables **/
section.table-block .table-bottom-divider {
  width: auto;
  height: 1px;
  background: #213328;
  position: absolute;
  bottom: 0;
}
@media (min-width: 768px) {
  section.table-block .table-bottom-divider {
    left: 5%;
    right: 5%;
  }
}
table {
  width: 100%;
  background: none;
}
table th,
table td {
  text-align: right;
}
table td {
  font-weight: 400;
}
table tr th:first-child,
table tr td:first-child {
  text-align: left;
  padding-left: 15px;
}
table tr td:first-child,
table tr td:last-child {
  font-weight: 700;
}
table thead {
  border-bottom: 1px solid #dddbd3;
  font-family: 'Lateral Compressed', sans-serif;
  background: none;
  color: #000;
}
table thead tr th {
  padding: 15px 15px 15px 0;
  vertical-align: top;
  font-weight: 700;
}
table thead tr th span {
  font-weight: 400;
}
table thead tr th p {
  margin: 0 !important;
}
table tbody tr {
  border-bottom: 1px solid #dddbd3;
}
table tbody tr td {
  padding: 10px 15px 10px 0;
  vertical-align: middle;
}
table tbody tr:last-child td {
  background: #FFF;
}
@media only screen and (min-width: 768px) {
  table thead tr th {
    padding: 20px 20px 20px 0;
  }
  table tbody tr td {
    padding: 15px 20px 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  .table-responsive {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .table-responsive-wrapper {
    position: relative;
  }
  .table-responsive-wrapper.scroll:before {
    content: "";
    display: block;
    width: 15px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    -webkit-box-shadow: inset -10px 0px 10px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset -10px 0px 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: inset -10px 0px 10px 0px rgba(0, 0, 0, 0.15);
  }
}
.archive-blog .blog-tile {
  position: relative;
}
.archive-blog .blog-tile a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.sitemapWrapper ul.menuSitemap {
  margin: 0;
}
.sitemapWrapper ul.menuSitemap > li {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.sitemapWrapper ul.menuSitemap > li ul.sub-menu {
  margin: 0;
  padding: 10px 0 0 30px;
}
.sitemapWrapper ul.menuSitemap > li ul.sub-menu li {
  list-style: disc;
  margin: 0;
  padding: 0;
}
.sitemapWrapper ul.menuSitemapPrimary {
  margin: 0;
}
.sitemapWrapper ul.menuSitemapPrimary li {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .sitemapWrapper ul.menuSitemap {
    display: flex;
    flex-wrap: wrap;
  }
  .sitemapWrapper ul.menuSitemap > li {
    width: 33.333%;
  }
}
.banner-text .heading-row {
  margin-bottom: 180px;
}
.floor-plan-heading h3 {
  margin-bottom: 24px;
}
.floor-plan-heading .line {
  background: #F1624E;
}
.floor-plan-legend .title {
  margin-bottom: 10px;
}
.floor-plan-legend .legend {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.floor-plan-legend .legend .color-block {
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 10px;
}
.floor-plan-legend .legend.legend-for-lease .color-block {
  background: #DBC38F;
}
.floor-plan-legend .legend.legend-leased .color-block {
  background: #DBDEDE;
}
.floor-plan-legend .plan-link {
  margin-top: 30px;
  font-size: 18px;
  line-height: 25px;
  padding: 7px 18px;
  background: #F1624E;
  font-weight: 600;
  color: #FFF;
  display: inline-block;
}
blockquote {
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin: 0;
  padding: 25px 0;
  border-left: 0;
  color: #F1624E;
}
blockquote p {
  font-size: 25px;
  line-height: 33px;
}
blockquote + p {
  margin-top: 30px;
}
.bg-dark {
  background: #2a2a2a;
  color: #dddbd3;
}
.bg-dark .line {
  background: #dddbd3;
}
.bg-dark blockquote {
  color: #dddbd3;
}
.bg-light {
  background-color: #dddbd3;
}
.bg-lighter {
  background-color: #e5e2de;
}
.icon-angle {
  width: 50px;
  height: 20px;
  margin-bottom: 36px;
}
.icon-angle svg {
  width: 100%;
  height: auto;
}
.panel-section-heading .heading-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.panel-section-heading .heading-wrap .heading-shape,
.panel-section-heading .heading-wrap h2 {
  width: 33.3%;
  flex: 0 0 auto;
}
.panel-section-heading .heading-wrap .heading-shape {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.panel-section-heading .heading-wrap .heading-shape svg {
  width: 25%;
  max-width: 100px;
  flex: 0 0 auto;
  height: auto;
  color: #3b3b3b;
}
.panel-section-heading .heading-wrap .heading-shape.right {
  justify-content: flex-end;
}
.panel-section-heading.bg-light .heading-shape svg,
.panel-section-heading.bg-lighter .heading-shape svg {
  color: #f5f5f5;
}
.panel-bottom-stamp {
  z-index: 100;
  margin: 0 auto;
  width: 80px;
  height: 57px;
  margin-top: -28.5px;
  margin-bottom: -28.5px;
  position: relative;
}
section.nextUp-block {
  padding: 5% 0 0 0;
}
section.nextUp-block h2,
section.nextUp-block h5 {
  position: relative;
  padding-left: 5%;
  z-index: 2;
}
section.nextUp-block h5 {
  font-size: 12px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 8px;
}
section.nextUp-block h2 {
  font-size: 60px;
  font-weight: 800;
  line-height: 80px;
}
section.nextUp-block a {
  color: inherit;
}
section.nextUp-block h5 {
  color: inherit;
}
.tile-nextUp .image {
  width: 100%;
  height: 172px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-color: #3b3b3b;
  display: flex;
  align-items: center;
}
.tile-nextUp .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .tile-nextUp .image {
    height: 100px;
  }
}
.content-block {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.content-block .innerWrapper {
  width: 100%;
  position: relative;
}
.content-block .innerWrapper.innerWrapperFullBleed {
  overflow: hidden;
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}
@media (min-width: 768px) {
  .content-block .innerWrapper.innerWrapperFullBleed {
    margin-left: calc(-5% - 30px);
    margin-right: calc(-5% - 30px);
    width: calc(100% + 10% + 60px);
  }
}
.content-block .innerWrapper .image-caption {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 15px;
  font-size: 15px;
  line-height: 23px;
  text-align: right;
}
.content-block .innerWrapper .image-link:after {
  content: "";
  display: block;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity 0.25s ease-in-out;
}
.content-block .innerWrapper .image-link:hover:after {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .content-block.content-block-quote .innerWrapper {
    padding: 5px;
  }
}
.content-block.content-block-image img {
  width: 100%;
  height: auto;
  max-width: none !important;
}
.content-block .background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover !important;
  background-position: center !important;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) {
  .items-2 .content-block.content-block-quote.item-left {
    z-index: 2;
  }
  .items-2 .content-block.content-block-quote.item-left.col-sm-8 .innerWrapper {
    position: absolute;
    width: 113%;
    right: -13%;
  }
  .items-2 .content-block.content-block-quote.item-left.col-sm-6 .innerWrapper {
    position: absolute;
    width: 133%;
    right: -33%;
  }
  .items-2 .content-block.content-block-quote.item-left.col-sm-4 .innerWrapper {
    position: absolute;
    width: 150%;
    right: -50%;
  }
  .items-2 .content-block.content-block-quote.item-right.col-sm-8 .innerWrapper {
    position: absolute;
    width: 113%;
    left: -13%;
  }
  .items-2 .content-block.content-block-quote.item-right.col-sm-6 .innerWrapper {
    position: absolute;
    width: 133%;
    left: -33%;
  }
  .items-2 .content-block.content-block-quote.item-right.col-sm-4 .innerWrapper {
    position: absolute;
    width: 150%;
    left: -50%;
  }
}
@media only screen and (min-width: 768px) and (min-width: 768px) {
  .items-2 .innerTextWrapper {
    max-width: 300px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .items-2 .content-block {
    margin-bottom: 30px;
  }
  .items-2 .content-block.content-block-quote {
    z-index: 2;
    margin-top: -70px;
  }
  .items-2 .content-block.content-block-quote .innerWrapper {
    -webkit-transform: translate(0, 70px);
    -moz-transform: translate(0, 70px);
    -o-transform: translate(0, 70px);
    -ms-transform: translate(0, 70px);
    transform: translate(0, 70px);
  }
}
@media (max-width: 767px) {
  .bg-orange .image-content {
    color: #F1624E;
  }
  .bg-orange .image-content .line {
    background-color: #F1624E;
  }
}
@media (max-width: 767px) {
  .bg-light-grey .image-content {
    color: #F1F2F2;
  }
  .bg-light-grey .image-content .line {
    background-color: #F1F2F2;
  }
}
@media (max-width: 767px) {
  .bg-navy .image-content {
    background-color: #F1624E;
    color: #162226;
  }
  .bg-navy .image-content .line {
    background-color: #162226;
  }
}
.content-block-rich-text.item-right {
  margin-right: auto;
}
@media (max-width: 767px) {
  .mobile-order-1 {
    order: 1;
  }
  .mobile-order-2 {
    order: 2;
  }
}
@media (max-width: 767px) {
  .panel-content-and-text .row {
    margin-bottom: 60px;
  }
  .panel-content-and-text .row:last-child {
    margin-bottom: 0;
  }
}
.form-block .top-image {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .form-block .top-image {
    margin-bottom: 175px;
  }
}
.form-block .line {
  margin-left: auto;
  margin-right: auto;
}
.form-block .gform_wrapper {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .form-block .gform_wrapper {
    margin-top: 100px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.form-block .gform_confirmation_wrapper {
  padding: 0;
  text-align: left;
}
.form-block label {
  color: #dddbd3;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 8px;
}
.form-block ul.gform_fields {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .form-block ul.gform_fields li {
    display: flex;
    flex-direction: column;
  }
  .form-block ul.gform_fields li .ginput_container {
    margin-bottom: 0;
    margin-top: auto;
  }
}
.form-block ul.gform_fields input[type=email],
.form-block ul.gform_fields input[type=number],
.form-block ul.gform_fields input[type=password],
.form-block ul.gform_fields input[type=phone],
.form-block ul.gform_fields input[type=tel],
.form-block ul.gform_fields input[type=text],
.form-block ul.gform_fields textarea,
.form-block ul.gform_fields select {
  background-color: transparent;
  font-size: 16px;
  line-height: 22px;
  height: 28px;
  border-bottom: 1px solid #6A6968;
  padding: 0 0 6px 0;
  color: #FFF;
}
@media (min-width: 1600px) {
  .form-block ul.gform_fields input[type=email],
  .form-block ul.gform_fields input[type=number],
  .form-block ul.gform_fields input[type=password],
  .form-block ul.gform_fields input[type=phone],
  .form-block ul.gform_fields input[type=tel],
  .form-block ul.gform_fields input[type=text],
  .form-block ul.gform_fields textarea,
  .form-block ul.gform_fields select {
    font-size: 24px;
    line-height: 33px;
    height: 39px;
  }
}
.form-block ul.gform_fields .ginput_container_select:before,
.form-block ul.gform_fields .ginput_container_select select {
  color: #6A6968;
  font-weight: 300;
}
.form-block ul.gform_fields input::-webkit-input-placeholder,
.form-block ul.gform_fields textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  opacity: 1;
  font-weight: 300;
  color: #6A6968;
}
.form-block ul.gform_fields input:-moz-placeholder,
.form-block ul.gform_fields textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  opacity: 1;
  font-weight: 300;
  color: #6A6968;
}
.form-block ul.gform_fields input::-moz-placeholder,
.form-block ul.gform_fields textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  opacity: 1;
  font-weight: 300;
  color: #6A6968;
}
.form-block ul.gform_fields input:-ms-input-placeholder,
.form-block ul.gform_fields textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  opacity: 1;
  font-weight: 300;
  color: #6A6968;
}
.form-block ul.gform_fields input::placeholder,
.form-block ul.gform_fields textarea::placeholder {
  opacity: 1;
  font-weight: 300;
  color: #6A6968;
}
.form-block ul.gform_fields ul.gfield_checkbox li label,
.form-block ul.gform_fields ul.gfield_radio li label {
  font-size: 12px;
  padding-top: 4px;
  color: #FFF;
}
.form-block ul.gform_fields ul.gfield_checkbox li,
.form-block ul.gform_fields ul.gfield_radio li {
  display: flex;
  align-items: flex-start;
}
.form-block ul.gform_fields ul.gfield_checkbox li input,
.form-block ul.gform_fields ul.gfield_radio li input {
  flex: 0 0 20px;
}
.form-block ul.gform_fields .gfield_description {
  font-size: 13px;
  text-align: left;
  padding-top: 5px;
  color: #FFF;
}
.form-block ul.gform_fields .recaptcha-field {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .form-block ul.gform_fields .recaptcha-field {
    margin-top: 100px;
  }
}
.form-block ul.gform_fields .recaptcha-field .ginput_recaptcha {
  margin: 0 auto;
}
.form-block ul.gform_fields input[type=radio],
.form-block ul.gform_fields input[type=checkbox] {
  border-color: #FFF;
}
.form-block ul.gform_fields input[type=radio]:checked,
.form-block ul.gform_fields input[type=checkbox]:checked {
  background: #FFF;
}
.form-block input[type="submit"]:not(.vjs-button) {
  border: 1px solid #FFF;
  color: #FFF;
  min-width: 96px;
  font-size: 13px;
  font-weight: 700;
  height: 40px;
  line-height: 40px;
}
.form-block input[type="submit"]:not(.vjs-button):hover {
  background: #3b3b3b;
}
.form-block .gform-footer:before {
  content: "";
  display: block;
  width: 47px;
  height: 30px;
  margin: 16px auto;
  background-image: url("../assets/images/sitedesign-icon-submit.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.form-block .contacts {
  margin-top: 100px;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .form-block .contacts {
    flex-direction: column;
  }
}
.form-block .contacts .contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  align-items: center;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .form-block .contacts .contact {
    align-items: flex-start;
  }
  .form-block .contacts .contact:nth-child(odd) {
    align-items: flex-end;
  }
}
.form-block .contacts .name {
  font-weight: 600;
}
.form-block .contacts .contact-image {
  max-width: 170px;
  margin-bottom: 20px;
}
select option {
  color: #000000;
}
/*# sourceMappingURL=compiled.css.map */