body.stop-scrolling {
  height: 100%;
  overflow: hidden;
}
.sweet-overlay {
  background-color: black;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  background-color: rgba(0,0,0,0.4);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 10000;
}
.sweet-alert {
  background-color: white;
  width: 478px;
  padding: 17px;
  border-radius: 5px;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -256px;
  margin-top: -200px;
  overflow: hidden;
  display: none;
  z-index: 99999;
}
@media all and (max-width: 540px) {
  .sweet-alert {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    left: 15px;
    right: 15px;
  }
}
.sweet-alert h2 {
  color: #575757;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  text-transform: none;
  position: relative;
  margin: 25px 0;
  padding: 0;
  line-height: 40px;
  display: block;
}
.sweet-alert p {
  color: #797979;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  position: relative;
  text-align: inherit;
  float: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.sweet-alert fieldset {
  border: none;
  position: relative;
}
.sweet-alert .sa-error-container {
  background-color: #f1f1f1;
  margin-left: -17px;
  margin-right: -17px;
  overflow: hidden;
  padding: 0 10px;
  max-height: 0;
  webkit-transition: padding 0.15s, max-height 0.15s;
  transition: padding 0.15s, max-height 0.15s;
}
.sweet-alert .sa-error-container.show {
  padding: 10px 0;
  max-height: 100px;
  webkit-transition: padding 0.2s, max-height 0.2s;
  transition: padding 0.25s, max-height 0.25s;
}
.sweet-alert .sa-error-container .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ea7d7d;
  color: white;
  line-height: 24px;
  text-align: center;
  margin-right: 3px;
}
.sweet-alert .sa-error-container p {
  display: inline-block;
}
.sweet-alert .sa-input-error {
  position: absolute;
  top: 29px;
  right: 26px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.sweet-alert .sa-input-error::before,
.sweet-alert .sa-input-error::after {
  content: "";
  width: 20px;
  height: 6px;
  background-color: #f06e57;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  left: 50%;
  margin-left: -9px;
}
.sweet-alert .sa-input-error::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-input-error::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-input-error.show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.sweet-alert input {
  width: 100%;
  box-sizing: border-box;
  border-radius: 3px;
  border: 1px solid #d7d7d7;
  height: 43px;
  margin-top: 10px;
  margin-bottom: 17px;
  font-size: 18px;
  box-shadow: inset 0px 1px 1px rgba(0,0,0,0.06);
  padding: 0 12px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sweet-alert input:focus {
  outline: none;
  box-shadow: 0px 0px 3px #c4e6f5;
  border: 1px solid #b4dbed;
}
.sweet-alert input:focus::-moz-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input:focus:-ms-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input:focus::-webkit-input-placeholder {
  transition: opacity 0.3s 0.03s ease;
  opacity: 0.5;
}
.sweet-alert input::-moz-placeholder {
  color: #bdbdbd;
}
.sweet-alert input:-ms-input-placeholder {
  color: #bdbdbd;
}
.sweet-alert input::-webkit-input-placeholder {
  color: #bdbdbd;
}
.sweet-alert.show-input input {
  display: block;
}
.sweet-alert button {
  background-color: #AEDEF4;
  color: white;
  border: none;
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  -webkit-border-radius: 4px;
  border-radius: 5px;
  padding: 10px 32px;
  margin: 26px 5px 0 5px;
  cursor: pointer;
}
.sweet-alert button:focus {
  outline: none;
  box-shadow: 0 0 2px rgba(128,179,235,0.5), inset 0 0 0 1px rgba(0,0,0,0.05);
}
.sweet-alert button:hover {
  background-color: #a1d9f2;
}
.sweet-alert button:active {
  background-color: #81ccee;
}
.sweet-alert button.cancel {
  background-color: #D0D0D0;
}
.sweet-alert button.cancel:hover {
  background-color: #c8c8c8;
}
.sweet-alert button.cancel:active {
  background-color: #b6b6b6;
}
.sweet-alert button.cancel:focus {
  box-shadow: rgba(197,205,211,0.8) 0px 0px 2px, rgba(0,0,0,0.0470588) 0px 0px 0px 1px inset !important;
}
.sweet-alert button::-moz-focus-inner {
  border: 0;
}
.sweet-alert[data-has-cancel-button=false] button {
  box-shadow: none !important;
}
.sweet-alert[data-has-confirm-button=false][data-has-cancel-button=false] {
  padding-bottom: 40px;
}
.sweet-alert .sa-icon {
  width: 80px;
  height: 80px;
  border: 4px solid gray;
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  margin: 20px auto;
  padding: 0;
  position: relative;
  box-sizing: content-box;
}
.sweet-alert .sa-icon.sa-error {
  border-color: #F27474;
}
.sweet-alert .sa-icon.sa-error .sa-x-mark {
  position: relative;
  display: block;
}
.sweet-alert .sa-icon.sa-error .sa-line {
  position: absolute;
  height: 5px;
  width: 47px;
  background-color: #F27474;
  display: block;
  top: 37px;
  border-radius: 2px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-left {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 17px;
}
.sweet-alert .sa-icon.sa-error .sa-line.sa-right {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 16px;
}
.sweet-alert .sa-icon.sa-warning {
  border-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-body {
  position: absolute;
  width: 5px;
  height: 47px;
  left: 50%;
  top: 10px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-warning .sa-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-left: -3px;
  left: 50%;
  bottom: 10px;
  background-color: #F8BB86;
}
.sweet-alert .sa-icon.sa-info {
  border-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 29px;
  left: 50%;
  bottom: 17px;
  border-radius: 2px;
  margin-left: -2px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-info::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-left: -3px;
  top: 19px;
  background-color: #C9DAE1;
}
.sweet-alert .sa-icon.sa-success {
  border-color: #A5DC86;
}
.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after {
  content: '';
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 120px;
  background: white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success::before {
  -webkit-border-radius: 120px 0 0 120px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 60px 60px;
  transform-origin: 60px 60px;
}
.sweet-alert .sa-icon.sa-success::after {
  -webkit-border-radius: 0 120px 120px 0;
  border-radius: 0 120px 120px 0;
  top: -11px;
  left: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0px 60px;
  transform-origin: 0px 60px;
}
.sweet-alert .sa-icon.sa-success .sa-placeholder {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(165,220,134,0.2);
  -webkit-border-radius: 40px;
  border-radius: 40px;
  border-radius: 50%;
  box-sizing: content-box;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-fix {
  width: 5px;
  height: 90px;
  background-color: white;
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line {
  height: 5px;
  background-color: #A5DC86;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 2;
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-tip {
  width: 25px;
  left: 14px;
  top: 46px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.sweet-alert .sa-icon.sa-success .sa-line.sa-long {
  width: 47px;
  right: 8px;
  top: 38px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sweet-alert .sa-icon.sa-custom {
  background-size: contain;
  border-radius: 0;
  border: none;
  background-position: center center;
  background-repeat: no-repeat;
}
@keyframes showSweetAlert {
  0% {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes hideSweetAlert {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  100% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
  }
}
.row {
  max-width: 1140px;
}
.column,
.columns {
  padding-left: 20px;
  padding-right: 20px;
}
.row .row {
  margin-left: -20px;
  margin-right: -20px;
}
.bgcover {
  background-position: center;
  background-size: cover;
}
.block {
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
}
.absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.clearul {
  margin: 0;
  padding: 0;
}
.clearul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion .accordion-navigation > .content,
.accordion dd > .content {
  max-height: 0;
  display: block;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.accordion .accordion-navigation > .content.active,
.accordion dd > .content.active {
  max-height: 1000px;
  opacity: 1;
}
p:last-child {
  margin-bottom: 0;
}
.valignout {
  display: table;
  height: 100%;
  width: 100%;
  table-layout: fixed;
}
.valignin {
  vertical-align: middle;
  height: 100%;
  width: 100%;
  display: table-cell;
}
figure {
  padding: 0;
  margin: 0;
}
.op0 {
  opacity: 0;
}
.parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
}
#cboxOverlay {
  background: rgba(255,255,255,0.8);
}
#cboxOverlay *:focus,
#cboxOverlay * {
  outline: none !important;
}
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
#colorbox {
  box-shadow: 0 0 100px rgba(0,0,0,0.4);
}
#colorbox *:focus,
#colorbox *,
#colorbox {
  outline: none !important;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#cboxClose {
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  padding: 0;
  width: 36px;
  height: 36px;
  background: #C1D82F url(../img/close.png) center no-repeat;
  border-radius: 100%;
  position: absolute;
  top: -18px;
  right: -18px;
  box-shadow: 0 2px #8ea500;
  transition: all .3s ease-out;
}
#cboxClose:hover {
  background-color: #9fb60d;
}
#cboxTitle {
  background: #008576;
  padding: 5px 10px;
  color: #fff;
  box-sizing: border-box;
  font-size: 13px;
  width: 100%;
  overflow: hidden;
}
#cboxTitle .button {
  float: right;
  padding: 10px 15px;
  box-shadow: none;
  margin: 0;
  font-size: 14px;
  background: #C1D82F;
}
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  -webkit-transition-property: -webkit-transform, left, top;
  -webkit-transition-duration: 0s;
  -webkit-transform: translate3d(0px,0,0);
  -webkit-transition-timing-function: ease;
  -moz-transition-property: -moz-transform, left, top;
  -moz-transition-duration: 0s;
  -moz-transform: translate3d(0px,0,0);
  -moz-transition-timing-function: ease;
  -o-transition-property: -o-transform, left, top;
  -o-transition-duration: 0s;
  -o-transform: translate3d(0px,0,0);
  -o-transition-timing-function: ease;
  -o-transform: translate(0px,0px);
  -ms-transition-property: -ms-transform, left, top;
  -ms-transition-duration: 0s;
  -ms-transform: translate3d(0px,0,0);
  -ms-transition-timing-function: ease;
  transition-property: transform, left, top;
  transition-duration: 0s;
  transform: translate3d(0px,0,0);
  transition-timing-function: ease;
}
.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  float: left;
}
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
}
.button,
button {
  font-family: 'Amasis';
  font-size: 16px;
  padding: 15px 20px;
  color: #fff;
  background: #008576;
  box-shadow: 0 5px #005243;
  transition: all .3s ease-out;
}
.button:hover,
.button:focus,
button:hover,
button:focus {
  transform: translateY(3px);
  background: #006354;
  box-shadow: 0 2px #003021;
}
.button.orange,
button.orange {
  background: #D9541E;
  box-shadow: 0 5px #a62100;
}
.button.orange:hover,
.button.orange:focus,
button.orange:hover,
button.orange:focus {
  background: #b73200;
  box-shadow: 0 2px #840000;
}
.button.green,
button.green {
  background: #C1D82F;
  box-shadow: 0 5px #8ea500;
}
.button.green:hover,
.button.green:focus,
button.green:hover,
button.green:focus {
  background: #9fb60d;
  box-shadow: 0 2px #6c8300;
}
.button.white,
button.white {
  background: #fff;
  box-shadow: 0 5px rgba(255,255,255,0.5);
  color: #008576;
}
.button.white:hover,
.button.white:focus,
button.white:hover,
button.white:focus {
  background: rgba(255,255,255,0.8);
  box-shadow: 0 2px rgba(255,255,255,0.2);
}
@font-face {
  font-family: 'Amasis';
  src: url('../fonts/AmasisMT.eot');
  src: url('../fonts/AmasisMT.eot') format('embedded-opentype'), url('../fonts/AmasisMT.woff2') format('woff2'), url('../fonts/AmasisMT.woff') format('woff'), url('../fonts/AmasisMT.ttf') format('truetype'), url('../fonts/AmasisMT.svg#AmasisMT') format('svg');
  font-weight: 400;
}
@font-face {
  font-family: 'Amasis';
  src: url('../fonts/AmasisMTBold.eot');
  src: url('../fonts/AmasisMTBold.eot') format('embedded-opentype'), url('../fonts/AmasisMTBold.woff2') format('woff2'), url('../fonts/AmasisMTBold.woff') format('woff'), url('../fonts/AmasisMTBold.ttf') format('truetype'), url('../fonts/AmasisMTBold.svg#AmasisMTBold') format('svg');
  font-weight: 600;
}
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/AvenirLT45Book.eot');
  src: url('../fonts/AvenirLT45Book.eot') format('embedded-opentype'), url('../fonts/AvenirLT45Book.woff2') format('woff2'), url('../fonts/AvenirLT45Book.woff') format('woff'), url('../fonts/AvenirLT45Book.ttf') format('truetype'), url('../fonts/AvenirLT45Book.svg#AvenirLT45Book') format('svg');
  font-weight: 400;
}
@font-face {
  font-family: 'Avenir';
  src: url('../fonts/AvenirLT65Medium.eot');
  src: url('../fonts/AvenirLT65Medium.eot') format('embedded-opentype'), url('../fonts/AvenirLT65Medium.woff2') format('woff2'), url('../fonts/AvenirLT65Medium.woff') format('woff'), url('../fonts/AvenirLT65Medium.ttf') format('truetype'), url('../fonts/AvenirLT65Medium.svg#AvenirLT65Medium') format('svg');
  font-weight: 500;
}
.font1 {
  font-family: 'Amasis';
}
.font2 {
  font-family: 'Avenir';
}
body {
  overflow-x: hidden;
}
body,
p {
  font-family: 'Avenir';
  color: #333333;
}
h2,
h3,
h4.h5 {
  font-family: 'Amasis';
}
#container {
  background: #eee;
  padding: 20px 20px 0;
  transition: opacity .5s ease-out;
}
.loading #container {
  opacity: 0;
}
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #c0d82e url(../img/preload.gif) no-repeat center;
  z-index: 998;
  top: 0;
  left: 0%;
  transition: all .5s ease-out;
  opacity: 0;
  transform: scale(2);
}
.loading .loader {
  opacity: 1;
  transform: scale(1);
}
.loaded .loader {
  opacity: 0;
  transform: scale(2);
  visibility: hidden;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 150px;
  transition: all 0.5s ease-out;
  background: rgba(255,255,255,0);
}
.loading header nav ul li a:hover,
.loading header nav ul li.active a {
  color: #fff;
}
.loading header nav ul li a:hover:after,
.loading header nav ul li.active a:after {
  background: #fff;
}
.scroll header {
  background: rgba(255,255,255,0.9);
  height: 100px;
}
.scroll header h1 {
  top: 10px;
}
.scroll header nav {
  top: 20px;
}
header h1 {
  position: absolute;
  top: 40px;
  left: 60px;
  margin: 0;
  transition: all 0.5s ease-out;
}
header h1 a {
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  background: url(../img/logo.png) no-repeat;
  width: 221px;
  height: 76px;
}
header nav {
  position: absolute;
  top: 40px;
  right: 40px;
  transition: all 0.5s ease-out;
}
header nav ul {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}
header nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  display: inline-block;
  padding: 3px 15px;
}
header nav ul li a {
  font-family: 'Avenir';
  color: #333333;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
  transition: all .3s ease-out;
}
header nav ul li a:after {
  content: '';
  width: 0%;
  height: 1px;
  background: #C1D82F;
  position: absolute;
  bottom: -5px;
  left: 50%;
  display: block;
  transform: translateX(-50%);
  transition: all .3s ease-out;
}
header nav ul li a:hover {
  color: #C1D82F;
}
header nav ul li a:hover:after {
  width: 100%;
}
header nav ul li a:focus {
  color: #fff;
}
header nav ul li a:focus:after {
  width: 100%;
}
header nav ul li.active a {
  color: #C1D82F !important;
}
header nav ul li.active a:after {
  width: 100%;
}
header nav ul li.login {
  padding: 0;
}
header nav ul li.login a {
  background: #C1D82F;
  font-size: 15px;
  padding: 3px 10px;
  color: #fff;
  text-transform: uppercase;
}
header nav ul li.login a:after {
  display: none;
}
header nav ul li.login a:hover {
  background: #9fb60d;
}
header nav .registernotice {
  text-align: right;
  font-size: 13px;
  color: #333333;
}
header nav .registernotice a {
  color: #333333;
  font-weight: bold;
}
header nav .registernotice a:hover {
  color: #C1D82F;
}
.heroout {
  margin: 0 -20px;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}
#hero {
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 900px;
  background: #ffffff;
  background: -webkit-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: -o-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: linear-gradient(to bottom,#ffffff 0%,#eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=1);
}
#hero .herotext {
  position: absolute;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  height: 270px;
  width: 100%;
  left: 50px;
  top: 50%;
  margin-top: -200px;
  transition: all 2000ms cubic-bezier(0.165,0.840,0.440,1.000);
  transform: translateX(50%);
  opacity: 0;
}
#hero .herotext .span {
  background: url(../img/hero-title.png) left 40px center no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
#hero .herotext .colors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#hero .herotext .colors .color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: auto;
  right: 0;
  opacity: 0;
  width: 5%;
  transition: all 5000ms cubic-bezier(0.645,0.045,0.355,1.000);
  z-index: 1;
}
#hero .herotext .colors .color.active {
  width: 180%;
  opacity: 1;
}
#hero .herotext .colors .color:nth-child(1) {
  background: -moz-linear-gradient(left,rgba(193,216,47,0) 0%,#c1d82f 52%,#c1d82f 100%);
  background: -webkit-linear-gradient(left,rgba(193,216,47,0) 0%,#c1d82f 52%,#c1d82f 100%);
  background: linear-gradient(to right,rgba(193,216,47,0) 0%,#c1d82f 52%,#c1d82f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c1d82f',endColorstr='#c1d82f',GradientType=1);
}
#hero .herotext .colors .color:nth-child(2) {
  background: -moz-linear-gradient(left,rgba(245,158,5,0) 0%,#f59e05 52%,#f59e05 100%);
  background: -webkit-linear-gradient(left,rgba(245,158,5,0) 0%,#f59e05 52%,#f59e05 100%);
  background: linear-gradient(to right,rgba(245,158,5,0) 0%,#f59e05 52%,#f59e05 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00c1d82f',endColorstr='#c1d82f',GradientType=1);
}
#hero .herotext .colorsbg .color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  left: auto;
  right: 0;
  opacity: 0;
  transition: all 4000ms cubic-bezier(0.645,0.045,0.355,1.000);
}
#hero .herotext .colorsbg .color.active {
  width: 100%;
  opacity: 1;
}
#hero .herotext .colorsbg .color:nth-child(1) {
  background: #c1d82f;
}
#hero .herotext .colorsbg .color:nth-child(2) {
  background: #f59e05;
}
#hero .text {
  top: 50%;
  padding-left: 70px;
  width: 60%;
  position: relative;
  transition: all 1000ms cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: 500ms;
  transform: translateY(30px);
  opacity: 0;
}
#hero .text .textin {
  padding-top: 100px;
}
#hero .text h2 {
  font-family: 'Amasis';
  color: #008576;
  font-size: 36px;
}
#hero .text p {
  font-size: 18px;
  line-height: 150%;
}
#hero .text .more {
  background: url(../img/more.png) no-repeat right 0px;
  padding-right: 30px;
  color: #008576;
  padding-bottom: 5px;
  transition: all .3s ease-out;
}
#hero .text .more:hover {
  background: url(../img/more.png) no-repeat right 5px;
}
#hero .bull {
  width: 826px;
  height: 823px;
  position: absolute;
  top: 10%;
  right: 0;
  z-index: 5;
  transition: all 2000ms cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: 300ms;
  transform: translateX(100px);
  opacity: 0;
}
#hero .bull .img {
  transition: all 4000ms cubic-bezier(0.645,0.045,0.355,1.000);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
}
#hero .bull .img.active {
  opacity: 1;
}
#hero.in .text {
  transform: translateY(0px);
  opacity: 1;
}
#hero.in .herotext {
  transform: translateX(0px);
  opacity: 1;
}
#hero.in .bull {
  opacity: 1;
  transform: translateX(0px);
}
.why {
  padding-top: 100px;
  padding-bottom: 100px;
}
.why h2 {
  width: 302px;
  height: 159px;
  background: url(../img/why-title.png) no-repeat;
  margin: 0 auto 70px;
  opacity: 0;
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
  transform: translateY(50px);
}
.why h2 span {
  opacity: 0;
  height: 100%;
  position: relative;
  display: block;
}
.why h2:after {
  width: 160px;
  background: #666;
  height: 1px;
  margin: 30px auto;
  display: block;
  content: '';
}
.why p {
  font-size: 18px;
  line-height: 160%;
  opacity: 0;
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
  transition-delay: 200ms;
}
.why figure {
  float: left;
  margin: 0px 30px 15px -25%;
  opacity: 0;
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
  transform: translateX(-50px);
  transition-delay: 200ms;
}
.why.in h2 {
  opacity: 1;
  transform: translateY(0px);
}
.why.in p {
  opacity: 1;
}
.why.in figure {
  opacity: 1;
  transform: translateX(0px);
}
.mrbull {
  background: #fff;
  margin-top: 75px;
  padding-bottom: 100px;
  margin-left: -20px;
  margin-right: -20px;
  position: relative;
  margin-bottom: 100px;
}
.mrbull.in h2 {
  opacity: 1;
  transform: translateX(0px);
}
.mrbull h2 {
  background: #D9541E;
  padding: 20px 40px 15px 0;
  position: relative;
  margin-bottom: 30px;
  font-family: 'Amasis';
  color: #fff;
  font-size: 90px;
  display: inline-block;
  line-height: 100%;
  margin-top: -75px;
  opacity: 0;
  transition: all 1s cubic-bezier(0.165,0.840,0.440,1.000);
  transform: translateX(-100px);
}
.mrbull h2:before {
  background: #D9541E;
  width: 1000px;
  right: 100%;
  height: 100%;
  top: 0;
  content: '';
  display: block;
  position: absolute;
}
.mrbull h2 span {
  display: block;
  font-size: 48px;
  line-height: 28px;
}
.mrbull p {
  font-size: 18px;
  line-height: 160%;
}
.mrbull .sep {
  width: 160px;
  height: 1px;
  background: #666666;
  margin: 40px 0;
}
.mrbull h3 {
  color: #D9541E;
  font-family: 'Amasis';
  font-size: 36px;
}
.mrbull .bull {
  background: url(../img/mrbull.png) no-repeat;
  width: 560px;
  height: 345px;
  left: -200px;
  top: -70px;
  position: absolute;
}
.mrbull h4 {
  font-family: 'Amasis';
  color: #D9541E;
  text-align: center;
  font-size: 22px;
  margin-top: 330px;
  margin-bottom: 30px;
}
.mrbull .after {
  height: 101px;
  background: url(../img/mrbull-bulls.png) repeat-x;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: block;
  content: '';
}
.available {
  padding: 50px 0;
}
.available h2 {
  background: url(../img/whats-title.png) no-repeat;
  margin: 0 auto 100px;
  width: 369px;
  height: 88px;
}
.available h2 span {
  opacity: 0;
  height: 100%;
  position: relative;
  display: block;
}
.available h2:after {
  width: 160px;
  background: #666;
  height: 1px;
  margin: 50px auto;
  display: block;
  content: '';
}
.available figure {
  margin-bottom: 50px;
}
.available p {
  font-size: 18px;
  line-height: 160%;
  margin-bottom: 50px;
}
.moreinfo {
  overflow: hidden;
  margin: 0 -20px;
}
.moreinfo .columns {
  height: 100%;
}
.moreinfo h3 {
  color: #008576;
  font-family: 'Amasis';
  font-size: 40px;
}
.moreinfo h4 {
  color: #008576;
  font-family: 'Amasis';
  font-size: 26px;
}
.moreinfo p {
  font-size: 16px;
  line-height: 160%;
}
.moreinfo .section1 {
  height: 320px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.moreinfo .section1 .columns,
.moreinfo .section1 .row {
  height: 100%;
}
.moreinfo .section1 .img {
  width: 1150px;
  height: 130%;
  position: absolute;
  left: 100%;
  background-position: center;
  background-size: cover;
  top: 0;
}
.moreinfo .section1 p {
  font-size: 18px;
}
.moreinfo .section1 .caption {
  background: #008576;
  font-size: 24px;
  font-family: 'Avenir';
  position: absolute;
  bottom: 0;
  left: 200%;
  width: 1000px;
  padding: 15px 40px;
  color: #fff;
  font-weight: 200;
}
.moreinfo .section2 {
  overflow: hidden;
  position: relative;
}
.moreinfo .section2 .text {
  padding: 40px;
}
.moreinfo .section2 .img {
  background-position: center;
  background-size: cover;
  height: 130%;
  width: 770px;
  position: absolute;
  right: 100%;
  top: 0;
}
.moreinfo .section3 {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.moreinfo .section3 h3 {
  font-size: 26px;
}
.moreinfo .section3 .text {
  padding: 40px 40px 0;
}
.moreinfo .section3 .img {
  left: 100%;
  top: 0;
  width: 770px;
  height: 130%;
  background-position: center;
  background-size: cover;
  position: absolute;
}
.moreinfo .section3 .caption {
  background: #008576;
  font-size: 24px;
  font-family: 'Avenir';
  width: auto;
  padding: 15px 40px 15px 0;
  margin-top: 20px;
  color: #fff;
  font-weight: 200;
  float: left;
  position: relative;
}
.moreinfo .section3 .caption:before {
  display: block;
  content: '';
  width: 1000px;
  right: 100%;
  height: 100%;
  background: #008576;
  position: absolute;
  top: 0;
}
.whoowns {
  padding: 100px 0;
}
.whoowns h2 {
  color: #008576;
  font-family: 'Amasis';
  font-size: 40px;
  margin-bottom: 30px;
}
.whoowns p {
  font-size: 18px;
  line-height: 160%;
}
.whoowns p .str {
  font-size: 20px;
  color: #008576;
  display: block;
  font-weight: bold;
}
.whoowns ul {
  margin-top: 50px;
}
.quotes {
  height: 490px;
  position: relative;
  margin: 0 -20px;
}
.quotes .bg {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.quotes .bg:after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: block;
}
.quotes h2 {
  font-family: 'Amasis';
  color: #fff;
  text-align: center;
  font-size: 48px;
  margin-top: 40px;
}
.quotes h2:after {
  width: 160px;
  background: #fff;
  height: 1px;
  margin: 20px auto;
  display: block;
  content: '';
}
.quotes .bx-wrapper {
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 30px;
  overflow: hidden;
}
.quotes .bx-wrapper ul {
  margin: 0;
}
.quotes .bx-wrapper p {
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 150%;
}
.quotes .bx-wrapper p a {
  color: #fff;
  text-decoration: underline;
}
.quotes .bx-wrapper .bx-pager {
  position: absolute;
  width: 200px;
  left: 50%;
  text-align: center;
  margin-left: -100px;
  bottom: 0;
}
.quotes .bx-wrapper .bx-pager .bx-pager-item {
  display: inline-block;
  margin: 0 3px;
}
.quotes .bx-wrapper .bx-pager .bx-pager-item a {
  width: 12px;
  height: 12px;
  display: block;
  border: 1px solid #fff;
  border-radius: 100%;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
}
.quotes .bx-wrapper .bx-pager .bx-pager-item a.active {
  background: #fff;
}
.prefooter {
  background: #008576;
  padding: 40px 0;
  text-align: center;
}
.prefooter h3 {
  font-size: 32px;
  font-family: 'Amasis';
  color: #fff;
}
.prefooter p {
  color: #fff;
}
footer {
  border-top: 10px solid #00554A;
  height: 90px;
}
footer .row,
footer .columns {
  height: 100%;
}
footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer ul li {
  font-size: 13px;
  color: #333333;
  display: inline-block;
}
footer ul li:after {
  content: ' - ';
  margin: 0 5px;
}
footer ul li:last-child:after {
  display: none;
}
footer ul li a {
  color: #333333;
}
footer p {
  font-size: 13px;
  color: #333;
  margin: 0;
}
footer .vc {
  background: url(../img/vc.svg) no-repeat;
  float: right;
  background-size: 100% auto;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  width: 144px;
  height: 26px;
}
#loginform {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: all .5s cubic-bezier(0.165,0.840,0.440,1.000);
}
#loginform .alert-box {
  margin-top: 20px;
}
#loginform .alert-box.hide {
  display: none;
}
.loginopen #loginform {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
#loginform form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  background: #fff;
  margin: -200px 0 0 -200px;
  padding: 40px;
  box-shadow: 0 0 100px rgba(0,0,0,0.2);
  border-bottom: 10px solid #C1D82F;
}
#loginform form h4 {
  font-family: 'Amasis';
}
#loginform form a {
  color: #008576;
}
#loginform form .button {
  color: #fff;
}
#loginform form .close {
  width: 36px;
  height: 36px;
  background: #C1D82F url(../img/close.png) center no-repeat;
  border-radius: 100%;
  position: absolute;
  top: -18px;
  right: -18px;
  box-shadow: 0 2px #8ea500;
  transition: all .3s ease-out;
}
#loginform form .close:hover {
  background-color: #9fb60d;
}
#loginform input {
  margin-bottom: 15px !important;
}
.directory {
  padding-top: 150px;
  padding-bottom: 100px;
  background: #ffffff;
  background: -webkit-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: -o-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: linear-gradient(to bottom,#ffffff 0%,#eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=1);
}
.directory .directorytitle {
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  background: url(../img/directory-title.png) no-repeat;
  width: 401px;
  height: 136px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.directory .notlisted {
  float: right;
  font-size: 22px;
  font-family: 'Amasis';
  margin-top: -230px;
  width: 140px;
  text-align: right;
  line-height: 120%;
}
.directory .notlisted .button {
  margin-top: 15px;
}
.directory .item {
  margin-bottom: 70px;
}
.directory .item a.cat {
  text-align: center;
  font-size: 24px;
  font-family: 'Amasis';
  display: block;
  margin-bottom: 20px;
  transition: all .3s ease-out;
}
.directory .item a.cat span.ico {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  margin: 0 auto 20px;
  display: block;
  transition: all .3s ease-out;
}
.directory .item a.cat:hover span.ico {
  transform: translateY(-10px);
  opacity: .9;
}
.directory .item p {
  text-align: center;
  font-size: 13px;
}
.directory .item p a {
  color: #333;
  transition: all .3s ease-out;
}
.directory .item p a:hover {
  color: #C1D82F;
}
.gallery {
  padding-top: 150px;
  background: #ffffff;
  background: -webkit-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: -o-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: linear-gradient(to bottom,#ffffff 0%,#eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=1);
  overflow: hidden;
}
.gallery >a {
  display: block;
  float: left;
  width: 25%;
  padding-bottom: 18%;
  position: relative;
  overflow: hidden;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  background: #000;
}
.gallery >a .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transition: opacity 1s ease-out, transform 5s ease-out;
}
.gallery >a:hover .bg {
  transform: scale(1.1);
  opacity: .7;
}
.gallery .gallerytitle {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 25%;
  padding-bottom: 18%;
  background: #C1D82F url(../img/gallery-title.png) no-repeat center;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  margin: 0;
  float: left;
}
.gallery .areyou {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 25%;
  padding-bottom: 18%;
  background: #008576;
  margin: 0;
  float: left;
  position: relative;
}
.gallery .areyou .in {
  padding: 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery .areyou h3 {
  font-size: 32px;
  font-family: 'Amasis';
  color: #fff;
}
.gallery .areyou p {
  font-size: 16px;
  line-height: 160%;
  color: #fff;
}
.directory-listing {
  padding-top: 150px;
  background: #ffffff;
  background: -webkit-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: -o-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: linear-gradient(to bottom,#ffffff 0%,#eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=1);
  overflow: hidden;
}
.directory-listing .directorytitle {
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  background: url(../img/directory-title.png) no-repeat;
  width: 250px;
  height: 136px;
  margin-bottom: 30px;
  background-size: 250px auto;
}
.directory-listing .notlisted {
  float: right;
  font-size: 22px;
  font-family: 'Amasis';
  margin-top: -180px;
  width: auto;
  text-align: right;
  line-height: 120%;
}
.directory-listing .notlisted .button {
  margin-top: 15px;
}
.directory-listing .directoymenu .item {
  margin-bottom: 15px;
}
.directory-listing .directoymenu .item .cat {
  display: block;
  position: relative;
  padding-left: 60px;
  padding-top: 10px;
  font-family: 'Amasis';
  font-size: 18px;
  min-height: 50px;
}
.directory-listing .directoymenu .item .cat span.ico {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  padding: 12px;
  font-size: 12px;
}
.directory-listing .directoymenu .item p {
  padding-left: 60px;
  display: none;
}
.directory-listing .directoymenu .item p a {
  display: block;
  color: #333;
  transition: all .3s ease-out;
}
.directory-listing .directoymenu .item p a:hover {
  color: #C1D82F;
}
.directory-listing .directoymenu .item.active p {
  display: block;
}
.directory-listing .cattitle {
  font-family: 'Amasis';
  font-size: 36px;
}
.directory-listing .cattitle span {
  display: block;
  font-size: 22px;
}
.directory-listing .list li {
  position: relative;
  padding-left: 140px;
  padding-bottom: 30px;
}
.directory-listing .list li figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  text-align: center;
  height: 100px;
}
.directory-listing .list li h3 {
  font-family: 'Amasis';
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}
.directory-listing .list li p {
  font-size: 15px;
  line-height: 22px;
}
.directory-listing .list li p a {
  color: #008576;
  transition: all .3s ease-out;
}
.directory-listing .list li p a:hover {
  color: #C1D82F;
}
.make {
  padding-top: 150px;
  padding-bottom: 100px;
  background: #ffffff;
  background: -webkit-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: -o-linear-gradient(top,#ffffff 0%,#eeeeee 100%);
  background: linear-gradient(to bottom,#ffffff 0%,#eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#eeeeee',GradientType=1);
}
.make .step {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all .3s ease-out;
}
.make .step.active {
  max-height: 950px;
  opacity: 1;
}
.make .step h2 {
  color: #008576;
  font-size: 50px;
}
.make .step h3 {
  margin-bottom: 50px;
}
.make .backstep {
  margin-top: 20px;
}
.make .backstep i {
  font-size: 18px;
  margin-right: 10px;
}
.make #maketext {
  margin-top: 100px;
}
.make #step1 img {
  margin: 30px 0;
}
.make #step4 h3 {
  margin-bottom: 100px;
}
.make #step4 figure {
  height: 300px;
  padding: 0 20px;
  margin-bottom: 30px;
}
.make #step4 figure img {
  max-height: 100%;
}
.makecont {
  background: #fff;
  margin: 0 -20px;
  position: relative;
  padding-bottom: 50px;
}
.makecont #save {
  position: absolute;
  top: 00px;
  right: 40px;
  z-index: 10;
}
.makecont #zoomin {
  position: absolute;
  top: 00px;
  left: 40px;
  width: 30px;
  height: 30px;
  font-size: 24px;
  padding: 0;
  box-shadow: none;
  z-index: 10;
}
.makecont #zoomout {
  position: absolute;
  top: 00px;
  left: 75px;
  width: 30px;
  height: 30px;
  font-size: 24px;
  padding: 0;
  box-shadow: none;
  z-index: 10;
}
.makecrop {
  width: 1000px;
  height: 617px;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.makecrop img {
  position: absolute;
  max-width: 1000000px;
  height: auto;
  display: block;
  top: 0;
  left: 0;
}
.makecrop #img2 {
  opacity: 0;
  z-index: 10;
}
.makecrop #img2.ui-draggable-dragging {
  opacity: .1;
}
.makecrop:after {
  content: '';
  background: url(../img/makeover.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  text-indent: -3000px;
  font-size: 0;
  overflow: hidden;
  z-index: 9;
}
.pagecontent {
  padding-top: 150px;
  padding-bottom: 70px;
}
.pagecontent .sectiontitle {
  font-size: 42px;
  color: #008576;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
.pagecontent .sectiontitle.hasdesc {
  padding-bottom: 0;
  margin-bottom: 20px;
  border-bottom: none;
}
.pagecontent .sectiontitle span {
  font-size: 16px;
  color: #333;
  display: block;
}
.pagecontent .passwordreset input {
  height: 55px;
  border: none;
}
.pagecontent .sectionsubtitle {
  font-size: 24px;
  color: #008576;
  margin-bottom: -10px;
}
.pagecontent .sectiondesc {
  font-size: 16px;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}
.pagecontent h3 a {
  color: #008576;
}
.pagecontent .panel a {
  color: #008576;
}
.forumtopic {
  width: 100%;
  padding: 10px 20px;
  background: #fff;
  margin-bottom: 10px;
}
.forumtopic h3 {
  font-size: 20px;
}
.forumtopic h3 a {
  color: #008576;
}
.forumtopic p {
  font-size: 15px;
  margin-bottom: 10px;
}
.forumtopic table {
  width: 100%;
  background: none;
  border-collapse: collapse;
  margin: 0 0 10px;
  border: none;
}
.forumtopic table thead {
  background: none;
}
.forumtopic table td {
  border: none;
  border-bottom: 1px solid #eee;
  background: none;
}
.forumtopic table td:first-child {
  padding-left: 0;
  width: 100px;
}
.forumtopic table td:last-child {
  width: 100px;
  text-align: center;
}
.forumtopic table thead tr th {
  font-size: 13px;
}
.forumtopic table thead tr th:last-child {
  width: 100px;
  text-align: center;
}
.forumtopic table thead tr th:first-child {
  padding-left: 0;
}
.forumtopic table tr:last-child td {
  border: none;
}
.forumtopic table th {
  border-bottom: 1px solid #eee;
}
.forumtopic table a {
  color: #D9541E;
}
.forumtopic table a:hover {
  color: #D9541E;
  text-decoration: underline;
}
.forumtopic table p {
  font-size: 13px;
  margin-bottom: 0;
  margin-top: 5px;
}
.topic .comment {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  padding-left: 150px;
  position: relative;
  min-height: 140px;
}
.topic .comment.first {
  background: #fff;
  border-bottom: 3px solid #008576;
}
.topic .comment .author {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 13px;
  width: 130px;
}
.topic .comment .author figure {
  width: 70px;
  height: 70px;
  background-position: center;
  background-size: cover;
  margin-bottom: 10px;
}
.topic .comment .date {
  color: #666;
  font-size: 13px;
}
.topic .comment p {
  margin-bottom: 10px;
}
.link {
  color: #008576;
  font-size: 14px;
  transition: all .3s ease-out;
}
.link i {
  margin-left: 10px;
  vertical-align: middle;
}
.link:hover {
  color: #D9541E;
}
ul.pagination {
  padding-top: 30px;
}
ul.pagination li.current a,
ul.pagination li.current button {
  background: #008576;
  border-radius: 0;
}
.reply {
  padding-top: 30px;
  position: relative;
  margin-bottom: 50px;
}
.reply h4 {
  color: #008576;
  font-size: 18px;
  font-family: 'Amasis';
}
.reply textarea {
  height: 100px;
  border: none;
  margin: 0;
}
.reply button.b {
  position: absolute;
  top: 30px;
  right: 20px;
  margin: 0;
}
.reply .text {
  position: relative;
  padding-right: 120px;
  background: #fff;
}
.download .c {
  max-height: 0;
  overflow: hidden;
  transition: all .5s ease-out;
}
.download.open .c {
  max-height: 1000px;
}
.download.open h3>a:after {
  transform: rotate(180deg);
}
.download.open h3 {
  margin-bottom: 10px;
}
.download h3 {
  color: #D9541E;
  margin-bottom: 15px;
  margin: 0;
  transition: all .5s ease-out;
}
.download h3 a {
  color: #D9541E;
  position: relative;
  display: block;
}
.download h3 a:after {
  content: '';
  display: block;
  background: url(../img/acc.png) no-repeat;
  width: 20px;
  height: 12px;
  position: absolute;
  top: 12px;
  right: 10px;
}
.file {
  min-height: 60px;
  position: relative;
  display: block;
  padding-top: 7px;
  margin-bottom: 10px;
  padding-bottom: 7px;
  color: #333;
  transition: all .3s ease-out;
  font-size: 18px;
}
.file >div {
  background: #fff;
  padding: 10px;
}
.file h4 {
  font-size: 18px;
  color: #008576;
  font-family: 'Amasis';
}
.file .pdfico {
  background: url(../img/icon-pdf-flat.png) no-repeat;
  position: absolute;
  top: 10px;
  left: 25px;
  width: 29px;
  height: 40px;
}
.file img {
  display: block;
  margin: 15px auto 20px;
}
.file .size,
.file p {
  display: block;
  font-size: 13px;
  padding-right: 50px;
}
.file p {
  margin-bottom: 5px;
  transition: all .3s ease-out;
}
.file a {
  display: block;
  height: 40px;
  padding-top: 12px;
  color: #111;
  margin-bottom: 5px;
  position: relative;
  transition: all .3s ease-out;
  padding-left: 10px;
}
.file .ico {
  width: 36px;
  height: 36px;
  background: #008576;
  color: #fff;
  text-align: center;
  display: block;
  position: absolute;
  top: 2px;
  right: 10px;
  border-radius: 100%;
  overflow: hidden;
  transition: all .3s ease-out;
}
.file .ico span {
  display: block;
  height: 40px;
  line-height: 38px;
  transition: all .3s ease-out;
  transform: translateY(-100%);
}
.file a:hover {
  background: #008576;
  color: #fff;
}
.file a:hover p {
  color: #fff;
}
.file a:hover .ico span {
  transform: translateY(0%);
}
.anecdotesout {
  margin: 0 -20px;
}
.anecdotesout .grid-sizer {
  width: 49%;
  margin: 0;
  padding: 0;
}
.anecdotesout .anecdote {
  width: 49%;
  margin: 0;
  margin-bottom: 40px;
  box-sizing: border-box;
}
.anecdotesout .anecdotein {
  background: #fff;
  padding: 20px;
  margin: 0 20px 0px;
  padding-left: 100px;
}
.anecdotesout .anecdotein .ico {
  width: 50px;
  height: 50px;
  background: #C1D82F;
  position: absolute;
  top: 20px;
  left: 40px;
  border-radius: 100%;
  text-align: center;
  color: #fff;
  display: block;
  line-height: 48px;
  font-size: 26px;
}
.anecdotesout .anecdotein .author {
  color: #666;
  font-size: 15px;
  color: #008576;
}
#register #imagen img {
  margin: 20px 0;
  display: block;
}
#register #progess {
  display: inline-block;
  padding: 7px 15px;
  vertical-align: top;
}
#register #uploadcontainer .button {
  vertical-align: top;
}
#register .tabs-content {
  background: #fff;
  padding: 0 20px;
}
#register .tabs dd {
  position: relative;
}
#register .tabs dd input {
  position: absolute;
  top: 20px;
  right: 15px;
}
#register .tabs dd a {
  padding-right: 50px;
}
#register .tabs dd a:focus {
  outline: none;
}
.mce-container-body.mce-stack-layout {
  background: none !important;
}
@media only screen and (max-width: 1500px) {
  .gallery .areyou .in {
    padding: 15px;
  }
  .gallery .areyou h3 {
    font-size: 26px;
    line-height: 130%;
    margin-top: 0;
  }
  .gallery .areyou p {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1300px) {
  #hero {
    min-height: 800px;
  }
  #hero .herotext {
    height: 200px;
  }
  #hero .herotext .span {
    background-size: auto 170px;
  }
  #hero .text .textin {
    padding-top: 50px;
  }
  #hero .bull {
    transform: translateX(100px) scale(.9);
    transform-origin: 100% 0;
  }
  #hero.in .bull {
    transform: translateX(0px) scale(.9);
  }
  .gallery .gallerytitle {
    background-size: 80% auto;
  }
  .gallery .areyou .in {
    padding: 15px;
  }
  .gallery .areyou h3 {
    font-size: 20px;
    line-height: 130%;
  }
  .gallery .areyou p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .gallery .areyou .button {
    padding: 7px 15px;
  }
}
@media only screen and (max-width: 1200px) {
  #hero {
    min-height: 780px;
  }
  #hero .bull {
    transform: translateX(100px) scale(.75);
  }
  #hero.in .bull {
    transform: translateX(0px) scale(.75);
  }
  #hero .text {
    padding-left: 50px;
  }
  #hero .text .textin {
    padding-top: 30px;
  }
  #hero .text p {
    font-size: 16px;
  }
  header h1 {
    left: 40px;
  }
  header nav ul li {
    padding: 3px 5px;
  }
  header nav ul li a {
    font-size: 14px;
  }
  .mrbull .bull {
    width: 400px;
    background-size: 100% auto;
    right: 0;
    left: auto;
    margin-left: auto;
  }
  .mrbull h2 {
    font-size: 70px;
  }
  .mrbull h2 span {
    font-size: 36px;
  }
  .mrbull h4 {
    margin-top: 250px;
  }
  .moreinfo h3 {
    font-size: 32px;
  }
  .prefooter h3 {
    font-size: 26px;
  }
  .prefooter img {
    max-width: 100px;
  }
}
@media only screen and (max-width: 1100px) {
  .mobilemenu {
    width: 32px;
    height: 32px;
    display: block;
    top: 30px;
    right: 30px;
    z-index: 1501;
    position: fixed;
    padding: 0 7px;
    padding-top: 8px;
    transition: all 0.5s ease-out;
    background: #C1D82F;
  }
  .mobilemenu span {
    display: block;
    height: 3px;
    background: #fff;
    margin-bottom: 4px;
    transform-origin: 50% 50%;
    transition: all .5s ease-out;
  }
  .menuopen .mobilemenu span:nth-child(1) {
    transform: rotate(45deg) translateX(5px) translateY(5px);
    -webkit-transform: rotate(45deg) translateX(5px) translateY(5px);
  }
  .menuopen .mobilemenu span:nth-child(2) {
    transform: rotate(-45deg) translateX(0px) translateY(0px);
    -webkit-transform: rotate(-45deg) translateX(0px) translateY(0px);
  }
  .menuopen .mobilemenu span:nth-child(3) {
    opacity: 0;
  }
  .scroll .mobilemenu {
    top: 15px;
  }
  .menuopen header {
    z-index: 12;
  }
  header nav ul {
    float: none;
    height: 100%;
    overflow-y: auto;
    left: 0;
    transform: translate3d(-100%,0,0);
    right: auto;
    width: 50%;
    background: #D9541E;
    position: fixed;
    overflow-x: hidden;
    transition: all .5s ease-out;
    z-index: 1500;
    top: 0 !important;
    padding: 30px 0;
    box-shadow: 0 0 0 1000px rgba(0,0,0,0);
    z-index: 10;
  }
  .menuopen header nav ul {
    transform: translateX(0%);
    transform: translate3d(0%,0,0);
    box-shadow: 0 0 0 1000px rgba(0,0,0,0.5);
  }
  header nav ul li,
  header nav ul li.login {
    float: none;
    padding: 0 20px;
    display: block;
    margin-bottom: 10px;
    height: auto !important;
  }
  header nav ul li form,
  header nav ul li.login form {
    width: auto;
    background: rgba(255,255,255,0.1);
  }
  header nav ul li form:before,
  header nav ul li.login form:before {
    display: none;
  }
  header nav ul li a,
  header nav ul li span,
  header nav ul li.login a,
  header nav ul li.login span {
    padding: 10px 10px;
    line-height: 130% !important;
    color: #fff;
    height: auto !important;
    display: block;
  }
  header nav ul li a:hover,
  header nav ul li a:focus,
  header nav ul li span:hover,
  header nav ul li span:focus,
  header nav ul li.login a:hover,
  header nav ul li.login a:focus,
  header nav ul li.login span:hover,
  header nav ul li.login span:focus {
    color: #fff;
  }
  header nav ul li.dd>a,
  header nav ul li.login.dd>a {
    background: none;
  }
  header nav ul li ul,
  header nav ul li.login ul {
    position: relative;
    top: auto;
    left: auto;
  }
  header nav ul li ul li,
  header nav ul li.login ul li {
    max-height: 1000px;
    padding-left: 20px;
  }
  header nav ul li.quote a,
  header nav ul li.login.quote a {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  header nav ul li ul,
  header nav ul li.login ul {
    position: relative;
    background: none;
    top: auto;
    left: auto;
    padding-top: 5px;
  }
  header nav ul li ul li,
  header nav ul li.login ul li {
    height: auto;
    white-space: normal;
  }
  header nav ul li ul li a,
  header nav ul li.login ul li a {
    padding: 7px 0;
    text-transform: none;
  }
  header nav .registernotice {
    text-align: center;
    padding: 10px;
    position: fixed;
    top: 65px;
    right: 20px;
    transition: all 0.5s ease-out;
  }
  .scroll header nav .registernotice {
    top: 50px;
  }
  header nav .registernotice .login {
    display: inline-block;
    background: #C1D82F;
    padding: 6px 7px 5px;
    line-height: 100%;
    color: #fff;
    text-transform: uppercase;
    margin-left: 5px;
    font-weight: lighter;
  }
  .mrbull p {
    font-size: 16px;
  }
  .mrbull h4 {
    font-size: 20px;
  }
  .moreinfo .section1 p {
    font-size: 16px;
  }
  .quotes h2 {
    font-size: 40px;
  }
  .quotes .bx-wrapper p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1000px) {
  .gallery >a {
    width: 33.33%;
    padding-bottom: 25%;
  }
  .gallery .gallerytitle,
  .gallery .areyou {
    width: 33.33%;
    padding-bottom: 25%;
  }
  .gallery .areyou h3 {
    font-size: 18px;
  }
  .gallery .areyou p {
    font-size: 13px;
    line-height: 150%;
  }
}
@media only screen and (max-width: 800px) {
  #hero.in .bull {
    transform: translateX(100px) scale(0.75);
  }
  .why p {
    font-size: 16px;
  }
  .why figure {
    width: 300px;
  }
  .mrbull .bull {
    width: 300px;
  }
  .mrbull h4 {
    margin-top: 150px;
  }
  .moreinfo h3 {
    font-size: 26px;
  }
  .moreinfo .section1 .caption {
    left: 170%;
    font-size: 20px;
  }
  .moreinfo .section1 .img {
    height: 100%;
    width: 600px;
    margin-left: 10px;
  }
  .moreinfo .section2 .text {
    padding: 20px;
  }
  .moreinfo .section2 p {
    font-size: 14px;
    line-height: 150%;
  }
  .moreinfo .section2 .img {
    height: 100%;
    width: 420px;
    margin-right: -10px;
  }
  .moreinfo .section3 .text {
    padding: 20px;
  }
  .moreinfo .section3 p {
    font-size: 14px;
    line-height: 150%;
  }
  .moreinfo .section3 .caption {
    font-size: 20px;
  }
  .moreinfo .section3 .img {
    height: 100%;
    width: 300px;
    margin-left: -20px;
  }
  .whoowns h2 {
    font-size: 34px;
  }
  .quotes h2 {
    font-size: 36px;
  }
  .prefooter img {
    max-width: 80px;
  }
  .prefooter h3 {
    font-size: 22px;
  }
  .prefooter p {
    font-size: 15px;
  }
  .directory-listing .directorytitle {
    margin-bottom: 0;
  }
  .directory-listing .directoymenu .item .cat {
    padding-left: 40px;
    padding-top: 2px;
    font-size: 16px;
  }
  .directory-listing .directoymenu .item .cat span.ico {
    width: 30px;
    height: 30px;
    padding: 7px;
  }
  .directory-listing .directoymenu .item .cat span.ico img {
    display: block;
  }
  .directory-listing .directoymenu .item p {
    padding-left: 40px;
  }
  .directory-listing .directoymenu .item p a {
    font-size: 14px;
  }
  .directory-listing .list {
    margin-bottom: 40px;
  }
  .directory-listing .list li {
    padding: 0;
  }
  .directory-listing .list li figure {
    position: relative;
    margin: 0 0 10px;
  }
  .directory-listing .list li h3 {
    font-size: 18px;
  }
  .directory-listing .list li p {
    font-size: 14px;
  }
  .pagecontent .sectiontitle {
    font-size: 36px;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .anecdotesout .anecdote {
    margin-bottom: 20px;
  }
  .anecdotesout .anecdotein {
    padding: 15px;
    padding-left: 70px;
    margin: 0 10px;
  }
  .anecdotesout .anecdotein p {
    font-size: 15px;
  }
  .anecdotesout .anecdotein .ico {
    left: 20px;
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
  }
  .makecrop {
    transform: scale(.7);
    transform-origin: 0;
  }
  .make .step h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 720px) {
  .gallery {
    padding-top: 120px;
  }
  .gallery > a,
  .gallery .gallerytitle {
    width: 50%;
    padding-bottom: 36%;
  }
  .gallery .areyou {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  #container {
    padding: 0;
  }
  header h1 {
    left: 20px;
    top: 20px;
  }
  header h1 a {
    width: 200px;
    background-size: 100% auto;
  }
  header nav {
    float: none;
    height: 100%;
    overflow-y: auto;
    left: 0;
    transform: translate3d(-100%,0,0);
    -webkit-transform: translate3d(-100%,0,0);
    right: auto;
    width: 70%;
    background: #D9541E;
    position: fixed;
    overflow-x: hidden;
    transition: all .5s ease-out;
    z-index: 1500;
    top: 0 !important;
    padding: 30px 0;
    box-shadow: 0 0 0 1000px rgba(0,0,0,0);
    z-index: 10;
  }
  .menuopen header nav {
    transform: translateX(0%);
    transform: translate3d(0%,0,0);
    -webkit-transform: translate3d(0%,0,0);
    box-shadow: 0 0 0 1000px rgba(0,0,0,0.5);
  }
  header nav .registernotice {
    position: relative;
    color: #fff;
    top: auto;
    right: auto;
    border-top: 1px solid rgba(255,255,255,0.5);
    padding-top: 15px;
  }
  header nav .registernotice a {
    display: block;
    padding: 9px;
    color: #fff;
  }
  header nav .registernotice .login {
    padding: 10px 10px 9px;
  }
  header nav ul {
    width: 100%;
    position: relative;
    transform: none !important;
    box-shadow: none !important;
    height: auto;
    padding: 0;
  }
  .mobilemenu {
    top: 20px;
    right: 20px;
  }
  .heroout {
    margin: 0;
    padding: 0;
  }
  #hero {
    overflow: hidden;
  }
  #hero .bull {
    top: 100px;
    width: 320px;
    height: 250px;
  }
  #hero .bull svg,
  #hero .bull image {
    width: 320px;
    height: 250px;
  }
  #hero.in .bull {
    transform: translateX(35px);
  }
  #hero .herotext {
    top: 250px;
    height: 140px;
    margin: 0;
    left: 20px;
  }
  #hero .herotext .span {
    height: 100%;
    background-size: 140px auto;
    background-position: left 10px center;
  }
  #hero .text {
    top: auto;
    padding: 380px 20px 0;
    width: auto;
  }
  #hero .text h2 {
    font-size: 26px;
  }
  .why {
    padding-bottom: 50px;
  }
  .why h2 {
    width: 200px;
    height: 100px;
    background-size: 100% auto;
  }
  .why figure {
    float: none;
    margin: 0 0 15px;
    width: auto;
  }
  .mrbull {
    margin: 50px 0 50px;
  }
  .mrbull h2 {
    font-size: 36px;
  }
  .mrbull h2 span {
    font-size: 24px;
  }
  .mrbull h3 {
    font-size: 28px;
  }
  .mrbull .bull {
    position: relative;
    width: 240px;
    top: auto;
    margin: 30px auto 0;
    height: 180px;
  }
  .mrbull h4 {
    margin-top: 0;
  }
  .mrbull .after {
    height: 60px;
    background-size: auto 60px;
    bottom: -30px;
  }
  .available h2 {
    background-size: 100% auto;
    width: 250px;
    height: 100px;
    margin-bottom: 10px;
  }
  .available h2:after {
    display: none;
  }
  .available figure {
    display: none;
  }
  .moreinfo {
    margin: 0;
  }
  .moreinfo .section1,
  .moreinfo .section2,
  .moreinfo .section3 {
    height: auto;
  }
  .moreinfo .section1 .row,
  .moreinfo .section1 .columns,
  .moreinfo .section2 .row,
  .moreinfo .section2 .columns,
  .moreinfo .section3 .row,
  .moreinfo .section3 .columns {
    height: auto;
  }
  .moreinfo .section1 .img,
  .moreinfo .section2 .img,
  .moreinfo .section3 .img {
    position: relative;
    left: auto;
    top: auto;
    height: 150px;
    width: auto;
    margin: 0 -20px 15px;
    right: auto;
  }
  .moreinfo .section1 .text,
  .moreinfo .section2 .text,
  .moreinfo .section3 .text {
    padding: 0px;
  }
  .moreinfo .section1 .caption,
  .moreinfo .section2 .caption,
  .moreinfo .section3 .caption {
    width: auto;
    padding: 10px;
    text-align: center;
    margin: 0 -20px;
    font-size: 18px;
    float: none;
    left: auto;
    right: auto;
    position: relative;
  }
  .moreinfo .section1 .caption {
    margin-top: 20px;
  }
  .moreinfo .section2 .text {
    padding-bottom: 20px;
  }
  .whoowns {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .whoowns h2 {
    font-size: 26px;
  }
  .whoowns p {
    font-size: 16px;
    line-height: 150%;
  }
  .quotes {
    margin: 0;
  }
  .quotes h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .quotes h2:after {
    display: none;
  }
  .quotes .bx-wrapper p {
    font-size: 14px;
    padding: 0 20px;
  }
  .prefooter {
    padding-bottom: 0;
  }
  .prefooter .columns {
    margin-bottom: 40px;
  }
  footer .row {
    height: auto;
  }
  footer .columns {
    height: auto;
    padding-top: 20px;
    text-align: center;
  }
  footer a.vc {
    margin: 0 auto 20px;
    float: none;
  }
  .directory .directorytitle {
    width: 240px;
    height: 100px;
    background-size: 100% auto;
    margin: 0 auto 10px;
  }
  .directory .notlisted {
    float: none;
    font-size: 18px;
    width: auto;
    margin-top: 0;
    text-align: center;
    margin-bottom: 30px;
  }
  .directory-listing .directorytitle {
    width: 240px;
    height: 100px;
    background-size: 100% auto;
    margin: 0 auto 10px;
  }
  .directory-listing .cattitle {
    font-size: 28px;
  }
  .directory-listing .notlisted {
    display: none;
  }
  .directoymenu {
    display: none;
  }
  .pagecontent {
    padding-top: 120px;
  }
  .pagecontent .sectiontitle {
    font-size: 28px;
  }
  .latesttopics th:first-child,
  .latesttopics td:first-child {
    display: none;
  }
  .topic {
    margin: 0 -20px 0px;
  }
  .topic .comment {
    margin-bottom: 20px;
    padding: 10px;
    padding-left: 100px;
  }
  .topic .comment p {
    font-size: 13px;
    line-height: 150%;
  }
  .topic .comment .author {
    top: 10px;
    left: 10px;
    width: 80px;
    font-size: 12px;
  }
  .reply button.b {
    position: relative;
    top: auto;
    left: auto;
    margin: 10px auto 10px;
    right: auto;
    width: 80px;
    display: block;
  }
  .reply .text {
    padding-right: 0;
    padding-bottom: 10px;
  }
  li.file {
    padding-left: 0px;
    padding-bottom: 0;
  }
  li.file .ico {
    display: none;
  }
  li.file img {
    max-width: 200px;
  }
  li.file .pdfico {
    left: 15px;
  }
  .anecdotesout .anecdote {
    width: 100%;
  }
  #loginform form {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  #loginform form .close {
    top: 0;
    right: 0;
  }
}
