* {
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
html {
  scroll-behavior: smooth;
}
a {
  color: inherit;
  text-decoration: none;
}
textarea {
  display: block;
}
button {
  border: none;
}
.d-flex {
  display: flex;
}
::placeholder {
  color: #bbb;
}
:-ms-input-placeholder {
  color: #bbb;
}
::-ms-input-placeholder {
  color: #bbb;
}
#banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  color: #fff;
  overflow: hidden;
}
#banner::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
#banner img.meditation {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}
#banner .title {
  margin-bottom: 50px;
  font-size: 50px;
  font-weight: 300;
  letter-spacing: 1px;
}
#banner .button-box {
  position: relative;
  width: 200px;
  max-width: 50%;
}
#banner .button-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#banner .button-box a + a {
  margin-top: 10px;
}
#banner .button-box a img {
  display: block;
  max-width: 100%;
}
#banner .button-box a.text {
  color: #555;
  background-color: #e8e8e8;
  font-weight: 600;
  font-size: 16px;
  height: 51px;
  border-radius: 12px;
}
#banner .button-box a.anchor {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  right: 0;
  margin: auto;
  font-size: 16px;
  text-decoration: underline;
  opacity: 0.8;
}
#banner .button-box a.anchor:hover {
  opacity: 1;
}
#report {
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  color: #333;
  background-color: #f5fafd;
}
#report h2 {
  margin-bottom: 50px;
  text-align: center;
}
#report label,
#report input[type="text"],
#report button {
  display: block;
}
#report input[type="text"],
#report input[type="email"],
#report textarea {
  width: 100%;
  border-radius: 3px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  transition: all .15s;
  outline: 1px solid transparent;
}
#report input[type="text"]:focus,
#report input[type="email"]:focus,
#report textarea:focus {
  border-color: #2396e3;
  outline-color: #2396e3;
}
#report input[type="text"],
#report input[type="email"] {
  padding: 0 14px;
  height: 43px;
}
#report input[type="radio"] {
  width: 15px;
  height: 15px;
}
#report textarea {
  padding: 14px;
  resize: vertical;
}
#report .field + .field {
  margin-top: 30px;
}
#report .field-title {
  margin-bottom: 15px;
  font-weight: 700;
}
#report .star {
  color: #d63637;
}
#report .option {
  display: flex;
  align-items: center;
}
#report .option + .option {
  margin-left: 24px;
}
#report .option label {
  padding-left: 12px;
}
#report .desc {
  margin-top: 5px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}
#report [type="submit"] {
  margin-top: 30px;
  padding: 8px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #4c8bff;
  border-radius: 3px;
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  #banner .button-box {
    width: 180px;
  }
  #report h2 {
    margin-bottom: 80px;
    font-size: 36px;
  }
  #report form {
    width: 500px;
    margin: auto;
  }
}
