@import url("https://use.typekit.net/wbk2hga.css");
body {
  font-family: open-sans, sans-serif;
  width: 100vw;
  max-width: 100vw;
  margin: 0px;
  -webkit-appearance: none;
}

input {
  -webkit-appearance: none;
}

form {
  -webkit-appearance: none;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 16px;
  color: #6A6A6A;
  font-weight: 500;
}

section {
  overflow-x: hidden;
  padding: 20px;
  width: 100vw;
  margin-right: none;
}
section .section-container {
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;
}

.flex-start, #section-four .feature {
  display: flex;
  justify-content: start;
}

.flex-center, #section-four #feature-container {
  display: flex;
  justify-content: center;
}

.flex-between, #section-three .section-container, .top-nav {
  display: flex;
  justify-content: space-between;
}

.align-center, #section-four .feature, #section-three .section-container, .top-nav {
  align-items: center;
}

a {
  text-decoration: none;
}

.button-full, form input[type=submit] {
  background-color: #3C429B;
  padding: 8px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 12px;
}

.top-nav {
  background-color: white;
  width: calc(100vw - 40px);
  padding: 20px;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.top-nav .logo-container img {
  height: 30px;
}
.top-nav .logo-container span {
  padding-top: 2px;
  margin: 0px 0px 0px 10px;
  font-size: 28px;
  font-family: bryant-web, sans-serif;
  color: #3C429B;
  font-weight: bold;
}
.top-nav .logo-container span span {
  margin: 0px 0px 0px 0px;
  color: black;
}

form input[type=email] {
  padding: 10px 15px;
  border-radius: 8px;
  border: solid #6A6A6A 1px;
  outline-color: #3C429B;
  width: 200px;
}
form input[type=submit] {
  outline: none;
  border: none;
  padding: 11.5px 20px;
  margin: 10px 0px;
}

.submit-result {
  position: absolute;
}

.loader {
  display: none;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #555;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#section-1 {
  max-width: calc(100vw - 40px);
  margin-top: 140px;
}
#section-1 h1 {
  margin-bottom: 0px;
  font-size: 42px;
  font-family: bryant-web, sans-serif;
  color: #3C429B;
}
#section-1 h1 span {
  color: black;
}
#section-1 p {
  margin-top: 0px;
  color: #6A6A6A;
  font-size: 20px;
  max-width: 250px;
}
#section-1 img {
  margin-top: 100px;
  width: 140vw;
  margin-left: -30vw;
}

@media only screen and (min-width: 601px) {
  #section-1 {
    height: 720px;
  }
  #section-1 img {
    width: 500px;
    min-width: 500px;
    margin-bottom: -435px;
  }
  #section-1 #mobile-car-graphic {
    display: none;
  }
  #section-1 .section-container {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 600px) {
  #full-car-graphic {
    display: none;
  }
}
#section-two {
  background-color: #3C429B;
  margin-top: -150px;
  color: white;
  text-align: center;
  padding: 70px 0px 100px 0px;
}
@media only screen and (max-width: 600px) {
  #section-two {
    padding: 20px 0px 50px 0px;
  }
}

.blue-card, #section-five p, #section-two p {
  padding: 20px;
  width: calc(100% - 40px);
  background-color: #5359BA;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#section-three {
  max-width: calc(100vw - 40px);
  padding-bottom: 60px;
}
#section-three .text-container {
  max-width: 400px;
  padding-bottom: 150px;
}
#section-three img {
  width: 300px;
  max-width: 40vw;
}
@media only screen and (max-width: 600px) {
  #section-three {
    padding-bottom: 0px;
    text-align: center;
  }
  #section-three .text-container {
    max-width: none;
    padding-bottom: 0px;
  }
  #section-three .section-container {
    display: block;
  }
  #section-three img {
    margin-top: 20px;
    max-width: 300px;
    width: calc(100vw - 40px);
  }
  #section-three .image-container {
    max-height: 500px;
    overflow-y: hidden;
  }
}

#section-four {
  max-width: calc(100vw - 40px);
  margin-top: -45px;
  text-align: center;
}
#section-four .mask {
  box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.07);
  width: 100vw;
  height: 50px;
  background-color: white;
  position: absolute;
  left: 0;
  margin-top: -42px;
}
#section-four #feature-container {
  flex-wrap: wrap;
}
#section-four .feature {
  text-align: left;
  padding: 0px 20px;
  height: 80px;
  margin: 10px;
  min-width: calc(50% - 60px);
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
}
#section-four .feature span {
  font-size: 36px;
  color: #3C429B;
}
#section-four .feature img {
  width: 32px;
}
#section-four .feature p {
  margin-left: 20px;
}
@media only screen and (max-width: 750px) {
  #section-four .feature {
    width: calc(100vw - 40px);
    margin: 10px 0px;
    max-width: none;
  }
}

#section-five-container {
  padding-top: 80px;
  margin-top: -80px;
}

#section-five {
  max-width: calc(100vw - 40px);
  background-color: #3C429B;
  text-align: center;
  color: white;
}
#section-six {
  max-width: calc(100vw - 40px);
  height: 300px;
  padding-top: 50px;
  text-align: center;
}
#section-six input {
  width: 100%;
  max-width: 300px;
}
#section-six input[type=email] {
  width: calc(100% - 32px);
  max-width: 270px;
}/*# sourceMappingURL=styles.css.map */