@font-face {
  font-family: Gotham;
  src: url('../fonts/Gotham-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url('../fonts/Gotham-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Recoleta;
  src: url('../fonts/Recoleta-Alt-SemiBold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url('../fonts/Gotham-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Recoleta;
  src: url('../fonts/Recoleta-Alt-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Gotham;
  src: url('../fonts/Gotham-Book.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.body {
  background-color: #f8f3ec;
  font-family: Gotham, Arial, sans-serif;
  font-size: 17px;
}

.header {
  z-index: 100;
  width: 100%;
  transition: background-color .5s;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar {
  z-index: 5;
  background-color: #512381;
  border-radius: 65px;
  width: 90%;
  min-width: 992px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 40px;
}

.navbar-wrapper {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand {
  width: 90px;
}

.nav-menu-wrapper {
  width: 85%;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: #f8f3ec;
  padding: 5px 10px;
  font-size: 17px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  position: relative;
}

.nav-link:hover {
  color: #ebb963;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #ebb963;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  color: #ebb963;
}

.desktop-wrapper {
  margin-left: auto;
}

.nav-button-wrapper {
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.button {
  color: #512381;
  text-align: center;
  text-transform: uppercase;
  background-color: #f6ede1;
  border-radius: 25px;
  padding: 10px 30px;
  font-family: Gotham, Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}

.button.btn-orange {
  background-color: #ebb963;
}

.button.btn-orange:hover {
  color: #f6ede1;
}

.button.btn-stroke {
  background-color: #0000;
  border: 1px solid #6f4a9d;
}

.button.btn-stroke:hover, .button.btn-stroke.active {
  color: #f6ede1;
}

.button.btn-stroke.btn-contact {
  min-width: 220px;
  margin-bottom: 20px;
}

.button.btn-icon {
  background-color: #0000;
  border: 1px solid #ebb963;
  align-items: center;
  margin: 10px;
  display: flex;
}

.button.btn-icon:hover, .button.btn-icon.active {
  color: #f8f3ec;
  border-color: #512381;
}

.button.btn-purple {
  color: #f8f3ec;
  background-color: #512381;
}

.button.btn-purple:hover {
  color: #512381;
}

.link-social {
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
}

.link-social.social-footer {
  margin-left: 0;
  margin-right: 0;
}

.icon-social {
  transition: opacity .2s;
  display: block;
  position: relative;
}

.icon-social.i-hover {
  opacity: 0;
  display: none;
  position: absolute;
  inset: auto auto 0% 0%;
}

.nav-dot {
  opacity: 0;
  background-color: #ebb963;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  margin-top: auto;
  margin-bottom: auto;
  transition: opacity .2s;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.image-brand {
  width: 100%;
}

.list-item {
  margin-left: 1%;
  margin-right: 1%;
}

.list-item.item-left {
  margin-left: auto;
}

.mobile-wrapper {
  display: none;
}

.search {
  z-index: 4;
  background-color: #f8f3ec;
  border: 1px solid #512381;
  justify-content: flex-start;
  align-items: center;
  width: 86%;
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  transition: top .375s;
  display: flex;
  position: absolute;
  inset: 100% 0% auto;
}

.search.hide {
  top: 0%;
}

.search-input {
  color: #512381;
  background-color: #0000;
  border: 0 solid #000;
  height: 30px;
  margin-bottom: 0;
  margin-right: 20px;
  padding: 5px 20px;
  font-size: 17px;
}

.btn-search {
  border-right: 2px solid #512381;
  padding: 3px 20px 3px 5px;
}

.btn-search.search-categories {
  padding-top: 0;
  padding-bottom: 0;
}

.icon-search {
  width: 20px;
  height: 20px;
}

.icon-close {
  width: 30px;
  height: 30px;
}

.btn-submit-search {
  display: none;
}

.slider-main {
  height: 55vw;
}

.slide {
  background-image: url('../images/hereo.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.mask {
  height: 100%;
}

.icon-arrow-hero {
  width: 45px;
  height: 45px;
  display: block;
}

.left-arrow {
  opacity: 1;
  width: 45px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity .2s;
  inset: auto 75px 0% 0%;
}

.left-arrow:hover {
  opacity: .5;
}

.left-arrow.arrow-time {
  margin-right: 5%;
  transition: transform .2s;
  inset: auto 60px 0% auto;
}

.left-arrow.arrow-time:hover {
  opacity: 1;
  transform: scale(1.1);
}

.right-arrow {
  opacity: 1;
  width: 45px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  transition: opacity .2s;
  inset: auto 0% 0% 60px;
}

.right-arrow:hover {
  opacity: .5;
}

.right-arrow.arrow-time {
  margin-right: 5%;
  transition: transform .2s;
  inset: auto 0% 0% auto;
}

.right-arrow.arrow-time:hover {
  opacity: 1;
  transform: scale(1.1);
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section.bg-purple {
  color: #f0e8eb;
  background-color: #6f4a9d;
}

.section.bg-beige {
  background-color: #f6ede1;
}

.section.bg-beige.section-detalle {
  color: #512381;
  border-bottom: 1px solid #512381;
  padding-top: 140px;
}

.section.bg-light {
  background-color: #f0e8eb;
}

.section.section-receta {
  padding-top: 0;
}

.section.section-receta.related {
  padding-top: 100px;
}

.h1 {
  font-size: 36px;
}

.h1.text-purple.slide-from-bottom.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-center.wrapper-filter {
  display: none;
}

.container-text {
  max-width: 905px;
}

.container-text.text-center {
  position: relative;
}

.container-parallax {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-parallax {
  position: absolute;
}

.image-parallax._1 {
  inset: 0% auto auto 16%;
}

.image-parallax._2 {
  inset: 0% 0% auto auto;
}

.image-parallax._3 {
  inset: auto auto 0% 5%;
}

.image-parallax._4 {
  margin-top: auto;
  margin-bottom: auto;
  inset: 0% 15% 0 auto;
}

._2vh {
  background-color: #999;
  height: 200vh;
  padding-top: 27px;
  display: none;
}

.text-purple {
  color: #512381;
  font-weight: 500;
}

.container-full {
  width: 90%;
  max-width: none;
  position: relative;
}

.container-full.to-right {
  width: 95%;
  margin-right: 0;
  display: flex;
  overflow: hidden;
}

.header-grid {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.wrapper-header-buttons {
  text-align: right;
  min-width: 25%;
  display: block;
}

.font-recoleta {
  font-family: Recoleta, Times New Roman, sans-serif;
}

.font-recoleta.font-medium {
  font-weight: 500;
}

.bg-hover {
  z-index: 0;
  background-color: #ebb963;
  width: 100%;
  height: 0%;
  transition: height .3s;
  position: absolute;
  inset: 0%;
}

.bg-hover.bg-primary {
  background-color: #512381;
}

.text-button {
  position: relative;
}

.h-40 {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
}

.h-40.slide-from-bottom.font-medium {
  font-weight: 500;
}

.h-40.mb {
  margin-bottom: 40px;
}

.h-40.h-min {
  max-width: 310px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 40px;
  position: relative;
}

.h-40.font-medium {
  font-weight: 500;
}

.text-orange {
  color: #ebb963;
}

.text-orange.breadcrumb {
  text-transform: uppercase;
}

.margin-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.margin-0.h-40.font-medium {
  font-weight: 500;
}

.swiper.swiper-products {
  margin-bottom: 20px;
}

.swiper.swiper-related {
  margin-top: 20px;
}

.swiper-wrapper {
  display: flex;
}

.card-catalogue {
  color: #2e2e2e;
  text-align: center;
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  height: 19vw;
  min-height: 250px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-catalogue {
  background-image: url('../images/especias_plantas.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}

.header-catalogue.bg-dulces {
  background-image: url('../images/dulces.jpg');
}

.header-catalogue.bg-bebidas {
  background-image: url('../images/bebidas.jpg');
}

.header-catalogue.bg-granos {
  background-image: url('../images/granos_cereales.jpg');
}

.header-catalogue.bg-reposteria {
  background-image: url('../images/reposteria.jpg');
}

.header-catalogue.bg-salud {
  background-image: url('../images/salud.jpg');
}

.header-catalogue.bg-frutos {
  background-image: url('../images/frutas_botanas.jpg');
}

.header-catalogue.bg-hogar {
  background-image: url('../images/hogar.jpg');
}

.body-catalogue {
  background-color: #f6ede1;
  width: 100%;
  padding: 20px;
  position: relative;
}

.h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  line-height: 24px;
}

.h3.h-card {
  height: 50px;
  font-weight: 500;
  overflow: hidden;
}

.h3.font-medium {
  font-family: Gotham, Arial, sans-serif;
  font-weight: 500;
}

.text-catalogue {
  color: #ebb963;
  height: 0;
  font-family: Gotham, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: height .3s;
  overflow: hidden;
}

.header-container {
  margin-bottom: 20px;
}

.bg-section {
  background-image: url('../images/paralax_productos.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 120%;
  position: absolute;
  inset: 0%;
}

.bg-section.bg-granos {
  background-image: url('../images/paralax_granos.jpg');
}

.bg-section.bg-us {
  height: 100%;
  transform: scale3d(1none, 1none, 1none);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  background-image: url('../images/nosotros.jpg');
}

.bg-section.bg-ground {
  background-image: url('../images/nosotros_paralax.jpg');
  background-position: 50% 100%;
}

.bg-section.bg-receta {
  background-image: url('../images/ejemplo_ensalada.jpg');
  height: 100%;
}

.bg-section.bg-contacto {
  background-image: url('../images/contacto.jpg');
}

.wrapper-buttons-parallax {
  margin-top: 40px;
}

.image-conejo {
  width: 85px;
}

.section-parallax {
  color: #f6ede1;
  padding-top: 10vw;
  padding-bottom: 10vw;
  font-family: Recoleta, Times New Roman, sans-serif;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.section-parallax.parallax-us {
  padding-top: 20vw;
  padding-bottom: 15vw;
}

.d-relative {
  position: relative;
}

.card {
  color: #512381;
  border: 1px solid #512381;
  border-radius: 16px;
  width: 100%;
  text-decoration: none;
  transition: border-color .5s, background-color .5s;
  overflow: hidden;
}

.card:hover {
  background-color: #f6ede1;
  border-color: #ebb963;
}

.card.card-products {
  padding: 10px;
}

.card-header {
  transform-origin: 50% 100%;
  background-image: url('../images/ejemplo_ensalada.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 20vw;
  max-height: 350px;
  transition: transform .2s;
  transform: scale(1);
}

.card-header.bg-gourmet {
  background-image: url('../images/gourmet.png');
}

.card-header.bg-belleza {
  background-image: url('../images/belleza.jpg');
}

.card-header.bg-postres {
  background-image: url('../images/postre.png');
}

.card-header.bg-tradicional {
  background-image: url('../images/tradicional.jpg');
}

.card-header.bg-salud {
  background-image: url('../images/salud_1.jpg');
}

.card-header.bg-vegetariano {
  background-image: url('../images/vegetariano.jpg');
}

.card-header.bg-products {
  background-image: url('../images/almendras.jpg');
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
}

.card-body {
  padding: 35px 50px 30px 20px;
  position: relative;
}

.card-body.card-body-products {
  padding: 10px 35px 10px 10px;
}

.text-card {
  color: #2e2e2e;
  height: 42px;
  font-family: Gotham, Arial, sans-serif;
  overflow: hidden;
}

.div-arrow {
  margin: 10px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.icon-arrow-card {
  width: 27px;
  height: 27px;
  transition: opacity .2s;
  position: relative;
}

.icon-arrow-card.i-hover {
  opacity: 0;
  position: absolute;
  inset: 0% auto auto 0%;
}

.image {
  width: 45px;
  height: 45px;
  margin-top: -24px;
  margin-left: 15px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.navigation-swiper-recetas {
  display: flex;
  position: relative;
}

.navigation-swiper-recetas.nav-products {
  justify-content: flex-end;
  margin-top: 20px;
  padding-right: 20px;
  display: none;
}

.swiper-button-prev {
  width: 46px;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  margin-left: 10px;
  margin-right: 10px;
  transition: transform .2s;
}

.swiper-button-prev:hover {
  transform: scale(1.1);
}

.swiper-button-next {
  width: 46px;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  transition: transform .2s;
}

.swiper-button-next:hover {
  transform: scale(1.1);
}

.icon-arrow-swiper {
  width: 46px;
  height: 46px;
  position: relative;
  inset: 0;
}

.wrapper-button-swiper {
  width: 300px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.col-text-swiper {
  flex-flow: column;
  justify-content: center;
  margin-right: 60px;
  display: flex;
}

.h-60 {
  font-size: 60px;
  font-weight: 500;
  line-height: 65px;
}

.h-60.color-light {
  color: #f8f3ec;
}

.wrapper-photos {
  z-index: 10;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.wrapper-photos.wrapper-slider {
  padding-bottom: 100px;
}

.wrapper-photos.wrapper-detalle {
  align-items: flex-start;
}

.wrapper-history {
  margin-top: 60px;
}

.div-photos {
  width: 50%;
  max-width: 700px;
  margin-right: 5%;
  position: relative;
}

.image-photo-old {
  width: 95%;
}

.image-photo-new {
  width: 50%;
  margin-left: auto;
  display: block;
}

.div-text-photos {
  max-width: 530px;
}

.div-text-photos.text-cucu {
  max-width: 356px;
  position: relative;
}

.div-text-photos.text-us {
  max-width: 430px;
  position: relative;
}

.div-text-photos.text-us.slide-from-bottom {
  max-width: 550px;
}

.image-costal {
  z-index: 0;
  margin-right: 40px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.font-gotham {
  font-family: Gotham, Arial, sans-serif;
  font-weight: 300;
}

.image-cucu {
  width: 100%;
}

.div-image-cucu {
  width: 35%;
  margin-left: 10%;
}

.h-100 {
  font-size: 94px;
  line-height: 90px;
}

.image-heart {
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.headeer-parallax {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.container-social {
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer {
  color: #f8f3ec;
  background-color: #512381;
  border-bottom: 1px solid #f8f3ec;
  padding: 50px 30px 15px;
  position: relative;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-brand {
  width: 120px;
  min-width: 120px;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  color: #ebb963;
  margin-bottom: 20px;
  font-family: Recoleta, Times New Roman, sans-serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 25px;
}

.footer-link {
  color: #f8f3ec;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #ebb963;
}

.footer-copyright {
  text-align: left;
  margin-top: 20px;
  font-size: 13px;
  line-height: 25px;
}

.div-text-footer {
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.image-brand-footer {
  width: 100%;
}

.section-us {
  color: #f8f3ec;
  align-items: flex-end;
  width: 100%;
  height: 100vh;
  font-family: Recoleta, Times New Roman, sans-serif;
  display: flex;
  position: relative;
  overflow: hidden;
}

.conatiner-main {
  width: 100%;
  max-width: 520px;
  margin-bottom: 40px;
  margin-left: 15%;
  display: flex;
  position: relative;
}

.icon-arrow-down {
  width: 125px;
}

.link-arrow-us {
  min-width: 125px;
  margin-top: 80px;
  margin-left: 40px;
}

.icon-quotes {
  width: 40px;
  position: absolute;
}

.icon-quotes.quote-top {
  margin-right: 5px;
  inset: 0% 100% auto auto;
}

.icon-quotes.quote-bottom {
  margin-top: -10px;
  margin-left: -45px;
  inset: 100% auto auto 100%;
}

.text-medium {
  font-weight: 500;
}

.h2 {
  font-size: 30px;
}

.text-hero-us {
  max-width: 400px;
  font-weight: 400;
}

.text-hero-us.text-sr {
  margin-top: 40px;
}

.slider-timeline {
  background-color: #0000;
  height: auto;
}

.text-number {
  color: #f8f3ec;
  background-color: #6f4a9d;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 52px;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  display: flex;
}

.timeline {
  text-align: center;
  width: 85%;
  min-width: 785px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  overflow: auto;
}

.item-time {
  cursor: pointer;
  width: 100%;
  padding-top: 30px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.item-time.end {
  background-color: #f6ede1;
}

.time-dot {
  width: 20px;
  height: 20px;
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  background-color: #6f4a9d;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.time-dot.active {
  margin-top: 0;
  transform: scale(1.4);
}

.line-time {
  background-color: #6f4a9d;
  width: 170px;
  height: 3px;
  margin-top: 8px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.line-time.end {
  inset: 0% 0% auto auto;
}

.text-time {
  font-size: 14px;
  line-height: 18px;
}

.text-time.active {
  font-size: 17px;
}

.div-line {
  width: 1px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 0% auto;
}

.slide-nav {
  justify-content: flex-start;
  width: 85%;
  min-width: 785px;
  height: 75px;
  margin-left: 0;
  display: flex;
  inset: auto 0% 0%;
}

.card-magazine {
  flex-flow: column;
  align-items: stretch;
  width: 22%;
  max-width: 300px;
  margin-right: 5vw;
  display: flex;
}

.image-magazine {
  width: 100%;
  margin-bottom: 20px;
}

.wrapper-magazine {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block-magazine {
  width: 100%;
  max-width: 375px;
  margin-right: auto;
}

.imgae-bg-top {
  z-index: 0;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0% 5% auto 0%;
}

.imgae-bg-bottom {
  position: absolute;
  inset: auto auto 0% 0%;
}

.section-products {
  padding-top: 200px;
  padding-bottom: 100px;
}

.wrapper-products {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.col-products {
  width: 100%;
}

.col-categories {
  color: #512381;
  min-width: 215px;
  margin-right: 5%;
  padding-bottom: 40px;
  font-family: Recoleta, Times New Roman, sans-serif;
  position: sticky;
  top: 75px;
}

.line-nav {
  background-color: #cdc5df;
  width: 50%;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.header-products {
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  display: flex;
}

.wrapper-tags {
  flex-flow: wrap;
  padding-right: 40px;
  display: flex;
}

.tag-categoy {
  text-transform: uppercase;
}

.search-products {
  background-color: #f6ede1;
  border: 1px solid #512381;
  border-radius: 10px;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

.grid-products {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.dropdown-list {
  background-color: #0000;
  padding-bottom: 20px;
  position: relative;
}

.dropdown-toggle {
  color: #512381;
  width: 100%;
  padding: 10px 35px 10px 5px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 26px;
  display: block;
}

.dropdown {
  z-index: 0;
  width: 100%;
}

.icon-dropdown {
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 5px;
  transition: transform .2s;
  inset: 0% 0% 0% auto;
  transform: rotate(-90deg);
}

.dropdown-link {
  color: #2e2e2e;
  border-radius: 5px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px;
  font-family: Gotham, Arial, sans-serif;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.dropdown-link:hover {
  background-color: #f6ede1;
}

.dropdown-link:active, .dropdown-link.active {
  background-color: #ebb963;
  font-weight: 500;
}

.dropdown-number {
  margin-left: 10px;
  font-size: 13px;
}

.h5 {
  font-size: 16px;
  font-weight: 500;
}

.h5.h-card {
  height: 40px;
  overflow: hidden;
}

.filter-overlay {
  z-index: 150;
  background-color: #fff6;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: auto;
}

.nav-categories {
  color: #512381;
  text-align: left;
  background-color: #f8f3ec;
  width: 90%;
  padding: 20px 20px 10px 10px;
  transition: transform .5s;
  position: relative;
  transform: translate(0%);
}

.nav-categories.hidden {
  transform: translate(-100%);
}

.link-overlay {
  margin-top: 50px;
  margin-right: 10px;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.link {
  color: #ebb963;
  text-decoration: none;
}

.link:hover {
  color: #512381;
}

.body-product {
  color: #101820;
  font-weight: 400;
}

.wrapper-detail {
  margin-top: 40px;
}

.image-detail {
  border-radius: 15px;
  width: 75%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.link-detail-arrow {
  transform: scale3d(1none, 1none, 1none);
  color: #512381;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
  text-decoration: none;
  transition: transform .2s;
  display: flex;
}

.link-detail-arrow:hover {
  transform: scale(1.1);
}

.icon-back {
  width: 45px;
  margin-left: 10px;
  margin-right: 10px;
}

.wrapper-links {
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  display: flex;
}

.wrapper-recetas {
  flex-flow: wrap;
  display: flex;
}

.wrapper-recetas.wrap-contacto {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
}

.icon-btn {
  display: block;
  position: relative;
}

.icon-btn.icon-hover {
  opacity: 0;
  position: absolute;
  inset: 0% auto auto 0%;
}

.div-icon-btn {
  margin-right: 5px;
  position: relative;
}

.grid-recetas {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.grid-recetas.font-recoleta {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.grid-recetas.font-recoleta.gri-related {
  margin-top: 40px;
}

.footer-card {
  flex-flow: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 550px;
  margin-top: 10px;
  padding-right: 20px;
  font-family: Gotham, Arial, sans-serif;
  font-weight: 300;
  display: flex;
}

.wrap-clock {
  align-items: flex-start;
  display: flex;
}

.icon-clock {
  width: 20px;
  margin-right: 5px;
}

.tag-receta {
  color: #f8f3ec;
  background-color: #b3ba73;
  border-radius: 20px;
  padding: 3px 10px;
  font-family: Gotham, Arial, sans-serif;
  font-size: 13px;
  line-height: 14px;
}

.tag-receta.tag-tradicional {
  background-color: #da9b70;
}

.tag-receta.tag-gourmet {
  background-color: #dcbe8d;
}

.tag-receta.tag-postres {
  background-color: #d8a9aa;
}

.tag-receta.tag-deportistas {
  background-color: #73a6ba;
}

.tag-receta.tag-belleza {
  background-color: #c0b5d9;
}

.tag-receta.tag-vegetariano {
  background-color: #9ec49a;
}

.wrap-tags {
  margin-bottom: 10px;
  display: flex;
}

.section-badge {
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}

.section-badge.font-recoleta {
  color: #512381;
}

.wrapper-100 {
  background-color: #f6ede1;
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.wrapper-100.wrapper-footer-contact {
  justify-content: space-between;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.image-badge {
  position: absolute;
  inset: 0% auto 0% 15%;
}

.image-badge.right {
  z-index: 0;
  inset: 0% 5% 0% auto;
}

.display-relative {
  position: relative;
}

.container-100 {
  color: #f8f3ec;
  background-color: #6f4a9d;
  width: 100%;
  max-width: none;
  display: flex;
}

.container-100.bg-beige {
  color: #512381;
  background-color: #f6ede1;
  border-bottom: 1px solid #512381;
}

.cover-receta {
  width: 40%;
  position: relative;
}

.cover-receta.p-100 {
  padding: 100px 5% 20px;
}

.col-receta {
  border-left: 1px solid #512381;
  width: 60%;
  padding: 10vw 5% 40px;
  font-family: Recoleta, Times New Roman, sans-serif;
}

.col-receta.pt-100 {
  padding-top: 100px;
}

.div-title {
  width: 100%;
  margin-bottom: 10vw;
}

.link-back {
  color: #ebb963;
  align-items: center;
  font-family: Gotham, Arial, sans-serif;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.i-roate {
  width: 27px;
  transform: rotate(180deg);
}

.list-item-receta {
  color: #2e2e2e;
  margin-bottom: 40px;
  font-family: Gotham, Arial, sans-serif;
  font-weight: 400;
  position: relative;
}

.elipse {
  background-color: #512381;
  border: 1px solid #512381;
  border-radius: 100%;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  margin-right: 5px;
  position: absolute;
  inset: 0% 100% auto auto;
}

.icon-rabit {
  width: 14px;
}

.icon-arrow-receta {
  width: 27px;
}

.link-item-receta {
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  max-width: 40px;
  margin-left: 20px;
  display: flex;
}

.wrapper-item-receta {
  justify-content: space-between;
  font-weight: 400;
  display: flex;
}

.card-contact {
  border: 1px solid #ebb963;
  align-items: flex-start;
  padding: 20px 10px;
  font-weight: 300;
  display: flex;
}

.card-contact:hover {
  background-color: #f6ede1;
}

.header-card-contact {
  width: 70%;
}

.wrapper-buttons-contact {
  flex-flow: wrap;
  display: flex;
}

.icon-card-contact {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.h4 {
  font-size: 20px;
  line-height: 20px;
}

.link-card-contact {
  color: #101820;
  margin-top: 20px;
  margin-bottom: 20px;
  text-decoration: none;
  display: block;
}

.grid-contact {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 100px;
}

.dot {
  font-weight: 700;
}

.bg-bagde {
  background-image: url('../images/gracias-contacto.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 40vh;
  position: relative;
}

.div-text-thanks {
  color: #f6ede1;
  text-align: center;
  background-color: #512381;
  max-width: 250px;
  font-family: Gotham, Arial, sans-serif;
  font-weight: 300;
}

.col-thanks {
  background-color: #512381;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.image-heart-2 {
  width: 34px;
}

.section-mapa {
  justify-content: space-between;
  width: 100%;
  height: 50vw;
  min-height: 600px;
  padding-top: 120px;
  display: flex;
}

.nav-map {
  width: 35%;
  height: 100%;
  margin-right: 10px;
  position: relative;
  overflow: auto;
}

.container-map {
  width: 65%;
  height: 100%;
}

.code-embed {
  width: 100%;
  height: 100%;
}

.wrapper-icons-map {
  cursor: pointer;
  margin-top: 20px;
  position: relative;
}

.icon-item-map {
  width: 75px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

.list-item-map {
  border-bottom: 1px solid #cdc5df;
  justify-content: space-between;
  align-items: flex-start;
  padding-right: 20px;
  font-weight: 300;
  display: flex;
}

.list-item-map:hover, .list-item-map.active {
  background-color: #f6ede1;
}

.icon-arrow-map {
  width: 35px;
  position: relative;
}

.icon-arrow-map.i-hover {
  opacity: 0;
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.dropbox-map {
  padding-bottom: 20px;
}

.dropbox-map.hidden {
  display: none;
}

.link-ubicacion {
  color: #512381;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
}

.link-ubicacion.active {
  font-weight: 700;
}

.wrapper-cities {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .header {
    background-color: #512381;
  }

  .navbar {
    width: 100%;
    min-width: 0;
    padding: 10px 20px;
  }

  .nav-menu-wrapper {
    background-color: #512381;
    border-radius: 36px;
    width: 100%;
    padding-top: 70px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 40px;
    padding-left: 0;
    display: block;
  }

  .nav-link {
    border-bottom: 1px solid #ebb963;
    padding: 20px 5px;
    display: block;
  }

  .desktop-wrapper {
    display: none;
  }

  .nav-button-wrapper {
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .button.btn-icon {
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-button {
    color: #f8f3ec;
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: #ebb963;
  }

  .nav-dot {
    display: none;
  }

  .list-item {
    text-align: left;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .list-item.item-last {
    margin-bottom: 40px;
  }

  .mobile-wrapper {
    display: block;
  }

  .section-main {
    padding-top: 65px;
  }

  .left-arrow {
    margin-bottom: 10px;
    right: 60px;
  }

  .right-arrow {
    margin-bottom: 10px;
    left: 50px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.bg-purple.font-recoleta, .section.margin-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .container-full {
    width: 100%;
  }

  .container-full.to-right {
    width: 100%;
    display: block;
  }

  .wrapper-header-buttons {
    min-width: 30%;
  }

  .swiper-wrapper {
    padding-left: 20px;
  }

  .swiper-wrapper.swiper-wrapper-related {
    padding-left: 0;
  }

  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .card-header {
    height: 30vw;
  }

  .navigation-swiper-recetas.nav-products {
    display: flex;
  }

  .wrapper-button-swiper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .col-text-swiper {
    margin-bottom: 20px;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .padding-x-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper-photos {
    flex-flow: column;
  }

  .wrapper-photos.wrapper-slider {
    flex-flow: wrap-reverse;
  }

  .wrapper-photos.wrapper-detalle {
    flex-flow: column-reverse;
  }

  .div-photos {
    margin-right: 0%;
  }

  .div-photos.photo-time {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .div-photos.photo-time.div-cover-detail {
    margin-left: auto;
    margin-right: auto;
  }

  .div-text-photos.text-cucu {
    margin-bottom: 40px;
  }

  .div-text-photos.text-us.slide-from-bottom {
    margin-bottom: 60px;
  }

  .div-text-photos.text-detail {
    width: 100%;
    max-width: none;
  }

  .div-image-cucu {
    width: 50%;
    margin-left: 0%;
  }

  .footer-wrapper {
    flex-flow: wrap;
  }

  .footer-content {
    grid-column-gap: 60px;
    grid-template-columns: auto auto auto;
    width: 100%;
    margin-top: 40px;
  }

  .footer-copyright {
    margin-top: 30px;
  }

  .div-text-footer {
    margin-left: 0;
  }

  .conatiner-main {
    max-width: 520px;
    margin-left: 10%;
  }

  .slider-timeline {
    padding-bottom: 60px;
  }

  .timeline {
    width: 100%;
    min-width: 0;
  }

  .item-time {
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .slide-nav {
    display: none;
  }

  .card-magazine {
    margin-left: auto;
    margin-right: auto;
  }

  .section-products {
    padding-top: 120px;
  }

  .wrapper-products {
    padding-left: 20px;
    padding-right: 20px;
  }

  .col-categories {
    min-width: 210px;
  }

  .grid-products {
    grid-template-columns: 1fr 1fr;
  }

  .grid-recetas.font-recoleta {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .cover-receta.p-100 {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 20px;
  }

  .col-receta {
    padding-top: 120px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .col-receta.pt-100 {
    padding-top: 40px;
  }

  .div-title {
    margin-bottom: 40px;
  }

  .list {
    padding-left: 25px;
  }

  .card-contact {
    display: block;
  }

  .header-card-contact {
    width: 100%;
  }

  .bg-bagde {
    width: 80%;
  }

  .col-thanks {
    width: 50%;
  }

  .nav-map {
    width: 45%;
  }

  .container-map {
    width: 55%;
  }

  .icon-item-map {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .desktop-wrapper {
    margin-top: 10px;
  }

  .list-item.item-last {
    margin-bottom: 20px;
  }

  .left-arrow.arrow-time {
    margin-right: auto;
    inset: auto 60px 0% 0%;
  }

  .right-arrow.arrow-time {
    margin-right: auto;
    inset: auto 0% 0% 60px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.section-receta.related {
    padding-top: 60px;
  }

  .text-center.wrapper-filter {
    display: block;
  }

  .text-center.text-purple.px {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-grid {
    display: block;
  }

  .wrapper-header-buttons {
    text-align: center;
    margin-top: 40px;
  }

  .h-40.mb.slide-from-bottom {
    margin-bottom: 20px;
  }

  .h-40.h-min {
    margin-right: 0;
  }

  .h-60 {
    font-size: 46px;
    line-height: 50px;
  }

  .div-photos {
    width: 80%;
    margin-bottom: -60px;
  }

  .div-text-photos.text-us.slide-from-bottom, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .footer-content {
    grid-column-gap: 20px;
  }

  .footer-link {
    display: inline-block;
  }

  .div-text-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .inline {
    display: inline-block;
  }

  .section-us {
    height: auto;
    padding-top: 32vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .conatiner-main {
    max-width: 355px;
    margin-bottom: 20px;
    margin-left: 0;
  }

  .link-arrow-us {
    display: none;
  }

  .icon-quotes {
    width: 25px;
  }

  .icon-quotes.quote-top {
    margin-right: 0;
    inset: 0% auto auto 0%;
  }

  .icon-quotes.quote-bottom {
    margin-left: 0;
    margin-right: 25px;
    inset: 100% 0% auto auto;
  }

  .h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .card-magazine {
    width: 40%;
    margin-top: 40px;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
  }

  .wrapper-magazine {
    text-align: center;
    flex-flow: column;
    display: block;
  }

  .text-block-magazine {
    text-align: left;
    margin-left: auto;
  }

  .section-products {
    padding-bottom: 60px;
  }

  .col-categories {
    display: none;
  }

  .header-products {
    display: block;
  }

  .filter-overlay {
    display: none;
  }

  .link-overlay {
    display: block;
  }

  .wrapper-100 {
    text-align: center;
    flex-flow: column;
  }

  .image-badge {
    margin-top: auto;
    margin-bottom: auto;
    inset: 0% auto auto 0%;
  }

  .image-badge.right {
    inset: auto 0% 0% auto;
  }

  .display-relative {
    margin-top: 20px;
  }

  .container-100 {
    flex-flow: column-reverse;
  }

  .container-100.bg-beige {
    flex-flow: column;
  }

  .cover-receta {
    width: 100%;
    height: 50vw;
  }

  .cover-receta.p-100 {
    border-bottom: 1px solid #512381;
    height: auto;
  }

  .col-receta {
    width: 100%;
  }

  .col-receta.pt-100 {
    border-left-width: 0;
  }

  .grid-contact {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 60px;
  }

  .bg-bagde {
    width: 100%;
  }

  .col-thanks {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-mapa {
    flex-flow: column-reverse;
    height: auto;
    min-height: 0;
  }

  .nav-map {
    width: 100%;
    height: auto;
    margin-right: 0;
    overflow: visible;
  }

  .container-map {
    width: 100%;
    height: 50vw;
  }

  .icon-item-map {
    width: 60px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .wrapper-cities {
    margin-top: 20px;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu {
    flex-direction: column;
  }

  .nav-link {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .button.btn-stroke.btn-contact, .button.btn-icon {
    margin-left: 5px;
    margin-right: 5px;
  }

  .link-social {
    margin-left: 15px;
    margin-right: 15px;
  }

  .list-item.item-last {
    margin-bottom: 40px;
  }

  .slider-main {
    height: 60vw;
  }

  .h1 {
    font-size: 28px;
    line-height: 38px;
  }

  .text-center.d-relative.px {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-text.text-center {
    text-align: left;
  }

  .image-parallax._1 {
    left: 0%;
  }

  .image-parallax._4 {
    right: 0%;
  }

  .bg-section.bg-ground {
    background-position: 50%;
  }

  .section-parallax {
    padding-top: 41vw;
    padding-bottom: 41vw;
  }

  .section-parallax.parallax-us {
    padding-top: 45vw;
    padding-bottom: 45vw;
  }

  .card-header {
    height: 80vw;
    max-height: none;
  }

  .wrapper-photos.wrap-cucu {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrapper-history.slide-from-bottom {
    margin-top: 40px;
  }

  .div-photos {
    width: 100%;
    margin-bottom: -60px;
  }

  .image-photo-old {
    width: 100%;
  }

  .image-photo-new {
    width: 70%;
    margin-top: 60px;
  }

  .div-image-cucu {
    width: 100%;
  }

  .h-100 {
    font-size: 68px;
    line-height: 70px;
  }

  .footer-content {
    grid-column-gap: 40px;
    flex-flow: wrap;
    display: flex;
  }

  .section-us {
    padding-top: 50vw;
  }

  .card-magazine {
    width: 100%;
    max-width: none;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
  }

  .wrapper-magazine {
    margin-bottom: 10vw;
  }

  .grid-products {
    grid-template-columns: 1fr;
  }

  .image-detail {
    width: 100%;
  }

  .wrapper-recetas {
    justify-content: space-between;
  }

  .wrapper-recetas.wrap-contacto {
    justify-content: center;
  }

  .grid-recetas.font-recoleta {
    grid-template-columns: 1fr;
  }

  .wrapper-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .image-badge {
    width: 100px;
  }

  .cover-receta {
    height: 100vw;
  }

  .cover-receta.p-100 {
    border-bottom: 1px solid #512381;
  }

  .col-receta {
    border-bottom: 1px solid #512381;
    border-left-width: 0;
  }

  .grid-contact {
    grid-template-columns: 1fr;
  }

  .bg-bagde {
    height: 20vh;
  }
}

#w-node-e9eb5eb2-ab55-047b-20ed-7493016d38d8-016d38c5, #w-node-e9eb5eb2-ab55-047b-20ed-7493016d38eb-016d38c5, #w-node-e9eb5eb2-ab55-047b-20ed-7493016d38fa-016d38c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Alt-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Recoleta';
  src: url('../fonts/Recoleta-Alt-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}