body {
  margin: 0px;
  font-family: "Questrial", sans-serif;
  background-color: #fff;
  color: #290029;
}

p {
  font-size: 16px;
  margin: 0px;
}

h1 {
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  font-family: "Carter One", system-ui;
}

h2 {
  font-size: 24px;
  text-align: center;
  font-family: "Carter One", system-ui;
}

h3 {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  font-family: "Carter One", system-ui;
}

h4 {
  font-size: 18px;
}

textarea {
  box-sizing: border-box;
  width: 100%;
}

a {
  text-decoration: none;
  color: #290029;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.fondo-cl {
  background-color: #E6D5E6;
}

.fondo-clvar {
  background-color: rgba(230, 213, 230, 0.6235294118);
}

.fondo2 {
  background-color: #A88AA8;
}

.boton-1 {
  font-size: 18px;
  text-decoration: none;
  background-color: #290029;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid;
}

.boton-1:hover {
  font-weight: 900;
  color: #290029;
  background-color: #A88AA8;
}

.boton-2 {
  font-size: 18px;
  text-decoration: none;
  background-color: #290029;
  color: #E6D5E6;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid;
}

.boton-2:hover {
  font-weight: 900;
  color: #290029;
  background-color: #A88AA8;
}

.ret {
  width: auto;
  height: 400px;
}

.ret-hero {
  width: auto;
  height: 350px;
}

.fondo3 {
  background-color: #290029;
  color: #fff;
}

.img-logo {
  height: 60px;
  margin: 0px;
  padding: 0px;
}

.hero-home {
  background-image: url(../img/hero-home.png);
  background-position: center;
  background-size: cover;
  height: 80vh;
  -webkit-mask-image: linear-gradient(#fff 85%, transparent);
          mask-image: linear-gradient(#fff 85%, transparent);
}

.rrs {
  color: #290029;
  padding: 10px;
}

.rrs:hover {
  color: #A88AA8;
  background-color: #290029;
}

.nav {
  display: flex;
  flex-direction: column;
  width: 100px;
  background-color: #E6D5E6;
  color: #A88AA8;
  position: fixed;
  height: auto;
  top: 25%;
  right: 10px;
  transition: width 0.3s ease;
  border-radius: 20px;
}

.nav-item {
  list-style: none;
  text-align: center;
}

.nav-ul {
  padding: 0;
}

.nav-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #290029;
  padding: 20px;
  transition: all 0.3s ease;
}

.nav-item a .text {
  display: none;
}

.nav-item.active a .text {
  display: block;
}

.nav-item.active a .icon {
  display: none;
}

.nav-item a:hover {
  color: #290029;
}

@media screen and (max-width: 768px) {
  .hero-home {
    height: -moz-max-content;
    height: max-content;
  }
  .nav {
    flex-direction: row;
    justify-content: center;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
  }
  .icon {
    width: 30px;
    height: 30px;
  }
  .nav-item a {
    flex-direction: row;
    justify-content: center;
    padding: 10px;
  }
  .nav-ul {
    display: flex;
    flex-direction: row;
  }
}/*# sourceMappingURL=style.css.map */