@charset "UTF-8";
html,
body {
  -webkit-overflow-scrolling: touch;
}

html {
  font-size: 10px;
  line-height: 1.6rem;
  scroll-behavior: smooth;
}

body {
  color: white;
  background: #15161b;
  width: 100vw;
  font-size: 1.6rem;
  line-height: 2.2rem;
  overflow-x: hidden;
}
body:after {
  background-image: url("../assets/img/noise.jpg");
  content: "";
  position: fixed;
  height: 300%;
  width: 300%;
  top: -120%;
  left: -50%;
  opacity: 0.5;
  animation: grain 8s steps(10) infinite;
  z-index: -1;
}

hr {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 50px 0px 100px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.bg {
  background: #282a34;
}

.alt, .teal {
  background: #00cc9b !important;
}

.text-teal {
  color: #00cc9b !important;
  fill: #00cc9b !important;
}

.alt2 {
  background: #4baffd;
}

.alt3 {
  background: #eaa562;
}

.water {
  background: #282a34;
}

.land {
  background: #62fbc0;
}

.green {
  background: #00cc9b !important;
}

.white {
  background: #fff;
}

.black {
  background: #282a34 !important;
}

.text-dark-green {
  color: #16a06b;
  opacity: 0.5;
}

.text-green {
  fill: #4ee7ac !important;
  color: #4ee7ac !important;
}

.text-bg {
  fill: #282a34 !important;
  color: #282a34 !important;
}

.underscore {
  position: relative;
  background-color: #000;
  margin-top: 40px;
  margin-bottom: 40px;
}

.underscore.thick {
  width: 65px;
  height: 10px;
}

.footer-links {
  line-height: 32px;
}

.footer-links a span {
  border-bottom: 1px solid #cecece;
  padding-bottom: 4px;
  transition: border 0.25s, color 0.25s;
}

.footer-links a:hover span {
  border-color: #4baffd;
  color: #4baffd;
}

.footer-logo {
  width: 95px;
}

.footer-logo svg {
  fill: #282a34 !important;
}

.darkMode .footer-logo svg {
  fill: #00cc9b !important;
}

p {
  font-family: proxima-nova, sans-serif !important;
  color: #fff;
  font-size: 110%;
  font-weight: 100;
}

h1, h2, h3, h4, h5, h6 {
  font-family: proxima-nova, sans-serif !important;
  font-weight: 400;
}

/* Grain Animation */
@-moz-keyframes grain {
  0%, 100% {
    -moz-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -moz-transform: translate(-5%, -10%);
    transform: translate(-5%, -10%);
  }
  20% {
    -moz-transform: translate(-15%, 5%);
    transform: translate(-15%, 5%);
  }
  30% {
    -moz-transform: translate(7%, -25%);
    transform: translate(7%, -25%);
  }
  40% {
    -moz-transform: translate(-5%, 25%);
    transform: translate(-5%, 25%);
  }
  50% {
    -moz-transform: translate(-15%, 10%);
    transform: translate(-15%, 10%);
  }
  60% {
    -moz-transform: translate(15%, 0%);
    transform: translate(15%, 0%);
  }
  70% {
    -moz-transform: translate(0%, 15%);
    transform: translate(0%, 15%);
  }
  80% {
    -moz-transform: translate(3%, 35%);
    transform: translate(3%, 35%);
  }
  90% {
    -moz-transform: translate(-10%, 10%);
    transform: translate(-10%, 10%);
  }
}
@-webkit-keyframes grain {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -webkit-transform: translate(-5%, -10%);
    transform: translate(-5%, -10%);
  }
  20% {
    -webkit-transform: translate(-15%, 5%);
    transform: translate(-15%, 5%);
  }
  30% {
    -webkit-transform: translate(7%, -25%);
    transform: translate(7%, -25%);
  }
  40% {
    -webkit-transform: translate(-5%, 25%);
    transform: translate(-5%, 25%);
  }
  50% {
    -webkit-transform: translate(-15%, 10%);
    transform: translate(-15%, 10%);
  }
  60% {
    -webkit-transform: translate(15%, 0%);
    transform: translate(15%, 0%);
  }
  70% {
    -webkit-transform: translate(0%, 15%);
    transform: translate(0%, 15%);
  }
  80% {
    -webkit-transform: translate(3%, 35%);
    transform: translate(3%, 35%);
  }
  90% {
    -webkit-transform: translate(-10%, 10%);
    transform: translate(-10%, 10%);
  }
}
@-o-keyframes grain {
  0%, 100% {
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -o-transform: translate(-5%, -10%);
    transform: translate(-5%, -10%);
  }
  20% {
    -o-transform: translate(-15%, 5%);
    transform: translate(-15%, 5%);
  }
  30% {
    -o-transform: translate(7%, -25%);
    transform: translate(7%, -25%);
  }
  40% {
    -o-transform: translate(-5%, 25%);
    transform: translate(-5%, 25%);
  }
  50% {
    -o-transform: translate(-15%, 10%);
    transform: translate(-15%, 10%);
  }
  60% {
    -o-transform: translate(15%, 0%);
    transform: translate(15%, 0%);
  }
  70% {
    -o-transform: translate(0%, 15%);
    transform: translate(0%, 15%);
  }
  80% {
    -o-transform: translate(3%, 35%);
    transform: translate(3%, 35%);
  }
  90% {
    -o-transform: translate(-10%, 10%);
    transform: translate(-10%, 10%);
  }
}
@keyframes grain {
  0%, 100% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  10% {
    -webkit-transform: translate(-5%, -10%);
    -moz-transform: translate(-5%, -10%);
    -o-transform: translate(-5%, -10%);
    transform: translate(-5%, -10%);
  }
  20% {
    -webkit-transform: translate(-15%, 5%);
    -moz-transform: translate(-15%, 5%);
    -o-transform: translate(-15%, 5%);
    transform: translate(-15%, 5%);
  }
  30% {
    -webkit-transform: translate(7%, -25%);
    -moz-transform: translate(7%, -25%);
    -o-transform: translate(7%, -25%);
    transform: translate(7%, -25%);
  }
  40% {
    -webkit-transform: translate(-5%, 25%);
    -moz-transform: translate(-5%, 25%);
    -o-transform: translate(-5%, 25%);
    transform: translate(-5%, 25%);
  }
  50% {
    -webkit-transform: translate(-15%, 10%);
    -moz-transform: translate(-15%, 10%);
    -o-transform: translate(-15%, 10%);
    transform: translate(-15%, 10%);
  }
  60% {
    -webkit-transform: translate(15%, 0%);
    -moz-transform: translate(15%, 0%);
    -o-transform: translate(15%, 0%);
    transform: translate(15%, 0%);
  }
  70% {
    -webkit-transform: translate(0%, 15%);
    -moz-transform: translate(0%, 15%);
    -o-transform: translate(0%, 15%);
    transform: translate(0%, 15%);
  }
  80% {
    -webkit-transform: translate(3%, 35%);
    -moz-transform: translate(3%, 35%);
    -o-transform: translate(3%, 35%);
    transform: translate(3%, 35%);
  }
  90% {
    -webkit-transform: translate(-10%, 10%);
    -moz-transform: translate(-10%, 10%);
    -o-transform: translate(-10%, 10%);
    transform: translate(-10%, 10%);
  }
}
/* Custom */
.panel button, .panel a.button, .panel input[type=submit], a.button.qq, input[type=submit] {
  margin: 0;
  outline: 0;
  color: white;
  text-decoration: none;
  background: transparent;
  padding: 16px 20px !important;
  font-size: 14px !important;
  letter-spacing: 0.125em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  border-radius: 0px;
  border: 1px solid #323336;
  overflow: hidden;
  position: relative;
  opacity: 1;
  transition: all 0.45s ease;
}
.panel button:before, .panel a.button:before, .panel input[type=submit]:before, a.button.qq:before, input[type=submit]:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: #00cc9b;
  animation: qqButtonOut 0.25s ease-in-out;
  z-index: -1;
  transform: translateX(101%);
  transition: all 0.25s ease;
}
.panel button:hover, .panel a.button:hover, .panel input[type=submit]:hover, a.button.qq:hover, input[type=submit]:hover {
  opacity: 1;
  border: 1px solid #00cc9b;
  color: #15161b;
}
.panel button:hover:before, .panel a.button:hover:before, .panel input[type=submit]:hover:before, a.button.qq:hover:before, input[type=submit]:hover:before {
  transform: translateX(0%);
  animation: qqButtonIn 0.25s ease-in-out;
}

@keyframes qqButtonIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes qqButtonOut {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.qq-form {
  display: none;
}
.qq-form .qq-input {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0;
  outline: 0;
  color: white;
  padding: 16px 20px !important;
  font-size: 14px !important;
  letter-spacing: 0.125em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  line-height: 14px;
  border-radius: 0px;
  border: 1px solid #323336;
  background: transparent;
  display: block;
}

.panel {
  padding-top: 40px;
}
.panel .button:not(.actionButton):hover:not(:active) {
  box-shadow: none;
}

h1.hero, h1.heroNoSplit {
  cursor: pointer;
  font-size: 19rem;
  line-height: 19rem;
  font-weight: 700;
  text-align: center;
  font-style: normal;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 0.03em;
}

a.text-link, .menu a.text-link {
  color: #00cc9b;
  font-style: normal;
  position: relative;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00cc9b), to(#00cc9b));
  background-image: -webkit-linear-gradient(#00cc9b, #00cc9b);
  background-image: -moz-linear-gradient(#00cc9b, #00cc9b);
  background-image: -o-linear-gradient(#00cc9b, #00cc9b);
  background-image: linear-gradient(#00cc9b, #00cc9b);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 0% 1px;
  -moz-background-size: 0% 1px;
  background-size: 0% 1px;
}
a.text-link.goBack, .menu a.text-link.goBack {
  margin-left: 0px;
  opacity: 1;
  padding-bottom: 4px;
}
a.text-link.goBack:before, .menu a.text-link.goBack:before {
  content: "←";
  color: #00cc9b;
  width: 13px;
  height: 1px;
  position: absolute;
  top: 1px;
  left: -20px;
  opacity: 0;
  display: block;
  transition: left 0.35s ease, opacity 0.35s ease;
}
a.text-link.goBack:hover, .menu a.text-link.goBack:hover {
  margin-left: 16px;
}
a.text-link.goBack:hover:before, .menu a.text-link.goBack:hover:before {
  opacity: 1;
  left: -20px;
}

.menu a.text-link {
  color: white;
  transition: color 0.45s;
  padding-left: 0px !important;
  padding-right: 0px !important;
  padding-bottom: 4px !important;
}
.menu a.text-link:hover {
  color: #00cc9b;
}

.panel.bottom a.text-link {
  padding-bottom: 4px !important;
}

.section-description {
  position: relative;
  margin-bottom: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.section-description h6 {
  position: relative;
  font-size: 14px !important;
  letter-spacing: 0.125em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}
.section-description h6:before {
  content: "";
  background: #00cc9b;
  width: 13px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
  display: block;
}
.section-description a {
  position: relative;
  font-size: 14px !important;
  letter-spacing: 0.125em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}
.section-description a:after {
  content: "→";
  color: #00cc9b;
  width: 13px;
  height: 1px;
  position: absolute;
  top: 0;
  right: -20px;
  display: block;
}

.tiny-section {
  position: relative;
  font-size: 14px !important;
  letter-spacing: 0.125em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}
.tiny-section:before {
  content: "";
  background: #00cc9b;
  width: 13px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
  transform: translateY(-3px);
  display: block;
}

.wrgg {
  position: absolute;
  left: 50%;
  bottom: 30px;
  animation-duration: 1s;
  animation-name: mouseLoop;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  opacity: 0;
  transition: opacity 0.45s;
}
.wrgg i {
  transform: translateX(-50%);
}

@keyframes mouseLoop {
  from {
    bottom: 40px;
  }
  to {
    bottom: 30px;
  }
}
.slides.firstSlide .wrgg {
  opacity: 1;
}

a.link {
  position: relative;
  font-size: 14px !important;
  letter-spacing: 0.125em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  line-height: 17px;
  color: white;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00cc9b), to(#00cc9b));
  background-image: -webkit-linear-gradient(#00cc9b, #00cc9b);
  background-image: -moz-linear-gradient(#00cc9b, #00cc9b);
  background-image: -o-linear-gradient(#00cc9b, #00cc9b);
  background-image: linear-gradient(#00cc9b, #00cc9b);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 0% 1px;
  -moz-background-size: 0% 1px;
  background-size: 0% 1px;
  padding-bottom: 4px;
}
a.link:after {
  content: "→";
  color: #00cc9b;
  width: 13px;
  height: 1px;
  position: absolute;
  top: 0px;
  right: -20px;
  display: block;
  transition: right 0.35s ease;
}
a.link:hover {
  color: #00cc9b;
}
a.link:hover:after {
  right: -22px;
}
a.link.footer-link:after {
  display: none;
}
a.link.footer-link:hover:after {
  right: 0px;
}

/* Typewriter Effect */
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@-webkit-keyframes blink {
  50% {
    opacity: 0;
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
/* Vimeo Background */
.slides .slide .background.vimeo iframe {
  width: 1380px;
  height: 812px;
  position: absolute;
  top: initial;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  -webkit-transform-origin: 0%;
  transform-origin: 0%;
}

/* Rev Slider Customizations */
.tp-caption.NotGeneric-Title,
.NotGeneric-Title {
  color: white;
  font-size: 70px;
  line-height: 70px;
  font-weight: 800;
  font-style: normal;
  font-family: proxima-nova, san-serif;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
}

.tp-caption.NotGeneric-SubTitle,
.NotGeneric-SubTitle {
  color: white;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  font-style: normal;
  font-family: proxima-nova, san-serif;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
  border-style: none;
  border-width: 0px;
  border-radius: 0 0 0 0px;
  letter-spacing: 4px;
}

.erinyen.tparrows {
  cursor: pointer;
  background: rgba(0, 0, 0, 0);
  min-width: 70px;
  min-height: 70px;
  position: absolute;
  display: block;
  z-index: 100;
  border-radius: 50%;
}

.erinyen.tparrows:before {
  font-family: "revicons";
  font-size: 20px;
  color: white;
  display: block;
  line-height: 70px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.erinyen.tparrows.tp-leftarrow:before {
  content: "\e824";
}

.erinyen.tparrows.tp-rightarrow:before {
  content: "\e825";
}

.erinyen .tp-title-wrap {
  position: absolute;
  z-index: 1;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  min-height: 70px;
  line-height: 70px;
  top: 0px;
  left: 0px;
  margin-left: 0px;
  border-radius: 0px;
  overflow: hidden;
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
}

.erinyen.tparrows:hover .tp-title-wrap {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.erinyen.tp-rightarrow .tp-title-wrap {
  left: auto;
  right: 0px;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-transform-origin: 100% 50%;
  border-radius: 0px;
  padding-right: 20px;
  padding-left: 10px;
}

.erinyen.tp-leftarrow .tp-title-wrap {
  padding-left: 20px;
  padding-right: 10px;
}

.erinyen .tp-arr-titleholder {
  letter-spacing: 3px;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transform: translatex(200px);
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  font-size: 13px;
  line-height: 70px;
  white-space: nowrap;
  padding: 0px 20px;
  margin-left: 11px;
  opacity: 0;
}

.erinyen .tp-arr-imgholder {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-position: center center;
  background-size: cover;
}

.erinyen .tp-arr-img-over {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.51);
}

.erinyen.tp-rightarrow .tp-arr-titleholder {
  transform: translatex(-200px);
  margin-left: 0px;
  margin-right: 11px;
}

.erinyen.tparrows:hover .tp-arr-titleholder {
  transform: translatex(0px);
  -webkit-transform: translatex(0px);
  transition-delay: 0.1s;
  opacity: 1;
}

.tp-bgimg.defaultimg {
  opacity: 0.2 !important;
  transition: opacity 0.5s;
}

.active-revslide .tp-bgimg.defaultimg {
  transition: opacity 0.5s;
  opacity: 0.6 !important;
}

/* Rev Slider - Cards */
.tparrows:before {
  color: #00cc9b;
}

.card {
  position: relative;
}
.card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.9) !important;
  transform: scale(0.9) !important;
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.card .card-inner .card-frame {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  z-index: -1;
  -webkit-transform: scale(0.9445, 0.7625);
  transform: scale(0.9445, 0.7625);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.card .card-inner .card-frame:before, .card .card-inner .card-frame:after {
  content: "";
  transition: opacity 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
}
.card .card-inner .card-frame:before {
  opacity: 0;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: 100% auto;
  box-shadow: 0 0 35px rgba(19, 20, 25, 0.08), 0 15px 18px rgba(19, 20, 25, 0.25);
}
.card .card-inner .card-frame:after {
  box-shadow: 0 0 18px rgba(19, 20, 25, 0.06), 0 6px 10px rgba(19, 20, 25, 0.07);
}
.card .card-inner .card-frame .card-dots {
  height: 7px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
}
.card .card-inner .card-frame .card-dots:before, .card .card-inner .card-frame .card-dots:after {
  height: 8px;
  width: 8px;
  content: "+";
  position: absolute;
  color: #00cc9b;
  margin: 0;
  padding: 0;
}
.card .card-inner .card-frame .card-dots.card-dots-top {
  top: 0;
}
.card .card-inner .card-frame .card-dots.card-dots-bottom {
  bottom: 0;
}
.card .card-inner .card-frame .card-dots.card-dots-top:before {
  top: 8px;
  left: 12px;
}
.card .card-inner .card-frame .card-dots.card-dots-top:after {
  top: 8px;
  right: 17px;
}
.card .card-inner .card-frame .card-dots.card-dots-bottom:before {
  bottom: 28px;
  left: 12px;
}
.card .card-inner .card-frame .card-dots.card-dots-bottom:after {
  bottom: 28px;
  right: 17px;
}
.card .card-inner .card-content {
  height: 100%;
  width: 100%;
  padding: 57px 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card .card-inner .card-content p.card-icon {
  position: relative;
  margin-top: 120px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  font-style: normal;
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  color: rgba(255, 255, 255, 0.15);
  font-size: 5.6rem;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
}
.card .card-inner .card-content p.card-icon svg {
  width: 80px;
  transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #00cc9b;
  fill: #00cc9b;
}
.card .card-inner .card-content p.card-icon span {
  font-weight: 500;
  font-style: normal;
  transition: color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), font-size 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #00cc9b;
  font-size: 4.8rem;
  letter-spacing: -0.02em;
  line-height: 150px;
  text-align: center;
}
.card .card-inner .card-content p.card-icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 150px;
  width: 150px;
  margin-top: -75px;
  margin-left: -75px;
  content: "";
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid #00cc9b;
  border-radius: 50%;
}
.card .card-inner .card-content .card-meta {
  margin-top: auto;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card .card-inner .card-content .card-meta .card-title {
  height: 75px;
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #00cc9b;
  font-size: 2.1rem;
  letter-spacing: 0.2em;
  line-height: 3.5rem;
  text-align: center;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px;
}
.card .card-inner .card-content .card-meta .card-text {
  height: 60px;
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
  line-height: 1.4285714286;
  text-align: center;
  margin-bottom: 35px;
  transition-delay: 0s;
}
.card .card-inner .card-content .card-meta .card-link {
  display: inline-block;
  margin-top: 10px;
  -webkit-transform: translateY(-90px);
  transform: translateY(-90px);
  transition-delay: 0s;
  color: #00cc9b;
}
.card .card-inner .card-content .card-meta .card-icon-bottom {
  display: inline-block;
  -webkit-transform: translateY(-90px);
  transform: translateY(-90px);
  transition-delay: 0s;
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card .card-inner .card-content .card-meta .card-icon-bottom svg, .card .card-inner .card-content .card-meta .card-icon-bottom i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100px;
  opacity: 1;
  fill: #00cc9b;
  color: #00cc9b;
  transform: translate(-50%, -50%);
}
.card .card-inner .card-content .card-meta .card-icon-bottom i {
  font-size: 70px;
  height: 70px;
}
.card.active-revslide .card-inner {
  -webkit-transform: scale(1) !important;
  transform: scale(1) !important;
}
.card.active-revslide .card-inner .card-frame {
  -webkit-transform: scale(1);
  transform: scale(1);
  background: #1e2027;
}
.card.active-revslide .card-inner .card-frame:before {
  transition-delay: 0.1s;
  opacity: 1;
}
.card.active-revslide .card-inner .card-frame:after {
  opacity: 0;
}
.card.active-revslide .card-inner .card-frame .card-dots {
  opacity: 1;
}
.card.active-revslide .card-inner .card-content p.card-icon {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  color: #fff;
}
.card.active-revslide .card-inner .card-content p.card-icon svg {
  fill: white;
  color: white;
  width: 110px;
}
.card.active-revslide .card-inner .card-content p.card-icon span {
  color: #fff;
  font-size: 6rem !important;
}
.card.active-revslide .card-inner .card-content p.card-icon:before {
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  border-color: #00cc9b;
}
.card.active-revslide .card-inner .card-content .card-meta .card-title {
  color: #fff;
  font-size: 2.2rem;
}
.card.active-revslide .card-inner .card-content .card-meta .card-text {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6);
  transition-delay: 0.2s;
}
.card.active-revslide .card-inner .card-content .card-meta .card-link {
  margin-top: 35px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  color: white;
}
.card.active-revslide .card-inner .card-content .card-meta .card-link:hover {
  color: #00cc9b;
}
.card.active-revslide .card-inner .card-content .card-meta .card-icon-bottom {
  margin-top: 35px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  color: #00cc9b;
}
.card.active-revslide .card-inner .card-content .card-meta .card-icon-bottom svg {
  width: 120px;
}
.card.active-revslide .card-inner .card-content .card-meta .card-icon-bottom i {
  font-size: 100px;
  height: 100px;
}

.flex-photo {
  position: relative;
  height: 500px;
}

/* parallax images */
.para-img-wrapper {
  position: relative;
  width: calc(100% - 40px);
}
.para-img-wrapper .para-inner {
  overflow: hidden;
  background: #15161b;
}
.para-img-wrapper .para-inner img.scale {
  transform: scale(1.15);
  opacity: 0.7;
}

img.lines {
  position: absolute;
  left: -150px;
  bottom: -130px;
  z-index: -1;
}

img.dots {
  position: absolute;
  right: -50px;
  bottom: -30px;
  z-index: -1;
  width: 120px;
  height: 120px;
}

h3.dave-text {
  position: absolute;
  left: 50px;
  bottom: 110px;
  padding-right: 80px;
  z-index: 2;
  text-shadow: -15px 17px 5px rgba(0, 0, 0, 0.5);
}

p.dave-text-p {
  position: absolute;
  left: 175px;
  bottom: 20px;
  padding-right: 0px;
  z-index: 2;
  text-shadow: -15px 17px 5px rgba(0, 0, 0, 0.5);
}

.daveClick, .blogClick {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
}
.daveClick:hover, .blogClick:hover {
  opacity: 0.05;
  background: #00cc9b;
}

/* Footer Nav */
ul.footer-nav {
  position: relative;
}
ul.footer-nav li {
  position: relative;
  margin-bottom: 8px;
  padding: 20px 0 20px 130px;
  font-size: 6rem;
  line-height: 6rem;
  border-bottom: none;
}
ul.footer-nav li:before {
  content: "01.";
  color: #3b3b3d;
  display: block;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.footer-nav li a {
  font-size: 6rem;
  line-height: 6rem;
  -webkit-transition: color 0.45s;
  -o-transition: color 0.45s;
  -moz-transition: color 0.45s;
  transition: color 0.45s;
  color: white;
}
ul.footer-nav li a:hover {
  color: #00cc9b;
}
ul.footer-nav li:nth-child(2):before {
  content: "02.";
}
ul.footer-nav li:nth-child(3):before {
  content: "03.";
}
ul.footer-nav li:nth-child(4):before {
  content: "04.";
}
ul.footer-nav li:nth-child(5):before {
  content: "05.";
}

/* Reasons List */
.reasons-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  font-style: normal;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 200px;
  transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-top: -6px;
}
.reasons-marker .text {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.reasons-marker .reasons-line {
  margin-left: 20px;
  position: relative;
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  background-color: rgba(255, 255, 255, 0.2);
}
.reasons-marker .reasons-line, .reasons-marker .reasons-line .scroll-indicator {
  height: 1px;
  width: 100%;
  display: block;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.reasons-marker .reasons-line .scroll-indicator {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00cc9b;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.reasons-marker.is-fixed {
  position: fixed;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.reasons-marker.is-fixed.is-hidden {
  opacity: 0;
}

ul.reasons-list {
  position: relative;
  list-style: none;
  counter-reset: li;
}
ul.reasons-list li {
  position: relative;
  padding-left: 130px;
  opacity: 0.5;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
ul.reasons-list li:before {
  font-family: "proxima-nova", sans-serif;
  font-weight: 300;
  font-style: normal;
  position: absolute;
  top: -10px;
  left: 0;
  content: counter(li, decimal-leading-zero) " /";
  counter-increment: li;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.2rem;
  text-align: right;
  line-height: 1.6;
  letter-spacing: -0.01em;
  width: 45px;
}
ul.reasons-list li .reason-content {
  position: relative;
  padding-top: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
ul.reasons-list li .reason-content a.link-apply {
  position: relative;
  margin-top: 35px;
  display: inline-block;
  padding-bottom: 10px;
  font-weight: 700;
  opacity: 0;
  transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(40px);
}
ul.reasons-list li .reason-content a.link-apply:before, ul.reasons-list li .reason-content a.link-apply:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
}
ul.reasons-list li .reason-content a.link-apply:before {
  z-index: 1;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
ul.reasons-list li .reason-content a.link-apply:after {
  background-color: #00cc9b;
  -webkit-transform: translateX(100%) scaleX(0);
  transform: translateX(100%) scaleX(0);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s, -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.12s, -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  opacity: 0;
}
ul.reasons-list li.is-active {
  opacity: 1;
}
ul.reasons-list li.is-active:before {
  color: #00cc9b;
}
ul.reasons-list li.is-active a.link-apply {
  opacity: 1;
  transform: translateX(0);
}
ul.reasons-list li.is-active a.link-apply:after {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translateX(0) scaleX(1);
  opacity: 1;
}
ul.reasons-list li.is-active a.link-apply:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}
ul.reasons-list.reasons-list-2 {
  counter-reset: li 2;
}
ul.reasons-list.reasons-list-2 li:before {
  content: counter(li, decimal-leading-zero) " /";
  counter-increment: li;
}
ul.reasons-list.reasons-list-3 {
  counter-reset: li 4;
}
ul.reasons-list.reasons-list-3 li:before {
  content: counter(li, decimal-leading-zero) " /";
  counter-increment: li;
}

/* Team Images Grid Parallax */
.teamImagesWrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.teamImagesWrap .grid {
  pointer-events: none;
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}
.teamImagesWrap .grid.hero-grid, .teamImagesWrap .grid .grid-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  will-change: transform;
}
.teamImagesWrap .grid.hero-grid {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
}
.teamImagesWrap .grid.hero-grid, .teamImagesWrap .grid .grid-item-img {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  height: 100%;
  will-change: transform;
  width: -webkit-calc(100% + 50px);
  width: -moz-calc(100% + 50px);
  width: calc(100% + 50px);
  height: -webkit-calc(100% + 50px);
  height: -moz-calc(100% + 50px);
  height: calc(100% + 50px);
}
.teamImagesWrap .grid .grid-item-wrap {
  position: absolute;
  overflow: hidden;
}
.teamImagesWrap .grid .grid-item-wrap .grid-item-img {
  background: #15161b;
  opacity: 0;
}
.teamImagesWrap .grid .grid-item-wrap .grid-item-img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
  transform: scale(0);
  opacity: 0;
}
.teamImagesWrap .grid .grid-item-wrap:nth-child(1) {
  width: 383px;
  height: 234px;
  left: -webkit-calc(5% - 19px);
  left: -moz-calc(5% - 19px);
  left: calc(5% - 19px);
  top: 260px;
}
.teamImagesWrap .grid .grid-item-wrap:nth-child(2) {
  width: 349px;
  height: 202px;
  top: 220px;
  right: 100px;
}
.teamImagesWrap .grid .grid-item-wrap:nth-child(3) {
  width: 580px;
  height: 368px;
  top: 550px;
  right: -250px;
}
.teamImagesWrap .grid .grid-item-wrap:nth-child(4) {
  width: 399px;
  height: 244px;
  bottom: -100px;
  right: 250px;
}
.teamImagesWrap .grid .grid-item-wrap:nth-child(5) {
  width: 197px;
  height: 152px;
  bottom: -webkit-calc(5% - 50px);
  bottom: -moz-calc(5% - 50px);
  bottom: calc(5% - 50px);
  left: -webkit-calc(5% + 285px);
  left: -moz-calc(5% + 285px);
  left: calc(5% + 285px);
}
.teamImagesWrap .grid .grid-item-wrap:nth-child(6) {
  width: 275px;
  height: 175px;
  left: -webkit-calc(5% + 52px);
  left: -moz-calc(5% + 52px);
  left: calc(5% + 52px);
  bottom: 150px;
}

/* Navigation */
.sidebar {
  width: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  transition: -webkit-transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.sidebar .bg-1, .sidebar .bg-2 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: -webkit-transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.7s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.sidebar .bg-1 {
  opacity: 1;
  background: #15161b;
  overflow: hidden;
}
.sidebar .bg-1 .nav-loader {
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s ease;
  transform: translateX(-100%);
  padding: 0;
  margin: 0;
}
.sidebar .bg-1 .nav-loader svg {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0;
  margin: 0;
  transform: translate(-50%, -50%) scale(1.5);
  fill: #121217 !important;
  opacity: 1;
}
.sidebar .bg-2 {
  opacity: 1;
  transform: translate(100%);
  background: #00cc9b;
  transition-delay: 0.3s;
}
.sidebar .panel.top {
  z-index: 999;
  transition: opacity 0.5s !important;
  transition-delay: 0.95s !important;
  opacity: 0;
}
.sidebar .panel.top .close {
  opacity: 0.8;
  padding: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border 0.45s, transform 0.5s ease, opacity 0.45s;
  top: 40px;
  right: 40px;
  opacity: 0;
}
.sidebar .panel.top .close i {
  font-size: 30px;
}
.sidebar .panel.top .close:hover {
  border: 1px solid white;
  opacity: 1;
}

.sidebarShown .sidebar.visible .bg-2 {
  transform: translateX(0);
  opacity: 1;
}
.sidebarShown .sidebar.visible .bg-1 .nav-loader {
  transform: translateX(0);
}
.sidebarShown .sidebar.visible .panel.top {
  opacity: 1;
}
.sidebarShown .sidebar.visible .close {
  opacity: 1;
}

.site-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 995;
}
.site-menu .wrap {
  position: relative;
  height: 100%;
  width: auto;
  padding-right: 45px;
  padding-left: 45px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.site-menu .wrap .site-menu-list {
  margin-top: 15px;
  margin-left: 10%;
}
.site-menu .wrap .site-menu-list .site-menu-item {
  counter-increment: c;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
}
.site-menu .wrap .site-menu-list .site-menu-item:first-child {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
.site-menu .wrap .site-menu-list .site-menu-item:nth-child(2) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.site-menu .wrap .site-menu-list .site-menu-item:nth-child(3) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.site-menu .wrap .site-menu-list .site-menu-item:nth-child(4) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}
.site-menu .wrap .site-menu-list .site-menu-item:nth-child(5) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.site-menu .wrap .site-menu-list .site-menu-item:nth-child(6) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.site-menu .wrap .site-menu-list .site-menu-item:nth-child(7) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}
.site-menu .wrap .site-menu-list .site-menu-item:nth-child(8) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.site-menu .wrap .site-menu-list .site-menu-item a {
  padding-top: 13px;
  padding-bottom: 13px;
  font-family: "proxima-nova", sans-serif;
  font-weight: 200;
  font-style: normal;
  display: inline-block;
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 6rem;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-decoration: none;
}
.site-menu .wrap .site-menu-list .site-menu-item a:before {
  position: absolute;
  top: 20px;
  right: calc(100% + 30px);
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  font-style: normal;
  content: "0" counter(c);
  transition: color 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: rgba(255, 255, 255, 0.25);
  font-size: 2rem;
  letter-spacing: 0.15em;
}
.site-menu .wrap .site-menu-list .site-menu-item a:hover, .site-menu .wrap .site-menu-list .site-menu-item a.is-active {
  color: white;
  opacity: 1;
}
.site-menu .wrap .site-menu-list .site-menu-item a:hover:before, .site-menu .wrap .site-menu-list .site-menu-item a.is-active:before {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
}
.site-menu .wrap .site-menu-list .site-menu-item a.is-active {
  pointer-events: none;
}

.site-menu-footer {
  position: absolute;
  right: 45px;
  bottom: 45px;
  left: 45px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  bottom: 80px;
}
.site-menu-footer a.site-menu-quote {
  -webkit-animation-delay: 1.85s;
  animation-delay: 1.85s;
}
.site-menu-footer a.site-menu-quote, .site-menu-footer a.link {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#15161b), to(#15161b));
  background-image: -webkit-linear-gradient(#15161b, #15161b);
  background-image: -moz-linear-gradient(#15161b, #15161b);
  background-image: -o-linear-gradient(#15161b, #15161b);
  background-image: linear-gradient(#15161b, #15161b);
}
.site-menu-footer a.site-menu-quote:after, .site-menu-footer a.link:after {
  color: #fff;
}
.site-menu-footer a.site-menu-quote:hover, .site-menu-footer a.link:hover {
  color: #15161b;
}
.site-menu-footer a.site-menu-quote:hover:after, .site-menu-footer a.link:hover:after {
  color: #15161b;
}
.site-menu-footer a.site-menu-quote {
  background: #15161b;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.site-menu-footer a.site-menu-quote:hover {
  border: 1px solid rgba(0, 0, 0, 0.75);
}
.site-menu-footer .site-menu-content {
  -webkit-animation-delay: 1.95s;
  animation-delay: 1.95s;
}
.site-menu-footer .site-menu-content ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.site-menu-footer .site-menu-content ul li + li:before {
  content: "/";
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  vertical-align: middle;
}
.site-menu-footer .site-menu-content a.link:after {
  display: none;
}

.sidebarShown .sidebar.visible .site-menu .wrap .site-menu-list .site-menu-item {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-name: navAnim;
  animation-name: navAnim;
}
.sidebarShown .sidebar.visible .site-menu .wrap .site-menu-footer a.site-menu-quote, .sidebarShown .sidebar.visible .site-menu .wrap .site-menu-footer .site-menu-content {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-name: navAnim;
  animation-name: navAnim;
}

@-webkit-keyframes navAnim {
  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes navAnim {
  0% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* Insurance Landing */
.grad-cols li {
  position: relative;
}
.grad-cols li a {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  overflow: hidden;
  display: block;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
}
.grad-cols li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #15161b 0%, #15161b 100%);
  transition: all 0.3s ease-in-out;
  z-index: 1;
  opacity: 0.25;
}
.grad-cols li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #141518 0%, rgba(20, 21, 24, 0) 75%);
  display: block;
}
.grad-cols li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.75;
  z-index: -1;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.grad-cols li a .grad-col-meta {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  top: 0;
  left: 0;
  text-align: center;
  color: white;
  padding: 40px;
  z-index: 5;
  margin-top: auto;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.grad-cols li a .grad-col-meta .grad-title {
  width: 100%;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: white;
  font-size: 2.1rem;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.grad-cols li a .grad-col-meta .grad-text {
  font-family: "proxima-nova", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}
.grad-cols li a .grad-col-meta .grad-link {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.grad-cols li a .grad-col-meta .grad-link.link {
  position: relative;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 14px !important;
  letter-spacing: 0.125em !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  line-height: 17px;
  color: white;
  text-decoration: none;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#00cc9b), to(#00cc9b));
  background-image: -webkit-linear-gradient(#00cc9b, #00cc9b);
  background-image: -moz-linear-gradient(#00cc9b, #00cc9b);
  background-image: -o-linear-gradient(#00cc9b, #00cc9b);
  background-image: linear-gradient(#00cc9b, #00cc9b);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  -webkit-background-size: 0% 1px;
  -moz-background-size: 0% 1px;
  background-size: 0% 1px;
  padding-bottom: 4px;
}
.grad-cols li a .grad-col-meta .grad-link.link:after {
  content: "→";
  color: #00cc9b;
  width: 13px;
  height: 1px;
  position: absolute;
  top: 0px;
  right: -20px;
  display: block;
  transition: right 0.35s ease;
}
.grad-cols li a:hover img {
  opacity: 0.3;
}
.grad-cols li a:hover .grad-col-meta .grad-title {
  color: #00cc9b;
}
.grad-cols li a:hover .grad-col-meta .grad-text {
  max-height: 200px;
  padding: 20px 0;
  overflow: hidden;
  opacity: 1;
}
.grad-cols li a:hover .grad-col-meta .grad-link {
  -webkit-background-size: 100% 1px;
  -moz-background-size: 100% 1px;
  background-size: 100% 1px;
  -webkit-transition: 0.65s cubic-bezier(0.77, 0.01, 0.18, 1);
  -o-transition: 0.65s cubic-bezier(0.77, 0.01, 0.18, 1);
  -moz-transition: 0.65s cubic-bezier(0.77, 0.01, 0.18, 1);
  transition: 0.65s cubic-bezier(0.77, 0.01, 0.18, 1);
  color: #00cc9b;
}

#ky-hero #ky {
  width: 100%;
}
#ky-hero h2.coverKY {
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
#ky-hero .bubble-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  index: 1;
}
#ky-hero .bubble-container .bubble-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#ky-hero .bubble-container .bubble-wrap .bubble {
  position: absolute;
  width: 420px;
  height: auto;
  top: 5%;
  left: 15%;
  opacity: 0;
  transform: scale(0);
  border: 1px solid #323336;
  border-radius: 8px;
  padding: 15px 25px;
  margin-bottom: 75px;
  cursor: default;
}
#ky-hero .bubble-container .bubble-wrap .bubble:after {
  position: absolute;
  width: 100px;
  height: 1px;
  border: 1px solid #323336;
  display: block;
  content: "";
  right: 0;
  bottom: -5px;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
#ky-hero .bubble-container .bubble-wrap .bubble .bubble-details {
  position: absolute;
  width: 100%;
  height: auto;
  min-height: 50px;
  border-top: 1px solid #323336;
  padding: 8px 8%;
  margin: 0;
  display: inline-flex;
  flex-direction: row-reverse;
  left: 0;
  bottom: 0;
  text-align: right;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: center;
}
#ky-hero .bubble-container .bubble-wrap .bubble img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
#ky-hero .bubble-container .bubble-wrap .bubble h3 {
  position: relative;
  display: block;
  text-align: right;
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  letter-spacing: 0.125em;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 14px;
  padding-left: 15px;
  padding-right: 15px;
}
#ky-hero .bubble-container .bubble-wrap .bubble p {
  padding: 8% 5%;
  margin-bottom: 35px;
  text-align: right;
}
#ky-hero .bubble-container .bubble-wrap .bubble.bubble-left:after {
  right: 0;
  left: auto;
}
#ky-hero .bubble-container .bubble-wrap .bubble.bubble-left .bubble-details {
  flex-direction: row;
}
#ky-hero .bubble-container .bubble-wrap .bubble.bubble-left p {
  text-align: left;
}
#ky-hero .bubble-container .bubble-wrap .bubble.bubble-bottom:after {
  top: -5px;
  bottom: auto;
  right: auto;
  left: 0;
}
#ky-hero .bubble-container .bubble-wrap .bubble.bubble-bottom.bubble-left:after {
  transform: rotate(-45deg);
  right: 0;
  left: auto;
}
#ky-hero .bubble-container .bubble-wrap .bubble:nth-child(1) {
  top: 15%;
  right: 35%;
  left: auto;
}
#ky-hero .bubble-container .bubble-wrap .bubble:nth-child(2) {
  top: auto;
  bottom: 2%;
  left: auto;
  right: 12%;
}
#ky-hero .bubble-container .bubble-wrap .bubble:nth-child(3) {
  top: auto;
  bottom: 6%;
  left: 12%;
}

/* Mobile Testimonial */
.testimonial {
  margin-bottom: 30px;
}
.testimonial .test-wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
}
.testimonial .bubble-details img {
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.testimonial .bubble-details h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #00cc9b;
  text-align: center;
  margin-bottom: 30px;
}
.testimonial p {
  font-size: 17px;
}

/* Single Service Page */
.service-header .inner {
  position: relative;
  z-index: 5;
  margin: 0px auto;
}
.service-header .inner .service-title {
  display: inline-block;
  font-size: 7rem;
  color: #fff;
  margin-bottom: 40px;
}
.service-header .inner .service-subtitle {
  font-size: 0.9em;
  line-height: 2;
  letter-spacing: 0.45em;
  padding-left: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.service-bar {
  display: table;
  width: 100%;
  background: #fff;
  margin-top: 180px;
  padding: 40px 50px 30px;
}
.service-bar .part {
  display: table-cell;
  padding-right: 40px;
  min-width: 150px;
  vertical-align: middle;
}
.service-bar .part:last-child {
  padding-right: 0px;
}
.service-bar .part .part-label {
  padding: 0px;
  margin: 0px;
  font-size: 0.7em;
  line-height: 1;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #00cc9b;
  margin-bottom: 10px;
  font-weight: 400;
  font-style: normal;
}
.service-bar .part .part-value {
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 1.15em;
  line-height: 2;
  color: #15161b;
}
.service-bar .part .part-7 {
  width: 150px;
}
.service-bar .part .part-2 {
  width: 120px;
  min-width: 120px;
}
.service-bar .qq {
  color: white !important;
  background: #15161b !important;
}
.service-bar .qq:hover {
  color: white !important;
}

.service-bg {
  position: absolute;
  top: 40%;
  left: 45%;
  transform: translateX(-50%);
  display: block;
}
.service-bg img {
  opacity: 0.2 !important;
}

p.hr {
  position: relative;
  padding-bottom: 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  height: auto;
}

.slide-with-image {
  background: #383838;
}
.slide-with-image:before {
  content: "";
  position: absolute;
  top: 310px;
  left: 0;
  height: 100%;
  width: 100%;
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(56, 56, 56, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(56, 56, 56, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.99) 1%, rgba(56, 56, 56, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#000000", endColorstr="#00383838",GradientType=0 );
  /* IE6-9 */
  pointer-events: none;
  display: block;
  opacity: 0.5;
  z-index: -1;
}

.divider {
  height: 1px;
  border-bottom: 1px solid #00cc9b;
  width: 95px;
  padding-top: 10px;
}

.service-footer:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 900px;
  width: 1830px;
  margin-left: 0px;
  background-image: url("../assets/img/galaxy-footer.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}
.service-footer .pairs-with:after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  margin: 40px auto 50px;
  background: #fff;
  opacity: 0.2;
}
.service-footer .service-footer-nav {
  position: relative;
  display: table;
  width: 100%;
  height: 140px;
  background-size: cover;
}
.service-footer .service-footer-nav .service-footer-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  z-index: 2;
  opacity: 1;
}
.service-footer .service-footer-nav .service-footer-link .service-footer-picture {
  z-index: -1;
}
.service-footer .service-footer-nav .service-footer-link .footer-title, .service-footer .service-footer-nav .service-footer-link .footer-subtitle:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.service-footer .service-footer-nav .service-footer-link .footer-text {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}
.service-footer .service-footer-nav .service-footer-link .footer-text .footer-title {
  font-size: 2.8rem;
  margin-top: 15px;
}
.service-footer .service-footer-nav .service-footer-link .footer-text .footer-subtitle {
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  line-height: 1;
  opacity: 0;
  height: 0px;
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: #00cc9b;
  margin-bottom: 0;
}
.service-footer .service-footer-nav .service-footer-link .footer-text .footer-subtitle:before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  margin: 12px auto;
  margin-top: 14px;
  background: #00cc9b;
  opacity: 0.5;
}
.service-footer .service-footer-nav .service-footer-link .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 1%, #00cc9b 50%, rgba(0, 4, 3, 0) 99%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 1%, #00cc9b 50%, rgba(0, 4, 3, 0) 99%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 1%, #00cc9b 50%, rgba(0, 4, 3, 0) 99%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#00000000",GradientType=1 );
  transition: opacity 0.4s;
  opacity: 0;
}
.service-footer .service-footer-nav .service-footer-link:hover .overlay {
  opacity: 0.05;
}
.service-footer .service-footer-nav .service-footer-link:hover .footer-text .footer-subtitle {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 1;
  height: 30px;
}

/* Service Page Pagination */
.service-pagination {
  list-style: none;
}
.service-pagination li.prev-page, .service-pagination li.next-page {
  position: fixed;
  top: 50%;
  left: 0;
  width: 50px;
  height: 100px;
  z-index: 99;
  transform: translateY(-50%);
  background: #00cc9b;
}
.service-pagination li.prev-page a, .service-pagination li.next-page a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.service-pagination li.prev-page a i, .service-pagination li.next-page a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-pagination li.next-page {
  left: auto;
  right: 0;
}

/* Quote Form */
.quote-form {
  font-family: proxima-nova, sans-serif;
  user-select: none;
}
.quote-form .gform_wrapper .gfield_required {
  color: #00cc9b;
  font-style: normal !important;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  vertical-align: middle;
  margin-left: 5px;
  user-select: none;
}
.quote-form .gform_wrapper.gravity-theme .gfield_label {
  font-size: 22px;
  user-select: none;
}
.quote-form input:not([type=submit]), .quote-form textarea {
  background: none;
  border: none;
  padding: 0px;
  margin: 0px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 16px !important;
  outline: none;
  border-radius: 2px;
  color: #fff;
  user-select: none;
  font-size: 19px !important;
  font-family: proxima-nova, sans-serif !important;
  background-color: transparent !important;
}
.quote-form input:not([type=submit]):focus, .quote-form textarea:focus {
  border-color: #00cc9b;
  color: #00cc9b;
}
.quote-form textarea {
  resize: none;
  user-select: none;
}
.quote-form .image-choices-field .image-choices-choice {
  width: 150px;
  height: 170px;
  padding-top: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}
.quote-form .image-choices-field .image-choices-choice .image-choices-choice-text {
  font-size: 13px;
}
.quote-form .image-choices-field .image-choices-choice-image-wrap {
  width: 120px;
  height: 120px;
  border-radius: 2px;
  opacity: 0.5;
}
.quote-form .image-choices-field .image-choices-choice-selected {
  border-color: #00cc9b;
  background-color: #009974;
}
.quote-form .image-choices-field .image-choices-choice-selected .image-choices-choice-image-wrap {
  opacity: 1;
  box-shadow: 0px 2px 8px 3px rgba(0, 0, 0, 0.25);
}
.quote-form input[type=submit] {
  margin: 0;
  outline: 0;
}
.quote-form input[type=submit]:hover {
  background: #00cc9b;
}

/* Blog Styles */
/* Archive */
.post-item-link {
  background: rgba(0, 0, 0, 0.1);
}
.post-item-link .button {
  bottom: -15px;
}

/* Slideshow Background */
.slideshow .background {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 1s;
  transition: 1s;
}

.slideshow .background.shown {
  opacity: 0.3;
  visibility: visible;
}

/* Change Autocomplete styles in Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #00cc9b;
  -webkit-text-fill-color: #00cc9b;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* Responsiveness */
/* Large devices (large desktops, 1200px and down) */
@media (max-width: 1401px) {
  #ky-hero #ky {
    width: 1200px !important;
    position: relative;
  }
  #ky-hero #ky img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% -50%);
  }
  #ky-hero #ky canvas {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50% -50%);
  }
}
/* iPad Pro 10.5" Landscape Only */
/* iPad Pro 10.5" Portrait Only */
/* iPad Pro 12.9" Landscape Only */
@media only screen and (min-width: 1366px) and (orientation: landscape) {
  html.mobile .heroNoSplit {
    display: none !important;
  }
  html.mobile .hero {
    display: block !important;
  }

  #hero .background.vimeo {
    background: #00cc9b;
    padding: 0px;
    margin: 0px;
    position: absolute;
    padding-bottom: 56% !important;
  }
  #hero .background.vimeo iframe {
    zoom: 1.1;
  }
}
/* iPad Pro 12.9" Portrait Only */
@media only screen and (min-width: 1024px) and (orientation: portrait) {
  html.mobile .heroNoSplit {
    display: block !important;
  }
  html.mobile .hero {
    display: none !important;
  }

  #hero .background.vimeo {
    background: #00cc9b;
    padding: 0px;
    margin: 0px;
    position: absolute;
    padding-bottom: 56% !important;
    display: block;
  }
  #hero .background.vimeo iframe {
    zoom: 1.1;
  }

  /* Mobile Footer */
  #footer .content .container .wrap {
    border-top: 1px solid #3b3b3d;
  }
  #footer .content .container .wrap.padding-top-20 {
    padding-top: 20px !important;
  }
  #footer .content .container .wrap.padding-bottom-20 {
    padding-bottom: 80px !important;
  }

  ul.footer-nav {
    position: relative;
    width: 100%;
  }
  ul.footer-nav li {
    font-size: 3.8rem;
    line-height: 5.4rem;
    padding: 0px;
    padding-left: 80px;
  }
  ul.footer-nav li a {
    font-size: 3.8rem;
    line-height: 5.4rem;
  }

  /* Team Page Mobile */
  .padding-left-tablet-5 {
    padding-left: 50px !important;
  }

  .reasons-container .reasons-marker {
    padding-left: 25px;
  }
  .reasons-container .reasons-list li {
    padding-left: 100px;
    padding-right: 50px;
  }
  .reasons-container .reasons-list li:before {
    left: 30px;
    display: none;
  }

  .team-member {
    padding: 0px;
    margin: 20px;
    margin-bottom: 30px;
    padding: 60px;
    padding-top: 60px;
    padding-bottom: 0px;
  }
  .team-member h1 {
    font-size: 3.4rem;
    line-height: 4.8rem;
  }
}
@media only screen and (min-width: 960px) {
  #hero h1.hero div.split-word {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    text-stroke: 2px #fff;
  }
  #hero h1.hero div.split-word:hover {
    color: #00cc9b;
    -webkit-text-stroke-color: #00cc9b;
    text-stroke-color: #00cc9b;
  }

  a.text-link, a.link {
    -webkit-transition: 0.35s cubic-bezier(0.77, 0.01, 0.18, 1);
    -o-transition: 0.35s cubic-bezier(0.77, 0.01, 0.18, 1);
    -moz-transition: 0.35s cubic-bezier(0.77, 0.01, 0.18, 1);
    transition: 0.35s cubic-bezier(0.77, 0.01, 0.18, 1);
  }
  a.text-link:hover, a.link:hover {
    -webkit-background-size: 100% 1px;
    -moz-background-size: 100% 1px;
    background-size: 100% 1px;
    -webkit-transition: 0.65s cubic-bezier(0.77, 0.01, 0.18, 1);
    -o-transition: 0.65s cubic-bezier(0.77, 0.01, 0.18, 1);
    -moz-transition: 0.65s cubic-bezier(0.77, 0.01, 0.18, 1);
    transition: 0.65s cubic-bezier(0.77, 0.01, 0.18, 1);
  }
}
@media (max-width: 768px) {
  .site-menu-footer {
    padding-bottom: 80px !important;
  }

  h1.heroNoSplit {
    font-size: 9rem;
    line-height: 8.6rem;
  }

  .panel.bottom.firstSlideOnly h6 {
    padding-left: 10px;
    padding-right: 10px;
  }

  #hero .background.hidden {
    display: block;
  }

  /* Mobile Dave Stuff */
  .para-img-wrapper {
    margin: 0px;
    width: 100%;
    margin-bottom: 0px !important;
  }
  .para-img-wrapper .lines {
    display: none;
  }
  .para-img-wrapper h3.dave-text {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    padding: 0;
  }
  .para-img-wrapper p.dave-text-p {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 15px;
  }

  #dave {
    margin-bottom: 80px;
  }
  #dave a.link {
    float: none;
  }

  #featBlog .dots {
    display: none;
  }
  #featBlog .para-img-wrapper {
    margin-bottom: 30px !important;
  }

  /* Team Page Mobile */
  .reasons-container .reasons-marker {
    padding-left: 25px;
  }
  .reasons-container .reasons-marker .reasons-line {
    display: none;
  }
  .reasons-container .reasons-list li {
    padding-left: 100px;
    padding-right: 50px;
  }
  .reasons-container .reasons-list li:before {
    left: 30px;
    display: none;
  }

  .team-member {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0px;
    margin: 20px;
    margin-bottom: 30px;
    padding: 60px;
    padding-top: 60px;
    padding-bottom: 0px;
  }

  /* Service Tablet */
  .service-bar .part p.part-value {
    line-height: 1.3em;
  }

  /* Mobile Footer */
  #footer .content .container .wrap {
    border-top: 1px solid #3b3b3d;
  }
  #footer .content .container .wrap.padding-top-20 {
    padding-top: 0px !important;
  }
  #footer .content .container .wrap.padding-bottom-20 {
    padding-bottom: 50px !important;
  }

  ul.footer-nav {
    position: relative;
    width: 100%;
  }
  ul.footer-nav li {
    font-size: 2.3rem;
    line-height: 3.4rem;
    padding: 0px;
    padding-left: 60px;
  }
  ul.footer-nav li a {
    font-size: 2.3rem;
    line-height: 3.4rem;
  }

  /* AR Credit Mobile */
  #ar-credit .wrap {
    padding: 50px 20px 40px 20px;
  }
}
@media (max-width: 480px) {
  h1.heroNoSplit {
    font-size: 6rem;
    line-height: 6.6rem;
  }

  .panel.bottom.firstSlideOnly h6 {
    padding-left: 10px;
    padding-right: 10px;
  }

  #hero .background.hidden {
    display: block;
  }

  /* Mobile Card Stuff */
  .card .card-inner .card-content {
    padding: 50px 10px;
  }
  .card .card-inner .card-content p.card-icon {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .card .card-inner .card-content p.card-icon:before {
    transform: scale(1);
  }
  .card .card-inner .card-content p.card-icon svg {
    width: 70px;
  }
  .card .card-inner .card-content .card-meta {
    padding-right: 10px;
    padding-left: 10px;
  }
  .card .card-inner .card-content .card-meta .card-title {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
  .card .card-inner .card-content .card-meta .card-text {
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
  }
  .card.active-revslide .card-inner .card-content {
    padding: 30px 10px;
  }
  .card.active-revslide .card-inner .card-content p.card-icon {
    margin-top: 70px;
    margin-bottom: 40px;
  }
  .card.active-revslide .card-inner .card-content p.card-icon:before {
    transform: scale(1.2);
  }
  .card.active-revslide .card-inner .card-content p.card-icon svg {
    width: 90px;
  }
  .card.active-revslide .card-inner .card-content .card-meta {
    padding-right: 10px;
    padding-left: 10px;
  }
  .card.active-revslide .card-inner .card-content .card-meta .card-title {
    font-size: 1.9rem;
  }
  .card.active-revslide .card-inner .card-content .card-meta .card-text {
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
  }

  /* Mobile Dave Stuff */
  .para-img-wrapper {
    margin: 0px;
    width: 100%;
    margin-bottom: 0px !important;
  }
  .para-img-wrapper .lines {
    display: none;
  }
  .para-img-wrapper h3.dave-text {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 30px;
    padding: 0;
  }
  .para-img-wrapper p.dave-text-p {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin-top: 15px;
  }

  #dave {
    margin-bottom: 80px;
  }
  #dave a.link {
    float: none;
  }

  #featBlog .dots {
    display: none;
  }
  #featBlog .para-img-wrapper {
    margin-bottom: 30px !important;
  }

  /* Mobile Footer */
  #footer .content .container .wrap {
    border-top: 1px solid #3b3b3d;
  }
  #footer .content .container .wrap.padding-top-20 {
    padding-top: 0px !important;
  }
  #footer .content .container .wrap.padding-bottom-20 {
    padding-bottom: 50px !important;
  }

  ul.footer-nav {
    position: relative;
    width: 100%;
  }
  ul.footer-nav li {
    font-size: 2.3rem;
    line-height: 3.4rem;
    padding: 0px;
    padding-left: 60px;
  }
  ul.footer-nav li a {
    font-size: 2.3rem;
    line-height: 3.4rem;
  }

  /* AR Credit Mobile */
  #ar-credit .wrap {
    padding: 50px 20px 40px 20px;
  }

  /* Navigation Mobile */
  .sidebar .bg-1 .nav-loader svg {
    width: 30%;
  }

  .site-menu .wrap .site-menu-list {
    margin-top: -70px;
    margin-left: 0px;
  }
  .site-menu .wrap .site-menu-list .site-menu-item a {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 2.3rem;
  }
  .site-menu .wrap .site-menu-list .site-menu-item a:before {
    display: none;
    font-size: 1.4rem;
    line-height: 0.6rem;
  }
  .site-menu .wrap .site-menu-footer .site-menu-content {
    display: none;
  }

  /* Service Landings Mobile */
  .service-landing .padding-top-20 {
    padding-top: 50px !important;
  }
  .service-landing .padding-bottom-20 {
    padding-bottom: 50px !important;
  }
  .service-landing .split-parent {
    display: inline !important;
  }
  .service-landing h2 {
    font-size: 24px;
  }
  .service-landing p {
    font-size: 19px;
  }

  /* KY Hero Mobile */
  #ky-hero #ky {
    display: none;
  }

  /* Team Page Mobile */
  .reasons-container .reasons-marker {
    padding-left: 25px;
  }
  .reasons-container .reasons-marker .reasons-line {
    display: none;
  }
  .reasons-container .reasons-list li {
    padding-left: 100px;
    padding-right: 50px;
  }
  .reasons-container .reasons-list li:before {
    left: 30px;
    display: none;
  }

  /* Quote Page Mobile */
  .quote-form .image-choices-field .image-choices-choice {
    width: 100px;
    height: 145px;
    padding: 3px;
    padding-top: 3px;
  }
  .quote-form .image-choices-field .image-choices-choice label {
    padding: 0px !important;
  }
  .quote-form .image-choices-field .image-choices-choice-image-wrap {
    width: 90px;
    height: 90px;
  }

  .service-pagination {
    display: none;
  }

  /* Service Pages Mobile */
  .mobile .simplifiedMobile .slide .background {
    opacity: 0.3 !important;
  }

  .slide-header.padding-bottom-10 {
    padding-bottom: 0px !important;
  }

  .service-header {
    padding-bottom: 0px;
  }
  .service-header .background {
    opacity: 0.1 !important;
  }
  .service-header .inner .service-title {
    font-size: 3rem;
  }

  .service-bar {
    background: none;
    padding: 0px;
  }
  .service-bar .qq {
    position: absolute !important;
    border: none !important;
    width: 100%;
    display: block;
    background: #00cc9b !important;
    bottom: 0;
    left: 0;
  }

  .service-bg {
    display: none;
  }

  .slide-with-image {
    margin-top: 50px;
  }
  .slide-with-image:before {
    top: 0;
  }

  .service-content-2 img.wide {
    position: absolute;
    width: 140% !important;
    left: 0;
    top: 0;
  }

  .team-member {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0px;
    margin: 20px;
    margin-bottom: 30px;
    padding-top: 30px;
  }
}
/* Wordpress Blog Styles for Gutenbad Editor */
ol {
  padding-right: 60px;
}
ol li {
  list-style-type: all !important;
  list-style: all !important;
  margin-left: 60px;
  margin-bottom: 20px;
}
