* {
  padding: 0;
  margin: 0;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1 {
  font-size: 4.5rem;
}

h4 {
  font-size: 1.6rem;
}

h2 {
  font-size: 3rem;
}

p {
  font-size: 1.2rem;
}

html {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background-color: #ECE7ED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100vw;
  overflow-x: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: Roboto;
  -webkit-transition: 1s;
  transition: 1s;
}

body nav ul {
  list-style: none;
  color: #712F6E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0 1rem 0;
  font-size: 1.2rem;
}

body nav ul li {
  cursor: pointer;
}

body nav ul li:hover {
  color: #873258;
}

body main {
  width: 100vw;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 70%;
  min-width: 70%;
  padding: 5rem 0 5rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main section .jumbotron {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: Sevillana;
  height: 60vh;
  text-align: center;
  color: #712F6E;
}

body main section .jumbotron .profile {
  min-height: 20rem;
  min-width: 20rem;
  border-radius: 50%;
  margin-bottom: 4rem;
  background-image: url("../img/profile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border: 3px solid #712F6E;
}

body main section .box {
  min-width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #712F6E;
  background-color: white;
  padding: 4rem 2rem 4rem 2rem;
  border-radius: 10px;
}

body main section .box .box_header {
  padding-bottom: 2rem;
}

body main section .box .box_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 80%;
  max-width: 90%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

body main section .about .box_content p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: pre-wrap;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  min-width: 40%;
  max-width: 35rem;
  margin: 0.2rem;
}

body main section .about .box_content .about_content_img_box {
  margin: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body main section .about .box_content .about_content_img_box img {
  max-width: 20rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  -webkit-box-shadow: 1px 2px 5px gray;
          box-shadow: 1px 2px 5px gray;
}

body main section .prices .box_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

body main section .prices .box_content table {
  width: 100%;
  max-width: 100vw;
  border-spacing: 1rem;
  color: #712F6E;
}

body main section .prices .box_content table tr {
  width: 100%;
}

body main section .prices .box_content table tr td {
  min-width: 4rem;
}

body main section .prices .box_content table tr td:first-child {
  margin-right: 1rem;
}

body main section .prices .box_content p {
  width: 30rem;
  max-width: 90%;
  margin-top: 2rem;
  margin-left: 1rem;
}

body main section .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body main section .contact .box_content {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body main section .contact .box_content p {
  margin-bottom: 2rem;
  text-align: center;
}

body main section .contact .box_content .form_box {
  max-width: 40rem;
}

body main section .contact .box_content .form_box input {
  border: 1px solid #712F6E;
  border-radius: 5px;
  padding: 0.5rem;
  width: 15rem;
  margin-bottom: 1.5rem;
  margin-right: 1rem;
}

body main section .contact .box_content .form_box textarea {
  width: 100%;
  border: 1px solid #712F6E;
  border-radius: 5px;
  padding: 0.5rem;
  resize: none;
}

body main section .contact .box_content .form_box button {
  background-color: #DCA3E1;
  color: white;
  margin-top: 2rem;
  padding: 1rem 3rem;
  border: none;
  border-radius: 5px;
}

.scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ECE7ED;
  -webkit-box-shadow: 0 10px 30px -20px black;
          box-shadow: 0 10px 30px -20px black;
}

footer {
  padding: 1rem;
  width: 100vw;
  padding-left: 15%;
  padding-right: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer table {
  color: #712F6E;
}
/*# sourceMappingURL=index.css.map */