@charset "UTF-8";
header {
  width: 100%;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
}

header .header-top {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
}

header .header-bottom {
  width: 100%;
  top: 0;
  position: relative;
}

header .logo {
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

header .logo img {
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

header.scrolling {
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

header.scrolling .header-bottom {
  position: fixed;
  z-index: 5;
  background: #ffffff;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
  -webkit-box-shadow: 0px 0px 9px 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 9px 3px rgba(0, 0, 0, 0.15);
}

header.scrolling .header-bottom nav a {
  color: #7a7a7a;
}

header.scrolling .header-bottom nav a.pricing {
  color: #ffffff !important;
}

header.scrolling .header-bottom nav a.active {
  color: #53ABA3;
}

header.scrolling .header-bottom nav a.active:after {
  background: #53ABA3;
}

header.scrolling .header-bottom nav a:hover:after {
  width: 100%;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

header.scrolling .logo {
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

header.scrolling .logo img {
  height: 55px !important;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

header .header-inner {
  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: 15px 15px;
}

header .header-inner .mobile-menu-trigger {
  font-size: 28px;
  color: #000000;
}

header .header-inner nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header-inner nav a {
  display: block;
  margin: 0 7px;
  padding: 0 3px;
  color: #ffffff;
  position: relative;
}

header .header-inner nav a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  height: 2px;
  width: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #ffffff;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

header .header-inner nav a.pricing {
  background: #58d08f;
  padding: 7px 15px;
  border-radius: 3px;
}

header .header-inner nav a.pricing:after {
  display: none;
}

header .header-inner nav a.active {
  font-weight: 600;
  color: #ffffff;
}

header .header-inner nav a.active:after {
  width: 100%;
}

header .header-inner nav a:hover:after {
  width: 100%;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

footer .footer-top {
  background: #028878;
  padding: 30px 0;
  color: #ffffff;
  font-size: 15px;
}

footer .footer-top i {
  color: #ffffff !important;
}

footer .footer-top .icon-text {
  margin-bottom: 20px;
  font-size: 18px;
}

footer .footer-top p,
footer .footer-top span,
footer .footer-top li {
  opacity: 0.8;
}

footer .footer-top a {
  color: #ffffff !important;
  margin: 0;
}

footer .footer-top a:after {
  background: #ffffff !important;
}

footer .footer-bottom {
  text-align: center;
  background: #026f62;
  padding: 15px 0 10px;
  font-size: 12px;
  color: #ffffff;
}

footer .footer-bottom a {
  font-weight: bold;
  color: #ffffff !important;
}

footer h3 {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  footer h3 {
    margin-top: 20px;
  }
}

footer nav ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer nav ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  margin-bottom: 10px;
}

footer nav ul li a {
  display: block;
  padding: 3px 0;
  color: #ffffff !important;
}

footer nav ul li a:after {
  background: #ffffff !important;
}

.field-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.field-wrapper label {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 11px;
  color: #848484;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  opacity: 0;
  visibility: hidden;
}

.field-wrapper label.on {
  color: #4249b3;
}

.field-wrapper label.show {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  opacity: 1;
  visibility: visible;
}

.form-control {
  font-size: 14px;
  padding: 0 15px 0;
  height: 50px;
  border: 1px solid #ced4da;
  border-radius: 3px;
}

.field-wrapper label.show + input {
  padding-top: 20px;
}

.field-wrapper textarea.form-control {
  padding-top: 20px;
  min-height: 100px !important;
}

.field-wrapper label.show + select {
  padding-top: 15px;
}

.field-wrapper .watermark {
  color: #aaa;
}

.btn {
  font-weight: bold;
  text-transform: uppercase;
  padding: 12px 24px;
  line-height: 1;
}

.btn.btn-primary {
  background: #53ABA3;
  border-color: #53ABA3;
}

.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #428982;
  border-color: #428982;
}

.hero-slider-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero-slider-wrap {
    height: 500px;
  }
}

.hero-slider-wrap:hover .hero-arrows button {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.hero-slider-wrap .hero-slider {
  height: 100vh;
}

.hero-slider-wrap .hero-slider img {
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-slider-wrap .hero-slider__item {
  position: relative;
  height: 100vh;
}

.hero-slider-wrap .hero-slider__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: -webkit-calc(100vh - 87px);
  min-height: calc(100vh - 87px);
}

.hero-slider-wrap .hero-slider__item.slick-active .slider-text__inner {
  opacity: 1;
  -webkit-transition: all ease-out 1.5s;
  transition: all ease-out 1.5s;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.hero-slider-wrap .hero-slider__item .slider-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}

@media (max-width: 768px) {
  .hero-slider-wrap .hero-slider__item .slider-text {
    padding: 0 15px;
  }
}

.hero-slider-wrap .hero-slider__item .slider-text__inner {
  color: #ffffff;
  font-weight: 400;
  font-size: 50px;
  max-width: 780px;
  line-height: 1.5;
  -webkit-transition: all ease-in 1.5s;
  transition: all ease-in 1.5s;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
}

@media (max-width: 768px) {
  .hero-slider-wrap .hero-slider__item .slider-text__inner {
    font-size: 30px;
    line-height: 1.5;
  }
}

.hero-arrows {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: -webkit-calc(100% - 50px);
  width: calc(100% - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 25px;
}

.hero-arrows button {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 50px;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 100%;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
  outline: none;
  opacity: 0;
}

.hero-arrows button.hero-left {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}

.hero-arrows button.hero-right {
  -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
          transform: translateX(20px);
}

.hero-arrows button:hover {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

.testimonial-item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.testimonial-item__inner {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px #0000001C;
          box-shadow: 0px 0px 20px #0000001C;
  padding: 20px;
  margin: 20px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  border-radius: 5px;
}

.testimonial-item .rating {
  color: #FACB30;
}

.testimonial-item strong {
  color: #000000;
  display: block;
  text-transform: uppercase;
  line-height: 1;
}

.testimonial-item small {
  color: #75bcb6;
}

.testimonials {
  min-height: 528px;
  background: center center url("../media/testimonials.jpg") no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.testimonials .slick-dots li.slick-active button:before {
  color: #ffffff;
}

.testimonials .slick-dots li button:before {
  color: #ffffff;
}

.contact-us {
  padding: 40px 0;
  position: relative;
}

.contact-us__info {
  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;
  padding: 20px;
  height: 100%;
  background: url(../media/contact-us-bg.jpg) center center no-repeat;
  background-size: cover;
}

.contact-us:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  width: 180px;
  opacity: 0.5;
  z-index: -1;
  background: left center url("../media/dr-bg.png") no-repeat;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../media/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "remixicon";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "";
}

[dir="rtl"] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "";
}

[dir="rtl"] .slick-next:before {
  content: "";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  font-family: "remixicon";
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #53ABA3;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #53ABA3;
  opacity: 0.75;
  content: "";
}

html,
body {
  width: 100%;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  color: #7a7a7a;
  padding: 0;
  margin: 0;
}

#ftco-loader {
  position: fixed;
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
  z-index: 1000;
}

#ftco-loader.fullscreen {
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#ftco-loader.show {
  -webkit-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  transition: opacity 0.4s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

#ftco-loader .circular {
  -webkit-animation: loader-rotate 2s linear infinite;
  animation: loader-rotate 2s linear infinite;
  position: absolute;
  left: -webkit-calc(50% - 24px);
  left: calc(50% - 24px);
  top: -webkit-calc(50% - 24px);
  top: calc(50% - 24px);
  display: block;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

#ftco-loader .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: loader-dash 1.5s ease-in-out infinite;
  animation: loader-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}

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

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

@-webkit-keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px;
  }
}

@keyframes loader-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -136px;
  }
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a:link, a:active {
  color: #53ABA3;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

a:hover, a:focus {
  text-decoration: none;
  color: #028878;
  -webkit-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}

img {
  max-width: 100%;
}

.icon-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.icon-text--large i {
  font-size: 30px !important;
}

.icon-text--large small {
  display: block;
  margin-bottom: 0px;
  font-weight: bold;
}

.icon-text--white {
  color: #ffffff !important;
}

.icon-text--white i {
  color: #ffffff !important;
}

.icon-text--white a {
  color: #ffffff !important;
}

.icon-text i {
  display: block;
  color: #53ABA3;
  font-size: 18px;
  margin-right: 10px;
}

.icon-text a {
  color: #7a7a7a;
  text-decoration: none;
}

.icon-text a:hover {
  color: #53ABA3;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(69, 93, 98, 0.6);
}

.curve-bottom, .curve-top {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
  z-index: 2;
}

.curve-bottom img, .curve-top img {
  width: 100%;
}

.curve-top {
  bottom: auto;
  top: -1px;
}

.curve-top img {
  width: 100%;
}

.side-by-side {
  padding: 40px 0;
  position: relative;
  background: url(../media/line-bg.jpg) center center no-repeat;
  background-size: cover;
}

.our-services h2 {
  font-size: 24px;
}

.our-services .service-img {
  width: 100%;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #53ABA3;
  border-color: #53ABA3;
}

#myTable td:nth-child(4) {
  text-align: right;
}

#myTable td:nth-child(5) {
  text-align: center;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #53ABA3;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

div.dataTables_wrapper div.dataTables_filter input {
  min-width: 300px;
}

#myTable_wrapper .form-control {
  height: 40px !important;
}

h2 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 35px;
  color: #404040;
}

h2.white {
  color: #ffffff;
}

h2.white small {
  color: #ffffff;
}

h2 small {
  color: #53ABA3;
  font-weight: normal;
  display: block;
  margin-top: 5px;
  text-transform: capitalize;
  font-size: 20px;
}

.green-icon {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#53aba3), to(#15d675)) 0% 0% no-repeat padding-box;
  background: transparent -webkit-linear-gradient(top, #53aba3 0%, #15d675 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #53aba3 0%, #15d675 100%) 0% 0% no-repeat padding-box;
  margin-right: 15px;
}

.green-icon i {
  color: #ffffff;
  font-size: 28px;
}

h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #333333;
}

ul.bullet {
  margin: 0;
  list-style-type: none;
  padding: 0;
}

ul.bullet li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
}

ul.bullet li:before {
  content: "\F102";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  color: #028878;
  margin-right: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.top-z {
  z-index: 3;
  position: relative;
}

.shadowed {
  -webkit-box-shadow: 0px 0px 20px #00000021;
          box-shadow: 0px 0px 20px #00000021;
}

.button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  letter-spacing: 1.2px;
  z-index: 1;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

.button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  border-radius: 100%;
  -webkit-box-shadow: 0px 5px 10px #0000001a;
          box-shadow: 0px 5px 10px #0000001a;
}

.button:hover {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

.button:hover:before {
  width: 400px;
  height: 400px;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

.button--secondary {
  background: #53ABA3;
  color: #ffffff;
  z-index: 1;
}

.button--secondary:before {
  background: #53ABA3;
  z-index: -1;
}

.button--secondary:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
  z-index: 1;
}

.button--secondary:hover:before {
  background: #3a7772;
}

.button--secondary:active {
  color: #ffffff;
}

.button--secondary:active:before {
  background: #3a7772;
}

.button--gradient {
  background: transparent -webkit-linear-gradient(182deg, #58d08f 0%, #53aba3 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(268deg, #58d08f 0%, #53aba3 100%) 0% 0% no-repeat padding-box;
  color: #ffffff;
  z-index: 1;
}

.button--primary {
  background: #028878;
  color: #ffffff;
  z-index: 1;
}

.button--primary:before {
  background: #028878;
  z-index: -1;
}

.button--primary:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
  z-index: 1;
}

.button--primary:hover:before {
  background: #013d35;
}

.button--primary:active {
  color: #ffffff;
}

.button--primary:active:before {
  background: #013d35;
}

a.fancy, footer nav ul li a {
  display: inline-block;
  color: #53ABA3;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
  position: relative;
  margin-bottom: 7px;
}

a.fancy:after, footer nav ul li a:after {
  background: #53ABA3;
}

a.fancy:hover, footer nav ul li a:hover, a.fancy:active, footer nav ul li a:active {
  color: #53ABA3;
  text-decoration: none;
}

a.fancy:after, footer nav ul li a:after {
  content: "";
  width: 0;
  position: absolute;
  bottom: -2px;
  height: 2px;
  border-radius: 5px;
  background: #53ABA3;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

a.fancy:hover, footer nav ul li a:hover {
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}

a.fancy:hover:after, footer nav ul li a:hover:after {
  width: 100%;
}

a.fancy.default, footer nav ul li a.default {
  color: #53ABA3;
}

ul.clear {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul.clear li {
  margin: 0 0 10px;
}

.sub-header-block {
  height: 420px;
  overflow: hidden;
  width: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  position: relative;
  background-image: url(../media/slider-1.jpg);
}

.sub-header-block--contact {
  background-image: url(../media/contact-sub-hero.jpg);
}

.tab-select nav {
  border: none !important;
}

.tab-select nav div.nav {
  border: none !important;
}

.tab-select nav div.nav a {
  border: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  padding: 15px 20px;
  -webkit-transition: all ease-in 0.1s;
  transition: all ease-in 0.1s;
  width: 100%;
}

.tab-select nav div.nav a.active {
  -webkit-transition: all ease-in 0.1s;
  transition: all ease-in 0.1s;
  background: #53ABA3;
}

.tab-select nav div.nav a.active:after {
  content: "";
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-top-width: 25px;
  border-bottom-width: 25px;
  border-right: 25px solid #ffffff;
  position: absolute;
  right: 0;
}

.tab-select nav div.nav a.active .icon,
.tab-select nav div.nav a.active h3,
.tab-select nav div.nav a.active p {
  color: #ffffff;
}

.tab-select nav div.nav a .icon {
  font-size: 30px;
  display: block;
  margin-right: 20px;
  width: 50px;
  color: #53ABA3;
}

.tab-select nav div.nav a h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 3px;
  color: #333333;
}

.tab-select nav div.nav a p {
  margin: 0;
  font-size: 14px;
  color: #A5A5A5;
}

.float-img img {
  margin: 0 0 20px;
  border-radius: 3px;
  width: 100%;
}

@media (min-width: 768px) {
  .float-img img {
    float: left;
    margin: 0 20px 20px 0;
    max-width: 260px;
    width: auto;
  }
}

h1 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 60px;
  margin: 80px 0 0;
  color: #ffffff;
}

.white-text {
  color: #ffffff !important;
}

.map {
  width: 100%;
  border: 5px solid #c8c8c8;
}

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