*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    background-color: #263270;
    /*border-bottom: 1px solid #eaeaea;*/
    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.site-header.is-visible {
    transform: translateY(0);
}
  
.site-header .container {
    width: 100%;
    padding-inline: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 120px;
}

@media (max-width: 768px) {

    .site-header .container {
      padding-inline: 20px;
    }
  
}

/* =========================
    HEADER LOGO
========================= */

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo img {
    width: 192px;
    height: auto;
}


/* =========================
   HERO STORY
========================= */

.hero-story {
    position: relative;
    width: 100%;
    /*min-height: 1257px;*/

    background-image: url("../img/caribeton-pork-caribbean-sea-hero-desktop.webp");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero-story::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;

    top: 580px;
    height: 760px;

    background-image: url("../img/ola-desktop.svg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    z-index: 1;
    pointer-events: none;
}

.hero-story__content {
    position: relative;
    z-index: 2;

    padding: 120px 80px 80px;
}

.hero-story__intro {
    max-width: 620px;
    min-height: 750px;
}

.hero-story__logo {
    width: 560px;
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-story__tagline {
    margin: 40px 0 0;

    font-family: "Barlow", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;

    color: #263270;
}

.hero-story__tagline strong {
    font-weight: 700;
}

.hero-story__bottom {
    max-width: 1240px;

    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;

    align-items: center;

    margin-left: 109px;
}

.hero-story__card {
    max-width: 372px;
    padding: 32px 30px;

    background: rgba(255,255,255,0.8);
    border-radius: 8px 80px 8px 8px;
}

.hero-story__card h2 {
    margin: 0;

    font-family: "Barlow", sans-serif;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;

    color: #232426;
}

.hero-story__text {
    /*max-width: 650px;*/

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;

    text-align: justify;

    color: #232426;
}

/*.hero-story__text p {
    margin: 0 0 32px;
}*/

.hero-story__text p:last-child {
    margin-bottom: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

    .hero-story::after {
        top: 720px;
        height: 820px;
    }

    .hero-story__content {
        padding: 120px 60px 80px;
    }

    .hero-story__bottom {
        grid-template-columns: 1fr;
        gap: 80px;

        margin-left: 0;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hero-story {
        background-image: url("../img/caribeton-pork-caribbean-sea-hero-mobile-2.webp");
        background-size: cover;
        background-position: center top;
    }

    .hero-story::after {
        top: 920px;
        height: 900px;

        background-size: cover;
        background-position: center top;
    }

    .hero-story__content {
        padding: 120px 16px 80px;
    }

    .hero-story__intro {
        min-height: 900px;
    }

    .hero-story__logo {
        width: 560px;
        max-width: 100%;
    }

    .hero-story__bottom {
        grid-template-columns: 1fr;
        gap: 30px;

        margin-left: 0;
    }

}

  /* =========================
   FEATURES
========================= */

.features {
    width: 100%;
    padding: 80px 80px 90px;

    background-image: url("../img/caribeton-blue-waves-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features__content {
    max-width: 1240px;
    margin-inline: auto;
}

.features__title {
    margin: 0 0 44px;

    font-family: "Barlow", sans-serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;

    color: #ffffff;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px;
    align-items: start;
}

.feature-card {
    overflow: hidden;

    background: #ffffff;
    border-radius: 8px 8px 80px 8px;

    box-shadow: 0 24px 40px rgba(0,0,0,.28);
}

.feature-card__image {
    width: 100%;
    height: 240px;

    display: block;
    object-fit: cover;

    border-radius: 0 0 80px 0;
}

.feature-card__body {
    padding: 24px 34px 32px;
}

.feature-card__body h3 {
    margin: 0 0 24px;

    font-family: "Barlow", sans-serif;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;

    color: #222222;
}

.feature-card__body p {
    display: none;

    margin: 0 0 32px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    line-height: 1.7;

    color: #222222;
}

.feature-card.is-open .feature-card__body p {
    display: block;
}

.feature-card__toggle {
    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.feature-card__icon {
    width: 60px;
    height: 60px;

    display: block;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .features {
        padding: 56px 24px;
        background-image: url("../img/caribeton-blue-waves-mobile.webp");
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card__body {
        padding: 24px 28px 32px;
    }

    .feature-card__body h3 {
        font-size: 30px;
    }

    .feature-card__image {
        height: 220px;
    }

}



 /* =========================
   PRODUCTS
========================= */

.products {
    width: 100%;
    padding: 80px 80px 90px;
  
    background-color: #ffffff;
  }
  
  .products__content {
    max-width: 1240px;
    margin-inline: auto;
  }
  
  .products__title {
    margin: 0 0 32px;
  
    font-family: "Barlow", sans-serif;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 500;
  
    color: #232426;
  }
  
  /* =========================
     SWIPER
  ========================= */
  
  .products__swiper {
    width: 100%;
  }
  
  /*.product-slide img {
    width: 100%;
    height: 640px;
  
    object-fit: cover;
    border-radius: 48px;
  }*/

  .product-slide {
    aspect-ratio: 2 / 1; /* o 16 / 8, es lo mismo */
  }
  
  .product-slide img {
    width: 100%;
    height: 100%;
    display: block;
  
    object-fit: cover;
    border-radius: 48px;
  }
  
  .product-slide h3 {
    margin: 24px 0 32px;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
  
    color: #232426;
  }
  
  /* =========================
     PAGINATION
  ========================= */
  
  .products__pagination {
    position: static;
    margin-top: 28px;
  
    display: flex;
    justify-content: center;
    gap: 18px;
  }
  
  .products__pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  
    margin: 0 !important;
  
    background-color: #d8f4fa;
    opacity: 1;
  }
  
  .products__pagination .swiper-pagination-bullet-active {
    background-color: #43C4DF;
  }
  
  /* =========================
     PRODUCTS MOBILE
  ========================= */
  
  @media (max-width: 768px) {
  
    .products {
      padding: 56px 24px;
    }
  
    .products__title {
      font-size: 40px;
    }
  
    .product-slide img {
      height: auto;
    }
  
    .product-slide h3 {
      font-size: 22px;
    }
  
    .products__pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
    }
  
  }

 /* =========================
   DISHES
========================= */

.dishes {
    width: 100%;

    padding: 80px 80px 100px;

    background-image: url("../img/caribeton-light-sea-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dishes__content {
    max-width: 1240px;
    margin-inline: auto;
}

.dishes__title {
    margin: 0 0 32px;

    font-family: "Barlow", sans-serif;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 500;

    color: #232426;
}

.dishes__text {
    margin: 0 0 56px;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.6;

    color: #232426;
}

.dishes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.dish-card {
    overflow: hidden;

    background: #f4f4f4;

    border-radius: 8px 8px 80px 8px;
}

.dish-card__image {
    width: 100%;
    height: 310px;

    display: block;
    object-fit: cover;

    border-radius: 0 0 80px 0;
}

.dish-card__body {
    padding: 36px 42px 42px;
}

.dish-card__body h3 {
  margin: 0 0 24px;

  font-family: "Barlow", sans-serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;

  color: #222222;
}

.dish-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 210px;
    min-height: 72px;

    padding: 0 32px;

    border-radius: 999px;

    background: #43C4DF;

    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 800;

    color: #ffffff;
    text-decoration: none;

    transition: opacity .2s ease;
}

.dish-card__button:hover {
    opacity: .9;
}

/* =========================
    DISHES MOBILE
========================= */

@media (max-width: 768px) {

    .dishes {
        padding: 56px 24px;
        background-image: url("../img/caribeton-light-sea-mobile.webp");
    }

    .dishes__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dish-card__image {
        height: 260px;
    }

    .dish-card__body {
        padding: 28px;
    }

    .dish-card__button {
        width: 100%;
    }

}

/* =========================
   NATURE BLOCK
========================= */

.nature-block {
  width: 100%;
  min-height: 600px;
  padding: 80px 80px 90px;

  background-image: url("../img/caribeton-pork-farm-desktop.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nature-block__content {
  max-width: 1240px;
  margin-inline: auto;

  display: flex;
  align-items: center;
}

.nature-card {
  width: 530px;
  min-height: 385px;

  padding: 25px;

  background: rgba(255, 255, 255, 0.84);
  border-radius: 8px 80px 8px 8px;
}

.nature-card__header {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 20px;
  align-items: start;

  margin-bottom: 48px;
}

.nature-card__badge {
  width: 148px;
  height: 148px;

  display: block;
  object-fit: contain;
}

.nature-card h2 {
  margin: 0;

  font-family: "Barlow", sans-serif;
  font-size: 44px;
  line-height: 100%;
  font-weight: 500;

  color: #232426;
}

.nature-card p {
  margin: 0;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  line-height: 180%;
  font-weight: 400;

  color: #232426;
}

.nature-card p strong {
  font-weight: 600;
}

/* =========================
   NATURE TABLET
========================= */

@media (max-width: 1024px) {
  .nature-block {
    padding: 80px 60px 90px;
  }
}

/* =========================
   NATURE MOBILE
========================= */

@media (max-width: 768px) {
  .nature-block {
    min-height: auto;
    padding: 56px 24px;

    background-image: url("../img/caribeton-pork-farm-mobile.webp");
    background-position: center;
  }

  .nature-block__content {
    display: block;
  }

  .nature-card {
    width: 100%;
    min-height: auto;

    padding: 32px 28px;
  }

  .nature-card__header {
    display: block;
    margin-bottom: 32px;
  }

  .nature-card__badge {
    width: 76px;
    height: 76px;

    margin-bottom: 36px;
  }
}


/* =========================
   QUALITY BLOCK
========================= */

.quality-block {
  width: 100%;

  padding: 80px 80px 90px;

  /*background: #F4F4F4;*/
  background: #FFFFFF;
}

.quality-content {
  max-width: 1240px;
  margin-inline: auto;
}

.quality-text {
  text-align: center;

  margin-bottom: 60px;
}

.quality-text h2 {
  margin: 0 0 32px;

  font-family: "Barlow", sans-serif;
  font-size: 44px;
  line-height: 100%;
  font-weight: 500;
  letter-spacing: 0;

  color: #232426;
}

.quality-text p {
  max-width: 1120px;
  margin: 0 auto;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  line-height: 180%;
  font-weight: 400;
  letter-spacing: 0;

  text-align: center;

  color: #232426;
}

.quality-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
}

.logo-card {
  aspect-ratio: 1 / 1;

  background: #FFFFFF;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;

  box-shadow: 0px 8px 12px 0px #26356F40;
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;

  object-fit: contain;
}

/* =========================
 QUALITY TABLET
========================= */

@media (max-width: 1024px) {

  .quality-block {
      padding: 80px 60px 90px;
  }

  .quality-logos {
      grid-template-columns: repeat(3, 1fr);
  }

}

/* =========================
 QUALITY MOBILE
========================= */

@media (max-width: 768px) {

  .quality-block {
      padding: 56px 24px;
  }

  .quality-text {
      margin-bottom: 40px;
  }

  .quality-logos {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

}

  
  /* =========================
   CONTACT
========================= */

.contact {
    width: 100%;
    padding: 80px 80px 90px;
  
    background-image: url("../img/caribeton-pork-and-pepper-caribbean-sea-desktop.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .contact__content {
    max-width: 1240px;
    margin-inline: auto;
  
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 120px;
    align-items: end;
  }
  
  .contact__form {
    width: 100%;
  }
  
  .contact__title {
    margin: 0 0 48px;
  
    font-family: "Barlow", sans-serif;
    font-size: 44px;
    line-height: 1;
    font-weight: 500;
  
    color: #232426;
  }
  
  .contact__form label {
    display: block;
    margin: 0 0 14px;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
  
    color: #232426;
  }
  
  .contact__form input,
  .contact__form textarea {
    width: 100%;
  
    margin: 0 0 44px;
    padding: 18px 20px;
  
    border: 0;
    border-radius: 8px;
  
    background-color: #ffffff;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
  
    color: #222222;
  }
  
  .contact__form textarea {
    min-height: 180px;
    resize: vertical;
  }
  
  .contact__form input::placeholder,
  .contact__form textarea::placeholder {
    color: #777777;
  }
  
  .contact__form button {
    width: 320px;
    min-height: 64px;
  
    margin-left: auto;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    border: 0;
    border-radius: 100px;
  
    background-color: #43C4DF;
    color: #ffffff;
  
    font-family:"Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 800;
  
    cursor: pointer;
  }
  
  .contact__info {
    color: #ffffff;
  }
  
  .contact__logo {
    width: 300px;
    margin-bottom: 15px;
  }
  
  .contact__info p {
    margin: 0;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    line-height: 1.8;
    font-weight: 400;
    text-align: justify;

  
    color: #263270;
  }
  
  /* =========================
     CONTACT MOBILE
  ========================= */
  
  @media (max-width: 768px) {
  
    .contact {
        padding: 56px 24px;
        background-image: url("../img/caribeton-pork-and-pepper-caribbean-sea-mobile.webp");
        background-size: cover;
        background-position: center;
    }
  
    .contact__content {
      grid-template-columns: 1fr;
      gap: 56px;
    }
  
    .contact__title {
      margin-bottom: 36px;
      font-size: 44px;
    }
  
    .contact__form label {
      font-size: 20px;
    }
  
    .contact__form input,
    .contact__form textarea {
      margin-bottom: 32px;
      font-size: 12px;
    }
  
    .contact__form button {
      width: 100%;
    }
  
    .contact__info {
      text-align: center;
    }
  
    .contact__logo {
      width: 260px;
      margin-inline: auto;
    }
  
  }

  /* =========================
   FOOTER
========================= */

.site-footer {
    width: 100%;
  
    padding: 56px 24px;
  
    background-color: #263270;
  }
  
  .site-footer__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
  
    max-width: 1240px;
    margin-inline: auto;
  }
  
  .site-footer__links {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .site-footer__links a {
    font-family: "Barlow", sans-serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 500;
  
    color: #FFFFFF;
  
    text-decoration: none;
  }
  
  .site-footer__links span {
    font-size: 20px;
    color: #43C4DF;
  }
  
  .site-footer__divider {
    width: 1px;
    height: 42px;
  
    background-color: #263270;
  }
  
  .site-footer__copyright {
    margin: 0;
  
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
  
    color: #FFFFFF;
  }
  
  /* =========================
     FOOTER MOBILE
  ========================= */
  
  @media (max-width: 768px) {
  
    .site-footer {
      padding: 48px 24px;
    }
  
    .site-footer__content {
      flex-direction: column;
      gap: 24px;
    }
  
    .site-footer__links {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .site-footer__links a {
      font-size: 20px;
    }
  
    .site-footer__divider {
      width: 320px;
      height: 1px;
    }
  
    .site-footer__copyright {
      text-align: center;
    }
  
  }

  /* =========================
   RECIPE PAGE
========================= */

.recipe-page {
  width: 100%;
  padding: 200px 80px 90px;

  background-image: url("../img/caribeton-sea-recipe-desktop.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.recipe-page__content {
  max-width: 1240px;
  margin-inline: auto;
}

.recipe-page__hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;

  margin-bottom: 56px;
}

.recipe-page__image {
  width: 100%;
  height: 430px;

  display: block;
  object-fit: cover;

  border-radius: 8px 8px 80px 8px;
}

.recipe-page__share {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-bottom: 24px;
}

.recipe-page__share a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;

  color: #263270;
  text-decoration: none;
}

.recipe-page__intro h1 {
  margin: 0;

  font-family: "Barlow", sans-serif;
  font-size: 44px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0;
  text-align: justify;

  color: #263270;
}

.recipe-page__body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
}

.recipe-page__body h2 {
  margin: 0 0 32px;

  font-family: "Barlow", sans-serif;
  font-size: 32px;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: 0;

  color: #232426;
}

.recipe-page__body ul,
.recipe-page__body ol {
  margin: 0;
  padding-left: 24px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  line-height: 180%;
  font-weight: 400;
  letter-spacing: 0;
  text-align: justify;

  color: #232426;
}

.recipe-page__body li {
  margin-bottom: 16px;
}

.recipe-page__back {
  width: 160px;
  min-height: 56px;

  margin: 64px 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 100px;

  background-color: #43C4DF;
  color: #ffffff;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 800;

  text-decoration: none;
}

/* =========================
 RECIPE TABLET
========================= */

@media (max-width: 1024px) {

  .recipe-page {
      padding: 200px 60px 90px;
  }

  .recipe-page__hero {
      grid-template-columns: 1fr;
  }

  .recipe-page__body {
      grid-template-columns: 1fr;
      gap: 48px;
  }

}

/* =========================
 RECIPE MOBILE
========================= */

@media (max-width: 768px) {

  .recipe-page {
      padding: 200px 24px;

      background-image: url("../img/caribeton-sea-recipe-mobile.webp");
  }

  .recipe-page__image {
      height: auto;
  }

  .recipe-page__body {
      gap: 40px;
  }

  .recipe-page__back {
      width: 100%;
  }

}

/* =========================
   RECIPE RELATED
========================= */

.recipe-related {
  width: 100%;

  padding: 80px 80px 100px;

  background-image: url("../img/caribeton-light-sea-desktop.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recipe-related__content {
  max-width: 1240px;
  margin-inline: auto;
}

.recipe-related__title {
  margin: 0 0 32px;

  font-family: "Barlow", sans-serif;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 500;

  color: #232426;
}

.recipe-related__text {
  margin: 0 0 56px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;

  color: #232426;
}

.recipe-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.recipe-related-card {
  overflow: hidden;

  background: #f4f4f4;

  border-radius: 8px 8px 80px 8px;
}

.recipe-related-card__image {
  width: 100%;
  height: 403px;

  display: block;
  object-fit: cover;

  border-radius: 0 0 80px 0;
}

.recipe-related-card__body {
  padding: 36px 42px 42px;
}

.recipe-related-card__body h3 {
  margin: 0 0 24px;

  font-family: "Barlow", sans-serif;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 600;

  color: #222222;
}



.recipe-related-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 210px;
  min-height: 72px;

  padding: 0 32px;

  border-radius: 999px;

  background: #43C4DF;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;

  color: #ffffff;
  text-decoration: none;

  transition: opacity .2s ease;
}

.recipe-related-card__button:hover {
  opacity: .9;
}

/* =========================
 RECIPE RELATED MOBILE
========================= */

@media (max-width: 768px) {

  .recipe-related {
      padding: 56px 24px;
      background-image: url("../img/caribeton-light-sea-mobile.webp");
  }

  .recipe-related__grid {
      grid-template-columns: 1fr;
      gap: 48px;
  }

  .recipe-related-card__image {
      height: 260px;
  }

  .recipe-related-card__body {
      padding: 28px;
  }

  .recipe-related-card__button {
      width: 100%;
  }

}

.recipe-page-body .site-header {
  transform: translateY(0);
}

/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher a {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;

  color: #ffffff;
  text-decoration: none;

  opacity: .6;
  transition: opacity .2s;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  opacity: 1;
}

.language-switcher span {
  color: rgba(255,255,255,.5);
}

/* =========================
   LANGUAGE SWITCHER HERO
========================= */

.language-switcher--hero {
  position: relative;
  top: -80px;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  gap: 12px;

  margin-bottom: 5px;
}

.language-switcher--hero a {
  color: #263270;
  opacity: .65;
}

.language-switcher--hero a:hover,
.language-switcher--hero a.is-active {
  opacity: 1;
}

.language-switcher--hero span {
  color: #263270;
  opacity: .35;
}