body {
  font-family: "Gotham Pro", Arial, sans-serif;
  font-weight: 300;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #232637;
  color: #ffffff;
}

.container {
  width: 94%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  flex: 0 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  font-size: 1rem;
  max-width: 100%;
}

.col-1 {
  width: 8.333333%;
}

.col-2 {
  width: 16.666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.333333%;
}

.col-5 {
  width: 41.666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.333333%;
}

.col-8 {
  width: 66.666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.333333%;
}

.col-11 {
  width: 91.666667%;
}

.col-12 {
  width: 100%;
}

@media only screen and (max-width: 720px) {
  .col-1 {
    width: 100%;
  }
  .col-2 {
    width: 100%;
  }
  .col-3 {
    width: 100%;
  }
  .col-4 {
    width: 100%;
  }
  .col-5 {
    width: 100%;
  }
  .col-6 {
    width: 100%;
  }
  .col-7 {
    width: 100%;
  }
  .col-8 {
    width: 100%;
  }
  .col-9 {
    width: 100%;
  }
  .col-10 {
    width: 100%;
  }
  .col-11 {
    width: 100%;
  }
  .col-12 {
    width: 100%;
  }
}
h1 {
  font-size: 2em;
  color: #8fecb1;
}

header {
  background-color: #232637;
  padding: 15px 0;
  border-bottom: 1px solid rgba(143, 236, 177, 0.1333333333);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  margin-top: 5px;
  height: 40px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
}
nav ul li a:hover {
  color: #8fecb1;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  text-align: center;
}

.hero {
  padding: 180px 0 200px 0;
  text-align: left;
  position: relative;
}
.hero .primary {
  color: #8fecb1;
}
.hero .text {
  font-weight: 900;
  font-size: 60px;
  line-height: 1.1;
  max-width: 60%;
}
.hero .subtext {
  font-weight: 200;
  font-size: 28px;
  margin-top: 40px;
  max-width: 60%;
}
.hero .cta {
  margin-top: 40px;
  max-width: 50%;
}
.hero .graphics {
  position: absolute;
  top: 160px;
  right: 0;
}
.hero .graphics img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #ffffff;
}
a:hover {
  color: #8fecb1;
}

footer {
  border-top: 1px solid rgba(143, 236, 177, 0.1333333333);
  color: #ffffff;
  text-align: left;
  padding: 20px 0;
  line-height: 1.3;
}
footer .footer-section {
  padding: 10px 0;
}
footer a {
  text-decoration: none;
  color: #ffffff;
}
footer a:hover {
  color: #8fecb1;
}

.btn {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 17px 20px 17px 20px;
  text-decoration: none;
  border-radius: 35px;
  font-weight: 500;
  font-size: 14px;
  cursor: default !important;
}
.btn:hover {
  background-color: #8fecb1;
  color: #000;
  border: 1px solid #8fecb1;
}

.navlink {
  padding-top: 10px;
}

@media only screen and (max-width: 1300px) {
  .hero {
    padding: 160px 0 100px 0;
  }
  .hero .text {
    font-size: 50px;
  }
  .hero .graphics {
    top: 140px;
    width: 420px;
  }
}
@media only screen and (max-width: 1140px) {
  .hero {
    padding: 140px 0 60px 0;
  }
  .hero .text {
    font-size: 48px;
  }
  .hero .subtext {
    font-size: 25px;
  }
  .hero .graphics {
    top: 130px;
    width: 380px;
  }
}
@media only screen and (max-width: 850px) {
  .hero {
    padding: 120px 0 50px 0;
  }
  .hero .text {
    font-size: 37px;
  }
  .hero .subtext {
    font-size: 22px;
  }
  .hero .graphics {
    top: 120px;
    width: 320px;
  }
}
@media only screen and (max-width: 720px) {
  .container {
    width: 90%;
  }
  header nav {
    display: none;
  }
  .hero {
    padding: 100px 0 0 0;
  }
  .hero .text,
  .hero .subtext,
  .hero .cta {
    max-width: 100%;
  }
  .hero .text {
    font-size: 35px;
  }
  .hero .graphics {
    position: static;
    width: 70%;
    margin: 40px auto 0 auto;
  }
  .btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 35px;
  }
}/*# sourceMappingURL=style.css.map */