/* Home-specific CSS: fonts, variables, and basic layout helpers */
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Arpona';
  src: url('/fonts/arpona-font-01/fonts/fonnts.com-ArponaSans_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arpona';
  src: url('/fonts/arpona-font-01/fonts/fonnts.com-ArponaSans_Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arpona';
  src: url('/fonts/arpona-font-01/fonts/fonnts.com-ArponaSans_Regular_Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Arpona';
  src: url('/fonts/arpona-font-01/fonts/fonnts.com-ArponaSans_SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arpona';
  src: url('/fonts/arpona-font-01/fonts/fonnts.com-ArponaSans_Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Font variables (use these across the Home) */
  --home-font-base: 'Arpona', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --home-font-heading: 'Arpona', var(--home-font-base);
  --home-font-secondary: 'Public Sans', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Color accents (small set to start) */
  --home-yellow: #ffcd00;
  --home-cyber-black: #050507;
  --home-cyber-dark: #0b0b0d;

  /* Design color variables requested */
  --color-primary: #FFCD00;   /* color primario */
  --color-secondary: #18181B; /* color secundario */
  --color-tertiary: #09090B;  /* color terciario */
  --color-body: #000000;      /* color body (general) */
}

.header-nav{ 
    font-family: var(--home-font-base);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.header-register-btn, .header-login-btn{
    border: 3px solid var(--home-yellow)!important;
}

/* Scope all rules to the home page root to avoid leaking styles */
.home-page {
  font-family: var(--home-font-base);
  color: #e5e7eb;
}

/* Apply design body background color when home CSS is loaded */
body { background-color: var(--color-body); font-family: var(--home-font-base); }

.home-page h1,
.home-page h2,
.home-page h3 {
  font-family: var(--home-font-heading)!important;
}

/* Utility: emphasised yellow text */
.home-accent-yellow { color: var(--home-yellow); }

/* Use primary design color */
.home-accent-primary { color: var(--color-primary); }

/* HERO*/
.home-hero { line-height: 1; }

.home-page .hero{margin-top: 30rem;}

.home-page .hero-title{font-size: 42px; line-height: 1.1;}
.home-page .hero-text{font-size: 16px; margin-bottom: 2rem;}

@media (min-width: 768px) {
    .home-page .hero-title{font-size: 96px;line-height: 80px;letter-spacing: -4.8px;max-width: 1000px;}
    .home-page .hero-text{font-size: 20px;}
}

@media (max-width: 767px) {
    .home-page .hero-title span.hero-text-mobile{
      font-size: 32px!important;
      letter-spacing: -2px;
    }
    .home-page .hero-title{
      font-weight: 800;
      font-size: 64px;
      letter-spacing: -2px;
      line-height: 48px;
    }
}

/* LOGIN & REGISTER PAGE STYLES */
.login-page-container, .register-page-container {
  font-family: var(--home-font-base)!important;
}

.login-page .header-nav, .register-page .header-nav { 
    display: none !important; 
}

/* Custom breakpoint for mobile login and register */
@media (max-width: 767px) {
  .login-page-container, .register-page-container {
    background-image: url('../assets/img/bg-fondo-mobile-login.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }

  .login-page-container > .absolute.inset-0.z-0,
  .register-page-container > .register-bg-desktop {
    display: none !important;
  }

  .login-page-container .max-w-md,
  .register-page-container .register-card {
    background-color: rgba(0, 0, 0, 0.72) !important;
    backdrop-filter: blur(16px);
  }
}

.login-title {
    font-size: 48px;
    letter-spacing: -2.4px;
}

.login-text{
  font-size: 18px;
}

.logo-link:focus, .logo-link:active {
    outline: none !important;
    box-shadow: none !important;
}

/* CINEMATIC HERO EFFECT */
.cinematic-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.home-hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-hero-bg {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.animate-cinematic-zoom {
  animation: cinematic-zoom-desktop 15s ease-in-out infinite alternate;
}

@keyframes cinematic-zoom-desktop {
  0% { transform: scale(1); transform-origin: center 80px; }
  100% { transform: scale(1.08); transform-origin: center 80px; }
}

/* Responsividad para la imagen del Hero y Animación Mobile */
@media (max-width: 767px) {
  .cinematic-hero {
    min-height: 100svh !important;
  }
  
  .home-hero-bg {
    background-image: url('../assets/img/mobile-hero.png') !important;
    background-position: center 60px !important;
    background-size: initial !important;
  }

  .animate-cinematic-zoom {
    animation: cinematic-zoom-mobile 19s ease-in-out infinite alternate;
  }
}

@keyframes cinematic-zoom-mobile {
  0% { transform: scale(1); transform-origin: center 60px; }
  100% { transform: scale(1.06); transform-origin: center 60px; }
}

/* Accessibility: Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate-cinematic-zoom {
    animation: none !important;
    transform: scale(1.03) !important;
  }
}

/* Features Section Styles */
.features-section { background-color: var(--color-tertiary); overflow-x: hidden; width: 100%; }
.features-section h2 { font-family: var(--home-font-base); font-weight: 700; letter-spacing: -1px; font-size: 32px; line-height: 1.1; }
@media (min-width: 768px) {
    .features-section h2 { letter-spacing: -1.5px; font-size: 48px; }
}
@media (max-width: 767px) {
    .features-section h2{text-align: left;}
}

.feature-card { background: #18181B; padding: 2.5rem; border-radius: 2rem 0.5rem 0.5rem 0.5rem; height: 100%; border: 1px solid rgba(255,255,255,0.03); }
.feature-card.yellow-card { background: var(--color-primary); color: #000; border: none; border-radius: 2.5rem 0.5rem 0.5rem 2.5rem; }
.feature-card h3 { font-family: var(--home-font-base); font-weight: 700; font-size: 24px; margin-bottom: 1rem; }
.feature-card p { color: #A1A1AA; font-size: 16px; line-height: 1.6; }
.feature-card.yellow-card h3, .feature-card.yellow-card p { color: #000; }
.feature-card.yellow-card p { font-weight: 600;font-weight: 400;margin-top: 10px; }

.features-grid { display: flex; gap: 1.25rem; overflow-x: auto; padding: 1rem 0 2rem 0; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.features-grid::-webkit-scrollbar { display: none; }
.feature-item { min-width: 85%; flex: 0 0 85%; scroll-snap-align: center; }
.feature-item h2{font-size: 30px;letter-spacing: 0px;}
@media (min-width: 768px) {
    .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-areas: "large large" "small1 small2" "yellow yellow"; gap: 1.5rem; overflow: visible; }
    .feature-item:nth-child(1) { grid-area: large; }
    .feature-item:nth-child(2) { grid-area: small1; }
    .feature-item:nth-child(3) { grid-area: small2; }
    .feature-item:nth-child(4) { grid-area: yellow; }
    .feature-item { min-width: auto; flex: 1; }
    
    /* Layout fix for the specific design grid */
    .feature-card.yellow-card { display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 3rem 4rem; }
    .feature-card.yellow-card .content { max-width: 60%; }
}

/* Focus Section Styles */
.focus-section { background-color: var(--color-body); overflow-x: hidden; width: 100%; }
.focus-inner { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 1024px) { .focus-inner { flex-direction: row; align-items: center; } }

.focus-content { flex: 1; }
.focus-content h2 { font-family: var(--home-font-base); font-weight: 600; letter-spacing: -1.5px; font-size: 32px; line-height: 1.1; margin-bottom: 3rem; }
.focus-content h2 span.text-cyber-yellow{font-weight: 800;}
@media (min-width: 768px) { .focus-content h2 { font-size: 48px; } }

.focus-list { position: relative; padding-left: 2rem; }
.focus-list::before { content: ''; position: absolute; left: 14.5px; top: 12px; bottom: 12px; width: 1px; background: rgba(255,255,255,0.1); }

.focus-item { position: relative; margin-bottom: 2.5rem; }
.focus-item::before { content: ''; position: absolute; left: -21px; top: 11px; width: 10px; height: 10px; background: var(--color-primary); border-radius: 50%; z-index: 2; box-shadow: 0 0 10px var(--color-primary); }
.focus-item h4 { font-family: var(--home-font-base); font-weight: 600; font-size: 18px; color: #fff; margin-bottom: 0.5rem; }
.focus-item p { color: #A1A1AA; font-size: 14px; line-height: 1.6; max-width: 450px; }

.focus-video-container { flex: 1; position: relative; width: 100%; }
.focus-video-wrapper { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; border: 1px solid rgba(255,255,255,0.05); }
@media (min-width: 1024px) { .focus-video-wrapper { aspect-ratio: 1/1; } }

.focus-video-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.focus-video-wrapper:hover .focus-video-bg { transform: scale(1.05); }
.focus-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%); }

.play-btn-big { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 10; }
.play-btn-circle { width: 80px; height: 80px; border-radius: 50%; border: 6px solid var(--color-primary); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.play-btn-circle svg { width: 30px; height: 30px; color: var(--color-primary);}
.focus-video-wrapper:hover .play-btn-circle { transform: scale(1.1); background: rgba(255,205,0,0.1); }

/* Price Section Styles */
.price-section {
  background: var(--color-body);
  overflow-x: hidden;
}

.price-card {
  background: #18181B;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 120px rgba(255, 205, 0, 0.2);
}

.price-kicker {
  margin: 0 0 1rem;
  text-align: center;
  color: var(--color-primary);
  font-family: var(--home-font-base);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.price-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.price-prefix {
  font-family: var(--home-font-base);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.price-old {
  color: #71717a;
  font-family: var(--home-font-base);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  text-decoration: line-through;
}

.price-amount {
  font-family: var(--home-font-base);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-primary);
}

.price-period {
  font-family: var(--home-font-base);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.price-benefits {
  display: grid;
  margin-top: 2rem;
  margin-bottom: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.price-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.price-check {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 0.15rem;
}

.price-benefit-item h4 {
  margin: 0;
  color: var(--color-primary);
  font-family: var(--home-font-base);
  font-size: 0.79rem;
  font-weight: 700;
}

.price-benefit-item p {
  margin: 0.2rem 0 0;
  color: #d4d4d8;
  font-family: var(--home-font-base);
  font-size: 0.76rem;
  line-height: 1.35;
}

.price-benefit-item em {
  font-weight: 700;
}

.price-more {
  margin-top: 0.8rem;
}

.price-more-close {
  display: none;
}

.price-more[open] .price-more-open {
  display: none;
}

.price-more[open] .price-more-close {
  display: inline;
}

.price-more summary {
  cursor: pointer;
  color: var(--color-primary);
  font-family: var(--home-font-base);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  list-style: none;
}

.price-more summary::-webkit-details-marker {
  display: none;
}

.price-cta {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: var(--color-primary);
  color: #000;
  text-align: center;
  font-family: var(--home-font-base);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.price-cta:hover {
  transform: translateY(-1px);
}

.price-note {
  margin: 1rem 0 0;
  text-align: center;
  color: #a1a1aa;
  font-family: var(--home-font-base);
  font-size: 14px;
}

@media (min-width: 768px) {
  .price-more {
    display: none;
  }

  .price-benefits-rest {
    display: contents;
  }

  .price-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 2.6rem 1.6rem;
  }

  .price-heading {
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }

  .price-amount {
    font-size: clamp(5rem, 9vw, 6.8rem);
  }

  .price-period {
    font-size: 2rem;
    margin-bottom: 0.85rem;
  }

  .price-cta {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    border-radius: 0.75rem;
  }
}

@media (max-width: 767px) {
  .price-card {
    border-radius: 2.1rem;
    padding: 2rem 1.25rem 2.2rem;
  }

  .price-kicker {
    margin-bottom: 1.3rem;
    letter-spacing: 0.35em;
    font-size: 0.86rem;
  }

  .price-heading {
    justify-content: flex-start;
    margin-bottom: 1rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  .price-amount {
    font-size: 5.2rem;
  }

  .price-period {
    font-size: 16px;
    margin-bottom: 0px;
    text-transform: uppercase;
  }

  .price-benefits {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
  }

  .price-benefits-rest {
    display: none;
    order: 2;
  }

  .price-more {
    margin-top: 0.2rem;
    order: 3;
  }

  .price-more[open] + .price-benefits-rest {
    display: grid;
    gap: 0.9rem;
  }

  .price-benefits .price-benefit-item h4 {
    font-size: 15px;
    line-height: 1;
  }

  .price-benefits .price-benefit-item p {
    font-size: 13px;
    line-height: 1.25;
    color: #d4d4d8;
    margin-top: 10px;
  }

  .price-cta {
    margin-top: 1.6rem;
    border-radius: 1.4rem;
    font-size: 1.25rem;
    line-height: 1.15;
    padding: 1.2rem 1rem;
  }
}

/* FAQ section */
.faq-section {
  background: var(--color-tertiary);
}

.faq-title {
  font-family: var(--home-font-base);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.faq-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 48px;
  height: 4px;
  background: var(--color-primary);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: #18181B;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-family: var(--home-font-base);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.55rem 1.4rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.4rem 1.35rem;
}

.faq-answer p {
  margin: 0;
  color: #d4d4d8;
  font-family: var(--home-font-base);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 72ch;
}

@media (max-width: 767px) {
  .faq-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .faq-title {
    font-size: 2.5rem;
    padding-bottom: 0.8rem;
  }

  .faq-title::after {
    width: 42px;
    height: 3px;
  }

  .faq-list {
    gap: 0.75rem;
  }

  .faq-item summary {
    font-size: 1rem;
    line-height: 1.3;
    padding: 1.2rem 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.home-page .hero-title .home-accent-primary, .home-page .hero-text .home-accent-primary{color: var(--home-yellow);}

.home-page .hero-text span{font-weight: 700;}

.home-page .hero-btn{
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1.4px;
    font-size: 14px;
}

/* Learn section styles */
.learn-section { background-color: var(--color-body); overflow-x: hidden; width: 100%; }
.learn-section h2 { font-family: var(--home-font-secondary)!important; font-weight: 900; letter-spacing: -1px; font-size: 36px; line-height: 1.1; }
.learn-section .leading-snug, .learn-section .leading-relaxed{font-family: var(--home-font-secondary);}
@media (min-width: 768px) {
    .learn-section h2 { letter-spacing: -2.97px; font-size: 59px; }
}
.learn-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; width: 100%; max-width: 100%; }
.learn-section .learn-btn { letter-spacing: 1.4px; font-size: 14px; padding: 20px 40px; width: 100%; display: flex; justify-content: center; }
@media (min-width: 640px) {
    .learn-section .learn-btn { width: auto; display: inline-flex; }
}
@media (min-width: 768px) { .learn-inner { grid-template-columns: 1fr 1fr; } }

.learn-card { background: rgba(10,10,12,0.6); border: 1px solid rgba(255,255,255,0.04); padding: 2.25rem; border-radius: 2.25rem; }
/* Learn section styles - Desktop adjustments */
@media (min-width: 1024px) {
  .learn-card {
    padding: 2.5rem !important;
    border-radius: 2.5rem !important;
  }
  
  .small-video-title {
    font-size: 1.125rem !important;
    margin-top: 1rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .small-video-desc {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }

  .card-item.featured .learn-card {
    padding: 0 !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
  }

  .learn-inner .small-video {
    height: auto !important;
    aspect-ratio: 16/9 !important;
  }
}

.learn-card h4{
  font-family: var(--home-font-secondary);
  font-weight: 900;
  font-size: 20px;
  position: relative;
  padding-bottom: 0.75rem;
}
.learn-card h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 39px;
  height: 3.3px;
  background: var(--color-primary);
}
.learn-hero-title { font-size: 2.25rem; line-height: 1; }
.small-video { position: relative; border-radius: 1.5rem; overflow: hidden; height: 220px; background-position: center; background-repeat: no-repeat; }
.small-video .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.small-video .play .btn { width: 56px; height: 56px; border-radius: 999px; background: var(--color-primary); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.small-video-title{font-family: var(--home-font-secondary);font-size: 16px;}
.small-video-desc{font-family: var(--home-font-secondary);font-size: 11.56px;color: #71717A;}
.small-video + .small-video-title { margin-top: 16px; margin-bottom: 5px; font-weight: 700; color: #fff;}
.small-video + .small-video-desc { margin-top: 0.25rem; color: #9ca3af; font-size: 11px; }
@media (min-width: 1024px) { .learn-hero-title { font-size: 3rem; } }

.cards-carousel { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1.5rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; width: 100%; margin-left: auto; margin-right: auto; }
.cards-carousel::-webkit-scrollbar { display: none; }
.card-item { min-width: 85%; flex: 0 0 85%; scroll-snap-align: center; }
.card-item .learn-card { height: 100%; display: flex; flex-direction: column; background: rgba(10,10,12,0.8); backdrop-filter: blur(10px); }

/* Featured card styling for desktop */
.card-item.featured .learn-card { padding: 1.5rem; }
.card-item.featured img { height: 260px; width: 100%; object-fit: cover; border-radius: 1.5rem; }

/* Desktop: show grid cards instead of carousel */
@media (min-width: 768px) {
  /* Desktop: featured spans full width */
  .cards-carousel { overflow: visible; display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 0; }
  .card-item { min-width: auto; flex: 1 1 auto; }
}

/* Mentors carousel section */
.mentors-section {
  background: var(--color-tertiary);
}

.mentors-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mentors-copy {
  text-align: center;
}

.mentors-divider-row {
  position: relative;
  width: 100%;
}

.mentors-divider {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mentors-title {
  font-family: var(--home-font-base);
  font-size:40px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -1.8px;
  max-width: 900px;
  margin: 0 auto;
}

.mentors-subtitle {
  margin: 0.8rem auto 0;
  max-width: 700px;
  color: #6B7280;
  font-family: var(--home-font-base);
  font-size: 14px;
  line-height: 1.4;
}

.mentors-more {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-family: var(--home-font-base);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .mentors-gradient {
    transition: none;
  }
}
}