.hero___slide {
}
.hero___slide .hero__slide__item {
  position: relative;
}
.hero___slide .hero__slide__item img {
  width: 100%;
}

.hero___slide .info__hero__slide {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 4rem;
  padding-right: 4rem;
}

.hero___slide .info__hero__slide .inner__info__hero {
  width: 100%;
  max-width: 1440px;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.hero___slide .hero__slide__title {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  color: var(--blue-main);
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
}
.hero___slide .hero__slide__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 360px;
  font-weight: 500;
}
.hero___slide .swiper-button-prev,
.hero___slide .swiper-button-next {
  background-color: var(--white);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 1.75rem auto;
  background-position: center center;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}

.hero___slide .swiper-button-prev:after,
.hero___slide .swiper-button-next:after {
  content: none;
  display: none;
}
.hero___slide .swiper-button-prev {
  background-image: url("../img/icons/icon__arrow__left.svg");
}
.hero___slide .swiper-button-next {
  background-image: url("../img/icons/icon__arrow__right.svg");
}

.hero___slide .swiper-button-prev:hover,
.hero___slide .swiper-button-next:hover {
  -webkit-transform: scale(1.15, 1.15);
  -ms-transform: scale(1.15, 1.15);
  transform: scale(1.15, 1.15);
}
.hero___slide .swiper-pagination-bullet {
  width: 40px;
  border-radius: 0;
  height: 4px;
  background-color: var(--white);
  opacity: 1;
}
.hero___slide .swiper-pagination-bullet-active {
  background-color: var(--blue-secondary);
}

.hero__title__central{
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  color: var(--blue-main);
  font-weight: 500;
  font-size: 5rem;
  font-family: var(--font-bebas);
  width: 100%;
}

/* card product */
.card__product {
  max-width: 320px;
}

.card__product__img {
  background-color: var(--blue-ultralight);
  border-radius: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
}
.card__product:hover .card__product__img {
  background-color: var(--blue-light);
}
.card__product .card__product__img img {
  -webkit-transition: all cubic-bezier(0.17, 0.67, 0.83, 0.67) 0.25s;
  -o-transition: all cubic-bezier(0.17, 0.67, 0.83, 0.67) 0.25s;
  transition: all cubic-bezier(0.17, 0.67, 0.83, 0.67) 0.25s;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  max-height: 250px;
}
.card__product:hover .card__product__img img {
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
}

.card__product__view {
  background-color: var(--white);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 1rem;
  top: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card__product__title {
  font-size: 1.125rem;
  font-family: "Inter", sans-serif;
  color: var(--black);
  font-weight: 500;
}

.card__product__input {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.card__product__input.active {
  background-color: var(--blue-ultralight);
}
.card__product__input .card__product__delivery {
  display: none;
}
.card__product__input.active .card__product__delivery {
  display: block;
}

.card__product__inputlabel {
  width: 100%;
  padding-left: 0.25rem;
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
}
.card__product__inputprice {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--blue-main);
}
.card__product__delivery {
  background-color: var(--white);
  border-radius: 1rem;
  margin-top: 1rem;
  height: 1.5rem;
  line-height: 1em;
  color: var(--blue-main);
  padding-left: 1rem;
  padding-right: 1.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  background-image: url("../img/icons/icon__arrow__downblue.svg");
  background-repeat: no-repeat;
  background-position: 95% center;
  background-size: 10px auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.card__product__delivery:focus {
  outline-color: var(--blue-main);
}
.card__product__element {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card__product__cta{
    background-color: var(--white);
}
.header__categories {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto;
  margin-bottom: 2rem;
}
.header__categories__title {
  font-size: 3rem;
  font-family: var(--font-bebas);
  color: var(--blue-main);
  text-align: center;
}
.inner__header__categories {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 1200px;
}
.header__categories__item a {
  padding: 0.5rem 1.5rem;
  background-color: var(--blue-ultralight);
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--blue-main);
  font-family: var(--font-bebas);
  font-size: 1.5rem;
  margin-right: 1rem;
}
.header__categories__item a{
    -webkit-transition: all linear 0.25s;
    -o-transition: all linear 0.25s;
    transition: all linear 0.25s;
}

.product__not__available{
    color: var(--gray-medium);
    font-weight: 500;
    font-size: 1rem;
    opacity: 0.7;
}
/* .header__categories__item.active.is__agua__de__coco a,
.header__categories__item:hover.is__agua__de__coco a{
    background-color: var(--blue-secondary-main);
    color: var(--white);
} */

.header__categories__item:hover.is__agua__de__coco a{
    background-color: #EDF9FD;
}
.header__categories__item.active.is__agua__de__coco a{
    background-color: #4BC7EB;
    color: var(--white);
}
.header__categories__item:hover.is__bebida__con__coco a{
    background-color: #FDEDF3;
}
.header__categories__item.active.is__bebida__con__coco a{
    background-color: #EC3276;
    color: var(--white);
}
.header__categories__item:hover.is__crema__de__coco a{
    background-color: #FEF6D7;
}
.header__categories__item.active.is__crema__de__coco a{
    background-color: #F0C105;
    color: var(--white);
}
.header__categories__item:hover.is__pina__colada a{
    background-color: #DBEDFF;
}
.header__categories__item.active.is__pina__colada a{
    background-color: var(--blue-main);
    color: var(--white);
}
.header__categories__item:hover.is__aceite__de__coco a{
    background-color: #F1FBF8;
}
.header__categories__item.active.is__aceite__de__coco a{
    background-color: #32C997;
    color: var(--white);
}
.header__categories__item:hover.is__bebidas__especiales a{
    background-color: #FFF8EC;
}
.header__categories__item.active.is__bebidas__especiales a{
    background-color: #E48900;
    color: var(--white);
}


.grid__featured__recipes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card__featured__recipe {
  width: 31% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  border-radius: 1rem;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--white);
  margin-bottom: 2rem;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}
.card__featured__recipe:hover{
    background-color: #FBCF23; 
}
.card__featured__recipe:hover .desc__featured__recipe .title__featured__recipe,
.card__featured__recipe:hover .desc__featured__recipe .link__recipe {
    color: var(--white); 
}
.card__featured__recipe:hover .desc__featured__recipe .link__recipe svg path {
    stroke: var(--white); 
}
.card__featured__recipe > img {
  height: 100%;
  max-height: 180px;
  max-width: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.desc__featured__recipe {
  padding-left: 1rem;
  padding-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.title__featured__recipe {
  font-family: var(--font-bebas);
  font-size: 2rem;
  color: var(--blue-main);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}
.desc__featured__recipe .link__recipe {
  font-family: var(--font-bebas);
  font-size: 1.25rem;
  color: var(--blue-main);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  -webkit-transition: all linear 0.25s;
  -o-transition: all linear 0.25s;
  transition: all linear 0.25s;
}
.desc__featured__recipe .link__recipe svg {
  margin-left: 0.5rem;
}

.divider__slogan {
  background-color: var(--blue-light);
  padding: 4rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.inner__divider__slogan {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.inner__divider__slogan:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  max-width: 65%;
  background-color: var(--blue-medium);
}

.inner__divider__slogan:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 5px;
  margin-left: auto;
  margin-right: auto;
  max-width: 65%;
  background-color: var(--blue-medium);
}
.title__divider__slogan {
  font-family: var(--font-bebas);
  font-size: 4rem;
  color: var(--blue-medium);
  text-align: center;
  max-width: 1200px;
  margin-bottom: 0;
}

.wrap__sections {
  background-color: var(--green);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.inner__wrap__sections {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.card__section {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  max-width: 33%;
}
.card__section__title {
  font-size: 3rem;
  font-family: var(--font-bebas);
}

.card__section__desc {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.card__section__desc {
  margin-bottom: 2rem;
}

.slide__instagram .card__social a {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.slide__instagram .card__social a:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
  background-repeat: no-repeat;
  background-size: 2rem auto;
  background-position: center center;
  background-image: url("../img/icons/icon__instagram__gray.svg");
}

.slide__instagram .card__social:hover a:after {
  opacity: 1;
  visibility: visible;
}

.selector__number {
  background-color: var(--white);
  border-radius: 2rem;
  padding: 0.25rem 3.5rem 0.25rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 70px;
}
.selector__number input{
  min-width: 120px;
}

.selector__number .selector__number__add,
.selector__number .selector__number__remove {
  position: absolute;

  width: 24px;
  height: 20px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  background-color: transparent;
}
.selector__number .selector__number__add {
  top: 0.35rem;
  right: 1.5rem;
}
.selector__number .selector__number__remove {
  bottom: 0.35rem;
  right: 1.5rem;
}

.selector__number input {
  max-width: 80px;
  border-radius: 2rem;
  border: none;
}


.accordion__list {
  max-width: 100%;
  margin: 0 auto;
  padding-left: 0;
  list-style: none;
}
.accordion__list li {
  position: relative;
   margin-bottom: 0.5rem;
   background-color: var(--white);
   border-radius: 0.5rem;
   overflow: hidden;
}
.accordion__list li.active {
  border: 1px solid var(--blue-main);
}
.accordion__list li .content__accordion {
  display: none;
  padding: 10px 25px 30px;
  color: #6b97a4;
}
.accordion__list a {
  text-decoration: none;
  color: var(--gray-medium);
  font-family: var(--font-bebas);
  font-size: 1.5rem;
  width: 100%;
  display: block;
  cursor: pointer;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: var(--white);
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.accordion__list a:after {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--blue-main);
  border-bottom: 2px solid var(--blue-main);
  position: absolute;
  right: 1.5rem;
  content: " ";
  top: 18px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion__list .content__accordion p {
  font-size: 1rem;
  color: var(--gray-medium);
  font-family: var(--font-inter);
}

.accordion__list a.active:after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.hero__banner__action{
  position: relative;
}
.hero__banner__action > img {
  min-height: 550px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner__hero__action{
  max-width: 1440px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: calc(100% - 120px);
  width: 100%;
  margin-top: 120px;
}
.content__hero__banner{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hero__action__title{
  background-color: var(--white);
  border-radius: 1rem;
  padding: 0.25rem 1rem;
  color: var(--blue-main);
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 1.35em;
}

.hero__action__subtitle{
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  color: var(--green-text);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  max-width: 455px;
  font-weight: 500;
}



.tabs__nav .tabs__navigation__item a{
  text-decoration: none;
  color: var(--blue-main);
  font-family: var(--font-bebas);
  font-size: 1.5rem;
  background-color: var(--white);
  padding: 0.25rem 2rem;
  border-radius: 0.5rem;  
  -webkit-transition: all linear 0.25s;  
  -o-transition: all linear 0.25s;  
  transition: all linear 0.25s;
}
.tabs__nav .tabs__navigation__item a:hover {
  background-color: var(--blue-light);
}
/* .tabs__nav .tabs__navigation__item:first-child a {
  border-radius: 0.5rem;
  background-color: var(--blue-main);
  color: var(--white);
  text-decoration: none;
} */
.tabs__nav .tabs__navigation__item:last-child a {
  border-top-right-radius: 6px;
}

.tabs__navigation__wrap .tab__active a {
  background-color: var(--blue-main);
  color: var(--white);
}
.tabs__stage {
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.tabs__navigation__wrap{
  width: 100%;
}
.tabs__navigation__wrap .tabs__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.tabs__navigation__wrap .tabs__navigation__item {
  padding: 0.25rem 0.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.tabs__stage__item .tabs__stage__title{
  font-family: var(--font-bebas);
  color: var(--blue-main);
  font-size: 4rem;
}
.tabs__stage__content p{
  font-family: var(--font-inter);
  font-size: 1.125rem;
  font-weight: 500;
}

.card__section__cta{
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}



@media screen and (max-width: 1200px) {
  .hero___slide .info__hero__slide {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .hero___slide .hero__slide__title {
    font-size: 2rem;
  }
  .hero___slide .hero__slide__subtitle {
    font-size: 1.5rem;
  }
  .title__featured__recipe {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 960px) {
  .hero___slide .info__hero__slide {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  .hero___slide .hero__slide__title {
    font-size: 2rem;
  }
  .hero___slide .hero__slide__subtitle {
    font-size: 1.5rem;
  }
  .title__featured__recipe {
    font-size: 1.25rem;
  }
  .desc__featured__recipe .link__recipe {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .hero___slide .info__hero__slide {
    padding-left: 2rem;
    padding-right: 2rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 4rem;
  }
  .hero___slide .hero__slide__item img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    max-height: calc(100vh - 66px);
  }

  .hero___slide .swiper-button-prev,
  .hero___slide .swiper-button-next {
    display: none;
  }

  .card__product__title {
    font-size: 1rem;
    line-height: 1.35em;
  }
  .card__product__inputprice,
  .card__product__inputlabel {
    font-size: 0.875rem;
  }

  .inner__header__categories {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .header__categories__title {
    font-size: 1.75rem;
  }

  .header__categories__item a {
    font-size: 1.125rem;
  }

  .card__product {
    max-width: 100%;
  }

  .title__divider__slogan {
    font-size: 2.25rem;
  }

  .title__section {
    font-size: 2.125rem;
  }

  .grid__featured__recipes {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .card__featured__recipe {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-bottom: 0;
    width: 100% !important;
  }
  .desc__featured__recipe {
    width: 50%;
  }
  .inner__wrap__sections {
    padding-right: 0;
  }

  .card__section__title {
    font-size: 2rem;
  }
  .card__section {
    padding-bottom: 2rem;
  }

  .accordion__list a{
    font-size:  1.25rem;
  }

  .content__hero__banner{
    padding-left: 2rem;
    padding-right: 2rem;    
  }

  .hero__action__title{
    font-size: 2.5rem;
  }
  .hero__action__subtitle{
    font-size: 1.25rem;
  }

  .tabs__stage__item .tabs__stage__title{
    font-size: 2.5rem;
    line-height: 1.25em;
  }

  .tabs__stage{
    padding-left: calc(2rem - 12px);
    padding-right: calc(2rem - 12px);
    padding-bottom: 0;
  }
  .tabs__stage__content p{
    font-size: 1rem;
  }
  .card__section__desc{
    font-size: 0.875rem;
  }
  .hero__banner__action > img{
    -o-object-position: right top;
       object-position: right top;
  }
}
