/* ==========================================================================
   IKON PARTITIONS — COMMON STYLESHEET
   Shared by all pages: variables, base, navbar, components, footer
   ========================================================================== */

/* ── Variables ── */
:root {
  --primary: #B8965A;
  --bg-dark: #111111;
  --bg-darker: #0a0a0a;
  --bg-light: #F5F0E8;
  --bg-cream: #E8E3D9;
  --text-light: #FFFFFF;
  --text-gray: rgba(255, 255, 255, 0.72);
  --text-dark: #111111;
  --text-dark-gray: #5A5550;

  --font-sans: 'Outfit', sans-serif;

  --padding-x: clamp(20px, 8vw, 120px);
}

/* ── Reset & Base ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Prevent browser from auto-coloring phone number links */
a[href^="tel"],
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
}

/* ── Utilities ── */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  line-height: 1.1;
}

.italic-serif {
  font-family: 'Arial', sans-serif;
  font-style: italic;
  color: #D4B483;
}

.section-tag {
  color: var(--primary);
  font-size: 11px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--primary);
  transform: rotate(-60deg);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: #a3824b;
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.btn-dark:hover {
  background: #1a1a1a;
}

.btn-outline {
  background: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

/* ── Active nav link ── */
.active-link {
  color: var(--primary) !important;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(184, 150, 90, 0.2);
  padding: 10px 0;
}

/* Always-solid navbar — inner pages; sticky so content starts below it */
.navbar.navbar--solid {
  position: sticky;
  top: 0;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.2);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#megaMenu .container {
  align-items: start !important;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-img {
  height: 120px;
  object-fit: contain;
  margin-bottom: 4px;
}

.logo-tag {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  color: #F7F4EF;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 11.2px;
  font-weight: 500;
  letter-spacing: 1.57px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-btn {
  border: 1px solid #B8965A;
  padding: 12px 28px;
  color: #B8965A;
  text-decoration: none !important;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.52px;
  transition: all 0.3s;
  display: inline-block;
}

.nav-btn:hover {
  background: #B8965A;
  border-color: #B8965A;
  text-decoration: none !important;
  color: #111111;
  transition: all 0.3s;
  scale: 0.95;
}

/* ── Mega Menu ── */
.has-mega-menu {
  position: relative;
}

.has-mega-menu .products-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-chevron {
  font-size: 9px;
  display: inline-block;
  transition: transform .3s ease;
  margin-left: 2px;
}

.has-mega-menu.is-active .mega-chevron {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111111;
  border-top: 1px solid rgba(184, 150, 90, .5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  z-index: 99;
}

.mega-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  width: 920px;
  margin: 0 auto;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 30px;
  padding-bottom: 36px;
  gap: 0;
}

.mega-col {
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.mega-col:first-child {
  padding-left: 0;
}

.mega-col--last {
  border-right: none;
  padding-right: 0;
}

.mega-col-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B8965A;
  margin-bottom: 18px;
}

.mega-category-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-decoration: none !important;
  transition: color .2s ease;
}

a.mega-category-title:hover {
  color: #B8965A;
}

.mega-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-items li {
  margin-bottom: 12px;
}

.mega-items li:last-child {
  margin-bottom: 0;
}

.mega-items a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  padding-left: 0;
  transition: color .3s ease, padding-left .3s ease;
}

.mega-items a:hover {
  color: #B8965A;
  padding-left: 6px;
}

@media (max-width: 992px) {
  .mega-menu-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .mega-col {
    padding: 0 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 24px;
  }

  .mega-col:first-child {
    padding-left: 16px;
  }

  .mega-col--last {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .mega-col,
  .mega-col:first-child {
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mega-col--last {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   PARTNERS  (shared: home + about)
   ========================================================================== */

.partners {
  padding: 96px 0;
  background: var(--text-light);
  color: var(--text-dark);
  text-align: center;
}

.partners-title {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.partners-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #5A5550;
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: 15px;
  line-height: 1.75;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.partner-card {
  border-right: 3px solid #E8E3D9;
  padding: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  transition: all .4s ease;
}

.partner-card:nth-child(3) {
  border: 0;
}

.partner-card:hover {
  background: #f5f0e885;
}

.partner-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.partner-country {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #B8965A;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 14px;
  border: 1px solid #B8965A;
  display: inline-block;
}

.partner-logo {
  height: 38px;
  object-fit: contain;
  opacity: .7;
  transition: all .4s ease;
}

.partner-card:hover .partner-logo {
  opacity: 1;
  transform: scale(1.05);
}

.partner-name {
  padding: 20px 0;
  font-size: 22px;
}

.partner-card-header h3 {
  transition: color .4s ease;
}

.partner-card:hover .partner-card-header h3 {
  color: #B8965A !important;
}

.partner-desc {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #5A5550;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  flex-grow: 1;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  text-decoration: none;
}

.partner-link .link-text {
  border-bottom: 1px solid #000;
  line-height: 1;
  padding-bottom: 2px;
}

.partner-link .arrow {
  line-height: 1;
  font-size: 14px;
  position: relative;
  top: -1px;
}

.partner-link:hover {
  letter-spacing: 2px;
}

.partner-link:hover span {
  transform: translateX(6px);
}

/* ==========================================================================
   TESTIMONIALS  (shared: home + about)
   ========================================================================== */

.testimonials {
  padding: 96px 0;
  background: var(--bg-dark);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-title {
  font-size: 40px;
  text-align: center;
  line-height: 1.1;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-icon {
  margin-bottom: 24px;
  display: block;
  width: auto;
  max-width: 20px;
  opacity: 0.4;
}

.testimonial-text {
  font-family: 'Arial', sans-serif;
  font-style: italic;
  font-size: 18px;
  line-height: 33.6px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 20px;
  flex-grow: 1;
  /* border-bottom: 1px solid #3c3c3c; */
  padding-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
}

.author-info h4 {
  font-family: 'Arial', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-light);
  line-height: 22.53px;
}

.author-info p {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: #9A9490;
  font-size: 15.2px;
  line-height: 28.12px;
}

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

.footer {
  background: #050505;
  padding: 80px 0 32px;
}

.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--padding-x);
}

.footer-top {
  display: grid;
  grid-template-columns: 35% 20% 20% 25%;
  gap: 0;
  padding-bottom: 0;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgb(255 255 255 / 41%);
  line-height: 2;
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffffa3;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #B8965A;
  color: #000;
  border-color: #B8965A;
}

.footer-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer i.fas {
  padding-top: 8px;
}

.footer-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #B8965A;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #B8965A;
}

/* Desktop footer — match Figma: transparent social icons, gold contact icons */
@media (min-width: 993px) {

  /* 1st column: tighten logo / tagline / desc / social to a uniform 19px gap */
  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 19px;
  }

  .footer-logo {
    margin-bottom: 0;
  }

  .footer-tagline {
    margin-bottom: 0;
  }

  .footer-desc {
    max-width: 280px;
    margin-bottom: 0;
  }

  /* Products / Company / Get In Touch lists */
  .footer-title {
    margin-bottom: 34px;
  }

  .footer-links {
    gap: 25px;
  }

  .footer-contact {
    gap: 25px;
  }

  /* Transparent (outlined) social icons */
  .social-links {
    padding-top: 15px;
  }

  .social-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #b0b0b0;
  }

  .social-link:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
  }

  .footer-contact-item i {
    color: var(--primary);
  }
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, .35);
  transition: all .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(37, 211, 102, .45);
}

.whatsapp-float i {
  margin-top: -2px;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu-overlay.is-open {
  transform: translateX(0);
}

.mob-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 86px;
  padding: 8px 24px;
  background: #FCFEFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mob-logo-img {
  height: 70px;
  object-fit: contain;
  filter: brightness(0);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #111111;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  flex-shrink: 0;
}

.mob-menu-list {
  list-style: none;
  padding: 0 24px;
  margin-top: 8px;
}

.mob-menu-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.mob-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 11.2px;
  font-weight: 500;
  letter-spacing: 1.57px;
  text-transform: uppercase;
  color: #5A5550;
  text-decoration: none;
  transition: color 0.2s;
}

.mob-menu-link:hover,
.mob-menu-link.mob-active {
  color: var(--primary);
}

.mob-chev {
  font-size: 9px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   UNIFIED INNER-PAGE HERO  (about, category, contact, gallery)
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  background-color: var(--bg-darker);
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(106deg, rgb(8 8 8 / 76%) 0%, rgb(8 8 8 / 70%) 52%, rgba(8, 8, 8, 0.18) 100%);
  z-index: 1;
}

.page-hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  /* background: linear-gradient(to top, rgba(6,6,6,0.80), transparent); */
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 280px;
}

.page-hero .section-tag {
  color: var(--primary);
  margin-bottom: 18px;
}

.page-hero .section-tag::before {
  background: var(--primary);
}

.page-hero-title {
  font-family: 'Arial', serif;
  font-size: 58px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.14;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.page-hero-title .italic-serif {
  font-family: 'Arial', serif;
  font-style: italic;
  color: #D4B483;
}

.page-hero-desc {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.80;
  max-width: 560px;
  padding-left: 24px;
  border-left: 2px solid #D4B483;
  font-style: italic;
}





/* ==========================================================================
   RESPONSIVE — COMMON
   ========================================================================== */

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --padding-x: 24px;
  }

  /* Navbar */
  .nav-links,
  .nav-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .navbar .container {
    padding: 0 20px;
  }

  .logo-img {
    height: 80px;
  }

  /* Partners */
  .partners {
    padding: 64px 0;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .partner-card {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .partner-card:last-child {
    border-bottom: none;
  }

  /* Testimonials */
  .testimonials {
    padding: 64px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 33.6px;
    color: rgba(255, 255, 255, 0.75);
  }

  .author-info h4 {
    font-size: 14.1px;
    line-height: 22.53px;
  }

  .author-info p {
    font-size: 11.5px;
    line-height: 18.43px;
  }

  /* Footer */
  .footer {
    padding: 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
    padding-top: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-logo {
    width: 100px;
  }

  .footer-tagline {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-top .footer-column:last-child {
    grid-column: span 2;
  }

  .social-link {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-bottom: 40px;
  }

  .footer-legal {
    justify-content: center;
  }

  /* Page hero */
  .page-hero {
    min-height: 520px;
  }

  .page-hero-title {
    font-size: 46px;
  }
}

@media (max-width: 768px) {

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Page hero */
  .page-hero {
    min-height: 420px;
  }

  .page-hero-inner {
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .page-hero-title {
    font-size: 32px;
  }

  .page-hero-desc {
    font-size: 14px;
  }
}