* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: CA SaygonText, sans-serif !important;
  min-height: 100vh;
}

body {
  background-color: #CEFFE8;
  font-family: Work Sans;
  padding: 1rem;

  background-image: url('../../images/background.png');
  background-repeat: no-repeat;
  background-position: center top;
}

.container {
	max-width: 864px;
	margin: 0 auto;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.container {
  margin: 1rem auto;
}

.container > .hero-container {
  display: flex;
  gap: 0.6rem;
  flex-direction: row;
  justify-content: space-between;
  margin: 2rem 0;
}

.container > .hero-container > .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 57%;
}

.container > .hero-container > .text-container > h2 {
  font-family: CA SaygonText, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 150%;
  margin: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container > .hero-container > .image-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.container > .hero-container > .image-container > span {
  color: #4A4B4C;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 7px;
  margin-left: 6px;
  margin-bottom: 5px;
}

.cta-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.cta-container > h2 {
  margin: 0 0 2rem 0;
}

.cta-container > a {
  outline: none;
  cursor: pointer;
}

.cta-container > a > img {
  width: 170px;
}

.cta-container > h2, .cta-container > h2 > span.underline {
  font-family: Verdana;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;

  color: #005A2A;
}


.cta-container > h2 > span.underline {
  display: inline-block;
}

.cta-container > h2 > span.underline::after {
  content: '';
  display: block;
  width: 100%;
  height: 5.38px;
  background-image: url('../../images/underline.svg');
  background-repeat: no-repeat;
  background-position: center center;
}

.footer-container {
  margin: 2rem 0;
  background-color: transparent;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-container > a {
  font-family: 'CA SaygonText', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  text-decoration: underline;
  outline: none;

  color: #005A2A;
  cursor: pointer;
}

.footer-container > a:active {
  outline: none;
}

@media (min-width: 768px) {
  .container > .hero-container {
    background-color: #005A2A;
  }

  .container > .hero-container > .text-container > h2 {
    font-size: 20px;
  }
}
