html {
  background-color: #eeeeee;
  font-family: Source Sans Pro,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

body, a, h2, h3, h4, p {
  all: unset;
}

p {
  margin-top: 0.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1rem;
}

a {
  color: #252525;
  cursor: pointer;
}

textarea {
  font-family: inherit;
}

button {
  padding: 0.5rem;
  border: 1px solid #8a8a8a;
  border-radius: 0.2rem;
  background-color: white;
  cursor: pointer;
}

.menu {
  top: 0;
  position: -webkit-sticky;
  position: sticky;
  z-index: 100;
  background-color: #FFF;
  margin-bottom: 5vh;
}

.menu .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 90vw;
  margin-right: auto;
  margin-left: auto;
  padding: 1rem;
}

.menu .content .title {
  font-weight: 600;
}

.menu .content .buttons {
  width: 16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu .content .highlighted {
  color: #000277;
}

.content-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-container .column {
  width: 40vw;
}

.content-container .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-container .textarea .subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.content-container .textarea .subtitle h4 {
  margin-left: 0.5rem;
}

.content-container .avatar {
  top: 15%;
  position: -webkit-sticky;
  position: sticky;
  max-width: 40vw;
}

.content-container .prices {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content-container .prices .price {
  border-left: 2px #8a8a8a solid;
  padding-left: 1rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content-container .contact .input {
  width: 100%;
  padding: 0.5rem;
}

.content-container .contact .field {
  margin-top: 1rem;
}

.content-container .contact button {
  margin: 1rem;
  margin-left: 0;
}

.contents-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 640px) {
  .menu .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu .content .title {
    margin-bottom: 0.5rem;
  }
  .content-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-container h2 {
    margin-top: 1rem;
  }
  .content-container .column {
    width: 80vw;
  }
  .content-container .avatar {
    position: unset;
    max-width: 60vw;
  }
}
/*# sourceMappingURL=style.css.map */