:root {
  color-scheme: light;
  font-family: "Open Sans", Arial, sans-serif;
  color: #4e5d6f;
  background: #ffffff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 300;
  font-size: 100%;
  line-height: 1.5;
  color: #4e5d6f;
}

.page-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f5f5f6;
  text-align: center;
}

.main-title {
  margin: 0;
  color: #4e5d6f;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
}

.main-title span {
  color: #ff3f4d;
  font-weight: 800;
}

.content-box {
  padding: 40px 0;
}

.content-row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.illustration-column {
  flex: 0 0 41.6667%;
  padding: 0 15px;
}

.illustration-column img {
  display: inline-block;
  width: auto;
  max-width: 500px;
  height: auto;
  vertical-align: middle;
}

.contact-column {
  flex: 0 0 50%;
  padding: 0 15px;
}

.contact-column h2 {
  margin: 0 0 20px;
  color: #4e5d6f;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.5;
}

.contact-line {
  margin: 0;
  color: #4e5d6f;
  font-size: 1.17em;
  font-weight: 700;
  line-height: 1.5;
}

.contact-line a {
  color: inherit;
  text-decoration: none;
}

.contact-line a:hover,
.contact-line a:focus-visible {
  color: #ff3f4d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-box {
  flex: 0 1 auto;
}

@media (min-width: 641px) and (max-width: 1023px) {
  .illustration-column,
  .contact-column {
    min-width: 0;
  }

  .illustration-column img {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-box {
    padding: 20px 16px;
  }

  .main-title {
    font-size: 20px;
    line-height: 25px;
  }

  .illustration-column {
    display: none;
  }

  .contact-column {
    flex-basis: 100%;
    padding: 0 15px;
  }

}
