/*----------  RESET  ----------*/
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500&family=Solway:wght@400;500&display=swap");
*,
*::after,
*::before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
.h1 {
  font-family: "Solway", serif;
  font-size: calc(36px + 14 * (100vw - 300px) / 2000);
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

h2,
.h2 {
  font-family: "Solway", serif;
  font-size: calc(28px + 4 * (100vw - 300px) / 2000);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

h3,
.h3 {
  font-family: "Solway", serif;
  font-size: calc(18px + 6 * (100vw - 300px) / 2000);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

h4,
.h4 {
  font-family: "Solway", serif;
  font-size: calc(16px + 4 * (100vw - 300px) / 2000);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
}

p,
.p,
.bloque-sobremi .texto-wisyng ul li,
.error-me,
.error {
  font-family: "DM Sans", sans-serif;
  font-size: calc(14px + 2 * (100vw - 300px) / 2000);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.77;
  letter-spacing: normal;
}

.font-button {
  font-family: "DM Sans", sans-serif;
  font-size: calc(15px + 3 * (100vw - 300px) / 2000);
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.77;
  letter-spacing: normal;
}

.font-menu-title {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-stretch: normal;
  font-style: normal;
  line-height: 23.44px;
  letter-spacing: normal;
}

.links-font-menu {
  font-family: "Solway", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.font-small-menu {
  font-family: "Solway", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.text-limit {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.cell-grow {
  display: flex;
  align-items: stretch;
}

.w-full {
  width: 100%;
}
@media (min-width: 768px) {
  .w-full {
    width: auto;
  }
}

.loader-content {
  min-height: 300px;
  display: none;
  justify-content: center;
  align-items: center;
}
.loader-content.show-loader {
  display: flex;
}
@media (min-width: 1200px) {
  .loader-content {
    min-height: 400px;
  }
}

.loader {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #ef5da8);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: s3 1s infinite linear;
}
@keyframes s3 {
  to {
    transform: rotate(1turn);
  }
}

.d-flex-me {
  display: flex;
}

.paginationProyectos {
  display: none;
  margin-top: 2rem;
}

.btn-main {
  background-color: #CFEACD;
  color: #16312D;
  border-radius: 32px;
  height: 50px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: background-color 0.5s ease;
  box-shadow: none;
  outline: none;
  border: none;
}
.btn-main.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn-main.pink {
  background-color: #FCDDEC;
}
.btn-main.pink:hover, .btn-main.pink:focus {
  background-color: #EF5DA8;
  color: #FFFFFF;
}
.btn-main.pink-two {
  background-color: #EF5DA8;
  color: #FFFFFF;
}
.btn-main.pink-two:hover, .btn-main.pink-two:focus {
  background-color: #FCDDEC;
  color: #FFFFFF;
}
.btn-main:hover, .btn-main:focus {
  background-color: #81B29A;
  color: #FFFFFF;
}

.form-input {
  width: 100%;
  margin-bottom: 1rem;
}
.form-input input {
  box-shadow: none;
  outline: none;
  border: none;
  border-bottom: 1px solid #BA68C8;
  width: 100%;
  padding: 8px 16px 8px 0px;
  color: #16312D;
  margin-bottom: 0;
}
.form-input input::-moz-placeholder {
  opacity: 1;
  color: rgba(23, 23, 23, 0.6);
}
.form-input input::placeholder {
  opacity: 1;
  color: rgba(23, 23, 23, 0.6);
}
.form-input textarea {
  box-shadow: none;
  outline: none;
  border: none;
  border-bottom: 1px solid #BA68C8;
  width: 100%;
  padding: 8px 16px 8px 0px;
  color: #16312D;
  margin-bottom: 0;
  max-height: 80px;
  min-height: 80px;
}
.form-input textarea::-moz-placeholder {
  opacity: 1;
  color: rgba(23, 23, 23, 0.6);
}
.form-input textarea::placeholder {
  opacity: 1;
  color: rgba(23, 23, 23, 0.6);
}

.error {
  display: inline-block;
  color: #ff0000;
  margin-bottom: 0;
}

.error-me {
  display: none;
  color: #ff0000;
  margin-bottom: 25px;
}

.pagination-js {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-js a {
  color: #EF5DA8 !important;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  width: 44px;
  cursor: pointer;
  border: 1px solid #EF5DA8;
  border-radius: 50%;
}
.pagination-js a:not(:last-child) {
  margin-right: 8px;
}
.pagination-js .jp-current {
  color: #FFFFFF !important;
  background-color: #FF0A88;
  border: 1px solid #FF0A88;
}
.pagination-js .jp-current:after {
  width: 100%;
  left: 0;
}
.pagination-js .jp-previous,
.pagination-js .jp-next {
  height: 44px;
  width: 44px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: none;
  border-radius: unset;
  padding: 0;
}
.pagination-js .jp-previous {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1L1 6.5L7 12' stroke='deeppink' /%3E%3C/svg%3E");
}
.pagination-js .jp-next {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='13' viewBox='0 0 8 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12L7 6.5L1 1' stroke='deeppink' /%3E%3C/svg%3E");
}

.fraction-customPagination {
  color: #000000;
}

.animacionTextOpacity {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.7s cubic-bezier(0.34, 0.615, 0.4, 0.985), transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}
.animacionTextOpacity.delay1 {
  transition-delay: 0.1s;
}
.animacionTextOpacity.delay2 {
  transition-delay: 0.2s;
}
.animacionTextOpacity.delay3 {
  transition-delay: 0.3s;
}
.animacionTextOpacity.delay4 {
  transition-delay: 0.4s;
}
.animacionTextOpacity.delay5 {
  transition-delay: 0.5s;
}
.animacionTextOpacity.delay6 {
  transition-delay: 0.6s;
}
.animacionTextOpacity.is-view {
  opacity: 1;
  transform: translateY(0);
}

.animationOpacity {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}
.animationOpacity.delay1 {
  transition-delay: 0.1s;
}
.animationOpacity.delay2 {
  transition-delay: 0.2s;
}
.animationOpacity.delay3 {
  transition-delay: 0.3s;
}
.animationOpacity.delay4 {
  transition-delay: 0.4s;
}
.animationOpacity.delay5 {
  transition-delay: 0.5s;
}
.animationOpacity.delay6 {
  transition-delay: 0.6s;
}
.animationOpacity.is-view {
  opacity: 1;
}

.bloque-banner {
  width: 100%;
  background-color: #F5F5F5;
}
.bloque-banner .content-banner {
  padding-top: 7rem;
  position: relative;
}
.bloque-banner .content-banner .img-fondo {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
.bloque-banner .content-banner .container {
  position: relative;
  z-index: 2;
}
.bloque-banner .content-banner .title,
.bloque-banner .content-banner .subtitle {
  color: #16312D;
}
@media (min-width: 992px) {
  .bloque-banner .content-banner .title,
  .bloque-banner .content-banner .subtitle {
    color: #FFFFFF;
  }
}
@media (min-width: 992px) {
  .bloque-banner .content-banner {
    margin-top: 90px;
    padding: 3rem 0;
    display: flex;
    align-items: center;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.05);
  background-color: #FFFFFF;
  width: 100%;
  padding: 0 0.5rem;
}
nav .main-content {
  height: 80px;
}
@media (min-width: 1200px) {
  nav .main-content {
    height: 90px;
  }
}
nav .d-flex-buttons {
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  cursor: pointer;
  transition: all 300ms;
  background: transparent;
  border: none;
  box-shadow: none;
  background-color: #FCDDEC;
  border-radius: 50%;
}
nav .d-flex-buttons .hamburger {
  padding: 0;
  width: 30px;
}
nav .d-flex-buttons .hamburger .hamburger-box {
  height: 24px;
  width: 100%;
}
nav .d-flex-buttons .hamburger .hamburger-box .hamburger-inner {
  width: 100%;
  height: 2px;
  background-color: #EF5DA8;
  bottom: 1px;
  transition-delay: 0.1s;
}
nav .d-flex-buttons .hamburger .hamburger-box .hamburger-inner:before, nav .d-flex-buttons .hamburger .hamburger-box .hamburger-inner:after {
  width: 100%;
  height: 100%;
  background-color: #EF5DA8;
}
nav .d-flex-buttons .hamburger .hamburger-box .hamburger-inner:before {
  top: -8px;
  width: 100%;
}
nav .d-flex-buttons .hamburger .hamburger-box .hamburger-inner:after {
  top: -16px;
}
nav .d-flex-buttons .hamburger.is-active {
  transform: translateY(0);
}
nav .d-flex-buttons .hamburger.is-active .hamburger-inner:before {
  top: 0;
  width: 100%;
}
nav .list-menu {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
nav .list-menu .link-menu {
  color: #16312D;
  position: relative;
}
nav .list-menu .link-menu:before {
  color: #EF5DA8;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  content: attr(data-hover);
  position: absolute;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
nav .list-menu .link-menu:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #EF5DA8;
  opacity: 0;
  transform: translateY(5px);
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
nav .list-menu .link-menu:hover:before, nav .list-menu .link-menu:focus:before {
  opacity: 0;
  transform: translateY(-2px);
}
nav .list-menu .link-menu:hover:after, nav .list-menu .link-menu:focus:after {
  opacity: 1;
  transform: translateY(0px);
}

.logo-content {
  display: flex;
  align-items: center;
}
.logo-content img {
  display: block;
  max-width: 60px;
}
.logo-content .title-logo {
  color: #16312D;
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .logo-content .title-logo {
    font-size: 14px;
  }
}

.bloque-sobremi {
  padding: 3rem 0;
  background-color: #F0F4F2;
}
.bloque-sobremi .oculto {
  display: none;
}
.bloque-sobremi .img-container {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .bloque-sobremi .img-container {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .bloque-sobremi .img-container {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .bloque-sobremi {
    padding: 5rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .bloque-sobremi {
    padding: 6rem 0;
  }
}
.bloque-sobremi .title,
.bloque-sobremi .texto {
  color: #16312D;
}
.bloque-sobremi .texto-wisyng {
  color: #16312D;
}
footer {
  background-color: #EF5DA8;
  padding: 3rem 0;
}
footer .title-footer {
  color: #FFFFFF;
}
footer .sub-footer {
  color: #FFFFFF;
}
footer .correo-footer {
  color: #FFFFFF;
}
footer .img-footer {
  width: 150px;
}
footer .icon-fill-whatsapp .stroke-fill {
  stroke: #EF5DA8;
}
footer .text-copy {
  color: #FFFFFF;
}

.list-text-pie {
  align-items: center;
  text-align: center;
}
@media (min-width: 1200px) {
  .list-text-pie {
    margin-bottom: 2.5rem;
  }
}

.title-socials {
  color: #FFFFFF;
  text-align: center;
}

.list-socials {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.list-socials li {
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 44px;
  width: 44px;
  transition: all 400ms;
}
.list-socials li.hover-youtube:hover .bg {
  fill: #ff0000 !important;
}
.list-socials li.hover-facebook:hover {
  background-color: #337fff;
}
.list-socials li.hover-facebook:hover .bg {
  fill: #FFFFFF !important;
}
.list-socials li.hover-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}
.list-socials li.hover-instagram:hover .bg {
  fill: #FFFFFF !important;
}
.list-socials li.hover-whatsapp:hover {
  background-color: #25d366;
}
.list-socials li.hover-whatsapp:hover .bg {
  fill: #FFFFFF !important;
}
.list-socials li.hover-linkedin:hover {
  background-color: #006699;
}
.list-socials li.hover-linkedin:hover .bg {
  fill: #006699 !important;
}
.list-socials li.hover-behance:hover {
  background-color: #053eff;
}
.list-socials li.hover-behance:hover .bg {
  fill: #ffffff !important;
}
.list-socials li.hover-art:hover {
  background-color: #000000;
}
.list-socials li.hover-art:hover .bg {
  fill: #13aff0;
}
.list-socials li a {
  display: flex;
  transition: all 400ms;
}

.bloque-proyectos {
  padding: 3rem 0;
  background-color: #F5F5F5;
}
.bloque-proyectos .title-g {
  color: #16312D;
  text-align: center;
}
.bloque-proyectos .parent-content {
  min-height: 300px;
}
@media (min-width: 1200px) {
  .bloque-proyectos .parent-content {
    min-height: 400px;
  }
}
.bloque-proyectos .category-container {
  width: 100%;
  overflow-y: scroll;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  padding-left: 0.5rem;
}
.bloque-proyectos .category-container .flex-category {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
}
.bloque-proyectos .category-container .flex-category .link-category {
  flex-shrink: 0;
  color: #16312D;
}
.bloque-proyectos .category-container .flex-category .link-category.active {
  color: #FF0A88;
  pointer-events: none;
}
@media (min-width: 576px) {
  .bloque-proyectos .category-container .flex-category {
    justify-content: flex-end;
  }
}
@media (min-width: 576px) {
  .bloque-proyectos .category-container {
    overflow: hidden;
  }
}
.bloque-proyectos .container-notResults {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}
.bloque-proyectos .container-notResults .title {
  color: #EF5DA8;
}
@media (min-width: 1200px) {
  .bloque-proyectos .container-notResults {
    min-height: 400px;
  }
}
@media (min-width: 992px) {
  .bloque-proyectos {
    padding: 4rem 0;
  }
}

.card-proyecto {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  margin-bottom: 1rem;
  transition: all 400ms;
}
.card-proyecto .img-proyecto {
  height: 150px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .card-proyecto .img-proyecto {
    height: 250px;
  }
}
.card-proyecto .title-proyecto {
  color: #16312D;
  flex: 1 0 auto;
  margin-bottom: 0;
  transition: all 400ms;
}
@media (min-width: 768px) {
  .card-proyecto .title-proyecto {
    padding: 0 1rem;
  }
}
.card-proyecto:hover {
  transform: scale(1.1);
}
.card-proyecto:hover .title-proyecto {
  color: #EF5DA8;
}
@media (min-width: 1200px) {
  .card-proyecto {
    margin-bottom: 2rem;
  }
}

.bloque-interna-proyectos {
  width: 100%;
  min-height: 100vh;
  background-color: #F5F5F5;
  padding-top: 120px;
  padding-bottom: 3rem;
}
.bloque-interna-proyectos .parent-container {
  position: relative;
}
.bloque-interna-proyectos .title-proyecto {
  text-align: center;
  color: #000000;
}
.bloque-interna-proyectos .text-fecha {
  color: #000000;
}
.bloque-interna-proyectos .list-category-text {
  display: flex;
  flex-wrap: wrap;
  color: #000000;
}
.bloque-interna-proyectos .list-category-text span {
  margin-bottom: 0;
}
.bloque-interna-proyectos .list-category-text span:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 6px;
}
.bloque-interna-proyectos .content-align {
  width: 100%;
}
@media (min-width: 992px) {
  .bloque-interna-proyectos .content-align {
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .bloque-interna-proyectos .content-align {
    width: 60%;
  }
}
.bloque-interna-proyectos .content-proyectos {
  color: #000000;
}
@media (min-width: 992px) {
  .bloque-interna-proyectos .content-proyectos {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .bloque-interna-proyectos {
    padding-top: 9rem;
    padding-bottom: 6rem;
  }
  .bloque-interna-proyectos .btn-float {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.bloque-proyectos-relacionados {
  background-color: #F5F5F5;
  padding: 3rem 0;
}
.bloque-proyectos-relacionados .title-relacionados {
  color: #16312D;
  text-align: center;
}
@media (min-width: 992px) {
  .bloque-proyectos-relacionados {
    padding: 5rem 0;
  }
}
@media (min-width: 1200px) {
  .bloque-proyectos-relacionados {
    padding: 6rem 0;
  }
}

.bloque-contacto {
  width: 100%;
  background-color: #F5F5F5;
}
.bloque-contacto .img-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bloque-contacto .content-contacto {
  padding-top: 8rem;
  padding-bottom: 3rem;
  position: relative;
  min-height: 100vh;
}
.bloque-contacto .content-contacto .container {
  position: relative;
  z-index: 2;
}
.bloque-contacto .content-contacto .content-formulario {
  background-color: #FFFFFF;
  padding: 2rem;
  box-shadow: 6px 12px 40px rgba(22, 49, 45, 0.4);
  border-radius: 4px;
}
.bloque-contacto .content-contacto .content-formulario .title-contacto {
  color: #171717;
  text-align: center;
}
.bloque-contacto .content-contacto .content-formulario .text-contacto {
  color: #707070;
}
.bloque-contacto .content-contacto .content-formulario .container-formulario {
  position: relative;
}
.bloque-contacto .content-contacto .content-formulario .message-error-contact {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 1;
  width: 100%;
  padding: 16px 0;
}
.bloque-contacto .content-contacto .content-formulario .message-error-contact .title-error {
  color: #000000;
  margin-bottom: 35px;
}
.bloque-contacto .content-contacto .content-formulario .btn-main {
  width: 100%;
}
@media (min-width: 992px) {
  .bloque-contacto .content-contacto .content-formulario .btn-main {
    width: auto;
    min-width: 140px;
  }
}
@media (min-width: 576px) {
  .bloque-contacto .content-contacto .content-formulario {
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .bloque-contacto .content-contacto .content-formulario {
    max-width: 400px;
    margin-left: auto;
    margin-right: 0;
  }
}

.modal-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  transform: translateX(100%);
  background-color: #EF5DA8;
  overflow-y: auto;
}
.modal-menu .title-logo {
  color: #FFFFFF;
}
.modal-menu .header-menu {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.modal-menu .btn-close {
  cursor: pointer;
  height: 46px;
  width: 46px;
  background-color: #FFEBF7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: none;
}
.modal-menu .title-modal {
  color: #FFFFFF;
  margin-bottom: 2rem;
}
.modal-menu .space {
  margin-bottom: 5.5rem;
}
.modal-menu .list-menu-modal {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}
.modal-menu .list-menu-modal li {
  margin-bottom: 2rem;
}
.modal-menu .list-menu-modal a {
  color: #FFFFFF;
}
.modal-menu .title-socials {
  color: #FFFFFF;
  margin-bottom: 2rem;
}
.modal-menu .li-animation {
  opacity: 0;
  transform: translateY(16px);
}
.modal-menu .opacityAnimation {
  opacity: 0;
}/*# sourceMappingURL=main.css.map */