/* =========================================================
   THE HANDYGOAN — FULL MOBILE UI FIX
   ========================================================= */

/* -----------------------------
   GLOBAL SAFETY
------------------------------ */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-width: 0;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  padding-top: 0 !important;
}

/* stop random desktop overflow */
.container,
.container-fluid,
.row,
[class*="col-"] {
  min-width: 0;
}

/* bootstrap row overflow guard */
.row {
  --bs-gutter-x: 1.5rem;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
}

/* page banner spacing */
.page-banner,
section.page-banner,
.py-5.page-banner,
.blog-hero.page-banner {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* -----------------------------
   SHARED HG UTILITIES
------------------------------ */
.hg-container,
.hg-aud-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hg-section {
  padding: 70px 0;
}

.hg-bg-off {
  background: #f6f3f0;
  padding: 70px 0 80px;
}

.hg-orange,
.hg-accent {
  color: #f97316;
}

.hg-outline {
  -webkit-text-stroke: 2px #111;
  color: transparent;
}

.hg-eyebrow-sm {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
  display: block;
}

.hg-big-title {
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #111;
}

.hg-h2 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 12px;
}

.hg-p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 18px;
}

/* -----------------------------
   BUTTONS
------------------------------ */
.hg-btn-primary,
.hg-btn-white,
.hg-btn-dark-outline,
.hg-topsol2__btn,
.hg-btn,
.hg-btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.hg-btn-primary {
  padding: 12px 22px;
  background: #f97316;
  color: #fff !important;
  border: none;
}

.hg-btn-primary:hover {
  background: #ea580c;
  color: #fff !important;
}

.hg-btn-white {
  padding: 12px 22px;
  background: #fff;
  color: #111 !important;
}

.hg-btn-dark-outline {
  padding: 12px 22px;
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.45);
}

.hg-btn,
.hg-btn2 {
  padding: 12px 20px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
}

/* -----------------------------
   HERO
------------------------------ */
.hg-hero {
  position: relative;
  padding: 54px 0 26px;
  overflow: hidden;
  background: #fff;
}

.hg-hero__wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hg-hero__title {
  margin: 14px 0 12px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.3vw, 58px);
  color: #0b1220;
}

.hg-hero__title span {
  color: #f97316;
}

.hg-hero__desc {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  max-width: 54ch;
}

.hg-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  align-items: center;
}

.hg-hero__media {
  border-radius: 22px;
  border: 1px solid rgba(230,234,242,.95);
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(17,24,39,.12);
  background: #f8fafc;
}

.hg-hero__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* -----------------------------
   SPLIT / STATS
------------------------------ */
.hg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hg-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hg-stat-box {
  background: #fff;
  border: 1px solid rgba(230,234,242,.95);
  border-radius: 20px;
  padding: 24px 18px;
  box-shadow: 0 10px 30px rgba(17,24,39,.07);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hg-stat-num {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1;
}

.hg-stat-lbl {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-top: 6px;
}

/* -----------------------------
   VIDEO SECTION
------------------------------ */
.hg-video-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.hg-video-h2 {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #111;
  margin: 8px 0 12px;
}

.hg-video-p {
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 18px;
}

.hg-video-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.hg-video-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 11px;
}

.hg-vl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  flex-shrink: 0;
  margin-top: 5px;
}

.yt-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
  box-shadow: 0 18px 44px rgba(15,23,42,.12);
  aspect-ratio: 16 / 9;
}

.yt-video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* -----------------------------
   TOP SOLUTIONS
------------------------------ */
/* =========================
   TOP SOLUTIONS RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 991.98px){
  .hg-topsol2{
    padding: 44px 0 !important;
  }

  .hg-topsol2__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 0 18px !important;
  }

  .hg-topsol2__card,
  .hg-topsol2__card:nth-child(1),
  .hg-topsol2__card:nth-child(2),
  .hg-topsol2__card:nth-child(3),
  .hg-topsol2__card:nth-child(4),
  .hg-topsol2__card:nth-child(5){
    grid-column: span 1 !important;
    min-height: 260px !important;
  }

  .hg-topsol2__content{
    left: 16px !important;
    right: 16px !important;
    bottom: 14px !important;
  }

  .hg-topsol2__content h3{
    font-size: 18px !important;
  }

  .hg-topsol2__content p{
    font-size: 13px !important;
  }
}

/* Mobile */
@media (max-width: 767.98px){
  .hg-topsol2{
    padding: 40px 0 !important;
  }

  .hg-topsol2__head{
    margin-bottom: 24px !important;
    padding: 0 16px !important;
  }

  .hg-topsol2__grid{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 0 16px !important;
  }

  .hg-topsol2__card,
  .hg-topsol2__card:nth-child(1),
  .hg-topsol2__card:nth-child(2),
  .hg-topsol2__card:nth-child(3),
  .hg-topsol2__card:nth-child(4),
  .hg-topsol2__card:nth-child(5){
    grid-column: span 1 !important;
    min-height: 240px !important;
    border-radius: 14px !important;
  }

  .hg-topsol2__card img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hg-topsol2__content{
    left: 16px !important;
    right: 16px !important;
    bottom: 14px !important;
  }

  .hg-topsol2__content h3{
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .hg-topsol2__content p{
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}
/* -----------------------------
   TESTIMONIALS / CLIENTS / CTA
------------------------------ */
.hg-testi-wrap {
  overflow: hidden;
}

.hg-testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 12px 20px 24px;
  scrollbar-width: none;
}

.hg-testi-track::-webkit-scrollbar {
  display: none;
}

.hg-testi-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(230,234,242,.9);
  border-radius: 20px;
  padding: 24px 22px;
  box-shadow: 0 12px 30px rgba(17,24,39,.07);
}

.hg-clients-strip {
  padding: 40px 20px;
  background: #fafafa;
  text-align: center;
  overflow: hidden;
}

.hg-clients-track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.hg-client-logo img {
  height: 90px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: .7;
  filter:None;
}

.hg-cta-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  padding: 64px 80px;
}

.hg-cta-h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}

.hg-cta-p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  margin-bottom: 22px;
}

.hg-cta-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* -----------------------------
   ABOUT PAGE HELPERS
------------------------------ */
.media-card {
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 44px rgba(15,23,42,.10);
  position: relative;
  height: 100%;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.corp-card {
  background: #fff;
  border: 1px solid rgba(230,234,242,.95);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15,23,42,.08);
}

.cta-strip {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  padding: 52px 0;
  color: #fff;
}

/* -----------------------------
   NAVBAR MOBILE FIX
------------------------------ 
@media (max-width: 991px) {
  .navbar .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .navbar-brand {
    max-width: calc(100% - 56px);
  }

  .main-logo {
    max-height: 42px !important;
    width: auto !important;
  }

  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 8px 10px !important;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(15,23,42,.08);
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 2px !important;
  }

  .navbar .nav-link {
    width: 100%;
    padding: 12px 8px !important;
  }

  .nav-actions {
    width: 100%;
    order: 3;
    padding-bottom: 8px;
  }

  .nav-search {
    width: 100% !important;
    max-width: 100% !important;
  }

  .navbar .dropdown-menu.mega-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    margin-top: 6px !important;
    border-radius: 14px !important;
    max-height: 65vh;
    overflow-y: auto;
  }

  .mega-inner {
    padding: 14px !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .mega-head {
    position: static !important;
  }

  .mega-grid .col-lg-4 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }
}*/

/* -----------------------------
   TABLET
------------------------------ 
@media (max-width: 991px) {
  .hg-hero__wrap {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .hg-split {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .hg-video-section {
    grid-template-columns: 1fr !important;
    padding: 50px 20px !important;
    gap: 28px;
  }

  .hg-topsol2__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }

  .hg-cta-section {
    grid-template-columns: 1fr !important;
    padding: 48px 32px !important;
    gap: 20px;
    text-align: center;
  }

  .hg-cta-right {
    justify-content: center;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .hg-section,
  .hg-topsol2 {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
}*/

/* -----------------------------
   MOBILE
------------------------------ */
@media (max-width: 767px) {
  body {
    padding-top: 0 !important;
  }

  .page-banner,
  section.page-banner,
  .py-5.page-banner,
  .blog-hero.page-banner {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }

  .container,
  .hg-container,
  .hg-aud-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hg-section,
  .hg-bg-off {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .hg-hero {
    padding: 28px 0 20px !important;
  }

  .hg-hero__wrap {
    gap: 20px !important;
  }

  .hg-hero__left,
  .hg-hero__right {
    width: 100%;
  }

  .hg-hero__title {
    font-size: clamp(26px, 7.5vw, 38px) !important;
    margin: 10px 0 !important;
  }

  .hg-hero__desc {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
    max-width: 100% !important;
  }

  .hg-hero__cta {
    flex-direction: column !important;
    gap: 10px !important;
  }

  .hg-btn,
  .hg-btn2,
  .hg-btn-primary,
  .hg-btn-white,
  .hg-btn-dark-outline,
  .hg-topsol2__btn {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hg-hero__img {
    height: 220px !important;
    border-radius: 14px;
  }

  .hg-stat-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .hg-stat-box {
    padding: 16px 10px !important;
    border-radius: 14px !important;
  }

  .hg-stat-num {
    font-size: 26px !important;
  }

  .hg-stat-lbl {
    font-size: 11px !important;
  }

  .hg-big-title {
    font-size: clamp(26px, 7.5vw, 42px) !important;
  }

  .hg-h2,
  .hg-video-h2,
  .hg-topsol2__title,
  .hg-cta-h2 {
    font-size: clamp(22px, 6.6vw, 34px) !important;
  }

  .hg-video-section {
    padding: 36px 16px !important;
    gap: 20px !important;
  }

  .yt-video-card {
    min-height: 200px !important;
    border-radius: 14px !important;
  }

  .hg-topsol2 {
    padding: 40px 0 !important;
  }

  .hg-topsol2__head {
    margin-bottom: 24px !important;
    padding: 0 16px !important;
  }

  .hg-topsol2__grid {
    grid-template-columns: 1fr !important;
    padding: 0 16px !important;
    gap: 14px !important;
  }

  .hg-topsol2__card {
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .hg-testi-track {
    padding: 10px 16px 20px !important;
    gap: 14px !important;
  }

  .hg-testi-card {
    flex: 0 0 82vw;
    max-width: 340px;
  }

  .hg-clients-strip {
    padding: 28px 16px !important;
  }

  .hg-clients-track {
    gap: 18px !important;
  }

  .hg-client-logo img {
    height: 36px !important;
    max-width: 80px !important;
  }

  .hg-cta-section {
    padding: 40px 20px !important;
  }

  .hg-cta-right {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .about-page section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .about-page .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .about-premium-top .row,
  .about-dark-strip .row,
  .cta-strip .row {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .about-premium-top .col-lg-7,
  .about-premium-top .col-lg-5,
  .about-page .col-lg-5,
  .about-page .col-lg-7,
  .about-page .col-lg-4,
  .about-dark-strip .col-lg-8,
  .about-dark-strip .col-lg-4,
  .cta-strip .col-lg-8,
  .cta-strip .col-lg-4 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .about-main-card,
  .about-story-card,
  .about-mission-card,
  .about-orange-card,
  .about-dark-strip {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .about-main-title {
    font-size: clamp(22px, 6vw, 32px) !important;
    line-height: 1.15 !important;
  }

  .about-main-text,
  .about-story-card p,
  .about-mission-card p,
  .about-dark-strip p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .about-feature-mini-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 16px !important;
  }

  .mini-feature-card {
    padding: 14px !important;
  }

  .about-page .col-md-6.col-lg-3 {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }

  .media-card img {
    min-height: 240px !important;
    height: 260px !important;
  }

  .cta-strip {
    padding: 36px 20px !important;
    text-align: center;
  }

  .cta-strip .text-lg-end {
    text-align: center !important;
  }

  .cta-strip .btn {
    width: 100%;
    margin: 0 !important;
  }

  .cta-strip .me-2 {
    margin-right: 0 !important;
  }
}

/* -----------------------------
   SMALL PHONES
------------------------------ */
@media (max-width: 480px) {
  .hg-hero__title,
  .hg-big-title {
    font-size: 24px !important;
  }

  .hg-hero__desc {
    font-size: 13px !important;
  }

  .hg-stat-grid,
  .about-stats-grid,
  .dark-strip-points,
  .about-page .col-md-6.col-lg-3 {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .nav-search {
    display: none !important;
  }

  .hg-testi-card {
    flex: 0 0 90vw;
  }

  .hg-cta-section {
    padding: 36px 16px !important;
  }
}
/* ====================================
   PREMIUM MOBILE NAVBAR
==================================== 

@media (max-width:991px){

.navbar{
background:#fff;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
padding:10px 16px;
}

.navbar-brand img{
height:40px;
}

.navbar-toggler{
border:none;
font-size:24px;
}

.navbar-collapse{
background:#fff;
border-radius:16px;
padding:18px;
margin-top:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
*/

/* menu items */

.navbar-nav .nav-link{
font-size:16px;
font-weight:600;
padding:14px 10px;
border-bottom:1px solid #f2f2f2;
color:#222;
}

.navbar-nav .nav-link:last-child{
border-bottom:none;
}

.navbar-nav .nav-link:hover{
color:#ff6a00;
}

/* smoother menu animation */

.navbar-collapse{
transition:all .3s ease;
}

@media (max-width: 767px){

  .hg-hero{
    min-height: auto !important;
    padding-top: 12px !important;
    padding-bottom: 20px !important;
  }

  .hg-hero__wrap{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    align-items: start !important;
  }

  .hg-hero__left,
  .hg-hero__right,
  .hg-hero__media{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hg-hero__img{
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10;
    object-fit: cover !important;
    display: block !important;
    transform: none !important;
  }

  .hg-hero__cta{
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .hg-btn,
  .hg-btn2{
    width: 100% !important;
  }

  /* MOBILE NAV ICON FIX */
  .hg-mobile-top-actions{
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .hg-mobile-top-admin,
  .navbar-toggler{
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border-radius: 12px !important;
  }

  .hg-mobile-top-admin i,
  .navbar-toggler i,
  .navbar-toggler-icon{
    font-size: 18px !important;
  }

  .main-logo{
    max-height: 42px !important;
    width: auto !important;
  }

 /* TOP SOLUTIONS - MOBILE HORIZONTAL SCROLL */
@media (max-width: 767.98px){

  .hg-topsol2{
    padding: 40px 0 !important;
  }

  .hg-topsol2__head{
    margin-bottom: 20px !important;
    padding: 0 16px !important;
  }

  .hg-topsol2__grid{
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 14px !important;
    padding: 0 16px 6px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .hg-topsol2__grid::-webkit-scrollbar{
    display: none;
  }

  .hg-topsol2__card,
  .hg-topsol2__card:nth-child(1),
  .hg-topsol2__card:nth-child(2),
  .hg-topsol2__card:nth-child(3),
  .hg-topsol2__card:nth-child(4),
  .hg-topsol2__card:nth-child(5){
    flex: 0 0 82% !important;
    min-width: 82% !important;
    min-height: 240px !important;
    height: 240px !important;
    grid-column: unset !important;
    border-radius: 18px !important;
    scroll-snap-align: start;
  }

  .hg-topsol2__card img{
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .hg-topsol2__content{
    left: 16px !important;
    right: 16px !important;
    bottom: 14px !important;
  }

  .hg-topsol2__content h3{
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }

  .hg-topsol2__content p{
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin-bottom: 8px !important;
  }

  .hg-topsol2__link{
    font-size: 13px !important;
  }
}

  /* ABOUT PAGE IMAGE FIX */
  .media-card{
    overflow: hidden !important;
    border-radius: 24px !important;
  }

  .media-card img{
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    aspect-ratio: 4 / 5;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }

}
/* =========================
   HERO RESPONSIVE TUNING
========================= */
@media (min-width: 992px){
  .hg-hero{
    padding-top: 8px !important;
    padding-bottom: 18px !important;
  }

  .hg-hero__wrap{
    gap: 24px !important;
    align-items: center !important;
  }

  .hg-hero__img{
    height: 380px !important;
  }
}

@media (max-width: 991.98px){
  .hg-hero{
    padding-top: 18px !important;
    padding-bottom: 20px !important;
  }

  .hg-hero__wrap{
    gap: 20px !important;
  }

  .hg-hero__img{
    height: 300px !important;
  }
}

@media (max-width: 767.98px){
  .hg-hero{
    padding-top: 14px !important;
    padding-bottom: 18px !important;
  }

  .hg-hero__img{
    height: 220px !important;
  }
}