@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@keyframes zoomin-zoomout {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-in-out {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes left-right {
  0% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes from-bottom-to-top {
  0% {
    bottom: 20%;
    right: 46%;
  }
  30% {
    bottom: 25%;
    right: 44%;
  }
  70% {
    bottom: 35%;
    right: 34%;
  }
  100% {
    bottom: 45%;
    right: 36%;
  }
}
@keyframes progressive-opacity {
  0% {
    opacity: 0%;
  }
  100% {
    opacity: 100%;
  }
}
.zoomin-zoomout {
  animation: zoomin-zoomout 15s linear infinite;
}

:root {
  --text-color-primary: #333;
  --color-1: #80c342;
  --color-2: #62598d;
  --color-3: #00aece;
  --color-4: #1d5f9f;
  --color-5: #2f2c81;
}

body {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}

.bg-body-light {
  background: #fff;
}

.logo {
  width: 300px;
  padding: 15px 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 30px;
  margin: 8px 0;
  line-height: 1.2;
}
.navbar-expand-lg .menu-border-left {
  border-left: 1px solid var(--text-color-primary);
}
.navbar-expand-lg .navbar-collapse {
  justify-content: flex-end;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--color-1);
  font-weight: 600;
}

.nav-link:focus, .nav-link:hover {
  color: var(--color-1);
  font-weight: 600;
}

.nav-sticky header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
}
.nav-sticky main {
  padding-top: 110px;
}

.external-menu,
.cross {
  cursor: pointer;
}

.external-menu {
  margin-top: 4px;
}

#external-menu {
  position: fixed;
  z-index: 9999;
  background-color: var(--color-1);
  height: 100vh;
  transform: translateX(-1000px);
  transition: all 0.5s ease;
}
#external-menu .header {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  align-items: center;
  height: 60px;
  padding: 10px 15px;
}
#external-menu .logo img {
  width: 200px;
}
#external-menu .body {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
}
#external-menu .body a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 0;
}

section {
  position: relative;
}

.float-item {
  position: absolute;
}

.banner {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.banner .banner-slider,
.banner .slide {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
.banner .banner-img {
  width: 100%;
  height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.banner .slide_1 .float-element1 {
  top: 15%;
  left: 5%;
}
.banner .slide_1 .float-element1 img {
  width: 40vw;
}
.banner .slide_1 .tacc {
  top: 5%;
  right: 3%;
  width: 15vw;
}
.banner .slide_2 .float-element1 {
  bottom: 20%;
  right: 5%;
}
.banner .slide_2 .float-element1 img {
  width: 40vw;
}
.banner .slide_3 .float-element1 {
  top: 15%;
  left: 10%;
}
.banner .slide_3 .float-element1 img {
  width: 24vw;
}
.banner .slide_3 .text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 15px 30px;
  border-radius: 50px;
  width: 300px;
  text-align: center;
  margin: 0 auto;
}
.banner .slide_3 .text h2 {
  letter-spacing: 5px;
  color: var(--color-1);
}
.banner .slide_3 .text h2 span {
  color: var(--color-3);
}
.banner .socials {
  display: flex;
  bottom: 5%;
  right: 5%;
}
.banner .socials a {
  color: #fff;
  background-color: var(--color-2);
  border-radius: 25px;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s ease;
}
.banner .socials a:hover {
  background-color: #fff;
  border: 1px solid var(--color-2);
}
.banner .socials a:hover i {
  color: var(--color-2);
}
.banner .banner-footer-text {
  bottom: 5%;
  left: 7%;
}
.banner .banner-footer-text p {
  color: #fff;
}
.banner .slick-dots {
  bottom: 10px;
}
.banner .slick-prev,
.banner .slick-next {
  z-index: 1;
}
.banner .slick-prev {
  left: 50px;
}
.banner .slick-next {
  right: 50px;
}

.py-60 {
  padding: 60px 0;
}

.pb-30 {
  padding-bottom: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.title h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.5;
}
.title h3 span {
  letter-spacing: 10px;
}
.title p {
  font-size: 1.5rem;
  font-weight: 600;
}

.subtitle p {
  font-size: 1.2rem;
  font-weight: 400;
}

.tridigestivo {
  background-color: var(--color-1);
  border-radius: 10px;
  padding: 10px 2px;
}

.bg-section-info {
  background-image: url("../img/home/fondo-azul.webp");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}
.bg-section-info.internal {
  background-image: unset;
}

.w-750 {
  width: 750px;
}

.info-text {
  text-align: center;
  margin: 0 auto;
}
.info-text p {
  color: #fff;
}
.info-text p span {
  color: var(--color-1);
}
.info-text.internal h3 {
  color: var(--color-5);
  margin-bottom: 50px;
}

.info-img {
  position: relative;
  text-align: center;
  padding: 30px 0;
  height: 300px;
  left: 350px;
  width: 100%;
}
.info-img img {
  width: 300px;
  margin: 0 auto;
}
.info-img .carbo,
.info-img .prote,
.info-img .grasas {
  top: 0;
}
.info-img .carbo {
  left: 0;
}
.info-img .prote {
  left: 156px;
}
.info-img .grasas {
  left: 310px;
  top: 4px;
}

.info-img-mobile {
  display: none;
}

.info-box {
  text-align: center;
}
.info-box h3 {
  color: #fff;
  margin: 30px 0;
}
.info-box h3 span {
  letter-spacing: 10px;
}
.info-box h3 span.color1 {
  color: var(--color-3);
  background-color: unset;
  padding: unset;
}
.info-box h3 span.color2 {
  color: var(--color-1);
}

.info-capsule {
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-capsule .info-capsule-img {
  flex: 0 0 30%;
}
.info-capsule img {
  width: 100%;
}
.info-capsule .info-capsule-text {
  flex: 0 0 70%;
  text-align: left;
}
.info-capsule .info-capsule-text p {
  color: #fff;
  margin-bottom: 0;
}
.info-capsule .info-capsule-text .title {
  font-size: 1.5rem;
  font-weight: 600;
}
.info-capsule.internal {
  flex-direction: column;
  margin: 30px 0;
}
.info-capsule.internal .imagen {
  text-align: center;
}
.info-capsule.internal img {
  width: 60%;
  margin-bottom: 20px;
}

.middle-border {
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}

.bg-section-benefits {
  background-color: var(--color-3);
}

.benefits {
  overflow: hidden;
}
.benefits .benefits-text {
  text-align: center;
  margin-bottom: 50px;
}
.benefits .benefits-text.internal {
  text-align: left;
}
.benefits .benefits-text.internal h3 {
  color: var(--color-3);
}
.benefits .benefits-text.internal span {
  color: var(--color-3);
}
.benefits .benefits-capsule {
  text-align: center;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle {
  position: relative;
  background-color: #fff;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 125px;
  margin: 0 auto;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circle2 {
  top: 138px;
  right: 29px;
  animation: zoom-in-out 1.5s 1s linear alternate infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circle1 {
  top: 82px;
  right: 21px;
  animation: zoom-in-out 1s 1s linear alternate infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-13 {
  opacity: 0;
  top: 174px;
  right: 133px;
  animation: fade-in-out 2s 1.5s linear alternate infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-12 {
  opacity: 0;
  top: 174px;
  right: 98px;
  animation: fade-in-out 1.4s 1s linear alternate infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-11 {
  opacity: 0;
  top: 159px;
  right: 114px;
  animation: fade-in-out 0.8s 0.8s linear alternate infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-10 {
  opacity: 0;
  top: 140px;
  right: 95px;
  animation: fade-in-out 1s 0.5s linear alternate infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-9 {
  opacity: 0;
  top: 140px;
  right: 78px;
  animation: fade-in-out 1s 1s linear alternate infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-8 {
  opacity: 0;
  top: 94px;
  right: 90px;
  animation: fade-in-out 2s 1.6s linear reverse infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-7 {
  opacity: 0;
  top: 100px;
  right: 96px;
  animation: fade-in-out 2s 0.8s linear reverse infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-6 {
  opacity: 0;
  top: 156px;
  right: 49px;
  animation: fade-in-out 2s 1.5s linear reverse infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-5 {
  opacity: 0;
  top: 163px;
  right: 56px;
  animation: fade-in-out 2s 1s linear reverse infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-4 {
  opacity: 0;
  top: 169px;
  right: 62px;
  animation: fade-in-out 2s 0.5s linear reverse infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-3 {
  opacity: 0;
  top: 42px;
  right: 40px;
  animation: fade-in-out 2s 2s linear reverse infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-2 {
  opacity: 0;
  top: 49px;
  right: 47px;
  animation: fade-in-out 2s 1.5s linear reverse infinite;
}
.benefits .benefits-capsule .benefits-capsule-img .icon-circle .circulo-verde-1 {
  opacity: 0;
  top: 55px;
  right: 53px;
  animation: fade-in-out 2s 1s linear reverse infinite;
}
.benefits .benefits-capsule .benefits-capsule-text {
  width: 70%;
  margin: 0 auto;
}
.benefits .benefits-capsule .benefits-capsule-text .title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 25px;
}
.benefits .benefits-capsule .benefits-capsule-text .subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 auto;
}
.benefits .forma {
  right: -200px;
  bottom: -150px;
}

.how-to {
  overflow: hidden;
}
.how-to .how-to-text {
  text-align: center;
  margin-bottom: 60px;
}
.how-to .how-to-text h3 {
  color: var(--color-5);
}
.how-to .how-to-text .tridigestivo {
  color: #fff;
}
.how-to .how-to-text .color2 {
  color: var(--color-1);
}
.how-to .how-to-capsule {
  display: flex;
  justify-content: center;
  align-items: center;
}
.how-to .how-to-capsule .how-to-capsule-img {
  flex: 0 0 20%;
}
.how-to .how-to-capsule .how-to-capsule-img img {
  width: 100%;
}
.how-to .how-to-capsule .how-to-capsule-text {
  flex: 0 0 80%;
  padding: 0 25px;
}
.how-to .how-to-capsule .how-to-capsule-text .title {
  font-size: 1.5rem;
  font-weight: 600;
}
.how-to .middle-border {
  border-color: var(--color-5);
  border-right: unset;
}
.how-to .how-to-button {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.how-to .how-to-button a {
  letter-spacing: 5px;
  font-weight: 600;
}
.how-to .forma {
  left: 0;
  top: 0;
  z-index: -1;
}

.btn-primary {
  background: var(--color-3);
  border: unset;
  border-radius: 50px;
  padding: 20px 30px;
  transition: all 0.5s ease;
}
.btn-primary:hover {
  background: #fff;
  border: 1px solid var(--color-3);
  color: var(--color-3);
}

.bg-section-why {
  background-image: url("../img/home/fondo-azul-2.webp");
  background-repeat: no-repeat;
  background-size: cover;
}

.text-green {
  letter-spacing: normal;
  color: var(--color-1);
}

.why .img-body-left {
  display: flex;
  height: 100%;
}
.why .img-body-left .img-body {
  -o-object-position: bottom;
     object-position: bottom;
  -o-object-fit: cover;
     object-fit: cover;
  width: 80%;
}
.why .why-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 60px 0;
}
.why .why-text h3 {
  color: var(--color-1);
  line-height: 1.8;
  margin-bottom: 30px;
}
.why .why-text h3 span {
  color: #fff;
}
.why .why-text p {
  color: #fff;
}
.why .why-text.internal {
  text-align: center;
}
.why .why-text.internal h3 {
  color: #fff;
}
.why .why-text.internal .subtitle {
  width: 700px;
  margin: 0 auto;
}
.why .why-text.internal .imagen {
  position: relative;
}
.why .why-text.internal .imagen img {
  width: 60%;
}
.why .why-text.internal .imagen .float-item {
  top: 0;
  right: 18%;
  background-color: var(--color-1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 100px;
  width: 140px;
}
.why .why-text.internal .imagen .float-item img {
  width: 60px;
}
.why .why-text.internal .imagen .float-item .subtitle {
  line-height: 1;
  width: unset;
}
.why .why-text.internal .imagen .float-item .subtitle p {
  font-weight: 700;
}
.why .why-text.internal .tridigestivo {
  color: #fff;
}
.why .why-text.internal p span {
  color: var(--color-2);
}
.why .why-text.internal .btn-primary {
  background-color: var(--color-1);
}
.why .why-text.internal .btn-primary:hover {
  border-color: var(--color-1);
  background-color: #fff;
  color: var(--color-1);
}

.bg-section-contact {
  background: var(--color-3);
}

.contact-text {
  text-align: center;
  color: #fff;
}
.contact-text .title h3 {
  font-weight: 800;
  letter-spacing: 10px;
}
.contact-text .subtitle p {
  font-size: 1.2rem;
}
.contact-text a {
  text-decoration: none;
  color: #fff;
}
.contact-text .socials {
  display: flex;
  justify-content: center;
}
.contact-text .socials a {
  color: var(--color-3);
  background-color: #fff;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s ease;
}
.contact-text .socials a:hover {
  background-color: #fff;
  border: 1px solid var(--color-2);
}
.contact-text .socials a:hover i {
  color: var(--color-2);
}

.bg-section-enzimas-top {
  background-image: url("../img/enzimas/portada2.webp");
  width: 100vw;
  overflow: hidden;
}

.enzimas-text,
.faq-text {
  text-align: center;
  padding: 40px;
}
.enzimas-text h3,
.faq-text h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
}

.enzimas .dibujo {
  bottom: -100px;
  right: 20%;
  width: 80%;
}

.bg-section-siempreamano {
  background: linear-gradient(180deg, rgb(32, 28, 41) 0%, rgb(47, 44, 129) 100%);
}

.siempreamano {
  position: relative;
  padding: 120px 0;
}
.siempreamano .info-text {
  text-align: left;
}
.siempreamano .info-text h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-1);
}
.siempreamano .info-text p {
  color: #fff;
  font-weight: 400;
}
.siempreamano .text-blue h4 {
  font-size: 2rem;
  color: var(--color-3);
}
.siempreamano .forma {
  bottom: -300px;
  left: -250px;
  width: 55%;
  z-index: 0;
}
.siempreamano .foto-redonda {
  width: 60%;
}
.siempreamano .imagen {
  position: relative;
  z-index: 1;
  text-align: center;
}
.siempreamano .imagen .float-item {
  top: 0;
  right: 10%;
  background-color: var(--color-3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 100px;
  width: 140px;
}
.siempreamano .imagen .float-item img {
  width: 60px;
}
.siempreamano .imagen .float-item .subtitle {
  line-height: 1;
  width: unset;
}
.siempreamano .imagen .float-item .subtitle p {
  font-weight: 700;
}
.siempreamano .imagen .float-item-2 {
  position: absolute;
  bottom: -40px;
  right: 25px;
}
.siempreamano .imagen .float-item-2 img {
  width: 300px;
}
.siempreamano .imagen .subtitle {
  text-align: center;
}
.siempreamano .imagen .subtitle p {
  color: #fff;
}

.bg-section-faq-top {
  background-image: url("../img/faq/portada1.webp");
}
.bg-section-faq-top .col-lg-3 {
  display: flex;
  align-items: center;
}
.bg-section-faq-top .imagen1 {
  width: 500px;
  left: 5%;
  top: 25%;
}
.bg-section-faq-top .imagen2 {
  right: 18%;
  width: 200px;
  top: 15%;
}

.accordion-button:focus {
  box-shadow: unset;
}

.accordion-item {
  border: unset;
}

.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  color: #fff;
  margin: 10px 0;
  background-color: var(--color-3);
  border-radius: 10px;
}

.accordion-flush > .accordion-item > .accordion-header .accordion-button {
  background-color: var(--color-1);
  border-radius: 10px;
  color: #fff;
}

.accordion-button:not(.collapsed) {
  box-shadow: unset;
}

.accordion-item {
  margin: 10px 0;
  background-color: var(--color-3);
  border-radius: 10px !important;
}
.accordion-item.active {
  background-color: var(--color-1) !important;
}

.accordion-button::after {
  filter: brightness(100);
}

.accordion-body {
  color: #fff;
}

.icons-with-animation .info-capsule .imagen {
  position: relative;
}
.icons-with-animation .info-capsule .imagen .pesadez {
  width: 18%;
  bottom: 18%;
  right: 31%;
  animation: up-down 1s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .inflamacion {
  width: 10%;
  top: 16%;
}
.icons-with-animation .info-capsule .imagen .inflamacion.inflamacion1 {
  left: 38%;
  animation: fade-in-out 2s 1s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .inflamacion.inflamacion2 {
  left: 50%;
  animation: fade-in-out 2s 1s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .hinchazon {
  width: 18%;
  bottom: 18%;
  right: 41%;
  animation: zoom-in-out 0.5s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .distension {
  width: 10%;
}
.icons-with-animation .info-capsule .imagen .distension.distension1 {
  right: 31%;
  bottom: 35%;
  animation: left-right 0.5s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .distension.distension2 {
  right: 32%;
  bottom: 20%;
  animation: left-right 0.5s 0.5s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .reflujo {
  width: 10%;
  bottom: 20%;
  right: 46%;
  animation: from-bottom-to-top 2s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .dolor {
  width: 4%;
}
.icons-with-animation .info-capsule .imagen .dolor.dolor1 {
  opacity: 0;
  bottom: 26%;
  right: 42%;
  animation: progressive-opacity 1s 1s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .dolor.dolor2 {
  opacity: 0;
  bottom: 23%;
  right: 37%;
  animation: progressive-opacity 1s 1.5s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .dolor.dolor3 {
  opacity: 0;
  bottom: 22%;
  right: 31%;
  animation: progressive-opacity 1s 2s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .colicos {
  right: 29%;
}
.icons-with-animation .info-capsule .imagen .colicos.colicos1 {
  width: 20%;
  bottom: 50%;
  animation: up-down 2s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .colicos.colicos2 {
  width: 8%;
  bottom: 28%;
  right: 34%;
  animation: fade-in-out 1s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .colicos.colicos3 {
  width: 4%;
  bottom: 28%;
  right: 44%;
  animation: fade-in-out 0.8s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .colicos.colicos4 {
  width: 6%;
  bottom: 20%;
  right: 48%;
  animation: fade-in-out 0.6s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .colicos.colicos5 {
  width: 4%;
  bottom: 20%;
  right: 40%;
  animation: fade-in-out 0.4s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .colicos.colicos6 {
  width: 4%;
  bottom: 28%;
  right: 54%;
  animation: fade-in-out 0.4s alternate linear infinite;
}
.icons-with-animation .info-capsule .imagen .gases {
  width: 10%;
  animation: from-bottom-to-top 3s alternate linear infinite;
}

.footer {
  text-align: center;
  padding: 25px 0;
}

.logo-footer {
  width: 200px;
}

.legal {
  color: var(--color-3);
}
.legal a {
  color: var(--color-3);
  text-decoration: none;
}

.copyright {
  padding: 10px 0;
  display: flex;
  justify-content: center;
}
.copyright a {
  text-decoration: none;
  color: var(--text-color-primary);
  transition: all 0.3s ease;
}
.copyright a:hover {
  color: var(--color-1);
  font-weight: 600;
}

@media (max-width: 1399px) {
  .bg-section-faq-top .imagen2 {
    width: 180px;
    top: 21%;
  }
  .bg-section-faq-top .imagen1 {
    width: 400px;
    top: 30%;
  }
  .info-img {
    left: 250px;
  }
}
@media (max-width: 1199px) {
  body {
    font-size: 14px;
  }
  .banner .slide_3 .float-element1 img {
    width: 300px;
  }
  .enzimas .dibujo {
    bottom: 0;
  }
  .bg-section-faq-top .imagen2,
  .bg-section-faq-top .imagen1 {
    display: none;
  }
  .info-img {
    left: 14vw;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 13px;
  }
  .external-menu {
    display: none;
  }
  .navbar-toggler {
    border: unset;
  }
  .navbar-toggler:focus {
    box-shadow: unset;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28116, 201, 45, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-nav {
    flex-direction: row;
  }
  .banner .slide_1 .float-element1 img {
    width: 400px;
    bottom: unset;
    top: 5%;
  }
  .banner .slide_2 img {
    -o-object-position: bottom left;
       object-position: bottom left;
  }
  .banner .slide_2 .float-element1 {
    bottom: unset;
    top: 5%;
  }
  .banner .slide_2 .float-element1 img {
    width: 300px;
  }
  .banner .slide_3 .text h2 {
    font-size: 1rem;
  }
  .banner .socials {
    bottom: 14%;
  }
  .title p {
    font-size: 1.2rem;
  }
  .info-capsule .info-capsule-img {
    flex: 0 0 20%;
  }
  .info-capsule .info-capsule-text {
    flex: 0 0 80%;
  }
  .middle-border {
    border: unset;
  }
  .benefits .benefits-capsule {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
  }
  .benefits .benefits-capsule .benefits-capsule-img {
    flex: 0 0 20%;
  }
  .benefits .benefits-capsule .benefits-capsule-text {
    flex: 0 0 80%;
    width: 100%;
    margin-left: 30px;
  }
  .benefits .benefits-capsule .benefits-capsule-text .title,
  .benefits .benefits-capsule .benefits-capsule-text .subtitle {
    text-align: left;
  }
  .why .img-body-left {
    height: unset;
    justify-content: center;
  }
  .why .img-body-left .img-body {
    width: 35%;
  }
  .why .why-text {
    text-align: center;
  }
  .enzimas-text h3,
  .faq-text h3 {
    font-size: 3rem;
  }
  .enzimas .dibujo {
    bottom: unset;
    top: 5%;
  }
  .why .why-text.internal .subtitle {
    width: unset;
  }
  .siempreamano .imagen .float-item {
    top: -90px;
  }
  .siempreamano .imagen .float-item-2 {
    bottom: -90px;
  }
  .info-img {
    left: 5vw;
  }
}
@media (max-width: 767px) {
  .banner .slide_3 .banner-text,
  .banner .slide_2 .banner-text,
  .banner .slide_1 .banner-text {
    width: 45%;
  }
  .banner .socials {
    bottom: 16%;
  }
  .banner .socials a {
    width: 30px;
    height: 30px;
  }
  .benefits .benefits-text.internal {
    margin-bottom: 0;
  }
  .enzimas .dibujo {
    position: unset;
  }
  .siempreamano .imagen .float-item,
  .siempreamano .imagen .float-item-2 {
    position: unset;
    margin: 25px auto;
  }
  .siempreamano .info-text {
    text-align: center;
  }
  .info-img {
    display: none;
  }
  .info-img-mobile {
    display: block;
    text-align: center;
  }
  .circulos-mobile {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .logo {
    width: 150px;
  }
  .navbar-nav {
    flex-direction: column;
  }
  .banner .socials {
    display: none;
  }
  .banner .banner-footer-text {
    left: 0;
    padding: 0 15px;
  }
  .banner .banner-footer-text p {
    font-size: 0.75rem;
  }
  .banner .slide_1 img {
    -o-object-position: 62%;
       object-position: 62%;
  }
  .banner .slide_1 .float-element1 {
    top: unset;
    bottom: 15%;
    left: 0;
    padding: 0 15px;
  }
  .banner .slide_1 .float-element1 img {
    width: 90vw;
  }
  .banner .slide_2 .float-element1 {
    right: 0;
    padding: 0 15px;
  }
  .banner .slide_2 .float-element1 img {
    width: 90vw;
  }
  .banner .slide_3 .float-element1 {
    left: 0;
    padding: 0 15px;
  }
  .banner .slide_3 .float-element1 img {
    width: 90vw;
  }
  .info-capsule {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .info-capsule .info-capsule-img img {
    width: 50%;
  }
  .info-capsule .info-capsule-text {
    text-align: center;
  }
  .benefits .benefits-capsule {
    flex-direction: column;
  }
  .benefits .benefits-capsule .benefits-capsule-text {
    margin-left: 0;
  }
  .benefits .benefits-capsule .benefits-capsule-text .title,
  .benefits .benefits-capsule .benefits-capsule-text .subtitle {
    text-align: center;
  }
  .title h3 {
    font-size: 1.8rem;
  }
  .title h3 span {
    letter-spacing: 5px;
  }
  .benefits .benefits-text.internal .title,
  .benefits .benefits-text.internal .subtitle {
    text-align: center;
  }
  .benefits .position-relative {
    text-align: center;
  }
  .why .why-text.internal .imagen {
    text-align: center;
  }
  .why .why-text.internal .imagen .float-item {
    position: unset;
    margin: 25px auto 0;
  }
  .enzimas-text h3,
  .faq-text h3 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=styles.css.map */