#home {
  position: relative;
}
.landing-slider-container {
  position: relative;
}
.landing-slider-container h1 {
  position: absolute;
  display: block;
  left: 8rem;
  top: 45%;
  z-index: 99;	
  transform: translateY(-50%);
  max-width: calc(30px + 44vw);
  font-size: calc(30px + 2.5vw);
  color: #fff;
  line-height: 1.1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
}
.landing-slider-container h1:before {
  content: '';
  position: absolute;
  top: 0.5em;	
  left: -8rem;
  height: 5px;	
  width: 6.5rem;
  z-index: 99;
  background-color: #fff;
}
#home .landing-slider {
  position: relative;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
}
#home .landing-slider.slick-initialized {
  opacity: 1;
}
.landing-slider .slick-slide {
  background-color: #0a0a0a;
}
.landing-slide-content {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  padding-top: 45%;
}
.landing-slide-content h2, .landing-slide-content h3, .landing-slide-content h4, .landing-slide-content h5, .landing-slide-content h6, .landing-slide-content a {
  position: relative;
  z-index: 2;
}
.landing-slide-text {
  position: absolute;
  right: 2rem;
  bottom: 3.5rem;
  width: auto;
  max-width: 22rem;
  min-width: 16rem;
  z-index: 10;
  color: #0a0a0a;
}
.landing-slide-pre-title {
  margin: 0;	
  font-size: var(--font-size-3);
  line-height: 1;
}
.landing-slide-content .circle-bg {
  position: absolute;
  width: calc(130% + 13rem);
  fill: #f9d1e4;
  overflow: visible;
}
.landing-slide:nth-child(4n + 2) .landing-slide-content .circle-bg {
	fill: #dceff2;
}
.landing-slide:nth-child(4n + 3) .landing-slide-content .circle-bg {
	fill: #daece2;
}
.landing-slide:nth-child(4n + 4) .landing-slide-content .circle-bg {
	fill: #f2e8f3;
}
.landing-slide-content .circle-bg circle {
  -webkit-transform: translate3d(-22%, -21%, 0);
  transform: translate3d(-22%, -21%, 0);
}
.landing-slide-title {
  font-size: 36px; /* default supported fallback style */
  font-size: var(--font-size-9);
  line-height: 1.2;
  text-decoration: underline;
  margin: 0.5rem 0 0.5rem; /* default supported fallback style */
  margin: var(--space-1) 0 var(--space-2);
}
.landing-slide-content .cta-button {
  border-color: #e31f85;
  margin-top: 0.7rem;
}
.landing-slide-content .cta-button:hover, .landing-slide-content .cta-button.selected {
  background-color: #e31f85;
  color: #fff;
}
.landing-slide:nth-child(4n + 2) .landing-slide-content .cta-button {
	border-color: #4abdc9;
}
.landing-slide:nth-child(4n + 3) .landing-slide-content .cta-button {
	border-color: #36ae72;
}
.landing-slide:nth-child(4n + 4) .landing-slide-content .cta-button {
	border-color: #bd8cbe;
}
.landing-slide:nth-child(4n + 2) .landing-slide-content .cta-button:hover, .landing-slide:nth-child(4n + 2) .landing-slide-content .cta-button.selected {
	background-color: #4abdc9;
}
.landing-slide:nth-child(4n + 3) .landing-slide-content .cta-button:hover, .landing-slide:nth-child(4n + 3) .landing-slide-content .cta-button.selected {
	background-color: #36ae72;
}
.landing-slide:nth-child(4n + 4) .landing-slide-content .cta-button:hover, .landing-slide:nth-child(4n + 4) .landing-slide-content .cta-button.selected {
	background-color: #bd8cbe;
}
.landing-slide-content .cta-button svg {
  fill: #0a0a0a;
}
.landing-slide-content .cta-button:hover svg, .landing-slide-content .cta-button.selected svg {
  fill: #fff;
}
.feature-overview {
  font-size: var(--font-size-4);
  font-weight: 500;
  line-height: 1.6;
  margin: 0.5rem 0 0.5rem; /* default supported fallback style */
  margin: var(--space-2) 0;
}
.fade-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: -moz-linear-gradient(right, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  background: -webkit-linear-gradient(right, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  background: linear-gradient(to left, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0a0a0a', endColorstr='#00000000', GradientType=1);
  opacity: 0.9;
}
.fade-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: -moz-linear-gradient(right, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 100%);
  background: -webkit-linear-gradient(right, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 100%);
  background: linear-gradient(to left, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#0a0a0a', GradientType=1);
  opacity: 0.5;
}
.fade-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 33%;
  opacity: 0.6;
  background: -moz-linear-gradient(top, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  background: -webkit-linear-gradient(top, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#0a0a0a', GradientType=0);
}
.feat-project-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fff;
  color: #1f607b;
  padding: 16px 40px 8px 20px;
  opacity: 0;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
}
/* slider dots */
#home .slick-dots {
  position: absolute;
  bottom: 2rem;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  -webkit-transition: opacity 0.8s ease-in-out;
  -moz-transition: opacity 0.8s ease-in-out;
  -ms-transition: opacity 0.8s ease-in-out;
  -o-transition: opacity 0.8s ease-in-out;
}
#home .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 2px;
  padding: 4px;
  cursor: pointer;
}
#home .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding: 5px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-box-shadow: 4px 5px 5px -3px rgba(0, 0, 0, 0.40);
  -moz-box-shadow: 4px 5px 5px -3px rgba(0, 0, 0, 0.4);
  box-shadow: 4px 5px 5px -3px rgba(0, 0, 0, 0.4);
  outline: none;
}
#home .slick-dots li.slick-active button {
  background-color: #fff;
}
#home .slick-dots li button::before {
  display: none !important;
}
@media only screen and (max-width: 1399px) {
  .landing-slider-container h1 {
    left: 8rem;
    top: 40%;
    max-width: 60vw;
    font-size: calc(30px + 3vw);
  }
  .landing-slide-content .circle-bg {
    width: calc(125% + 13rem);
  }
 #home .slick-dots {
    padding: 0 2rem;
    text-align: left;
  }
}
@media only screen and (max-width: 991px) {
  .landing-slider-container h1 {
    left: 5rem;
    max-width: calc(30px + 60vw);
    font-size: calc(20px + 3.8vw);
  }
  .landing-slider-container h1::before {
    left: -5rem;
    width: 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .landing-slider-container h1 {
    left: 12vw;
    max-width: 70vw;
    font-size: calc(20px + 4vw);
    top: 35%;
  }
  .landing-slider-container h1::before {
    left: -12vw;
    width: 9.5vw;
  }
  .landing-slide-text {
    width: 100vw;
    bottom: 5rem;
    padding-left: 20vw;
    padding-right: 20vw;
    text-align: center;
    max-width: unset;
    left: 0;
  }
  .landing-slide-content .circle-bg {
    left: -50%;
    top: -3rem;
    width: 200vw;
  }
  .landing-slide-content .circle-bg circle {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .landing-slide-title {
    margin: 0.25rem 0 0.25rem;
    margin: var(--space-1) 0;
  }
  .landing-slide-content .cta-button {
    margin-top: 0.4rem;
  }
  #home .slick-dots li {
    padding: 2px;
  }
  #home .slick-dots {
    bottom: 2rem;
	text-align: center;  
  }
  .landing-slide-content .cta-button {
    font-size: 15px;
  }
}
@media only screen and (max-width: 479px) {
  .landing-slider-container h1 {
    top: 30%;
  }
  .landing-slide-text {
    bottom: 5.5rem;
  }
  .landing-slide-content .circle-bg {
    transform: translate(0, -6%);
    -webkit-transform: translate(0, -6%);
  }
  .landing-slide-content .cta-button {
    font-size: 14px;
  }
  .landing-slide-text {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}
/*------------------------------------*\
  Animations
\*------------------------------------*/
.landing-slide .landing-slide-pre-title, .landing-slide .landing-slide-title, .landing-slide .feature-overview, .landing-slide .cta-button, .landing-slide .circle-bg {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.landing-slide .circle-bg {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}
.landing-slide.slick-current .landing-slide-pre-title, .landing-slide.slick-current .landing-slide-title, .landing-slide.slick-current .feature-overview, .landing-slide.slick-current .cta-button {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.landing-slide.slick-current .circle-bg {
  -webkit-animation-name: fadeInUpRight;
  animation-name: fadeInUpRight;
  -webkit-animation-delay: .25s;
  animation-delay: .25s;
}
.landing-slide.slick-current .landing-slide-pre-title {
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}
.landing-slide.slick-current .landing-slide-title {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}
.landing-slide.slick-current .feature-overview {
  -webkit-animation-delay: .65s;
  animation-delay: .65s;
}
.landing-slide.slick-current .cta-button {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
@media only screen and (max-width: 767px) {
  .landing-slide.slick-current .landing-slide-pre-title, .landing-slide.slick-current .landing-slide-title, .landing-slide.slick-current .feature-overview, .landing-slide.slick-current .cta-button, .landing-slide.slick-current .circle-bg {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  .landing-slide.slick-current .landing-slide-pre-title {
    -webkit-animation-delay: .95s;
    animation-delay: .95s;
  }
  .landing-slide.slick-current .landing-slide-title {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
  }
  .landing-slide.slick-current .feature-overview {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .landing-slide.slick-current .cta-button {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
  }
}
/* Keyframes */
@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes fadeInUpRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes fadeInUpRight{0%{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}100%{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{0%{opacity:1}100%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .landing-slide-text {
        display: none !important;
    }
}