@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
:root {
  --primary-color: #1E64C8;
}

body {
  background: #F2F2F2;
  margin: 0;
  font-family: 'Poppins';
}

.navbar {
  background: white;
  padding: 0em;
  position: fixed;
  width: 100%;
  z-index: 99;
}

.navbar .logo {
  text-decoration: none;
  font-weight: bold;
  color: black;
  font-size: 1.2em;
  margin-top: 0.5em;
}

.navbar nav {
  display: none;
}

.navbar nav .primary-nav img {
  display: none;
}

.navbar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-content: space-between;
}

.navbar .mobile-menu {
  cursor: pointer;
  margin-right: 3em;
}

a {
  color: #444444;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}


.hero {
  text-align: center;
  background: var(--primary-color);
  padding-top: 6em;
}

.hero a {
  color: orange;
}

.welcome .subhead {
  color: white;
  letter-spacing 0em;
  font-size: 1.2em;
  padding: 0.1em 0em;
  width: 100%
}
.welcome h1 {
  font-size: 2.5em;
  line-height: 1.3em;
  margin-top: 0.2em;
  color: white;
}

.left-col .subhead {
  color: white;
  letter-spacing: 0.0em;
  font-size: 1.1em;
}

.left-col .primary-cta {
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 0.6em 1.3em;
  font-size: 1.4em;
  border-radius: 5em;
  font-weight: bold;
  display: inline-block;
}

.hero-img, .QR-img, .Team-img {
  width: 60%;
  margin-top: 3em;
}

section.features-section {
  background: white;
  color: #222426;
  text-align: left;
}

.features-section a {
  color: #1E64C8;
}

.footer-section {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 0em 1em;
}
.footer-section li a {
  color: white;
}

.testimonials-section {
  margin-top: -4em;
  background: white;
  color: black;
  text-align: center;
}

.testimonials-section li {
  text-align: center;
  padding: 2em 1em;
  width: 70%;
  margin: 0 auto 5em auto;
  border-radius: 1em;
}

.testimonials-section li img {
  width: 90%;
  margin-top: 3em;
  border-radius: 3%;
}

h2 {
  font-size: 2em;
}

label {
  display: block;
  font-size: 1.2em;
  margin-bottom: .5em;
}

input, textarea {
  width: 100%;
  padding: .8em;
  margin-bottom: 1em;
  border-radius: .3em;
  border: 1px solid grey;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type="submit"] {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1.3em;
  border: none;
  margin-top: 1em;
  margin-bottom: 5em;
  border-radius: 0;
  display: inline-block;
  padding: 0.8em 2em;
  width: unset;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 250px;
}

nav.menu-btn {
  display: block;
}

nav {
  position: fixed;
  z-index: 999;
  width: 66%;
  right: 0;
  top: 0;
  background: #20272E;
  height: 100vh;
  padding: 1em;
}

nav ul.primary-nav {
  margin-top: 5em;
}

nav li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 0.5em;
  text-align: right;
}

nav li a:hover {
  font-weight: bold;
}

.mobile-menu-exit {
  float: right;
  margin: .5em;
  cursor: pointer;
}

@media only screen and (min-width: 768px) {
  .testimonials-section {
    background: white;
    color: black;
    text-align: center;
  }
  .testimonials-section li {
    text-align: center;
    padding: 2em 1em;
    width: 60%;
    margin: 0 auto 5em auto;
    border-radius: 1em;
  }
  .testimonials-section li img {
    width: 70%;
    margin-top: 3em;
    border-radius: 3%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mobile-menu, .mobile-menu-exit {
    display: none;
  }
  .navbar .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px auto;
        grid-template-columns: 180px auto;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .navbar nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: none;
    position: unset;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .navbar nav img {
    display: none;
  }
  .navbar nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar nav a {
    color: black;
    font-size: 1em;
    padding: .1em 1em;
    margin-right: 4em;
  }
  .navbar nav ul.primary-nav {
    margin: 0;
  }
  .navbar nav li.current a {
    font-weight: bold;
  }
  .navbar nav li.go-premium-cta a {
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    font-weight: bold;
    border-radius: 0;
    margin-top: 2.5em;
  }
  .navbar nav li.go-premium-cta a:hover {
    background: var(--primary-color);
    color: white;
  }
}

@media only screen and (min-width: 1080px) {
  .footer-section {
    padding-top: -9em;
    margin-top: 0em;
    background: var(--primary-color);
    color: white;
    text-align: center;
    height: auto;
  }
  .footer-section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: O;
    padding: 0;
    overflow: hidden;
  }
  .footer-section li {
    padding: 2em 1em;
    width: 100%;
  }
  .navbar nav .primary-nav img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .primary-nav img {
    width: 20%;
    margin-left: 20em;
  }
  .testimonials-section {
    background: white;
    color: black;
    text-align: center;
  }
  .testimonials-section li {
    text-align: center;
    padding: 2em 1em;
    width: 100%;
    margin: 0 auto 5em auto;
    border-radius: 1em;
  }
  .testimonials-section li img {
    width: 59%;
    margin-top: 3em;
    border-radius: 3%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 1em;
  }
  .container {
    width: 1080px;
    margin: 0 auto;
  }
  section {
    padding: 4em 4em;
  }
  .hero .welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    margin: 3em 3em 0 2em;
    width: 90%;
  }
  .hero .welcome h1 {
    text-align: center;
    font-size: 3em;
  }
  .hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
  .hero .container .hero-cta {
    width: 100%;
  }
  .hero .container .left-col {
    margin: 1em 1em 0 2em;
    width: 120%;
  }
  .hero-img {
    width: 80%;
    margin-top: 3em;
    margin-left: 8em;
  }
  .QR-img {
    width: 60%;
    margin-top: 4em;
  }
  .Team-img {
    width: 60%;
    margin-top: 4em;
  }

  .primary-cta {
    margin-right: 1em;
  }
  ul.features-list {
    display: block;
    margin-left: 5em;
  }
  ul.features-list li {
    font-size: 1.4em;
  }
  ul.features-list li:before {
    width: 30px;
    height: 30px;
  }
  .features-section {
    position: relative;
  }
  .features-section img {
    display: block;
    position: absolute;
    right: 5em;
    width: 350px;
    bottom: 5em;
  }
  .testimonials-section ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .testimonials-section ul li {
    margin: 0 1em;
  }
  .contact-section {
    position: relative;
    padding: 0em;
    padding-top: 1em;
    height: 70%;
  }
  .contact-section .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 80%;
  }
  .contact-left {
    height: 50%;
  }
  .contact-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
  }
  .contact-right iframe {
    height: 100%;
  }
}
/*# sourceMappingURL=main.css.map */