<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --primary-color: #f73b28;
  --secondary-color: #fdf3dc;
}

button {
  border: none;
  border-radius: 16px;
}

::-webkit-scrollbar {
  display: none;
}

.loading {
  .spinner-border {
    color: #004f4e !important;
  }
}

.react-multi-carousel-list {
  overflow-x: visible;
}

/* Shimmer background */
.shimmer-background {
  position: absolute;
  background: #21252966;
  /* background: #f7eacc94; */
  z-index: 3;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    to right,
    #f0f0f085 0%,
    #f0f0f09e 20%,
    #f0f0f085 40%,
    #f0f0f09e 100%
  ); */
  /* background: linear-gradient(
    to right,
    #f0f0f0 0%,
    #e0e0e0 20%,
    #f0f0f0 40%,
    #f0f0f0 100%
  ); */
  background-size: 200% 100%;
  animation: shimmer 2s infinite linear;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Lady cooking animation placeholder */
.cooking-lady {
  width: 350px;
  height: 350px;
  background-image: url("../imgs/cooking-lady.png");
  background-size: cover;
  background-position: center;
  animation: float 2s ease-in-out infinite;
  z-index: 2;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Floating effect for the image */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Floating logo */
.floating-logo {
  width: 400px;
  height: 400px;
  background-image: url("../imgs/mangrove-brand.svg"); /* Replace with your logo path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: float 2.5s ease-in-out infinite;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.header-container {
  background-color: var(--primary-color);
  /* padding: 66px 66px 66px 112px; */
  padding: 0px 50px 0px 80px;
  position: relative;
  z-index: 2;

  .navbar {
    .navbar-brand {
      cursor: pointer;
      padding: 25px 0;
      img {
        width: 250px;
        height: fit-content;
      }
    }

    .menu-items {
      ul {
        margin-left: 90px;
        gap: 35px;
        li a {
          color: var(--secondary-color);
          font-size: 25px;
          line-height: 31px;
          text-transform: uppercase;
        }
      }
    }

    .social-media-icons {
      ul {
        li a {
          i {
            color: #fff;
            font-size: 66px;
          }
        }
      }
    }
  }
}

.embla {
  overflow: hidden;
}
.embla__container {
  display: flex;
  gap: 25px;
}
.embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.embla__controllers {
  justify-content: center;
  position: relative;
  z-index: 4;
  height: 100px;
  top: 44px;
  gap: 5px;
  display: flex;

  button.scroll-controller {
    height: 20px;
    width: 18px;
    border-radius: 50%;
    background: #004f4e;
    border: 4px solid #a7b804;

    &amp;.active {
      background: #a7b804;
    }
  }
}

.landing-page {
  .hero-section {
    background-image: url("../imgs/hero-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 800px;
    width: 100%;
    overflow-x: clip;

    .hero-section-content {
      position: relative;
      height: 100%;
      .hero-section-img {
        position: absolute;

        &amp;._left-leaves {
          left: -600px;
          top: -300px;
          width: 1100px;

          /* width: calc(100% - 600px);
          left: calc(-33%);
          top: calc(-35%); */
        }

        &amp;._tomatoes {
          left: -370px;
          top: 300px;
          width: 820px;
        }

        &amp;._full-color-flavor {
          left: 170px;
          width: 850px;
          top: 90px;
          z-index: 1;
        }
        &amp;._beans {
          left: 865px;
          top: 118px;
          width: 180px;
        }
        &amp;._leaves-right {
          right: -400px;
          top: -30px;
          width: 840px;
        }
        &amp;._corn {
          right: -315px;
          top: 150px;
          width: 560px;
        }
      }

      button {
        display: flex;
        padding: 10px 15px;
        justify-content: space-between;
        z-index: 1;
        border-radius: 25px;
        position: relative;
        width: 315px;
        height: 48px;
        align-items: center;
        background-color: var(--secondary-color);
        color: var(--primary-color);
        position: absolute;
        bottom: 80px;
        left: 27.5%;

        p {
          margin-bottom: 0;
          text-transform: uppercase;
          font-size: 20px;
          font-weight: 300;
        }

        i {
          font-size: 20px;
        }
      }
    }
  }

  .products-range {
    background-color: var(--secondary-color);
    height: fit-content;

    h5 {
      padding-top: 120px;
      color: #004f4e;
      font-size: 65px;
      font-weight: 700;
      line-height: 83px;
      margin-bottom: 50px;
      text-align: center;
    }

    .products {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      padding: 0 90px;
      margin-bottom: 60px;

      img {
        width: 15%;
      }
    }

    .discover-more-btn {
      display: flex;
      justify-content: center;
      button {
        display: flex;
        padding: 10px 25px;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-bottom: 100px;
        border-radius: 25px;
        width: 300px;
        background-color: var(--primary-color);
        color: var(--secondary-color);

        p {
          margin-bottom: 0;
          text-transform: uppercase;
          font-size: 20px;
          font-weight: 300;
        }

        i {
          font-size: 20px;
        }
      }
    }
  }

  .about-mangrove {
    background-color: #f7eacc;
    position: relative;
    overflow-x: clip;
    text-align: center;

    h5 {
      text-align: center;
      font-weight: 700;
      font-size: 65px;
      padding-top: 90px;
      color: var(--primary-color);
      margin-bottom: 35px;
    }

    h6 {
      font-size: 25px;
      text-align: center;
      color: #004f4e;
      width: 1066px;
      margin: auto;
      line-height: 35px;
      margin-bottom: 36px;
      font-weight: 300;
    }

    img {
      padding: 40px 8%;
      position: relative;
      z-index: 1;
      width: 1300px;
    }

    .side-img {
      position: absolute;

      &amp;.peas {
        top: -400px;
        width: 1200px;
        right: -530px;
      }

      &amp;.pepper-nut {
        bottom: -195px;
        width: 765px;
        left: -405px;
      }
    }

    .about-mangrove-block-2 {
      background-color: #ddcdaa;
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 250px;
    }
  }

  .our-recipes {
    background-color: #004f4e;

    h5 {
      padding-top: 76px;
      color: #a7b804;
      font-size: 65px;
      font-weight: 700;
      line-height: 83px;
      text-align: center;
    }

    .our-recipes-content {
      position: relative;
      align-items: center;
      justify-content: space-evenly;
      padding: 0;
      /* padding-bottom: 100px; */
      padding-top: 50px;
      gap: 85px;
      overflow: scroll;

      .react-multi-carousel-list {
        margin-bottom: 60px;

        ul {
          gap: 35px;

          li {
            width: 100% !important;
          }
        }
      }

      .custom-dot-list-style {
        /* bottom: 35px; */

        button {
          width: 18px;
          height: 18px;
          border: 3px solid #a7b804;
          background-color: transparent;
        }

        .react-multi-carousel-dot--active {
          button {
            background-color: #a7b804;
          }
        }
      }

      .our-recipes-content-carousel {
        margin-left: 20px;
        justify-content: center;
        ul.react-multi-carousel-track {
          gap: 15px;
        }

        li {
          width: 100% !important;
          .our-recipes-content-item {
            background-color: #ffea55;
            overflow: hidden;

            h6 {
              color: #004772;
            }
          }

          &amp;:nth-child(1) {
            .our-recipes-content-item {
              background-color: #ffea55;

              h6 {
                color: #004772;
              }
            }
          }

          &amp;:nth-child(2) {
            .our-recipes-content-item {
              background-color: #fdf3dc;

              h6 {
                color: #a7b804;
              }
            }
          }

          &amp;:nth-child(3) {
            .our-recipes-content-item {
              background-color: #a7b804;

              h6 {
                color: #fdf3dc;
              }
            }
          }
        }
      }

      .react-multi-carousel-item {
        &amp;:nth-child(1) {
          .our-recipes-content-item {
            background-color: #ffea55;
            h6 {
              color: #004772 !important;
            }
          }
        }

        &amp;:nth-child(2) {
          .our-recipes-content-item {
            background-color: #fdf3dc;
            h6 {
              color: #a7b804 !important;
            }
          }
        }

        &amp;:nth-child(3) {
          .our-recipes-content-item {
            background-color: #a7b804;
            h6 {
              color: #fdf3dc !important;
            }
          }
        }
        .our-recipes-content-item {
          height: 300px;
          display: flex;
          position: relative;
          border-radius: 31px;
          padding: 35px;
          max-width: 690px;
          background: #fcea56;
          overflow: hidden;
          align-items: center;
          min-width: 600px;
          width: 100%;

          h6 {
            color: #004772 !important;
          }

          .our-recipes-content-item-img {
            width: 330px;
            height: 300px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: -27px;

            img {
              object-fit: contain;
              max-width: 100%;
              max-height: 100%;
            }
          }

          .our-recipes-content-item-text {
            z-index: 2;
            width: 300px;
            position: relative;
            left: 250px;

            h6 {
              color: #fff;
              font-size: 45px;
              font-weight: 700;
              margin-bottom: 26px;
              height: fit-content;
              max-height: 100px;
              display: -webkit-box;
              -webkit-line-clamp: 2; /* Limit to 2 lines */
              -webkit-box-orient: vertical;
              overflow: hidden;
              text-overflow: ellipsis;
            }

            p {
              line-height: 24px;
              margin-bottom: 20px;
              color: #004f4e;
              max-height: 100px;
              display: -webkit-box;
              -webkit-line-clamp: 2; /* Limit to 2 lines */
              -webkit-box-orient: vertical;
              overflow: hidden;
              text-overflow: ellipsis;
            }

            button {
              display: flex;
              height: 30px;
              align-items: center;
              justify-content: space-between;
              width: 200px;
              padding: 7px 14px;
              background-color: transparent;
              border: 1px solid #004f4e;

              p {
                margin-bottom: 0;
                text-transform: uppercase;
              }

              i {
                color: #004f4e;
                font-size: 18px;
              }
            }
          }
        }
      }
    }

    .more-recipes-btn-container {
      display: flex;
      justify-content: center;
      padding-bottom: 100px;
      margin-top: 40px;

      button {
        display: flex;
        padding: 10px 25px;
        justify-content: space-between;
        background-color: #a7b804;
        color: #004f4e;
        border-radius: 25px;
        width: 300px;
        align-items: center;

        p {
          margin-bottom: 0;
          text-transform: uppercase;
          font-size: 20px;
          font-weight: 300;
        }

        i {
          font-size: 20px;
        }
      }
    }
  }
}

.store-locator {
  .store-locator-container {
    background-color: #f7eacc;

    .store-locator-header {
      margin: auto;
      height: 300px;
      background-color: var(--secondary-color);
      padding: 22px;

      h1 {
        text-align: center;
        font-size: 55px;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 20px;
      }

      .store-locator-header_search-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 20px;

        .store-locator-header_search-container_form-group {
          border: 1px solid var(--primary-color);
          display: flex;
          align-items: center;
          gap: 10px;
          height: 60px;
          width: 500px;
          border-radius: 25px;
          overflow: hidden;
          position: relative;

          input {
            width: 100%;
            height: inherit;
            background-color: transparent;
            border: none;
            padding: 0 20px;
            &amp;:focus {
              outline: none;
            }
          }

          i {
            position: relative;
            right: 20px;
            cursor: pointer;
          }
        }

        button {
          height: 60px;
          width: 100px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 999px;
          color: #fff;
          background-color: var(--primary-color);

          &amp;:disabled {
            opacity: 0.2;
          }

          .loading .spinner-border {
            width: 20px;
            height: 20px;
            color: #fff !important;
          }
        }
      }
    }

    .store-locator-content {
      .store-locator-content_stores {
        padding: 30px;
        height: fit-content;
        overflow: scroll;

        .header-section {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 24px;
          background-color: var(--secondary-color);
          padding: 0 10px;
          height: 50px;

          p {
            margin-bottom: 0;
          }

          select {
            &amp;:focus {
              outline: none;
            }
          }
        }

        .no-results {
          background-color: var(--primary-gray);
          min-height: 450px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          padding: 32px;
          text-align: center;

          i {
            font-size: 30px;
            margin-bottom: 10px;
          }

          h5 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
          }
        }

        .store-list {
          height: 450px;
          overflow: scroll;

          .item {
            background-color: var(--secondary-color);
            margin-bottom: 24px;
            padding: 24px;
            cursor: pointer;

            h5 {
              font-size: 20px;
              font-weight: 700;
              margin-bottom: 10px;
              text-transform: capitalize;
              word-wrap: break-word;
            }

            h6 {
              color: var(--paragraph-color);
              font-size: 16px;
              font-weight: 400;
              margin-bottom: 18px;
            }

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

              p {
                margin-bottom: 0;
                font-size: 16px;
                line-height: 16px;
                font-weight: 400;
                color: #004f4e;
              }

              button {
                height: 40px;
                font-size: 16px;
                font-weight: 400;
                display: flex;
                align-items: center;
                width: 128px;
                justify-content: space-between;
                padding: 0 14px;
                border-radius: 999px;
                background: #004f4e;
                color: #fff;

                p {
                  color: #fff;
                }
              }
            }
          }
        }

        .pagination-container {
          margin-top: 10px;
          height: 50px;
          display: flex;
          align-items: center;
          justify-content: center;

          ul {
            padding-left: 0;
            list-style: none;
            display: flex;
            gap: 10px;
            margin-bottom: 0;

            li {
              color: #fff;
              background-color: #004f4e9e;
              border-radius: 35%;
              width: 35px;
              height: 35px;
              display: flex;
              align-items: center;
              justify-content: center;

              a {
                text-decoration: none;
                color: #fff;
              }

              &amp;.selected {
                background-color: #004f4e;
              }
            }
          }
        }
      }
    }
  }
}

.privacy-policy-container {
  background-color: #fdf3dc;
  height: 100%;
  padding: 50px 100px;

  ul.nav {
    border-bottom: 1px solid #ddcdaa;
    gap: 30px;
    cursor: pointer;

    li a {
      font-size: 20px;
      color: #ddcdaa;

      &amp;.active {
        color: #f23c28;
      }
    }
  }

  .content {
    margin-top: 35px;

    h3 {
      font-weight: 700;
      font-size: 33px;
      margin-bottom: 15px;
      color: #f23c28;
    }

    h5 {
      font-size: 16px;
      font-weight: 400;
    }

    .point {
      margin-top: 25px;
    }

    ul {
      list-style-type: none;
      li {
        margin-bottom: 10px;
      }
    }

    .point-block {
      background-color: #ddcdaa;
      padding: 24px;
      margin-top: 44px;
      margin-bottom: 96px;
      border-radius: 8px;
      color: #fdf3dc;

      .holder {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fdf3dc;

        a {
          color: #fdf3dc;
          margin-bottom: 2px;
        }
      }
    }
  }
}

.recipes {
  .hero-block {
    background-color: #f7eacc;
    padding: 150px 200px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 0;
    overflow: hidden;

    img {
      position: absolute;
      right: 200px;
      width: 485px;
      bottom: -41px;
    }

    h3 {
      font-weight: 800;
      font-size: 75px;
      width: 45%;
      color: #004f4e;
    }

    h6 {
      font-size: 20px;
      font-weight: 400;
      width: 30%;
      line-height: 28px;
      margin-bottom: 190px;
      color: #004f4e;
    }

    button {
      width: 315px;
      height: 48px;
      background: red;
      color: #fff;
      margin-bottom: 140px;
      display: flex;
      padding: 10px 15px;
      justify-content: space-between;
      border-radius: 25px;

      p {
        margin-bottom: 0;
        text-transform: uppercase;
        font-size: 20px;
        font-weight: 300;
      }

      i {
        font-size: 20px;
      }
    }
  }
  .recipes-container {
    background-color: #fdf3dc;
    height: 100%;
    padding: 50px 100px;
    padding-top: 70px;

    .page-title {
      text-align: center;
      font-size: 58px;
      font-weight: bold;
      margin-bottom: 25px;
    }

    ul.recipe-categories {
      display: flex;
      gap: 10px;
      list-style: none;
      justify-content: center;
      flex-wrap: wrap;

      li {
        background-color: #fff;
        padding: 5px 15px;
        border-radius: 999px;
        min-width: 90px;
        text-align: center;
        cursor: pointer;

        &amp;.active {
          color: #004f4e;
          font-weight: bolder;
        }
      }
    }

    .recipes-flex-2 {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 35px;
      justify-content: center;

      .recipe-box {
        flex-basis: 325px;
        background-color: #f7eacc;

        .recipe-box-img {
          height: 250px;
          background-color: #ddcdaa;
          border-radius: 10px;
          border-bottom-right-radius: 15px;
          border-bottom-left-radius: 15px;
          display: flex;
          justify-content: center;

          &amp;.fish {
            img {
              width: fit-content;
              padding: 25px;
              margin-top: 8px;
            }
          }

          img {
            height: 100%;
            object-fit: cover;
            padding: 8px;
          }
        }

        .recipe-box-content {
          padding: 20px 30px;

          ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;

            li {
              color: #004f4e;
              margin-bottom: 3px;
            }
          }

          h3 {
            font-size: 23px;
            font-weight: 700;
            color: #004f4e;
          }

          p {
            color: #004f4e;
          }

          button {
            height: 40px;
            width: 100%;
            border: 1px solid #004f4e;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            border-radius: 25px;
            margin: auto;
            margin-top: 20px;
            background: transparent;

            p {
              margin-bottom: 0;
              text-transform: uppercase;
              font-size: 15px;
              font-weight: 300;
              color: #004f4e;
            }

            i {
              font-size: 16px;
              color: #004f4e;
            }
          }
        }
      }
    }

    .recipes-flex {
      display: flex;
      margin-top: 200px;
      flex-wrap: wrap;
      justify-content: space-evenly;
      row-gap: 200px;

      .recipe-box {
        flex-basis: 400px;
        position: relative;
        width: 400px;
        min-height: 400px;
        background-color: #ddcdaa;
        border-radius: 30px;

        .recipe-box-img {
          position: absolute;
          top: -200px;

          &amp;.fish {
            width: 400px;
            padding: 55px;
          }
        }

        h3 {
          margin-top: 170px;
          text-align: center;
          font-weight: 700;
          color: #004f4e;
          margin-bottom: 20px;
        }

        ul {
          list-style: none;
          li {
            font-size: 18px;
            margin-bottom: 4px;
            color: #004f4e;
          }
        }

        button {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 200px;
          height: 40px;
          margin: auto;
          gap: 5px;
          background-color: transparent;
          border: 1px solid #004f4e;
          margin-bottom: 20px;
          color: #004f4e;

          i {
            font-size: 14px;
          }
        }
      }
    }
  }
}

.recipe-details-modal {
  .modal-header {
    background: url("../imgs/table-food-serving.jpg");
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;

    .bttn-close {
      background: transparent !important;
      top: 0;
      position: absolute;
      right: -2px;
      i {
        font-size: 25px;
        color: white;
      }
    }
  }

  .modal-body {
    padding: 35px 50px;

    h3 {
      font-size: 40px;
      font-size: 50px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .main-ingredient {
      display: flex;
      gap: 10px;
      color: #004f4e;

      i {
        color: #fcea56;
      }

      h2 {
        font-size: 18px;
        font-weight: 500;
        color: #004f4e;
      }
    }

    .details {
      display: flex;
      gap: 10px;
      margin-top: 15px;

      div {
        display: flex;
        gap: 8px;
        background: #004f4e;
        height: fit-content;
        padding: 5px 15px;
        border-radius: 9px;
        color: white;

        p {
          margin-bottom: 0;
        }
      }
    }

    .description {
      margin-top: 20px;

      p {
        font-size: 15px;
        font-weight: 300;
      }
    }

    .flex {
      display: flex;
      gap: 40px;
      margin-top: 50px;
      align-items: center;

      .food-image {
        width: 400px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        border-radius: 18px;

        img {
          height: 100%;
          /* object-fit: cover; */
          object-fit: contain;
          max-width: 100%;
          max-height: 100%;
        }
      }

      .ingredients {
        width: 100%;
        ul {
          list-style: square;
          padding-left: 13px;

          li {
            margin-bottom: 5px;
          }
        }
      }
    }

    .preparation-steps {
      margin-top: 40px;

      ul {
        list-style: circle;
      }

      li {
        margin-bottom: 7px;
        font-size: 18px;
      }
    }
  }
}

.footer-container {
  background-color: var(--primary-color);
  padding: 50px 100px;
  position: relative;

  .footer {
    display: grid;
    grid-template-columns: 0.8fr 0.1fr 0.8fr 0.1fr 1.5fr;
    position: relative;

    .bottom-footer {
      position: absolute;
      bottom: 0;
      font-size: 13px;
      margin-bottom: 10px;
    }

    .logo-column {
      img {
        width: 250px;
        height: fit-content;
      }
    }

    .height-line {
      width: 1px;
      /* height: 75%; */
      height: 63%;
      background: #fdf3dc;
      margin-bottom: 25%;
    }

    .menu-column {
      ul {
        list-style: none;
        padding-left: 0;
        li {
          margin-bottom: 5px;
          a {
            color: #fdf3dc;
            text-transform: uppercase;
            font-weight: 300;
            text-decoration: none;
          }
        }
      }

      .copyright-text {
        color: var(--secondary-color);
        font-weight: 200;
      }
    }

    .newsletter-column {
      color: var(--secondary-color);
      width: 60%;

      h5 {
        font-weight: 900;
        font-size: 25px;
        margin-bottom: 4.5px;
      }

      p {
        font-size: 15px;
      }

      input {
        display: block;
        margin-bottom: 15px;
        height: 48px;
        width: 100%;
      }

      button {
        display: flex;
        padding: 10px 25px;
        justify-content: space-between;
        align-items: center;
        border-radius: 25px;
        width: 100%;
        background: transparent;
        color: var(--secondary-color);
        border: 1px solid var(--secondary-color);
        margin-bottom: 15px;

        p {
          margin-bottom: 0;
          text-transform: uppercase;
          font-size: 20px;
          font-weight: 300;
        }

        i {
          font-size: 20px;
        }

        .loading {
          .spinner-border {
            color: #fff !important;
            width: 25px;
            height: 25px;
          }
        }
      }

      .social-media-icons {
        display: flex;
        gap: 10px;
        margin-bottom: 0;
        a {
          color: #fff;
          font-size: 41px;
        }
      }
    }

    .mobile-copyright-column {
      display: none;
    }
  }

  .mangrove-brand {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 0.8fr 0.1fr 0.8fr 0.1fr 1.5fr;
    color: var(--secondary-color);
    padding-top: 30px;
    align-items: center;

    p {
      font-size: 12px;
      margin-bottom: 0;
    }

    .social-media-icons {
      display: flex;
      gap: 10px;
      margin-bottom: 0;

      a i {
        font-size: 35px;
        color: var(--secondary-color);
      }
    }
  }
}
</pre></body></html>