* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: #0075be;
  font-family: "Helvetica Neue", "Hevetica";
}

nav {
  display: flex;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
nav.nav-up {
  top: -74px !important;
}
nav.nav-down {
  top: 0 !important;
}
nav a {
  color: white;
  text-decoration: none;
  flex: 1;
  font-weight: bold;
  text-shadow: 2px 2px black;
  cursor: pointer;
}

img {
  width: 100%;
  display: block;
}

.infinity {
  max-width: 600px;
  margin: 0 auto;
}

.flex {
  display: flex;
  max-width: 700px;
  margin: 0 auto 10px auto;
}
.flex .flex-1 {
  flex: 1;
  font-size: 14px;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .flex {
    max-width: 620px;
    flex-direction: column;
  }
}
h2 {
  text-align: center;
}

.yellow {
  padding: 20px;
  background: #febe10;
}

.yellow-text {
  color: #febe10 !important;
}

.compare {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.bottom-text {
  max-width: 400px;
  margin: 0 auto;
}

footer {
  padding: 20px;
  text-align: center;
}
footer a {
  text-decoration: none;
  color: black;
}

.black {
  color: black;
}

.bar {
  height: 18px;
  width: 2px;
  position: relative;
  top: 5px;
  background: #febe10;
  display: inline-block;
}

.mobile-menu-trigger {
  width: 22px;
  margin: 20px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999999999999;
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .mobile-menu-trigger {
    display: block;
  }
  .desktop {
    display: none;
  }
  nav {
    background: none;
  }
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  width: 100%;
  height: 100%;
  color: white;
  background: #40607c;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.mobile-nav.open {
  -webkit-transform: translate3d(0, 0, 0);
}
.mobile-nav a {
  font-weight: bold;
  font-size: 32px;
  margin: 50px auto;
  cursor: pointer;
}

.square-text {
  max-width: 550px;
  margin: 40px auto;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  border: 1.5px solid #febe10;
}
.square-text.inset {
  border: none;
  -moz-box-shadow: inset 0 0 7px #000000;
  -webkit-box-shadow: inset 0 0 7px #000000;
  box-shadow: inset 0 0 7px #000000;
  background: white;
}

.active {
  color: #0075be;
  text-shadow: none;
}

.footer {
  box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.75);
  padding: 0;
}

.footer-bottom {
  padding: 0;
  background: #0075be;
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  display: flex;
}
.footer-bottom a,
.footer-bottom div,
.footer-bottom span {
  color: white;
}
.footer-bottom .col {
  flex: 1;
}
.footer-bottom .col-2 {
  flex: 2;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column-reverse;
  }
  .footer-bottom .col {
    flex: 1;
  }
  .footer-bottom .col-2 {
    flex: 1;
  }
}

.privacy-policy h2,
.privacy-policy h1,
.privacy-policy p,
.privacy-policy section {
  padding: 0 20px;
  text-align: left !important;
}
.privacy-policy a {
  color: #0075be;
  font-weight: bold;
}

.legal {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 140px;
  padding: 50px 20px 100px;
}
.legal h2, .legal p {
  text-align: left !important;
}
.legal h1 {
  font-size: 3rem;
}

address {
  font-style: normal;
  margin: 0;
  padding-left: 20px;
}

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