@import url(main.css);
/*Keyframes*/
@keyframes appear {
  0% {
    transform: scaleX(0.5) scaleY(0.5) translateY(0); }
  80% {
    transform: scaleX(0.8) scaleY(0.8) translateY(5px); }
  100% {
    transform: scaleX(1) scaleY(1) translateY(0); } }
@-webkit-keyframes spincw {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes spincw {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
@-webkit-keyframes spinccw {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(-360deg); } }
@keyframes spinccw {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(-360deg); } }
@keyframes pop {
  0% {
    transform: scale(0.75, 0.75); }
  100% {
    transform: scale(1, 1); } }
@keyframes dash {
  from {
    stroke-dashoffset: 100; }
  to {
    stroke-dashoffset: 0; } }
@-webkit-keyframes fall {
  0% {
    -webkit-transform: translateY(inherit, 0em);
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    -webkit-transform: translate(inherit, 30em);
    opacity: 1; } }
@keyframes fall {
  0% {
    transform: translateY(0em);
    opacity: 0; }
  30% {
    opacity: 1; }
  100% {
    transform: translateY(30em);
    opacity: 1; } }
@keyframes pump {
  0% {
    transform: scale(1, 1); }
  20% {
    transform: scale(1, 1.1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%; }
  60% {
    transform: scale(1.1, 1); } }
@keyframes draw {
  0% {
    stroke-dashoffset: -1000;
    fill-opacity: 0; }
  30% {
    stroke-dashoffset: 000;
    fill-opacity: 0; }
  31% {
    fill-opacity: 1; }
  32% {
    fill-opacity: 0; }
  33% {
    fill-opacity: 1; }
  34% {
    fill-opacity: 0; }
  35% {
    fill-opacity: 1; }
  100% {
    fill-opacity: 1; } }
a {
  color: inherit; }
  a:hover {
    color: inherit;
    text-decoration: none; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }

.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }

h2, h3, h4, h5, h6 {
  font-weight: 100; }

h2 {
  font-size: 19pt;
  color: #645950; }

h4 {
  font-size: 24pt; }

.orange {
  color: #ed8026; }

.teal {
  color: #19abb5; }

.purple {
  color: #5d2060; }

.white {
  color: #fff; }

.btn.btn-orange {
  color: #fff;
  background-color: #ed8026;
  border: 1px solid #ed8026; }

.flex-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center; }
  .flex-wrapper h2 {
    margin-bottom: 1.5em;
    text-align: left;
    margin-left: 2em; }
    .flex-wrapper h2:before {
      content: url(../img/checkbox.svg);
      width: 1.5em;
      display: block;
      float: left;
      margin-right: 0.5em;
      margin-left: -2em; }
  @media (min-width: 50em) {
    .flex-wrapper h2 {
      margin-bottom: 1.5em;
      padding: 0 1em;
      text-align: left; }
      .flex-wrapper h2:before {
        margin-top: 0;
        margin-left: 0; } }

html, body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  font: 11pt/150% sans-serif; }

body {
  padding-bottom: 0;
  background-color: #fff;
  color: #645950; }

nav.super-top-nav {
  background-color: #645950;
  padding: 13px 21px 13px 11px;
  overflow: hidden; }
  nav.super-top-nav .sm-logo {
    width: 7.85vw;
    min-width: 100px;
    max-width: 117px;
    float: left; }
  nav.super-top-nav .login {
    float: right;
    font-weight: 400;
    color: #fff; }
nav#site-nav {
  margin-top: -4.8em;
  width: 100vw;
  font-size: 2.5vw;
  line-height: 135%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease; }
  nav#site-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    width: 100vw;
    list-style: none;
    text-align: center;
    padding-left: 0; }
    nav#site-nav ul li {
      display: flex;
      justify-content: center;
      align-content: center;
      flex-direction: column;
      width: 25vw;
      padding: 1em 1.5em;
      border: 1px solid #645950;
      background-color: rgba(255, 255, 255, 0.7); }
      nav#site-nav ul li a {
        color: inherit; }
  nav#site-nav.docked {
    position: fixed;
    top: 0;
    width: 100vw;
    margin-top: 0;
    z-index: 10; }
    nav#site-nav.docked ul {
      margin-bottom: 0; }
      nav#site-nav.docked ul li {
        background-color: #19abb5;
        color: #fff; }
        nav#site-nav.docked ul li.active {
          background-color: #0e6864; }
  @media (min-width: 50em) {
    nav#site-nav {
      margin-top: -4em;
      font-size: 15pt; }
      nav#site-nav ul li {
        min-height: 4em;
        padding: 0.5vw 7vh; }
      nav#site-nav.docked {
        min-height: 0;
        font-size: 10pt; } }

header.hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 85vh;
  padding: 0vw 11vw 0vw;
  background: url(../img/topbanner.png) center center no-repeat;
  background-size: cover; }
  header.hero-header .logo {
    width: 200px;
    margin-top: -11vw;
    display: block; }
  header.hero-header h2 {
    text-align: center;
    margin-top: 25vh;
    font-size: 23pt;
    color: #fff; }
  @media (min-width: 50em) {
    header.hero-header {
      flex-direction: row; }
      header.hero-header .logo, header.hero-header h2 {
        margin-top: -21vw; }
      header.hero-header .logo {
        float: left; }
      header.hero-header h2 {
        width: 45vw;
        max-width: 12em;
        float: left;
        text-align: left;
        margin-left: 3vw;
        padding-top: 1em;
        color: #645950; } }
  @media (max-height: 30em) {
    header.hero-header {
      height: 87vh;
      flex-direction: row; }
      header.hero-header .logo, header.hero-header h2 {
        margin-top: -18vw; }
      header.hero-header .logo {
        float: left; }
      header.hero-header h2 {
        width: 45vw;
        max-width: 12em;
        float: left;
        text-align: left;
        margin-left: 3vw;
        color: #645950;
        font-size: 18pt; } }
  header.hero-header.clouds {
    height: 65vh;
    background-image: url(../img/AdobeStock_56474149.jpeg);
    background-size: cover;
    background-position: center center;
    border-bottom: #0e6864 1em solid; }
    header.hero-header.clouds h2, header.hero-header.clouds p {
      max-width: 32em;
      text-align: center; }
    header.hero-header.clouds h2 {
      margin-top: -15vw;
      margin-bottom: 1em; }
    @media (min-width: 50em) {
      header.hero-header.clouds {
        flex-direction: column; } }

section {
  display: block;
  padding: 10vh 10vw;
  overflow: hidden;
  text-align: center; }
  section img {
    display: block;
    max-width: 80vw;
    margin: 0 auto; }
  section p {
    font-size: 11.5pt;
    font-weight: 100; }
  section a.sign-up {
    margin: 50px auto; }
  @media (min-width: 50em) {
    section {
      display: flex;
      flex-direction: column;
      justify-content: center; } }
  section.yellow {
    background-color: #eab226;
    color: #fff; }
  section.purple {
    background-color: #5d2060;
    color: #fff; }
    section.purple img {
      height: 15vw; }
  section.teal {
    background-color: #19abb5;
    color: #fff; }
  section.orange {
    background-color: #ed8026;
    color: #fff; }
  section.ribbon {
    align-items: center; }
    section.ribbon img {
      width: 21vw;
      margin-bottom: 2em; }
    section.ribbon p {
      font-size: 13.5pt;
      line-height: 22.5pt; }
    @media (min-width: 50em) {
      section.ribbon {
        padding: 2vw 15vw 2vw 15vw; }
        section.ribbon img, section.ribbon p {
          float: left; }
        section.ribbon img {
          height: 10vw;
          margin-bottom: 0; }
        section.ribbon p {
          display: inline-block;
          text-align: left;
          margin-left: 3em;
          width: 70vw; } }
  section#product {
    flex-direction: column; }
    section#product .flex-wrapper {
      flex-direction: column; }
      section#product .flex-wrapper .description {
        margin-bottom: 2em; }
        section#product .flex-wrapper .description h2 {
          text-align: center;
          margin: 0 auto 0.5em auto; }
    @media (min-width: 50em) {
      section#product .flex-wrapper {
        flex-direction: row; }
        section#product .flex-wrapper .description {
          float: left;
          width: 30vw;
          margin: 0 2em 2em 2em; }
          section#product .flex-wrapper .description h2 {
            font-size: 3vh;
            min-height: 2em;
            padding: 0 1em; }
            section#product .flex-wrapper .description h2:before {
              display: none; }
      section#product img {
        height: 35vw;
        margin: 0 auto; }
      section#product .btn {
        margin: 2em auto; } }
  section#tmc {
    flex-direction: column;
    padding-bottom: 0;
    padding-top: 1em;
    border-bottom: 1em solid #5d2060; }
    section#tmc .description {
      margin-bottom: 1.5em; }
    section#tmc h2 {
      padding: 0 1.5em; }
    section#tmc .flex-wrapper h2 {
      margin-bottom: 1.5em;
      text-align: left;
      margin-left: 2em; }
      section#tmc .flex-wrapper h2:before {
        width: 1.5em;
        float: left;
        margin-right: 0.5em;
        margin-left: -2em; }
    section#tmc img {
      position: relative;
      bottom: -1em;
      height: 250px;
      margin-top: 1em;
      margin-bottom: -1em; }
    @media (min-width: 50em) {
      section#tmc .flex-wrapper {
        flex-direction: row-reverse; }
        section#tmc .flex-wrapper h2 {
          margin-bottom: 1.5em;
          margin-left: 3em;
          padding: 0 1em;
          text-align: left; }
          section#tmc .flex-wrapper h2:before {
            margin-top: 0;
            margin-left: 0; }
      section#tmc img {
        height: 31vw;
        bottom: -3vw; } }
  section#agencies-agents {
    flex-direction: column;
    align-items: center;
    background-image: url(../img/AdobeStock_56474149.jpeg);
    background-size: cover;
    background-position: center center; }
    section#agencies-agents .flex-wrapper {
      margin-top: 1.5em; }
      section#agencies-agents .flex-wrapper h2:before {
        content: url(../img/checkbox-purple.svg); }
    @media (min-width: 50em) {
      section#agencies-agents .flex-wrapper {
        display: inline-flex;
        margin-top: 1.5em; } }
  section#platform-providers {
    display: block; }
    section#platform-providers h2 {
      margin-bottom: 1em; }
    section#platform-providers p {
      line-height: 137%; }
    @media (min-width: 50em) {
      section#platform-providers {
        padding: 10vh 10vw; }
        section#platform-providers .description {
          float: left;
          width: 36vw;
          margin-top: 3vw;
          text-align: left; }
        section#platform-providers .flex-wrapper {
          display: inline-flex;
          margin-top: 1.5em; }
        section#platform-providers img {
          float: right;
          width: 40vw; } }
  section#workflow {
    padding-bottom: 0;
    border-bottom: 12px solid #d33830; }
    @media (min-width: 50em) {
      section#workflow {
        flex-direction: column; } }
  section#examples {
    background-image: url(../img/AdobeStock_105026952.jpeg);
    background-size: cover;
    background-position: center center; }
    section#examples .description {
      overflow: hidden;
      padding: 0 2.9em 2em;
      background-color: rgba(255, 255, 255, 0.7);
      border-radius: 10px;
      border: 1px solid #645950; }
    section#examples img {
      width: 35vmax;
      clear: both; }
    section#examples .vs {
      display: inline-block;
      font-weight: 500;
      margin: 0.5em auto;
      font-size: 7vmax; }
    @media (min-width: 50em) {
      section#examples img {
        width: 25vmax;
        float: left; }
        section#examples img:last-of-type {
          float: right; }
      section#examples .vs {
        margin: 2em 2vw;
        font-size: 4vmax; } }
  section#four-corners {
    flex-direction: column;
    border-bottom: 1em #645950 solid; }
    section#four-corners .description {
      margin-bottom: 2em; }
    section#four-corners .masonry-layout_panel .masonry-layout_panel-content {
      color: #fff;
      overflow: hidden; }
      section#four-corners .masonry-layout_panel .masonry-layout_panel-content h4 {
        font-size: 5vw;
        font-weight: 500; }
      section#four-corners .masonry-layout_panel .masonry-layout_panel-content ul {
        display: block;
        list-style: none;
        padding-left: 0; }
        section#four-corners .masonry-layout_panel .masonry-layout_panel-content ul li {
          text-align: center;
          padding-right: 2em; }
          section#four-corners .masonry-layout_panel .masonry-layout_panel-content ul li:before {
            content: " \2219"; }
    section#four-corners .one {
      background: url(../img/AdobeStock_115370244.jpeg) center center no-repeat;
      background-size: cover; }
    section#four-corners .two {
      background: url(../img/AdobeStock_110244546.jpeg) center center no-repeat;
      background-size: cover; }
    section#four-corners .three {
      background: url(../img/AdobeStock_67446820.jpeg) center center no-repeat;
      background-size: cover; }
    section#four-corners .four {
      background: url(../img/AdobeStock_110451942.jpeg) center center no-repeat;
      background-size: cover; }

body#contact h2 {
  margin: 2em auto;
  text-align: center; }
body#contact form {
  max-width: 32em;
  margin: 2em auto;
  padding: 0 1em; }
  body#contact form label {
    display: block;
    clear: both;
    font-weight: 400;
    font-size: 12pt; }
  body#contact form > div.move {
    position: relative;
    margin-bottom: 1em; }
    body#contact form > div.move label {
      color: #999;
      font-weight: 300; }
    body#contact form > div.move input, body#contact form > div.move textarea {
      width: 90%;
      border: 2px solid #bcafa4;
      border-radius: 5px;
      background: none;
      position: relative;
      top: 0;
      left: 0;
      z-index: 1;
      padding: 1em 1.5em 0.5em 1.5em;
      outline: 0; }
      body#contact form > div.move input:valid, body#contact form > div.move textarea:valid {
        background: white; }
      body#contact form > div.move input:focus, body#contact form > div.move textarea:focus {
        border-color: #f06d06; }
      body#contact form > div.move input:focus + label, body#contact form > div.move textarea:focus + label {
        color: #ed8026;
        font-size: 70%;
        padding: 1px 6px;
        z-index: 2;
        text-transform: uppercase; }
    body#contact form > div.move input:focus + label, body#contact form > div.move textarea:focus + label {
      top: 0.1em;
      left: 1.5em; }
    body#contact form > div.move label {
      transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s, left 0.2s;
      position: absolute;
      top: 0.5em;
      bottom: 0;
      padding: 0.5em 1.5em;
      width: 100%;
      height: 2em; }
    body#contact form > div.move textarea {
      display: block;
      resize: vertical; }
  body#contact form input[type="checkbox"], body#contact form input[type="radio"] {
    display: none; }
    body#contact form input[type="checkbox"] + label, body#contact form input[type="radio"] + label {
      display: inline-block;
      margin-top: 0.75em;
      vertical-align: middle;
      clear: none;
      cursor: pointer; }
      body#contact form input[type="checkbox"] + label:before, body#contact form input[type="radio"] + label:before {
        content: "";
        display: block;
        margin-right: 0.5em;
        margin-top: -0.3em;
        width: 2em;
        height: 2em;
        border: 1px solid #bcafa4;
        float: left;
        vertical-align: middle; }
    body#contact form input[type="checkbox"]:checked + label:before, body#contact form input[type="radio"]:checked + label:before {
      content: url("../img/check-mark.svg");
      border-color: #ed8026; }
  body#contact form input[type="radio"] {
    float: left; }
    body#contact form input[type="radio"] + label {
      float: left;
      margin-right: 1em; }
      body#contact form input[type="radio"] + label:before {
        content: "";
        border-radius: 2em; }
    body#contact form input[type="radio"]:checked + label:before {
      content: url("../img/check-dot.svg");
      padding-top: 1px; }
  body#contact form .form-wrapper {
    padding: 0 1em;
    display: block; }
    body#contact form .form-wrapper + label {
      margin-top: 1em; }
  body#contact form .btn {
    margin: 1em auto;
    display: block;
    max-width: 6em; }

footer {
  background-color: #645950;
  text-align: center;
  overflow: hidden;
  font-size: 9pt;
  padding: 2em 1.5em; }
  footer a, footer p {
    color: #fff; }
  footer a {
    text-decoration: none; }
    footer a:hover {
      color: #fff; }
  footer ul {
    display: inline-block;
    clear: both;
    margin: 0 auto;
    padding-left: 0; }
    footer ul li {
      float: left;
      list-style-type: none;
      padding-right: 1em; }
  footer .social-links img {
    width: 4em; }

.masonry-layout {
  column-count: 2;
  column-gap: 0; }

.masonry-layout_panel {
  break-inside: avoid;
  padding: 0.5em; }

.masonry-layout_panel-content {
  padding: 10%;
  border-radius: 0; }

.earth-rotate {
  position: relative;
  bottom: 0em;
  height: 50vw;
  margin-top: 1em;
  margin-bottom: -1em; }
  @media (min-width: 50em) {
    .earth-rotate {
      max-height: 20em; } }

.wheel, .orb {
  -webkit-animation: spincw 20s infinite linear;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-delay: 0.2s;
  animation: spincw 20s infinite linear;
  transform-origin: 50% 50%;
  animation-delay: 0.2s; }

.orb {
  animation: spinccw 20s infinite linear;
  -webkit-animation: spinccw 20s infinite linear; }

.earth-flat {
  width: 80vw; }
  @media (min-width: 50em) {
    .earth-flat {
      width: 44vmax; } }

.lines path {
  animation: dash 1.2s infinite linear; }

.profile {
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  animation: appear 2s infinite;
  animation-timing-function: cubic-bezier(0.63, 0.09, 0.3, 1.43);
  animation-fill-mode: forwards;
  transform: scale(0); }

#profile1 {
  animation-delay: 0.5s; }

#profile2 {
  animation-delay: 1s; }

#profile3 {
  animation-delay: 1.5s; }

#profile4 {
  animation-delay: 2s; }

#profile5 {
  animation-delay: 2.5s; }

#profile6 {
  animation-delay: 3s; }

#profile7 {
  animation-delay: 3.5s; }

#profile8 {
  animation-delay: 4s; }

#profile9 {
  animation-delay: 4.5s; }

#profile10 {
  animation-delay: 5s; }

.pause * {
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -o-animation: none !important;
  animation: none !important; }

.nope {
  display: none !important;
  position: absolute !important; }

.fallback {
  display: none !important; }
  .fallback.yep {
    display: block !important; }

#infographic {
  background-color: #bcafa4;
  text-align: center; }
  #infographic main {
    max-width: 80em;
    padding: 1em;
    margin: 0 auto; }
  #infographic h2 {
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    clear: both;
    margin: 0.75em 0 auto;
    font-size: 7vw;
    line-height: 1em; }
    #infographic h2.title {
      font-size: 8vw; }
    #infographic h2.purple {
      color: #5d2060; }
    #infographic h2.orange {
      color: #ed8026; }
    #infographic h2.teal {
      color: #19abb5; }
  #infographic .info-box {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10; }
    #infographic .info-box p {
      font-size: 14px;
      line-height: 1.4em;
      font-weight: 100;
      text-align: center;
      background-color: #fff;
      border: 2px solid #0e6864;
      border-radius: 10px;
      padding: 1em 1.5em;
      margin: 1em auto;
      width: 80vw;
      max-width: 450px; }
      @media (min-width: 50em) {
        #infographic .info-box p {
          width: 45vw; } }
    @media (min-width: 50em) {
      #infographic .info-box.left p {
        float: left;
        clear: right;
        right: initial; } }
    @media (min-width: 50em) {
      #infographic .info-box.right p {
        float: right;
        clear: left;
        left: initial; } }
    #infographic .info-box.center p {
      left: 1px;
      right: 1px;
      clear: both;
      margin: inherit auto; }
    #infographic .info-box.large p {
      font-size: 18px;
      line-height: auto; }
      @media (min-width: 50em) {
        #infographic .info-box.large p {
          width: 70vw; } }
    #infographic .info-box.small p {
      font-size: 14px;
      line-height: auto; }
  #infographic .svg-wrapper {
    position: relative; }
  #infographic .agents, #infographic .earth-orbit, #infographic .cloud, #infographic .rain, #infographic .funnel, #infographic .orb-fall, #infographic .laptop-rates, #infographic .markup, #infographic .logo, #infographic .fallback {
    display: block;
    margin: 0 auto;
    clear: both;
    width: 80vw; }
    @media (min-width: 50em) {
      #infographic .agents, #infographic .earth-orbit, #infographic .cloud, #infographic .rain, #infographic .funnel, #infographic .orb-fall, #infographic .laptop-rates, #infographic .markup, #infographic .logo, #infographic .fallback {
        width: 50vw; } }
  #infographic .agents {
    margin-top: 12em; }
  #infographic .earth-orbit {
    margin-top: 8em; }
    #infographic .earth-orbit ~ .info-box {
      top: -8em; }
  #infographic .cloud {
    margin-top: 16em; }
    @media (min-width: 50em) {
      #infographic .cloud {
        margin-top: 11em; } }
  #infographic .rain, #infographic .rain + .fallback {
    margin-top: -8vw; }
    #infographic .rain + .info-box, #infographic .rain + .fallback + .info-box {
      top: 12vw; }
      @media (min-width: 50em) {
        #infographic .rain + .info-box, #infographic .rain + .fallback + .info-box {
          right: initial; } }
  #infographic .funnel {
    margin-top: -21vw; }
    #infographic .funnel + .info-box {
      margin-top: -27vw; }
    @media (min-width: 50em) {
      #infographic .funnel {
        top: -21vw; } }
  #infographic .orb-fall, #infographic .orb-fall + .fallback {
    margin-top: -4vw; }
    @media (min-width: 50em) {
      #infographic .orb-fall, #infographic .orb-fall + .fallback {
        margin-top: -5vw; } }
    #infographic .orb-fall + .info-box, #infographic .orb-fall + .fallback + .info-box {
      top: 27vw;
      z-index: 2; }
      @media (min-width: 50em) {
        #infographic .orb-fall + .info-box, #infographic .orb-fall + .fallback + .info-box {
          right: initial; } }
  #infographic .laptop-rates {
    position: relative;
    clear: both;
    height: 18em;
    top: -26vw;
    margin: 0 auto; }
    @media (min-width: 50em) {
      #infographic .laptop-rates {
        top: -20vw; } }
    #infographic .laptop-rates ~ .info-box {
      top: 10vw;
      z-index: 2; }
  @media (min-width: 50em) {
    #infographic .markup {
      margin-top: 10em; } }
  #infographic .logo {
    margin: 3em auto 10em; }

#earth_wheel g#outer-wheel {
  -webkit-animation: spinccw 20s infinite linear;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-delay: 0.2s;
  animation: spinccw 20s infinite linear;
  transform-origin: 50% 50%;
  animation-delay: 0.2s; }
  #earth_wheel g#outer-wheel .orb {
    animation: spincw 20s infinite linear;
    -webkit-animation: spincw 20s infinite linear; }
#earth_wheel g#inner-wheel {
  -webkit-animation: spincw 20s infinite linear;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-delay: 0.2s;
  animation: spincw 20s infinite linear;
  transform-origin: 50% 50%;
  animation-delay: 0.2s; }
  #earth_wheel g#inner-wheel .orb {
    animation: spinccw 20s infinite linear;
    -webkit-animation: spinccw 20s infinite linear; }

#cloud #spinny_orbs .orb {
  -webkit-animation: spincw 5s infinite linear;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-delay: 0.05s;
  animation: spincw 5s infinite linear;
  transform-origin: 50% 50%;
  animation-delay: 0.05s; }
  #cloud #spinny_orbs .orb:nth-child(even) {
    -webkit-animation: spinccw 5s infinite linear;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-delay: 0.05s;
    animation: spinccw 5s infinite linear;
    transform-origin: 50% 50%;
    animation-delay: 0.05s; }

#rain .orb {
  animation: fall 1.5s ease-in infinite;
  animation-delay: 0s; }
  #rain .orb:nth-child(even) {
    transform: translateY(-100px);
    animation-delay: 0.3s !important; }
  #rain .orb:nth-child(2n-1) {
    transform: translateY(-110px);
    animation-delay: 0.6s !important; }
  #rain .orb:nth-child(3n-1) {
    transform: translateY(-120px);
    animation-delay: 0.9s !important; }
  #rain .orb:nth-child(4n-1) {
    transform: translateY(-130px);
    animation-delay: 1.2s !important; }
  #rain .orb:nth-child(5n-1) {
    transform: translateY(-140px);
    animation-delay: 1.5s !important; }

#funnel-cogs .gear {
  -webkit-animation: spincw 10s infinite linear;
  -webkit-transform-origin: 50% 50%;
  animation: spincw 10s infinite linear;
  transform-origin: 50% 50%; }
  #funnel-cogs .gear:nth-child(even) {
    -webkit-animation: spinccw 10s infinite linear;
    -webkit-transform-origin: 50% 50%;
    animation: spinccw 10s infinite linear;
    transform-origin: 50% 50%; }
#funnel-cogs #funnel_top, #funnel-cogs #funnel_body, #funnel-cogs #reflection {
  -webkit-animation: pump 2s ease-in infinite;
  animation: pump 2s ease-in infinite; }

#falling_orbs .orb.fall {
  -webkit-animation: fall 2s linear infinite;
  -moz-animation: fall 2s linear infinite;
  animation: fall 2s linear infinite;
  transform-origin: 50% 50%;
  transition-delay: 2s; }

.laptop-rates {
  position: relative;
  clear: both;
  height: 35em;
  top: -26vw;
  margin: 0 auto; }
  .laptop-rates .laptop {
    position: absolute;
    left: 1px;
    right: 1px;
    max-width: 100%;
    z-index: 1; }
  .laptop-rates .search-header {
    max-width: 75%;
    margin-top: 1.5vw;
    z-index: 3; }
  .laptop-rates .search-results {
    width: 60vw;
    height: 31vw;
    margin: 0 auto;
    overflow-y: auto;
    background-image: url("../img/search-results.png");
    background-attachment: fixed;
    background-position: 1.5em 0px;
    background-repeat: repeat-y;
    background-size: 90%; }
    @media (min-width: 50em) {
      .laptop-rates .search-results {
        width: 38vw;
        height: 20vw;
        background-position: 28vw 0px;
        background-size: 48vw; } }
    .laptop-rates .search-results img {
      max-width: 100%; }

svg#line1, svg#line3 {
  position: absolute;
  width: 28vw;
  top: 5em;
  right: 20vw;
  stroke-dashoffset: 000;
  stroke-dasharray: 1000; }
  @media (min-width: 50em) {
    svg#line1, svg#line3 {
      height: 32vw;
      right: 20em;
      width: auto; } }

[data-aos="draw"] {
  fill-opacity: 0; }
  [data-aos="draw"].aos-animate {
    animation: draw 5s infinite; }

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