*, *::before, after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

header {
  margin-bottom: 50px;
}

@media screen and (min-width: 1024px) {
  header {
    margin-bottom: 100px;
  }
}

header img {
  width: 120px;
}

@media screen and (min-width: 1024px) {
  header img {
    width: 200px;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1024px) {
  footer {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

footer > a {
  margin-right: 16px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 100ms ease-in-out;
  transition: -webkit-transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
}

footer > a:last-child {
  margin-right: 0px;
}

footer > a:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

footer i.fab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #ffffff;
}

body {
  padding: 40px;
  background-color: #674bb1;
  background-image: url("/img/bg-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #ffffff;
}

@media screen and (min-width: 1024px) {
  body {
    background-image: url("/img/bg-desktop.svg");
    padding: 60px 80px 40px 80px;
  }
}

main {
  margin-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  main {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(240px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-bottom: 26px;
  }
}

main img {
  width: 100%;
}

.heroImages {
  margin-bottom: 70px;
}

@media screen and (max-width: 1024x) {
  .heroImages {
    margin-bottom: 0px;
  }
}

.heroText {
  line-height: 1.75;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .heroText {
    padding-left: 60px;
    line-height: 1.3;
    text-align: left;
  }
}

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
  word-spacing: 1.5;
}

@media screen and (min-with: 1024px) {
  h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}

a, a:visited {
  text-decoration: none;
}

a.cta {
  background: #ffffff;
  display: inline-block;
  position: relative;
  margin-top: 26px;
  padding: 20px;
  color: #674bb1;
  line-height: 1;
  text-align: center;
  border-radius: 50px;
  -webkit-box-shadow: 2px 2px 10px #3d2d69;
          box-shadow: 2px 2px 10px #3d2d69;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 100ms ease-in-out;
  transition: -webkit-transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
  min-width: 250px;
}

@media screen and (min-width: 1024px) {
  a.cta {
    padding: 20px 66px;
    min-width: 200px;
  }
}

a.cta:hover {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
/*# sourceMappingURL=style.css.map */