@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
   * A better looking default horizontal rule
   */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
   * Remove default fieldset styles.
   */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
   * Allow only vertical resizing of textareas.
   */
textarea {
  resize: vertical;
}

.animation-left, .animation-right, .animation-fwd {
  opacity: 0;
}

/**
 * ----------------------------------------
 * animation fade-in-left
 * ----------------------------------------
 */
.fade-in-left {
  animation: fade-in-left 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
.fade-in-left:nth-child(1) {
  animation-delay: 200ms;
}
.fade-in-left:nth-child(2) {
  animation-delay: 400ms;
}
.fade-in-left:nth-child(3) {
  animation-delay: 600ms;
}
.fade-in-left:nth-child(4) {
  animation-delay: 800ms;
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-right
 * ----------------------------------------
 */
.fade-in-right {
  animation: fade-in-right 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/**
 * ----------------------------------------
 * animation fade-in-fwd
 * ----------------------------------------
 */
.fade-in-fwd {
  animation: fade-in-fwd 1s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes fade-in-fwd {
  0% {
    transform: translateZ(-80px);
    opacity: 0;
  }
  100% {
    transform: translateZ(0);
    opacity: 1;
  }
}
/* ==========================================================================
     Author's custom styles
     ========================================================================== */
html,
body {
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
  background-color: #f6f6f6;
}
@media (min-width: 900px) {
  html,
body {
    min-height: 100vh;
  }
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  position: relative;
}

.wrapper {
  width: 100vw;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}
@media (min-width: 900px) {
  .wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    height: 100%;
  }
  .wrapper > div {
    flex: 1;
  }
}

main {
  text-align: center;
  padding-top: 50px;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  main {
    margin: 80px 0;
    padding: 0;
    min-height: calc(100vh - 240px);
    display: flex;
    align-items: center;
  }
}
main .content__icon {
  width: 150px;
  text-align: center;
  margin: 0 auto;
}
main .content__icon img {
  width: 100%;
}
main .content__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .content__copy h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 50px;
  margin: 0 0 20px 0;
}
main .content__copy--para {
  max-width: 320px;
}
main .content__copy--terms {
  font-size: 12px;
  margin: 0;
}
main .content__cta {
  margin: 50px 0 80px 0;
}
@media (min-width: 900px) {
  main .content__cta {
    margin: 40px 0 0 0;
  }
}
main .content__cta p {
  margin: 10px 0;
}
main .content__cta--btn {
  width: 160px;
  margin: 0 auto;
}
main .content__cta--btn img {
  width: 100%;
}
@media (min-width: 600px) and (max-width: 899px) {
  main .hero__img {
    max-width: 500px;
    margin: 0 auto;
  }
}
main .hero__img img {
  width: 100%;
}

footer {
  background-color: #ffffff;
  padding: 20px 0;
}
@media (min-width: 900px) {
  footer {
    height: 80px;
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
footer .container {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
}
@media (max-width: 599px) {
  footer .container .footer__logo:first-of-type {
    margin-right: 20px;
  }
  footer .container .footer__logo:last-of-type {
    margin-left: 20px;
  }
}
footer .container .footer__logo img {
  width: 100%;
  max-width: 150px;
}
@media (max-width: 599px) {
  footer .container .footer__logo img {
    max-width: unset;
  }
}