* {
  /* reset */
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  /* font */
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  /* color */
  --color-primary: #333;
  --color-green: #97af8e;
  --color-blue: #728dae;
  --color-blue-light: #dfe4eb;

  color: var(--color-primary);
}

nav {
  padding: 16px;
}

nav img {
  height: 100px;
  /* center */
  display: block;
  margin: 0 auto;
}

main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--color-blue-light);
}

main > div {
  width: 50%;
  margin-bottom: 1rem;

  /* center */
  display: flex;
  justify-content: center;
  align-items: center;
}

#calendly {
  min-height: 600px;
  height: 100vh;
}

#calendly iframe {
  width: 100%;
  height: 100%;
}

#info {
  padding: 1rem;
  text-align: center;

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

#info h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#info img {
  /* circle head */
  border-radius: 50%;
  width: 250px;
  height: 250px;
  margin-bottom: 1rem;
}

#info p {
  margin-bottom: 1rem;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}

.socials a {
  margin: 0 1rem;
  text-decoration: none;
}

.socials a svg {
  width: 24px;
  height: 24px;
  fill: var(--color-blue);
}

#newsletter {
  background-color: white;
  padding: 1rem;
  text-align: center;
  background-color: var(--color-blue-light);

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

#newsletter input[type="submit"] {
  background-color: var(--color-green);
  color: white;
  border: none;
  padding: 5px 1rem;
  height: auto;
  margin-top: 1rem;
  cursor: pointer;
}

.inner {
  max-width: 512px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mc_embed_signup {
  width: 100%;
}

.brandingLogo,
.helper_text {
  display: none !important;
}

/* scroll back to top */
#backtotop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  color: white;
  background-color: var(--color-green);
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  main {
    padding-top: 50px;
  }
  main > div {
    width: 100%;
  }

  #mc_embed_signup input[type="email"] {
    width: 100%;
  }

  #calendly {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
  }

  #info img {
    width: 200px;
    height: 200px;
  }

  nav img {
    height: auto;
    width: 100%;
  }

  .inner {
    padding: 0 1rem;
  }

  #newsletter,
  #info {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .inner {
    padding: 0 1rem;
  }
}
