@charset "UTF-8";
/* Utils */
/*.profile-pic {
  float: left;
  width: 250px;
  @include respond-to(xxs) { width: 100% ;}
  @include respond-to(xlg) { width: 125px; }
  @include respond-to(sm_landscape) { float: none; }
}*/
.graphik-sm {
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  -webkit-font-smoothing: antialiased; }

.mercury-sm {
  font-size: 18px; }

.mercury-lg {
  font-size: 60px; }
  @media only screen and (max-width: 991px) {
    .mercury-lg {
      font-size: 40px; } }

.yellow {
  color: #ffde16 !important; }

.gray {
  color: #a3a3a3 !important; }

.black {
  color: #000 !important; }

.white {
  color: #fff !important; }

/* Base */
div, span, a, p, li, ul, h1, h2, h3, h4, h5, h6 {
  box-sizing: border-box;
  display: block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

span {
  display: inline-block; }

img {
  width: 100%; }

a:focus, a:hover {
  text-decoration: none; }

p a {
  display: inline-block;
  color: #23527c; }

img[src="h"] {
  display: none !important; }

/*.profile-pic {
  float: left;
  width: 250px;
  @include respond-to(xxs) { width: 100% ;}
  @include respond-to(xlg) { width: 125px; }
  @include respond-to(sm_landscape) { float: none; }
}*/
h1 {
  font-size: 76px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 90px;
  text-shadow: 0px 7px 23px black; }
  @media only screen and (max-width: 991px) {
    h1 {
      font-size: 56px; } }
  @media only screen and (max-width: 767px) {
    h1 {
      font-size: 30px; } }
  @media only screen and (max-width: 480px) {
    h1 {
      font-size: 25px; } }

h2 {
  font-family: "Oswald", sans-serif;
  text-align: left;
  font-weight: 300;
  color: #1ba757;
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1; }
  @media only screen and (max-width: 767px) {
    h2 {
      font-size: 25px; } }
  h2 span {
    font-size: 24px;
    font-weight: 300; }

.front-h2 {
  padding: 30px 15px 25px;
  color: #007db6;
  line-height: 1.2; }
  @media only screen and (max-width: 480px) {
    .front-h2 {
      font-size: 26px; } }

.h3, h3 {
  font-size: 19px;
  font-weight: 700;
  padding-bottom: 10px; }

h4 {
  font-size: 24px;
  font-style: italic;
  color: #1ba757;
  margin: 45px 0 20px; }
  @media only screen and (max-width: 767px) {
    h4 {
      margin: 15px 0 20px; } }

h5 {
  font-size: 24px;
  color: #1ba757;
  text-transform: uppercase; }

p, li {
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 20px; }

.generic-main .col-full p a {
  display: inline-block; }

.yellow {
  color: #ffde16; }

.green {
  color: #1ba757; }

.darkgray {
  color: #666666; }

.thin {
  font-weight: 300; }

.bold {
  font-weight: 700; }

/*  Components */
.button, .main-nav-wrapper nav.nav-main ul li.button {
  text-transform: uppercase;
  font-weight: 700;
  color: #56a9cf;
  font-size: 19px;
  padding: 7px 35px;
  border: 1px solid #007db6;
  margin-left: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s; }
  .button:hover, .main-nav-wrapper nav.nav-main ul li.button:hover {
    color: #fff;
    text-decoration: none;
    background: #56a9cf; }
  .button:focus, .main-nav-wrapper nav.nav-main ul li.button:focus {
    outline: 0; }

.button-white {
  color: #fff;
  border: 1px solid #fff;
  margin: 0; }
  .button-white:hover {
    color: #56a9cf;
    text-decoration: none;
    background: #fff; }

.button-blue {
  border: 1px solid #56a9cf;
  background: #fff;
  margin: 0; }

.load-more {
  background: #898989;
  color: #fff;
  width: calc(33.3333% - 30px);
  margin: auto;
  height: 80px;
  font-size: 20px;
  text-align: center;
  padding-top: 25px;
  position: relative;
  margin-top: 50px;
  cursor: pointer; }
  .load-more:hover {
    text-decoration: none;
    color: #fff; }
  @media only screen and (max-width: 767px) {
    .load-more {
      width: 100%;
      margin-top: 0; } }
  .load-more:after {
    content: '';
    background: #ffde16;
    height: 1px;
    width: 80px;
    position: absolute;
    bottom: 22px;
    left: 50%;
    margin-left: -40px; }

.hover-transition, .main-nav-wrapper nav.nav-main ul li a {
  position: relative; }
  .hover-transition:after, .main-nav-wrapper nav.nav-main ul li a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 32px;
    bottom: 0;
    left: 0;
    background-color: #ffde16;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
  .hover-transition:hover, .main-nav-wrapper nav.nav-main ul li a:hover {
    text-decoration: none; }
    .hover-transition:hover:after, .main-nav-wrapper nav.nav-main ul li a:hover:after {
      visibility: visible;
      -webkit-transform: scaleX(1);
      transform: scaleX(1); }

.news .pagination {
  display: flex;
  justify-content: center; }
  .news .pagination a, .news .pagination span {
    border-radius: 0;
    color: #1ba757;
    background-color: #fff;
    border: 1px solid #ddd;
    display: inline;
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    font-family: "Helvetica Neue LT W01_57 Cond";
    font-size: 20px; }
  .news .pagination span {
    background: rgba(0, 0, 0, 0.03); }
  .news .pagination > li:nth-of-type(2) a {
    color: #1ba757;
    background-color: #fff;
    border: 1px solid #ddd;
    display: inline; }

.back {
  color: #1ba757;
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 20px;
  cursor: pointer; }

.download {
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-left: -190px;
  background: #898989;
  width: 380px;
  height: 80px;
  text-align: center;
  cursor: pointer; }
  @media only screen and (max-width: 767px) {
    .download {
      position: relative;
      width: 100%;
      margin-left: 0;
      left: 0;
      bottom: 0; } }
  .download a {
    font-size: 20px;
    color: #fff;
    line-height: 80px;
    display: inline-block;
    position: relative; }
    .download a:after {
      content: '';
      height: 1px;
      width: 100%;
      background: #ffde16;
      display: block;
      position: absolute;
      bottom: 20px;
      left: 0;
      visibility: visible;
      -webkit-transform: scaleX(1);
      transform: scaleX(1);
      -webkit-transition: all 0.3s ease-in-out 0s;
      transition: all 0.3s ease-in-out 0s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      -ms-transition: 0.3s;
      transition: 0.3s; }
  .download:hover a {
    text-decoration: none; }
    .download:hover a:after {
      visibility: hidden;
      -webkit-transform: scaleX(0);
      transform: scaleX(0); }

/*.profile-pic {
  float: left;
  width: 250px;
  @include respond-to(xxs) { width: 100% ;}
  @include respond-to(xlg) { width: 125px; }
  @include respond-to(sm_landscape) { float: none; }
}*/
.graphik-sm {
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  -webkit-font-smoothing: antialiased; }

.mercury-sm {
  font-size: 18px; }

.mercury-lg {
  font-size: 60px; }
  @media only screen and (max-width: 991px) {
    .mercury-lg {
      font-size: 40px; } }

.yellow {
  color: #ffde16 !important; }

.gray {
  color: #a3a3a3 !important; }

.black {
  color: #000 !important; }

.white {
  color: #fff !important; }

/*.profile-pic {
  float: left;
  width: 250px;
  @include respond-to(xxs) { width: 100% ;}
  @include respond-to(xlg) { width: 125px; }
  @include respond-to(sm_landscape) { float: none; }
}*/
body {
  margin-top: 140px !important;
  font-family: "Oswald", sans-serif; }
  @media only screen and (min-width: 1024px) and (max-width: 1199px) {
    body {
      margin-top: 140px !important; } }
  @media only screen and (max-width: 991px) {
    body {
      margin-top: 61px !important; } }
  body.menuon {
    position: fixed; }

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left; }
  nav ul li {
    display: inline-block; }
    nav ul li a {
      color: inherit;
      font-family: inherit;
      text-decoration: none;
      line-height: 1.4;
      position: relative;
      display: inline-block; }

.main-nav-wrapper,
.sub-nav-wrapper {
  position: relative;
  z-index: 2000; }

.main-nav-wrapper {
  background: #fff; }
  .main-nav-wrapper .container {
    padding: 25px 15px;
    height: 110px;
    overflow: hidden;
    z-index: 99; }
    @media only screen and (max-width: 991px) {
      .main-nav-wrapper .container {
        height: 60px;
        padding: 0 15px;
        position: static; } }
  .main-nav-wrapper nav.nav-main {
    float: left;
    width: 100%; }
    .main-nav-wrapper nav.nav-main ul {
      float: right;
      margin: 19px 0 10px 0;
      font-size: 18px;
      font-weight: 300;
      letter-spacing: 1.2px;
      text-transform: uppercase; }
      .main-nav-wrapper nav.nav-main ul li {
        padding: 0 10px 0 10px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 15px;
        letter-spacing: 0.2px; }
        @media only screen and (max-width: 1199px) {
          .main-nav-wrapper nav.nav-main ul li {
            font-size: 13px;
            padding: 0 0 0 10px; } }
        @media only screen and (max-width: 991px) {
          .main-nav-wrapper nav.nav-main ul li {
            display: block; } }
        .main-nav-wrapper nav.nav-main ul li.last-item {
          border-right: 0;
          padding-right: 0; }
        .main-nav-wrapper nav.nav-main ul li.button a {
          letter-spacing: initial; }
        .main-nav-wrapper nav.nav-main ul li a.active, .main-nav-wrapper nav.nav-main ul li a:hover {
          color: #007db6;
          text-decoration: none; }
        .main-nav-wrapper nav.nav-main ul li.current-menu-item a {
          color: #007db6; }
          .main-nav-wrapper nav.nav-main ul li.current-menu-item a:after {
            visibility: visible;
            -webkit-transform: scaleX(1);
            transform: scaleX(1); }

nav.nav-mobile {
  display: none;
  z-index: 999;
  width: 100%; }
  nav.nav-mobile ul {
    background: #fff;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: left;
    padding: 0 15px 90px;
    top: 77px;
    height: calc(100vh - 77px) !important; }
    @media only screen and (max-width: 991px) {
      nav.nav-mobile ul {
        top: 60px;
        overflow-y: scroll; } }
    nav.nav-mobile ul li {
      display: block;
      padding: 5px 0;
      margin: 0; }
      nav.nav-mobile ul li a {
        font-size: 23px;
        line-height: 40px;
        display: block;
        color: #000;
        font-weight: 300;
        overflow: hidden;
        text-transform: uppercase; }
        nav.nav-mobile ul li a:hover {
          color: #000; }
      nav.nav-mobile ul li:nth-last-of-type(1) a {
        float: left;
        margin-left: 0;
        padding: 0;
        border: 0;
        color: #007db6 !important;
        font-weight: 400 !important; }
      nav.nav-mobile ul li.button, nav.nav-mobile .main-nav-wrapper nav.nav-main ul li.button, .main-nav-wrapper nav.nav-main nav.nav-mobile ul li.button {
        float: left;
        border: 0; }

.nav-trigger {
  display: none;
  cursor: pointer;
  z-index: 99;
  float: right;
  width: 19px;
  height: 19px;
  position: relative;
  top: 22px;
  margin: 0 auto 0;
  transition-duration: 0.5s; }
  .nav-trigger .icon {
    width: 18px;
    height: 17px;
    position: relative;
    cursor: pointer;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out; }
    .nav-trigger .icon span {
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: #000;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: 0.25s ease-in-out;
      -moz-transition: 0.25s ease-in-out;
      -o-transition: 0.25s ease-in-out;
      -ms-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out; }
      .nav-trigger .icon span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center; }
      .nav-trigger .icon span:nth-child(2) {
        top: 6px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center; }
      .nav-trigger .icon span:nth-child(3) {
        top: 12px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center; }
  .nav-trigger.open .icon .icon {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s; }
    .nav-trigger.open .icon .icon:before {
      top: -19px;
      transform: rotateZ(45deg) scaleX(1.25) translate(12px, 12px); }
    .nav-trigger.open .icon .icon:after {
      top: 19px;
      transform: rotateZ(-45deg) scaleX(1.25) translate(12px, -12px); }
  .nav-trigger.open .icon span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 1px;
    left: 4px; }
  .nav-trigger.open .icon span:nth-child(2) {
    width: 0%;
    opacity: 0; }
  .nav-trigger.open .icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 14px;
    left: 4px; }
  .nav-trigger:hover {
    cursor: pointer; }

.nav-button-desktop {
  display: block; }

.nav-button-mob {
  display: none; }
  .nav-button-mob a {
    margin-left: 0; }

@media only screen and (max-width: 991px) {
  .nav-trigger {
    display: block; }

  nav.nav-main {
    display: none; }

  nav.nav-mobile {
    display: block; }

  .nav-button-desktop {
    display: none; }

  .nav-button-mob {
    display: block; } }
.sub-menu {
  background: #007db6;
  text-align: center; }
  .sub-menu ul {
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: inline-flex;
    height: 61px; }
    .sub-menu ul li {
      float: left;
      margin: 20px 0 15px;
      font-size: 16px;
      letter-spacing: 1px;
      font-weight: 300;
      min-width: 220px; }
      @media only screen and (max-width: 767px) {
        .sub-menu ul li {
          padding: 0;
          margin: 0; } }
      .sub-menu ul li a {
        color: #fff;
        position: relative; }
        .sub-menu ul li a:after {
          opacity: 0;
          -webkit-transition: 0.2s;
          -moz-transition: 0.2s;
          -o-transition: 0.2s;
          -ms-transition: 0.2s;
          transition: 0.2s;
          content: '';
          background-image: url("../../../assets/img/icon-up.png");
          width: 20px;
          height: 10px;
          display: block;
          background-size: cover;
          background-repeat: no-repeat;
          position: absolute;
          bottom: -24px;
          left: calc(50% - 10px); }
        .sub-menu ul li a:hover {
          text-decoration: none; }
          .sub-menu ul li a:hover:after {
            opacity: 1; }
        @media only screen and (max-width: 767px) {
          .sub-menu ul li a {
            padding: 20px 15px 15px; } }
      .sub-menu ul li.active a {
        font-weight: 700; }
        .sub-menu ul li.active a:after {
          opacity: 1; }

header {
  position: fixed;
  width: 100%;
  color: #000;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s; }
  @media only screen and (max-width: 991px) {
    header {
      padding: 0; } }
  header a, header img, header div {
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s; }
  header.open {
    background: #fff; }
  header.sticky {
    left: 0;
    right: 0;
    top: 0;
    background: #fff;
    z-index: 9; }
    header.sticky .container {
      padding: 10px 15px; }
      @media only screen and (max-width: 991px) {
        header.sticky .container {
          padding: 0 15px; } }
    header.sticky .main-nav-wrapper .container {
      height: 80px; }
      @media only screen and (max-width: 991px) {
        header.sticky .main-nav-wrapper .container {
          height: 61px; } }
    header.sticky .logo-container {
      width: 160px;
      padding-top: 0; }
      @media only screen and (min-width: 1024px) and (max-width: 1199px) {
        header.sticky .logo-container {
          width: 120px; } }
      @media only screen and (max-width: 991px) {
        header.sticky .logo-container {
          padding-top: initial;
          width: 92.5px; } }
  header .button, header .main-nav-wrapper nav.nav-main ul li.button, .main-nav-wrapper nav.nav-main ul header li.button {
    float: right; }
  header .nav-button-desktop {
    margin-top: 9px; }
    @media only screen and (min-width: 992px) and (max-width: 1023px) {
      header .nav-button-desktop {
        margin-top: 5px; } }

.logo-container {
  float: left;
  width: 170px; }
  @media only screen and (max-width: 991px) {
    .logo-container {
      float: left;
      width: 92.5px;
      margin-top: 14px; } }
  .logo-container img {
    width: 100%; }

/* Layout */
footer {
  text-transform: uppercase;
  background: #007db6;
  color: #fff;
  padding: 30px 0 60px; }
  footer .menu ul {
    padding-left: 0;
    color: inherit; }
    footer .menu ul a {
      color: inherit;
      font-size: 15px;
      letter-spacing: 1.2px;
      line-height: 1.8; }
      @media only screen and (max-width: 480px) {
        footer .menu ul a {
          font-size: 12px; } }
  @media only screen and (max-width: 480px) {
    footer .menu,
    footer .social {
      width: 50%; } }
  footer .fa {
    color: #fff;
    font-size: 28px;
    float: left;
    margin-left: 18px;
    margin-right: 10px;
    margin-top: 15px; }
  footer .copy-right {
    text-transform: capitalize;
    font-size: 12px;
    text-align: center;
    opacity: 0.5;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: 30px; }
  footer .social img {
    width: 110px;
    margin-top: 20px; }

.footer-button {
  background: #56a9cf;
  height: 140px;
  text-align: center;
  color: #fff; }

body.opened {
  overflow: hidden; }

.entries-columns {
  overflow: hidden;
  padding-left: 0; }
  .entries-columns li {
    display: none;
    width: 33.33333333%;
    float: left;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    list-style: none; }
    @media only screen and (max-width: 991px) {
      .entries-columns li {
        width: 50%; } }
    @media only screen and (max-width: 480px) {
      .entries-columns li {
        width: 100%; } }
    .entries-columns li .img-container {
      padding-top: 55%;
      position: relative; }
      .entries-columns li .img-container img {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0; }
    .entries-columns li:nth-child(-n+6) {
      display: block; }

/* VIEWBOX STYLE */
.viewbox {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background-color: #151515;
  z-index: 99999;
  display: none; }

#flscreen {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px; }

.viewbox .icon {
  position: absolute;
  height: 20px;
  width: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: 700; }

.viewbox .icon:hover, .viewbox .active {
  background-color: rgba(14, 14, 15, 0.15);
  opacity: 1.0; }

.viewbox .panel {
  position: fixed;
  top: -40px;
  left: 0px;
  height: 40px;
  width: 100%;
  background: none;
  z-index: 9999999;
  display: none; }

.viewbox .panel .number, .viewbox .panel h3 {
  display: block;
  height: 100%;
  padding: 0px 12px;
  line-height: 35px;
  color: #fff;
  font-size: 0.9em;
  float: left;
  margin-top: 7px; }

.viewbox .panel .number {
  color: rgba(0, 0, 0, 0.5);
  line-height: 40px;
  border-right: solid 1px rgba(0, 0, 0, 0.14); }

.viewbox .panel .close {
  height: 100%;
  top: 5px;
  right: 20px;
  padding: 0px 10px;
  background-size: 30px;
  background-image: url(../../vender/Flickr-Gallery/img/close.svg);
  opacity: .8; }

.viewbox .panel .resize {
  height: 100%;
  top: 0px;
  right: 40px;
  padding: 0px 10px;
  background-size: 15px;
  background-image: url(../../vender/Flickr-Gallery/img/resize.svg);
  border-right: solid 1px rgba(0, 0, 0, 0.14);
  display: none; }

.viewbox .next, .viewbox .prev {
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  /*    background-size: 50px; */
  display: none; }

.viewbox .next {
  right: 10px;
  background-image: url(../../vender/Flickr-Gallery/img/next.svg); }

.viewbox .prev {
  left: 10px;
  background-image: url(../../vender/Flickr-Gallery/img/prev.svg); }

/* CONTENT OF VIEWBOX */
.viewbox .media_c {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: #000;
  top: 0;
  left: 0 !important;
  z-index: 600;
  opacity: 1 !important;
  box-shadow: 0px 0px 13px #000;
  display: table;
  text-align: center;
  overflow: hidden; }
  @media only screen and (max-width: 1199px) {
    .viewbox .media_c {
      display: block; } }

.viewbox .loader {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background: url(../../vender/Flickr-Gallery/img/oval.svg) center no-repeat;
  background-size: 50px;
  z-index: 900;
  display: none; }

.viewbox .media_c img {
  height: auto;
  display: table-cell;
  vertical-align: middle;
  max-height: calc(100vh - 120px);
  width: auto;
  margin: auto;
  margin-top: 60px; }
  @media only screen and (max-width: 1199px) {
    .viewbox .media_c img {
      width: 100%;
      height: auto;
      top: 50%;
      position: relative; } }

.viewbox .details {
  position: fixed;
  height: auto;
  width: 100%;
  bottom: 10%;
  left: 0px;
  z-index: 900; }

.viewbox .details h2, .viewbox .details div, .viewbox .details p, .viewbox .details a {
  display: block;
  margin: 0px 5px 5px 25px;
  padding: 9px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #cecece;
  float: left;
  clear: both; }

.viewbox .details h2 {
  /*    clear: both;*/ }

.viewbox .details p {
  max-width: 85%;
  line-height: 20px;
  font-size: 0.9em; }

.viewbox .details div {
  font-size: 0.8em;
  font-style: italic; }

.viewbox .details .author, .viewbox .details a {
  margin-left: 5px;
  clear: none; }

.viewbox .details .comments {
  background-image: url(../../vender/Flickr-Gallery/img/comments.svg);
  background-repeat: no-repeat;
  background-position: 9px center;
  background-size: 17px;
  padding-left: 35px;
  font-size: 0.8em; }

/* COMMENTS */
.commentsPort {
  position: fixed;
  height: 100%;
  width: 360px;
  right: -420px;
  top: 0px;
  background-color: #F5F5F5;
  border-left: solid 3px #dddddd;
  z-index: 9999988;
  display: none; }

@media screen and (max-width: 880px) {
  /* Set the columns style */
  .niceGallery ul.entries-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3; } }
@media screen and (max-width: 780px) {
  /* Set the columns style */
  .niceGallery ul.entries-columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2; }

  .viewbox .details {
    bottom: 5%; }

  .viewbox .details p {
    max-width: 90%;
    line-height: 20px;
    font-size: 0.9em; } }
@media screen and (max-width: 680px) {
  /* Set the columns style */
  .niceGallery ul.entries-columns {
    width: 100%;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; } }
div.afg-description {
  display: none; }

#gallery .entries-columns li .img-container {
  padding-top: 47%; }

.top-button {
  display: block;
  overflow: hidden;
  background: #1ba757; }
  .top-button li {
    color: #fff;
    float: right;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    padding: 7px 10px;
    font-size: 17px;
    border-right: 1px solid #fff; }
    .top-button li a {
      color: #fff; }
    .top-button li:after {
      padding: 0 10px;
      left: 10px;
      width: calc(100% - 20px); }
    .top-button li:nth-of-type(1) {
      padding-right: 5px; }
      .top-button li:nth-of-type(1) a {
        color: #ffde16; }
      .top-button li:nth-of-type(1):after {
        padding: 0 10px;
        left: 10px;
        width: calc(100% - 15px); }
    .top-button li:nth-of-type(1) {
      border-right: 0; }

header.sticky .top-button .container {
  padding: 0 15px; }

.cart-link:before {
  content: "";
  background-image: url("../../../assets/img/icon-bag.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: block; }
  @media only screen and (max-width: 991px) {
    .cart-link:before {
      background-position: 0 -20px; } }

/*.profile-pic {
  float: left;
  width: 250px;
  @include respond-to(xxs) { width: 100% ;}
  @include respond-to(xlg) { width: 125px; }
  @include respond-to(sm_landscape) { float: none; }
}*/
html, body {
  position: relative;
  height: 100%; }

body {
  color: #000;
  margin: 0;
  padding: 0; }

.swiper-container {
  width: 100%;
  height: 100px;
  min-height: 640px; }
  @media only screen and (min-width: 1200px) {
    .swiper-container {
      min-height: 780px; } }
  @media only screen and (max-width: 480px) {
    .swiper-container {
      height: calc(100% - 60px);
      min-height: 0; } }

.swiper-slide {
  background-position: center;
  background-size: cover;
  color: #fff; }
  .swiper-slide > .container {
    display: table;
    height: 100%; }
  .swiper-slide .content-container {
    color: #fff;
    text-align: center;
    display: table-cell;
    vertical-align: middle; }
    .swiper-slide .content-container p {
      font-size: 40px;
      font-weight: 300;
      line-height: 1.4;
      text-shadow: 1px 1px 2px rgba(25, 24, 19, 0.45);
      padding: 0 30px; }
      @media only screen and (max-width: 991px) {
        .swiper-slide .content-container p {
          font-size: 25px; } }
    .swiper-slide .content-container a {
      background: #007db6;
      color: #fff;
      width: auto;
      margin: auto;
      height: auto;
      font-size: 20px;
      text-align: center;
      position: relative;
      margin-top: 10px;
      cursor: pointer;
      display: inline-block;
      padding: 20px 80px;
      line-height: 1; }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next,
.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s; }
  .swiper-button-prev:hover, .swiper-container-rtl .swiper-button-next:hover,
  .swiper-button-next:hover, .swiper-container-rtl .swiper-button-prev:hover {
    opacity: 1; }
  @media only screen and (max-width: 480px) {
    .swiper-button-prev, .swiper-container-rtl .swiper-button-next,
    .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
      display: none; } }

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0; }

.carousel-container {
  width: 100%;
  height: 310px;
  overflow: hidden;
  position: relative; }
  @media only screen and (min-width: 1801px) {
    .carousel-container {
      height: 390px; } }
  .carousel-container .swiper-slide {
    text-align: center;
    font-size: 24px;
    padding: 40px;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center; }
    .carousel-container .swiper-slide span {
      border-bottom: 1px solid #ffde16;
      padding-bottom: 4px; }
    @media only screen and (max-width: 767px) {
      .carousel-container .swiper-slide {
        font-size: 19px; } }
  .carousel-container a {
    color: inherit;
    text-decoration: none; }

.carousel-hover-container {
  position: absolute;
  background: #ffde16;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s; }
  @media only screen and (max-width: 769px) {
    .carousel-hover-container {
      opacity: 1;
      background: none;
      color: #fff; }
      .carousel-hover-container + a, .carousel-hover-container + span {
        display: none; } }
  .carousel-hover-container p {
    font-size: 18px;
    color: #000;
    text-shadow: none; }
    @media only screen and (max-width: 769px) {
      .carousel-hover-container p {
        color: #fff; } }
  .carousel-hover-container .carousel-hover {
    padding: 0 40px; }
    .carousel-hover-container .carousel-hover span {
      color: #000;
      border-bottom: 1px solid #000;
      padding-bottom: 4px;
      display: inline-block; }
      @media only screen and (max-width: 769px) {
        .carousel-hover-container .carousel-hover span {
          color: #fff;
          border-bottom: 1px solid #ffde16; } }
    .carousel-hover-container .carousel-hover p {
      padding: 20px 0 0;
      margin: auto;
      display: block; }

.swiper-slide:hover > .carousel-hover-container {
  opacity: 1;
  padding: 0; }

.swiper-pagination-bullet:after {
  content: '';
  width: 50px;
  height: 2px;
  display: inline-block;
  background: transparent;
  opacity: 0;
  -webkit-box-shadow: 2px 2px 12px 2px rgba(0, 0, 0, 0.43);
  -moz-box-shadow: 2px 2px 12px 2px rgba(0, 0, 0, 0.43);
  box-shadow: 2px 2px 12px 2px rgba(0, 0, 0, 0.43); }

.carousel-container {
  padding-bottom: 50px;
  margin-bottom: 20px; }

.carousel-pagination {
  bottom: 5px; }

.top-swiper .content-container {
  padding: 0 80px; }
  @media only screen and (max-width: 767px) {
    .top-swiper .content-container {
      padding: 0 15px; } }

#swipebox-title {
  font-family: "Helvetica Neue LT W01_57 Cond";
  text-transform: uppercase;
  font-size: 20px;
  padding-top: 10px; }

/* Pages */
.h1-container {
  background-image: url("../../../assets/images/bg-h1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  height: 450px;
  overflow: hidden; }
  @media only screen and (min-width: 1200px) {
    .h1-container {
      height: 550px; } }
  @media only screen and (max-width: 767px) {
    .h1-container {
      height: auto; } }
  @media only screen and (max-width: 480px) {
    .h1-container {
      min-height: 230px; } }

@media only screen and (max-width: 767px) {
  .h1-container-with-intro {
    background: none; } }
.h1-container-with-intro p, .h1-container-with-intro li {
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 20px; }
  @media only screen and (max-width: 1199px) {
    .h1-container-with-intro p, .h1-container-with-intro li {
      font-size: 16px; } }
.h1-container-with-intro h2 {
  text-transform: uppercase; }
  @media only screen and (max-width: 1199px) {
    .h1-container-with-intro h2 {
      font-size: 26px; } }
@media only screen and (max-width: 767px) {
  .h1-container-with-intro .col-left {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 230px; }
    .h1-container-with-intro .col-left h1 {
      margin: 0;
      padding-top: 90px; } }
.h1-container-with-intro .col-right {
  padding: 0 15px 0 80px;
  min-height: 450px;
  display: table; }
  .h1-container-with-intro .col-right .intro-container {
    display: table-cell;
    vertical-align: middle; }
    .h1-container-with-intro .col-right .intro-container .social {
      color: #fff;
      background: #1ba757;
      width: 35px;
      height: 35px;
      text-align: center;
      line-height: 35px;
      border-radius: 50%;
      position: relative; }
      .h1-container-with-intro .col-right .intro-container .social p {
        position: absolute;
        top: 0;
        left: 45px;
        color: #23527c; }
    .h1-container-with-intro .col-right .intro-container .social-2 {
      margin-top: 15px; }
  @media only screen and (min-width: 1200px) {
    .h1-container-with-intro .col-right {
      height: 550px; } }
  @media only screen and (max-width: 991px) {
    .h1-container-with-intro .col-right {
      padding: 0 15px 0 50px; } }
  @media only screen and (max-width: 767px) {
    .h1-container-with-intro .col-right {
      background: #ffde16;
      padding: 40px 15px;
      min-height: 10px;
      height: auto; } }

.slogan {
  color: #999999;
  font-size: 62px;
  font-weight: 300;
  line-height: 1.2;
  padding-right: 10px; }
  @media only screen and (max-width: 1199px) {
    .slogan {
      font-size: 47px; } }
  @media only screen and (max-width: 991px) {
    .slogan {
      font-size: 37px; } }
  .slogan .small {
    font-size: 48px;
    padding-left: 10px; }
    @media only screen and (max-width: 1199px) {
      .slogan .small {
        font-size: 35px; } }
    @media only screen and (max-width: 991px) {
      .slogan .small {
        font-size: 25px; } }
  .slogan .bold {
    font-weight: 700; }

.sub-body-main {
  background-image: url("../../../assets/images/bg-sub-content.jpg");
  background-size: 100%;
  background-position: top center;
  background-repeat: repeat-y; }
  .sub-body-main p, .sub-body-main li {
    color: #666666; }
  .sub-body-main .full-col li:before {
    color: #666666; }
  .sub-body-main li:before {
    color: #666666; }
  .sub-body-main #gallery li a, .sub-body-main.gallery li a {
    display: block; }
  .sub-body-main #gallery li:before, .sub-body-main.gallery li:before {
    display: none; }
  .sub-body-main #gallery li, .sub-body-main.gallery li {
    color: inherit; }
  .sub-body-main #gallery a p {
    color: inherit !important; }
  .sub-body-main img[src="h"] {
    display: none; }
  @media only screen and (max-width: 767px) {
    .sub-body-main > .container.team {
      margin-bottom: 15px; } }
  .sub-body-main .col-left {
    width: 37%; }
  .sub-body-main .col-right {
    width: 63%;
    background: #fff;
    padding: 60px 70px;
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 480px) {
      .sub-body-main .col-right {
        padding: 30px 30px; } }
  .sub-body-main .col-left,
  .sub-body-main .col-right {
    float: left;
    margin: 100px 0; }
    @media only screen and (max-width: 767px) {
      .sub-body-main .col-left,
      .sub-body-main .col-right {
        width: 100%;
        margin: 30px 0 0; } }
  @media only screen and (max-width: 767px) {
    .sub-body-main .col-right {
      margin-bottom: 20px; } }
  .sub-body-main .text-content {
    color: #666666; }
    .sub-body-main .text-content ul {
      padding-left: 10px; }
    .sub-body-main .text-content p, .sub-body-main .text-content li {
      font-size: 20px;
      line-height: 1.2; }
    .sub-body-main .text-content li:before {
      content: "• ";
      color: #666666;
      margin-right: 10px; }

.sub-body-img img {
  width: 100%; }

.image-and-text .col-left {
  width: 40%;
  margin-top: 65px; }
  .image-and-text .col-left img {
    width: 110%; }
.image-and-text .col-right {
  width: 59%; }

.text-and-image .col-left {
  width: 41%;
  left: 59%;
  margin-top: 65px;
  position: relative; }
  .text-and-image .col-left img {
    width: 110%;
    float: right; }
.text-and-image .col-right {
  width: 59%;
  right: 41%;
  position: relative;
  margin-top: 30px; }

@media only screen and (max-width: 767px) {
  .image-and-text .col-left,
  .image-and-text .col-right,
  .text-and-image .col-left,
  .text-and-image .col-right {
    width: 100%;
    margin: 15px 0 0;
    left: 0;
    right: 0; }
    .image-and-text .col-left img,
    .image-and-text .col-right img,
    .text-and-image .col-left img,
    .text-and-image .col-right img {
      width: 100%;
      height: auto; } }
@media only screen and (max-width: 767px) {
  .image-and-text .col-right,
  .text-and-image .col-right {
    margin-top: 0; } }

.full-col {
  padding: 90px; }
  .full-col a {
    display: inline-block;
    text-decoration: underline;
    cursor: pointer; }
  @media only screen and (max-width: 767px) {
    .full-col {
      padding: 60px 0; } }
  .full-col p, .full-col ul {
    margin-bottom: 20px; }
  .full-col p, .full-col li {
    font-size: 20px;
    font-weight: 300; }
  .full-col ul {
    padding-left: 0; }
  .full-col li {
    position: relative;
    padding-left: 21px; }
    .full-col li:before {
      content: "• ";
      color: #000;
      margin-right: 10px;
      display: inline-block;
      top: 0;
      position: absolute;
      left: 0; }
    .full-col li a, .full-col li span {
      width: calc(100% - 21px); }

.sub-body-banner {
  text-align: center;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  @media only screen and (max-width: 480px) {
    .sub-body-banner {
      background-position: 80%; } }
  .sub-body-banner img {
    width: 400px; }
    @media only screen and (max-width: 480px) {
      .sub-body-banner img {
        width: 80%; } }

.sub-body-logoes {
  color: #fff;
  padding-bottom: 130px; }
  @media only screen and (max-width: 480px) {
    .sub-body-logoes {
      padding-bottom: 90px; } }
  .sub-body-logoes h4 {
    margin-top: 0;
    color: #fff; }
  .sub-body-logoes .full-col {
    padding: 90px 90px 25px; }
    @media only screen and (max-width: 480px) {
      .sub-body-logoes .full-col {
        padding: 90px 0 25px; } }
  @media only screen and (max-width: 767px) {
    .sub-body-logoes .container {
      text-align: center; } }

.sub-body-logoes-secondary {
  color: #fff;
  padding-bottom: 110px; }

@media only screen and (max-width: 767px) {
  .logo-group {
    margin-left: -10px;
    margin-right: -10px; } }
.logo-group .clearfix {
  display: none; }
@media only screen and (max-width: 767px) {
  .logo-group .clearfix {
    display: block; } }
.logo-group .logo-container {
  width: calc(16.6666% - 20px);
  float: left;
  background: #fff;
  border-radius: 100%;
  padding: 30px;
  margin: 0 10px 20px;
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center; }
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo-group .logo-container {
      padding: 15px; } }
  @media only screen and (max-width: 767px) {
    .logo-group .logo-container {
      width: calc(33.3333% - 20px);
      margin-bottom: 20px; }
      .logo-group .logo-container .clearfix {
        display: block; } }
  @media only screen and (max-width: 480px) {
    .logo-group .logo-container {
      padding: 15px; } }
.logo-group .ratio {
  margin-top: 100%; }

.gallery {
  padding: 100px 0 200px; }
  @media only screen and (max-width: 767px) {
    .gallery {
      padding: 20px 0 15px; }
      .gallery ul {
        margin-bottom: 0; } }
  .gallery .tile {
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    margin-bottom: 30px;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      .gallery .tile {
        margin-bottom: 15px; } }
  .gallery .img-container {
    -webkit-transform: scale(1);
    transform: scale(1);
    overflow: hidden;
    height: 0;
    padding-top: 120%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    .gallery .img-container img {
      -webkit-transition: 0.5s;
      -moz-transition: 0.5s;
      -o-transition: 0.5s;
      -ms-transition: 0.5s;
      transition: 0.5s; }
  .gallery .tile:hover img,
  .gallery .swipebox:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .gallery .p-container {
    padding: 35px; }
    @media only screen and (max-width: 767px) {
      .gallery .p-container {
        height: auto !important; } }
    .gallery .p-container p, .gallery .p-container li {
      font-size: 20px;
      margin: 0 0 7px;
      position: relative;
      display: inline-block; }
      @media only screen and (max-width: 1199px) {
        .gallery .p-container p, .gallery .p-container li {
          font-size: 16px; } }
      .gallery .p-container p:after, .gallery .p-container li:after {
        content: '';
        background: #ffde16;
        height: 1px;
        width: 100%;
        position: absolute;
        bottom: -3px;
        left: 0; }
    .gallery .p-container p {
      -ms-word-break: break-all;
      word-break: break-all;
      /* Non standard for WebKit */
      word-break: break-word;
      -webkit-hyphens: auto;
      -moz-hyphens: auto;
      hyphens: auto; }
  .gallery div.afg-table {
    overflow: hidden; }

.h1-container-with-intro .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 450px;
  width: 100%; }
  @media only screen and (min-width: 1200px) {
    .h1-container-with-intro .background {
      height: 550px; } }
  .h1-container-with-intro .background .bg-left,
  .h1-container-with-intro .background .bg-right {
    float: left;
    width: 50%;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      .h1-container-with-intro .background .bg-left,
      .h1-container-with-intro .background .bg-right {
        width: 100%; } }
  .h1-container-with-intro .background .bg-left img {
    height: 450px;
    width: auto; }
    @media only screen and (min-width: 1200px) {
      .h1-container-with-intro .background .bg-left img {
        height: 550px; } }
    @media only screen and (max-width: 767px) {
      .h1-container-with-intro .background .bg-left img {
        margin-top: -20%; } }
@media only screen and (max-width: 767px) {
  .h1-container-with-intro {
    background: none; } }
.h1-container-with-intro .col-left {
  min-height: 450px; }
  @media only screen and (min-width: 1200px) {
    .h1-container-with-intro .col-left {
      height: 550px; } }
  .h1-container-with-intro .col-left img {
    position: absolute;
    bottom: 0;
    right: 0; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .h1-container-with-intro .col-left img {
        width: 420px; } }
.h1-container-with-intro .intro-container {
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 20px; }
  .h1-container-with-intro .intro-container > div {
    margin-bottom: 10px; }
  .h1-container-with-intro .intro-container .phone {
    overflow: hidden; }
    .h1-container-with-intro .intro-container .phone:before {
      content: '';
      background-image: url("../../../assets/img/icon-phone.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 35px;
      height: 35px;
      display: block;
      float: left;
      margin-right: 10px; }
    .h1-container-with-intro .intro-container .phone p {
      float: left;
      margin-top: 5px; }
  .h1-container-with-intro .intro-container .email {
    overflow: hidden; }
    .h1-container-with-intro .intro-container .email:before {
      content: '';
      background-image: url("../../../assets/img/icon-mail.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 35px;
      height: 35px;
      display: block;
      float: left;
      margin-right: 10px; }
    .h1-container-with-intro .intro-container .email p {
      float: left;
      margin-top: 5px;
      text-decoration: underline;
      color: #007db6; }
  .h1-container-with-intro .intro-container .post {
    overflow: hidden; }
    .h1-container-with-intro .intro-container .post:before {
      content: '';
      background-image: url("../../../assets/img/icon-post.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 35px;
      height: 35px;
      display: block;
      float: left;
      margin-right: 10px; }
    .h1-container-with-intro .intro-container .post p {
      float: left;
      margin-top: 5px; }

.contact {
  background: linear-gradient(to right, #1aa856 0%, #1aa856 50%, #000000 50%, #fedf15 50%, #fedf15 100%); }
  @media only screen and (max-width: 767px) {
    .contact.h1-container-with-intro .col-left {
      background: #1aa856; }
      .contact.h1-container-with-intro .col-left h1 {
        z-index: 3;
        position: absolute; }
      .contact.h1-container-with-intro .col-left img {
        max-width: 350px; } }
    @media only screen and (max-width: 767px) and (max-width: 600px) {
      .contact.h1-container-with-intro .col-left img {
        display: none; } }

@media only screen and (max-width: 767px) {
  .h1-container-with-intro .col-left {
    min-height: 230px; }
    .h1-container-with-intro .col-left h1 {
      margin: 0;
      padding-top: 90px; } }

.white-bg {
  background: #fff;
  margin-top: 85px;
  margin-bottom: 85px;
  padding: 0 65px;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 991px) {
    .white-bg {
      padding: 0 15px; } }
  @media only screen and (max-width: 767px) {
    .white-bg {
      margin-top: 15px;
      margin-bottom: 15px; } }

.generic-main {
  padding-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .generic-main {
      padding-bottom: 15px; } }
  .generic-main p {
    color: #666666; }
  .generic-main h5 {
    margin-bottom: 30px;
    margin-top: 0; }
  @media only screen and (max-width: 767px) {
    .generic-main .col-half-right h5 {
      margin-top: 30px; } }
  .generic-main h4 {
    margin-top: 0; }

@media only screen and (max-width: 991px) {
  .col-half-img-left h4,
  .col-half-img-right h4 {
    font-size: 16px; } }

.col-half-img-left {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .col-half-img-left {
      padding-top: 0;
      padding-bottom: 20px; } }
  .col-half-img-left .img-container {
    padding-right: 0; }
    @media only screen and (max-width: 767px) {
      .col-half-img-left .img-container {
        padding-right: 15px;
        padding-bottom: 15px; } }

.col-half-img-right {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .col-half-img-right {
      padding-top: 0;
      padding-bottom: 20px; } }
  .col-half-img-right .img-container {
    padding-left: 0; }
    @media only screen and (max-width: 767px) {
      .col-half-img-right .img-container {
        padding-left: 15px;
        padding-bottom: 15px; } }

.quotation {
  padding: 100px 0 50px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .quotation {
      padding: 50px 0 15px; } }
  .quotation p {
    padding: 0 55px;
    font-size: 24px; }
    @media only screen and (max-width: 767px) {
      .quotation p {
        font-size: 20px;
        padding: 0 10px; } }

.quote-content {
  text-align: center; }
  .quote-content:before {
    content: '';
    background: url("../../../assets/img/icon-quote-open.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: -40px; }
    @media only screen and (max-width: 767px) {
      .quote-content:before {
        width: 30px;
        height: 30px;
        top: -25px; } }
  .quote-content:after {
    content: '';
    background: url("../../../assets/img/icon-quote-close.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50px;
    height: 50px;
    display: block;
    float: right;
    margin-top: -20px; }
    @media only screen and (max-width: 767px) {
      .quote-content:after {
        width: 30px;
        height: 30px;
        margin-top: -5px; } }

.quote-author p {
  padding: 40px 0 0;
  text-align: right; }

.full-screen-video {
  color: #fff;
  text-align: center;
  padding-top: 300px;
  padding-bottom: 60px; }
  @media only screen and (max-width: 767px) {
    .full-screen-video {
      padding-top: 40px;
      padding-bottom: 30px; } }
  .full-screen-video .quote-content:before {
    background-image: url("../../../assets/img/icon-quote-open-white.png"); }
  .full-screen-video .quote-content:after {
    background-image: url("../../../assets/img/icon-quote-close-white.png"); }
  .full-screen-video .play-container {
    border: 2px solid #fff;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    position: relative;
    margin: auto;
    margin-top: 80px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s; }
  .full-screen-video .icon-play {
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 15px solid #ffde16;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -14px;
    margin-left: -4px;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s; }
  .full-screen-video h6 {
    position: relative;
    display: inline-block;
    font-size: 20px; }
    .full-screen-video h6:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      top: 27px;
      bottom: 0;
      left: 0;
      background-color: #ffde16; }
  .full-screen-video:hover .play-container {
    background: #ffde16;
    border: 2px solid #ffde16; }
  .full-screen-video:hover .icon-play {
    border-left: 15px solid #fff; }

.col-full {
  padding: 30px 0 50px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    .col-full {
      padding: 0 0 20px;
      text-align: left; } }
  .col-full h4 {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      .col-full h4 {
        margin-bottom: 30px; } }

.col-half {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .col-half {
      padding-bottom: 20px;
      padding-top: 0; } }

.col-half-left {
  padding-right: 60px; }
  @media only screen and (max-width: 1023px) {
    .col-half-left {
      padding-right: 30px; } }

.col-half-right {
  padding-left: 60px; }
  @media only screen and (max-width: 1023px) {
    .col-half-right {
      padding-left: 30px; } }
  @media only screen and (max-width: 767px) {
    .col-half-right {
      padding-left: 15px; } }

@media only screen and (max-width: 767px) {
  .word-limit {
    padding-bottom: 10px; } }
.word-limit p {
  display: inline; }
.word-limit .readmore {
  color: #007db6;
  font-size: 16px;
  text-decoration: underline;
  font-style: italic; }

.col-half-img-right .img-container {
  left: 50%; }
  @media only screen and (max-width: 767px) {
    .col-half-img-right .img-container {
      left: 0; } }
.col-half-img-right .col-half-left {
  right: 50%; }
  @media only screen and (max-width: 767px) {
    .col-half-img-right .col-half-left {
      right: 0; } }

.col-full-img {
  margin-top: 50px;
  margin-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .col-full-img {
      margin-top: 0;
      margin-bottom: 0; } }

.full-screen-video {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../../../assets/images/bg-video.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .full-screen-video .quotation {
    color: #fff; }
  .full-screen-video a {
    color: #fff; }
    .full-screen-video a:hover {
      color: #fff;
      text-decoration: none; }

.locations {
  background: linear-gradient(to right, #000000 0%, #000000 50%, #000000 50%, #fedf15 50%, #fedf15 100%); }
  @media only screen and (max-width: 767px) {
    .locations .col-left {
      background: #000; } }
  .locations .col-left img {
    width: auto;
    min-height: 550px; }
    @media only screen and (max-width: 767px) {
      .locations .col-left img {
        bottom: auto;
        top: -70%; } }
  .locations h1 {
    position: absolute;
    z-index: 2; }

.intro-content p {
  font-size: 24px;
  margin-bottom: 20px; }

.sub-body-main-locations .generic-main {
  position: relative;
  margin-bottom: 135px;
  padding-top: 80px; }
  @media only screen and (max-width: 767px) {
    .sub-body-main-locations .generic-main {
      padding-top: 15px;
      margin-bottom: 15px; } }

.location-dropdown {
  text-align: right;
  padding-right: 0;
  padding-left: 0; }
  @media only screen and (max-width: 767px) {
    .location-dropdown {
      margin-bottom: 15px; } }

.bootstrap-select {
  width: 50% !important; }
  @media only screen and (max-width: 767px) {
    .bootstrap-select {
      width: 100% !important; } }
  .bootstrap-select > button.dropdown-toggle {
    background: #007db6;
    border-radius: 0;
    text-align: right;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
    border: 0;
    outline: 0 !important;
    padding: 8px 12px;
    padding-right: 45px; }
    .bootstrap-select > button.dropdown-toggle:hover {
      background: #007db6 !important; }
    .bootstrap-select > button.dropdown-toggle:focus {
      outline: 0 !important; }
    .bootstrap-select > button.dropdown-toggle .filter-option {
      text-align: right !important; }
  .bootstrap-select.open .dropdown-toggle {
    box-shadow: none;
    background: #007db6;
    border: 0; }
  .bootstrap-select .dropdown-menu {
    background: #666666;
    border: 0;
    border-radius: 0;
    margin-top: 0;
    padding: 0; }
    .bootstrap-select .dropdown-menu > li > a {
      color: #fff;
      padding: 8px 20px;
      text-align: right;
      font-weight: 300;
      font-size: 16px;
      padding: 8px 45px 8px 20px; }
      .bootstrap-select .dropdown-menu > li > a:hover {
        background: #007db6; }
      .bootstrap-select .dropdown-menu > li > a:focus {
        outline: 0;
        background: #007db6; }

.vertical-center-container {
  display: table;
  height: 430px; }
  @media only screen and (max-width: 767px) {
    .vertical-center-container {
      display: block;
      height: auto; } }
  .vertical-center-container .vertical-center {
    display: table-cell;
    vertical-align: middle; }
    @media only screen and (max-width: 767px) {
      .vertical-center-container .vertical-center {
        display: block; } }

.news,
.merchandise-single {
  padding-top: 45px;
  padding-bottom: 45px; }
  @media only screen and (max-width: 767px) {
    .news,
    .merchandise-single {
      padding-top: 15px;
      padding-bottom: 15px; } }
  .news .generic-main,
  .merchandise-single .generic-main {
    padding: 40px;
    margin-bottom: 40px;
    margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      .news .generic-main,
      .merchandise-single .generic-main {
        margin-top: 0;
        margin-bottom: 0;
        padding: 15px; } }
    .news .generic-main img,
    .merchandise-single .generic-main img {
      width: 100%; }
    .news .generic-main .img-container,
    .merchandise-single .generic-main .img-container {
      height: 190px;
      overflow: hidden; }
    @media only screen and (max-width: 767px) {
      .news .generic-main h4,
      .merchandise-single .generic-main h4 {
        font-size: 15px; } }

.news-detail .img-container {
  padding-right: 50px; }
.news-detail h2 {
  line-height: 1.2; }
.news-detail .generic-main img {
  margin-top: 30px; }
  @media only screen and (max-width: 767px) {
    .news-detail .generic-main img {
      margin-top: 0;
      margin-bottom: 20px; } }

.sub-body-main .generic-main li:before {
  content: "• ";
  color: #666666;
  margin-right: 10px; }
.sub-body-main .generic-main li a {
  display: inline-block; }

@media only screen and (min-width: 992px) {
  .page-template-page-contact {
    display: flex;
    display: -ms-flexbox;
    min-height: 100vh;
    flex-direction: column;
    margin-top: 0 !important;
    position: relative; }
    .page-template-page-contact .sub-header {
      flex: 1 0 0;
      margin-top: 140px; }
      .page-template-page-contact .sub-header .h1-container-with-intro {
        min-height: calc(100vh - 140px - 389px); }
        .page-template-page-contact .sub-header .h1-container-with-intro .col-left,
        .page-template-page-contact .sub-header .h1-container-with-intro .col-right {
          min-height: calc(100vh - 140px - 389px); } }
.sub-menu.sub-mobile ul {
  display: block !important;
  height: 65px;
  position: relative;
  width: 220px;
  margin: auto; }
  .sub-menu.sub-mobile ul:after {
    font-family: FontAwesome;
    content: "\f0d7";
    position: absolute;
    top: 15px;
    color: #fff;
    display: block;
    right: 0;
    font-size: 25px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s; }
  .sub-menu.sub-mobile ul li {
    width: 100%; }
    .sub-menu.sub-mobile ul li a:after {
      display: none; }
    .sub-menu.sub-mobile ul li a:focus, .sub-menu.sub-mobile ul li a:hover {
      outline: 0;
      text-decoration: none; }
  .sub-menu.sub-mobile ul.expanded:after {
    font-family: FontAwesome;
    content: "\f0d8";
    top: 12px; }

#map {
  min-height: 430px; }

@media only screen and (max-width: 991px) {
  #afg-1 .afg-cell {
    width: 50% !important; } }
@media only screen and (max-width: 480px) {
  #afg-1 .afg-cell {
    width: 100% !important; } }

@media only screen and (max-width: 480px) {
  a.swipebox {
    margin-bottom: 5px !important; } }

.single table {
  margin-bottom: 20px;
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 15px;
  color: #666666; }
  .single table td {
    padding: 0 5px; }

.merchandise .entries-columns li .img-container {
  padding-top: 85%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
  .merchandise .entries-columns li .img-container img {
    padding: 20px; }
.merchandise p:after {
  display: none; }
.merchandise p {
  color: #000;
  margin: 0; }
.merchandise .price {
  color: #1ba757;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1;
  display: block !important; }
  .merchandise .price:after {
    content: " (incl postage anywhere in Australia)" !important;
    display: inline;
    background: none !important;
    position: relative !important;
    height: auto !important;
    bottom: 0 !important; }

.merchandise-single p {
  color: #191919; }
.merchandise-single .price {
  color: #949494;
  font-size: 23px;
  margin-bottom: 25px; }
.merchandise-single .flexslider {
  margin: 0; }
.merchandise-single .slider li img {
  padding: 0 50px; }
  @media only screen and (max-width: 767px) {
    .merchandise-single .slider li img {
      padding: 0 20px; } }
.merchandise-single .carousel {
  padding: 0 60px; }
  @media only screen and (max-width: 768px) {
    .merchandise-single .carousel {
      padding: 0; } }
  .merchandise-single .carousel li img {
    padding: 0 10px;
    border: 1px solid black;
    opacity: 0.2;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s; }
  .merchandise-single .carousel li.flex-active-slide img {
    opacity: 1; }
.merchandise-single .flex-direction-nav a.flex-next,
.merchandise-single .flex-direction-nav a.flex-prev {
  display: none; }
.merchandise-single .back {
  padding-top: 50px; }
.merchandise-single .bootstrap-select > button.dropdown-toggle {
  background: #fff;
  border: 1px solid grey;
  border-radius: 2px;
  height: 35px;
  color: #989898 !important;
  line-height: 35px;
  padding: 0 10px; }
  .merchandise-single .bootstrap-select > button.dropdown-toggle .filter-option {
    text-align: left !important; }
  .merchandise-single .bootstrap-select > button.dropdown-toggle:hover {
    background: #fff !important;
    border: 1px solid #989898; }
.merchandise-single .bootstrap-select .dropdown-menu {
  background: #fff;
  border: 1px solid #989898; }
  .merchandise-single .bootstrap-select .dropdown-menu > li > a {
    color: #989898;
    text-align: left; }
    .merchandise-single .bootstrap-select .dropdown-menu > li > a:focus {
      background: #1ba757;
      color: #fff; }
.merchandise-single .bootstrap-select {
  margin: 0 0 25px;
  float: left !important; }
  @media only screen and (max-width: 767px) {
    .merchandise-single .bootstrap-select {
      margin: 0 0 10px; } }
.merchandise-single .buy-btn {
  background: #1ba757;
  border: 0;
  border-radius: 2px;
  color: #fff;
  height: 35px;
  line-height: 35px;
  padding: 0;
  width: calc(50% - 20px);
  margin-left: 10px;
  float: left;
  display: none; }
  @media only screen and (max-width: 767px) {
    .merchandise-single .buy-btn {
      margin-left: 0;
      margin-bottom: 25px; } }
  .merchandise-single .buy-btn.show {
    display: block; }
.merchandise-single .details-wrapper {
  padding-right: 40px; }
.merchandise-single .generic-main {
  padding: 70px 0; }

.snip-layout p {
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 17px; }
.snip-layout h2 {
  font-family: "Oswald", sans-serif;
  font-size: 18px; }
.snip-layout .snip-header {
  background: #1ba757;
  font-family: "Oswald", sans-serif; }
  .snip-layout .snip-header h2 {
    color: #fff;
    font-size: 36px; }
.snip-layout .snip-table__header th {
  font-size: 18px; }
.snip-layout .snip-header__total {
  background: rgba(0, 0, 0, 0.4);
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 23px;
  font-weight: normal;
  margin-top: 35px; }
.snip-layout .snip-product__name {
  font-size: 18px;
  font-weight: normal; }
.snip-layout .snip-product__description {
  font-size: 15px; }
.snip-layout .snip-table__item td {
  font-size: 18px; }
.snip-layout .snip-layout__close {
  font-size: 35px; }
.snip-layout .snip-footer {
  background: #1ba757; }
.snip-layout .snip-btn {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s; }
.snip-layout .snip-btn--highlight {
  background: #1ba757; }
  .snip-layout .snip-btn--highlight:hover {
    background: #0e7a3c; }
.snip-layout .snip-step__label {
  font-family: "Oswald", sans-serif;
  font-size: 15px;
  font-weight: 600; }
.snip-layout .snip-form__label {
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 16px; }
.snip-layout .snip-form__container > span {
  width: 100%; }
.snip-layout .snip-form__container--select select {
  height: 36px; }
.snip-layout .snip-step__item.js-active {
  color: #1ba757; }
.snip-layout input[type=password],
.snip-layout input[type=text],
.snip-layout select {
  font-family: "Helvetica Neue LT W01_57 Cond";
  font-size: 15px; }
.snip-layout .snip-static__content p {
  font-size: 15px;
  line-height: 1.2; }
.snip-layout .snip-table__row--invalid td:nth-of-type(2) {
  max-width: 100px; }
.snip-layout .snip-ico--basket:before {
  content: "";
  background-image: url("../../../assets/img/icon-cart.png"); }
.snip-layout .snip-ico--receipt:before {
  content: "";
  background-image: url("../../../assets/img/icon-billing.png"); }
.snip-layout .snip-ico--credit-cart:before {
  content: "";
  background-image: url("../../../assets/img/icon-credit.png"); }
.snip-layout .snip-ico--checklist:before {
  content: "";
  background-image: url("../../../assets/img/icon-confirm.png"); }
.snip-layout .snip-ico--basket:before,
.snip-layout .snip-ico--receipt:before,
.snip-layout .snip-ico--credit-cart:before,
.snip-layout .snip-ico--checklist:before {
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  display: block; }
.snip-layout .js-active .snip-ico--basket:before,
.snip-layout .js-active .snip-ico--receipt:before,
.snip-layout .js-active .snip-ico--credit-cart:before,
.snip-layout .js-active .snip-ico--checklist:before {
  background-position: 0 -30px; }
.snip-layout .snip-footer__copyright,
.snip-layout .snip-footer__highlight {
  color: #fff; }
@media only screen and (max-width: 48em) {
  .snip-layout .snip-discount__remove, .snip-layout .snip-layout .snip-product__remove {
    top: 30px; }
  .snip-layout .snip-header__total {
    margin-top: 0; } }

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