/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

header {
  padding: 25px 0;
}

header #logo img {
  width: 150px;
}

h1 {
  color: #063ef3;
}

h1 span {
  position: relative;
}

h1 span:after {
  content: "";
  background-color: #00ffff;
  display: block;
  width: 100%;
  height: 8px;
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: -1;
}

#hero h1 {
  font-size: 34px;
  width: 75%;
  line-height: 40px;
  margin-bottom: 30px;
}

#cta {
  font-size: 34px;
  width: 75%;
  line-height: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 500px;
}

a.btn {
  outline: none;
  border: none;
  padding: 10px 40px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  float: left;
  margin-right: 25px;
  box-shadow: 0 4px 9px 0 rgba(67, 83, 255, .1);
  text-decoration: none;
  transition: .3s ease-in-out;
}

a.btn.btn-filled {
  background-color: #063ef3;
  color: #fff;
}

a.btn.btn-filled:hover {
  background-color: #0026d4;
  box-shadow: 0 6px 13px 0 rgba(0, 102, 255, .2)
}

a.btn.btn-transparent {
  color: #063ef3;
  border: 1px solid #063ef3;
}

@media only screen and (max-width: 800px) {
  #cta {
    width: 100%;
  }
  #hero h1 {
    width: 100%;
    text-align: center;
  }
  #cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}