html {
  color: #222;
  font-size: 1rem;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-style: normal;
  margin: 0;
  scroll-behavior: smooth;
}

header {
  background: url(/img/ww-pay-header-bg.svg);
  background-position: center bottom;
  background-size: cover;
  overflow: hidden;
}

main {
  display: block;
  padding: 6rem 0;
}

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

h1 {
  font-size: 3.5rem;
  line-height: 4.5rem;
  margin: 0.67rem 0 3rem;
  color: #2E3FBD;
  font-weight: 700;
  letter-spacing: -0.03rem;
}

.hero {
  display: flex;
  align-items: center;
  padding: 5rem 15px;
}

.hero-copy {
  width: 48%;
  padding: 5rem 1rem;
}

.hero-image {
  width: 48%;
}

.hero-copy__cta {
  padding: 0.75rem 1.75rem;
  background: #E67A16;
  border-radius: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #FFFFFF;
  text-decoration: none;
}

.hero-copy__cta:hover {
  background: #ab5a0f;
}

a {
  transition: all 0.35s ease;
}

@media (max-width: 768px) {
  .hero-copy {
    width: 56%;
    padding: 5rem 1rem;
  }
  
  .hero-image {
    width: 40%;
  }
  
}

@media (max-width: 600px) {
  h1 {
    font-size: 3rem;
    line-height: 4rem;
    margin: 0.67rem 0 2rem;
  }

  .hero {
    flex-direction: column;
    padding: 3rem 15px;
  }

  .hero-copy {
    width: 100%;
  }
  
  .hero-image {
    width: 100%;
    display: contents;
  }
}