/* =========================
   FONTS
========================= */

@font-face {
  font-family: "sansregular";
  src: url("../fonts/DMSans-Regular.ttf");
}

@font-face {
  font-family: "sansmedium";
  src: url("../fonts/DMSans-Medium.ttf");
}
@font-face {
  font-family: "sansbold";
  src: url("../fonts/DMSans-Bold.ttf");
}
@font-face {
  font-family: "sansmedium";
  src: url("../fonts/DMSans-Medium.ttf");
}

@font-face {
  font-family: "sanssemibold";
  src: url("../fonts/DMSans-SemiBold.ttf");
}
@font-face {
  font-family: "sansblack";
  src: url("../fonts/DMSans-Black.ttf");
}

@font-face {
  font-family: "robotoregular";
  src: url("../fonts/RobotoSerif-Regular.ttf");
}

@font-face {
  font-family: "robotomedium";
  src: url("../fonts/RobotoSerif-Medium.ttf");
}

@font-face {
  font-family: "robotosemibold";
  src: url("../fonts/RobotoSerif-SemiBold.ttf");
}

/* =========================
   COMMON
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #07452e;
  background: #fbf6ed;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================
   NAVBAR
========================= */

.mp-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  background-color: rgba(255, 245, 226, 0.2) !important;
  backdrop-filter: blur(12px);
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.mp-navbar.mp-scrolled {
  padding: 10px 0;
  box-shadow: 0 6px 24px rgba(7, 69, 46, 0.1);
}

.mp-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
}

.mp-nav-links {
  display: flex;
  gap: 42px;
}

.mp-nav-links .nav-link {
  position: relative;
  padding: 6px 2px;
  color: #000000;
  font-family: "sansmedium";
  font-size: 20px;
  line-height: 41px;
}

.mp-nav-links .nav-link:hover,
.mp-nav-links .nav-link.active {
  color: #07452e;
  font-family: "sansbold";
}

.mp-nav-links .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: #07452e;
  border-radius: 2px;
}

/* =========================
   BUTTONS
========================= */

.mp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  color: #fff !important;
  background: #07452e;
  border: 1px solid #07452e;
  border-radius: 30px;
  font-family: "sanssemibold";
  font-size: 16px;
  line-height: 41px;
}

.mp-btn-primary:hover {
  background: #052f20;
  transform: translateY(-1px);
}

.mp-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px 11px 18px;
  color: #07452e !important;
  background: #fff;
  border: 1px solid #e3d9c3;
  border-radius: 30px;
  font-size: 0.93rem;
  font-weight: 500;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.mp-btn-outline:hover {
  background: #fbf6ea;
  transform: translateY(-1px);
}

.mp-btn-lg {
  min-width: 220px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 0.97rem;
}

.mp-play-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #fff;
  background: #07452e;
  border-radius: 50%;
  font-size: 12px;
}

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

.mp-sidenav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 100vh;
  padding-top: 70px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff5e2;
  transition: 0.4s;
}

.mp-sidenav.show {
  width: 260px;
}

.mp-sidenav a {
  display: block;
  padding: 18px 30px;
  color: #07452e;
  font-size: 16px;
  font-weight: 500;
}

.mp-sidenav a:hover {
  color: #07452e;
}

.mp-closebtn {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 34px !important;
}

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

.mp-toggler {
  border: none;
  background: transparent;
  box-shadow: none !important;
}

.mp-toggler:focus {
  box-shadow: none;
}

.mp-line1,
.mp-line2,
.mp-line3 {
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background: #07452e;
  border-radius: 3px;
}

.mp-line2 {
  width: 18px;
  margin-left: 12px;
}

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

.mp-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 45px;
  background-image: url("../images/home/i-banner.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.mp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  padding-bottom: 35px;
}

.mp-hero-text {
  position: relative;
  z-index: 5;
}

.mp-hero-title {
  font-family: "robotomedium";
  font-size: 72px;
  line-height: 80px;
  margin: 0 0 25px;
  color: #07452e;
}

.mp-hero-subtitle {
  font-family: "sansregular";
  font-size: 24px;
  line-height: 40px;
  max-width: 800px;
  margin: 0 auto;
  color: #000000;
}

/* =========================
   HERO VISUAL
========================= */

.mp-hero-stage {
  position: relative;
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Phone */

.mp-phone-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.mp-phone-mockup {
  display: block;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 20px rgba(55, 40, 20, 0.16));
}

/* Tickets */

.mp-ticket-area {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  width: 48%;
  height: 190px;
  overflow: hidden;
  transform: translateY(-35%);

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 88%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 88%,
    transparent 100%
  );
}

.mp-ticket-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  height: 100%;
  animation: mpTicketMove 22s linear infinite;
}

.mp-ticket {
  flex: 0 0 auto;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-ticket img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(80, 55, 20, 0.1));
}

@keyframes mpTicketMove {
  from {
    transform: translateX(calc(-4 * 210px - 3 * 22px));
  }

  to {
    transform: translateX(0);
  }
}

/* Count Card */

.mp-count-card {
  position: absolute;
  right: 13%;
  top: 32%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-28%);
  pointer-events: none;
}

.mp-count-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(60, 45, 25, 0.1));
}

/* =========================
   HERO BUTTONS
========================= */

.mp-hero-actions {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.mp-hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 15px;
  border-radius: 30px;
  font-family: "sansregular";
  text-decoration: none;
}

/* =========================
   SECOND SECTION
========================= */

.mp-tradition-section {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  background: #fbf6ed;
}

/* =========================
   SIDE DECORATIVE DESIGNS
========================= */

.mp-flower-decor,
.mp-flower-decor-right {
  position: absolute;
  top: 20%;
  width: 60%;
  height: 60%;
  opacity: 0.7;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.mp-flower-decor {
  left: 0;
  background-image: url("../images/home/i-ls-design.png");
  background-position: left center;
}

.mp-flower-decor-right {
  right: 0;
  background-image: url("../images/home/i-rs-design.png");
  background-position: right center;
}

.mp-section-title {
  position: relative;
  z-index: 2;
  color: #07452e;
  font-family: "robotomedium";
  font-size: 48px;
  line-height: 68px;
}

.mp-book-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

/* =========================
   MISSION BAR
========================= */

.mp-mission-bar {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  background-image: url("../images/home/secure-data-banner.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.mp-mission-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-mission-text {
  flex: 1 1 260px;
  margin: 0;
  color: #07452e;
  font-family: "sansmedium";
  font-size: 24px;
  line-height: 34px;
  text-align: left;
}

.mp-mission-divider {
  width: 1px;
  align-self: stretch;
  background: #ddc99a;
}

.mp-mission-item {
  color: #07452e;
  font-family: "sansmedium";
  font-size: 15px;
  line-height: 18px;
  text-align: center;
}

.mp-mission-item span {
  display: block;
  margin-bottom: 4px;
}

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

.mp-footer {
  width: 100%;
  padding: 100px 0 30px;
  background-image: url("../images/footer/footer-img.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.mp-footer-tagline {
  margin-bottom: 26px;
  color: #fff2d5;
  font-family: "robotoregular";
  font-size: 26px;
  font-weight: 400;
  line-height: 1.7;
}

.mp-footer-tagline strong {
  color: #fff;
  font-family: "robotomedium";
  font-size: 32px;
  font-weight: 400;
}

.mp-footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 34px;
}

.mp-footer-slogan {
  margin: 4px 0 30px;
  color: #fff7da;
  font-family: "sansregular";
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mp-footer-hr {
  margin-bottom: 38px;
  border-color: rgba(255, 255, 255, 0.15);
}

.mp-footer-cols {
  margin-bottom: 44px;
}

.mp-footer-col h5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.mp-footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mp-footer-col p {
  margin: 0;
  color: #cfdbd0;
  font-size: 0.82rem;
}

.mp-footer-col p a:hover {
  color: #fff;
}

.mp-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mp-social-icons a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 0.8rem;
  transition: background 0.2s ease;
}

.mp-social-icons a:hover {
  background: #c9a24b;
}

.mp-footer-bottom {
  padding-top: 22px;
  color: #b9c9bd;
  border-top: 1px solid #967a42;
  font-size: 0.78rem;
  line-height: 1.8;
  text-align: center;
}

.mp-footer-bottom a {
  color: #b9c9bd;
}

.mp-footer-bottom a:hover {
  color: #fff;
}

.mp-footer-sep {
  margin: 0 10px;
  opacity: 0.5;
}

.border-end-custom {
  border-right: 1px solid #c59547;
}

/* =========================
   LARGE DESKTOP
========================= */

@media (max-width: 1366px) {
  .mp-hero {
    padding-top: 60px;
  }

  .mp-hero-title {
    font-size: 62px;
    line-height: 70px;
  }

  .mp-ticket-area {
    width: 47%;
  }

  .mp-ticket {
    width: 190px;
  }

  .mp-count-card {
    width: 250px;
  }
}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1100px) {
  .mp-hero-content {
    max-width: 960px;
  }

  .mp-hero-subtitle {
    font-size: 22px;
    line-height: 40px;
  }

  .mp-ticket-area {
    width: 43%;
  }

  .mp-ticket {
    width: 175px;
  }

  .mp-ticket-track {
    gap: 18px;
  }

  .mp-count-card {
    width: 210px;
  }
  .mp-flower-decor,
  .mp-flower-decor-right {
    width: 40%;
    height: 40%;
  }
}

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

@media (max-width: 991px) {
  .mp-nav-links,
  .mp-nav-cta {
    display: none;
  }

  .mp-toggler {
    display: block;
  }

  .mp-sidenav {
    display: block;
  }

  .mp-hero {
    padding: 55px 0 40px;
  }

  .mp-hero-title {
    font-size: 52px;
    line-height: 60px;
  }

  .mp-hero-subtitle {
    font-size: 20px;
    line-height: 35px;
  }

  .mp-ticket-area {
    width: 42%;
    height: 150px;
  }

  .mp-ticket {
    width: 145px;
  }

  .mp-ticket-track {
    gap: 15px;
  }

  .mp-count-card {
    right: 5px;
    width: 175px;
  }

  .mp-footer {
    padding: 70px 0 25px;
    background-size: cover;
  }

  .mp-footer-tagline {
    font-size: 22px;
    line-height: 1.6;
  }

  .mp-footer-tagline strong {
    font-size: 26px;
  }

  .mp-footer-divider {
    margin-bottom: 25px;
  }

  .mp-footer-divider img {
    width: 100%;
    max-width: 260px;
  }

  .mp-footer-logo img {
    max-width: 170px;
  }

  .mp-footer-slogan {
    margin-bottom: 25px;
  }

  .mp-footer-cols {
    row-gap: 30px;
    margin-bottom: 30px;
  }

  .mp-footer-col {
    margin-bottom: 0;
    text-align: center;
  }

  .mp-footer-col p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    line-height: 1.8;
  }

  .border-end-custom {
    border-right: none !important;
  }

  .mp-footer-bottom {
    padding: 20px 15px;
  }
  .mp-section-title {
    font-size: 38px;
    line-height: 58px;
  }
  .mp-mission-bar {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
  }

  .mp-mission-text {
    font-size: 20px;
    line-height: 30px;
    flex: none;
    width: 100%;
    text-align: center;
  }

  .mp-mission-divider {
    width: 80%;
    height: 1px;
    align-self: center;
  }

  .mp-mission-item {
    width: 100%;
    text-align: center;
  }
}

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

@media (max-width: 767px) {
  .mp-hero {
    padding: 45px 0 35px;
    background-size: cover;
  }

  .mp-hero-content {
    padding-bottom: 0;
  }
  .mp-hero-title {
    font-size: 42px;
    line-height: 50px;
  }

  .mp-hero-subtitle {
    padding: 0 15px;
    font-size: 18px;
    line-height: 28px;
  }

  .mp-ticket-area {
    display: none;
  }

  .mp-hero-stage {
    margin-top: 10px;
  }

  .mp-count-card {
    top: 52%;
    right: 0;
    width: 145px;
    transform: translateY(-20%);
  }

  .mp-hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
    padding: 0 20px;
  }

  .mp-hero-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
  }

  .mp-section-title {
    font-size: 30px;
    line-height: 48px;
  }

  .mp-mission-bar {
    padding: 22px;
  }

  .mp-mission-text {
    text-align: center;
    font-size: 18px;
    line-height: 25px;
  }
}

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

@media (max-width: 575px) {
  .mp-hero {
    padding-top: 40px;
  }

  .mp-hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .mp-hero-subtitle {
    padding: 0 10px;
    font-size: 16px;
  }

  .mp-count-card {
    top: 53%;
    right: -8px;
    width: 125px;
  }
  .mp-phone-mockup {
    width: 300px;
  }
  .mp-flower-decor,
  .mp-flower-decor-right {
    width: 30%;
    height: 30%;
    top: 25%;
  }
  .mp-section-title {
    font-size: 25px;
    line-height: 38px;
  }
}

/* =========================
   EXTRA SMALL
========================= */

@media (max-width: 425px) {
  .mp-hero {
    padding: 46px 0 30px;
  }

  .mp-hero-title {
    font-size: 26px;
  }

  .mp-hero-subtitle {
    font-size: 13px;
    line-height: 20px;
  }

  .mp-count-card {
    right: -5px;
    width: 110px;
  }
  .mp-phone-mockup {
    width: 250px;
  }

  .mp-hero-actions {
    padding: 0 15px;
  }

  .mp-mission-item {
    flex: 1 1 30%;
  }

  .mp-footer-cols {
    text-align: center !important;
  }
  .mp-section-title {
    font-size: 20px;
    line-height: 30px;
  }
}

/* =========================
   VERY SMALL
========================= */

@media (max-width: 375px) {
  .mp-hero-title {
    font-size: 24px;
  }

  .mp-count-card {
    width: 80px;
  }
  .mp-phone-mockup {
    width: 200px;
  }
}

/* =========================
   DESKTOP NAVBAR
========================= */

@media (min-width: 992px) {
  .mp-toggler,
  .mp-sidenav {
    display: none;
  }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
  .mp-ticket-track {
    animation: none;
  }
}

/* =========================
   TRADITION SECTION
========================= */

.mp-tradition-section {
  padding: 70px 20px 80px;
  overflow: hidden;
  background: #f8f3ea;
  text-align: center;
}

/* =========================
   HEADING
========================= */

.mp-tradition-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 55px;
}

.mp-tradition-heading h2 {
  margin: 0;
  color: #07452e;
  font-family: "robotosemibold";
  font-size: 26px;
  line-height: 64px;
  white-space: nowrap;
}

.mp-heading-design-left,
.mp-heading-design-right {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* =========================
   CARD SLIDER
========================= */

.mp-tradition-slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.mp-tradition-slider::-webkit-scrollbar {
  display: none;
}

.mp-tradition-slider.mp-dragging {
  cursor: grabbing;
}

/* =========================
   CARD TRACK
========================= */

.mp-tradition-track {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: max-content;
  padding: 10px 30px;
}

/* =========================
   CARD
========================= */

.mp-tradition-card {
  flex: 0 0 280px;
  width: 280px;
  text-align: center;
  user-select: none;
}

/* =========================
   CARD VISUAL
========================= */

.mp-card-visual {
  position: relative;
  width: 100%;
  height: 270px;
}

/* =========================
   PLATE
   PLATE IS STATIC
========================= */

.mp-card-plate {
  position: absolute;
  left: 55%;
  bottom: -70px;
  z-index: 1;
  display: block;
  height: auto;
  transform: translateX(-50%);
}

/* =========================
   ITEM IMAGE
   ONLY THIS IMAGE MOVES
========================= */

.mp-card-item {
  position: absolute;
  left: 50%;
  bottom: 55px;
  z-index: 2;
  display: block;
  width: auto;
  max-width: 85%;
  max-height: 190px;
  height: auto;
  object-fit: contain;
  transform: translateX(-50%);
  animation: mp-card-float 3s ease-in-out infinite;
  pointer-events: none;
}

/* =========================
   FLOATING ANIMATION
========================= */

@keyframes mp-card-float {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -40px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

/* =========================
   CARD TEXT
========================= */

.mp-card-title {
  margin: 22px 0 10px;
  color: #07452e;
  font-family: "sanssemibold";
  font-size: 22px;
  line-height: 29px;
}

.mp-card-description {
  max-width: 280px;
  margin: 0 auto;
  color: #252525;
  font-family: "sansregular";
  font-size: 16px;
  line-height: 24px;
}

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

@media (max-width: 992px) {
  .mp-tradition-section {
    padding: 60px 15px 70px;
  }

  .mp-tradition-heading {
    gap: 15px;
    margin-bottom: 45px;
  }

  .mp-tradition-heading h2 {
    font-size: 30px;
  }

  .mp-heading-design-left,
  .mp-heading-design-right {
    max-width: 170px;
  }

  .mp-tradition-track {
    gap: 35px;
  }

  .mp-tradition-card {
    flex: 0 0 250px;
    width: 250px;
  }

  .mp-card-visual {
    height: 240px;
  }

  /* .mp-card-plate {
        width: 200px;
    } */

  .mp-card-item {
    bottom: 48px;
    max-height: 165px;
  }

  .mp-card-title {
    font-size: 20px;
  }

  .mp-card-description {
    font-size: 15px;
  }
}

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

@media (max-width: 600px) {
  .mp-tradition-section {
    padding: 45px 10px 55px;
  }

  .mp-tradition-heading {
    gap: 8px;
    margin-bottom: 35px;
  }

  .mp-tradition-heading h2 {
    font-size: 21px;
  }

  .mp-heading-design-left,
  .mp-heading-design-right {
    max-width: 75px;
  }

  .mp-tradition-track {
    gap: 20px;
    padding: 10px 20px;
  }

  .mp-tradition-card {
    flex: 0 0 calc(100vw - 60px);
    width: calc(100vw - 60px);
    max-width: 330px;
  }

  .mp-card-visual {
    height: 230px;
  }

  /* .mp-card-plate {
        width: 190px;
    } */

  .mp-card-item {
    bottom: 45px;
    max-width: 82%;
    max-height: 155px;
  }

  .mp-card-title {
    margin-top: 20px;
    font-size: 20px;
  }

  .mp-card-description {
    max-width: 300px;
    font-size: 14px;
    line-height: 1.5;
  }
}

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

@media (max-width: 375px) {
  .mp-tradition-heading {
    gap: 5px;
  }

  .mp-tradition-heading h2 {
    font-size: 18px;
  }

  .mp-heading-design-left,
  .mp-heading-design-right {
    max-width: 55px;
  }

  .mp-card-visual {
    height: 210px;
  }

  /* .mp-card-plate {
        width: 170px;
    } */

  .mp-card-item {
    bottom: 40px;
    max-height: 140px;
  }
}

/* ==================================================
   STORIES FROM FAMILIES — Testimonial Carousel Section
   ================================================== */

.mp-stories-section {
  position: relative;
  width: 100%;
  min-height: 820px;
  padding: 80px 0 60px;
  background-image: url("../images/home/stories-fam-bacimg.png");
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mp-stories-content {
  position: relative;
  z-index: 2;
}

/* ---------- Heading ---------- */

.mp-stories-heading {
  margin-bottom: 48px;
}

.mp-stories-eyebrow {
  font-family: "sansmedium";
  font-size: 22px;
  line-height: 48px;
  text-transform: uppercase;
  color: #ca853d;
}

.mp-stories-title {
  font-family: "robotomedium";
  font-size: 48px;
  line-height: 68px;
  color: #07452e;
  margin: 0;
}

/* ---------- Carousel wrapper ---------- */

.mp-stories-carousel {
  position: relative;
  width: 100%;
}

.mp-stories-track {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding: 4px 4px 4px 55%;
  margin: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mp-stories-track::-webkit-scrollbar {
  display: none;
}

/* ---------- Card ---------- */

.mp-story-card {
  flex: 0 0 auto;
  width: 300px;
  min-height: 400px;
  background-color: #fbf8f2;
  border-radius: 22px;
  box-shadow: 0px 4px 9px 0px #cbb29866;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.mp-story-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mp-story-rating {
  height: 16px;
  width: auto;
}

.mp-story-text {
  font-family: "sansregular";
  font-size: 16px;
  line-height: 22px;
  color: #293e49;
  flex-grow: 1;
  margin-bottom: 24px;
}

.mp-story-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.mp-story-profile-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.mp-story-profile-name {
  font-family: "sansbold";
  font-size: 18px;
  line-height: 22px;
  color: #07452e;
}

.mp-story-profile-location {
  font-family: "sansregular";
  font-size: 16px;
  line-height: 22px;
  color: #666465;
}
.mp-story-profile-img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.profile-user-1 {
  background-image: url("../images/home/user-1.svg");
}

.profile-user-2 {
  background-image: url("../images/home/user-2.svg");
}

.profile-user-3 {
  background-image: url("../images/home/user-3.svg");
}

.profile-user-4 {
  background-image: url("../images/home/user-4.svg");
}

.profile-user-5 {
  background-image: url("../images/home/user-5.svg");
}

/* ---------- Nav buttons ---------- */

.mp-story-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-right: 4px;
  margin-top: 28px;
}

.mp-story-nav-btn {
  width: 44px;
  height: 44px;
  cursor: pointer;
}

/* ==================================================
   TABLET
   ================================================== */
/* ==================================================
   DESKTOP ONLY — CARDS ON RIGHT SIDE
   ================================================== */

@media (min-width: 992px) {
  .mp-stories-carousel {
    width: 50%;
    margin-left: 50%;
  }

  .mp-stories-track {
    padding: 4px 0;
  }
}

@media (max-width: 991px) {
  .mp-stories-section {
    min-height: auto;
    padding: 64px 0 48px;
    background-image: url("../images/home/love-fam-mobile.png");
    /* background-position: 30% center; */
  }

  .mp-stories-title {
    font-size: 32px;
    line-height: 48px;
  }

  .mp-stories-track {
    padding-left: 30px;
  }

  .mp-story-card {
    width: 280px;
    min-height: 360px;
    padding: 26px 22px;
  }
}

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

@media (max-width: 767px) {
  .mp-stories-section {
    padding: 40px 0 32px;
    background-position: 65% center;
    background-size: cover;
  }

  .mp-stories-eyebrow {
    font-size: 12px;
  }

  .mp-stories-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .mp-stories-track {
    padding: 4px 30px;
    gap: 16px;
  }

  .mp-story-card {
    width: 82vw;
    max-width: 320px;
    min-height: 320px;
    padding: 24px 20px;
  }

  .mp-story-nav {
    justify-content: center;
    padding-right: 0;
    margin-top: 20px;
  }
}

@media (max-width: 420px) {
  .mp-story-card {
    width: 86vw;
  }
}

/* =========================================================
   BLOG STORIES SECTION
========================================================= */

.mp-blog-section {
  width: 100%;
  padding: 105px 0 90px;
  overflow: hidden;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.mp-blog-heading {
  margin-bottom: 70px;
}

.mp-blog-eyebrow {
  margin: 0 0 22px;
  font-family: "sansmedium";
  font-size: 22px;
  line-height: 48px;
  text-transform: uppercase;
  color: #ca853d;
  text-transform: uppercase;
}

.mp-blog-main-title {
  margin: 0;
  font-family: "robotomedium";
  font-size: 48px;
  line-height: 68px;
  color: #07452e;
}

/* =========================================================
   CARDS ROW
========================================================= */

.mp-blog-row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

/* =========================================================
   CARD COLUMN
========================================================= */

.mp-blog-column {
  display: flex;
}

/* =========================================================
   BLOG CARD
========================================================= */

.mp-blog-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fffaf4;
  border-radius: 24px;
  box-shadow: 0px 4px 9px 0px #cbb29866;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mp-blog-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.11);
}

/* =========================================================
   CARD IMAGE
========================================================= */

.mp-blog-card-image {
  width: 100%;
  height: 220px;

  overflow: hidden;
}

.mp-blog-card-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.4s ease;
}

.mp-blog-card:hover .mp-blog-card-image img {
  transform: scale(1.03);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.mp-blog-card-content {
  min-height: 295px;

  display: flex;
  flex-direction: column;

  padding: 28px 32px 30px;
}

/* =========================================================
   TAG
========================================================= */

.mp-blog-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 20px;
  background: #eae7d0;
  color: #145822;
  font-family: "sansblack";
  font-size: 11px;
  line-height: 10px;
  text-transform: uppercase;
}

/* =========================================================
   CARD TITLE
========================================================= */

.mp-blog-card-title {
  margin: 22px 0 12px;
  color: #07452e;
  font-family: "sanssemibold";
  font-size: 24px;
  line-height: 31px;
}

/* =========================================================
   CARD DESCRIPTION
========================================================= */

.mp-blog-card-description {
  max-width: 330px;
  margin: 0;
  color: #293e49;
  font-family: "sansregular";
  font-size: 13px;
  line-height: 20px;
}

/* =========================================================
   READ MORE
========================================================= */

.mp-blog-read-more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  color: #24463c;
  font-family: "sansregular";
  font-size: 13px;
  line-height: 23px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mp-blog-read-more img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.mp-blog-read-more:hover img {
  transform: translateX(4px);
}

/* =========================================================
   VIEW ALL BLOGS
========================================================= */

.mp-blog-view-all-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.mp-blog-view-all {
  min-width: 185px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 20px;
  border: 1.5px solid #d09353;
  border-radius: 30px;
  background: transparent;
  color: #24463c;
  font-family: "sanssemibold";
  font-size: 13px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.mp-blog-view-all img {
  width: 27px;
  height: 27px;

  object-fit: contain;

  transition: transform 0.25s ease;
}

/* .mp-blog-view-all:hover {
  background: #D09353;
  color: #ffffff;
} */

.mp-blog-view-all:hover img {
  transform: translateX(4px);
}

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

@media (max-width: 992px) {
  .mp-blog-section {
    padding: 80px 0 70px;
  }

  .mp-blog-heading {
    margin-bottom: 50px;
  }

  .mp-blog-eyebrow {
    font-size: 20px;
  }

  .mp-blog-main-title {
    font-size: 32px;
    line-height: 48px;
  }

  .mp-blog-card-image {
    height: 210px;
  }

  .mp-blog-card-content {
    min-height: 290px;
    padding: 26px 27px 28px;
  }

  .mp-blog-card-title {
    font-size: 24px;
  }
}

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

@media (max-width: 767.98px) {
  .mp-blog-section {
    padding: 65px 0 60px;
  }

  .mp-blog-heading {
    margin-bottom: 38px;
  }

  .mp-blog-eyebrow {
    margin-bottom: 16px;

    font-size: 16px;
    letter-spacing: 0.3px;
  }

  .mp-blog-main-title {
    padding: 0 10px;
  }

  /* Cards become one below another */
  .mp-blog-column {
    width: 100%;
  }

  .mp-blog-row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 24px;
  }

  /* Card */
  .mp-blog-card {
    border-radius: 20px;
  }

  /* Image */
  .mp-blog-card-image {
    height: auto;
    aspect-ratio: 1.78 / 1;
  }

  /* Content */
  .mp-blog-card-content {
    min-height: 275px;

    padding: 24px 24px 25px;
  }

  /* Tag */
  .mp-blog-tag {
    padding: 7px 12px;
    font-size: 11px;
  }

  /* Title */
  .mp-blog-card-title {
    margin-top: 18px;
    margin-bottom: 10px;

    font-size: 23px;
    line-height: 1.3;
  }

  /* Description */
  .mp-blog-card-description {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Read more */
  .mp-blog-read-more {
    padding-top: 22px;
    font-size: 14px;
  }

  .mp-blog-read-more img {
    width: 25px;
    height: 25px;
  }

  /* View all */
  .mp-blog-view-all-wrapper {
    margin-top: 30px;
  }

  .mp-blog-view-all {
    min-width: 175px;
    min-height: 49px;

    gap: 14px;

    font-size: 14px;
  }

  .mp-blog-view-all img {
    width: 25px;
    height: 25px;
  }

  .mp-blog-desktop-break {
    display: none;
  }
}

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

@media (max-width: 400px) {
  .mp-blog-section {
    padding: 55px 0 50px;
  }

  .mp-blog-card-content {
    min-height: 265px;

    padding: 22px 20px 23px;
  }

  .mp-blog-card-title {
    font-size: 21px;
  }
}

/* ==================================================
   APP DOWNLOAD BANNER
   ================================================== */

/* .mp-download-section {
  position: relative;
  width: 100%;
  min-height: 440px;
  background-image: url("../images/home/carry-traditional-banner.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}


.mp-download-content {
  width: 100%;
  margin: 0 auto;
  padding-left: 7%;
  padding-right: 7%;
  position: relative;
  z-index: 2;
}

.mp-download-title {
  margin: 0 0 24px;

  font-family: "robotomedium";
  font-size: 48px;
  line-height: 1.25;

  color: #ffffff;
}

.mp-download-description {
  margin: 0 0 36px;

  font-family: "sansregular";
  font-size: 20px;
  line-height: 1.6;

  color: #ffffff;
}

.mp-download-section {
  position: relative;
  width: 100%;
  min-height: 440px;
  background-image: url("../images/home/carry-traditional-banner.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
} 
.mp-download-content {
  width: 100%;
  margin: 0 auto;
  padding-left: 7%;
  padding-right: 7%;
  position: relative;
  z-index: 2;
}
.mp-download-title {
  margin: 0 0 24px;
  font-family: "robotomedium";
  font-size: 38px;
  line-height: 46px;
  color: #ffffff;
}
.mp-download-description {
  margin: 0 0 36px;
  font-family: "sansregular";
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
} 
.mp-download-stores {
  display: flex;
  align-items: center;
}
.mp-download-store {
  display: block;
  line-height: 0;
}
.mp-download-store img {
  display: block;
  width: 350px;
  height: auto;
  max-width: 100%;
} 
@media (min-width: 1400px) {
  .mp-download-section {
    min-height: 440px;
  }
  .mp-download-content {
    padding-left: 7%;
  }
  .mp-download-title {
    font-size: 38px;
  }
  .mp-download-description {
    font-size: 20px;
  }
  .mp-download-store img {
    width: 350px;
  }
} 
@media (max-width: 1199px) {
  .mp-download-section {
    min-height: 400px;
    background-position: center;
  }
  .mp-download-content {
    padding-left: 6%;
    padding-right: 6%;
  }
  .mp-download-title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 20px;
  }
  .mp-download-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 28px;
  }
  .mp-download-store img {
    width: 310px;
  }
} 
@media (max-width: 991px) {
  .mp-download-section {
    min-height: 380px;
    background-position: center;
  }
  .mp-download-content {
    padding-left: 5%;
    padding-right: 5%;
  }
  .mp-download-title {
    font-size: 28px;
  }
  .mp-download-description {
    font-size: 17px;
  }
  .mp-download-store img {
    width: 285px;
  }
} 
@media (max-width: 767px) {
  .mp-download-section {
    min-height: 560px;
    align-items: flex-start;
    padding-top: 55px;
    background-position: 15% center;
    background-size: cover;
  }
  .mp-download-content {
    padding-left: 28px;
    padding-right: 28px;
    text-align: center;
  }
  .mp-download-title {
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 18px;
  }
  .mp-download-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 26px;
  }
  .mp-download-desktop-break {
    display: none;
  }
  .mp-download-stores {
    width: 100%;
  }
  .mp-download-store {
    width: auto;
    max-width: 100%;
  }
  .mp-download-store img {
    width: 280px;
    max-width: 100%;
    height: auto;
  }
} 
@media (max-width: 480px) {
  .mp-download-section {
    min-height: 520px;
    padding-top: 42px;
    background-position: 72% center;
  }
  .mp-download-content {
    padding-left: 22px;
    padding-right: 22px;
  }
  .mp-download-description {
    font-size: 15px;
    line-height: 1.5;
  }
  .mp-download-store img {
    width: 250px;
    max-width: 100%;
  }
} 
@media (max-width: 360px) {
  .mp-download-section {
    min-height: 500px;
  }
  .mp-download-content {
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .mp-download-description {
    font-size: 14px;
  }
  .mp-download-store img {
    width: 225px;
    max-width: 100%;
  }
} */
