/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0,0,0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0!important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform .1s ease;
  transition: -webkit-transform .1s ease;
  transition: transform .1s ease;
  transition: transform .1s ease, -webkit-transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3,1.3);
          transform: scale(1.3,1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}/* Magnific Popup CSS */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}

.mfp-zoom {
  cursor: pointer;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}/*!
 * Bootstrap-select v1.13.2 (https://developer.snapappointments.com/bootstrap-select)
 *
 * Copyright 2012-2018 SnapAppointments, LLC
 * Licensed under MIT (https://github.com/snapappointments/bootstrap-select/blob/master/LICENSE)
 */

.bootstrap-select>select.bs-select-hidden,
select.bs-select-hidden,
select.selectpicker {
  display: none!important;
}

.bootstrap-select {
  width: 220px\0;
}

.bootstrap-select>.dropdown-toggle {
  position: relative;
  width: 100%;
  z-index: 1;
  text-align: right;
  white-space: nowrap;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
  color: #999;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-danger:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-dark:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-info:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-primary:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-secondary:hover,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder.btn-success:hover {
  color: rgba(255,255,255,.5);
}

.bootstrap-select>select {
  position: absolute!important;
  bottom: 0;
  left: 50%;
  display: block!important;
  width: .5px!important;
  height: 100%!important;
  padding: 0!important;
  opacity: 0!important;
  border: none;
}

.bootstrap-select>select.mobile-device {
  top: 0;
  left: 0;
  display: block!important;
  width: 100%!important;
  z-index: 2;
}

.bootstrap-select.is-invalid .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select .dropdown-toggle,
.was-validated .bootstrap-select .selectpicker:invalid+.dropdown-toggle {
  border-color: #b94a48;
}

.bootstrap-select.is-valid .dropdown-toggle,
.was-validated .bootstrap-select .selectpicker:valid+.dropdown-toggle {
  border-color: #28a745;
}

.bootstrap-select.fit-width {
  width: auto!important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 220px;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333!important;
  outline: 5px auto -webkit-focus-ring-color!important;
  outline-offset: -2px;
}

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}

:not(.input-group)>.bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}

.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}

.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn {
  border-radius: 0;
}

.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}

.bootstrap-select.dropdown-menu-right,
.bootstrap-select[class*=col-].dropdown-menu-right,
.row .bootstrap-select[class*=col-].dropdown-menu-right {
  float: right;
}

.form-group .bootstrap-select,
.form-horizontal .bootstrap-select,
.form-inline .bootstrap-select {
  margin-bottom: 0;
}

.form-group-lg .bootstrap-select.form-control,
.form-group-sm .bootstrap-select.form-control {
  padding: 0;
}

.form-group-lg .bootstrap-select.form-control .dropdown-toggle,
.form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}

.bootstrap-select.form-control-lg .dropdown-toggle,
.bootstrap-select.form-control-sm .dropdown-toggle {
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}

.bootstrap-select.form-control-sm .dropdown-toggle {
  padding: .25rem .5rem;
}

.bootstrap-select.form-control-lg .dropdown-toggle {
  padding: .5rem 1rem;
}

.form-inline .bootstrap-select .form-control {
  width: 100%;
}

.bootstrap-select.disabled,
.bootstrap-select>.disabled {
  cursor: not-allowed;
}

.bootstrap-select.disabled:focus,
.bootstrap-select>.disabled:focus {
  outline: 0!important;
}

.bootstrap-select.bs-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 0!important;
  padding: 0!important;
}

.bootstrap-select.bs-container .dropdown-menu {
  z-index: 1060;
}

.bootstrap-select .dropdown-toggle:before {
  content: '';
  display: inline-block;
}

.bootstrap-select .dropdown-toggle .filter-option {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: inherit;
  padding-right: inherit;
  padding-bottom: inherit;
  padding-left: inherit;
  height: 100%;
  width: 100%;
  text-align: left;
}

.bootstrap-select .dropdown-toggle .filter-option-inner {
  padding-right: inherit;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  overflow: hidden;
}

.bootstrap-select .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}

.input-group .bootstrap-select.form-control .dropdown-toggle {
  border-radius: inherit;
}

.bootstrap-select[class*=col-] .dropdown-toggle {
  width: 100%;
}

.bootstrap-select .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bootstrap-select .dropdown-menu>.inner:focus {
  outline: 0!important;
}

.bootstrap-select .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bootstrap-select .dropdown-menu li {
  position: relative;
}

.bootstrap-select .dropdown-menu li.active small {
  color: rgba(255,255,255,.5)!important;
}

.bootstrap-select .dropdown-menu li.disabled a {
  cursor: not-allowed;
}

.bootstrap-select .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bootstrap-select .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}

.bootstrap-select .dropdown-menu li a span.check-mark {
  display: none;
}

.bootstrap-select .dropdown-menu li a span.text {
  display: inline-block;
}

.bootstrap-select .dropdown-menu li small {
  padding-left: .5em;
}

.bootstrap-select .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
  pointer-events: none;
  opacity: .9;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bootstrap-select .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option {
  position: static;
  display: inline;
  padding: 0;
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  display: inline;
}

.bootstrap-select.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  top: 5px;
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}

.bootstrap-select .bs-ok-default:after {
  content: '';
  display: block;
  width: .5em;
  height: 1em;
  border-style: solid;
  border-width: 0 .26em .26em 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle {
  z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204,204,204,.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  bottom: auto;
  top: -4px;
  border-top: 7px solid rgba(204,204,204,.2);
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  bottom: auto;
  top: -4px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  right: 12px;
  left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  right: 13px;
  left: auto;
}

.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.open>.dropdown-toggle .filter-option:before,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:after,
.bootstrap-select.show-menu-arrow.show>.dropdown-toggle .filter-option:before {
  display: block;
}

.bs-actionsbox,
.bs-donebutton,
.bs-searchbox {
  padding: 4px 8px;
}

.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.bs-donebutton .btn-group button {
  width: 100%;
}

.bs-searchbox+.bs-actionsbox {
  padding: 0 8px 4px;
}

.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #505050;
  font-size: 14px;
  overflow-x: hidden;
  font-weight: 300;
}

body.menuOpen {
  overflow-y: hidden;
}

.logo {
  display: block;
  width: 28px;
  height: 28px;
  background-size: contain;
  background-image: url(/img/logo.png);
  background-repeat: no-repeat;
  background-position: center;
}

.logoLg {
  display: block;
  width: 140px;
  height: 22px;
  background-size: contain;
  background-image: url(/img/logo.png);
  background-repeat: no-repeat;
  background-position: center;
}

.menuTrigger {
  display: block;
  width: 32px;
  height: 14px;
  cursor: pointer;
  position: relative;
}

.menuTrigger .trigger {
  height: 2px;
  background: #505050;
  display: block;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  width: 32px;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.menuTrigger .trigger:before {
  content: "";
  height: 2px;
  background: #505050;
  display: block;
  border-radius: 2px;
  width: 32px;
  top: -6px;
  position: absolute;
  -webkit-transition-property: top,opacity;
  transition-property: top,opacity;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.menuTrigger .trigger:after {
  content: "";
  height: 2px;
  background: #505050;
  display: block;
  border-radius: 2px;
  width: 32px;
  top: 6px;
  position: absolute;
  -webkit-transition-property: top,opacity;
  transition-property: top,opacity;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.menuTrigger.in .trigger {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(405deg);
          transform: rotate(405deg);
}

.menuTrigger.in .trigger:before {
  top: 0;
  opacity: 0;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.menuTrigger.in .trigger:after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: auto;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.mainContainer {
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.mainContainerFluid {
  width: 100%;
  padding: 0 15px;
}

.pageHolder {
  padding: 30px 0;
}

.pageHolder.noPadTop {
  padding-top: 0;
}

.btnPrimary {
  display: inline-block;
  background-color: #74b360;
  -webkit-box-shadow: 0 1px 4px 0 rgba(131, 131, 131, 0.49);
          box-shadow: 0 1px 4px 0 rgba(131, 131, 131, 0.49);
  color: #fff;
  padding: 8px 30px;
  border-radius: 22px;
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  text-transform: capitalize;
  position: relative;
  text-align: center;
  font-weight: 600;
}

.btnPrimary.lg {
  padding: 8px 80px;
}

.btnPrimary:hover,
.btnPrimary:active,
.btnPrimary:focus {
  -webkit-box-shadow: 0 3px 12px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 12px 1px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: #fff;
  outline: none;
}

.btnPrimary.loading {
  color: rgba(0, 0, 0, 0) !important;
}

.btnPrimary.loading:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -7px;
  -webkit-animation-duration: .8s;
          animation-duration: .8s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: loader;
          animation-name: loader;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

button:disabled {
  background: #eeeded;
  color: #a6a6a6;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button:disabled:hover {
  cursor: not-allowed;
  color: #999;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.mainHeader {
  background: #fff;
  width: 100%;
  position: fixed;
  top: -1px;
  left: 0;
  border-bottom: 1px solid #eee;
  -webkit-box-shadow: 0 0px 12px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0px 12px 0 rgba(0, 0, 0, 0.08);
  z-index: 99;
  padding: 18px 0;
}

.mainHeader .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mainHeader .menuHolder {
  position: fixed;
  width: 100%;
  height: calc(100% - 65px);
  top: 65px;
  left: 0;
  background: #fff;
  display: none;
  z-index: 99;
  overflow-y: auto;
}

.mainHeader .menuHolder.in {
  display: block;
}

.mainHeader .menuHolder.fadeIn {
  -webkit-animation-duration: .2s;
          animation-duration: .2s;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

.mainHeader .menuHolder.fadeOut {
  -webkit-animation-duration: .2s;
          animation-duration: .2s;
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

.mainHeader .menuHolder .dropdown-menu {
  position: static !important;
  float: none !important;
  padding: 0 !important;
  border: 0 !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

.mainHeader .menu {
  list-style: none;
  padding: 15px;
}

.mainHeader .menu a {
  font-size: 14px;
  font-weight: 400;
  color: #60b39b;
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
  display: block;
  text-align: left;
}

.mainHeader .menu .bold {
  font-weight: 600;
}

.mainHeader .menu li + li {
  margin-top: 15px;
}

.mainHeader .menu.loginMenu a {
  color: #505050;
}

.mainHeader .menu + .menu {
  border-top: 1px solid #eeeded;
}

.mainHeader .landNavLine {
  display: none;
  padding: 15px 0;
  background: #fff;
}

.mainHeader .landNavLine .landingNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

.mainHeader .landNavLine .landingNav a {
  display: block;
  font-size: 12px;
  line-height: 14px;
  color: #505050;
  opacity: .8;
  text-decoration: none;
}

.mainHeader .landNavLine .landingNav li + li {
  margin-left: 30px;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.main {
  padding-top: 65px;
}

.main.noHeader {
  padding-top: 0;
}

.landingSlide {
  position: relative;
}

.landingSlideContent {
  padding-top: 60px;
  padding-bottom: 60px;
}

.introSlide {
  background-image: url("/img/sl2.jpg");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  color: #fff;
  min-height: calc(100vh - 65px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.introSlide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(133deg, #74b360 0%, rgba(116, 179, 96, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.introSlide .content {
  position: relative;
  z-index: 2;
}

.landingSlideHeading {
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: left;
}

.landingSlideHeading .bold {
  font-weight: 600;
}

.textHolder.hasMargBottom {
  margin-bottom: 30px;
}

.textHolder p + p {
  margin-top: 15px;
}

.textHolder p + ul {
  margin-top: 15px;
}

.textHolder .text {
  font-size: 18px;
}

.textHolder .linkList {
  list-style: none;
  font-weight: 300;
  color: #505050;
}

.textHolder .linkList a {
  color: #505050;
}

.textHolder .linkList a:hover {
  color: #74B360;
}

.textHolder .linkList .listHeading {
  font-weight: 400;
  margin-bottom: 5px;
}

.textHolder .linkList + .linkList {
  margin-top: 15px;
}

.linkMoreHolder {
  padding-top: 15px;
}

.linkMoreHolder a {
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
}

.linkMoreHolder a .fas {
  margin-right: 10px;
}

.galleryCarousel {
  -webkit-box-shadow: 0 0 38px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 38px rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  border: 6px solid #ffffff;
  margin-bottom: 30px;
}

.galleryCarousel .carousel-indicators li {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  cursor: pointer;
  margin-right: 5px;
  margin-left: 5px;
}

.locationSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.locationSlide .mapHolder {
  height: 0;
  width: 100%;
  position: relative;
  padding-top: 60%;
}

.locationSlide .mapHolder .map {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.locationSlide .mapHolder .mapLink {
  display: none;
}

.locationSlide .landingSlideContent {
  padding-left: 15px;
  padding-right: 15px;
  background: #fff;
}

.hubSlide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hubSlide .landingSlideContent {
  padding-left: 15px;
  padding-right: 15px;
  background: #fff;
}

.btnHolder {
  padding-top: 30px;
  padding-bottom: 30px;
}

.btnHolder.noPadTop {
  padding-top: 0;
}

.btnHolder.noPadBottom {
  padding-bottom: 0;
}

.btnHolder.centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btnHolder.centered * + * {
  margin-left: 15px;
}

.affordSlide {
  background-image: url("/img/sl1.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}

.affordSlide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: .94;
  position: absolute;
  top: 0;
  left: 0;
}

.affordSlide .content {
  position: relative;
  z-index: 2;
}

.affordSlide .landingSlideContent {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contactFormHolder {
  background-color: #fff;
}

.contactFormHolder .contactForm {
  -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 11px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  background-color: #ffffff;
  padding: 45px 15px;
  position: relative;
  top: -45px;
  margin-left: -15px;
  margin-right: -15px;
}

.contactFormHolder .btnHolder {
  text-align: center;
}

.contactFormHolder .formBlock {
  margin-bottom: 45px;
}

.logoText {
  display: block;
  width: 98px;
  height: 22px;
  background: url("/img/logoText.png") no-repeat;
  background-size: contain;
  background-position: center;
}

.logoText.white {
  background: url("/img/logoTextWhite.png") no-repeat;
}

.mainFooter {
  padding: 30px 0;
  color: #505050;
  background: #fafafa;
}

.mainFooter a {
  color: #505050;
}

.mainFooter .socialList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

.mainFooter .socialList.visLg {
  display: none;
}

.mainFooter .socialList li + li {
  margin-left: 10px;
}

.mainFooter .socialList .icoHolder {
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  opacity: .6;
}

.mainFooter .socialList .icoHolder:hover {
  opacity: 1;
}

.mainFooter .logoHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

.mainFooter .copyright {
  text-align: center;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.mainFooter .copyright.visLg {
  display: none;
}

.mainFooter .logoText {
  margin: auto;
  margin-bottom: 5px;
}

.mainFooter .footerMenu {
  list-style: none;
  text-align: center;
  font-size: 12px;
  margin-bottom: 30px;
}

.mainFooter .footerMenu .title {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 12px;
}

.mainFooter .footerMenu li + li {
  margin-top: 5px;
}

.mainFooter .footerMenu .dropdown-item {
  padding: 5px 10px;
  font-size: 12px;
}

.mainFooter .footerMenu .dropdown-item + .dropdown-item {
  margin-top: 0;
}

.mainFooter .slogan {
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.formHolder .checkbox label {
  cursor: pointer;
  padding-left: 0;
}

.formHolder .checkbox label a {
  color: #74b360;
  font-weight: 600;
}

.formHolder .checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  margin: 0;
  z-index: -1;
  overflow: hidden;
  left: 0;
  pointer-events: none;
  display: none;
}

.formHolder .checkbox .checkbox-material {
  vertical-align: middle;
  position: relative;
  top: 1px;
  padding-right: 5px;
  display: inline-block;
}

.formHolder .checkbox .checkbox-material .check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #c4c4c4;
  overflow: hidden;
  z-index: 1;
  border-radius: 3px;
}

.formHolder .checkbox .checkbox-material .check:before {
  position: absolute;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: block;
  margin-top: -3px;
  margin-left: 7px;
  width: 0;
  height: 0;
}

.formHolder .checkbox input[type=checkbox]:checked + .checkbox-material .check:before {
  color: #74b360;
  -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
          box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  -webkit-animation: checkbox-on 0.2s forwards;
          animation: checkbox-on 0.2s forwards;
}

.formHolder .checkbox input[type=checkbox]:checked + .checkbox-material .check {
  background: #fff;
}

.formHolder .radio label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}

.formHolder .radio label span {
  display: block;
  position: absolute;
  left: 3px;
  top: 2px;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

.formHolder .radio label .circle {
  border: 1px solid rgba(0, 0, 0, 0.54);
  height: 15px;
  width: 15px;
  border-radius: 100%;
}

.formHolder .radio label .check {
  height: 15px;
  width: 15px;
  border-radius: 100%;
  background-color: #74b360;
  -webkit-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
}

.formHolder .radio input[type=radio] {
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.formHolder .radio input[type=radio]:checked ~ .check,
.formHolder .radio input[type=radio]:checked ~ .circle {
  opacity: 1;
}

.formHolder .radio input[type=radio]:checked ~ .circle {
  border-color: #74b360;
}

.formHolder .radio input[type=radio]:checked ~ .check {
  background-color: #74b360;
}

.formHolder .radio input[type=radio]:checked ~ .check {
  -webkit-transform: scale3d(0.65, 0.65, 1);
          transform: scale3d(0.65, 0.65, 1);
}

@-webkit-keyframes checkbox-on {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
            box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
            box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
            box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  }
}

@keyframes checkbox-on {
  0% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
            box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 15px 2px 0 11px;
  }

  50% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
            box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px 2px 0 11px;
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
            box-shadow: 0 0 0 10px, 10px -10px 0 10px, 32px 0 0 20px, 0px 32px 0 20px, -5px 5px 0 10px, 20px -12px 0 11px;
  }
}

.formHeading {
  color: #cfcfcf;
  font-size: 32px;
  font-weight: 300;
  position: relative;
  margin-bottom: 15px;
}

.formHeading:after {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 270px);
  position: absolute;
  top: calc(50% + 3px);
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #eee;
}

.formHeading .heading {
  display: block;
  position: relative;
}

.formHolder label,
.formHolder .labelLike {
  color: #999;
  font-size: 12px;
  margin-bottom: 10px;
}

.formHolder .form-group {
  margin-bottom: 30px;
}

.formHolder .form-group.hasError .error {
  display: block;
  font-size: 12px;
  color: #ff0000;
}

.formHolder .form-control {
  resize: none;
  color: #292c33;
  font-size: 12px;
  padding: 8px 12px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  border: 1px solid #cfcfcf;
  height: 36px;
}

.formHolder .form-control:focus {
  border-color: #74b360;
}

.formHolder .form-control::-webkit-input-placeholder {
  color: #999;
}

.formHolder .form-control::-moz-placeholder {
  color: #999;
}

.formHolder .form-control:-moz-placeholder {
  color: #999;
}

.formHolder .form-control:-ms-input-placeholder {
  color: #999;
}

.formHolder .error {
  display: none;
}

.formHolder select.form-control:not([size]):not([multiple]) {
  height: 36px;
}

.formHolder textarea.form-control {
  height: auto;
}

.formHolder .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  display: block;
}

.formHolder .bootstrap-select {
  height: 36px;
}

.formHolder .bootstrap-select .btn {
  font-size: 12px;
  height: 36px;
  padding: 8px 12px;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  border: 1px solid #cfcfcf;
  color: #999;
  background-color: #fff;
}

.formHolder .btn-light:not(:disabled):not(.disabled).active:focus,
.formHolder .btn-light:not(:disabled):not(.disabled):active:focus,
.formHolder .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.formHolder .btn-light:not(:disabled):not(.disabled).active,
.formHolder .btn-light:not(:disabled):not(.disabled):active,
.formHolder .show > .btn-light.dropdown-toggle {
  background-color: #fff;
  border-color: #74b360;
  color: #999;
}

.formHolder .bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}

.formHolder .bootstrap-select .dropdown-menu li a {
  font-size: 12px;
}

.formHolder .dropdown-menu {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  border-color: #74b360;
}

.visible-sm {
  display: block;
}

.hidden-sm {
  display: none;
}

.pricingSlide {
  background-color: #fff;
}

.pricingList {
  list-style: none;
  width: 100%;
}

.pricingList .heading {
  color: #74b360;
  font-weight: 700;
}

.pricingList .price {
  font-style: italic;
  margin-bottom: 15px;
}

.pricingList li {
  margin-bottom: 30px;
}

.amenitiesSlide {
  border-top: 1px solid #eee;
  background-color: #fff;
}

.amenitiesList {
  list-style: none;
}

.amenitiesList .amenitiesListItem {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.amenitiesList .amenitiesListItem .heading {
  color: #74b360;
  font-weight: 700;
  margin-bottom: 15px;
}

.amenitiesList .amenitiesListItem .descr p {
  margin-bottom: 15px;
}

.amenitiesList .amenitiesListItem .descr ul {
  padding-left: 20px;
}

.amenitiesList .amenitiesListItem:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("/img/success.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.introSlideHome {
  background-image: url("/img/inslbg.png"), linear-gradient(135deg, #74b360 0%, #72c17b 49%, #74b360 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  border-top: 0;
  min-height: calc(100vh - 65px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.introSlideHome.notFullHeight {
  min-height: unset;
}

.introSlideHome .socialLine {
  display: none;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  -ms-flex-item-align: end;
      align-self: flex-end;
  bottom: 120px;
}

.introSlideHome .socialLine img {
  display: block;
  height: 16px;
}

.introSlideHome .socialLine li + li {
  margin-left: 15px;
}

.introSlideHome .textHolder {
  width: 100%;
}

.introSlideHome .text {
  padding-left: 15px;
  border-left: 2px solid #fff;
}

.introSlideHome .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.introSlideHome .letterFormHolder {
  width: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background-image: linear-gradient(135deg, #71c057 0%, #72c17b 49%, #74b360 100%);
  padding: 45px;
  text-align: center;
  margin-top: 30px;
}

.introSlideHome .letterFormHolder .formTitle {
  font-size: 18px;
  margin-bottom: 15px;
}

.introSlideHome .letterFormHolder p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
}

.introSlideHome .letterFormHolder .form-control {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  border-radius: 23px;
  padding: 12px 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  color: #fff;
  height: auto;
  padding-right: 48px;
}

.introSlideHome .letterFormHolder .form-control::-webkit-input-placeholder {
  color: #fff;
}

.introSlideHome .letterFormHolder .form-control::-moz-placeholder {
  color: #fff;
}

.introSlideHome .letterFormHolder .form-control:-ms-input-placeholder {
  color: #fff;
}

.introSlideHome .letterFormHolder .form-control:-moz-placeholder {
  color: #fff;
}

.introSlideHome .letterFormHolder .formHolder {
  position: relative;
}

.letterBtn {
  display: block;
  border: 0;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 50%;
  right: 8px;
  cursor: pointer;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("/img/letterBtn.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.pressLine {
  background: #fafafa;
  padding: 40px;
  display: none;
}

.pressLine .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pressLine .pressLogosCarousel {
  width: calc(100% - 150px);
}

.pressLine .logosList {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}

.pressLine .logosList li + li {
  margin-left: 30px;
}

.pressLine .logosList a {
  display: block;
}

.pressLine .logosList img {
  max-height: 40px;
  display: block;
  max-width: 160px;
}

.pressLine .sectionTitle {
  margin-bottom: 0;
  color: #c4c4c4;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-right: 30px;
}

.stdLandSlide {
  border-top: 1px solid #eee;
  color: #505050;
  background: #fff;
}

.stdLandSlide.chainSlideHome {
  background: #fafafa;
}

.stdLandSlide.spaceSlideHome .btnHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.stdLandSlide.teamSlideHome {
  border-top: 0;
}

.stdLandSlide .slideContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.stdLandSlide.fullHeightSlide .slideContent {
  min-height: 100vh;
}

.stdLandSlide .textHolder {
  width: 100%;
}

.stdLandSlide .textHolder.fullWidth {
  width: 100%;
}

.stdLandSlide .textHolder h4 {
  margin-top: 15px;
}

.stdLandSlide .imgHolder {
  display: none;
  max-width: calc(50% - 60px);
}

.stdLandSlide .imgHolder img {
  display: block;
  max-width: 100%;
}

.green {
  color: #74b360;
}

.roadmapSlideHome {
  background-color: #87bc76;
  color: #fff;
  padding: 60px 0;
}

.roadmapSlideHome .landingSlideHeading {
  margin-bottom: 60px;
}

.roadmapSlideHome .roadMapHolderHome {
  width: 100%;
  background-image: url("/img/roadmapBg.png");
  background-color: #74b360;
  background-size: cover;
  background-position: top left;
}

.roadmapItem {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.roadmapItem .headingIco {
  width: 48px;
  height: 48px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: none;
}

.roadmapItem .headingIco.icoRh1 {
  background-image: url("/img/rhi1.png");
}

.roadmapItem .headingIco.icoRh2 {
  background-image: url("/img/rhi2.png");
}

.roadmapItem .headingIco.icoRh3 {
  background-image: url("/img/rhi3.png");
}

.roadmapItem .headingIco.icoRh4 {
  background-image: url("/img/rhi4.png");
}

.roadmapItem .headingIco.icoRh5 {
  background-image: url("/img/rhi5.png");
}

.roadmapItem .headingIco.icoRh6 {
  background-image: url("/img/rhi6.png");
}

.roadmapItem .headingIco.icoRh7 {
  background-image: url("/img/rhi7.png");
}

.roadmapItem .caption {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.roadmapItem .title {
  font-size: 18px;
  font-weight: 600;
}

.roadmapItem .subText {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 15px;
}

.roadmapItem p {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 400;
}

.roadmapItem .tableHolder {
  margin-bottom: 30px;
}

.roadmapItem .tableTitle {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.roadmapItem .tableTitle:before {
  content: "";
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  left: -50px;
  top: -5px;
  background: url("/img/ri1.png") no-repeat center;
  background-size: contain;
}

.roadmapItem .tableRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.roadmapItem .tableRow:before {
  content: "";
  display: none;
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: -34px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.roadmapItem .tableRow + .tableRow {
  margin-top: 10px;
}

.roadmapItem .tableRow + .tableText {
  margin-top: 30px;
}

.roadmapItem .tableText + .tableRow {
  margin-top: 15px;
}

.roadmapItem .tableText {
  font-size: 14px;
  font-weight: 300;
  position: relative;
}

.roadmapItem .tableText:before {
  content: "";
  display: none;
  width: 13px;
  height: 13px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: -37px;
  top: 2px;
}

.roadmapItem .tableText h3 {
  font-weight: 600;
}

.roadmapItem .td {
  width: 30%;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
}

.roadmapItem .td:last-child {
  width: 40%;
}

.roadmapItem .iconsList {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.roadmapItem .iconsList li {
  width: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.roadmapItem .iconsList .ico {
  width: 14px;
  height: 14px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.roadmapItem .iconsList .ico.icoDesktop {
  background-image: url("/img/ri2.png");
}

.roadmapItem .iconsList .ico.icoAndroid {
  background-image: url("/img/ri3.png");
}

.roadmapItem .iconsList .ico.icoApple {
  background-image: url("/img/ri4.png");
}

.roadmapItem .text-mute {
  opacity: 0.6;
  font-weight: 300;
}

.introSlideChain {
  background-image: url("/img/cisbg.png"), linear-gradient(135deg, #60b39b 0%, #60b38f 49%, #60b39b 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  border-top: 0;
  min-height: calc(100vh - 65px);
}

.introSlideChain .slideContent {
  min-height: calc(100vh - 67px);
  position: static;
}

.introSlideChain .slideContent:after {
  content: "";
  display: none;
  position: absolute;
  height: 75%;
  width: 50%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("/img/section1c.png") no-repeat;
  background-size: contain;
  background-position: right center;
}

.introSlideChain .btnHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.marketBtn {
  display: block;
  width: 142px;
  height: 48px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.marketBtn.appStore {
  background-image: url("/img/appStore.png");
}

.marketBtn.playMarket {
  background-image: url("/img/playMarket.png");
}

.marketBtn.black.appStore {
  background-image: url("/img/appStoreBlack.png");
}

.marketBtn.black.playMarket {
  background-image: url("/img/playMarketBlack.png");
}

.marketBtn + .marketBtn {
  margin-left: 30px;
}

.aboutSlideChain {
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: left center;
}

.aboutSlideChain .slideContent {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.phaseSlideChain {
  background: #fafafa;
}

.phaseSlideChain .textHolder {
  text-align: center;
  width: 100%;
  margin: auto;
  padding-left: 0;
  border-left: 0;
}

.phaseSlideChain .slideContent {
  padding: 120px 0;
}

.phaseSchemeHolder {
  background-color: #fff;
}

.phaseSchemeHolder .phaseScheme {
  -webkit-box-shadow: 0 0 11px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 11px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  background-color: #ffffff;
  position: relative;
  top: -90px;
  padding: 30px 15px;
}

.phaseSchemeHolder .scheme {
  list-style: none;
}

.phaseSchemeHolder .scheme li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.phaseSchemeHolder .scheme li:nth-child(even) {
  margin-left: 0%;
}

.phaseSchemeHolder .scheme li + li {
  margin-top: 30px;
}

.phaseSchemeHolder .scheme .icoHolder {
  width: 60px;
  height: 60px;
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: 2px solid #effaf7;
  margin-right: 15px;
}

.phaseSchemeHolder .scheme .title {
  color: #60b39b;
  font-weight: 600;
  font-size: 14px;
}

.phaseSchemeHolder .scheme .text {
  font-size: 14px;
  color: #505050;
  font-weight: 300;
}

.phaseSchemeHolder .scheme .caption {
  width: calc(100% - 75px);
}

.text {
  text-align: justify;
}

.aboutSlideChain1 {
  position: relative;
}

.distributionSlideChain {
  background: #fafafa;
}

.distributionSlideChain .textHolder {
  width: 100%;
}

.testingSlideChain {
  background: #fafafa;
}

.testingSlideChain .textHolder {
  width: 100%;
}

.aboutSlideChain2 .slideContent,
.aboutSlideChain3 .slideContent {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.aboutSlideChain2 .imgHolder,
.aboutSlideChain3 .imgHolder {
  display: block;
  width: 100%;
  max-width: unset;
  margin: auto;
  margin-bottom: 30px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.aboutSlideChain2 .imgHolder img,
.aboutSlideChain3 .imgHolder img {
  margin: auto;
}

.aboutSlideChain2 .textHolder,
.aboutSlideChain3 .textHolder {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.newsPageHolder {
  background: #fff;
  padding: 60px 0;
}

.newsList {
  list-style: none;
}

.newsList .newsListItem {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #eee;
  padding: 45px 0;
}

.newsList .newsListItem:first-child {
  padding-top: 0;
}

.newsList .newsListItem.mainItem {
  width: 100%;
}

.newsList .newsListItem:hover .captionHolder {
  color: #1d1d1d;
}

.newsList .imgHolder {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 0;
  padding-top: 50%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.newsList .captionHolder {
  width: 100%;
  color: #505050;
  font-weight: 300;
}

.newsList .newsListItemWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.newsList .date {
  font-size: 12px;
}

.newsList .newsTitle {
  font-size: 28px;
  margin-bottom: 15px;
}

.newsListHolder .btnHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newsItem {
  color: #505050;
  margin-bottom: 60px;
}

.newsItem .inlineBlock {
  max-width: 100%;
}

.newsItem .date {
  font-size: 12px;
  font-weight: 300;
}

.newsItem h1 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 45px;
}

.newsItem h2 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 300;
}

.newsItem h3 {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
  margin-top: 15px;
}

.newsItem h4 {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 15px;
  margin-top: 15px;
}

.newsItem p {
  margin-bottom: 15px;
  margin-top: 15px;
}

.newsItem ul {
  padding-left: 30px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.newsItem .btnHolder {
  padding: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.newsItem .italic {
  font-style: italic;
}

.newsItem .bold {
  font-weight: bold;
}

.newsItem .imgGroupThree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.newsItem .imgGroupThree img {
  max-width: 30%;
}

.newsItem .imgGroupThree a {
  padding: 2px;
  display: block;
}

.newsItem .imgGroupThree a img {
  width: 100%;
  display: block;
  max-width: unset;
}

.newsItem .imgGroupWithText .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.newsItem .imgGroupWithText .text {
  width: 60%;
  padding-right: 30px;
}

.newsItem .imgGroupWithText .img {
  width: 40%;
}

.newsItem .imgGroupWithText img {
  display: block;
  max-width: 100%;
}

.newsItem .videoHolder {
  height: 480px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.newsItem .imgGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.newsItem .imgGroup img {
  max-width: 48%;
  display: block;
  margin-bottom: 15px;
}

.newsItem .imgGroup a {
  padding: 2px;
  display: block;
}

.newsItem .imgGroup a img {
  width: 100%;
  display: block;
  max-width: unset;
}

.newsItem .imgHolder {
  margin-top: 30px;
  margin-bottom: 30px;
}

.newsItem .imgHolder img {
  display: block;
}

.newsItem .imgHolder.fullWidthImg img {
  width: 100%;
}

.newsItem .imgHolder.centeredImg img {
  max-width: 100%;
  margin: auto;
}

.newsItem .imgCenter img {
  max-width: 100%;
  margin: auto;
  display: block;
}

.newsItem .teamSpaceHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -30px;
}

.newsItem .teamSpaceHolder .item {
  width: 50%;
  padding: 30px;
}

.newsItem .teamSpaceHolder .imgHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newsItem .teamSpaceHolder .imgHolder img {
  max-width: 320px;
}

.newsItem .logosList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 720px;
  margin: auto;
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newsItem .logosList.fullWidth {
  width: 100%;
  max-width: 100%;
}

.newsItem .logosList li {
  padding: 10px;
}

.newsItem .logosList.sixInRow li {
  width: 16.666%;
}

.newsItem .logosList.fiveInRow li {
  width: 20%;
}

.newsItem .logosList.fourInRow li {
  width: 25%;
}

.newsItem .logosList.threeInRow li {
  width: 33.333%;
}

.newsItem .logosList.twoInRow li {
  width: 50%;
}

.newsItem .logosList img {
  max-width: 100%;
  margin: auto;
}

.newsItem .owl-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  position: relative;
  padding: 0 35px;
}

.newsItem .owl-carousel img {
  display: block;
  margin-bottom: 0;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.newsItem .logoTableHolder {
  margin-bottom: 30px;
  margin-top: 30px;
}

.newsItem .logoTableHolder table {
  width: 100%;
}

.newsItem .logoTableHolder table tr td {
  width: 50%;
  vertical-align: middle;
}

.newsItem .logoTableHolder table tr td:first-child {
  width: 40%;
  text-align: center;
}

.newsItem .logoTableHolder table img {
  display: inline-block;
}

.newsItemHolder .backHolder {
  border-top: 1px solid #eee;
  padding: 30px 0;
}

.newsItemHolder .backHolder a {
  color: #c4c4c4;
}

.animation-element {
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: .2;
}

.animation-element.in-view {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.teamList {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: -15px;
}

.teamList .teamListItem {
  padding: 15px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.teamList .img {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

.teamList .caption {
  width: 100%;
  font-weight: 300;
  font-size: 12px;
  text-align: center;
}

.teamList .name {
  color: #74b360;
  font-weight: 600;
}

.teamList .socList {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.teamList .socList a {
  display: block;
  -webkit-transition: .2s;
  transition: .2s;
  color: #2d2d2d;
  font-size: 16px;
  opacity: .8;
}

.teamList .socList a:hover {
  opacity: 1;
}

.teamList .socList li + li {
  margin-left: 10px;
}

.newsItemsCarouselHolder {
  width: 100%;
  margin: auto;
}

.newsItemsCarouselHolder .item .content {
  height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.newsItemsCarouselHolder .newsItemPreview {
  text-decoration: none;
  color: #505050;
}

.newsItemsCarouselHolder .newsItemPreview .newsDate {
  font-size: 12px;
  font-weight: 300;
}

.newsItemsCarouselHolder .newsItemPreview .newsTitle {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.newsItemsCarouselHolder .newsItemPreview .newsItemText {
  color: #505050;
  font-size: 14px;
}

.newsItemsCarouselHolder .carouselControllersHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 15px;
}

.newsItemsCarouselHolder .carouselControllersHolder .linkHolder a {
  color: #505050;
  font-size: 14px;
}

.newsItemsCarouselHolder .carouselControllersHolder .controlsHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.newsItemsCarouselHolder .carouselControllersHolder .controlsHolder .carouselControl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  color: #505050;
  font-size: 16px;
  text-decoration: none;
}

.newsItemsCarouselHolder .carouselControllersHolder .controlsHolder .carouselControl + .carouselControl {
  margin-left: 15px;
}

.newsItemsCarouselHolder .carouselControllersHolder .controlsHolder .caption {
  font-size: 14px;
  color: #505050;
  margin-left: 30px;
}

.contactSlide {
  background: #fafafa;
}

td.control {
  background: url("http://next.datatables.net/examples/resources/details_open.png") no-repeat center center;
  cursor: pointer;
}

tr.shown td.control {
  background: url("http://next.datatables.net/examples/resources/details_close.png") no-repeat center center;
}

td.data {
  font-size: 9px;
}

.appBtn {
  display: block;
  width: 154px;
  height: 60px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.btnStore {
  background-image: url("/img/btnStore.png");
}

.btnPlay {
  background-image: url("/img/btnPlay.png");
}

.qrLandingMainSlide {
  background-image: url(/img/inslbg.png), linear-gradient(135deg, #74b360, #72c17b 49%, #74b360);
  background-size: cover;
  background-position: 50%;
  color: #fff;
  min-height: 100vh;
  padding: 60px 0 150px;
  position: relative;
}

.qrLandingMainSlide .content {
  width: 100%;
}

.qrLandingMainSlide .slideFooter {
  text-align: center;
  font-size: 12px;
}

.qrLandingMainSlide .slideFooter .small {
  font-size: 8px;
}

.qrLandingMainSlide .slideFooter .logoText {
  margin: auto;
  margin-bottom: 10px;
}

.qrLandingMainSlide .slideFooter p {
  margin-bottom: 0;
}

.qrLandingMainSlide .slideFooterHolder {
  position: absolute;
  width: 100%;
  bottom: 60px;
  left: 0;
}

.borderedList {
  list-style: none;
  border-left: 1px solid #60b39b;
  padding-left: 10px;
}

.borderedList li + li {
  margin-top: 10px;
}

.managementSlideChain .formHolder {
  position: relative;
  width: 75%;
  margin-top: 15px;
}

.managementSlideChain .formHolder .form-control {
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  border-radius: 23px;
  background-color: #ffffff;
  border: 0;
}

.managementSlideChain .formHolder .form-control::-webkit-input-placeholder {
  color: #c4c4c4;
}

.managementSlideChain .formHolder .form-control::-moz-placeholder {
  color: #c4c4c4;
}

.managementSlideChain .formHolder .form-control:-ms-input-placeholder {
  color: #c4c4c4;
}

.managementSlideChain .formHolder .form-control:-moz-placeholder {
  color: #c4c4c4;
}

.primaryOverlay {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("/img/logo-leaf.png"), linear-gradient(135deg, #74b360 0%, #72c17b 49%, #74b360 100%);
  background-size: cover;
}

.comingSoonHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding: 45px 0;
}

.comingSoonHolder .logoLgLeaf {
  margin: auto;
  margin-bottom: 25px;
}

.comingSoonHolder .textBigger {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.comingSoonHolder .tagLike {
  font-weight: 300;
}

.logoLgLeaf {
  display: block;
  width: 195px;
  height: 181px;
  background-image: url("/img/logo-leaf-full.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (min-width: 576px) {
  .pageHolder {
    padding: 30px 0;
  }

  .teamList .teamListItem {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .teamList .img {
    margin-bottom: 0;
    margin-right: 15px;
  }

  .teamList .caption {
    font-size: 14px;
    text-align: left;
    width: calc(100% - 115px);
  }

  .teamList .caption .role {
    font-size: 12px;
  }

  .teamList .socList {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .roadmapItem {
    padding: 30px 0;
  }

  .roadmapItem .headingIco {
    display: block;
  }

  .roadmapItem .caption {
    width: calc(100% - 93px);
  }

  .roadmapItem .tableHolder {
    border-left: 1px solid #fff;
    margin-left: 15px;
    padding-left: 30px;
  }

  .roadmapItem .tableTitle:before {
    display: block;
  }

  .roadmapItem .tableRow:before {
    display: block;
  }

  .roadmapItem .tableText:before {
    display: block;
  }
}

@media (min-width: 768px) {
  body.menuOpen {
    overflow-y: auto;
  }

  .visible-sm {
    display: none;
  }

  .hidden-sm {
    display: block;
  }

  .mainContainer {
    width: 720px;
  }

  .menuTrigger {
    display: none;
  }

  .main {
    padding-top: 103px;
  }

  .main.newsMain {
    padding-top: 59px;
  }

  .mainHeader {
    padding: 0;
  }

  .mainHeader .siteMenuLine {
    padding: 15px 0;
    background-color: #fafafa;
    border-bottom: 1px solid #eee;
  }

  .mainHeader .menuHolder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: static;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 50px);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    overflow-y: visible;
  }

  .mainHeader .menuHolder .dropdown-menu {
    position: absolute !important;
    float: left !important;
    padding: 10px 0 !important;
    -webkit-transform: translate3d(0, 34px, 0) !important;
            transform: translate3d(0, 34px, 0) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    left: auto !important;
    right: 0;
  }

  .mainHeader .menuHolder .dropdown-item {
    padding: 10px 15px;
  }

  .mainHeader .menuHolder .dropdown-item.hasBorderTop {
    margin-top: 10px;
    padding-top: 10px;
    position: relative;
  }

  .mainHeader .menuHolder .dropdown-item.hasBorderTop:before {
    content: "";
    display: block;
    height: 1px;
    width: calc(100% - 30px);
    position: absolute;
    top: -7px;
    left: 15px;
    background: #a6a6a6;
    opacity: .8;
  }

  .mainHeader .menu + .menu {
    border-top: 0;
  }

  .mainHeader .menu {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }

  .mainHeader .menu li + li {
    margin-top: 0;
    margin-left: 30px;
  }

  .mainHeader .menu a {
    font-size: 12px;
    line-height: 14px;
    color: #505050;
    opacity: .8;
  }

  .mainHeader .menu a:hover {
    opacity: 1;
  }

  .mainHeader .menu .bold {
    padding-left: 15px;
    border-left: 1px solid #505050;
  }

  .mainHeader .menu.loginMenu li + li {
    margin-left: 15px;
  }

  .mainHeader .menu.loginMenu a {
    color: #c4c4c4;
  }

  .mainHeader .menu.loginMenu a.bold {
    color: #505050;
  }

  .mainHeader .landNavLine {
    display: block;
  }

  .introSlide .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .introSlide .textHolder {
    width: 40%;
  }

  .introSlide .galleryHolder {
    width: 50%;
  }

  .introSlide .galleryCarousel {
    margin-bottom: 0;
  }

  .aboutSlideChain1:after {
    display: block;
  }

  .landingSlideContent {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .mainContainerLike {
    width: 720px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .locationSlide {
    border-bottom: 1px solid #eee;
    background: #fff;
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 100vh;
  }

  .locationSlide .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .locationSlide .landingSlideContent {
    padding-top: 0;
    padding-bottom: 0;
  }

  .locationSlide .mapHolder {
    width: 45%;
    height: 350px;
  }

  .locationSlide .landingSlideContent {
    width: calc(55% - 30px);
  }

  .hubSlide {
    background: #fff;
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 100vh;
  }

  .hubSlide .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .hubSlide .landingSlideContent {
    padding-top: 0;
    padding-bottom: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(55% - 30px);
  }

  .hubSlide .imgHolder {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 45%;
    height: 350px;
    background-image: url("/img/sl12_.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 100px;
  }

  .hubSlide .imgHolder img {
    display: none !important;
  }

  .landingSlideHeading {
    font-size: 30px;
  }

  .affordSlide:before {
    content: "";
    display: block;
    width: 60%;
    height: 100%;
    background-color: #fff;
    opacity: .94;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
  }

  .affordSlide .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .affordSlide .content {
    width: 50%;
  }

  .contactFormHolder .formBlock {
    margin-left: auto;
    margin-right: auto;
    width: 390px;
  }

  .contactFormHolder .contactForm {
    padding: 45px 30px;
    margin-left: 0;
    margin-right: 0;
  }

  .amenitiesList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .amenitiesList .amenitiesListItem {
    width: 45%;
  }

  .stdLandSlide .textHolder {
    width: 50%;
  }

  .stdLandSlide .textHolder.fullWidth {
    width: 100%;
  }

  .stdLandSlide .imgHolder {
    display: block;
  }

  .stdLandSlide .slideContent {
    padding: 120px 0;
  }

  .textHolder .text {
    font-size: 16px;
  }

  .roadmapSlideHome .textHolder {
    width: 50%;
  }

  .introSlide,
  .introSlideHome,
  .introSlideChain {
    min-height: calc(100vh - 104px);
  }

  .introSlideChain .slideContent:after {
    display: block;
  }

  .text {
    text-align: left;
  }

  .aboutSlideChain {
    background-image: url("/img/blocks.png");
    background-size: contain;
  }

  .phaseSchemeHolder .phaseScheme {
    padding: 45px;
  }

  .phaseSchemeHolder .scheme li {
    width: 80%;
  }

  .phaseSchemeHolder .scheme li:nth-child(even) {
    margin-left: 10%;
  }

  .phaseSchemeHolder .scheme .icoHolder {
    width: 96px;
    height: 96px;
    margin-right: 64px;
  }

  .phaseSchemeHolder .scheme .caption {
    width: calc(100% - 150px);
  }

  .footerMenuHolder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footerMenuHolder .footerMenu {
    width: 25%;
    text-align: left;
  }

  .mainFooter .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .mainFooter .wrapper .footerMenuHolder {
    width: 70%;
  }

  .mainFooter .wrapper .infoPart {
    width: 20%;
  }

  .mainFooter .socialList {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 15px;
  }

  .mainFooter .socialList.visXs {
    display: none;
  }

  .mainFooter .socialList.visLg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .mainFooter .copyright {
    text-align: left;
  }

  .mainFooter .copyright.visXs {
    display: none;
  }

  .mainFooter .copyright.visLg {
    display: block;
  }

  .mainFooter .logoText {
    margin: 0;
    margin-bottom: 15px;
  }

  .mainFooter .slogan {
    text-align: left;
    margin-bottom: 15px;
    padding-bottom: 0;
    border: 0;
  }

  .pressLine {
    display: block;
  }

  .aboutSlideChain2,
  .aboutSlideChain3 {
    border-top: 0;
  }

  .aboutSlideChain2 .slideContent,
  .aboutSlideChain3 .slideContent {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .aboutSlideChain2 .imgHolder,
  .aboutSlideChain3 .imgHolder {
    display: block;
    width: auto;
    max-width: calc(50% - 60px);
    margin: 0;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .aboutSlideChain2 .imgHolder img,
  .aboutSlideChain3 .imgHolder img {
    margin: 0;
  }

  .aboutSlideChain2 .textHolder,
  .aboutSlideChain3 .textHolder {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .newsItemsCarouselHolder {
    width: 600px;
  }

  .qrLandingMainSlide {
    padding: 90px 0 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .distributionSlideChain {
    background: #fafafa;
  }

  .distributionSlideChain .imgHolder {
    max-width: calc(40% - 60px);
  }

  .distributionSlideChain .textHolder {
    width: 60%;
  }

  .testingSlideChain .imgHolder {
    max-width: calc(40% - 60px);
  }

  .testingSlideChain .textHolder {
    width: 60%;
  }
}

@media (min-width: 992px) {
  body {
    font-size: 16px;
  }

  .mainContainer {
    width: 960px;
  }

  .mainContainerLike {
    width: 960px;
  }

  .pricingListHolder {
    background-image: url("/img/pricing.png");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
  }

  .pricingList {
    width: 50%;
  }

  .newsList .newsListItemWrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .newsList .imgHolder {
    width: 40%;
    padding-top: 30%;
    margin-bottom: 0;
  }

  .newsList .captionHolder {
    width: 50%;
  }

  .newsList .newsListItem {
    width: 80%;
    border-bottom: 0;
    padding: 45px 0;
    padding-bottom: 0;
  }

  .newsList .newsListItem.mainItem {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 45px;
  }

  .teamList .teamListItem {
    width: 33.333%;
  }

  .teamList .caption .role {
    font-size: 14px;
  }

  .newsListHolder .btnHolder {
    margin-top: 45px;
  }

  .introSlideHome .content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .introSlideHome .textHolder {
    width: 50%;
  }

  .introSlideHome .letterFormHolder {
    width: 40%;
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .mainContainer {
    width: 100%;
    max-width: 1140px;
  }

  .mainContainerLike {
    width: 1140px;
  }

  .hubSlide .imgHolder {
    height: 540px;
  }

  .affordSlide .landingSlideContent {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .contactSlide .landingSlideContent {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .roadmapItem {
    padding: 30px 60px;
  }
}

@-webkit-keyframes swal2-show {
  0% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }

  45% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }

  80% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes swal2-show {
  0% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }

  45% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }

  80% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes swal2-hide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes swal2-hide {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0;
  }
}

@-webkit-keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: .0625em;
    width: 0;
  }

  54% {
    top: 1.0625em;
    left: .125em;
    width: 0;
  }

  70% {
    top: 2.1875em;
    left: -.375em;
    width: 3.125em;
  }

  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }

  100% {
    top: 2.8125em;
    left: .875em;
    width: 1.5625em;
  }
}

@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: .0625em;
    width: 0;
  }

  54% {
    top: 1.0625em;
    left: .125em;
    width: 0;
  }

  70% {
    top: 2.1875em;
    left: -.375em;
    width: 3.125em;
  }

  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }

  100% {
    top: 2.8125em;
    left: .875em;
    width: 1.5625em;
  }
}

@-webkit-keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }

  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }

  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }

  100% {
    top: 2.375em;
    right: .5em;
    width: 2.9375em;
  }
}

@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }

  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }

  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }

  100% {
    top: 2.375em;
    right: .5em;
    width: 2.9375em;
  }
}

@-webkit-keyframes swal2-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  5% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  12% {
    -webkit-transform: rotate(-405deg);
            transform: rotate(-405deg);
  }

  100% {
    -webkit-transform: rotate(-405deg);
            transform: rotate(-405deg);
  }
}

@keyframes swal2-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  5% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  12% {
    -webkit-transform: rotate(-405deg);
            transform: rotate(-405deg);
  }

  100% {
    -webkit-transform: rotate(-405deg);
            transform: rotate(-405deg);
  }
}

@-webkit-keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }

  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }

  80% {
    margin-top: -.375em;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }

  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }

  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0;
  }

  80% {
    margin-top: -.375em;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }

  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes swal2-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
            transform: rotateX(100deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    opacity: 1;
  }
}

@keyframes swal2-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
            transform: rotateX(100deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
    opacity: 1;
  }
}

body.swal2-toast-shown .swal2-container {
  background-color: transparent;
}

body.swal2-toast-shown .swal2-container.swal2-shown {
  background-color: transparent;
}

body.swal2-toast-shown .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start,
body.swal2-toast-shown .swal2-container.swal2-top-left {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start,
body.swal2-toast-shown .swal2-container.swal2-center-left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start,
body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

body.swal2-toast-column .swal2-toast {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

body.swal2-toast-column .swal2-toast .swal2-actions {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  height: 2.2em;
  margin-top: .3125em;
}

body.swal2-toast-column .swal2-toast .swal2-loading {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body.swal2-toast-column .swal2-toast .swal2-input {
  height: 2em;
  margin: .3125em auto;
  font-size: 1em;
}

body.swal2-toast-column .swal2-toast .swal2-validation-message {
  font-size: 1em;
}

.swal2-popup.swal2-toast {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  padding: 0.625em;
  -webkit-box-shadow: 0 0 0.625em #d9d9d9;
          box-shadow: 0 0 0.625em #d9d9d9;
  overflow-y: hidden;
}

.swal2-popup.swal2-toast .swal2-header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.swal2-popup.swal2-toast .swal2-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 .6em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}

.swal2-popup.swal2-toast .swal2-close {
  position: initial;
  width: 0.8em;
  height: 0.8em;
  line-height: 0.8;
}

.swal2-popup.swal2-toast .swal2-content {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-icon {
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0;
}

.swal2-popup.swal2-toast .swal2-icon-text {
  font-size: 2em;
  font-weight: bold;
  line-height: 1em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
  top: .875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
  left: .3125em;
}

.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
  right: .3125em;
}

.swal2-popup.swal2-toast .swal2-actions {
  height: auto;
  margin: 0 .3125em;
}

.swal2-popup.swal2-toast .swal2-styled {
  margin: 0 .3125em;
  padding: .3125em .625em;
  font-size: 1em;
}

.swal2-popup.swal2-toast .swal2-styled:focus {
  -webkit-box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em rgba(50, 100, 150, 0.4);
          box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em rgba(50, 100, 150, 0.4);
}

.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'] {
  position: absolute;
  width: 2em;
  height: 2.8125em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'][class$='left'] {
  top: -.25em;
  left: -.9375em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 2em 2em;
          transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}

.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-circular-line'][class$='right'] {
  top: -.25em;
  left: .9375em;
  -webkit-transform-origin: 0 2em;
          transform-origin: 0 2em;
  border-radius: 0 4em 4em 0;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: .4375em;
  width: .4375em;
  height: 2.6875em;
}

.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'] {
  height: .3125em;
}

.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'][class$='tip'] {
  top: 1.125em;
  left: .1875em;
  width: .75em;
}

.swal2-popup.swal2-toast .swal2-success [class^='swal2-success-line'][class$='long'] {
  top: .9375em;
  right: .1875em;
  width: 1.375em;
}

.swal2-popup.swal2-toast.swal2-show {
  -webkit-animation: showSweetToast .5s;
          animation: showSweetToast .5s;
}

.swal2-popup.swal2-toast.swal2-hide {
  -webkit-animation: hideSweetToast .2s forwards;
          animation: hideSweetToast .2s forwards;
}

.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip {
  -webkit-animation: animate-toast-success-tip .75s;
          animation: animate-toast-success-tip .75s;
}

.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long {
  -webkit-animation: animate-toast-success-long .75s;
          animation: animate-toast-success-long .75s;
}

@-webkit-keyframes showSweetToast {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
            transform: translateY(-0.625em) rotateZ(2deg);
    opacity: 0;
  }

  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
            transform: translateY(0) rotateZ(-2deg);
    opacity: .5;
  }

  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
            transform: translateY(0.3125em) rotateZ(2deg);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateY(0) rotateZ(0);
            transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
}

@keyframes showSweetToast {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
            transform: translateY(-0.625em) rotateZ(2deg);
    opacity: 0;
  }

  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
            transform: translateY(0) rotateZ(-2deg);
    opacity: .5;
  }

  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
            transform: translateY(0.3125em) rotateZ(2deg);
    opacity: .7;
  }

  100% {
    -webkit-transform: translateY(0) rotateZ(0);
            transform: translateY(0) rotateZ(0);
    opacity: 1;
  }
}

@-webkit-keyframes hideSweetToast {
  0% {
    opacity: 1;
  }

  33% {
    opacity: .5;
  }

  100% {
    -webkit-transform: rotateZ(1deg);
            transform: rotateZ(1deg);
    opacity: 0;
  }
}

@keyframes hideSweetToast {
  0% {
    opacity: 1;
  }

  33% {
    opacity: .5;
  }

  100% {
    -webkit-transform: rotateZ(1deg);
            transform: rotateZ(1deg);
    opacity: 0;
  }
}

@-webkit-keyframes animate-toast-success-tip {
  0% {
    top: .5625em;
    left: .0625em;
    width: 0;
  }

  54% {
    top: .125em;
    left: .125em;
    width: 0;
  }

  70% {
    top: .625em;
    left: -.25em;
    width: 1.625em;
  }

  84% {
    top: 1.0625em;
    left: .75em;
    width: .5em;
  }

  100% {
    top: 1.125em;
    left: .1875em;
    width: .75em;
  }
}

@keyframes animate-toast-success-tip {
  0% {
    top: .5625em;
    left: .0625em;
    width: 0;
  }

  54% {
    top: .125em;
    left: .125em;
    width: 0;
  }

  70% {
    top: .625em;
    left: -.25em;
    width: 1.625em;
  }

  84% {
    top: 1.0625em;
    left: .75em;
    width: .5em;
  }

  100% {
    top: 1.125em;
    left: .1875em;
    width: .75em;
  }
}

@-webkit-keyframes animate-toast-success-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }

  65% {
    top: 1.25em;
    right: .9375em;
    width: 0;
  }

  84% {
    top: .9375em;
    right: 0;
    width: 1.125em;
  }

  100% {
    top: .9375em;
    right: .1875em;
    width: 1.375em;
  }
}

@keyframes animate-toast-success-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }

  65% {
    top: 1.25em;
    right: .9375em;
    width: 0;
  }

  84% {
    top: .9375em;
    right: 0;
    width: 1.125em;
  }

  100% {
    top: .9375em;
    right: .1875em;
    width: 1.375em;
  }
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}

body.swal2-height-auto {
  height: auto !important;
}

body.swal2-no-backdrop .swal2-shown {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  background-color: transparent;
}

body.swal2-no-backdrop .swal2-shown > .swal2-modal {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

body.swal2-no-backdrop .swal2-shown.swal2-top {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-top-start,
body.swal2-no-backdrop .swal2-shown.swal2-top-left {
  top: 0;
  left: 0;
}

body.swal2-no-backdrop .swal2-shown.swal2-top-end,
body.swal2-no-backdrop .swal2-shown.swal2-top-right {
  top: 0;
  right: 0;
}

body.swal2-no-backdrop .swal2-shown.swal2-center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-center-start,
body.swal2-no-backdrop .swal2-shown.swal2-center-left {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-center-end,
body.swal2-no-backdrop .swal2-shown.swal2-center-right {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-bottom {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

body.swal2-no-backdrop .swal2-shown.swal2-bottom-start,
body.swal2-no-backdrop .swal2-shown.swal2-bottom-left {
  bottom: 0;
  left: 0;
}

body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,
body.swal2-no-backdrop .swal2-shown.swal2-bottom-right {
  right: 0;
  bottom: 0;
}

.swal2-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  background-color: transparent;
  z-index: 1060;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.swal2-container.swal2-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swal2-container.swal2-top-start,
.swal2-container.swal2-top-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.swal2-container.swal2-top-end,
.swal2-container.swal2-top-right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.swal2-container.swal2-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swal2-container.swal2-center-start,
.swal2-container.swal2-center-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.swal2-container.swal2-center-end,
.swal2-container.swal2-center-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.swal2-container.swal2-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.swal2-container.swal2-bottom-start,
.swal2-container.swal2-bottom-left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.swal2-container.swal2-bottom-end,
.swal2-container.swal2-bottom-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.swal2-container.swal2-grow-fullscreen > .swal2-modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swal2-container.swal2-grow-row > .swal2-modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swal2-container.swal2-grow-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swal2-container.swal2-grow-column.swal2-top,
.swal2-container.swal2-grow-column.swal2-center,
.swal2-container.swal2-grow-column.swal2-bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swal2-container.swal2-grow-column.swal2-top-start,
.swal2-container.swal2-grow-column.swal2-center-start,
.swal2-container.swal2-grow-column.swal2-bottom-start,
.swal2-container.swal2-grow-column.swal2-top-left,
.swal2-container.swal2-grow-column.swal2-center-left,
.swal2-container.swal2-grow-column.swal2-bottom-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swal2-container.swal2-grow-column.swal2-top-end,
.swal2-container.swal2-grow-column.swal2-center-end,
.swal2-container.swal2-grow-column.swal2-bottom-end,
.swal2-container.swal2-grow-column.swal2-top-right,
.swal2-container.swal2-grow-column.swal2-center-right,
.swal2-container.swal2-grow-column.swal2-bottom-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.swal2-container.swal2-grow-column > .swal2-modal {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
  margin: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-container .swal2-modal {
    margin: 0 !important;
  }
}

.swal2-container.swal2-fade {
  -webkit-transition: background-color .1s;
  transition: background-color .1s;
}

.swal2-container.swal2-shown {
  background-color: rgba(0, 0, 0, 0.4);
}

.swal2-popup {
  display: none;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32em;
  max-width: 100%;
  padding: 1.25em;
  border-radius: 0.3125em;
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.swal2-popup:focus {
  outline: none;
}

.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

.swal2-popup .swal2-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swal2-popup .swal2-title {
  display: block;
  position: relative;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding: 0;
  color: #595959;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.swal2-popup .swal2-actions {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.25em auto 0;
  z-index: 1;
}

.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: .4;
}

.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

.swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
  width: 2.5em;
  height: 2.5em;
  margin: .46875em;
  padding: 0;
  border: .25em solid transparent;
  border-radius: 100%;
  border-color: transparent;
  background-color: transparent !important;
  color: transparent;
  cursor: default;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
          animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
  margin-right: 30px;
  margin-left: 30px;
}

.swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  border: 3px solid #999999;
  border-radius: 50%;
  border-right-color: transparent;
  -webkit-box-shadow: 1px 1px 1px #fff;
          box-shadow: 1px 1px 1px #fff;
  content: '';
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
          animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
}

.swal2-popup .swal2-styled {
  margin: .3125em;
  padding: .625em 2em;
  font-weight: 500;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.swal2-popup .swal2-styled:not([disabled]) {
  cursor: pointer;
}

.swal2-popup .swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #3085d6;
  color: #fff;
  font-size: 1.0625em;
}

.swal2-popup .swal2-styled.swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #aaa;
  color: #fff;
  font-size: 1.0625em;
}

.swal2-popup .swal2-styled:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4);
          box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4);
}

.swal2-popup .swal2-styled::-moz-focus-inner {
  border: 0;
}

.swal2-popup .swal2-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.25em 0 0;
  padding: 1em 0 0;
  border-top: 1px solid #eee;
  color: #545454;
  font-size: 1em;
}

.swal2-popup .swal2-image {
  max-width: 100%;
  margin: 1.25em auto;
}

.swal2-popup .swal2-close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.2em;
  height: 1.2em;
  padding: 0;
  -webkit-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
  border: none;
  border-radius: 0;
  outline: initial;
  background: transparent;
  color: #cccccc;
  font-family: serif;
  font-size: 2.5em;
  line-height: 1.2;
  cursor: pointer;
  overflow: hidden;
}

.swal2-popup .swal2-close:hover {
  -webkit-transform: none;
          transform: none;
  color: #f27474;
}

.swal2-popup > .swal2-input,
.swal2-popup > .swal2-file,
.swal2-popup > .swal2-textarea,
.swal2-popup > .swal2-select,
.swal2-popup > .swal2-radio,
.swal2-popup > .swal2-checkbox {
  display: none;
}

.swal2-popup .swal2-content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  color: #545454;
  font-size: 1.125em;
  font-weight: 300;
  line-height: normal;
  z-index: 1;
  word-wrap: break-word;
}

.swal2-popup #swal2-content {
  text-align: center;
}

.swal2-popup .swal2-input,
.swal2-popup .swal2-file,
.swal2-popup .swal2-textarea,
.swal2-popup .swal2-select,
.swal2-popup .swal2-radio,
.swal2-popup .swal2-checkbox {
  margin: 1em auto;
}

.swal2-popup .swal2-input,
.swal2-popup .swal2-file,
.swal2-popup .swal2-textarea {
  width: 100%;
  -webkit-transition: border-color .3s, -webkit-box-shadow .3s;
  transition: border-color .3s, -webkit-box-shadow .3s;
  transition: border-color .3s, box-shadow .3s;
  transition: border-color .3s, box-shadow .3s, -webkit-box-shadow .3s;
  border: 1px solid #d9d9d9;
  border-radius: 0.1875em;
  font-size: 1.125em;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.swal2-popup .swal2-input.swal2-inputerror,
.swal2-popup .swal2-file.swal2-inputerror,
.swal2-popup .swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  -webkit-box-shadow: 0 0 2px #f27474 !important;
          box-shadow: 0 0 2px #f27474 !important;
}

.swal2-popup .swal2-input:focus,
.swal2-popup .swal2-file:focus,
.swal2-popup .swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: none;
  -webkit-box-shadow: 0 0 3px #c4e6f5;
          box-shadow: 0 0 3px #c4e6f5;
}

.swal2-popup .swal2-input::-webkit-input-placeholder,
.swal2-popup .swal2-file::-webkit-input-placeholder,
.swal2-popup .swal2-textarea::-webkit-input-placeholder {
  color: #cccccc;
}

.swal2-popup .swal2-input::-ms-input-placeholder,
.swal2-popup .swal2-file::-ms-input-placeholder,
.swal2-popup .swal2-textarea::-ms-input-placeholder {
  color: #cccccc;
}

.swal2-popup .swal2-input::placeholder,
.swal2-popup .swal2-file::placeholder,
.swal2-popup .swal2-textarea::placeholder {
  color: #cccccc;
}

.swal2-popup .swal2-range input {
  width: 80%;
}

.swal2-popup .swal2-range output {
  width: 20%;
  font-weight: 600;
  text-align: center;
}

.swal2-popup .swal2-range input,
.swal2-popup .swal2-range output {
  height: 2.625em;
  margin: 1em auto;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

.swal2-popup .swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}

.swal2-popup .swal2-input[type='number'] {
  max-width: 10em;
}

.swal2-popup .swal2-file {
  font-size: 1.125em;
}

.swal2-popup .swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}

.swal2-popup .swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: .375em .625em;
  color: #545454;
  font-size: 1.125em;
}

.swal2-popup .swal2-radio,
.swal2-popup .swal2-checkbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swal2-popup .swal2-radio label,
.swal2-popup .swal2-checkbox label {
  margin: 0 .6em;
  font-size: 1.125em;
}

.swal2-popup .swal2-radio input,
.swal2-popup .swal2-checkbox input {
  margin: 0 .4em;
}

.swal2-popup .swal2-validation-message {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.625em;
  background: #f0f0f0;
  color: #666666;
  font-size: 1em;
  font-weight: 300;
  overflow: hidden;
}

.swal2-popup .swal2-validation-message::before {
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 .625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  content: '!';
  zoom: normal;
}

@supports (-ms-accelerator: true) {
  .swal2-range input {
    width: 100% !important;
  }

  .swal2-range output {
    display: none;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .swal2-range input {
    width: 100% !important;
  }

  .swal2-range output {
    display: none;
  }
}

@-moz-document url-prefix()  {
  .swal2-close:focus {
    outline: 2px solid rgba(50, 100, 150, 0.4);
  }
}

.swal2-icon {
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 5em;
  height: 5em;
  margin: 1.25em auto 1.875em;
  border: .25em solid transparent;
  border-radius: 50%;
  line-height: 5em;
  cursor: default;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  zoom: normal;
}

.swal2-icon-text {
  font-size: 3.75em;
}

.swal2-icon.swal2-error {
  border-color: #f27474;
}

.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: .3125em;
  border-radius: .125em;
  background-color: #f27474;
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='left'] {
  left: 1.0625em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.swal2-icon.swal2-error [class^='swal2-x-mark-line'][class$='right'] {
  right: 1em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.swal2-icon.swal2-warning {
  border-color: #facea8;
  color: #f8bb86;
}

.swal2-icon.swal2-info {
  border-color: #9de0f6;
  color: #3fc3ee;
}

.swal2-icon.swal2-question {
  border-color: #c9dae1;
  color: #87adbd;
}

.swal2-icon.swal2-success {
  border-color: #a5dc86;
}

.swal2-icon.swal2-success [class^='swal2-success-circular-line'] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 50%;
}

.swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='left'] {
  top: -.4375em;
  left: -2.0635em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 3.75em 3.75em;
          transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}

.swal2-icon.swal2-success [class^='swal2-success-circular-line'][class$='right'] {
  top: -.6875em;
  left: 1.875em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 0 3.75em;
          transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}

.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  top: -.25em;
  left: -.25em;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
  z-index: 2;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  top: .5em;
  left: 1.625em;
  width: .4375em;
  height: 5.625em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: 1;
}

.swal2-icon.swal2-success [class^='swal2-success-line'] {
  display: block;
  position: absolute;
  height: .3125em;
  border-radius: .125em;
  background-color: #a5dc86;
  z-index: 2;
}

.swal2-icon.swal2-success [class^='swal2-success-line'][class$='tip'] {
  top: 2.875em;
  left: .875em;
  width: 1.5625em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^='swal2-success-line'][class$='long'] {
  top: 2.375em;
  right: .5em;
  width: 2.9375em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.swal2-progresssteps {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 1.25em;
  padding: 0;
  font-weight: 600;
}

.swal2-progresssteps li {
  display: inline-block;
  position: relative;
}

.swal2-progresssteps .swal2-progresscircle {
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #3085d6;
  color: #fff;
  line-height: 2em;
  text-align: center;
  z-index: 20;
}

.swal2-progresssteps .swal2-progresscircle:first-child {
  margin-left: 0;
}

.swal2-progresssteps .swal2-progresscircle:last-child {
  margin-right: 0;
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
  background: #3085d6;
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle {
  background: #add8e6;
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
  background: #add8e6;
}

.swal2-progresssteps .swal2-progressline {
  width: 2.5em;
  height: .4em;
  margin: 0 -1px;
  background: #3085d6;
  z-index: 10;
}

[class^='swal2'] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  -webkit-animation: swal2-show 0.3s;
          animation: swal2-show 0.3s;
}

.swal2-show.swal2-noanimation {
  -webkit-animation: none;
          animation: none;
}

.swal2-hide {
  -webkit-animation: swal2-hide 0.15s forwards;
          animation: swal2-hide 0.15s forwards;
}

.swal2-hide.swal2-noanimation {
  -webkit-animation: none;
          animation: none;
}

.swal2-rtl .swal2-close {
  right: auto;
  left: 0;
}

.swal2-animate-success-icon .swal2-success-line-tip {
  -webkit-animation: swal2-animate-success-line-tip 0.75s;
          animation: swal2-animate-success-line-tip 0.75s;
}

.swal2-animate-success-icon .swal2-success-line-long {
  -webkit-animation: swal2-animate-success-line-long 0.75s;
          animation: swal2-animate-success-line-long 0.75s;
}

.swal2-animate-success-icon .swal2-success-circular-line-right {
  -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
          animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-animate-error-icon {
  -webkit-animation: swal2-animate-error-icon 0.5s;
          animation: swal2-animate-error-icon 0.5s;
}

.swal2-animate-error-icon .swal2-x-mark {
  -webkit-animation: swal2-animate-error-x-mark 0.5s;
          animation: swal2-animate-error-x-mark 0.5s;
}

@-webkit-keyframes swal2-rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swal2-rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden='true'] {
    display: none;
  }

  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
    position: initial !important;
  }
}

