:root {
  --primary-900: #06263e;
  --primary-800: #0b3b5f;
  --primary-700: #125684;
  --primary-600: #1f74aa;
  --primary-500: #2b8fca;
  --accent-500: #f2a23a;
  --accent-600: #db8f2c;
  --surface-0: #fcfdff;
  --surface-1: #f3f8fc;
  --surface-2: #e4eef6;
  --ink-900: #102133;
  --ink-700: #395069;
  --ink-500: #61778f;
  --line: #d6e2ee;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 8px 20px rgba(8, 36, 62, 0.09);
  --shadow-md: 0 20px 44px rgba(11, 48, 82, 0.12);
  --focus: 0 0 0 0.22rem rgba(43, 143, 202, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink-900);
  background: radial-gradient(circle at 8% 2%, rgba(43, 143, 202, 0.15), transparent 28%),
    radial-gradient(circle at 92% 6%, rgba(242, 162, 58, 0.11), transparent 34%),
    linear-gradient(180deg, #f9fcff 0%, #f3f7fb 38%, #f7fbff 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(16, 33, 51, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 33, 51, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
}

body.mb-splash-lock {
  overflow: hidden;
}

.mb-splash-screen {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: radial-gradient(circle at 20% 14%, rgba(76, 160, 216, 0.24), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(242, 162, 58, 0.2), transparent 30%),
    linear-gradient(145deg, #051e31 0%, #0a304e 52%, #0f4d78 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.mb-splash-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mb-splash-inner {
  width: min(92vw, 380px);
  padding: 2rem 1.4rem 1.6rem;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(216, 235, 255, 0.24);
  background: rgba(4, 23, 37, 0.66);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
  color: #fff;
  backdrop-filter: blur(8px);
  animation: mb-splash-rise 0.5s ease both;
}

.mb-splash-logo {
  width: 96px;
  max-width: 45%;
  margin: 0 auto 0.9rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.mb-splash-title {
  margin: 0;
  font-size: 1.26rem;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.mb-splash-subtitle {
  margin: 0.52rem 0 1rem;
  color: rgba(233, 246, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
}

.mb-splash-progress {
  width: min(240px, 78%);
  margin: 0 auto 0.95rem;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
}

.mb-splash-progress span {
  width: 38%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, #8dd8ff 0%, #ffffff 100%);
  animation: mb-splash-load 1.3s ease-in-out infinite;
}

.mb-splash-spinner {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.24);
  border-top-color: #ffffff;
  display: inline-block;
  animation: mb-splash-spin 0.88s linear infinite;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar .nav-link,
.btn,
.text-uppercase {
  font-family: "Sora", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

p,
li,
a,
label,
input,
textarea,
select,
small {
  letter-spacing: 0.01em;
}

a {
  color: var(--primary-700);
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--primary-800);
  text-decoration: none;
}

::selection {
  color: #fff;
  background: var(--primary-500);
}

.site-main {
  min-height: 62vh;
}

section {
  padding: 68px 0;
}

.section-sm {
  padding: 44px 0;
}

.mb-coming-wrap {
  padding: 56px 0 72px;
}

.mb-coming {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 86, 132, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 248, 255, 0.95));
  box-shadow: var(--shadow-md);
}

.mb-coming-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.78rem;
  border-radius: 999px;
  background: rgba(31, 116, 170, 0.1);
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mb-coming-title {
  margin: 0.9rem 0 0.8rem;
  font-size: clamp(1.6rem, 3.3vw, 2.2rem);
  line-height: 1.28;
}

.mb-coming-desc {
  margin-bottom: 1.1rem;
  color: var(--ink-700);
  font-size: 1rem;
}

.mb-coming-list {
  margin: 0 0 1.3rem;
  padding-left: 1.15rem;
  color: var(--ink-700);
}

.mb-coming-list li {
  margin-bottom: 0.42rem;
}

.mb-coming-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.mb-coming-art {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(18, 86, 132, 0.16);
  background: linear-gradient(180deg, #f6fbff 0%, #e8f2fb 100%);
  padding: 1.1rem;
  overflow: hidden;
}

.mb-coming-art::before,
.mb-coming-art::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(43, 143, 202, 0.14);
}

.mb-coming-art::before {
  width: 170px;
  height: 170px;
  top: -90px;
  right: -55px;
}

.mb-coming-art::after {
  width: 95px;
  height: 95px;
  bottom: -46px;
  left: -26px;
}

.mb-coming-svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.mb-coming-caption {
  margin-top: 0.85rem;
  color: var(--ink-700);
  font-weight: 700;
  font-size: 0.95rem;
}

.content-hub {
  padding: 42px 0 54px;
}

.content-tools.card {
  border-radius: 14px;
  border: 1px solid rgba(17, 85, 132, 0.14);
  box-shadow: var(--shadow-sm);
}

.content-tools-title {
  color: var(--ink-700);
}

.content-feature {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 85, 132, 0.14);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.content-feature-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.content-feature-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-feature-body h2 {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  margin-bottom: 0.7rem;
}

.content-feature-body p {
  color: var(--ink-700);
}

.content-card {
  border-radius: 14px;
  border: 1px solid rgba(17, 85, 132, 0.14);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(10, 50, 90, 0.14);
}

.content-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #e9f1f8;
}

.content-meta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--primary-700);
  text-transform: uppercase;
}

.content-article.card {
  border-radius: 16px;
  border: 1px solid rgba(17, 85, 132, 0.14);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.content-article-image {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  background: #e9f1f8;
}

.content-body {
  color: var(--ink-800);
  line-height: 1.75;
}

.content-body h2,
.content-body h3,
.content-body h4 {
  margin-top: 1.2rem;
  margin-bottom: 0.7rem;
}

.content-body p:last-child {
  margin-bottom: 0;
}

.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.content-tags span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  background: rgba(31, 116, 170, 0.12);
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 700;
}

.pre-red,
.bg-red,
.hr-red,
.count-box-red {
  color: var(--primary-700) !important;
  background-color: transparent !important;
  border-color: var(--primary-700) !important;
}

.hr-dark,
.hr-red {
  width: 72px;
  border-top-width: 3px;
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
}

.hus-nav-top {
  background: linear-gradient(130deg, var(--primary-900), var(--primary-700));
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hus-nav-top .nav-item {
  margin-left: 0.1rem;
}

.hus-nav-top .top-tagline {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.92;
}

.hus-nav-top .top-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.33rem 0.72rem;
}

.hus-nav-top .top-link:hover,
.hus-nav-top .top-link.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hus-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 67, 107, 0.08);
  box-shadow: var(--shadow-sm);
}

.hus-nav .navbar-brand img {
  max-width: 126px;
  filter: drop-shadow(0 5px 10px rgba(9, 52, 86, 0.15));
}

.export-badge {
  color: var(--primary-700);
  font-size: 12px;
  letter-spacing: 0.07em;
  border: 1px solid rgba(31, 116, 170, 0.18);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  background: #fff;
  white-space: nowrap;
}

.hus-nav .navbar-collapse {
  flex-grow: 1 !important;
  justify-content: flex-end;
}

.search-form {
  position: relative;
  margin-left: auto;
}

.search-form .form-control {
  width: 100%;
  min-width: 420px !important;
  height: 44px;
  border: 1px solid rgba(18, 86, 132, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-900);
  box-shadow: 0 4px 16px rgba(10, 48, 80, 0.06);
  padding: 0.75rem 1rem;
}

.search-form .form-control:focus {
  border-color: var(--primary-500);
  box-shadow: var(--focus);
}

.search-form .btn {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 36px;
  width: 36px;
  min-width: 36px;
  border-radius: 999px;
  border: 0;
  padding: 0 !important;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: #fff;
}

.search-auto-complete {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hus-nav .form-inline {
  background: transparent !important;
  border: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.nav-contact {
  margin-left: 0.75rem;
  width: 100%;
  max-width: fit-content;
}

.nav-contact-item {
  margin-bottom: 0.5rem !important;
}

.nav-contact .media-body {
  white-space: nowrap;
}

.nav-contact .media-body a {
  color: var(--ink-900) !important;
  font-size: 13px;
  font-weight: 700;
}

.nav-contact-fa {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 116, 170, 0.1);
  color: var(--primary-700);
  font-size: 13px;
  flex-shrink: 0;
}

.nav-contact-whatsapp .nav-contact-fa {
  background: rgba(37, 211, 102, 0.15);
  color: #119a4f;
}

.hus-nav-bottom {
  background: linear-gradient(90deg, var(--primary-800), var(--primary-700));
  border-bottom: 0;
  margin-bottom: 0 !important;
}

.hus-nav-bottom .nav-link {
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  padding: 0.58rem 0.72rem !important;
}

.hus-nav-bottom .nav-link:hover,
.hus-nav-bottom .nav-link.is-active,
.hus-nav-bottom .show > .nav-link {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.megamenu {
  margin-right: 0.9rem;
  background: rgba(4, 20, 33, 0.24);
  border-radius: 8px;
}

.megamenu .dropdown-menu {
  background: none;
  border: none;
  width: 100%;
}

.megamenu .dropdown-menu .container {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border: 1px solid rgba(15, 54, 88, 0.12);
  box-shadow: var(--shadow-md);
}

.bg-gray {
  background-color: rgba(28, 88, 132, 0.08);
}

.banner-slider {
  margin-top: 0 !important;
}

.banner-slider .carousel-inner {
  min-height: clamp(240px, 44vw, 620px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hus-carousel .carousel-item {
  max-height: none;
  position: relative;
}

.hus-carousel .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 22, 36, 0.23), rgba(4, 22, 36, 0.02));
  pointer-events: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  border-radius: 999px;
  border: 0;
  background-color: rgba(6, 38, 62, 0.74);
  width: 40px;
  height: 40px;
}

.tab-filter {
  background: transparent;
}

.nav-fill .nav-item {
  background: #fff !important;
  color: var(--ink-900);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 142px;
  margin: 8px;
  padding: 12px;
  box-shadow: 0 6px 16px rgba(12, 49, 82, 0.08);
}

.nav-fill .nav-item:hover,
.nav-fill .nav-item:focus,
.nav-fill .active {
  background: linear-gradient(145deg, var(--primary-700), var(--primary-600)) !important;
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
}

.nav-fill a img {
  max-height: 28px;
  margin-bottom: 8px;
}

.tab-filter nav > div a.nav-item.nav-link.active:after {
  display: none;
}

.card,
.list-col .col-child,
.product-item,
.product-card,
.related-p .item.card,
.modal-content,
.classic-tabs,
.filter-group {
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 66, 106, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.list-col .col-child {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.55rem;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.list-col .col-child:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(8, 44, 76, 0.16);
}

.list-col .col-child p {
  margin: 0.45rem 0 0.7rem;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  min-height: 42px;
  color: var(--ink-900);
}

.cat-img {
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fbfdff, #f0f6fb);
  border: 1px solid var(--surface-2);
  border-radius: 12px;
}

.cat-img img,
.product-image {
  max-height: 142px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.list-col .col-child:hover .cat-img img {
  transform: scale(1.04);
}

.col-child-btn {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.48rem;
}

.btn,
.btn-primary,
.btn-danger,
.btn-success,
.btn-info,
.btn-warning,
.btn-outline-danger,
.btn-light {
  border-radius: 999px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 14px rgba(17, 71, 112, 0.12);
}

.btn-primary,
.btn-danger,
.btn-warning,
.custom-blue-btn,
.btn-group-a {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700)) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-danger:hover,
.btn-warning:hover,
.custom-blue-btn:hover,
.btn-group-a:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800)) !important;
}

.btn-light,
.btn-group-b {
  background: #fff !important;
  color: var(--primary-700) !important;
  border: 1px solid rgba(23, 91, 142, 0.23) !important;
}

.btn-light:hover,
.btn-group-b:hover {
  background: #edf6fd !important;
}

.btn.btn-sm {
  padding: 0.42rem 0.9rem !important;
  width: auto;
}

.table,
.form-control,
.custom-select {
  color: var(--ink-900);
}

.form-control,
.custom-select,
textarea {
  border-radius: 10px;
  border-color: #c9d7e4;
}

.form-control:focus,
.custom-select:focus,
textarea:focus {
  border-color: var(--primary-500);
  box-shadow: var(--focus);
}

.section-pagetop {
  background: linear-gradient(180deg, rgba(20, 95, 146, 0.1), rgba(20, 95, 146, 0.02));
  border-bottom: 1px solid rgba(20, 95, 146, 0.11);
  padding: 32px 0 18px;
}

.section-pagetop .title-page {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin-bottom: 0.42rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0.35rem 0 0;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: var(--ink-700);
  font-weight: 600;
}

.filter-group .card-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.filter-group .title {
  font-weight: 700;
}

.category-link {
  color: var(--ink-800);
  font-weight: 600;
  text-decoration: none !important;
}

.category-link:hover {
  color: var(--primary-700) !important;
}

.category-link-active {
  color: var(--primary-700) !important;
  font-weight: 800;
}

.category-toolbar .category-apply-btn,
.category-toolbar .category-reset-btn {
  min-width: 118px;
}

.category-toolbar .category-reset-btn {
  background: #fff !important;
  border: 1px solid var(--primary-600) !important;
  color: var(--primary-700) !important;
  box-shadow: none;
}

.category-toolbar .category-reset-btn:hover,
.category-toolbar .category-reset-btn:focus {
  background: #e9f4ff !important;
  border-color: var(--primary-700) !important;
  color: var(--primary-800) !important;
}

.custom-checkbox .custom-control-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--primary-700);
  background-color: var(--primary-700);
}

.badge,
.badge-pill {
  border-radius: 999px;
  background: rgba(13, 84, 131, 0.1);
  color: var(--primary-700);
}

.page-link {
  color: var(--primary-700);
  border-radius: 8px;
  margin: 0 2px;
  border-color: #ccdae8;
}

.page-item.active .page-link {
  background-color: var(--primary-700);
  border-color: var(--primary-700);
}

.classic-tabs .nav-link {
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--ink-700);
  font-weight: 700;
}

.classic-tabs .nav-link.active,
.classic-tabs .nav-link:hover {
  color: var(--primary-700);
  border-bottom-color: var(--primary-700);
}

.classic-tabs .tab-content {
  background: #fff;
  padding: 1.2rem;
}

.related-p.row {
  margin-left: 0;
  margin-right: 0;
}

.related-p .owl-item {
  display: flex;
}

.related-p .item.card {
  width: 100%;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
}

.related-p .view img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #fff;
}

.related-p .pt-4 {
  padding: 1rem 0.9rem 0.42rem !important;
  min-height: 76px;
}

.related-p .pt-4 p {
  margin: 0;
  line-height: 1.4;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.contact-page .contact-input {
  border: 1px solid #b8ccdf;
  border-radius: 10px;
  min-height: 44px;
}

.contact-page .contact-input:focus {
  border-color: var(--primary-500);
  box-shadow: var(--focus);
}

.contact-page .contact-map-wrap {
  border-radius: var(--radius-md);
  border: 1px solid #d4e3ef;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.modal-content {
  border-radius: var(--radius-md) !important;
  border: 1px solid #d8e4ef !important;
}

.modal-header {
  border-bottom: 1px solid #e4edf5;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.loading {
  width: 60px !important;
}

.footer {
  background: linear-gradient(180deg, #0a2438 0%, #081d2e 100%);
  color: #ecf5ff;
  border-top: 1px solid rgba(125, 185, 235, 0.2);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  top: -260px;
  right: -140px;
  background: radial-gradient(circle, rgba(49, 146, 206, 0.22), transparent 70%);
}

.footer .text-uppercase {
  color: #fff;
  letter-spacing: 0.07em;
  font-size: 13px;
}

.footer p,
.footer li {
  color: rgba(236, 245, 255, 0.9);
}

.footer a {
  color: #d5eaff;
}

.footer a:hover {
  color: #fff;
}

.footer .partnrs img {
  max-width: 74px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid rgba(181, 213, 240, 0.25);
  background: #fff;
  padding: 5px;
}

.footer-copyright {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-900);
  font-weight: 600;
  border-top: 1px solid rgba(15, 66, 107, 0.08);
}

.footer-copyright p {
  font-size: 13px;
}

.footer-copyright a {
  color: var(--primary-700);
}

@keyframes mb-splash-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes mb-splash-rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes mb-splash-load {
  0% {
    transform: translateX(-130%);
  }
  60% {
    transform: translateX(160%);
  }
  100% {
    transform: translateX(160%);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .banner-slider,
  .section-pagetop .container,
  .site-main section > .container,
  .list-col .col-child,
  .related-p .item.card {
    animation: rise 0.55s ease both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mb-splash-inner,
  .mb-splash-spinner,
  .mb-splash-progress span {
    animation: none !important;
  }
}

@media (max-width: 1199.98px) {
  .search-form .form-control {
    min-width: 320px !important;
  }

  .hus-nav .navbar-brand img {
    max-width: 112px;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    position: static;
  }

  .search-form .form-control {
    min-width: 100% !important;
  }

  .nav-contact {
    margin: 0.65rem 0 0;
  }

  .nav-contact-item {
    justify-content: flex-start !important;
  }

  .megamenu {
    margin-right: 0;
    background: transparent;
  }

  .hus-nav-bottom .nav-link {
    font-size: 12px !important;
  }

  .content-feature-image {
    min-height: 240px;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 44px 0;
  }

  .section-sm {
    padding: 24px 0;
  }

  .hus-nav-top {
    display: none;
  }

  .hus-nav {
    box-shadow: none;
  }

  .export-badge {
    display: none !important;
  }

  .search-form .form-control {
    min-width: 240px !important;
    height: 40px;
    font-size: 12px;
  }

  .search-form .btn {
    height: 32px;
    width: 32px;
  }

  .navbar-nav .dropdown-menu {
    border-radius: 12px;
  }

  .banner-slider .carousel-inner {
    min-height: 24vh;
    max-height: 34vh;
    border-radius: 0;
  }

  .nav-fill {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .nav-fill .nav-item {
    margin: 4px;
    width: 124px;
    min-width: 124px;
  }

  .cat-img {
    min-height: 138px;
  }

  .cat-img img,
  .product-image {
    max-height: 116px;
  }

  .list-col .col-child p {
    min-height: 0;
    font-size: 13px;
  }

  .footer-copyright .container {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
  }

  .mb-coming {
    padding: 1.4rem;
  }

  .mb-coming-wrap {
    padding: 38px 0 52px;
  }

  .mb-coming-title {
    font-size: 1.45rem;
  }

  .content-hub {
    padding: 26px 0 40px;
  }

  .content-feature-image,
  .content-card-image {
    height: 200px;
  }

  .content-feature-body {
    padding: 1rem;
  }

  .mb-splash-inner {
    padding: 1.6rem 1.2rem 1.35rem;
  }

  .mb-splash-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .w-50 {
    width: 100% !important;
  }

  .hus-nav .navbar-brand img {
    max-width: 96px;
  }

  .search-form .form-control {
    min-width: 215px !important;
  }

  .section-pagetop {
    padding-top: 24px;
  }

  .content-tools .form-inline {
    width: 100%;
  }

  .content-tools .form-control {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0.5rem;
  }

  .content-tools .btn {
    margin-left: 0 !important;
    margin-right: 0.4rem;
  }

  .footer {
    margin-top: 1.25rem !important;
  }
}
