@charset "UTF-8";
/* ===========================
   COLOR VARIABLES
=========================== */
/* Brand Colors */
/* Text Colors */
/* Background Colors */
/* Card backgrounds */
/* Accent Colors */
/* Glass & Overlay */
/* ===========================
   TYPOGRAPHY
=========================== */
/* Font Weights */
/* ===========================
   SPACING & LAYOUT
=========================== */
/* Border Radius */
/* Spacing */
/* Layout */
/* Canonical page container — single source of truth for horizontal
   alignment across every section/page. Tweak these to shift all
   left/right gutters and content width site-wide.
   max-width is wide so content fills large/wide monitors instead of
   leaving big empty side margins; below this width it goes edge-to-edge
   minus the gutter. */
/* ===========================
   HERO SECTION VARIABLES
=========================== */
/* Hero Typography */
/* Hero Spacing */
/* Hero Colors */
/* Hero Button */
/* Hero Images */
/* ===========================
   TRANSITIONS & ANIMATIONS
=========================== */
/* ===========================
   BREAKPOINTS
=========================== */
/* ===========================
   LEGACY VARIABLES (keeping for backward compatibility)
=========================== */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

/* ===========================
   CUSTOM FONTS
=========================== */
* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Ubuntu", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background-size: 30% auto, cover;
  color: #e8e6e5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  font-size: 16px;
  background-color: #0E0E0E;
}

body > main {
  flex: 1 0 auto;
}

body > .footer-section {
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.container {
  margin-top: 40px;
}

/* Global Mobile Adjustments */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
.highlight {
  color: #F47923 !important;
}

/* Skeleton Loading Effect */
.skeleton {
  background-color: #191919;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.05) 20%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0));
  background-size: 200% 100%;
  animation: skeleton-shimmer 2s infinite;
  border-radius: 4px;
  display: inline-block;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.site-header {
  max-width: 100vw;
  position: sticky;
  top: 0;
  z-index: 9999 !important;
  background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}
.site-header .header-inner {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  align-items: center;
  gap: 35px;
  height: 80px;
}
@media (max-width: 768px) {
  .site-header .header-inner {
    height: 64px;
    padding-left: 16px;
    padding-right: 16px;
    justify-content: space-between;
    position: relative;
  }
}
@media (max-width: 768px) {
  .site-header .desktop-only {
    display: none !important;
  }
}
.site-header .mobile-only {
  display: none !important;
}
@media (max-width: 768px) {
  .site-header .mobile-only {
    display: flex !important;
  }
  .site-header .mobile-only.social-icons {
    display: block !important;
  }
}
.site-header .brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #e8e6e5;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .site-header .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.site-header .brand .brand-logo {
  width: 192px;
  height: 43px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
}
@media (max-width: 768px) {
  .site-header .brand .brand-logo {
    width: 140px;
    height: 32px;
  }
}
.site-header .brand .brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-header .brand .brand-title {
  font-weight: 900;
  letter-spacing: 1px;
  color: #F47923;
  font-size: 24px;
  line-height: 1;
}
.site-header .brand .brand-sub {
  font-size: 13px;
  color: #b7b3b0;
  margin-top: 4px;
}
.site-header .main-nav {
  flex: 1 1 auto;
  font-size: 1rem;
}
.site-header .main-nav ul {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .main-nav ul .d-link {
  color: #b3b3b3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.site-header .main-nav ul .d-link:hover {
  color: #F47923 !important;
}
.site-header .main-nav ul .d-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: #F47923;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}
.site-header .main-nav ul .d-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media (max-width: 768px) {
  .site-header .main-nav {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 70vw;
    height: 100vh;
    background: linear-gradient(180deg, #0b0b0b 0%, #141414 100%) !important;
    z-index: 10001 !important;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.8);
  }
  .site-header .main-nav.open {
    left: 0;
  }
  .site-header .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 1rem 0;
  }
}
.site-header .main-nav .nav-item {
  position: relative;
}
@media (max-width: 768px) {
  .site-header .main-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 0.5rem 2rem;
  }
  .site-header .main-nav .nav-item.login-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .site-header .main-nav .nav-item.login-link a {
    font-size: 1rem;
    padding: 10px;
    justify-content: center;
  }
  .site-header .main-nav .nav-item .mobile-btn-login {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: transparent;
    border: 1px solid #F47923 !important;
    color: #F47923 !important;
    transition: all 0.3s ease;
  }
  .site-header .main-nav .nav-item .mobile-btn-login:hover {
    background-color: #F47923 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(244, 121, 35, 0.3);
  }
  .site-header .main-nav .nav-item.user-info-mobile {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .site-header .main-nav .nav-item.user-info-mobile .user-profile-mobile {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .site-header .main-nav .nav-item.user-info-mobile .mobile-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #F47923;
    object-fit: cover;
  }
  .site-header .main-nav .nav-item.user-info-mobile .user-details-mobile {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .site-header .main-nav .nav-item.user-info-mobile .mobile-user-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    word-break: break-all;
  }
  .site-header .main-nav .nav-item.user-info-mobile .mobile-logout-btn {
    font-size: 0.85rem !important;
    padding: 4px 12px !important;
    color: #F47923 !important;
    text-decoration: none;
    background: rgba(244, 121, 35, 0.1);
    border-radius: 4px;
    width: fit-content !important;
    display: inline-block !important;
  }
  .site-header .main-nav .nav-item.social-icons {
    border-bottom: none;
    margin-top: auto;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}
.site-header .main-nav .nav-item #coursesBtn {
  position: relative;
  padding-right: 30px;
  display: inline-flex;
  align-items: center;
  color: #e8e6e5;
  width: 100%;
  text-align: left;
}
.site-header .main-nav .nav-item #coursesBtn:hover {
  cursor: pointer;
  background-color: #F47923;
}
@media (min-width: 769px) {
  .site-header .main-nav .nav-item #coursesBtn::after {
    content: "";
    position: absolute;
    padding-left: 10px;
    margin-right: 8px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("/assets/images/nav/course-arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media (max-width: 768px) {
  .site-header .main-nav .nav-item #coursesBtn {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 1rem 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}
.site-header .main-nav .nav-item a,
.site-header .main-nav .nav-item .nav-btn {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  padding: 6px 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 150ms ease, background 120ms ease, border-color 120ms ease;
}
@media (max-width: 768px) {
  .site-header .main-nav .nav-item a,
  .site-header .main-nav .nav-item .nav-btn {
    padding: 1.2rem 0;
    width: 100%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
  }
  .site-header .main-nav .nav-item a:hover,
  .site-header .main-nav .nav-item .nav-btn:hover {
    background: transparent;
  }
}
.site-header .main-nav .nav-item a:hover,
.site-header .main-nav .nav-item .nav-btn:hover {
  color: #e8e6e5;
}
.site-header .main-nav .nav-item.spacer {
  flex: 1 1 auto;
  pointer-events: none;
}
.site-header .main-nav .nav-item .labs-pill {
  background: linear-gradient(90deg, #F47923, #F47923);
  padding: 4px 22px;
  border-radius: 6px;
  font-weight: 400;
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.1);
  display: inline-flex;
  align-items: center;
}
.site-header .main-nav .nav-item.cta .btn-outline {
  border: 1px solid #F47923;
  padding: 8px 18px;
  border-radius: 6px;
  color: #e8e6e5;
  font-weight: 400;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}
.site-header .main-nav .nav-item.cta .btn-outline:hover {
  cursor: pointer;
  background-color: #F47923;
}
.site-header .main-nav .nav-item .dropdown {
  position: relative;
  height: 100%;
}
.site-header .main-nav .nav-item .dropdown .btn.a-reg {
  background: transparent;
  border: 1px solid #F47923;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-header .main-nav .nav-item .dropdown .btn.a-reg img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.site-header .main-nav .nav-item .dropdown .btn.a-reg:hover {
  border-color: #F47923;
  color: rgba(255, 255, 255, 0.9);
}
.site-header .main-nav .nav-item .dropdown .btn.a-reg .user-name-text {
  max-width: 120px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: auto;
  min-width: 200px;
  background: #222222;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 2px solid #F47923;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  padding: 12px 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 100;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body.show {
  display: block;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body .line {
  display: none;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body .d-item {
  display: block;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}
.site-header .main-nav .nav-item .dropdown .dropdown-menu-body .d-item:hover {
  color: #F47923;
  background: transparent;
}
.site-header .main-nav .nav-item .dropdown-toggle {
  background: #121212;
}
.site-header .main-nav .nav-item.dropdown .dropdown-toggle {
  border: 1px solid #F47923;
  padding: 7px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b7b3b0;
  font-size: 17px;
  font-weight: 400;
}
.site-header .main-nav .nav-item.dropdown .dropdown-toggle.open {
  border: 1.5px solid #F47923;
  background: linear-gradient(90deg, #F47923, #F47923);
  color: #e8e6e5;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.08);
}
.site-header .main-nav .nav-item.dropdown .chev {
  opacity: 0.9;
  transform: translateY(1px);
}
.site-header .main-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(11, 11, 11, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 8px;
  display: none;
  z-index: 80;
}
.site-header .main-nav .nav-item.dropdown .dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: #b7b3b0;
  text-decoration: none;
  border-radius: 8px;
}
.site-header .main-nav .nav-item.dropdown .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.02);
  color: #e8e6e5;
}
.site-header .main-nav .nav-item.dropdown .dropdown-menu.open {
  display: block;
}
.site-header .nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .site-header .nav-toggle {
    display: flex;
  }
}
.site-header .nav-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  width: 26px;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.site-header .nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header .nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.site-header .nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.site-header .nav-overlay {
  position: fixed;
  inset: 0;
  background: #000000;
  z-index: 10000 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.site-header .nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.site-header .social-icons {
  padding-top: 1.5rem !important;
}
.site-header .social-icons .mobile-nav-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 1.5rem 0;
  width: 100%;
}
.site-header .social-icons .social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  width: 100%;
}
.site-header .social-icons .social-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: rgba(232, 230, 229, 0.8);
  font-size: 1.1rem;
  transition: all 0.2s ease;
}
.site-header .social-icons .social-grid a:hover {
  color: #F47923;
  background: rgba(244, 121, 35, 0.1);
  transform: translateY(-2px);
}
body.nav-open {
  overflow: hidden;
}

.footer-section {
  background: #1A1A1A;
  color: #e8e6e5;
  padding: 2.875rem 0 0.875rem 0;
}
.footer-section .footer-container {
  max-width: 1800px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer-section .footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 480px) {
  .footer-section .footer-container {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    justify-content: center;
  }
}
.footer-section .footer-container .footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 280px;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.5rem 1.2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #262626;
    margin-bottom: 2rem;
    width: 100%;
  }
}
.footer-section .footer-container .footer-brand-section .ninja-brand {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .ninja-brand {
    grid-column: 1;
    grid-row: 1/3;
  }
}
.footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-logo {
  height: 5.5rem;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-logo {
    height: 4rem;
    align-self: center;
  }
}
.footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text {
  font-size: 0.85rem;
  color: #e8e6e5;
  margin-top: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 100%;
}
.footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text br {
  display: none;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text {
    font-size: 0.75rem;
    max-width: 140px;
  }
  .footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text br {
    display: block;
  }
}
@media (max-width: 480px) {
  .footer-section .footer-container .footer-brand-section .ninja-brand .footer-ninja-text {
    font-size: 9px !important;
    text-align: center;
  }
}
.footer-section .footer-container .footer-brand-section .partner-logos {
  display: flex;
  align-items: center;
}
.footer-section .footer-container .footer-brand-section .partner-logos .footer-startup-logo {
  width: 14rem;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .partner-logos .footer-startup-logo {
    width: 12rem;
  }
}
.footer-section .footer-container .footer-brand-section .partner-logos .footer-gst-logo {
  grid-column: 2;
  height: 4.5rem;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
}
@media (max-width: 1023px) {
  .footer-section .footer-container .footer-brand-section .partner-logos .footer-gst-logo {
    grid-column: 2;
    grid-row: 2;
    height: 2.8rem;
  }
}
.footer-section .footer-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.footer-section .footer-header .footer-logo {
  height: 5rem;
  width: 7rem;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-section .footer-header .footer-header-content {
  flex: 1;
}
.footer-section .footer-header .footer-header-content .footer-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  border-radius: 9999px;
  background: #27272a;
  color: #d4d4d8;
}
.footer-section .footer-header .footer-header-content .footer-title-main {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
  line-height: 1.2;
}
.footer-section .footer-header .footer-header-content .footer-description {
  color: #9ca3af;
  margin-top: 0.75rem;
  max-width: 100%;
}
.footer-section .footer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 12px;
  border-radius: 1rem;
  background-color: #0E0E0E;
}
@media (min-width: 768px) {
  .footer-section .footer-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1427px) {
  .footer-section .footer-cards {
    width: 85rem;
    margin-left: 1rem;
  }
}
.footer-section .footer-cards .footer-card {
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}
.footer-section .footer-cards .footer-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
  padding-right: 3rem;
}
.footer-section .footer-cards .footer-card p {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.5;
  flex-grow: 1;
}
.footer-section .footer-cards .footer-card .arrow-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.footer-section .footer-cards .footer-card .arrow-btn .arrow-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.footer-section .footer-cards .footer-card .arrow-btn .arrow-default {
  opacity: 1;
}
.footer-section .footer-cards .footer-card .arrow-btn .arrow-hover {
  opacity: 0;
}
.footer-section .footer-cards .footer-card .arrow-btn:hover .arrow-default {
  opacity: 0;
}
.footer-section .footer-cards .footer-card .arrow-btn:hover .arrow-hover {
  opacity: 1;
}
.footer-section .footer-cards .footer-card:hover {
  transform: translateY(-5px);
}
.footer-section .footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  /* margin-bottom: 4rem; */
  text-align: left;
  width: 100%;
  min-width: 0;
  padding-left: 1rem;
}
@media (min-width: 1024px) {
  .footer-section .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
}
.footer-section .footer-columns .footer-column .footer-title {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-left: 0;
  line-height: 1.57;
}
@media (min-width: 1024px) {
  .footer-section .footer-columns .footer-column .footer-title {
    font-size: 2.66rem;
  }
}
.footer-section .footer-columns .footer-column .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section .footer-columns .footer-column .footer-links li {
  margin-bottom: 1rem;
  color: #ffffff;
  cursor: pointer;
  transition: color 0.2s;
  font-size: 0.95rem;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .footer-section .footer-columns .footer-column .footer-links li {
    font-size: 1.25rem;
  }
}
.footer-section .footer-columns .footer-column .footer-links li:hover {
  color: #F47923;
}
.footer-section .footer-bottom {
  border-top: 1px solid #262626;
  padding: 1rem 48px 0;
  margin: 2rem auto 0;
  max-width: 1800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #666666;
  font-size: 0.84rem;
  width: 100%;
}
@media (max-width: 768px) {
  .footer-section .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 1023px) {
  .footer-section .footer-bottom {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .footer-section .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-section .footer-bottom .footer-legal {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .footer-section .footer-bottom .footer-legal {
    order: 2;
  }
}
.footer-section .footer-bottom .footer-legal a {
  color: #666666;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.84rem;
  font-weight: 400;
}
.footer-section .footer-bottom .footer-legal a:hover {
  color: #F47923;
}
.footer-section .footer-bottom .footer-social {
  display: flex;
  gap: 1rem;
}
@media (max-width: 1023px) {
  .footer-section .footer-bottom .footer-social {
    order: 4;
    border-top: 1px solid #262626;
    padding-top: 1rem;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }
}
.footer-section .footer-bottom .footer-social i {
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
  color: #c9c9c9;
}
.footer-section .footer-bottom .footer-social i:hover {
  color: #fff;
  transform: translateY(-2px);
}
.footer-section .footer-bottom .footer-copyright {
  margin: 0;
  color: #666666;
  font-size: 0.74rem;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .footer-section .footer-bottom .footer-copyright {
    order: 1;
  }
}
@media (min-width: 1024px) {
  .footer-section .footer-bottom .footer-copyright {
    order: 3;
  }
}

.bg-img {
  position: absolute;
  transform: translate(-60%, -25%);
}

.hero {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px 1.5rem;
  position: relative;
  gap: 40px;
  overflow: hidden;
}
.hero__content {
  max-width: 1100px;
  z-index: 10;
  flex: 1.5;
  animation: slideInLeft 0.8s ease-out;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .hero__content {
    background: rgba(53, 51, 51, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
    gap: 20px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  position: relative;
}
@media (max-width: 480px) {
  .hero__heading-wrapper {
    gap: 18px;
    text-align: left;
  }
}
.hero__title {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0;
  letter-spacing: -1.5px;
}
.hero__title .text-underline-sml {
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.hero__title .text-underline-sml::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22px;
  background: url("/assets/images/hero/Vector 1.png") no-repeat center bottom;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 480px) {
  .hero__title .text-underline-sml::after {
    bottom: -4px !important;
  }
}
.hero__title .text-underline-lg {
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.hero__title .text-underline-lg::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 22px;
  background: url("/assets/images/hero/Vector 1.png") no-repeat center bottom;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 480px) {
  .hero__title .text-underline-lg::after {
    bottom: -4px !important;
  }
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 56px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
    letter-spacing: 0;
    text-align: left;
  }
}
.hero__desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(232, 230, 229, 0.7);
  max-width: 700px;
  margin: 0;
}
@media (max-width: 768px) {
  .hero__desc {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .hero__desc {
    font-size: 14px;
    color: rgba(232, 230, 229, 0.8);
  }
}
.hero__btn-container {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  right: 4rem;
  transform: translate(4rem, 0);
}
@media (max-width: 480px) {
  .hero__btn-container {
    width: 100%;
    right: 0;
    transform: translate(0, 0);
    justify-content: flex-start;
  }
}
.hero__btn-container button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #ff7b23;
  background: transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero__btn-container button {
    font-size: 14px;
    padding: 10px 20px;
    width: auto;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__btn-container button {
    font-size: 12px;
    padding: 7px 14px;
    width: auto;
    text-align: center;
  }
}
.hero__btn-container button::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("/assets/images/hero/scdl-btn-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.hero__btn-container button span {
  position: relative;
  z-index: 1;
}
.hero__btn-container button:hover {
  background: #ff7b23;
  transform: translateY(-2px);
}
.hero__btn-container button:hover::before {
  background-image: url("/assets/images/hero/scdl-btn-icon-wt.png");
}
.hero__btn-container button:active {
  transform: translateY(0) scale(0.98);
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F47923;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero__btn {
    font-size: 14px;
    padding: 10px 20px;
    width: auto;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero__btn {
    font-size: 12px;
    padding: 11px 11px;
    width: auto;
    text-align: center;
  }
}
.hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
  z-index: 0;
}
.hero__btn span {
  position: relative;
  z-index: 1;
}
.hero__btn:hover {
  transform: translateY(-4px);
}
.hero__btn:hover::before {
  left: 100%;
}
.hero__btn:hover ~ .hero__btn-arrow {
  opacity: 1;
  transform: translateX(0) translateY(-4px);
  visibility: visible;
}
.hero__btn:hover ~ button {
  transform: translateX(55px);
}
@media (max-width: 768px) {
  .hero__btn:hover ~ button {
    transform: none;
  }
}
.hero__btn-arrow {
  width: 44px;
  height: 44px;
  background: #F47923;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  margin-right: -44px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 768px) {
  .hero__btn-arrow {
    display: none;
  }
}
.hero__btn-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.hero__btn-arrow:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1.1);
}
.hero__btn-arrow:hover + button {
  transform: translateX(55px);
}
.hero__carousel-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
  height: 38rem;
  padding-right: 8px;
}
@media (max-width: 768px) {
  .hero__carousel-wrapper {
    display: none;
  }
}
.hero {
  /* Responsive breakpoints */
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 10px 20px 40px 20px;
    min-height: auto;
    gap: 30px;
    align-items: flex-start;
  }
}

.carousel-content {
  position: relative;
  width: 300px;
  height: 100%;
  display: flex;
  align-items: center;
}

.carousel-arrow {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
  animation: arrowPoke 3s infinite ease-in-out;
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.carousel-track {
  width: 100%;
  height: 560px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
}

.carousel-scroll {
  position: relative;
  height: 100%;
}

.carousel-item {
  position: absolute;
  top: 50%;
  left: 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation-duration: var(--total-duration);
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: calc(var(--i) * -3s);
  transform: translateY(-50%);
  opacity: 0;
  will-change: transform, opacity;
}

.carousel-text {
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
  opacity: 1;
  transition: opacity 0.3s;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.items-count-1 .carousel-item {
  animation-name: dynamicSnappyScroll-1;
}

@keyframes dynamicSnappyScroll-1 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  80% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-2 .carousel-item {
  animation-name: dynamicSnappyScroll-2;
}

@keyframes dynamicSnappyScroll-2 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  40% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  50% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  90% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-3 .carousel-item {
  animation-name: dynamicSnappyScroll-3;
}

@keyframes dynamicSnappyScroll-3 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  26.6666666667% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  60% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  93.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-4 .carousel-item {
  animation-name: dynamicSnappyScroll-4;
}

@keyframes dynamicSnappyScroll-4 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  20% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  25% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  45% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  50% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  70% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  75% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  95% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-5 .carousel-item {
  animation-name: dynamicSnappyScroll-5;
}

@keyframes dynamicSnappyScroll-5 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  16% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  20% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  36% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  40% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  56% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  60% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  76% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  80% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  96% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-6 .carousel-item {
  animation-name: dynamicSnappyScroll-6;
}

@keyframes dynamicSnappyScroll-6 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  13.3333333333% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  30% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  46.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  50% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  63.3333333333% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  80% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  96.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-7 .carousel-item {
  animation-name: dynamicSnappyScroll-7;
}

@keyframes dynamicSnappyScroll-7 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  11.4285714286% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  14.2857142857% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  25.7142857143% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  28.5714285714% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  40% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  42.8571428571% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  54.2857142857% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  57.1428571429% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  68.5714285714% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  71.4285714286% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  82.8571428571% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  85.7142857143% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  97.1428571429% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-8 .carousel-item {
  animation-name: dynamicSnappyScroll-8;
}

@keyframes dynamicSnappyScroll-8 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  10% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  12.5% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  22.5% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  25% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  35% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  37.5% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  47.5% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  50% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  60% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  62.5% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  72.5% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  75% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  85% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  87.5% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  97.5% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-9 .carousel-item {
  animation-name: dynamicSnappyScroll-9;
}

@keyframes dynamicSnappyScroll-9 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  8.8888888889% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  11.1111111111% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  20% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  22.2222222222% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  31.1111111111% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  42.2222222222% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  44.4444444444% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  53.3333333333% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  55.5555555556% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  64.4444444444% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  75.5555555556% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  77.7777777778% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  86.6666666667% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  88.8888888889% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  97.7777777778% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-10 .carousel-item {
  animation-name: dynamicSnappyScroll-10;
}

@keyframes dynamicSnappyScroll-10 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  8% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  10% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  18% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  20% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  28% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  30% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  38% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  40% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  48% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  50% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  58% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  60% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  68% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  70% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  78% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  80% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  88% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  90% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-11 .carousel-item {
  animation-name: dynamicSnappyScroll-11;
}

@keyframes dynamicSnappyScroll-11 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  7.2727272727% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  9.0909090909% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  16.3636363636% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  18.1818181818% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  25.4545454545% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  27.2727272727% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  34.5454545455% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  36.3636363636% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  43.6363636364% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  45.4545454545% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  52.7272727273% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  54.5454545455% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  61.8181818182% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  63.6363636364% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  70.9090909091% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  72.7272727273% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  80% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  81.8181818182% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  89.0909090909% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  90.9090909091% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.1818181818% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-12 .carousel-item {
  animation-name: dynamicSnappyScroll-12;
}

@keyframes dynamicSnappyScroll-12 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  6.6666666667% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  8.3333333333% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  15% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  23.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  25% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  31.6666666667% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  40% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  41.6666666667% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  48.3333333333% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  50% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  56.6666666667% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  58.3333333333% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  65% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  73.3333333333% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  75% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  81.6666666667% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  90% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  91.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-13 .carousel-item {
  animation-name: dynamicSnappyScroll-13;
}

@keyframes dynamicSnappyScroll-13 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  6.1538461538% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  7.6923076923% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  13.8461538462% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  15.3846153846% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  21.5384615385% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  23.0769230769% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  29.2307692308% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  30.7692307692% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  36.9230769231% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  38.4615384615% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  44.6153846154% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  46.1538461538% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  52.3076923077% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  53.8461538462% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  60% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  61.5384615385% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  67.6923076923% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  69.2307692308% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  75.3846153846% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  76.9230769231% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  83.0769230769% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  84.6153846154% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  90.7692307692% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92.3076923077% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.4615384615% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-14 .carousel-item {
  animation-name: dynamicSnappyScroll-14;
}

@keyframes dynamicSnappyScroll-14 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.7142857143% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  7.1428571429% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  12.8571428571% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  14.2857142857% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  20% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  21.4285714286% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  27.1428571429% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  28.5714285714% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  34.2857142857% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  35.7142857143% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  41.4285714286% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  42.8571428571% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  48.5714285714% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  50% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  55.7142857143% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  57.1428571429% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  62.8571428571% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  64.2857142857% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  70% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  71.4285714286% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  77.1428571429% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  78.5714285714% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  84.2857142857% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  85.7142857143% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  91.4285714286% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92.8571428571% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.5714285714% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-15 .carousel-item {
  animation-name: dynamicSnappyScroll-15;
}

@keyframes dynamicSnappyScroll-15 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.3333333333% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  6.6666666667% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  12% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  13.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  18.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  20% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  25.3333333333% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  26.6666666667% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  32% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  38.6666666667% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  40% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  45.3333333333% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  46.6666666667% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  52% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  53.3333333333% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  58.6666666667% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  60% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  65.3333333333% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  72% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  73.3333333333% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  78.6666666667% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  80% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  85.3333333333% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  86.6666666667% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  93.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-16 .carousel-item {
  animation-name: dynamicSnappyScroll-16;
}

@keyframes dynamicSnappyScroll-16 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  6.25% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  11.25% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  12.5% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  17.5% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  18.75% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  23.75% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  25% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  30% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  31.25% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  36.25% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  37.5% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  42.5% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  43.75% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  48.75% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  50% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  55% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  56.25% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  61.25% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  62.5% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  67.5% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  68.75% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  73.75% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  75% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  80% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  81.25% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  86.25% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  87.5% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92.5% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  93.75% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.75% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-17 .carousel-item {
  animation-name: dynamicSnappyScroll-17;
}

@keyframes dynamicSnappyScroll-17 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.7058823529% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.8823529412% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  10.5882352941% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  11.7647058824% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  16.4705882353% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  17.6470588235% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  22.3529411765% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  23.5294117647% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  28.2352941176% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  29.4117647059% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  34.1176470588% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  35.2941176471% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  40% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  41.1764705882% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  45.8823529412% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  47.0588235294% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  51.7647058824% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  52.9411764706% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  57.6470588235% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  58.8235294118% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  63.5294117647% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  64.7058823529% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  69.4117647059% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  70.5882352941% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  75.2941176471% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  76.4705882353% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  81.1764705882% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  82.3529411765% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  87.0588235294% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  88.2352941176% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  92.9411764706% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.1176470588% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.8235294118% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-18 .carousel-item {
  animation-name: dynamicSnappyScroll-18;
}

@keyframes dynamicSnappyScroll-18 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.4444444444% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.5555555556% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  10% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  11.1111111111% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  15.5555555556% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  21.1111111111% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  22.2222222222% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  26.6666666667% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  27.7777777778% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  32.2222222222% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  37.7777777778% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  38.8888888889% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  43.3333333333% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  44.4444444444% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  48.8888888889% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  50% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  54.4444444444% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  55.5555555556% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  60% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  61.1111111111% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  65.5555555556% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  71.1111111111% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  72.2222222222% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  76.6666666667% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  77.7777777778% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  82.2222222222% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  87.7777777778% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  88.8888888889% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  93.3333333333% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.4444444444% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.8888888889% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-19 .carousel-item {
  animation-name: dynamicSnappyScroll-19;
}

@keyframes dynamicSnappyScroll-19 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.2105263158% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5.2631578947% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  9.4736842105% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  10.5263157895% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  14.7368421053% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  15.7894736842% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  20% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  21.0526315789% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  25.2631578947% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  26.3157894737% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  30.5263157895% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  31.5789473684% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  35.7894736842% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  36.8421052632% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  41.0526315789% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  42.1052631579% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  46.3157894737% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  47.3684210526% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  51.5789473684% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  52.6315789474% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  56.8421052632% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  57.8947368421% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  62.1052631579% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  63.1578947368% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  67.3684210526% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  68.4210526316% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  72.6315789474% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  73.6842105263% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  77.8947368421% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  78.9473684211% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  83.1578947368% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  84.2105263158% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  88.4210526316% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  89.4736842105% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  93.6842105263% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.7368421053% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  98.9473684211% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-20 .carousel-item {
  animation-name: dynamicSnappyScroll-20;
}

@keyframes dynamicSnappyScroll-20 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  5% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  9% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  10% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  14% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  15% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  19% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  20% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  24% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  25% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  29% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  30% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  34% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  35% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  39% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  40% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  44% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  45% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  49% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  50% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  54% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  55% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  59% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  60% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  64% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  65% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  69% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  70% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  74% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  75% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  79% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  80% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  84% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  85% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  89% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-21 .carousel-item {
  animation-name: dynamicSnappyScroll-21;
}

@keyframes dynamicSnappyScroll-21 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.8095238095% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.7619047619% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8.5714285714% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  9.5238095238% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  13.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  14.2857142857% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  18.0952380952% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  19.0476190476% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  22.8571428571% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  23.8095238095% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  27.619047619% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  28.5714285714% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  32.380952381% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  37.1428571429% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  38.0952380952% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  41.9047619048% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  42.8571428571% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  46.6666666667% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  47.619047619% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  51.4285714286% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  52.380952381% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  56.1904761905% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  57.1428571429% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  60.9523809524% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  61.9047619048% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  65.7142857143% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  70.4761904762% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  71.4285714286% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  75.2380952381% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  76.1904761905% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  80% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  80.9523809524% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  84.7619047619% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  85.7142857143% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  89.5238095238% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90.4761904762% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.2857142857% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.2380952381% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.0476190476% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-22 .carousel-item {
  animation-name: dynamicSnappyScroll-22;
}

@keyframes dynamicSnappyScroll-22 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.6363636364% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.5454545455% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8.1818181818% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  9.0909090909% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  12.7272727273% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  13.6363636364% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  17.2727272727% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  18.1818181818% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  21.8181818182% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  22.7272727273% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  26.3636363636% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  27.2727272727% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  30.9090909091% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  31.8181818182% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  35.4545454545% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  36.3636363636% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  40% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  40.9090909091% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  44.5454545455% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  45.4545454545% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  49.0909090909% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  50% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  53.6363636364% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  54.5454545455% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  58.1818181818% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  59.0909090909% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  62.7272727273% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  63.6363636364% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  67.2727272727% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  68.1818181818% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  71.8181818182% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  72.7272727273% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  76.3636363636% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  77.2727272727% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  80.9090909091% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  81.8181818182% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  85.4545454545% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  86.3636363636% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90.9090909091% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.5454545455% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.4545454545% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.0909090909% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-23 .carousel-item {
  animation-name: dynamicSnappyScroll-23;
}

@keyframes dynamicSnappyScroll-23 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.4782608696% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.347826087% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.8260869565% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8.6956521739% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  12.1739130435% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  13.0434782609% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  16.5217391304% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  17.3913043478% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  20.8695652174% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  21.7391304348% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  25.2173913043% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  26.0869565217% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  29.5652173913% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  30.4347826087% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  33.9130434783% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  34.7826086957% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  38.2608695652% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  39.1304347826% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  42.6086956522% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  43.4782608696% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  46.9565217391% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  47.8260869565% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  51.3043478261% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  52.1739130435% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  55.652173913% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  56.5217391304% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  60% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  60.8695652174% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  64.347826087% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  65.2173913043% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  68.6956521739% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  69.5652173913% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  73.0434782609% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  73.9130434783% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  77.3913043478% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  78.2608695652% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  81.7391304348% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  82.6086956522% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  86.0869565217% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  86.9565217391% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90.4347826087% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.3043478261% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  94.7826086957% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.652173913% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.1304347826% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-24 .carousel-item {
  animation-name: dynamicSnappyScroll-24;
}

@keyframes dynamicSnappyScroll-24 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.3333333333% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4.1666666667% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.5% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  11.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  12.5% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  15.8333333333% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  20% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  20.8333333333% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  24.1666666667% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  25% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  28.3333333333% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  29.1666666667% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  32.5% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  36.6666666667% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  37.5% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  40.8333333333% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  41.6666666667% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  45% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  45.8333333333% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  49.1666666667% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  50% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  53.3333333333% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  54.1666666667% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  57.5% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  58.3333333333% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  61.6666666667% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  62.5% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  65.8333333333% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  70% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  70.8333333333% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  74.1666666667% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  75% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  78.3333333333% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  79.1666666667% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  82.5% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  86.6666666667% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  87.5% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  90.8333333333% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.6666666667% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.8333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.1666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-25 .carousel-item {
  animation-name: dynamicSnappyScroll-25;
}

@keyframes dynamicSnappyScroll-25 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.2% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  4% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.2% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  8% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  11.2% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  12% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  15.2% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  16% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  19.2% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  20% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  23.2% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  24% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  27.2% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  28% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  31.2% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  32% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  35.2% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  36% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  39.2% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  40% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  43.2% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  44% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  47.2% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  48% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  51.2% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  52% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  55.2% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  56% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  59.2% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  60% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  63.2% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  64% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  67.2% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  68% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  71.2% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  72% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  75.2% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  76% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  79.2% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  80% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  83.2% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  84% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  87.2% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.2% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.2% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.2% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-26 .carousel-item {
  animation-name: dynamicSnappyScroll-26;
}

@keyframes dynamicSnappyScroll-26 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.0769230769% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.8461538462% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.9230769231% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.6923076923% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10.7692307692% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  11.5384615385% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  14.6153846154% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  15.3846153846% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  18.4615384615% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  19.2307692308% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  22.3076923077% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  23.0769230769% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  26.1538461538% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  26.9230769231% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  30% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  30.7692307692% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  33.8461538462% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  34.6153846154% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  37.6923076923% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  38.4615384615% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  41.5384615385% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  42.3076923077% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  45.3846153846% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  46.1538461538% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  49.2307692308% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  50% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  53.0769230769% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  53.8461538462% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  56.9230769231% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  57.6923076923% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  60.7692307692% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  61.5384615385% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  64.6153846154% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  65.3846153846% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  68.4615384615% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  69.2307692308% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  72.3076923077% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  73.0769230769% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  76.1538461538% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  76.9230769231% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  80% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  80.7692307692% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  83.8461538462% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  84.6153846154% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  87.6923076923% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.4615384615% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.5384615385% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.3076923077% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.3846153846% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.1538461538% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.2307692308% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-27 .carousel-item {
  animation-name: dynamicSnappyScroll-27;
}

@keyframes dynamicSnappyScroll-27 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  2.962962963% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.7037037037% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.6666666667% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.4074074074% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10.3703703704% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  11.1111111111% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  14.0740740741% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  14.8148148148% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  17.7777777778% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  18.5185185185% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  21.4814814815% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  22.2222222222% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  25.1851851852% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  25.9259259259% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  28.8888888889% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  29.6296296296% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  32.5925925926% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  36.2962962963% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  37.037037037% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  40% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  40.7407407407% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  43.7037037037% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  44.4444444444% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  47.4074074074% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  48.1481481481% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  51.1111111111% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  51.8518518519% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  54.8148148148% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  55.5555555556% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  58.5185185185% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  59.2592592593% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  62.2222222222% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  62.962962963% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  65.9259259259% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  69.6296296296% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  70.3703703704% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  73.3333333333% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  74.0740740741% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  77.037037037% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  77.7777777778% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  80.7407407407% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  81.4814814815% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  84.4444444444% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  85.1851851852% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.1481481481% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.8888888889% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  91.8518518519% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.5925925926% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.5555555556% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.2962962963% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.2592592593% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-28 .carousel-item {
  animation-name: dynamicSnappyScroll-28;
}

@keyframes dynamicSnappyScroll-28 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  2.8571428571% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.5714285714% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.4285714286% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  7.1428571429% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10.7142857143% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  13.5714285714% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  14.2857142857% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  17.1428571429% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  17.8571428571% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  20.7142857143% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  21.4285714286% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  24.2857142857% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  25% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  27.8571428571% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  28.5714285714% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  31.4285714286% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  32.1428571429% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  35% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  35.7142857143% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  38.5714285714% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  39.2857142857% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  42.1428571429% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  42.8571428571% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  45.7142857143% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  46.4285714286% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  49.2857142857% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  50% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  52.8571428571% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  53.5714285714% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  56.4285714286% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  57.1428571429% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  60% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  60.7142857143% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  63.5714285714% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  64.2857142857% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  67.1428571429% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  67.8571428571% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  70.7142857143% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  71.4285714286% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  74.2857142857% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  75% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  77.8571428571% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  78.5714285714% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  81.4285714286% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  82.1428571429% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  85% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  85.7142857143% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.5714285714% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  89.2857142857% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.1428571429% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.8571428571% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.7142857143% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.4285714286% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.2857142857% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-29 .carousel-item {
  animation-name: dynamicSnappyScroll-29;
}

@keyframes dynamicSnappyScroll-29 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  2.7586206897% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.4482758621% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.2068965517% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.8965517241% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  9.6551724138% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10.3448275862% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  13.1034482759% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  13.7931034483% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  16.5517241379% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  17.2413793103% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  20% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  20.6896551724% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  23.4482758621% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  24.1379310345% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  26.8965517241% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  27.5862068966% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  30.3448275862% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  31.0344827586% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  33.7931034483% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  34.4827586207% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  37.2413793103% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  37.9310344828% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  40.6896551724% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  41.3793103448% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  44.1379310345% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  44.8275862069% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  47.5862068966% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  48.275862069% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  51.0344827586% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  51.724137931% {
    transform: translateY(-50%) translate(-588px, -728px) rotate(-56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  54.4827586207% {
    transform: translateY(-50%) translate(-588px, -728px) rotate(-56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  55.1724137931% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  57.9310344828% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  58.6206896552% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  61.3793103448% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  62.0689655172% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  64.8275862069% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  65.5172413793% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  68.275862069% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  68.9655172414% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  71.724137931% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  72.4137931034% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  75.1724137931% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  75.8620689655% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  78.6206896552% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  79.3103448276% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  82.0689655172% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  82.7586206897% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  85.5172413793% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  86.2068965517% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  88.9655172414% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  89.6551724138% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.4137931034% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  93.1034482759% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  95.8620689655% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.5517241379% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.3103448276% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.items-count-30 .carousel-item {
  animation-name: dynamicSnappyScroll-30;
}

@keyframes dynamicSnappyScroll-30 {
  0% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  2.6666666667% {
    transform: translateY(-50%) translate(0px, 0px) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0px);
  }
  3.3333333333% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6% {
    transform: translateY(-50%) translate(-3px, 52px) rotate(4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  6.6666666667% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  9.3333333333% {
    transform: translateY(-50%) translate(-12px, 104px) rotate(8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  10% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  12.6666666667% {
    transform: translateY(-50%) translate(-27px, 156px) rotate(12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  13.3333333333% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  16% {
    transform: translateY(-50%) translate(-48px, 208px) rotate(16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  16.6666666667% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  19.3333333333% {
    transform: translateY(-50%) translate(-75px, 260px) rotate(20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  20% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  22.6666666667% {
    transform: translateY(-50%) translate(-108px, 312px) rotate(24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  23.3333333333% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  26% {
    transform: translateY(-50%) translate(-147px, 364px) rotate(28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  26.6666666667% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  29.3333333333% {
    transform: translateY(-50%) translate(-192px, 416px) rotate(32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  30% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  32.6666666667% {
    transform: translateY(-50%) translate(-243px, 468px) rotate(36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  33.3333333333% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  36% {
    transform: translateY(-50%) translate(-300px, 520px) rotate(40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  36.6666666667% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  39.3333333333% {
    transform: translateY(-50%) translate(-363px, 572px) rotate(44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  40% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  42.6666666667% {
    transform: translateY(-50%) translate(-432px, 624px) rotate(48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  43.3333333333% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  46% {
    transform: translateY(-50%) translate(-507px, 676px) rotate(52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  46.6666666667% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  49.3333333333% {
    transform: translateY(-50%) translate(-588px, 728px) rotate(56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  50% {
    transform: translateY(-50%) translate(-675px, 780px) rotate(60deg) scale(0.45);
    opacity: 0;
    filter: blur(90px);
  }
  52.6666666667% {
    transform: translateY(-50%) translate(-675px, 780px) rotate(60deg) scale(0.45);
    opacity: 0;
    filter: blur(90px);
  }
  53.3333333333% {
    transform: translateY(-50%) translate(-588px, -728px) rotate(-56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  56% {
    transform: translateY(-50%) translate(-588px, -728px) rotate(-56deg) scale(0.45);
    opacity: 0;
    filter: blur(78.4px);
  }
  56.6666666667% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  59.3333333333% {
    transform: translateY(-50%) translate(-507px, -676px) rotate(-52deg) scale(0.45);
    opacity: 0;
    filter: blur(67.6px);
  }
  60% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  62.6666666667% {
    transform: translateY(-50%) translate(-432px, -624px) rotate(-48deg) scale(0.45);
    opacity: 0;
    filter: blur(57.6px);
  }
  63.3333333333% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  66% {
    transform: translateY(-50%) translate(-363px, -572px) rotate(-44deg) scale(0.45);
    opacity: 0;
    filter: blur(48.4px);
  }
  66.6666666667% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  69.3333333333% {
    transform: translateY(-50%) translate(-300px, -520px) rotate(-40deg) scale(0.45);
    opacity: 0;
    filter: blur(40px);
  }
  70% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  72.6666666667% {
    transform: translateY(-50%) translate(-243px, -468px) rotate(-36deg) scale(0.45);
    opacity: 0;
    filter: blur(32.4px);
  }
  73.3333333333% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  76% {
    transform: translateY(-50%) translate(-192px, -416px) rotate(-32deg) scale(0.45);
    opacity: 0;
    filter: blur(25.6px);
  }
  76.6666666667% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  79.3333333333% {
    transform: translateY(-50%) translate(-147px, -364px) rotate(-28deg) scale(0.45);
    opacity: 0;
    filter: blur(19.6px);
  }
  80% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  82.6666666667% {
    transform: translateY(-50%) translate(-108px, -312px) rotate(-24deg) scale(0.45);
    opacity: 0;
    filter: blur(14.4px);
  }
  83.3333333333% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  86% {
    transform: translateY(-50%) translate(-75px, -260px) rotate(-20deg) scale(0.5);
    opacity: 0;
    filter: blur(10px);
  }
  86.6666666667% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  89.3333333333% {
    transform: translateY(-50%) translate(-48px, -208px) rotate(-16deg) scale(0.6);
    opacity: 0.2;
    filter: blur(6.4px);
  }
  90% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  92.6666666667% {
    transform: translateY(-50%) translate(-27px, -156px) rotate(-12deg) scale(0.7);
    opacity: 0.4;
    filter: blur(3.6px);
  }
  93.3333333333% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96% {
    transform: translateY(-50%) translate(-12px, -104px) rotate(-8deg) scale(0.8);
    opacity: 0.6;
    filter: blur(1.6px);
  }
  96.6666666667% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  99.3333333333% {
    transform: translateY(-50%) translate(-3px, -52px) rotate(-4deg) scale(0.9);
    opacity: 0.8;
    filter: blur(0.4px);
  }
  100% {
    transform: translateY(-50%) translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes arrowPoke {
  0%, 80% {
    transform: translateY(-50%) translateX(0);
  }
  90% {
    transform: translateY(-50%) translateX(12px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
.about-section {
  width: 100%;
}
.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  /* Nested media queries for container */
}
@media (max-width: 600px) {
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }
}
.about-section {
  /* LEFT SIDE */
}
.about-section .about-left {
  color: #e8e6e5;
  /* Tablet view - make it flex to stretch content */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-left {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.about-section .about-left .section-label {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 10px;
}
.about-section .about-left h2 {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
  color: white;
}
.about-section .about-left h2 span {
  color: #F47923;
}
.about-section .about-left h2 {
  /* Nested media queries for h2 */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .about-section .about-left h2 {
    font-size: 40px;
  }
}
.about-section .about-left h2 {
  /* Mobile view - scale down h2 */
}
@media (max-width: 600px) {
  .about-section .about-left h2 {
    font-size: 20px;
    margin-bottom: 0;
    line-height: 1.25;
    width: 100%;
    text-align: center;
  }
}
.about-section .about-left {
  /* ORBIT IMAGE BOX */
}
.about-section .about-left .orbit-box {
  width: 100%;
  height: 28rem;
  background: #1c1c1c;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-section .about-left .orbit-box img {
  width: 100%;
  height: 100%;
}
.about-section .about-left .orbit-box {
  /* Nested media queries for orbit-box */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-left .orbit-box {
    height: auto;
    flex: 1;
  }
}
@media (max-width: 1024px) {
  .about-section .about-left .orbit-box {
    height: 350px;
  }
}
.about-section .about-left .orbit-box {
  /* Mobile view - hide orbit-box */
}
@media (max-width: 600px) {
  .about-section .about-left .orbit-box {
    display: none;
  }
}
.about-section {
  /* RIGHT SIDE */
}
.about-section .about-right {
  padding-top: 17px;
  margin-top: 66px;
  /* Mobile view - reduce margins */
}
@media (max-width: 600px) {
  .about-section .about-right {
    padding-top: 10px;
    margin-top: 0;
  }
}
.about-section .about-right {
  /* Tablet view - reduce margins */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right {
    padding-top: 0;
    margin-top: 4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
.about-section .about-right .about-text {
  font-size: 18px;
  line-height: 1.6;
  color: #e8e6e5;
  margin-bottom: 40px;
  /* Mobile view - scale down text */
}
@media (max-width: 600px) {
  .about-section .about-right .about-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.about-section .about-right .about-text {
  /* Tablet view - slight reduction */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .about-text {
    font-size: 16px;
  }
}
.about-section .about-right {
  /* STAT CARD GRID */
}
.about-section .about-right .stat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 25px;
  max-width: 100%;
  margin-bottom: 40px;
  margin-top: 75px;
  align-items: stretch;
  /* Mobile view - scale down stat-grid but keep 2 columns */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.about-section .about-right .stat-grid {
  /* Tablet view - scale down */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    margin-top: 50px;
    height: 100%;
  }
}
.about-section .about-right .stat-grid .stat-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* Left Column: Two Stat Cards */
}
.about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(1) {
  height: auto;
  flex: 1.3;
}
.about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(2) {
  height: auto;
  flex: 1;
}
.about-section .about-right .stat-grid .stat-column {
  /* Right Column: Instructor Image Only */
}
.about-section .about-right .stat-grid .stat-column:last-child .stat-card {
  height: 100%;
}
.about-section .about-right .stat-grid .stat-column {
  /* Nested media queries for stat-column */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-column {
    height: 100%;
  }
  .about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(1) {
    height: auto;
    flex: 1.22;
  }
  .about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(2) {
    height: auto;
    flex: 1;
  }
  .about-section .about-right .stat-grid .stat-column:last-child .stat-card {
    height: 100%;
  }
}
.about-section .about-right .stat-grid .stat-column {
  /* Mobile view - scale down heights keep 2 columns */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-column {
    gap: 12px;
  }
  .about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(1) {
    height: auto;
    flex: 1.23;
  }
  .about-section .about-right .stat-grid .stat-column:first-child .stat-card:nth-child(2) {
    height: auto;
    flex: 1;
  }
  .about-section .about-right .stat-grid .stat-column:last-child .stat-card {
    height: 100%;
  }
}
.about-section .about-right .stat-grid .stat-card {
  background: #1A1A1A;
  border: 2px solid transparent;
  border-radius: 24px;
  padding: 30px;
  color: #e8e6e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about-section .about-right .stat-grid .stat-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.03) -30%, #713b14 100%);
  -webkit-mask: linear-gradient(#e8e6e5 0 0) content-box, linear-gradient(#e8e6e5 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.about-section .about-right .stat-grid .stat-card h3 {
  font-size: 2.5rem;
  color: #F47923;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  /* Tablet view - scale down h3 */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card h3 {
    font-size: 2.25rem;
  }
}
.about-section .about-right .stat-grid .stat-card h3 {
  /* Mobile view - scale down h3 */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px !important;
  }
}
.about-section .about-right .stat-grid .stat-card.left-btm h3 {
  font-size: 2.25rem;
  /* Tablet view - scale down */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card.left-btm h3 {
    font-size: 1.875rem;
  }
}
.about-section .about-right .stat-grid .stat-card.left-btm h3 {
  /* Mobile view - scale down */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card.left-btm h3 {
    font-size: 1.5rem;
  }
}
.about-section .about-right .stat-grid .stat-card p.stat-label {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #e8e6e5;
  line-height: 1.3;
  /* Tablet view - scale down */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card p.stat-label {
    font-size: 1rem;
    margin-bottom: 12px;
  }
}
.about-section .about-right .stat-grid .stat-card p.stat-label {
  /* Mobile view - scale down */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card p.stat-label {
    font-size: 0.938rem;
    margin-bottom: 8px;
  }
}
.about-section .about-right .stat-grid .stat-card p.desc {
  font-size: 12px;
  color: #cfcfcf;
  line-height: 1.5;
  /* Mobile view - scale down desc text */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card p.desc {
    font-size: 7.6px;
  }
}
.about-section .about-right .stat-grid .stat-card p.desc {
  /* Tablet view - slight reduction */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card p.desc {
    font-size: 13px;
  }
}
.about-section .about-right .stat-grid .stat-card {
  /* Mobile view - scale down padding */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .stat-card {
    padding: 16px;
    border-radius: 16px;
  }
  .about-section .about-right .stat-grid .stat-card::before {
    border-radius: 16px;
  }
}
.about-section .about-right .stat-grid .stat-card {
  /* Tablet view - slight reduction */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .stat-card {
    padding: 20px;
    border-radius: 20px;
  }
  .about-section .about-right .stat-grid .stat-card::before {
    border-radius: 20px;
  }
}
.about-section .about-right .stat-grid {
  /* INSTRUCTOR CARD */
}
.about-section .about-right .stat-grid .instructor-card {
  padding: 0;
  position: relative;
  background: #1A1A1A;
  overflow: hidden;
  border-radius: 24px;
  /* Instructor Info Card */
}
.about-section .about-right .stat-grid .instructor-card .instructor-info {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 5;
  width: calc(100% - 40px);
  height: auto;
}
.about-section .about-right .stat-grid .instructor-card .info-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(60, 60, 60, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 12px 15px;
  opacity: 0;
  visibility: hidden;
  animation: fadeLoop 12s infinite linear;
  animation-play-state: paused;
  border: 1px solid rgba(244, 121, 35, 0.2);
  box-sizing: border-box;
}
.about-section .about-right .stat-grid .instructor-card .info-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.03) -30%, #713b14 100%);
  -webkit-mask: linear-gradient(#e8e6e5 0 0) content-box, linear-gradient(#e8e6e5 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.about-section .about-right .stat-grid .instructor-card .info-item img {
  display: inline-block !important;
  opacity: 1 !important;
  animation: none !important;
}
.about-section .about-right .stat-grid .instructor-card .info-item .role-badge {
  display: inline-block;
  background-color: #6f492e;
  color: white;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 12px;
  border: 2px solid #F47923;
  /* Tablet view - scale down role-badge */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .instructor-card .info-item .role-badge {
    border: 1px solid #F47923 !important;
  }
}
.about-section .about-right .stat-grid .instructor-card .info-item .instructor-name {
  color: #e8e6e5;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 2px 0;
  line-height: 1.3;
}
.about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link {
  color: #F47923;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.3s ease;
}
.about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link:hover {
  color: rgba(244, 121, 35, 0.8);
}
.about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link .arrow-icon {
  width: 17px;
  height: 21px;
  object-fit: contain;
  display: inline-block !important;
  opacity: 1 !important;
  flex-shrink: 0;
  position: relative;
  left: 7px;
}
.about-section .about-right .stat-grid .instructor-card .info-item-1 {
  animation-delay: 0s;
}
.about-section .about-right .stat-grid .instructor-card .info-item-2 {
  animation-delay: 4s;
}
.about-section .about-right .stat-grid .instructor-card .info-item-3 {
  animation-delay: 8s;
}
.about-section .about-right .stat-grid .instructor-card > img {
  position: absolute;
  top: 122px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  animation: fadeLoop 12s infinite linear;
  animation-play-state: paused;
}
.about-section .about-right .stat-grid .instructor-card.anim-ready .info-item,
.about-section .about-right .stat-grid .instructor-card.anim-ready img {
  animation-play-state: running;
}
.about-section .about-right .stat-grid .instructor-card .ninja-head-1 {
  animation-delay: 0s;
}
.about-section .about-right .stat-grid .instructor-card .ninja-head-2 {
  animation-delay: 4s;
}
.about-section .about-right .stat-grid .instructor-card .ninja-head-3 {
  animation-delay: 8s;
}
.about-section .about-right .stat-grid .instructor-card {
  /* Nested media queries for instructor-card */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .instructor-card img {
    width: 100%;
    max-width: 350px;
  }
}
.about-section .about-right .stat-grid .instructor-card {
  /* Mobile view - scale down info card */
}
@media (max-width: 600px) {
  .about-section .about-right .stat-grid .instructor-card .instructor-info {
    top: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }
  .about-section .about-right .stat-grid .instructor-card .info-item {
    padding: 4px 7px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item::before {
    border-radius: 12px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .role-badge {
    padding: 3px 4px;
    font-size: 8px;
    margin: 5px 0 2px 0;
    border-radius: 16px;
    width: 50%;
    text-align: center;
    align-items: center;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .instructor-name {
    font-size: 13px;
    margin: 4px 0 0 0;
    line-height: 1;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link {
    font-size: 10px;
    gap: 2px;
    margin: 3px 0 6px 0;
    line-height: 1;
    display: inline-flex;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link .arrow-icon {
    width: 9px;
    height: 11px;
    left: 2px;
  }
  .about-section .about-right .stat-grid .instructor-card img {
    max-width: 300px;
  }
}
.about-section .about-right .stat-grid .instructor-card {
  /* Tablet view - scale down info card */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid .instructor-card .instructor-info {
    top: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }
  .about-section .about-right .stat-grid .instructor-card .info-item {
    padding: 10px 12px;
    border-radius: 14px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item::before {
    border-radius: 14px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .role-badge {
    padding: 2px 6px;
    font-size: 9px;
    margin-bottom: 8px;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .instructor-name {
    font-size: 14px;
    margin: 0 0 6px 0;
  }
  .about-section .about-right .stat-grid .instructor-card .info-item .linkedin-link {
    font-size: 12px;
  }
  .about-section .about-right .stat-grid .instructor-card img {
    max-width: 320px;
  }
}
.about-section .about-right .stat-grid {
  /* Nested media queries for stat-grid */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .about-section .about-right .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100%;
    height: 100%;
  }
}
@keyframes fadeLoop {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  3% {
    opacity: 1;
    visibility: visible;
  }
  30.33% {
    opacity: 1;
    visibility: visible;
  }
  33.33% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.learning-section {
  width: 100%;
  padding: 6rem 0 35px 0;
  color: #e8e6e5;
}
@media (max-width: 480px) {
  .learning-section {
    padding: 3rem 0 0 0;
    margin-bottom: 4rem;
  }
}
.learning-section .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .learning-section .container {
    padding: 0 16px;
  }
}
.learning-section .section-subtitle {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.learning-section .section-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .learning-section .section-title {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .learning-section .section-title {
    font-size: 1.7rem;
  }
}
.learning-section .section-title span {
  color: #F47923;
}
.learning-section .section-desc {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .section-desc {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .learning-section .section-desc {
    font-size: 0.9rem;
  }
}
.learning-section {
  /* === FEATURE CARDS MARQUEE === */
}
.learning-section .feature-cards-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 3rem;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
@media (max-width: 480px) {
  .learning-section .feature-cards-wrapper {
    margin-bottom: 1rem;
  }
}
.learning-section .feature-cards-grid {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .learning-section .feature-cards-grid {
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-cards-grid {
    gap: 1.5rem;
  }
}
.learning-section .feature-cards-grid .track {
  display: flex;
  gap: 3rem;
  animation: feature-cards-marquee 20s linear infinite;
  width: max-content;
}
@media (max-width: 1024px) {
  .learning-section .feature-cards-grid .track {
    gap: 2.5rem;
    animation: feature-cards-marquee 25s linear infinite;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-cards-grid .track {
    gap: 1.5rem;
    animation: feature-cards-marquee 20s linear infinite;
  }
}
.learning-section .feature-cards-wrapper:hover .track {
  animation-play-state: paused;
}
.learning-section .feature-card {
  background: #1c1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 16rem;
}
@media (max-width: 1024px) {
  .learning-section .feature-card {
    border-radius: 0.75rem;
    padding: 0.75rem;
    gap: 0.5rem;
    width: 155px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card {
    border-radius: 0.75rem;
    padding: 0.75rem;
    gap: 0.5rem;
    width: 155px;
    height: auto;
  }
}
.learning-section .feature-card__icon {
  width: 100%;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__icon {
    height: 45px;
    margin: 0.5rem 0;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__icon {
    height: 45px;
    margin: 0.5rem 0;
  }
}
.learning-section .feature-card__icon img {
  height: 110px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__icon img {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__icon img {
    height: 60px;
  }
}
.learning-section .feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #e8e6e5;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__title {
    font-size: 0.65rem;
    line-height: 1.2;
    word-break: break-word;
    margin-top: 0.7rem;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__title {
    font-size: 0.65rem;
    line-height: 1.2;
    word-break: break-word;
    margin-top: 0.7rem;
  }
}
.learning-section .feature-card__description {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__description {
    font-size: 0.7rem;
    line-height: 1.3;
    word-break: break-word;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__description {
    font-size: 0.7rem;
    line-height: 1.3;
    word-break: break-word;
    width: 100%;
  }
}
.learning-section .feature-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__bullets {
    gap: 0.1rem;
    font-size: 0.6rem;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__bullets {
    gap: 0.1rem;
    font-size: 0.6rem;
  }
}
.learning-section .feature-card__bullets li {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
  padding-left: 1.2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .learning-section .feature-card__bullets li {
    font-size: 0.7rem;
    line-height: 1.2;
    padding-left: 0.8rem;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media (max-width: 480px) {
  .learning-section .feature-card__bullets li {
    font-size: 0.7rem;
    line-height: 1.2;
    padding-left: 0.8rem;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.learning-section .feature-card__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}
.learning-section .feature-card-bg {
  background-image: url(/assets/images/learning/code-arena.png);
  background-size: cover;
}
.learning-section .review {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .learning-section .review {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.learning-section .review .titles .section-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .learning-section .review .titles .section-title {
    font-size: 1.7rem;
  }
}
.learning-section .review .titles .section-title span {
  color: #F47923;
}
.learning-section .review .titles .section-desc {
  font-size: 1.1rem;
  opacity: 0.7;
  margin: 0;
  color: #e8e6e5;
}
@media (max-width: 480px) {
  .learning-section .review .titles .section-desc {
    font-size: 0.9rem;
  }
}
.learning-section .review .button {
  flex-shrink: 0;
  align-self: center;
}
@media (max-width: 480px) {
  .learning-section .review .button {
    position: absolute;
    transform: translate(0, 29rem);
  }
}
@media (max-width: 400px) {
  .learning-section .review .button {
    position: absolute;
    transform: translate(0, 33rem);
  }
}
.learning-section .review .button .btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: #3d2311;
  border: 1px solid rgba(244, 121, 35, 0.3);
  border-radius: 30px;
  color: #d8c2b3;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.learning-section .review .button .btn:hover {
  background: #F47923;
  color: #000;
  border-color: #F47923;
}
.learning-section {
  /* === GRID LAYOUT === */
}
.learning-section .learning-grid {
  display: grid;
  grid-template-columns: 291px 1fr 301px;
  grid-gap: 1.5rem;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
  }
}
@media (max-width: 1024px) {
  .learning-section .learning-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .learning-section .learning-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media (max-width: 480px) {
  .learning-section .learning-grid {
    justify-items: center;
  }
}
.learning-section {
  /* === CARDS === */
}
.learning-section .learning-card {
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.learning-section .learning-card img {
  width: 100%;
  display: block;
}
.learning-section .learning-card.small-card {
  grid-column: span 1;
  width: 291px;
  height: 342px;
  padding: 0 2rem 2rem;
  justify-content: space-between;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-card.small-card {
    grid-column: span 1;
    max-width: 100%;
    width: 270px;
    height: 320px;
  }
  .learning-section .learning-card.small-card .image-wrapper img {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .learning-section .learning-card.small-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
    width: 291px;
  }
}
.learning-section .learning-card.small-card .image-wrapper {
  position: relative;
  width: 120%;
  height: 100%;
  margin: 0;
}
.learning-section .learning-card.small-card .image-wrapper img {
  width: 100%;
  margin: 0;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: -25px;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.learning-section .learning-card.small-card .image-wrapper img.image-1 {
  opacity: 1;
}
.learning-section .learning-card.small-card .image-wrapper img.image-2 {
  opacity: 0;
}
.learning-section .learning-card.small-card:hover .image-wrapper img.image-1 {
  opacity: 0;
}
.learning-section .learning-card.small-card:hover .image-wrapper img.image-2 {
  opacity: 1;
}
.learning-section .learning-card.small-card .card-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.learning-section .learning-card.small-card .card-content p {
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.5;
}
.learning-section .learning-card.large-card {
  grid-column: span 2;
  padding: 0;
  background: #111;
  min-height: 300px;
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-card.large-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
    max-width: 500px;
    min-height: 280px;
  }
  .learning-section .learning-card.large-card img {
    width: 90%;
    height: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .learning-section .learning-card.large-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
  }
}
.learning-section .learning-card.large-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.learning-section .learning-card.large-card img.image-1 {
  opacity: 1;
}
.learning-section .learning-card.large-card img.image-2 {
  opacity: 0;
}
.learning-section .learning-card:hover img.image-1 {
  opacity: 0;
}
.learning-section .learning-card:hover img.image-2 {
  opacity: 1;
}
.learning-section .learning-card.testimonial-card {
  grid-column: span 2;
  background: #121212;
  padding: 2rem 1rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (min-width: 480px) {
  .learning-section .learning-card.testimonial-card {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-card.testimonial-card {
    grid-column: span 1;
    max-width: 100%;
    padding: 1.5rem 2rem;
    width: 100%;
    height: 13rem;
  }
  .learning-section .learning-card.testimonial-card .quote {
    font-size: 4rem;
  }
  .learning-section .learning-card.testimonial-card p {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .learning-section .learning-card.testimonial-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card {
    padding: 1rem 0rem 4rem 2rem;
    width: 100%;
    height: auto;
  }
  .learning-section .learning-card.testimonial-card p {
    font-size: 0.8rem;
    max-width: 19rem;
  }
}
.learning-section .learning-card.testimonial-card .quote-desc {
  position: relative;
  padding-bottom: 14px;
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card .quote-desc {
    padding-bottom: 2.5rem;
  }
}
.learning-section .learning-card.testimonial-card .quote {
  position: relative;
  top: -21px;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
  width: auto;
  height: 0px;
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card .quote {
    margin-bottom: 0.8rem;
    height: 1.5rem;
    top: 0;
  }
}
.learning-section .learning-card.testimonial-card .quote .quote-image {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  display: block;
  transform: translate(0, -3rem);
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card .quote .quote-image {
    width: 1.5rem;
    height: 4rem;
    transform: translate(0, -1rem);
  }
}
.learning-section .learning-card.testimonial-card p {
  position: absolute;
  top: 40%;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 90%;
  opacity: 0;
  animation: contentSwap 6s ease-out infinite;
  color: #ffffff;
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 30%, rgba(0, 0, 0, 0.35) 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 30%, rgba(0, 0, 0, 0.35) 100%);
}
@media (max-width: 480px) {
  .learning-section .learning-card.testimonial-card p {
    font-size: 0.7rem;
    max-width: 84%;
    top: 0;
  }
}
.learning-section .learning-card.testimonial-card p.quote-1 {
  animation-delay: 0s;
}
.learning-section .learning-card.testimonial-card p.quote-2 {
  animation-delay: 3s;
}
.learning-section .learning-card.testimonial-card p span {
  background: linear-gradient(180deg, #ffa64d 0%, #F47923 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.learning-section .learning-card.stats-card {
  grid-column: span 1;
  width: 301px;
  height: 252px;
  text-align: center;
  background: #141414;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .learning-section .learning-card.stats-card {
    grid-column: span 1;
    width: 328px;
    height: 119px;
    text-align: center;
    background: #141414;
    padding: 1rem 1rem 1rem 1.6rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 480px) and (max-width: 1024px) {
  .learning-section .learning-card.stats-card {
    grid-column: span 1;
    max-width: 100%;
    width: 280px;
    height: 240px;
  }
  .learning-section .learning-card.stats-card h2 {
    font-size: 3.5rem;
  }
  .learning-section .learning-card.stats-card p {
    font-size: 1rem;
  }
  .learning-section .learning-card.stats-card .avatars img {
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  .learning-section .learning-card.stats-card {
    grid-column: span 1;
    max-width: 100%;
    width: 100%;
  }
}
.learning-section .learning-card.stats-card h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 4rem;
  background: linear-gradient(to bottom, #F47923 0%, #6d3103 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.learning-section .learning-card.stats-card p {
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .learning-section .learning-card.stats-card p {
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: absolute;
    bottom: -18px;
    left: 31px;
  }
}
.learning-section .learning-card.stats-card .avatars {
  display: flex;
  justify-content: center;
}
.learning-section .learning-card.stats-card .avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #141414;
  margin-left: -15px;
}
.learning-section .learning-card.stats-card .avatars img:first-child {
  margin-left: 0;
}

/* === ANIMATIONS === */
@keyframes feature-cards-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
@keyframes contentSwap {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.opportunities {
  color: #e8e6e5;
  padding-top: 2.5rem;
}
@media (max-width: 768px) {
  .opportunities {
    padding-top: 1.5rem;
  }
}
.opportunities .label {
  font-size: 1rem;
  color: #b3b3b3;
  margin-bottom: 0.5rem;
}
.opportunities .title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .opportunities .title {
    font-size: 18px;
    text-align: center;
  }
}
.opportunities .title .highlight {
  color: #F47923;
}
.opportunities .see-all {
  float: right;
  color: #b3b3b3;
  margin-top: -2rem;
  font-size: 1rem;
  text-decoration: underline;
  cursor: pointer;
}
.opportunities {
  /* Categories */
}
.opportunities__categories {
  margin: 2.5rem 0;
  display: flex;
  gap: 1.2rem;
}
@media (max-width: 768px) {
  .opportunities__categories {
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .opportunities__categories::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 600px) {
  .opportunities__categories {
    gap: 0.5rem;
    padding-bottom: 0 !important;
    margin: 1rem 0 0.5rem 0;
  }
}
@media (max-width: 600px) {
  .opportunities__categories .has-arrow {
    padding-right: 0.1rem !important;
  }
  .opportunities__categories .has-arrow.active, .opportunities__categories .has-arrow:hover {
    padding-right: 0.3rem !important;
  }
}
.opportunities__categories .cat-btn {
  background: transparent;
  border: 1px solid #2a2a2a;
  padding: 0.7rem 1.4rem;
  border-radius: 0.7rem;
  font-size: 1rem;
  color: #b3b3b3;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .opportunities__categories .cat-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .opportunities__categories .cat-btn {
    padding: 0.1rem 0.5rem;
    font-size: 15px;
    gap: 0;
  }
}
.opportunities__categories .cat-btn .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
@media (max-width: 600px) {
  .opportunities__categories .cat-btn .arrow-icon {
    width: 15px;
    height: 13px;
  }
}
.opportunities__categories .cat-btn.active, .opportunities__categories .cat-btn:hover {
  background: rgba(244, 121, 35, 0.1);
  border-color: #F47923;
  color: #F47923;
}
.opportunities__categories .cat-btn.active .arrow-icon, .opportunities__categories .cat-btn:hover .arrow-icon {
  transform: translateX(3px);
}
.opportunities {
  /* Cards Container - holds both buttons and wrapper */
}
.opportunities__cards-container {
  position: relative;
}
.opportunities__cards-container .scroll-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #000;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s ease;
  color: #fff;
  border: none;
}
@media (max-width: 768px) {
  .opportunities__cards-container .scroll-nav {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 576px) {
  .opportunities__cards-container .scroll-nav {
    width: 2rem;
    height: 2rem;
  }
}
.opportunities__cards-container .scroll-nav:hover {
  background: #1a1a1a;
  transform: translateY(-50%) scale(1.1);
}
.opportunities__cards-container .scroll-nav--left {
  left: calc(max(0px, (100% - 1800px) / 2) + 28px);
}
.opportunities__cards-container .scroll-nav--right {
  right: calc(max(0px, (100% - 1800px) / 2) + 28px);
}
.opportunities__cards-container .scroll-nav svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .opportunities__cards-container .scroll-nav svg {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 576px) {
  .opportunities__cards-container .scroll-nav svg {
    width: 1rem;
    height: 1rem;
  }
}
.opportunities {
  /* Cards Wrapper */
}
.opportunities__cards-wrapper {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
@media (max-width: 576px) {
  .opportunities__cards-wrapper {
    scroll-snap-type: x mandatory;
    -webkit-mask-image: none;
    mask-image: none;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.opportunities__cards-wrapper::-webkit-scrollbar {
  display: none;
}
.opportunities__cards {
  display: flex;
  gap: 2rem;
  padding: 1rem 4rem 1rem 4rem;
  width: max-content;
}
@media (max-width: 768px) {
  .opportunities__cards {
    padding: 1rem 3rem 1rem 3rem;
  }
}
@media (max-width: 576px) {
  .opportunities__cards {
    padding: 1rem 0;
  }
}
.opportunities {
  /* Card */
}
.opportunities .opp-card {
  width: 360px;
  background: #141414;
  border: 1.2px solid transparent;
  background: linear-gradient(#141414, #141414) padding-box, linear-gradient(135deg, rgba(244, 121, 35, 0.85) 0%, rgba(244, 121, 35, 0.55) 20%, rgba(244, 121, 35, 0.25) 40%, rgba(244, 121, 35, 0.12) 60%, rgba(244, 121, 35, 0.05) 80%, transparent 100%) border-box;
  border-radius: 1rem;
  padding: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
@media (max-width: 768px) {
  .opportunities .opp-card {
    width: 320px;
    padding: 1rem;
    gap: 0.8rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card {
    width: calc(100vw - 16px * 2);
    padding: 1rem;
    gap: 0.7rem;
    scroll-snap-align: center;
  }
}
.opportunities .opp-card:hover {
  transform: translateY(-5px);
}
.opportunities .opp-card:hover::before {
  content: "";
  position: absolute;
  top: -140%;
  left: 0;
  width: 100%;
  height: 190%;
  background: radial-gradient(circle, rgba(244, 121, 35, 0.35), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.opportunities .opp-card .opp-card__body {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.opportunities .opp-card .opp-card__body .opp-card__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__title {
    font-size: 0.8rem;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__title {
    font-size: 0.7rem;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
  }
}
.opportunities .opp-card .opp-card__body .opp-card__title img {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__title img {
    width: 2rem;
    height: 2rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__title img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.opportunities .opp-card .opp-card__body .opp-card__tags {
  margin: 0.8rem 0;
  display: flex;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__tags {
    gap: 0.5rem;
    margin: 0.6rem 0;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__tags {
    gap: 0.4rem;
    margin: 0.5rem 0;
    flex-wrap: wrap;
  }
}
.opportunities .opp-card .opp-card__body .opp-card__tags .tag {
  background: #1f1f1f;
  padding: 0.3rem 0.7rem;
  border-radius: 0.7rem;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__tags .tag {
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__tags .tag {
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
  }
}
.opportunities .opp-card .opp-card__body .opp-card__desc {
  font-size: 0.8rem;
  color: #b3b3b3;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .opportunities .opp-card .opp-card__body .opp-card__desc {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .opp-card__body .opp-card__desc {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}
.opportunities .opp-card .opp-card__image {
  width: 100%;
  aspect-ratio: 12/5;
  background: #141414;
  border-radius: 0.7rem;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.opportunities .opp-card .opp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opportunities .opp-card .btn-view {
  display: block;
  width: 100%;
  margin-top: auto;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  border: 1px solid #F47923;
  color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease, transform 0.2s ease;
}
@media (max-width: 768px) {
  .opportunities .opp-card .btn-view {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 576px) {
  .opportunities .opp-card .btn-view {
    font-size: 0.75rem;
    padding: 0.55rem 0.8rem;
  }
}
.opportunities .opp-card .btn-view:hover {
  background: rgba(244, 121, 35, 0.12);
  transform: translateY(-2px);
}
.opportunities .cta_container {
  background-image: url("/assets/images/opportunities/cta-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 2rem auto 0;
  padding: 1rem 48px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1800px;
}
@media (max-width: 768px) {
  .opportunities .cta_container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .opportunities .cta_container {
    margin-top: 0 !important;
  }
}
@media (max-width: 600px) {
  .opportunities .cta_container .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.opportunities {
  /* Bottom CTA Box */
}
.opportunities__cta {
  padding: 3rem 4rem;
  border-radius: 2rem;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  overflow: visible;
}
@media (max-width: 768px) {
  .opportunities__cta {
    padding: 2rem;
    border-radius: 1.5rem;
  }
}
@media (max-width: 600px) {
  .opportunities__cta {
    padding: 20px 18px;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 1rem;
    overflow: visible;
  }
}
.opportunities__cta h3 {
  font-size: 2.7rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  z-index: 2;
  position: relative;
  max-width: 50rem;
}
@media (max-width: 768px) {
  .opportunities__cta h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .opportunities__cta h3 {
    font-size: 13px;
    margin-bottom: 1rem;
    max-width: 160px;
  }
}
.opportunities__cta h3 span {
  color: #F47923;
}
.opportunities__cta .cta-btn-orange {
  display: none;
  background: #ff7b23;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}
@media (max-width: 600px) {
  .opportunities__cta .cta-btn-orange {
    display: inline-block;
    font-size: 0.5rem;
    padding: 0.5rem 1rem;
  }
}
.opportunities__cta .cta-btn-orange:hover {
  background: rgb(239, 95.6, 0);
  transform: translateY(-2px);
}
.opportunities__cta .cta-text .cta-link-wrapper {
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 600px) {
  .opportunities__cta .cta-text .cta-link-wrapper {
    display: none;
  }
}
.opportunities__cta .cta-text .cta-link-wrapper:hover .cta-subtext {
  color: #ffffff;
}
.opportunities__cta .cta-text .cta-link-wrapper:hover .cta-subtext svg {
  transform: translate(3px, -3px);
}
.opportunities__cta .cta-text .cta-subtext {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b3b3b3;
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .opportunities__cta .cta-text .cta-subtext {
    font-size: 1rem;
  }
}
.opportunities__cta .cta-text .cta-subtext svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}
.opportunities__cta .cta-icon {
  width: 18rem;
  height: 22rem;
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%) rotate(-5deg);
  z-index: 1;
}
@media (max-width: 768px) {
  .opportunities__cta .cta-icon {
    width: 14rem;
    height: 18rem;
    right: 2rem;
  }
}
@media (max-width: 600px) {
  .opportunities__cta .cta-icon {
    width: 8rem;
    height: 11rem;
    position: absolute;
    right: -0.5rem;
    top: 35%;
    transform: translateY(-50%) rotate(-5deg);
    margin-top: 0;
    z-index: 5;
  }
}
.opportunities__cta .cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 25px;
  opacity: 0;
  animation: imageSwap 6s ease-out infinite;
}
.opportunities__cta .cta-icon img.image-1 {
  animation-delay: 0.5s;
}
.opportunities__cta .cta-icon img.image-2 {
  animation-delay: 3.5s;
}
.opportunities__cta .cta-icon-bg {
  width: 500px;
  height: 260px;
  background: url("/assets/images/opportunities/light-image-bg.png") no-repeat center/contain;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .opportunities__cta .cta-icon-bg {
    width: 400px;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .opportunities__cta .cta-icon-bg {
    display: none;
  }
}

/* === ANIMATIONS === */
@keyframes imageSwap {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cardBorderMove {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.skills-section {
  padding: 0.5rem 0 3rem;
  overflow: hidden;
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .skills-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.skills-section {
  margin: 0 auto 0 auto !important;
}
@media (max-width: 480px) {
  .skills-section {
    padding: 0 !important;
  }
}
.skills-section .skills-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}
@media (max-width: 480px) {
  .skills-section .skills-container {
    padding: 0 !important;
  }
}
.skills-section .skills-header {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .skills-section .skills-header {
    padding: 0 20px;
    width: 8rem;
  }
}
.skills-section .skills-header .label {
  display: block;
  font-size: 2.2rem;
  width: 10rem;
  margin-top: 5px;
  color: #F47923;
  font-weight: 700;
}
@media (max-width: 480px) {
  .skills-section .skills-header .label {
    width: 9rem;
  }
}
.skills-section .skills-marquee {
  flex: 1;
  position: relative;
  width: auto;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.skills-section .skills-marquee .track {
  display: flex;
  gap: 80px;
  animation: marquee 80s linear infinite;
  width: max-content;
}
.skills-section .skills-marquee .track .item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.8rem;
  color: #e8e6e5;
  font-weight: 500;
}
.skills-section .skills-marquee .track .item img {
  height: 64px;
  width: auto;
  opacity: 1;
}
.skills-section .skills-marquee .track .item img[alt=CSS],
.skills-section .skills-marquee .track .item img[alt=HTML] {
  height: 84px;
}
.skills-section .skills-marquee .track .item i {
  font-size: 58px;
  line-height: 1;
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .skills-section .skills-container {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
  .skills-section .skills-marquee {
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .skills-section .skills-marquee .track {
    gap: 40px;
  }
  .skills-section .skills-marquee .track .item {
    font-size: 1.2rem;
  }
  .skills-section .skills-header .count {
    font-size: 2rem;
  }
  .skills-section .skills-header .label {
    font-size: 1.4rem;
  }
}
@media (max-width: 600px) {
  .skills-section .skills-marquee .track {
    gap: 28px;
  }
  .skills-section .skills-marquee .track .item {
    font-size: 0.9rem;
    gap: 8px;
  }
  .skills-section .skills-marquee .track .item img {
    height: 30px;
    width: auto;
  }
  .skills-section .skills-marquee .track .item img[alt=CSS],
  .skills-section .skills-marquee .track .item img[alt=HTML] {
    height: 38px;
  }
  .skills-section .skills-marquee .track .item i {
    font-size: 26px;
    line-height: 1;
  }
}
.tech-section {
  font-family: "Ubuntu", sans-serif;
  color: #fff;
}
@media (max-width: 1024px) {
  .tech-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .tech-section {
    padding: 50px 0;
  }
}
@media (max-width: 600px) {
  .tech-section {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .tech-section {
    padding: 30px 0;
  }
}
.tech-section .container {
  max-width: 1800px !important;
  margin: auto !important;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .tech-section .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.tech-section .cta_container {
  padding: 32px 0 64px 0;
  background-image: url("/assets/images/opportunities/cta-bg.png");
  background-size: cover;
}
@media (max-width: 480px) {
  .tech-section .cta_container {
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 1024px) {
  .tech-section .alumni-brands {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .tech-section .alumni-brands {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .tech-section .alumni-brands {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .tech-section .alumni-brands {
    margin-bottom: 35px;
  }
}
.tech-section .alumni-brands .alumni-title {
  font-size: 23px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
  display: inline-block;
  background: linear-gradient(90deg, #5f5f5f 0%, #ffffff 50%, #5f5f5f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {
  .tech-section .alumni-brands .alumni-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .tech-section .alumni-brands .alumni-title {
    font-size: 24px;
    margin-bottom: 35px;
  }
}
@media (max-width: 600px) {
  .tech-section .alumni-brands .alumni-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .tech-section .alumni-brands .alumni-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.tech-section .alumni-brands .alumni-title .brands-text {
  background: none;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.tech-section .alumni-brands .brands-logos {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.tech-section .alumni-brands .brands-logos .track {
  display: flex;
  gap: 100px;
  animation: brands-marquee 25s linear infinite;
  width: max-content;
  align-items: center;
}
@media (max-width: 1024px) {
  .tech-section .alumni-brands .brands-logos .track {
    gap: 80px;
    animation: brands-marquee 20s linear infinite;
  }
}
@media (max-width: 768px) {
  .tech-section .alumni-brands .brands-logos .track {
    gap: 60px;
    animation: brands-marquee 18s linear infinite;
  }
}
@media (max-width: 600px) {
  .tech-section .alumni-brands .brands-logos .track {
    gap: 50px;
    animation: brands-marquee 15s linear infinite;
  }
}
@media (max-width: 480px) {
  .tech-section .alumni-brands .brands-logos .track {
    gap: 40px;
    animation: brands-marquee 15s linear infinite;
  }
}
.tech-section .alumni-brands .brands-logos .track .brand-logo {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .tech-section .alumni-brands .brands-logos .track .brand-logo {
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .tech-section .alumni-brands .brands-logos .track .brand-logo {
    max-width: 130px;
  }
}
@media (max-width: 600px) {
  .tech-section .alumni-brands .brands-logos .track .brand-logo {
    max-width: 85px;
  }
}
@media (max-width: 480px) {
  .tech-section .alumni-brands .brands-logos .track .brand-logo {
    max-width: 70px;
  }
}
.tech-section .alumni-brands .brands-logos .track .brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  animation-play-state: paused;
}
.tech-section .alumni-brands .brands-logos:hover .track {
  animation-play-state: paused;
}
.tech-section .tech-talks {
  margin-top: 64px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .tech-section .tech-talks {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .tech-section .tech-talks {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks {
    margin-top: 28px;
  }
}
.tech-section .tech-talks .section-label {
  font-size: 16px;
  color: #bbbbbb;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .tech-section .tech-talks .section-label {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .section-label {
    font-size: 13px;
  }
}
.tech-section .tech-talks .section-title {
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 20px;
  margin-left: 0;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .tech-section .tech-talks .section-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .tech-section .tech-talks .section-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  .tech-section .tech-talks .section-title {
    font-size: 18px;
    text-align: center;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .section-title {
    font-size: 18px;
    text-align: center;
    margin-left: 0;
  }
}
.tech-section .tech-talks .section-title .highlight {
  color: #F47923;
  font-weight: 400;
}
.tech-section .tech-talks .section-subtitle {
  font-size: 1.2rem;
  color: #c9c9c9;
  margin-bottom: 50px;
  margin-left: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .tech-section .tech-talks .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
@media (max-width: 600px) {
  .tech-section .tech-talks .section-subtitle {
    font-size: 13px;
    margin-left: 17px;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .section-subtitle {
    font-size: 12px;
  }
}
.tech-section .tech-talks .gallery-grid {
  display: grid;
  grid-template-columns: 820px 490px;
  gap: 1rem;
  margin-bottom: 50px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .tech-section .tech-talks .gallery-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 0.75rem;
    justify-content: stretch;
  }
}
@media (max-width: 768px) {
  .tech-section .tech-talks .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
@media (max-width: 600px) {
  .tech-section .tech-talks .gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0;
    margin: 0 0 50px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tech-section .tech-talks .gallery-grid::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0;
    margin: 0 0 50px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tech-section .tech-talks .gallery-grid::-webkit-scrollbar {
    display: none;
  }
}
.tech-section .tech-talks .gallery-grid .img-card {
  border-radius: 38px;
  overflow: hidden;
  height: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
@media (max-width: 1024px) {
  .tech-section .tech-talks .gallery-grid .img-card {
    height: 280px;
    border-radius: 40px;
  }
}
@media (max-width: 768px) {
  .tech-section .tech-talks .gallery-grid .img-card {
    height: 240px;
    border-radius: 35px;
  }
}
@media (max-width: 600px) {
  .tech-section .tech-talks .gallery-grid .img-card {
    height: 240px;
    border-radius: 15px;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card {
    height: 200px;
    border-radius: 14px;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
.tech-section .tech-talks .gallery-grid .img-card:hover {
  transform: translateY(-5px);
  /* Vintage inner shadow */
}
.tech-section .tech-talks .gallery-grid .img-card:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(to top, rgb(2, 1, 0), rgba(0, 0, 0, 0.35) 70%, rgba(1, 0, 0, 0.9) 100%);
  filter: blur(24px);
  transform: translateY(16px);
  z-index: 0;
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card:hover::after {
    height: 70%;
  }
}
.tech-section .tech-talks .gallery-grid .img-card:hover .img-overlay {
  opacity: 1;
  transform: translateY(0);
}
.tech-section .tech-talks .gallery-grid .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.tech-section .tech-talks .gallery-grid .img-card {
  /* Text-only overlay (NO background) */
}
.tech-section .tech-talks .gallery-grid .img-card .img-overlay {
  color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 30px;
  /* No background */
  background: none;
  backdrop-filter: none;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
  z-index: 2;
}
.tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-title {
    font-size: 12px;
    color: #e8e6e5;
  }
}
.tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-title span {
  font-weight: 400;
  color: #c9c9c9;
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-title span {
    color: #e8e6e5;
  }
}
.tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #bbbbbb;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .tech-section .tech-talks .gallery-grid .img-card .img-overlay .overlay-subtitle {
    font-size: 9px;
  }
}
.tech-section .tech-talks .cta-container {
  text-align: center;
}
.tech-section .tech-talks .cta-container .cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 1rem;
  border: 2px solid #F47923;
  color: #F47923;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .tech-section .tech-talks .cta-container .cta-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .tech-section .tech-talks .cta-container .cta-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}
.tech-section .tech-talks .cta-container .cta-btn:hover {
  background: #F47923;
  color: #000;
  transform: translateY(-2px);
}

@keyframes brands-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (min-width: 1024px) {
  .hero,
  .skills-section,
  .about-section .container,
  .opportunities .container,
  .opportunities__cards-wrapper,
  .learning-section .container,
  .tech-section .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.dashboard__hero {
  margin: 1rem 0 2.5rem 0;
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  background-color: #181818;
  background-image: url(/assets/images/course/bg-frame.png);
  background-position: right center;
  background-size: auto 100%;
}
@media (max-width: 768px) {
  .dashboard__hero {
    margin: 0 0 1.5rem 0;
    padding: 1.5rem 1rem;
  }
}
.dashboard__hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  margin: 0 0.5rem;
}
.dashboard__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  color: #cfcfcf;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.dashboard__badge i {
  color: #ffe089;
  font-size: 0.85rem;
}
.dashboard__title {
  font-size: 45px;
  font-weight: 400;
  color: #e8e6e5;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
  max-width: 30rem;
}
.dashboard__title .highlight {
  color: #F47923;
}
@media (max-width: 1024px) {
  .dashboard__title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .dashboard__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .dashboard__title {
    font-size: 1.5rem;
    width: 16rem;
  }
}
.dashboard__subtitle {
  font-size: 19px;
  color: #cfcfcf;
  margin: 0 0 1.5rem 0;
  max-width: 650px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .dashboard__subtitle {
    font-size: 10px;
  }
}

.dashboard {
  max-width: 1800px;
  margin: 20px auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (min-width: 1024px) {
  .dashboard {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 768px) {
  .dashboard {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.dashboard__search {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 400px;
}
@media (max-width: 768px) {
  .dashboard__search {
    max-width: 100%;
  }
}
.dashboard__search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 0.6rem 1rem;
  border-radius: 0.6rem 0 0 0.6rem;
  flex: 1;
}
.dashboard__search-input-wrapper i {
  color: #cfcfcf;
  font-size: 1rem;
}
.dashboard__search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #e8e6e5;
  font-size: 0.9rem;
  width: 100%;
  font-family: "Ubuntu", sans-serif;
}
.dashboard__search-input::placeholder {
  color: #cfcfcf;
  opacity: 0.5;
}
.dashboard__search-btn {
  background-color: #F47923;
  color: #e8e6e5;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 0 0.6rem 0.6rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.dashboard__search-btn:hover {
  background-color: rgb(241.4285714286, 106.4480519481, 12.0714285714);
}
.dashboard__filters-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .dashboard__filters-section {
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }
}
.dashboard__filters-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 635px;
  min-width: 635px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .dashboard__filters-left {
    width: 100%;
    min-width: 0;
    order: 2;
  }
}
.dashboard__filter-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  scroll-behavior: smooth;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.dashboard__filter-list {
  display: flex;
  gap: 0.5rem;
  white-space: nowrap;
}
.dashboard__filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: transparent;
  color: #e8e6e5;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Ubuntu", sans-serif;
}
.dashboard__filter-btn--active {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dfc8 100%);
  color: #F47923;
  border-color: transparent;
  font-weight: 600;
}
.dashboard__filter-btn:hover:not(.dashboard__filter-btn--active) {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
}
@media (max-width: 480px) {
  .dashboard__filter-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }
}
.dashboard__filter-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.dashboard__filter-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.dashboard__filter-arrow:hover {
  opacity: 0.7;
}
.dashboard__filters-right {
  display: flex;
  align-items: center;
  width: 46%;
  min-width: 537px;
  flex-shrink: 0;
  gap: 3rem;
}
@media (max-width: 768px) {
  .dashboard__filters-right {
    width: 100%;
    min-width: 0;
    order: 1;
    gap: 17px;
    background: #1a1a1a;
    border: 1.5px solid rgba(244, 121, 35, 0.5);
    border-radius: 3px;
    padding: 9px 11px;
    overflow: hidden;
  }
}
.dashboard__filter-search-wrapper {
  flex: 1;
  background: rgba(235, 228, 215, 0.9);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .dashboard__filter-search-wrapper {
    background: rgba(235, 228, 215, 0.92);
    border: none;
    padding: 5px 10px;
  }
}
.dashboard__filter-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #2a2a2a;
  font-size: 0.9rem;
  font-family: "Ubuntu", sans-serif;
}
.dashboard__filter-input::placeholder {
  color: #888;
}
.dashboard__filter-search-btn {
  background: #F47923;
  color: #fff;
  border: none;
  padding: 0.68rem 2.25rem;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
  min-width: 200px;
}
.dashboard__filter-search-btn:hover {
  background: rgb(226.8571428571, 100.0233766234, 11.3428571429);
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .dashboard__filter-search-btn {
    border-radius: 15px;
    min-width: unset;
    padding: 0.65rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .dashboard__filter-search-btn {
    padding: 5px 25px;
    font-size: 15px;
  }
}

.dashboard__course-card {
  background-color: #141414;
  border: 1px solid rgba(244, 121, 35, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  width: 100%;
}
.dashboard__course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(244, 121, 35, 0.15);
}
@media (max-width: 768px) {
  .dashboard__course-card {
    width: 100%;
  }
}
.dashboard__course-image {
  width: 100%;
  padding: 0.8rem;
  background-color: #141414;
}
.dashboard__course-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.6rem;
  transition: transform 0.3s ease;
}
.dashboard__course-card:hover .dashboard__course-image img {
  transform: scale(1.02);
}
.dashboard__course-info {
  padding: 0.75rem 1rem 1rem;
}
.dashboard__course-top-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}
.dashboard__course-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e8e6e5;
  margin: 0 0 0.4rem 0;
  line-height: 1.3;
}
.dashboard__course-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #cfcfcf;
}
.dashboard__course-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("/assets/images/course/cr-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.dashboard__section {
  margin-bottom: 2.5rem;
}
.dashboard__section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.dashboard__section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e8e6e5;
  margin: 0;
  white-space: nowrap;
}
.dashboard__section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
}
.dashboard__courses-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0 auto;
  width: 100%;
  max-width: none;
  justify-content: center;
  justify-items: stretch;
  position: relative;
}
.dashboard__courses-grid > a.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.dashboard__courses-grid > a.reveal.is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .dashboard__courses-grid > a.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.dashboard__courses-grid--three-col {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .dashboard__courses-grid--three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dashboard__courses-grid--three-col {
    grid-template-columns: 1fr;
  }
}
.dashboard__courses-grid--small {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (max-width: 768px) {
  .dashboard__courses-grid--small {
    grid-template-columns: 1fr;
  }
}
.dashboard__courses-grid--large {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .dashboard__courses-grid--large {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .dashboard__courses-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dashboard__courses-grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .dashboard__courses-grid--large {
    grid-template-columns: 1fr;
  }
}
.dashboard__view-more {
  display: none;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .dashboard__view-more {
    display: flex;
  }
}
@media (max-width: 480px) {
  .dashboard__view-more {
    display: flex;
  }
}
.dashboard__view-more-btn {
  background-color: transparent;
  color: #e8e6e5;
  border: 2px solid #F47923;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: "Ubuntu", sans-serif;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.dashboard__view-more-btn:hover {
  background-color: #F47923;
  border-color: #F47923;
}
.dashboard__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1rem;
}
.dashboard__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease ease-in-out;
  font-family: "Ubuntu", sans-serif;
}
.dashboard__pagination-btn:hover:not(.disabled):not(.dashboard__pagination-btn--active) {
  background: rgba(255, 255, 255, 0.1);
  color: #e8e6e5;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.dashboard__pagination-btn--active {
  background: linear-gradient(135deg, #f5f0e8 0%, #e8dfc8 100%);
  color: #F47923;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.dashboard__pagination-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.02);
}
.dashboard__pagination-btn i {
  font-size: 0.8rem;
}
.dashboard__no-results {
  grid-column: 1/-1;
  padding: 3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  color: #cfcfcf;
  font-size: 1.1rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}
.dashboard__loader {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  grid-column: 1/-1;
  width: 100%;
  margin: 2rem 0;
}
.dashboard__spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid #F47923;
  border-radius: 50%;
  animation: dashboard-spin 1s linear infinite;
}

@keyframes dashboard-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.course-popup {
  position: absolute;
  top: calc(100% + 20px);
  left: 229%;
  transform: translateX(-50%);
  width: 900px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.course-popup.open {
  display: block;
  animation: courseFadeIn 0.3s ease-out;
}
.course-popup__arrow {
  position: absolute;
  top: -12px;
  left: 28%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 14px solid #ffffff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.03));
}
.course-popup__container {
  display: flex;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
}
.course-popup__sidebar {
  width: 220px;
  background: #ffffff;
  border-right: 1px solid #f0f0f0;
  padding: 30px 0;
  flex-shrink: 0;
}
.course-popup__categories {
  display: ruby !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.course-popup__category {
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: #8c5d3f;
  font-weight: 500;
  font-size: 17px;
  width: 100%;
}
.course-popup__category i {
  font-size: 18px;
  opacity: 0.6;
  transition: transform 0.25s ease;
}
.course-popup__category:hover {
  background: rgba(244, 121, 35, 0.04);
  color: #F47923;
}
.course-popup__category:hover i {
  transform: translateX(3px);
  opacity: 1;
}
.course-popup__category.active {
  background: #F47923;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(244, 121, 35, 0.2);
}
.course-popup__category.active i {
  opacity: 1;
  transform: translateX(3px);
}
.course-popup__divider {
  height: 1px;
  background: #f0f0f0;
  margin: 15px 30px;
}
.course-popup__content {
  flex: 1;
  padding: 40px;
  background: #fcfcfc;
}
.course-popup__content-header {
  margin-bottom: 30px;
  border-bottom: 2px solid #efefef;
  padding-bottom: 12px;
}
.course-popup__content-title {
  font-size: 22px;
  color: #2d2d2d;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.course-popup__courses-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 15px;
  /* Custom Scrollbar */
}
.course-popup__courses-grid::-webkit-scrollbar {
  width: 5px;
}
.course-popup__courses-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.course-popup__courses-grid::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 10px;
}
.course-popup__courses-grid::-webkit-scrollbar-thumb:hover {
  background: #b1b1b1;
}
.course-popup__item {
  display: flex;
  gap: 25px;
  background: #f3f3f3;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.course-popup__item:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(244, 121, 35, 0.1);
  cursor: pointer;
}
.course-popup__item-image {
  width: 160px;
  height: 110px;
  background: #dcdcdc;
  border-radius: 10px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.course-popup__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.course-popup__item-title {
  font-size: 20px;
  color: #333333;
  margin: 0 0 6px 0;
  font-weight: 600;
}
.course-popup__item-desc {
  font-size: 16px;
  color: #777777;
  margin: 0 0 12px 0;
  line-height: 1.4;
}
.course-popup__item-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #999999;
  font-weight: 500;
}
.course-popup__item-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.course-popup__item-meta span i {
  font-size: 15px;
  color: #bbbbbb;
}

@keyframes courseFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -15px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
/* Mobile Responsive for Popup */
@media (max-width: 768px) {
  .course-popup {
    position: static;
    width: 100%;
    max-width: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    transform: none;
    margin: 0;
  }
  .course-popup.open {
    display: block;
    animation: none;
  }
  .course-popup__arrow {
    display: none;
  }
  .course-popup__container {
    display: none;
  }
  .course-popup__mobile-view {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0 1.5rem 0;
  }
  .course-popup__mobile-category-group {
    margin-bottom: 2rem;
  }
  .course-popup__mobile-category-group:last-child {
    margin-bottom: 0;
  }
  .course-popup__mobile-category-group::after {
    content: "";
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
  }
  .course-popup__mobile-category-group:last-child::after {
    display: none;
  }
  .course-popup__mobile-category-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
  }
  .course-popup__mobile-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .course-popup__mobile-list li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-left: 0.8rem;
  }
  .course-popup__mobile-list li:last-child {
    border-bottom: none;
  }
  .course-popup__mobile-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0.5rem;
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
  }
  .course-popup__mobile-list li a span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .course-popup__mobile-list li a i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 10px;
  }
  .course-popup__mobile-list li a:hover {
    color: #F47923 !important;
  }
  .course-popup__mobile-list li a:hover i {
    color: #F47923;
    transform: translateX(3px);
  }
  .nav-btn.dropdown-toggle.open i.ri-arrow-right-s-line {
    transform: rotate(90deg);
  }
}
.course-idv {
  background-color: #0A0A0A;
  color: #e8e6e5;
  padding-bottom: 5rem;
  display: flex;
  flex-direction: column;
}
.course-idv .container,
.course-idv .container--wide {
  max-width: 1700px;
  width: 95%;
}
.course-idv__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 3rem;
  line-height: 1.2;
  margin-left: 0;
}
.course-idv__section-title .highlight {
  color: #F47923 !important;
}
@media (max-width: 480px) {
  .course-idv__section-title {
    margin-left: 0;
    font-size: 25px !important;
  }
}
@media (max-width: 1024px) {
  .course-idv__section-title {
    font-size: 2rem;
    text-align: center;
  }
}
.course-idv__section-subtitle {
  text-align: left;
  font-size: 2.25rem;
  color: #e8e6e5;
  margin-bottom: 0.5rem;
  margin-left: 0;
}
@media (max-width: 1024px) {
  .course-idv__section-subtitle {
    text-align: center;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .course-idv__section-subtitle {
    margin-left: 0;
    font-size: 25px !important;
  }
}
.course-idv__master,
.course-idv .skills-section {
  padding: 1rem 0;
  text-align: left;
  order: 4;
}
@media (max-width: 1024px) {
  .course-idv__master,
  .course-idv .skills-section {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .course-idv .skills-section .skills-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    text-align: left;
  }
}
@media (max-width: 1024px) {
  .course-idv .skills-section .skills-header {
    width: auto;
  }
}
@media (max-width: 1024px) {
  .course-idv .skills-section .skills-marquee {
    width: 100%;
    flex: 1 1 auto;
  }
}
@media (max-width: 1024px) {
  .course-idv .skills-section .skills-marquee .track {
    justify-content: flex-start;
  }
}
.course-idv__master-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 600px) {
  .course-idv__master-icons {
    gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .course-idv__master-icons .master-icon:last-child {
    grid-column: span 2;
  }
}

.master-icon {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-weight: 500;
}
.master-icon img {
  height: 30px;
  width: auto;
}
.master-icon i {
  font-size: 2rem;
}
.master-icon span {
  font-size: 1.125rem;
}

.course-idv__hero {
  padding: 3rem 0;
  order: 1;
}
@media (max-width: 1024px) {
  .course-idv__hero {
    padding: 2rem 0;
  }
}
@media (max-width: 480px) {
  .course-idv__hero {
    padding: 1rem 0;
  }
}
.course-idv__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 4rem;
  justify-content: stretch;
  align-items: stretch;
}
@media (max-width: 1400px) {
  .course-idv__hero-grid {
    gap: 3rem;
  }
}
@media (max-width: 1200px) {
  .course-idv__hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 696px;
    margin: 0 auto;
    width: 95%;
  }
}
@media (max-width: 768px) {
  .course-idv__hero-grid {
    width: 100%;
    gap: 1.5rem;
  }
}
.course-idv__hero-banner-card {
  background-color: #1A1A1A;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .course-idv__hero-banner-card {
    min-height: auto;
    aspect-ratio: 696/461;
  }
}
@media (max-width: 768px) {
  .course-idv__hero-banner-card {
    max-width: 100%;
    aspect-ratio: auto;
    padding: 1rem;
  }
}
.course-idv__hero-enroll {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.course-idv__hero-banner {
  overflow: hidden;
  width: 100%;
  line-height: 0;
}
.course-idv__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.enroll-card {
  background-color: #1A1A1A;
  border-radius: 1.5rem;
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 640px;
  min-height: 520px;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .enroll-card {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .enroll-card {
    max-width: 100%;
    padding: 1.5rem;
  }
}
.enroll-card__badge {
  border: 2px solid #F47923;
  background-color: #312117;
  color: #e8e6e5;
  display: inline-block;
  padding: 0.1rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 300;
  margin-bottom: 1rem;
  width: fit-content;
}
.enroll-card__title {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 480px) {
  .enroll-card__title {
    font-size: 1.75rem;
  }
}
.enroll-card__meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.enroll-card__meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #cfcfcf;
}
.enroll-card__meta .meta-item i {
  color: #F47923;
  font-size: 1rem;
}
.enroll-card__price {
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.enroll-card__price .price-label {
  color: #F47923;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.enroll-card__price .price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.enroll-card__price .price-old {
  color: #555;
  text-decoration: line-through;
  font-size: 1.3rem;
  font-weight: 500;
}
.enroll-card__price .price-new {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 380px) {
  .enroll-card__price .price-new {
    font-size: 1.25rem;
  }
}
.enroll-card__overview {
  margin-bottom: 1.5rem;
}
.enroll-card__overview .overview-title {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #777;
  margin-bottom: 1rem;
  font-weight: 600;
}
.enroll-card__overview .overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.enroll-card__overview .overview-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #ffffff;
}
.enroll-card__overview .overview-list li i {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}
.enroll-card__btn {
  background-color: #F47923;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  border-radius: 0.4rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  margin-top: auto;
}
.enroll-card__btn:hover {
  background-color: rgb(245.2142857143, 135.7922077922, 59.2857142857);
  transform: translateY(-2px);
}
.enroll-card__btn-icon {
  background: white;
  color: #F47923;
  width: 42px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 1.1rem;
}

.course-idv__benefits {
  padding: 1rem 0;
  order: 3;
}
@media (max-width: 480px) {
  .course-idv__benefits {
    order: 2;
  }
}
.course-idv__benefits__section-title {
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
  margin-left: 0;
  max-width: 65rem;
  text-align: left;
}
.course-idv__benefits__section-title .highlight {
  color: #F47923 !important;
}
@media (max-width: 1024px) {
  .course-idv__benefits__section-title {
    font-size: 22px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .course-idv__benefits__section-title {
    margin-left: 0;
  }
}
.course-idv__benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 769px) {
  .course-idv__benefits-grid {
    background-color: #121212;
    border-radius: 1.5rem;
    padding: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    gap: 0;
  }
}
@media (max-width: 768px) {
  .course-idv__benefits-grid {
    gap: 1rem;
  }
}

.benefits-col {
  display: flex;
  flex-direction: row;
}
@media (min-width: 769px) {
  .benefits-col {
    position: relative;
  }
  .benefits-col:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background-color: rgba(244, 121, 35, 0.08);
  }
}

.benefit-card {
  flex: 1;
  background-color: #121212;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .benefit-card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 2rem;
  }
  .benefit-card:not(:last-child) {
    position: relative;
  }
  .benefit-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(244, 121, 35, 0.08);
  }
}
@media (max-width: 480px) {
  .benefit-card {
    background-color: transparent;
    border: none;
    padding: 10px 0;
    width: 100%;
  }
}
.benefit-card__icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 480px) {
  .benefit-card__icon {
    margin-bottom: 10px;
  }
}
.benefit-card__icon img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .benefit-card__icon img {
    height: 45px;
  }
}
.benefit-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  width: 100%;
  text-align: center;
}
@media (max-width: 480px) {
  .benefit-card__title {
    font-size: 17.1px;
    margin-bottom: 10px;
  }
}
.benefit-card__desc {
  font-size: 0.9rem;
  color: #cfcfcf;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 480px) {
  .benefit-card__desc {
    font-size: 10.5px;
    color: #999;
    line-height: 1.6;
    max-width: 85%;
    margin: 0 auto;
  }
}

.course-idv__mentor {
  padding: 1rem 0;
  order: 5;
}
@media (max-width: 768px) {
  .course-idv__mentor {
    display: none;
  }
}
@media (max-width: 480px) {
  .course-idv__mentor h2 {
    margin-left: 0;
  }
}
.course-idv__mentor-card {
  background-color: #121212;
  border-radius: 1rem;
  padding: 3rem;
  max-width: 92rem;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .course-idv__mentor-card {
    padding: 2rem 1.5rem;
    max-width: 21rem;
  }
}

.mentor-card__container {
  position: relative;
  width: 100%;
}

.mentor-slide {
  display: none;
  width: 100%;
  position: relative;
}
.mentor-slide.active {
  display: flex;
}

.mentor-card__content {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  .mentor-card__content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
.mentor-card__image {
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  border-radius: 1rem;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.active .mentor-card__image {
  opacity: 1;
}
.mentor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .mentor-card__image {
    width: 200px;
    height: 230px;
  }
}
@media (max-width: 480px) {
  .mentor-card__image {
    width: 218px;
    height: 209px;
  }
}
.mentor-card__info .mentor-badge,
.mentor-card__info .mentor-name,
.mentor-card__info .mentor-bio {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.active .mentor-card__info .mentor-badge,
.active .mentor-card__info .mentor-name,
.active .mentor-card__info .mentor-bio {
  opacity: 1;
  transform: translateY(0);
}
.mentor-slide:not(.active) .mentor-card__info .mentor-badge,
.mentor-slide:not(.active) .mentor-card__info .mentor-name,
.mentor-slide:not(.active) .mentor-card__info .mentor-bio {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}
.active .mentor-card__info .mentor-badge {
  transition-delay: 0.1s;
}
.active .mentor-card__info .mentor-name {
  transition-delay: 0.2s;
}
.active .mentor-card__info .mentor-bio {
  transition-delay: 0.3s;
}
.active .mentor-card__info .mentor-title {
  transition-delay: 0.4s;
}
.mentor-card__info .mentor-badge {
  display: inline-block;
  background-color: #6f492e;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 2px solid #F47923;
}
@media (max-width: 480px) {
  .mentor-card__info .mentor-badge {
    display: none;
  }
}
.mentor-card__info .mentor-name {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.mentor-card__info .mentor-name .highlight {
  color: #F47923 !important;
}
@media (max-width: 480px) {
  .mentor-card__info .mentor-name {
    font-size: 17px;
    font-weight: 400;
  }
  .mentor-card__info .mentor-name .highlight {
    display: block;
  }
}
.mentor-card__info .mentor-bio {
  font-size: 1rem;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .mentor-card__info .mentor-bio {
    font-size: 9.6px;
  }
}
.mentor-card__info .mentor-title {
  color: #F47923;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: flex-start;
  position: relative;
  width: fit-content;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .mentor-card__info .mentor-title {
    justify-content: center;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .mentor-card__info .mentor-title {
    font-size: 11px;
  }
}
.active .mentor-card__info .mentor-title {
  opacity: 1;
  transform: translateY(0);
}

.course-idv__topics {
  padding: 1rem 0 0;
  order: 2;
}
@media (max-width: 480px) {
  .course-idv__topics {
    order: 3;
    padding: 0;
  }
}
.course-idv__topics__section-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.course-idv__topics__section-title .highlight {
  color: #F47923 !important;
}
@media (max-width: 1024px) {
  .course-idv__topics__section-title {
    font-size: 22px;
    text-align: center;
  }
}
.course-idv__topics-content {
  background-color: #151515;
  padding: 2rem 0;
  box-shadow: 0 0 0 100vmax #151515;
  clip-path: inset(0 -100vmax);
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .course-idv__topics-content {
    padding: 2rem 0;
  }
}
.course-idv__topics-content .topic-item {
  display: flex;
  gap: 1rem;
}
.course-idv__topics-content .topic-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #e8e6e5;
  border-radius: 50%;
  margin-top: 0.6rem;
  flex-shrink: 0;
}
.course-idv__topics-content .topic-item p {
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}
@media (max-width: 480px) {
  .course-idv__topics-content .topic-item p {
    font-size: 13px;
    line-height: 1.3;
  }
}

.enrollment-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.enrollment-popup-overlay.active {
  display: flex;
}

.enrollment-popup {
  border-radius: 16px;
  width: 100%;
  max-width: 850px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  scroll-behavior: auto !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  contain: paint;
  will-change: transform;
  --glow-width: 20%;
  --glow-x-top: 10%;
  --glow-x-bottom: 90%;
  --glow-top-offset: 0px;
  --glow-bottom-offset: 0px;
  background-color: #121212;
  background-image: linear-gradient(90deg, transparent 0%, rgba(243, 133, 51, 0.1) 15%, rgba(243, 133, 51, 0.5) 30%, #f38533 50%, rgba(243, 133, 51, 0.5) 70%, rgba(243, 133, 51, 0.1) 85%, transparent 100%), linear-gradient(90deg, transparent 0%, rgba(243, 133, 51, 0.1) 15%, rgba(243, 133, 51, 0.5) 30%, #f38533 50%, rgba(243, 133, 51, 0.5) 70%, rgba(243, 133, 51, 0.1) 85%, transparent 100%);
  background-size: var(--glow-width) 2px, var(--glow-width) 2px;
  background-position: var(--glow-x-top) var(--glow-top-offset), var(--glow-x-bottom) calc(100% - var(--glow-bottom-offset));
  background-repeat: no-repeat;
  background-attachment: scroll, scroll;
}
.enrollment-popup::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}
.enrollment-popup {
  /* Nested media queries for enrollment-popup */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .enrollment-popup {
    padding: 30px;
  }
}
@media (max-width: 600px) {
  .enrollment-popup {
    padding: 20px;
  }
}
.enrollment-popup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  /* Nested media queries for __header */
}
@media (max-width: 600px) {
  .enrollment-popup__header {
    margin-bottom: 20px;
  }
}
.enrollment-popup__logo {
  width: 40px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.enrollment-popup__logo img {
  width: 100%;
  height: 100%;
  object-fit: auto;
}
.enrollment-popup__title {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  /* Nested media queries for __title */
}
@media (max-width: 600px) {
  .enrollment-popup__title {
    font-size: 20px;
  }
}
.enrollment-popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: #f38533;
  font-size: 24px;
  cursor: pointer;
  transition: 0.2s ease;
  /* Nested media queries for __close */
}
@media (max-width: 600px) {
  .enrollment-popup__close {
    top: 20px;
    right: 20px;
    font-size: 20px;
  }
}
.enrollment-popup__close:hover {
  transform: scale(1.1);
}
.enrollment-popup__tabs {
  display: flex;
  border-bottom: 1px solid #333333;
  margin-bottom: 40px;
  gap: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.enrollment-popup__tabs::-webkit-scrollbar {
  display: none;
}
.enrollment-popup__tabs {
  /* Nested media queries for __tabs */
}
@media (max-width: 600px) {
  .enrollment-popup__tabs {
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
}
.enrollment-popup__tab {
  background: transparent;
  border: none;
  padding: 0 0 12px 0;
  color: #888888;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: 0.2s ease;
  /* Nested media queries for __tab */
}
@media (max-width: 600px) {
  .enrollment-popup__tab {
    font-size: 13px;
  }
}
.enrollment-popup__tab.active {
  color: #ffffff;
}
.enrollment-popup__tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f38533;
  border-radius: 3px 3px 0 0;
}
.enrollment-popup__tab.completed {
  color: #888888;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.enrollment-popup__tab.completed i {
  color: #f38533;
  font-size: 16px;
}
.enrollment-popup__tab:hover:not(.active):not(.completed) {
  color: #cccccc;
}
.enrollment-popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  /* Nested media queries for __form */
}
@media (max-width: 600px) {
  .enrollment-popup__form {
    margin-bottom: 20px;
  }
}
.enrollment-popup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.enrollment-popup__row.full-width {
  grid-template-columns: 1fr;
}
@media (max-width: 600px) {
  .enrollment-popup__row.kyc-row-2 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (min-width: 600px) {
  .enrollment-popup__row.kyc-row-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .enrollment-popup__row.kyc-row-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
  }
}
.enrollment-popup__row {
  /* Nested media queries for __row */
}
@media (min-width: 600px) and (max-width: 1024px) {
  .enrollment-popup__row {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .enrollment-popup__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.enrollment-popup__group--invalid input[type=text],
.enrollment-popup__group--invalid input[type=email],
.enrollment-popup__group--invalid input[type=tel],
.enrollment-popup__group--invalid select,
.enrollment-popup__group--invalid .enrollment-popup__select-trigger {
  border-color: #ff4d4f !important;
}
.enrollment-popup__group--invalid .enrollment-popup__custom-select--country .enrollment-popup__select-trigger {
  border-color: #333333 !important;
}
.enrollment-popup__field-error {
  color: #ff4d4f;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  margin: 2px 0 0;
}
.enrollment-popup__group:has(.enrollment-popup__mobile-input) .enrollment-popup__field-error {
  margin-left: 88px;
}
.enrollment-popup__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enrollment-popup__group label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.enrollment-popup__group label .required {
  color: #f38533;
  margin-left: 2px;
}
@media (max-width: 600px) {
  .enrollment-popup__row.kyc-row-4 .enrollment-popup__group label {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .enrollment-popup__row.kyc-row-4 .enrollment-popup__group input[type=text] {
    padding: 0 8px;
    font-size: 12px;
  }
}
.enrollment-popup__group input[type=text],
.enrollment-popup__group input[type=email],
.enrollment-popup__group input[type=tel],
.enrollment-popup__group select {
  background: #1e1e1e;
  border: 1px solid #333333;
  border-radius: 8px;
  height: 48px;
  padding: 0 16px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
  width: 100%;
  appearance: none;
  font-family: "Ubuntu", sans-serif;
}
.enrollment-popup__group input[type=text]::placeholder,
.enrollment-popup__group input[type=email]::placeholder,
.enrollment-popup__group input[type=tel]::placeholder,
.enrollment-popup__group select::placeholder {
  color: #888888;
}
.enrollment-popup__group input[type=text]:focus,
.enrollment-popup__group input[type=email]:focus,
.enrollment-popup__group input[type=tel]:focus,
.enrollment-popup__group select:focus {
  border-color: #f38533;
}
.enrollment-popup__group input[type=text]:-webkit-autofill, .enrollment-popup__group input[type=text]:-webkit-autofill:hover, .enrollment-popup__group input[type=text]:-webkit-autofill:active,
.enrollment-popup__group input[type=email]:-webkit-autofill,
.enrollment-popup__group input[type=email]:-webkit-autofill:hover,
.enrollment-popup__group input[type=email]:-webkit-autofill:active,
.enrollment-popup__group input[type=tel]:-webkit-autofill,
.enrollment-popup__group input[type=tel]:-webkit-autofill:hover,
.enrollment-popup__group input[type=tel]:-webkit-autofill:active,
.enrollment-popup__group select:-webkit-autofill,
.enrollment-popup__group select:-webkit-autofill:hover,
.enrollment-popup__group select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #1e1e1e inset !important;
  box-shadow: 0 0 0 1000px #1e1e1e inset !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid #333333 !important;
  border-top-color: #333333 !important;
  border-bottom-color: #333333 !important;
  border-radius: 8px !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  caret-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s !important;
}
.enrollment-popup__group input[type=text]:-webkit-autofill:focus,
.enrollment-popup__group input[type=email]:-webkit-autofill:focus,
.enrollment-popup__group input[type=tel]:-webkit-autofill:focus,
.enrollment-popup__group select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1e1e1e inset !important;
  box-shadow: 0 0 0 1000px #1e1e1e inset !important;
  -webkit-text-fill-color: #ffffff !important;
  border: 1px solid #f38533 !important;
  border-radius: 8px !important;
  -webkit-background-clip: padding-box !important;
  background-clip: padding-box !important;
  caret-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s !important;
}
.enrollment-popup__group .select-wrapper {
  position: relative;
  width: 100%;
}
.enrollment-popup__group .select-wrapper .select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888888;
  pointer-events: none;
}
.enrollment-popup__file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 60px;
  padding: 0 24px;
  border: 2px dashed #f38533;
  border-radius: 8px;
  cursor: pointer;
  color: #f38533;
  font-size: 14px;
  transition: 0.2s ease;
}
.enrollment-popup__file-upload i {
  font-size: 20px;
}
.enrollment-popup__file-upload:hover {
  background-color: rgba(243, 133, 51, 0.05);
}
.enrollment-popup__custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.enrollment-popup__custom-select.open .enrollment-popup__select-trigger {
  border-color: rgba(255, 255, 255, 0.2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.enrollment-popup__custom-select.open .enrollment-popup__select-trigger i {
  transform: rotate(180deg);
}
.enrollment-popup__custom-select.open .enrollment-popup__options-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.enrollment-popup__custom-select--country {
  width: 80px;
  flex-shrink: 0;
}
.enrollment-popup__custom-select--country .enrollment-popup__select-trigger {
  border-radius: 8px;
  border-right: none;
  padding: 0 10px;
}
.enrollment-popup__custom-select--country .enrollment-popup__select-trigger span {
  font-size: 10px;
}
.enrollment-popup__custom-select--country.open .enrollment-popup__select-trigger {
  border-bottom-left-radius: 0;
}
.enrollment-popup__custom-select--country .enrollment-popup__options-list {
  width: 80px;
}
.enrollment-popup__custom-select--country .enrollment-popup__option {
  font-size: 10px;
}
.enrollment-popup__select-trigger {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #1e1e1e;
  border: 1px solid #333333;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.15s ease;
}
.enrollment-popup__select-trigger span {
  font-size: 14px;
  color: #888888;
}
.enrollment-popup__select-trigger i {
  color: #888888;
  font-size: 1.1rem;
  transition: transform 0.15s ease;
}
.enrollment-popup__select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.enrollment-popup__options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #1e1e1e;
  border: 1px solid #333333;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.15s ease;
  max-height: 200px;
  overflow-y: auto;
}
.enrollment-popup__options-list::-webkit-scrollbar {
  width: 4px;
}
.enrollment-popup__options-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.enrollment-popup__option {
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.1s ease;
}
.enrollment-popup__option:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 20px;
}
.enrollment-popup__option.selected {
  color: #f38533;
  background-color: rgba(243, 133, 51, 0.05);
}
.enrollment-popup__option:last-child {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
.enrollment-popup__mobile-input {
  display: flex;
  gap: 8px;
  position: relative;
}
.enrollment-popup__mobile-input input {
  flex: 1;
  border-radius: 0 8px 8px 0;
}
.enrollment-popup__dob-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  /* Nested media queries for __dob-inputs */
}
@media (max-width: 600px) {
  .enrollment-popup__dob-inputs {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
}
.enrollment-popup__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid #333333;
  padding-top: 30px;
  /* Nested media queries for __footer */
}
@media (max-width: 768px) {
  .enrollment-popup__footer {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
.enrollment-popup__support {
  color: #888888;
  font-size: 13px;
  max-width: 350px;
  /* Nested media queries for __support */
}
@media (max-width: 768px) {
  .enrollment-popup__support {
    text-align: center;
    max-width: 100%;
  }
}
.enrollment-popup__support p {
  margin: 0;
  line-height: 1.5;
}
.enrollment-popup__support a {
  color: #f38533;
  text-decoration: underline;
  font-weight: 500;
}
.enrollment-popup__support a:hover {
  color: rgb(229.5, 105.75, 13.5);
}
.enrollment-popup__next-btn {
  background: #f38533;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  height: 35px;
  padding: 0 40px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
  /* Nested media queries for __next-btn */
}
@media (max-width: 768px) {
  .enrollment-popup__next-btn {
    width: 100%;
  }
}
.enrollment-popup__next-btn:hover:not(:disabled) {
  background: rgb(229.5, 105.75, 13.5);
  transform: translateY(-2px);
}
.enrollment-popup__next-btn:disabled {
  background: #444;
  color: #888;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}
.enrollment-popup__payment-group {
  display: grid;
  gap: 1rem;
}
.enrollment-popup__payment-card {
  background: #1e1e1e;
  border: 1px solid #F47923;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}
.enrollment-popup__payment-card.active {
  background: rgba(244, 121, 35, 0.05);
}
.enrollment-popup__payment-card .radio-dot {
  width: 18px;
  height: 18px;
  border: 2px solid #F47923;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.enrollment-popup__payment-card .radio-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #F47923;
  border-radius: 50%;
}
.enrollment-popup__payment-card .enrollment-popup__payment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.enrollment-popup__payment-card .enrollment-popup__payment-info .payment-name {
  color: #F47923;
  font-size: 16px;
  font-weight: 500;
}
.enrollment-popup__payment-card .enrollment-popup__payment-info .payment-amount {
  color: #F47923;
  font-size: 16px;
  font-weight: 700;
}
.enrollment-popup__price-summary {
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 0;
  margin-top: 10px;
  background: transparent;
}
.enrollment-popup__price-summary .summary-title {
  color: #ffffff;
  font-size: 15px;
  margin: 0;
  padding: 12px 16px;
  font-weight: 500;
}
.enrollment-popup__price-summary .summary-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-top: 1px solid #ffffff;
}
@media (max-width: 600px) {
  .enrollment-popup__price-summary .summary-grid {
    grid-template-columns: 1fr;
  }
}
.enrollment-popup__price-summary .summary-item {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.enrollment-popup__price-summary .summary-item.border-left {
  border-left: 1px solid #ffffff;
}
@media (max-width: 600px) {
  .enrollment-popup__price-summary .summary-item.border-left {
    border-left: none;
    border-top: 1px solid #ffffff;
  }
}
.enrollment-popup__price-summary .summary-item .label {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}
.enrollment-popup__price-summary .summary-item .value {
  color: #F47923;
  font-size: 18px;
  font-weight: 700;
}
.enrollment-popup__policy-check .checkbox-container {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}
.enrollment-popup__policy-check .checkbox-container input {
  width: 18px;
  height: 18px;
  accent-color: #F47923;
}
.enrollment-popup__captcha-container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .enrollment-popup__captcha-container {
    justify-content: center;
  }
}

.review-hero {
  padding: 100px 20px 60px;
  text-align: center;
  background: #1A1A1A;
  background-image: url("/assets/images/review/cta-bg.png");
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .review-hero {
    padding: 80px 20px 40px;
  }
}
@media (max-width: 480px) {
  .review-hero {
    padding: 60px 20px 30px;
  }
}
.review-hero__container {
  max-width: 900px;
  margin: 0 auto;
  justify-items: center;
}
.review-hero__img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
@media (max-width: 480px) {
  .review-hero__img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .review-hero__img {
    width: 50%;
  }
}
.review-hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .review-hero__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .review-hero__title {
    font-size: 32px;
  }
}
.review-hero__title .highlight {
  color: #F47923;
  background: linear-gradient(135deg, #F47923 0%, #feb176 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #b3b3b3;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .review-hero__subtitle {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .review-hero__subtitle {
    font-size: 11px;
  }
}

.review-stats {
  padding: 40px 0;
  background: #0a0a0a;
}
@media (max-width: 768px) {
  .review-stats {
    padding: 30px 0;
  }
}
.review-stats__container {
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}
@media (min-width: 1024px) {
  .review-stats__container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 768px) {
  .review-stats__container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.review-stats__card {
  height: auto;
  background: #141414;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-stats__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.review-stats__card--map {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .review-stats__card--map {
    padding: 30px 20px;
    min-height: 300px;
  }
}
@media (max-width: 480px) {
  .review-stats__card--map {
    padding: 20px 15px;
    min-height: 250px;
  }
}
.review-stats__card--students {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, #141414 0%, rgba(244, 121, 35, 0.05) 100%);
}
@media (max-width: 768px) {
  .review-stats__card--students {
    padding: 50px 30px;
  }
}
@media (max-width: 480px) {
  .review-stats__card--students {
    padding: 40px 20px;
  }
}
.review-stats__map {
  width: 100%;
  max-width: 597.49px;
  height: auto;
  aspect-ratio: 597.49/390.06;
  position: relative;
}
.review-stats__map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.review-stats__map .map-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.review-stats__map:hover .map-primary {
  opacity: 0;
}
.review-stats__map:hover .map-hover {
  opacity: 1;
}
.review-stats__number {
  font-size: 96px;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  line-height: 1;
  color: #F47923;
  background: linear-gradient(to bottom, #F47923 0%, #6d3103 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .review-stats__number {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .review-stats__number {
    font-size: 72px;
  }
}
@media (max-width: 480px) {
  .review-stats__number {
    font-size: 64px;
  }
}
.review-stats__label {
  font-size: 20px;
  color: #b3b3b3;
  font-weight: 500;
}
@media (max-width: 768px) {
  .review-stats__label {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .review-stats__label {
    font-size: 16px;
  }
}
.review-stats__card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}
.review-stats__card:nth-child(1) {
  animation-delay: 0.1s;
}
.review-stats__card:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.review-testimonials {
  padding: 60px 0 40px;
}
@media (max-width: 768px) {
  .review-testimonials {
    padding: 50px 0 30px;
  }
}
@media (max-width: 480px) {
  .review-testimonials {
    padding: 40px 0 20px;
  }
}
.review-testimonials__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .review-testimonials__container {
    padding: 0 16px;
  }
}
@media (min-width: 1024px) {
  .review-testimonials__container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.review-testimonials__box {
  max-width: 1920px;
  margin: 50px auto 0;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  background-image: url("/assets/images/review/cta-bg.png");
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .review-testimonials__box {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 768px) {
  .review-testimonials__box {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 480px) {
  .review-testimonials__box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
}
.review-testimonials__title {
  font-size: 48px;
  font-weight: 300;
  text-align: left;
  color: #ffffff;
  width: 100%;
  max-width: 400px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .review-testimonials__title {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .review-testimonials__title {
    font-size: 28px;
    max-width: 16rem;
    text-align: center;
  }
}
.review-testimonials__title .highlight {
  color: #F47923;
}
.review-testimonials__row {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .review-testimonials__row {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .review-testimonials__row {
    margin-bottom: 25px;
  }
}
.review-testimonials__row:last-of-type {
  margin-bottom: 30px;
}
.review-testimonials__row--hidden {
  display: none;
}
.review-testimonials__cards-wrapper {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
}
.review-testimonials__cards-wrapper::-webkit-scrollbar {
  display: none;
}
.review-testimonials__cards-wrapper:active {
  cursor: grabbing;
}
.review-testimonials__cards {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  width: max-content;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .review-testimonials__cards {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .review-testimonials__cards {
    gap: 1rem;
    padding: 1rem 0;
    align-items: flex-start;
    scroll-snap-type: x mandatory;
  }
}
@media (max-width: 480px) {
  .review-testimonials__cards {
    gap: 1rem;
    padding: 1rem 0;
  }
}
.review-testimonials__load-more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .review-testimonials__load-more {
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .review-testimonials__load-more {
    margin-top: 15px;
  }
}
.review-testimonials__btn {
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #F47923;
  background: transparent;
  border: 2px solid #F47923;
  border-radius: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.review-testimonials__btn:hover {
  background: #ff7b23;
  color: #e8e6e5;
  transform: translateY(-2px);
}

.review-card {
  background: #333131;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.6rem;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  width: 390px;
  height: 640px;
  flex-shrink: 0;
  min-width: 390px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .review-card {
    width: calc((100% - 4.5rem) / 4);
    min-width: 0;
    flex: 0 0 calc((100% - 4.5rem) / 4);
  }
}
@media (max-width: 768px) {
  .review-card {
    width: calc(100vw - 16px * 2);
    min-width: calc(100vw - 16px * 2);
    height: auto;
    scroll-snap-align: center;
  }
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(244, 121, 35, 0.2);
}
.review-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #141414;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.review-card__user {
  flex: 1;
  min-width: 0;
}
.review-card__name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 3px 0;
}
.review-card__role {
  font-size: 11px;
  color: #b3b3b3;
  margin: 0;
  line-height: 1.3;
  opacity: 0.75;
}
.review-card__social {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.review-card__social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b3b3b3;
  transition: all 0.3s ease;
  text-decoration: none;
}
.review-card__social-link:hover {
  border-color: rgba(244, 121, 35, 0.5);
  background: rgba(244, 121, 35, 0.1);
  color: #F47923;
  transform: translateY(-2px);
}
.review-card__text {
  font-size: 13px;
  line-height: 1.55;
  color: #cfcfcf;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}
.review-card__screenshot {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}
.review-card__screenshot img,
.review-card__screenshot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .review-card__screenshot {
    flex-grow: 0;
  }
  .review-card__screenshot img,
  .review-card__screenshot video {
    height: auto;
    object-fit: contain;
  }
}
.review-card {
  animation: fadeInUp 0.6s ease-out both;
}
.review-card:nth-child(2) {
  animation-delay: 0.2s;
}
.review-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-hero {
  background: #191919;
  padding: 90px 0 90px;
  position: relative;
}
@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 40px;
  }
}
@media (max-width: 480px) {
  .about-hero {
    padding: 30px 0 30px;
  }
}
.about-hero .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 1024px) {
  .about-hero .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 768px) {
  .about-hero .container {
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about-hero .hero-content {
  flex: 1;
}
.about-hero .hero-title {
  font-size: 62px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.about-hero .hero-title::after {
  content: " Us";
  color: #F47923;
}
@media (max-width: 768px) {
  .about-hero .hero-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .about-hero .hero-title {
    font-size: 27px;
  }
}
.about-hero .hero-subtitle {
  font-size: 31px;
  font-weight: 400;
  color: #cfcfcf;
  margin: 0;
}
@media (max-width: 768px) {
  .about-hero .hero-subtitle {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .about-hero .hero-subtitle {
    font-size: 13px;
  }
}
.about-hero .hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 20px;
  min-width: 120px;
  min-height: 120px;
  justify-content: center;
}
@media (max-width: 768px) {
  .about-hero .hero-badge {
    align-self: flex-start;
    min-width: 100px;
    min-height: 100px;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .about-hero .hero-badge {
    display: none;
  }
}
.about-hero .hero-badge .badge-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.about-hero .hero-badge .badge-text {
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.about-badge {
  position: absolute;
  right: 15.5rem;
  bottom: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .about-badge {
    display: flex;
  }
}
.about-badge .badge-circle {
  position: relative;
  width: 9rem;
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: spin 12s linear infinite;
}
.about-badge .badge-circle svg {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}
.about-badge .badge-arrow {
  position: absolute;
  width: 90px;
  height: auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-timeline {
  background: #000;
  padding: 80px 0 100px;
  position: relative;
}
@media (max-width: 1024px) {
  .about-timeline {
    padding: 60px 0 80px;
  }
}
@media (max-width: 480px) {
  .about-timeline {
    padding: 40px 0 60px;
  }
}
.about-timeline .container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (min-width: 1024px) {
  .about-timeline .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 768px) {
  .about-timeline .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about-timeline .timeline-wrapper {
  position: relative;
}
.about-timeline .timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 60px;
  width: 2px;
  background: rgba(244, 121, 35, 0.3);
  transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-wrapper::before {
    left: auto;
    right: 30px;
    transform: none;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-wrapper::before {
    left: auto;
    right: 20px;
  }
}
.about-timeline .timeline-item {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item {
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item {
    margin-bottom: 50px;
  }
}
.about-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.about-timeline .timeline-item .timeline-content {
  display: flex;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-content {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 60px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-content {
    padding-left: 0;
    padding-right: 50px;
    gap: 16px;
    align-items: stretch;
  }
}
.about-timeline .timeline-item .timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: #F47923;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 0 4px #1A1A1A, 0 0 0 6px rgba(244, 121, 35, 0.3);
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-dot {
    left: auto;
    right: 23px;
    top: 20px;
    transform: none;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-dot {
    left: auto;
    right: 15px;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 3px #1A1A1A, 0 0 0 5px rgba(244, 121, 35, 0.3);
  }
}
.about-timeline .timeline-item.left .timeline-content {
  justify-content: flex-end;
}
.about-timeline .timeline-item.left .timeline-content .timeline-text {
  order: 1;
  text-align: left;
  padding-right: 80px;
}
.about-timeline .timeline-item.left .timeline-content .timeline-image {
  order: 2;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item.left .timeline-content {
    justify-content: flex-start;
  }
  .about-timeline .timeline-item.left .timeline-content .timeline-text {
    order: 1;
    text-align: left;
    padding: 0;
    flex: 1;
    max-width: 100%;
  }
  .about-timeline .timeline-item.left .timeline-content .timeline-image {
    order: 2;
    margin: 0;
    flex: 1;
    max-width: 100%;
  }
}
.about-timeline .timeline-item.right .timeline-content {
  justify-content: flex-start;
}
.about-timeline .timeline-item.right .timeline-content .timeline-text {
  order: 2;
  text-align: left;
  padding-left: 80px;
}
.about-timeline .timeline-item.right .timeline-content .timeline-image {
  order: 1;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item.right .timeline-content {
    justify-content: flex-start;
  }
  .about-timeline .timeline-item.right .timeline-content .timeline-text {
    order: 1;
    text-align: left;
    padding: 0;
    flex: 1;
    max-width: 100%;
  }
  .about-timeline .timeline-item.right .timeline-content .timeline-image {
    order: 2;
    margin: 0;
    flex: 1;
    max-width: 100%;
  }
}
.about-timeline .timeline-item .timeline-text {
  flex: 0 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
}
.about-timeline .timeline-item .timeline-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-title {
    font-size: 20px;
  }
}
.about-timeline .timeline-item .timeline-title .title-normal {
  color: #F47923;
}
.about-timeline .timeline-item .timeline-title .title-highlight {
  color: #ffffff;
}
.about-timeline .timeline-item .timeline-year {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-year {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-year {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.about-timeline .timeline-item .timeline-description {
  font-size: 14px;
  font-weight: 400;
  color: #cfcfcf;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-item .timeline-description {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-description {
    font-size: 12px;
    line-height: 1.6;
  }
}
.about-timeline .timeline-item .timeline-image {
  flex: 0 0 calc(50% - 30px);
  max-width: calc(50% - 30px);
  background: #15151a;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .about-timeline .timeline-item .timeline-image {
    flex: 1;
    max-width: 100%;
  }
}
.about-timeline .timeline-item .timeline-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-timeline .timeline-footer {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .about-timeline .timeline-footer {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .about-timeline .timeline-footer {
    margin-top: 50px;
  }
}
.about-timeline .see-more-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #F47923;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  line-height: inherit;
}
@media (max-width: 480px) {
  .about-timeline .see-more-link {
    font-size: 14px;
  }
}
.about-timeline .see-more-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #F47923;
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
.about-timeline .see-more-link:hover {
  color: #feb176;
}
.about-timeline .see-more-link:hover::after {
  transform: scaleX(0.8);
}

.payment-page {
  min-height: 60vh;
  padding: 2rem 1rem;
}

.payment-container {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #3f3f3f;
  border-radius: 12px;
  padding: 1.5rem;
}
.payment-container__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.payment-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-list__item:last-child {
  border-bottom: none;
}
.payment-list__label {
  flex-grow: 1;
  cursor: pointer;
  font-size: 1rem;
  color: #e0e0e0;
}
.payment-list__radio {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #f47923;
}

.payment-qr {
  width: 100%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #3f3f3f;
  border-radius: 12px;
  padding: 1.5rem;
}
.payment-qr__inner {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.payment-qr__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment-qr__upi-icons {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
}
.payment-qr__icon-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.3rem 0;
}
.payment-qr__total {
  text-align: center;
  font-size: 1.1rem;
  color: #f47923;
}
.payment-qr__code {
  width: 150px;
  flex-shrink: 0;
}
.payment-qr__code svg {
  width: 100%;
  height: auto;
}
.payment-qr__upload {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.payment-qr__dropzone {
  border: 2px dashed #555;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s;
  cursor: pointer;
}
.payment-qr__dropzone.dragover {
  border-color: #f47923;
}
.payment-qr__preview {
  text-align: center;
}
.payment-qr__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.payment-qr__note {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  line-height: 1.5;
}
.payment-qr__note a {
  color: #f47923;
}

.payment-processing {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 2rem;
}
.payment-processing__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #f47923;
  border-radius: 50%;
  animation: payment-spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes payment-spin {
  to {
    transform: rotate(360deg);
  }
}
.payment-error {
  width: 100%;
  max-width: 1000px;
  background: rgba(217, 83, 79, 0.12);
  border: 1px solid rgba(217, 83, 79, 0.4);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  color: #f2bfbd;
}

.myaccount {
  padding: 0 0 5rem;
  color: #e8e6e5;
  position: relative;
}
@media (max-width: 768px) {
  .myaccount {
    padding: 0 0 3rem;
  }
}
.myaccount .container--wide {
  width: 95%;
  max-width: 1480px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .myaccount .container--wide {
    width: 94%;
  }
}
.myaccount__content {
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .myaccount__content {
    margin-top: 1rem;
  }
}
.myaccount__panels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .myaccount__panels {
    gap: 1rem;
  }
}
.myaccount__placeholder {
  background: #191919;
  border-radius: 1rem;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #b3b3b3;
}
.myaccount__placeholder i {
  font-size: 2rem;
  color: #F47923;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.myaccount__placeholder-title {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.myaccount__placeholder-text {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin: 0;
}

.myaccount__header {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 2.75rem 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .myaccount__header {
    padding: 1.75rem 1rem;
    margin-bottom: 1rem;
  }
}
.myaccount__header-grid {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.myaccount__header-grid--left {
  left: 0;
}
.myaccount__header-grid--right {
  right: 0;
  transform: scaleX(-1);
}
.myaccount__header-title {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  background-image: linear-gradient(90deg, #1a1a1a -10%, #6f6f6f 10%, #ffffff 50%, #6f6f6f 89%, #1a1a1a 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .myaccount__header-title {
    font-size: 2rem;
  }
}

.myaccount__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 1rem;
}
@media (max-width: 768px) {
  .myaccount__profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
  }
}
.myaccount__profile-avatar {
  appearance: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 0.65rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.myaccount__profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.myaccount__profile-avatar:hover {
  transform: translateY(-1px);
}
.myaccount__profile-avatar:hover .myaccount__profile-avatar-overlay {
  opacity: 1;
}
.myaccount__profile-avatar:focus-visible {
  outline: 2px solid #F47923;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .myaccount__profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 0.85rem;
  }
}
.myaccount__profile-avatar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.myaccount__profile-avatar-overlay i {
  font-size: 1.4rem;
  line-height: 1;
}
.myaccount__profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.myaccount__profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .myaccount__profile-name {
    font-size: 1.25rem;
  }
}
.myaccount__profile-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  color: #b3b3b3;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .myaccount__profile-meta {
    justify-content: center;
  }
}
.myaccount__profile-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #b3b3b3;
}
.myaccount__profile-email i {
  color: #b3b3b3;
  font-size: 0.95rem;
}
.myaccount__profile-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.6rem;
  border-radius: 30px;
  background: rgba(244, 121, 35, 0.12);
  color: #F47923;
  font-weight: 500;
  font-size: 0.75rem;
  white-space: nowrap;
  position: relative;
}
.myaccount__profile-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F47923;
  margin-right: 0.4rem;
}

.myaccount__tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.25rem;
}
.myaccount__tabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 130px;
  justify-content: space-around;
  overflow-x: auto;
  scrollbar-width: none;
}
.myaccount__tabs-list::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .myaccount__tabs-list {
    gap: 1.25rem;
  }
}
.myaccount__tabs-item {
  flex: 0 0 auto;
}
.myaccount__tabs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.1rem;
  color: #b3b3b3;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.myaccount__tabs-link i {
  font-size: 1.15rem;
  line-height: 1;
}
.myaccount__tabs-link:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .myaccount__tabs-link {
    font-size: 0.95rem;
    padding: 0.7rem 0.1rem;
  }
}
.myaccount__tabs-item.is-active .myaccount__tabs-link {
  color: #F47923;
  border-bottom-color: #F47923;
}

.myaccount__panel {
  background: #191919;
  border-radius: 1rem;
}
.myaccount__panel-head {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
@media (max-width: 768px) {
  .myaccount__panel-head {
    padding: 0.85rem 1rem;
  }
}
.myaccount__panel-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.01em;
}
.myaccount__panel-body {
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .myaccount__panel-body {
    padding: 1rem;
  }
}

.myaccount__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}
@media (max-width: 768px) {
  .myaccount__form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.myaccount__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.myaccount__field--full {
  grid-column: 1/-1;
}
.myaccount__field-label {
  font-size: 0.78rem;
  color: #b3b3b3;
  font-weight: 500;
  margin: 0;
}
.myaccount__field-input {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  padding: 0 0.85rem;
  height: 44px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}
.myaccount__field-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.myaccount__field-input:hover:not([readonly]):not(:disabled) {
  border-color: rgba(255, 255, 255, 0.18);
}
.myaccount__field-input:focus {
  border-color: #F47923;
}
.myaccount__field-input[readonly], .myaccount__field-input:disabled {
  color: #e8e6e5;
  cursor: default;
}
@media (max-width: 480px) {
  .myaccount__field-input {
    height: 40px;
    font-size: 0.9rem;
  }
}
.myaccount__field-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
}
.myaccount__field-row--dob .myaccount__custom-select {
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 480px) {
  .myaccount__field-row {
    gap: 0.45rem;
  }
}
.myaccount__field-required {
  color: #ff4d4f;
  margin-left: 2px;
}
.myaccount__field--invalid .myaccount__field-input,
.myaccount__field--invalid .myaccount__pill-row,
.myaccount__field--invalid .myaccount__pill-input,
.myaccount__field--invalid .myaccount__select-trigger,
.myaccount__field--invalid .myaccount__file {
  border-color: #ff4d4f;
}
.myaccount__field-error {
  color: #ff4d4f;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.myaccount__custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}
.myaccount__custom-select.open {
  z-index: 200;
}
.myaccount__custom-select[data-disabled=true] {
  cursor: default;
}
.myaccount__custom-select[data-disabled=true] .myaccount__select-trigger {
  cursor: default;
}
.myaccount__custom-select[data-disabled=true] .myaccount__select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.08);
}
.myaccount__custom-select[data-disabled=true] i {
  opacity: 0.45;
}
.myaccount__custom-select.open .myaccount__select-trigger {
  border-color: #F47923;
}
.myaccount__custom-select.open .myaccount__select-trigger i {
  transform: rotate(180deg);
  color: #F47923;
}
.myaccount__custom-select.open .myaccount__options-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.myaccount__select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.85rem;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  background: transparent;
  width: 100%;
  transition: border-color 0.2s ease;
}
.myaccount__select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.myaccount__select-trigger span {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.myaccount__select-trigger i {
  color: #b3b3b3;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}
@media (max-width: 480px) {
  .myaccount__select-trigger {
    height: 40px;
  }
}
.myaccount__options-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  z-index: 200;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  max-height: 240px;
  overflow-y: auto;
  padding: 0.25rem 0;
}
.myaccount__options-list::-webkit-scrollbar {
  width: 5px;
}
.myaccount__options-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.myaccount__custom-select.open .myaccount__options-list {
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.myaccount__option {
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.myaccount__option:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding-left: 1.05rem;
}
.myaccount__option.selected {
  color: #F47923;
  background-color: rgba(244, 121, 35, 0.06);
}

.myaccount__pill-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}
.myaccount__pill-row--bonded {
  gap: 0;
}
.myaccount__pill-row--bonded .myaccount__pill-prefix {
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.myaccount__pill-row--bonded .myaccount__pill-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.myaccount__pill-row--bonded:focus-within .myaccount__pill-prefix,
.myaccount__pill-row--bonded:focus-within .myaccount__pill-input {
  border-color: #F47923;
}
.myaccount__pill-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 0 0.85rem;
  height: 44px;
  background: #1f1f1f;
  color: #b3b3b3;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  font-size: 0.95rem;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .myaccount__pill-prefix {
    min-width: 48px;
    height: 40px;
  }
}
.myaccount__pill-input {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-family: inherit;
  padding: 0 0.85rem;
  height: 44px;
  outline: none;
  flex: 1 1 auto;
  min-width: 0;
  transition: border-color 0.2s ease;
}
.myaccount__pill-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.myaccount__pill-input:hover:not([readonly]):not(:disabled) {
  border-color: rgba(255, 255, 255, 0.18);
}
.myaccount__pill-input:focus {
  border-color: #F47923;
}
.myaccount__pill-input[readonly] {
  cursor: default;
}
@media (max-width: 480px) {
  .myaccount__pill-input {
    height: 40px;
    font-size: 0.9rem;
  }
}
.myaccount__custom-select--phone {
  flex: 0 0 auto;
  width: 92px;
}
.myaccount__custom-select--phone .myaccount__select-trigger {
  padding: 0 0.6rem;
}
.myaccount__custom-select--phone .myaccount__select-trigger span {
  font-size: 12px;
}
@media (max-width: 480px) {
  .myaccount__custom-select--phone .myaccount__select-trigger span {
    font-size: 10px;
  }
}
.myaccount__custom-select--phone .myaccount__select-trigger i {
  font-size: 1rem;
}
.myaccount__custom-select--phone .myaccount__options-list {
  min-width: 110px;
}
@media (max-width: 480px) {
  .myaccount__custom-select--phone {
    width: 84px;
  }
}

.myaccount__file {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 10px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
  flex-wrap: wrap;
  transition: border-color 0.2s ease;
}
.myaccount__file:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
@media (max-width: 480px) {
  .myaccount__file {
    min-height: 40px;
  }
}
.myaccount__file-icon {
  color: #b3b3b3;
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
}
.myaccount__file-name {
  color: #ffffff;
  font-size: 0.9rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.myaccount__file-edit {
  color: #b3b3b3;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
}
.myaccount__file-replace {
  appearance: none;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.35rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.myaccount__file-replace:hover:not(:disabled) {
  border-color: #F47923;
  color: #F47923;
}
.myaccount__file-replace:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.myaccount__edit-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
}
@media (max-width: 768px) {
  .myaccount__edit-actions {
    right: 1rem;
    bottom: 1rem;
    gap: 0.6rem;
  }
}
.myaccount__edit-cancel {
  appearance: none;
  background: rgba(28, 28, 32, 0.92);
  backdrop-filter: blur(6px);
  color: #b3b3b3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.55rem;
  height: 48px;
  padding: 0 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.myaccount__edit-cancel i {
  font-size: 1.15rem;
  line-height: 1;
}
.myaccount__edit-cancel:hover {
  background: rgba(48, 48, 54, 0.95);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}
.myaccount__edit-cancel[hidden] {
  display: none;
}
.myaccount__edit-toggle {
  appearance: none;
  background: #F47923;
  color: #ffffff;
  border: 0;
  border-radius: 0.65rem;
  min-width: 48px;
  height: 48px;
  padding: 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(244, 121, 35, 0.35);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, padding 0.25s ease, min-width 0.25s ease;
}
.myaccount__edit-toggle i {
  font-size: 1.25rem;
  line-height: 1;
}
.myaccount__edit-toggle span {
  display: none;
  white-space: nowrap;
}
.myaccount__edit-toggle:hover {
  background: rgb(245.2142857143, 135.7922077922, 59.2857142857);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(244, 121, 35, 0.45);
}
.myaccount__edit-toggle.is-saving, .myaccount__edit-toggle[data-mode=on] {
  padding: 0 1.25rem;
  min-width: 0;
  border-radius: 0.55rem;
}
.myaccount__edit-toggle.is-saving span, .myaccount__edit-toggle[data-mode=on] span {
  display: inline;
}

.myaccount[data-edit-mode=off] .myaccount__field-input,
.myaccount[data-edit-mode=off] .myaccount__pill-input,
.myaccount[data-edit-mode=off] .myaccount__select-trigger {
  cursor: default;
}
.myaccount[data-edit-mode=off] .myaccount__field-input,
.myaccount[data-edit-mode=off] .myaccount__pill-input {
  caret-color: transparent;
}
.myaccount[data-edit-mode=on] .myaccount__field-input,
.myaccount[data-edit-mode=on] .myaccount__pill-input {
  caret-color: #F47923;
}

.myaccount__mc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .myaccount__mc-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}
.myaccount__mc-intro {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  flex: 1 1 auto;
}
.myaccount__mc-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
@media (max-width: 480px) {
  .myaccount__mc-title {
    font-size: 1.35rem;
  }
}
.myaccount__mc-title-accent {
  color: #F47923;
}
.myaccount__mc-subtitle {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .myaccount__mc-subtitle {
    font-size: 0.85rem;
  }
}
.myaccount__mc-total {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 10px;
  background: #191919;
  border: 1px solid rgba(244, 121, 35, 0.18);
  border-radius: 0.6rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .myaccount__mc-total {
    align-self: flex-start;
  }
}
.myaccount__mc-total-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.45rem;
  background: rgba(244, 121, 35, 0.14);
  color: #F47923;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.myaccount__mc-total-icon i {
  font-size: 1.1rem;
  line-height: 1;
}
.myaccount__mc-total-info {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.1;
}
.myaccount__mc-total-label {
  color: #b3b3b3;
  font-size: 0.78rem;
}
.myaccount__mc-total-count {
  color: #F47923;
  font-size: 1rem;
  font-weight: 700;
}
.myaccount__mc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 380px);
  justify-content: start;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .myaccount__mc-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (max-width: 768px) {
  .myaccount__mc-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.myaccount__mc-card {
  background: #191919;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 479px;
}
.myaccount__mc-card:hover {
  border-color: rgba(244, 121, 35, 0.25);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .myaccount__mc-card {
    min-height: 0;
  }
}
.myaccount__mc-card-image {
  aspect-ratio: 16/10;
  background: #2a2a2a;
  overflow: hidden;
  margin: 0.85rem 0.85rem 0;
  border-radius: 0.6rem;
  border: 1px solid rgba(244, 121, 35, 0.4);
}
.myaccount__mc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.myaccount__mc-card-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1 1 auto;
}
.myaccount__mc-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .myaccount__mc-card-title {
    font-size: 1.1rem;
  }
}
.myaccount__mc-card-instructor {
  color: #b3b3b3;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0.4rem;
  padding: 0.35rem 0.6rem;
  align-self: flex-start;
}
.myaccount__mc-card-instructor i {
  color: #F47923;
  font-size: 0.95rem;
}
.myaccount__mc-card-progress {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.15rem;
}
.myaccount__mc-card-progress-bar {
  flex: 1 1 auto;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}
.myaccount__mc-card-progress-bar span {
  display: block;
  height: 100%;
  background: #F47923;
  border-radius: 99px;
  transition: width 0.4s ease;
}
.myaccount__mc-card-progress-label {
  color: #b3b3b3;
  font-size: 0.78rem;
  white-space: nowrap;
}
.myaccount__mc-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  color: #b3b3b3;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.myaccount__mc-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.myaccount__mc-card-meta span i {
  color: #b3b3b3;
  font-size: 0.9rem;
}
.myaccount__mc-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  margin-top: 0.4rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.myaccount__mc-card-cta i {
  font-size: 1.05rem;
  line-height: 1;
}
.myaccount__mc-card-cta--primary {
  background: #F47923;
  color: #ffffff;
}
.myaccount__mc-card-cta--primary:hover {
  background: rgb(245.2142857143, 135.7922077922, 59.2857142857);
  transform: translateY(-1px);
}
.myaccount__mc-card-cta--success {
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.45);
}
.myaccount__mc-card-cta--success:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.7);
}
.myaccount__mc-card-cta--secondary {
  background: #1A1A1A;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.myaccount__mc-card-cta--secondary:hover {
  border-color: #F47923;
  color: #F47923;
}

.myaccount__pay-subtabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .myaccount__pay-subtabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
.myaccount__pay-subtab {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(244, 121, 35, 0.5);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.myaccount__pay-subtab:hover {
  background: rgba(244, 121, 35, 0.08);
}
.myaccount__pay-subtab.is-active {
  background: #F47923;
  color: #ffffff;
  border-color: #F47923;
}
@media (max-width: 480px) {
  .myaccount__pay-subtab {
    text-align: center;
    padding: 7px 0;
    font-size: 0.78rem;
    white-space: normal;
    min-width: 0;
  }
}
.myaccount__pay-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.myaccount__pay-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.myaccount__pay-section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
.myaccount__pay-section-title i {
  font-size: 1.2rem;
  line-height: 1;
}
.myaccount__pay-section-title--success {
  color: #22c55e;
}
.myaccount__pay-section-title--success i {
  color: #22c55e;
}
.myaccount__pay-section-title--warning {
  color: #F47923;
}
.myaccount__pay-section-title--warning i {
  color: #F47923;
}
.myaccount__pay-section-title--danger {
  color: #ef4444;
}
.myaccount__pay-section-title--danger i {
  color: #ef4444;
}
.myaccount__pay-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
}
.myaccount__pay-pill--success {
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.1);
}
.myaccount__pay-pill--warning {
  color: #F47923;
  border: 1px solid rgba(244, 121, 35, 0.45);
  background: rgba(244, 121, 35, 0.12);
}
.myaccount__pay-pill--danger {
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
}
.myaccount__pay-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.myaccount__pay-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .myaccount__pay-empty {
    padding: 3.5rem 1rem;
  }
}
.myaccount__pay-empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .myaccount__pay-empty-title {
    font-size: 1.05rem;
  }
}
.myaccount__pay-empty-text {
  font-size: 0.88rem;
  color: #b3b3b3;
  margin: 0;
}
@media (max-width: 768px) {
  .myaccount__pay-empty-text {
    font-size: 0.82rem;
  }
}
.myaccount__pay-card {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  width: 65%;
  padding: 1.1rem;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 3.25rem;
  align-items: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.myaccount__pay-card:hover {
  border-color: rgba(244, 121, 35, 0.18);
}
@media (max-width: 768px) {
  .myaccount__pay-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .myaccount__pay-card {
    width: 100%;
  }
}
.myaccount__pay-card-image {
  aspect-ratio: 16/10;
  background: #cccccc;
  border-radius: 0.6rem;
  overflow: hidden;
  width: 180px;
}
.myaccount__pay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .myaccount__pay-card-image {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.myaccount__pay-card-main {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.myaccount__pay-card-details {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.25rem;
  row-gap: 0.4rem;
  margin: 0;
}
.myaccount__pay-card-row {
  display: contents;
}
.myaccount__pay-card-row dt {
  color: #b3b3b3;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0;
}
.myaccount__pay-card-row dd {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.myaccount__pay-card-due {
  color: #ff6b6b !important;
}
.myaccount__pay-card-amount {
  color: #ffffff;
  font-weight: 700;
  margin-right: 0.4rem;
}
.myaccount__pay-card-note {
  color: #b3b3b3;
  font-size: 0.78rem;
  font-weight: 400;
}
.myaccount__pay-card-status {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  justify-self: center;
}
.myaccount__pay-card-status i {
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;
}
.myaccount__pay-card-status--success {
  background: #22c55e;
}
.myaccount__pay-card-status--warning {
  background: #F47923;
}
.myaccount__pay-card-status--danger {
  background: #ef4444;
}
@media (max-width: 768px) {
  .myaccount__pay-card-status {
    justify-self: flex-start;
  }
}
@media (max-width: 480px) {
  .myaccount__pay-card-status {
    display: none;
  }
}
.myaccount__pay-card-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .myaccount__pay-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}
.myaccount__pay-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 480px) {
  .myaccount__pay-action {
    padding: 0.5rem 0.5rem;
    font-size: 0.76rem;
    white-space: normal;
    min-width: 0;
    text-align: center;
  }
}
.myaccount__pay-action i {
  font-size: 1rem;
  line-height: 1;
}
.myaccount__pay-action--success-soft {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
}
.myaccount__pay-action--accent-soft {
  color: #F47923;
  background: rgba(244, 121, 35, 0.12);
  border: 1px solid rgba(244, 121, 35, 0.45);
}
.myaccount__pay-action--accent-soft:hover {
  background: rgba(244, 121, 35, 0.18);
}
.myaccount__pay-action--accent-filled {
  color: #ffffff;
  background: #F47923;
  border: 1px solid #F47923;
}
.myaccount__pay-action--accent-filled:hover {
  background: rgb(245.2142857143, 135.7922077922, 59.2857142857);
}
.myaccount__pay-action--danger-soft {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.4);
}
.myaccount__pay-action--muted {
  color: #b3b3b3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: default;
  pointer-events: none;
}

.myaccount__rf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.myaccount__rf-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1 1 auto;
  min-width: 0;
}
.myaccount__rf-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}
@media (max-width: 480px) {
  .myaccount__rf-title {
    font-size: 1.2rem;
  }
}
.myaccount__rf-subtitle {
  font-size: 0.88rem;
  color: #b3b3b3;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .myaccount__rf-subtitle {
    font-size: 0.82rem;
  }
}
.myaccount__rf-redeem {
  appearance: none;
  background: #2A2A2A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.myaccount__rf-redeem i {
  font-size: 1rem;
  line-height: 1;
  color: #ffffff;
}
.myaccount__rf-redeem:hover {
  background: #1f1f1f;
  border-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .myaccount__rf-redeem {
    align-self: flex-start;
  }
}
.myaccount__rf-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .myaccount__rf-grid {
    grid-template-columns: 1fr;
  }
}
.myaccount__rf-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}
.myaccount__rf-card {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  padding: 1.1rem 1.2rem;
}
@media (max-width: 480px) {
  .myaccount__rf-card {
    padding: 0.95rem 1rem;
  }
}
.myaccount__rf-card-label {
  display: block;
  color: #b3b3b3;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.myaccount__rf-card-value {
  color: #F47923;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.myaccount__rf-stats {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .myaccount__rf-stats {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    grid-template-areas: "code points" "code referral";
  }
}
@media (max-width: 480px) {
  .myaccount__rf-stats {
    grid-template-columns: 1fr;
    grid-template-areas: "code" "points" "referral";
  }
}
@media (max-width: 768px) {
  .myaccount__rf-card--code {
    grid-area: code;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.myaccount__rf-card--stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
}
@media (max-width: 768px) {
  .myaccount__rf-card--stat[data-rf-stat=points] {
    grid-area: points;
  }
}
@media (max-width: 768px) {
  .myaccount__rf-card--stat[data-rf-stat=referrals] {
    grid-area: referral;
  }
}
.myaccount__rf-code-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.45rem;
  padding: 0.4rem 0.4rem 0.4rem 0.75rem;
  margin-bottom: 0.85rem;
}
.myaccount__rf-code-value {
  flex: 1 1 auto;
  min-width: 0;
  color: #ffffff;
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.myaccount__rf-copy {
  appearance: none;
  background: #F47923;
  color: #ffffff;
  border: 0;
  border-radius: 0.35rem;
  padding: 0.35rem 0.65rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.myaccount__rf-copy:hover {
  background: rgb(245.2142857143, 135.7922077922, 59.2857142857);
}
.myaccount__rf-copy.is-copied {
  background: #22c55e;
}
.myaccount__rf-invite {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.myaccount__rf-invite-label {
  color: #b3b3b3;
  font-size: 0.78rem;
}
.myaccount__rf-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.4rem;
}
.myaccount__rf-social {
  width: 28px;
  height: 28px;
  border-radius: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.myaccount__rf-social i {
  line-height: 1;
}
.myaccount__rf-social:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
}
.myaccount__rf-social--facebook {
  background: #1877f2;
}
.myaccount__rf-social--twitter {
  background: #000000;
}
.myaccount__rf-social--whatsapp {
  background: #25d366;
}
.myaccount__rf-social--linkedin {
  background: #0a66c2;
}
.myaccount__rf-benefits-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.myaccount__rf-benefits-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.myaccount__rf-benefits-count {
  color: #7c7c7c;
  font-size: 0.8rem;
  font-weight: 600;
}
.myaccount__rf-benefits-text {
  color: #b3b3b3;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}
.myaccount__rf-howitworks-title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.myaccount__rf-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.myaccount__rf-step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  position: relative;
}
.myaccount__rf-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: -1.25rem;
  left: 13px;
  width: 2px;
  background: rgba(244, 121, 35, 0.55);
  border-radius: 2px;
}
.myaccount__rf-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #191919;
  border: 1.5px solid #F47923;
  color: #F47923;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.myaccount__rf-step-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.myaccount__rf-step-text strong {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}
.myaccount__rf-step-text span {
  color: #b3b3b3;
  font-size: 0.82rem;
  line-height: 1.4;
}
.myaccount__rf-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.myaccount__rf-history-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.myaccount__rf-history-filters {
  display: inline-flex;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  padding: 0.2rem;
}
.myaccount__rf-history-filter {
  appearance: none;
  background: transparent;
  border: 0;
  color: #b3b3b3;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.95rem;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.myaccount__rf-history-filter:hover {
  color: #ffffff;
}
.myaccount__rf-history-filter.is-active {
  background: #191919;
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.myaccount__rf-history-subtitle {
  color: #b3b3b3;
  font-size: 0.82rem;
  margin: 0.85rem 0 0.5rem;
}
.myaccount__rf-history-tablewrap {
  margin: 0 -0.4rem;
  overflow-x: auto;
}
.myaccount__rf-history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.myaccount__rf-history-table th {
  text-align: left;
  color: #b3b3b3;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.myaccount__rf-history-table td {
  color: #e8e6e5;
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.myaccount__rf-history-table tbody tr:last-child td {
  border-bottom: 0;
}
.myaccount__rf-history-empty td {
  text-align: center;
  color: #b3b3b3;
  padding: 2.5rem 1rem !important;
  border-bottom: 0 !important;
}

.myaccount__cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.myaccount__cert-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1 1 auto;
  min-width: 0;
}
.myaccount__cert-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
@media (max-width: 480px) {
  .myaccount__cert-title {
    font-size: 1.25rem;
  }
}
.myaccount__cert-title-accent {
  color: #F47923;
}
.myaccount__cert-subtitle {
  font-size: 0.88rem;
  color: #b3b3b3;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .myaccount__cert-subtitle {
    font-size: 0.82rem;
  }
}
.myaccount__cert-stats {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .myaccount__cert-stats {
    width: 100%;
  }
}
.myaccount__cert-stat {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.55rem;
  padding: 0.55rem 0.95rem;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
@media (max-width: 768px) {
  .myaccount__cert-stat {
    flex: 1 1 0;
    min-width: 0;
  }
}
.myaccount__cert-stat-label {
  color: #b3b3b3;
  font-size: 0.78rem;
}
.myaccount__cert-stat-value {
  color: #F47923;
  font-size: 1rem;
  font-weight: 700;
}
.myaccount__cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .myaccount__cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .myaccount__cert-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.myaccount__cert-card {
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.myaccount__cert-card:hover {
  border-color: rgba(244, 121, 35, 0.18);
  transform: translateY(-2px);
}
.myaccount__cert-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background: #cccccc;
  margin: 0.85rem 0.85rem 0;
  border-radius: 0.55rem;
  overflow: hidden;
}
.myaccount__cert-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.myaccount__cert-card-status {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  border: 0;
  color: #ffffff;
}
.myaccount__cert-card-status i {
  font-size: 1rem;
  line-height: 1;
}
.myaccount__cert-card-status--completed {
  background: #0c3a25;
}
.myaccount__cert-card-status--completed i {
  color: #22c55e;
}
.myaccount__cert-card-status--in-progress {
  background: #2a2a2a;
}
.myaccount__cert-card-status--in-progress i {
  color: #ffffff;
}
.myaccount__cert-card-body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.myaccount__cert-card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}
.myaccount__cert-card-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.myaccount__cert-card-tags li {
  font-size: 0.72rem;
  color: #b3b3b3;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.55rem;
  border-radius: 0.35rem;
  white-space: nowrap;
}
.myaccount__cert-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  background: #F47923;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 0.25rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.myaccount__cert-card-cta i {
  font-size: 1rem;
  line-height: 1;
}
.myaccount__cert-card-cta:hover {
  background: rgb(245.2142857143, 135.7922077922, 59.2857142857);
  transform: translateY(-1px);
}
.myaccount button.myaccount__cert-card-cta {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.myaccount__cert-card-cta--loading, .myaccount__cert-card-cta:disabled {
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
  transform: none;
}
.myaccount__cert-generate {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.myaccount__cert-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1rem;
  color: #b3b3b3;
  text-align: center;
}
.myaccount__cert-empty i {
  font-size: 2.5rem;
  opacity: 0.4;
}
.myaccount__cert-empty p {
  margin: 0;
  font-size: 0.95rem;
}
.myaccount__cert-verify {
  margin-top: 2.5rem;
}
.myaccount__cert-verify .certify {
  padding: 0;
  margin: 0;
}
.myaccount__cert-verify .certify__section {
  padding: 0;
}
.myaccount__cert-verify .certify__card {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.myaccount__cert-verify .certify__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
  text-align: left;
}
@media (max-width: 480px) {
  .myaccount__cert-verify .certify__title {
    font-size: 1.25rem;
  }
}
.myaccount__cert-verify .certify__title {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}
.myaccount__cert-verify .certify__title .highlight {
  color: #F47923;
  background: none;
}
.myaccount__cert-verify .certify__subtitle {
  font-size: 0.85rem;
  color: #b3b3b3;
  margin: 0 0 2rem;
  text-align: left;
}

.contact {
  padding: 64px 0 80px 0 !important;
  min-height: 100vh;
  background-color: #0a0a0a;
}
.contact__container {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .contact__container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.contact__container {
  max-width: 1800px;
}
@media (min-width: 1024px) {
  .contact__container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.contact__header {
  margin-bottom: 50px;
}
.contact__title {
  font-size: 3.2rem;
  font-weight: 400;
  color: #e8e6e5;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.contact__title-highlight {
  color: #F47923;
}
.contact__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
}
.contact__content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact__info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.contact__info-card {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  transition: all 0.2s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__info-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.contact__info-icon {
  margin-bottom: 10px;
  align-self: center;
}
.contact__info-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.8;
}
.contact__info-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8e6e5;
  margin: 0 0 4px 0;
}
.contact__info-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.contact__form-wrapper {
  background-color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  min-width: 0;
}
.contact__form-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 30px 0;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-bottom: 20px;
}
.contact__form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}
.contact__form-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.contact__form-required {
  color: #ff7b23;
  font-weight: 600;
}
.contact__form-input {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 18px;
  color: #e8e6e5;
  font-size: 1rem;
  font-family: "Ubuntu", sans-serif;
  outline: none;
  transition: all 0.2s ease;
}
.contact__form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact__form-input:focus {
  border-color: rgba(255, 255, 255, 0.2);
}
.contact__form-input:-webkit-autofill, .contact__form-input:-webkit-autofill:hover, .contact__form-input:-webkit-autofill:focus, .contact__form-input:-webkit-autofill:active {
  -webkit-text-fill-color: #e8e6e5 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.contact__form-input--phone {
  border-radius: 0 12px 12px 0;
  flex: 1;
  border-left: none;
  min-width: 0;
}
.contact__form-input--invalid, .contact__form-input--invalid:focus {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 1px rgba(255, 77, 79, 0.25);
}
.contact__form-group--invalid .contact__form-label {
  color: #ff7875;
}
.contact__form-phone {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
  overflow: visible;
}
.contact__custom-select {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.contact__custom-select--invalid .contact__select-trigger {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 1px rgba(255, 77, 79, 0.25);
}
.contact__custom-select.open .contact__select-trigger {
  border-color: rgba(255, 255, 255, 0.2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.contact__custom-select.open .contact__select-trigger i {
  transform: rotate(180deg);
}
.contact__custom-select.open .contact__options-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.contact__custom-select--country {
  width: 90px;
  flex-shrink: 0;
}
.contact__custom-select--country .contact__select-trigger {
  border-radius: 12px 0 0 12px;
  border-right: none;
  padding: 16px 10px;
}
.contact__custom-select--country .contact__select-trigger span {
  font-size: 0.8rem;
}
.contact__custom-select--country.open .contact__select-trigger {
  border-bottom-left-radius: 0;
}
.contact__custom-select--country .contact__options-list {
  width: 100px;
}
.contact__select-trigger {
  width: 100%;
  padding: 16px 18px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
}
.contact__select-trigger span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 480px) {
  .contact__select-trigger span {
    font-size: 0.9rem;
  }
}
.contact__select-trigger i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.contact__select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
.contact__options-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  max-height: 250px;
  overflow-y: auto;
}
.contact__options-list::-webkit-scrollbar {
  width: 5px;
}
.contact__options-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.contact__option {
  padding: 12px 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}
@media (max-width: 480px) {
  .contact__option {
    font-size: 0.85rem;
    padding: 10px 15px;
  }
}
.contact__option:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 22px;
}
.contact__option.selected {
  color: #ff7b23;
  background-color: rgba(255, 123, 35, 0.05);
}
.contact__option:last-child {
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
}
.contact__option--disabled {
  color: rgba(255, 255, 255, 0.35);
  cursor: not-allowed;
  font-style: italic;
}
.contact__option--disabled:hover {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.35);
  padding-left: 18px;
}
.contact__form-status {
  min-height: 1.25rem;
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
.contact__form-status--error {
  color: #ff7875;
}
.contact__form-status--success {
  color: #52c41a;
}
.contact__form-group--recaptcha {
  margin-top: 4px;
}
.contact__form-group--recaptcha .g-recaptcha {
  display: inline-block;
}
@media (max-width: 480px) {
  .contact__form-group--recaptcha .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact__form-submit {
  background-color: #ff7b23;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Ubuntu", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 12px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact__form-submit:hover {
  background-color: rgb(255, 107.7, 9.5);
  box-shadow: 0 4px 20px rgba(255, 123, 35, 0.4);
  transform: translateY(-2px);
}
.contact__form-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.75;
  transform: none;
  box-shadow: none;
}
.contact__form-submit-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  animation: contact-spin 0.8s linear infinite;
}
.contact__form-submit--loading .contact__form-submit-spinner {
  display: inline-block;
}
@media (max-width: 1024px) {
  .contact {
    padding: 50px 0 60px;
  }
  .contact__title {
    font-size: 2.6rem;
  }
  .contact__content {
    grid-template-columns: 220px 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 40px 0 50px;
  }
  .contact__header {
    margin-bottom: 40px;
  }
  .contact__title {
    font-size: 2.2rem;
  }
  .contact__content {
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: stretch;
  }
  .contact__info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
  }
  .contact__form-wrapper {
    max-width: 100%;
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .contact__title {
    font-size: 1.9rem;
  }
  .contact__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .contact__form-wrapper {
    order: 1;
    padding: 20px;
  }
  .contact__info-cards {
    order: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: auto;
  }
  .contact__form-row {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .contact {
    padding: 30px 0 40px;
  }
  .contact__title {
    font-size: 1.7rem;
  }
  .contact__subtitle {
    font-size: 0.9rem;
  }
  .contact__form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
  .contact__info-card {
    padding: 12px 10px;
  }
  .contact__info-icon {
    margin-bottom: 6px;
  }
  .contact__info-icon img {
    width: 22px;
    height: 22px;
  }
  .contact__info-title {
    font-size: 0.78rem;
  }
  .contact__info-text {
    font-size: 0.68rem;
  }
}

@keyframes contact-spin {
  to {
    transform: rotate(360deg);
  }
}
.certify {
  max-width: 1800px;
  margin: 0 auto;
  padding: 40px 48px;
}
.certify__section {
  text-align: center;
  margin-bottom: 30px;
}
.certify__title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}
.certify__subtitle {
  font-size: 18px;
  color: #b3b3b3;
  margin-bottom: 40px;
}
.certify__card {
  background: linear-gradient(145deg, #141414, #141414);
  border: 1px solid #2a2a2a;
  border-radius: 1.4rem;
  padding: 35px 40px;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.certify__label {
  display: block;
  text-align: left;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 16px;
}
.certify__input {
  width: 100%;
  padding: 18px 20px;
  background-color: #2c2c2c;
  border: none;
  border-radius: 2.6rem;
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
}
.certify__input::placeholder {
  color: #cfcfcf;
  opacity: 0.5;
}
.certify__input:focus {
  outline: none;
  border: 1px solid #1f1f1f;
}
.certify__btn {
  width: 100%;
  padding: 18px;
  background-color: #1f1f1f;
  border: none;
  border-radius: 2.6rem;
  color: #ffffff;
  font-size: 16px;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.certify__btn:hover {
  background-color: #2c2c2c;
}
.certify__btn[disabled] {
  cursor: not-allowed;
  opacity: 0.75;
}
.certify__btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #ffffff;
  animation: certify-spin 0.8s linear infinite;
}
.certify__btn--loading .certify__btn-spinner {
  display: inline-block;
}
.certify__btn--loading .certify__btn-label {
  opacity: 0.8;
}
.certify__result {
  margin-top: 30px;
}
.certify__result--hidden {
  display: none;
}
.certify__result-card {
  background: linear-gradient(145deg, #141414, #141414);
  border: 1px solid #2a2a2a;
  border-radius: 1.4rem;
  padding: 35px 40px;
  text-align: left;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.certify__result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(244, 121, 35, 0.12);
  color: #F47923;
  border: 1px solid #F47923;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.certify__result-badge i {
  font-size: 16px;
}
.certify__result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.certify__result-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1f1f1f;
}
.certify__result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.certify__result-key {
  flex: 0 0 160px;
  color: #b3b3b3;
  font-size: 14px;
  font-weight: 500;
}
.certify__result-value {
  flex: 1;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  word-break: break-word;
}
.certify__error {
  margin-top: 30px;
}
.certify__error--hidden {
  display: none;
}
.certify__error-card {
  background: linear-gradient(145deg, #141414, #141414);
  border: 1px solid #2a2a2a;
  border-radius: 1.4rem;
  padding: 50px 40px 80px;
  text-align: center;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}
.certify__browser {
  width: 160px;
  height: 130px;
  background: linear-gradient(180deg, #2c2c2c 0%, #141414 100%);
  border: 1px solid #3a3a3a;
  border-radius: 1rem;
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
}
.certify__browser-dots {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  justify-content: center;
}
.certify__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4a4a4a;
}
.certify__error-code {
  font-size: 56px;
  font-weight: 300;
  color: #4a4a4a;
  margin-top: 5px;
}
.certify__error-title {
  font-size: 28px;
  font-weight: 400;
  color: #cfcfcf;
  margin-bottom: 12px;
}
.certify__error-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .certify {
    padding: 30px 16px;
  }
  .certify__title {
    font-size: 32px;
  }
  .certify__subtitle {
    font-size: 16px;
  }
  .certify__card, .certify__error-card, .certify__result-card {
    padding: 20px 16px;
  }
  .certify__error-title {
    font-size: 22px;
  }
  .certify__result-row {
    flex-direction: column;
    gap: 4px;
  }
  .certify__result-key {
    flex: unset;
  }
}
@media (max-width: 480px) {
  .certify__title {
    font-size: 28px;
  }
  .certify__input::placeholder {
    font-size: 13px;
  }
  .certify__browser {
    width: 140px;
    height: 110px;
  }
  .certify__error-code {
    font-size: 44px;
  }
}

@keyframes certify-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (min-width: 1024px) {
  .core-team-hero .container,
  .core-team-sections .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.core-team-hero {
  text-align: left;
}
@media (max-width: 768px) {
  .core-team-hero {
    text-align: center;
  }
}
.core-team-hero .hero-title {
  font-size: 64px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  line-height: 1.1;
}
.core-team-hero .hero-title .title-normal {
  display: block;
}
.core-team-hero .hero-title .title-highlight {
  display: block;
  color: #F47923;
}
@media (max-width: 768px) {
  .core-team-hero .hero-title {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .core-team-hero .hero-title {
    font-size: 36px;
  }
}

.team-section {
  margin-bottom: 80px;
}
.team-section .section-header {
  margin-bottom: 40px;
  position: relative;
}
.team-section .section-header .section-title {
  font-size: 32px;
  color: #F47923;
  margin-bottom: 15px;
  font-weight: 500;
}
.team-section .section-header .section-line {
  width: 100%;
  height: 1px;
  background: rgba(244, 121, 35, 0.3);
  position: relative;
}
.team-section .section-header .section-line .line-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #F47923;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: #141414;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-10px);
}
.team-card .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.team-card .member-image {
  width: 100%;
  height: 100%;
}
.team-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.team-card:hover .member-image img {
  filter: grayscale(0%);
}
.team-card .member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  z-index: 2;
}
.team-card .member-info .member-name {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}
.team-card .member-info .member-role {
  font-size: 12px;
  color: #F47923;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 5px;
}

.terms-top-banner {
  background: linear-gradient(to right, #F47923, #9d3cff);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .terms-top-banner {
    height: 80px;
  }
}
.terms-top-banner .terms-banner-text {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}
@media (min-width: 1400px) {
  .terms-top-banner .terms-banner-text {
    font-size: 32px;
  }
}

.terms-body .terms-title-wrapper {
  display: flex;
  position: relative;
}
.terms-body .terms-title-wrapper .terms-title {
  width: 60%;
  white-space: normal;
  color: #F47923;
}
@media (min-width: 1200px) {
  .terms-body .terms-title-wrapper .terms-title {
    margin-top: 24px;
  }
}
.terms-body .terms-title-wrapper .terms-extra-count {
  font-size: 72px;
  font-weight: 700;
  opacity: 0.3;
  position: absolute;
  bottom: 20px;
  right: 0;
}
@media (min-width: 768px) {
  .terms-body .terms-title-wrapper .terms-extra-count {
    font-size: 100px;
  }
}
@media (min-width: 1200px) {
  .terms-body .terms-title-wrapper .terms-extra-count {
    font-size: 140px;
  }
}
@media (min-width: 1400px) {
  .terms-body .terms-title-wrapper .terms-extra-count {
    font-size: 160px;
  }
}
@media (min-width: 1600px) {
  .terms-body .terms-title-wrapper .terms-extra-count {
    font-size: 180px;
  }
}
.terms-body .terms-items {
  list-style: none;
  padding: 0;
}
.terms-body .terms-items .terms-item {
  margin-bottom: 16px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .terms-body .terms-items .terms-item {
    width: 90%;
  }
}
.terms-body .terms-items .terms-item::before {
  content: "•";
  color: #F47923;
  font-weight: bold;
  font-size: 20px;
  margin-right: 6px;
}

.policy-top-banner {
  background: linear-gradient(to right, #F47923, #9d3cff);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1400px) {
  .policy-top-banner {
    height: 80px;
  }
}
.policy-top-banner .policy-banner-text {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
}
@media (min-width: 1400px) {
  .policy-top-banner .policy-banner-text {
    font-size: 32px;
  }
}

.policy-body .policy-body-title {
  color: #F47923;
  font-size: 21px;
  font-weight: 600;
  text-align: left;
  width: 60%;
  white-space: normal;
  margin-left: 0;
  margin-right: auto;
}
.policy-body .policy-body-subtitle {
  color: #F47923;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  width: 60%;
  white-space: normal;
  margin-left: 2ch;
  margin-right: auto;
}
.policy-body .policy-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
}
.policy-body .policy-subtext {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 16px;
  margin-left: 5ch;
}

.error-404 {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #1A1A1A;
  position: relative;
  overflow: hidden;
}
.error-404__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}
.error-404__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.error-404__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.error-404__code {
  font-size: clamp(8rem, 20vw, 15rem);
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: #F47923;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.error-404__title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
  color: #ffffff;
}
.error-404__title .highlight {
  color: #F47923;
}
.error-404__desc {
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-404__btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.error-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #ff7b23 0%, #ff9544 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 8px 24px rgba(255, 123, 35, 0.25);
}
.error-404__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 123, 35, 0.35);
  color: #ffffff;
}
.error-404__btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 123, 35, 0.1);
  border: 1px solid rgba(255, 123, 35, 0.3);
  transition: 0.3s ease;
}
.error-404__btn-arrow img {
  width: 20px;
  filter: brightness(1);
}
.error-404__btn-arrow:hover {
  background: rgba(255, 123, 35, 0.15);
  border-color: rgba(255, 123, 35, 0.5);
  transform: scale(1.1);
}

/*# sourceMappingURL=styles.css.map */