/* 1. Force the language behavior at the root */
html {
    -webkit-font-feature-settings: "smpl" 1 !important;
    font-feature-settings: "smpl" 1 !important;
    font-variant-east-asian: simplified !important;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Noto Serif SC", "STSong", "SimSun", serif !important;
	font-family: "Noto Serif SC", serif;
	margin: 0;
	padding: 0;
	color: #333;
	line-height: 1.8;

	/* Extra layer of protection for punctuation */
    -webkit-font-feature-settings: "smpl" 1;
    font-feature-settings: "smpl" 1;
}

/* Header */
.header {
	background-color: #1e375f;
	color: white;
	padding: 15px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.logo-section {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo-icon {
	width: 30px;
	height: 30px;
	background-color: #ffc656;
	border-radius: 4px;
}

.logo-text {
	font-size: 20px;
	font-weight: bold;
}

.logo-tagline {
	font-size: 12px;
	margin-left: 5px;
}

.nav-section {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nav-link {
	color: white;
	text-decoration: none;
	font-size: 14px;
	position: relative;
}

.nav-link::after {
	content: '▼';
	font-size: 8px;
	margin-left: 5px;
}

.search-icon {
	font-size: 16px;
	cursor: pointer;
}

.login-btn {
	background-color: transparent;
	border: 1px solid white;
	color: white;
	padding: 8px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.donate-btn {
	background-color: #ffc656;
	color: #1e375f;
	border: none;
	padding: 8px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.menu-icon {
	font-size: 20px;
	cursor: pointer;
}

/* Hero Section */
.hero-section {
	position: relative;
	width: 100%;
	height: 800px;
	overflow: hidden;
}

.hero-image {
	width: 100%;
	height: auto;
	max-height: 800px;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 80px;
	color: white;
}

.hero-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hero-left img {
	width: 400px;
	height: 380px;
}

.hero-label {
	font-size: 20px;
	opacity: 0.9;
}

.hero-number {
	font-size: 120px;
	font-weight: bold;
	line-height: 1;
}

.hero-days {
	font-size: 60px;
	margin-left: 10px;
}

.hero-subtitle {
	font-size: 32px;
	margin-top: 10px;
}

.hero-title {
	font-size: 48px;
	font-weight: bold;
	writing-mode: horizontal-tb;
}

/* Introduction Section */
.intro-section {
	background-color: #CDC082;
	padding: 60px 80px;
}

.content-section hr {
	background-color: #232827;
	height: 3px;
}

.intro-content {
	max-width: 1250px;
	margin: 0 auto;
	font-size: 1.375rem;
	line-height: 2;
	color: #333;
}

/* Main Content Section */
.content-section {
	background-color: #EFE0BB;
	;
	padding: 60px 80px;
}

.content-wrapper {
	max-width: 1250px;
	margin: 0 auto;
}

.day-title {
	text-align: center;
	font-size: 48px;
	color: #7974F7;
	margin-bottom: 30px;
	font-weight: bold;
}

.day-question {
	text-align: center;
	font-size: 36px;
	color: #000;
	margin-bottom: 40px;
	font-weight: 500;
}

.audio-section {
	margin: 40px 0;
}

.audio-title-wrapper {
	display: flex;
	justify-content: space-evenly;
}

.audio-title {
	width: 100%;
	text-align: center;
}

.audio-label {
	font-size: 20px;
	margin-bottom: 20px;
	color: #333;
  	display: flex;
  	align-items: center;
  	gap: 8px;              /* spacing between text and button */
  	white-space: nowrap;  /* prevent line breaks */
}

.audio-language-label {
	text-align: center;
	margin-bottom: 10px;
	font-size: 20px;
	color: #333;
	font-weight: 500;
}

.audio-players {
	display: flex;
	gap: 20px;
}

.audio-player-wrapper {
	display: flex;
	width: 100%;
	flex-direction: column;
}

.audio-player {
	width: 100%;
	padding: 15px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.audio-player.cantonese {
	flex-wrap: nowrap;
	white-space: nowrap;
}

.audio-player.cantonese > * {
	flex-shrink: 0;
}

.audio-player.cantonese > div[style*="flex: 1"] {
	flex: 1;
	min-width: 0;
}

.audio-player.cantonese .time-display {
	white-space: nowrap;
}

.play-button {
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: end;
	color: #1e375f;
	font-size: 16px;
}

.progress-dot {
	width: 12px;
	height: 12px;
	background-color: #ffc656;
	border-radius: 50%;
}

.progress-bar {
	flex: 1;
	height: 4px;
	background-color: #bbbaba;
	border-radius: 2px;
	position: relative;
}

.progress-fill {
	height: 100%;
	background-color: #ffc656;
	width: 0%;
	border-radius: 2px;
}

.time-display {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #666;
}

.volume-icon {
	cursor: pointer;
	color: #666;
}

.article-content {
	font-size: 20px;
	line-height: 2;
	color: #392F18;
	margin-top: 40px;
}

.scripture {
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: 500;
}

.article-text {
	margin-bottom: 25px;
}

.author {
	text-align: left;
	margin-top: 30px;
	font-size: 20px;
	color: #392F18
}

/* Reflection Section */
.reflection-section {
	background-color: #787463;
	;
	padding: 40px 80px;
}

.reflection-wrapper {
	max-width: 1250px;
	margin: 0 auto;
}

.section-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.section-icon {
	width: 24px;
	height: 24px;
}

.section-title {
	font-size: 24px;
	font-weight: bold;
	color: #ffff;
}

.section-content {
	font-size: 1.375rem;
	line-height: 2;
	color: #ffff;
}

/* Prayer Section */
.prayer-section {
	background-color: #A29D82;
	padding: 40px 80px;
}

.prayer-wrapper {
	max-width: 1250px;
	margin: 0 auto;
}

/* Footer */
.footer {
	background-color: #1e375f;
	color: white;
	padding: 60px 80px 30px;
}

.footer-upper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn {
	background-color: transparent;
	border: 1px solid white;
	color: white;
	padding: 10px 25px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.subscribe-section {
	text-align: right;
}

.subscribe-text {
	font-size: 14px;
	margin-bottom: 10px;
}

.subscribe-btn {
	background-color: #2279cb;
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
}

.footer-lower {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-left {
	font-size: 14px;
	line-height: 1.8;
}

.footer-contact {
	font-size: 14px;
	line-height: 1.8;
}

.social-icons {
	display: flex;
	gap: 15px;
	margin-top: 10px;
}

.social-icon {
	width: 32px;
	height: 32px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.footer-copyright {
	width: 100%;
	text-align: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
}

.footer-copyright a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
	.header {
		padding: 10px 15px;
		flex-wrap: wrap;
	}

	.nav-section {
		gap: 10px;
	}

	.nav-link {
		font-size: 12px;
	}

	.hero-section {
		height: auto;
	}

	.hero-left {
		margin-top: 60px;
	}
	
	.hero-left img {
		width: 233px;
		height: 220px;
	}

	.hero-content {
		padding: 30px 20px;
		flex-direction: column;
		align-items: flex-start;
	}

	.hero-number {
		font-size: 80px;
	}

	.hero-days {
		font-size: 40px;
	}

	.hero-subtitle {
		font-size: 24px;
	}

	.hero-title {
		font-size: 32px;
		width: 100%;
        text-align: center;
	}

	.intro-section,
	.content-section,
	.reflection-section,
	.prayer-section {
		padding: 40px 20px;
	}

	.day-title {
		font-size: 36px;
	}

	.day-question {
		font-size: 28px;
	}


	.audio-players {
		display: block;
		gap: 20px;
	}

	.audio-player {
		margin-bottom: 10px;
	}

	.footer {
		padding: 40px 20px 20px;
	}

	.footer-upper {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.subscribe-section {
		text-align: left;
	}
}
.bible-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 56px;
  padding: 0 24px;

  border-radius: 999px;
  border: none;

  background: linear-gradient(
    0deg,
    #A29D82 0%,
    #787463 100%
  );

  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  opacity: 0.9;

  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;

  white-space: nowrap;
}

/* Navigation Section */

.navigation-section-wrapper .navigation-section {
	background-color: transparent;
	justify-content: flex-start;
	padding: 40px 0px;
}

.navigation-section-wrapper .navigation-container {
  justify-content: flex-start;
  max-width: 100%;
}

.navigation-section {
  padding: 40px 20px;
  background-color: #fff3db;
  display: flex;
  justify-content: center;
  align-items: center;
}

.navigation-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 800px;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.nav-page-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #ffc656;
  color: #333;
  border: none;
  border-radius: 999px;
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-family: "Noto Serif SC", serif;
}

.nav-page-btn.prev-btn {
  width: 160px;
  height: 40px;
  justify-content: flex-start;
  background-color: #FFFFFF;
  color: #4a4a4a;
  padding: 0px 0px 0px 3px;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.nav-page-btn.prev-btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #787463;
  border-radius: 50%;
  color: #ffffff;
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  transition: all 0.3s ease;
}

.nav-page-btn.prev-btn .arrow img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-page-btn.prev-btn:hover:not(.disabled) {
  background-color: #d5d5d5;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.nav-page-btn.prev-btn:hover:not(.disabled) .arrow {
  background-color: #5a5a5a;
}

.nav-page-btn.next-btn {
  width: 160px;
  height: 40px;
  background-color: #FFFFFF;
  color: #4a4a4a;
  padding: 0px 3px 0px 0px;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  gap: 20px;
  justify-content: flex-end;
}

.nav-page-btn.next-btn .arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 35px;
  height: 35px;
  background-color: #787463;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  transition: all 0.3s ease;
}

.nav-page-btn.next-btn .arrow img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transform: scaleX(-1);
}

.nav-page-btn.next-btn:hover:not(.disabled) {
  background-color: #eeeeee;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.nav-page-btn.next-btn:hover:not(.disabled) .arrow {
  background-color: #5a4d3f;
}

.nav-page-btn:hover:not(.disabled) {
  background-color: #ffb836;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.not-clickable {
	pointer-events: none !important;
	opacity: 0.3 !important;
}

.nav-page-btn.prev-btn.disabled {
  display: none;
  background-color: #e5e5e5;
  opacity: 0.6;
}

.nav-page-btn.next-btn.disabled {
  display: none;
  background-color: #f5f5f5;
  opacity: 0.6;
}

.nav-page-btn .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.page-number {
  background: linear-gradient(0deg, #A29D82 0%, #787463 100%);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  width: 200px;
  font-size: 28px;
  font-weight: 400;
  padding: 9px 20px;
  border-radius: 999px;
  min-width: 100px;
  text-align: center;
  font-family: "Noto Serif SC", serif;
}

.page-number span {
  height: 60px;
  display: contents;
}

@media (max-width: 768px) {
  .navigation-container {
    gap: 15px;
  }
  
  .nav-page-btn {
    padding: 10px 20px;
    font-size: 24px;
  }
  
  .page-number {
    font-size: 24px;
    padding: 10px 16px;
    min-width: 80px;
  }
  
  .navigation-section-wrapper .navigation-container {
	justify-content: center;
  }
}

/*Home Page Styles */

.home-content-section {
    background: #EFE0BB; /* Your requested background color */
    width: 100%;
    padding: 100px 20px; /* Vertical padding creates the space instead of fixed height */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.home-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.home-book-title {
    color: #5d5334;
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.home-image-container {
    margin-bottom: 50px;
}

.home-book-cover {
    max-width: 300px; /* Standard desktop size */
    width: 100%;
    height: auto;
    border-radius: 2px;
    
    /* Small, elegant shadow for depth */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); 
}

.home-custom-download-button {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(180deg, #baa87e 0%, #9a8c63 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
	font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.home-custom-download-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Responsive: Shrink elements for Mobile */
@media (max-width: 768px) {
    .home-content-section {
        padding: 60px 15px; /* Less padding on mobile */
    }

    .home-book-cover {
        max-width: 240px; /* Smaller book for smaller screens */
    }

    .home-book-title {
        font-size: 1.5rem;
    }
}

/* Section Base */
.home-theme-section {
    width: 100%;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Background Colors from screenshots */
.theme-sage { background-color: #928d77; color: #ffffff; }
.theme-beige { background-color: #EFE0BB; color: #5d5334; }
.theme-olive { background-color: #8c8671; color: #ffffff; }

.home-theme-wrapper {
    max-width: 1250px;
    width: 100%;
}

/* Heading - 36px */
.home-theme-title {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 500;
}

.home-theme-divider {
    border: 0;
    border-top: 1px solid currentColor;
    opacity: 0.4;
    margin-bottom: 25px;
}

/* Text and Links - 20px */
.home-theme-desc, 
.home-days-list {
    font-size: 1.375rem;
    line-height: 1.8;
}

.home-theme-desc {
    margin-bottom: 40px;
    max-width: 1250px;
}

/* Day Links Styling */
.home-days-list {
    word-wrap: break-word;
}

.home-days-list a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
    padding: 0 4px;
}

.home-days-list a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .home-theme-section {
        padding: 60px 20px;
    }
    
    .home-theme-title {
        font-size: 28px; /* Scales down title for phones */
    }
    
    .home-theme-desc, 
    .home-days-list {
        font-size: 18px; /* Scales down body for phones */
    }
}

/* Initial Load Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Initial hidden state for animated elements */
.hero-section:not(.animated),
.intro-section:not(.animated),
.home-content-section:not(.animated),
.reflection-section:not(.animated),
.home-theme-section:not(.animated) {
    opacity: 0;
}

/* Scroll-triggered animation classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-fade {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.scroll-animate-fade.scroll-visible {
    opacity: 1;
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate-left.scroll-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate-right.scroll-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered scroll animation delays */
.scroll-animate-delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate-delay-5 {
    transition-delay: 0.5s;
}

/* Child elements within scroll-animated sections */
.scroll-animate .home-book-title,
.scroll-animate .home-image-container,
.scroll-animate .home-button-container,
.scroll-animate .home-theme-title,
.scroll-animate .home-theme-desc,
.scroll-animate .section-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate .home-theme-title,
.scroll-animate .home-theme-desc {
    opacity: 0;
    transform: translateY(15px);
}

.scroll-visible .home-book-title {
    transition-delay: 0.1s;
}

.scroll-visible .home-image-container {
    transition-delay: 0.2s;
}

.scroll-visible .home-button-container {
    transition-delay: 0.3s;
}

.scroll-visible .home-theme-title {
    transition-delay: 0.1s;
}

.scroll-visible .home-theme-desc {
    transition-delay: 0.2s;
}

.scroll-visible .section-content {
    transition-delay: 0.15s;
}

.scroll-visible .home-book-title,
.scroll-visible .home-image-container,
.scroll-visible .home-button-container,
.scroll-visible .home-theme-title,
.scroll-visible .home-theme-desc,
.scroll-visible .section-content {
    opacity: 1;
    transform: translateY(0);
}

/* Animation classes */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-in-left {
    opacity: 0;
    animation: slideInFromLeft 0.8s ease-out forwards;
}

/* Staggered animation delays */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

.animate-delay-6 {
    animation-delay: 0.6s;
}

.animate-delay-7 {
    animation-delay: 0.7s;
}

.animate-delay-8 {
    animation-delay: 0.8s;
}

/* Hero section specific animations */
.hero-section:not(.animated) .hero-image {
    opacity: 0;
}

.hero-section:not(.animated) .hero-overlay {
    opacity: 0;
}

.hero-section:not(.animated) .hero-content {
    opacity: 0;
    transform: translateY(30px);
}

.hero-section:not(.animated) .hero-left img {
    opacity: 0;
    transform: translateX(-40px);
}

/* When hero section is animated, trigger child animations */
.hero-section.animated .hero-image {
    animation: fadeIn 1.2s ease-out forwards;
}

.hero-section.animated .hero-overlay {
    animation: fadeIn 1s ease-out 0.2s forwards;
}

.hero-section.animated .hero-content {
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-section.animated .hero-left img {
    animation: slideInFromLeft 1s ease-out 0.6s forwards;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .animate-fade-in-up,
    .animate-fade-in,
    .animate-slide-in-left,
    .hero-section.animated .hero-image,
    .hero-section.animated .hero-overlay,
    .hero-section.animated .hero-content,
    .hero-section.animated .hero-left img {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .hero-section:not(.animated),
    .intro-section:not(.animated),
    .home-content-section:not(.animated),
    .reflection-section:not(.animated),
    .home-theme-section:not(.animated) {
        opacity: 1;
    }
    
    .scroll-animate,
    .scroll-animate-fade,
    .scroll-animate-left,
    .scroll-animate-right {
        opacity: 1;
        transform: none;
    }
}