@import url('https://fonts.googleapis.com/css2?family=NTR&family=Noto+Sans+JP:wght@100..900&family=Ovo&display=swap');

/* Font Face Declarations */
@font-face {
  font-family: 'Ovo';
  src: url('../fonts/Ovo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shippori Mincho B1';
  src: url('../fonts/ShipporiMinchoB1-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shippori Mincho B1';
  src: url('../fonts/ShipporiMinchoB1-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shippori Mincho B1';
  src: url('../fonts/ShipporiMinchoB1-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shippori Mincho B1';
  src: url('../fonts/ShipporiMinchoB1-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Shippori Mincho B1';
  src: url('../fonts/ShipporiMinchoB1-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Noto Sans JP Font Face Declarations */
@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url('../../app/fonts/NotoSansJP-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('../../app/fonts/SourceSerif4_36pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  --font-ovo: 'Ovo', serif;
  --font-shippori-mincho: 'Shippori Mincho B1', serif;
  --font-noto-sans-jp: 'Noto Sans JP', sans-serif;
  --font-source-serif-4: 'Source Serif 4', serif;
}

html {
  visibility: hidden;
}

/* Font Classes */
.font-ovo {
  font-family: var(--font-ovo);
}

.font-source-serif-4 {
  font-family: var(--font-source-serif-4);
}

.font-shippori {
  font-family: var(--font-shippori-mincho);
}

.font-shippori-regular {
  font-family: var(--font-shippori-mincho);
  font-weight: normal;
}

.font-shippori-medium {
  font-family: var(--font-shippori-mincho);
  font-weight: 500;
}

.font-shippori-semibold {
  font-family: var(--font-shippori-mincho);
  font-weight: 600;
}

.font-shippori-bold {
  font-family: var(--font-shippori-mincho);
  font-weight: bold;
}

.font-shippori-extrabold {
  font-family: var(--font-shippori-mincho);
  font-weight: 800;
}

/* Noto Sans JP Font Classes */
.font-noto {
  font-family: var(--font-noto-sans-jp);
}

.font-noto-thin {
  font-family: var(--font-noto-sans-jp);
  font-weight: 100;
}

.font-noto-extralight {
  font-family: var(--font-noto-sans-jp);
  font-weight: 200;
}

.font-noto-light {
  font-family: var(--font-noto-sans-jp);
  font-weight: 300;
}

.font-noto-regular {
  font-family: var(--font-noto-sans-jp);
  font-weight: normal;
}

.font-noto-medium {
  font-family: var(--font-noto-sans-jp);
  font-weight: 500;
}

.font-noto-semibold {
  font-family: var(--font-noto-sans-jp);
  font-weight: 600;
}

.font-noto-bold {
  font-family: var(--font-noto-sans-jp);
  font-weight: bold;
}

.font-noto-extrabold {
  font-family: var(--font-noto-sans-jp);
  font-weight: 800;
}

.font-noto-black {
  font-family: var(--font-noto-sans-jp);
  font-weight: 900;
}

.font-ntr {
  font-family: 'NTR', sans-serif;
}

.text-2-lines {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.button-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 24px;
  border-radius: 20px;
  background-color: #ebe7e1;
  box-shadow: 0px 4px 4px 0px #00000040;
  font-size: 10px;
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 4px 4px 0px #00000040;
}

.btn-animate {
  transition: transform 0.15s ease;
  transform: translateY(0);
}

.btn-animate:hover {
  transform: translateY(-2px);
}

.button-secondary {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  font-family: var(--font-shippori-mincho);
  font-weight: 400;
  width: 255px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 0;
  margin-inline: auto;
}

.button-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #dcd3c6 43%, #ebe7e1 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
}

.button-secondary:hover::before {
  transform: translateX(0);
}

.button-secondary span {
  position: relative;
  z-index: 1;
}

.button-secondary:hover {
  color: black;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Aside Menu Styles */
.aside-menu {
  position: fixed;
  top: 60px;
  height: calc(100vh - 60px);
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.aside-menu.open {
  right: 0;
}

.aside-content {
  padding: 20px;
  height: 75%;
}

/* Overlay Styles */
.overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 999;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Button Styles */
.open-btn,
.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s ease;
}

.open-btn:hover,
.close-btn:hover {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .button-primary {
    width: 96px;
    height: 24px;
  }

  .aside-menu {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .overlay {
    top: 60px;
    height: calc(100vh - 60px);
  }
}

@media (min-width: 1024px) {
  .button-primary {
    width: 96px;
    height: 24px;
  }

  .aside-menu {
    top: 100px;
    height: calc(100vh - 100px);
  }

  .overlay {
    top: 100px;
    height: calc(100vh - 100px);
  }
}

@media (min-width: 1280px) {
  .button-primary {
    width: 210px;
    height: 43px;
  }

  .aside-menu {
    top: 100px;
    height: calc(100vh - 100px);
  }

  .overlay {
    top: 100px;
    height: calc(100vh - 100px);
  }
}

/* Disable scroll when menu is open */
.overflow-hidden {
  overflow: hidden;
}

/* Main Container */
.layers-container {
  height: 300vh;
  /* 3 layers × 100vh */
  position: relative;
  margin-top: 70px;
  /* Account for header */
}

/* Layer styling */
.layer {
  position: fixed;
  top: 70px;
  /* Account for header */
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s ease-out;
}

/* Layer 1 - 3D Model (Base layer) */
.layer-1 {
  z-index: 100;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* 3D Model placeholder */
.model-placeholder {
  text-align: center;
  color: white;
  position: relative;
}

.model-placeholder h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.model-placeholder p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Floating elements for 3D placeholder */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 60px;
  height: 60px;
  top: -80px;
  right: -120px;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: -120px;
  left: 50px;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 1;
  }
}

/* Layer 2 - Image 1 */
.layer-2 {
  z-index: 200;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translateY(100%);
}

/* Layer 3 - Image 2 */
.layer-3 {
  z-index: 300;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translateY(100%);
}

/* Content styling */
.layer-content {
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.layer.active .layer-content {
  opacity: 1;
  transform: translateY(0);
}

.layer-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.layer-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: rgba(255, 107, 107, 0.9);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn:hover {
  background: rgba(255, 82, 82, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Content after layers */
.post-layers-content {
  position: relative;
  z-index: 400;
  background: #fff;
  margin-top: 300vh;
  /* After all 3 layers */
}

/* About Section */
.about-section {
  padding: 100px 50px;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.about-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.about-card {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
}

.about-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff6b6b;
}

.about-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 205, 196, 0.05));
  padding: 100px 50px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-section h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 60px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 107, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-item h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 100px 50px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.contact-section h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-form {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.form-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  background: rgba(255, 255, 255, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1500;
  color: white;
  font-size: 12px;
  text-align: center;
}

.scroll-progress {
  width: 3px;
  height: 200px;
  background: rgba(255, 255, 255, 0.2);
  margin: 10px auto;
  position: relative;
  border-radius: 2px;
}

.scroll-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #ff6b6b, #4ecdc4);
  height: 0%;
  transition: height 0.1s ease;
  border-radius: 2px;
}

/* Layer indicator */
.layer-indicator {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  z-index: 1500;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.layer-number {
  font-weight: bold;
  color: #ff6b6b;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .layers-container {
    margin-top: 60px;
  }

  .layer {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .layer-content h1 {
    font-size: 2.5rem;
  }

  .layer-content p {
    font-size: 1.2rem;
    padding: 0 20px;
  }

  .scroll-indicator {
    display: none;
  }

  .layer-2,
  .layer-3 {
    background-attachment: scroll;
  }

  .model-placeholder h2 {
    font-size: 2rem;
  }

  .about-section,
  .features-section,
  .contact-section {
    padding: 60px 20px;
  }

  .about-section h2,
  .features-section h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .post-layers-content {
    margin-top: calc(150vh - 50px);
  }
}

/* Horizontal Scroll Container */
.scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); */
  margin-bottom: 33px;
}

.scroll-track {
  display: flex;
  align-items: center;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  overflow: hidden;
}

/* Article Card */
.article {
  margin: 0 37.5px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.article:hover {
  transform: translateY(-8px) scale(1.02);
}

.article.active {
  transform: scale(1.05);
  z-index: 10;
}

.article-image {
  width: 100%;
  height: 60%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.article-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.article-content {
  width: 520px;
  height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.article-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #667eea;
  margin-bottom: 5px;
}

.article-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  font-size: 0.7rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 3px;
}

.article-readtime {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ig-container {
  display: flex;
  height: 100%;
  gap: 14.98px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 9.99px;
}

.img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation buttons - vị trí giống hình */
.nav-button {
  position: absolute;
  top: calc(57% + 15px);
  transform: translateY(-57%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-button.prev {
  left: 0;
}

.nav-button.next {
  right: 0;
}

/* Arrow styles */
.nav-arrow {
  width: 0;
  height: 0;
}

.nav-arrow.left {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid #000;
  margin-left: -2px;
}

.nav-arrow.right {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #000;
  margin-right: -2px;
}

/* FAQ Accordion Styles */
.faq-item {
  transition: all 0.3s ease;
}

.faq-question {
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #c4b8a8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-top: none;
}

.faq-answer.show {
  display: block;
  min-height: 100px;
  max-height: 1000vh;
  padding: 13px 9px;
  white-space: break-spaces;
  text-indent: 0;
}

#calendarBtn {
  width: 150px;
  height: 30px;
}

@media (max-width: 1024px) {
  .article {
    margin: 0 14.5px;
  }

  .faq-answer.show {
    padding: 18px 20px;
  }

  .nav-button {
    top: calc(57% + 15px);
  }
}


@media (max-width: 820px) {
  .nav-button {
    top: calc(57% + 15px);
  }
}



@media (max-width: 540px) {
  .nav-button {
    top: calc(57% + 10px);
  }
}

.faq-arrow svg {
  transition: transform 0.3s ease;
}

.faq-arrow.rotated svg {
  transform: rotate(180deg);
}

.fade-row {
  /* opacity: 0; */
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-row.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-row.dim {
  opacity: 0.2;
}

.slick-initialized .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}