.horizontal-slide-from-right-to-left {
  animation: horizontal-slide-from-right-to-left linear 10s infinite;
}

.horizontal-slide-from-left-to-right {
  animation: horizontal-slide-from-left-to-right linear 10s infinite;
}

.text-small {
      font-size: larger;
        padding-top: 16px;
        font-style: italic;
}

.swiper-wrapper {
  display: flex;
  justify-items: center;
  align-items: center;
} 
.text-justify{
  text-align: justify;
}

@import url(https://fonts.googleapis.com/css?family=Roboto:100,300);

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.intro {
  position: relative;
  height: auto;
  transform: translateZ(0);
  background-image: linear-gradient(35deg, #99522e, #99522e);
}

.intro img {
  position: relative;
  display: block;
  width: 100%;
  height: 500px;
  z-index: 1;
  mix-blend-mode: multiply;
}

.comparison-button > div > label {
  padding-right: 20px;
}

@media (max-width: 768px) {




  ol.steps {
      margin: 0px 0 7rem !important;
    }
.comparison-button {
      flex-direction: column;
}
  .pricing-buttons {
    flex-direction: column;
  }
.intro img {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    z-index: 1;
    mix-blend-mode: multiply;
  }
}



.intro .caption {
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
  color: white;
}

.intro .overlay {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.intro .overlay svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.copy {
  width: 100%;
  max-width: 60rem;
  height: 200%;
  margin: 0 auto;
  padding: 10vw 5vw 0 5vw;
  color: #476d80;
  font-weight: 300;
}

.copy p {
  margin-bottom: 1.5rem;
}

.copy .teaser {
  font-size: 1.6rem;
  text-align: center;
}

@keyframes horizontal-slide-from-right-to-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes horizontal-slide-from-left-to-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.sticky-menu.nav-hidden {
  animation: fadeInDown 0.9s 1;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes rotate-360{
  0%{
    transform: rotate(0deg)
  }

  100%{
    transform: rotate(360deg)
  }
}

.rotate-360{
  animation: rotate-360 20s linear infinite;
}


input:checked~.toggle_dot {
  transform: translateX(100%);
}

/* .pricing-cta {
  display: contents;
  align-items: center;
  justify-content: flex-end;
  bottom: 0;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  position: absolute;
  bottom: 0;

} */

.pricing-cta {
      position: absolute;
      bottom: 0;
      display: flex;
        justify-content: space-around;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
          bottom: 0;
          
    
      
}


