:root {
  /* Main color palette */
  --primary-color: #4B4EE5; /* Bright blue */
  --primary-dark: #3235A9; /* Darker shade of primary */
  --secondary-color: #FF8A3D; /* Complementary orange */
  --secondary-dark: #E56F24; /* Darker orange */
  --accent-color: #20E5B9; /* Teal accent */
  --accent-dark: #15A88E; /* Darker teal */
  
  /* Neutral colors */
  --text-dark: #222222;
  --text-light: #ffffff;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #121212;
  
  /* Neumorphism shadows */
  --nm-shadow-light: 12px 12px 24px rgba(166, 180, 200, 0.25), -12px -12px 24px rgba(255, 255, 255, 0.9);
  --nm-shadow-dark: 8px 8px 16px rgba(0, 0, 0, 0.25), -8px -8px 16px rgba(255, 255, 255, 0.1);
  --nm-shadow-inset: inset 6px 6px 12px rgba(166, 180, 200, 0.2), inset -6px -6px 12px rgba(255, 255, 255, 0.7);
  
  /* Border radius */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-normal);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
  position: relative;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* Buttons */
.btn, 
button, 
input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--nm-shadow-light);
}

.btn::before, 
button::before, 
input[type='submit']::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.btn:hover::before, 
button:hover::before, 
input[type='submit']:hover::before {
  transform: translateY(0);
}

.btn:active, 
button:active, 
input[type='submit']:active {
  box-shadow: var(--nm-shadow-inset);
  transform: translateY(2px);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  text-decoration: none;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  color: var(--text-light);
  text-decoration: none;
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--text-light);
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--text-light);
  text-decoration: none;
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  text-decoration: none;
  color: var(--primary-color);
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  transition: var(--transition-normal);
}

.logo h1:hover {
  transform: translateY(-2px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.main-nav {
  display: flex;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-normal);
}

.nav-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  display: inline-block;
  position: relative;
}

.section-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Cards */
.card {
  background-color: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--nm-shadow-light);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  margin: 0 auto;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.date {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Services Section */
.services {
  background-color: #f9f9f9;
}

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

.progress-indicator {
  margin-top: 20px;
  width: 100%;
}

.progress-bar {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--percent, 0%);
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1.5s ease;
}

.progress-text {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: right;
}

/* Projects Section */
.projects {
  background-color: #fff;
}

.projects-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.prev-button,
.next-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
}

.prev-button:hover,
.next-button:hover {
  background-color: var(--primary-dark);
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

/* Case Studies Section */
.case-studies {
  background-color: #f9f9f9;
}

.case-studies-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.case-study-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fff;
  border-radius: var(--border-radius-md);
  box-shadow: var(--nm-shadow-light);
  overflow: hidden;
  padding: 30px;
}

.image-container {
  flex: 1;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  flex: 1;
}

.case-study-content h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.accordion {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-header {
  padding: 15px;
  background: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

.accordion-header::after {
  content: "+";
  margin-left: auto;
  font-size: 1.2rem;
}

.accordion-item.active .accordion-header::after {
  content: "-";
}

.accordion-header:hover {
  background: var(--primary-dark);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 15px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
}

/* Testimonials Section */
.testimonials {
  background: url('../image/testimonials-bg.jpg') center/cover no-repeat;
  position: relative;
  color: var(--text-light);
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials .section-header h2,
.testimonials .section-header p {
  color: var(--text-light);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials .card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  text-align: center;
}

.testimonials .card-image {
  width: 120px;
  height: 120px;
  margin: -60px auto 20px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .card-image img {
  border-radius: 50%;
}

.rating {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.client-name {
  font-weight: 600;
  color: var(--primary-color);
}

/* Blog Section */
.blog {
  background-color: #fff;
}

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

.blog .btn {
  margin-top: auto;
}

/* Team/Instructors Section */
.team {
  background-color: #f9f9f9;
}

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

.position {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 15px;
}

/* Partners Section */
.partners {
  background-color: #fff;
}

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

.partner-item {
  text-align: center;
  padding: 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--nm-shadow-light);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-item:hover {
  transform: translateY(-10px);
}

.partner-item img {
  height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
}

.external-resources {
  margin-top: 60px;
}

.resources-list {
  list-style: none;
  padding: 0;
}

.resources-list li {
  margin-bottom: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

.resources-list li:hover {
  transform: translateX(10px);
  background: #f0f0f0;
}

/* Press Section */
.press {
  background-color: #f9f9f9;
}

.press-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.press-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 25px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--nm-shadow-light);
  transition: transform var(--transition-normal);
}

.press-item:hover {
  transform: translateY(-5px);
}

.press-item img {
  width: 150px;
  height: auto;
  object-fit: contain;
  margin-right: 30px;
  flex-shrink: 0;
}

.press-content {
  flex-grow: 1;
}

.press-content h3 {
  margin-bottom: 10px;
}

.press-content .date {
  margin-top: 10px;
}

/* Research Section */
.research {
  background-color: #fff;
}

.research-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.research-item {
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow-light);
}

.research-content {
  padding: 30px;
}

.research-content h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info,
.contact-form {
  flex: 1 1 300px;
}

.contact-info h3,
.contact-form h3 {
  margin-bottom: 25px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.map-container {
  height: 300px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  margin-top: 30px;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  background: #fff;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(75, 78, 229, 0.2);
  outline: none;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: normal;
}

.checkbox input {
  margin-top: 5px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 30px;
}

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

.footer-column h3 {
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.footer-logo h2 {
  color: var(--text-light);
  margin-bottom: 15px;
}

.footer-links, .social-links {
  list-style: none;
  padding: 0;
}

.footer-links li, .social-links li {
  margin-bottom: 10px;
}

.footer-links a, .social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-normal);
  display: inline-block;
  padding: 3px 0;
}

.footer-links a:hover, .social-links a:hover {
  color: var(--text-light);
  text-decoration: none;
  transform: translateX(5px);
}

.social-links a {
  display: flex;
  align-items: center;
}

.social-links a::before {
  content: "→";
  margin-right: 5px;
  transition: transform var(--transition-normal);
}

.social-links a:hover::before {
  transform: translateX(3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.success-content {
  max-width: 600px;
  background: white;
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--nm-shadow-light);
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  animation: bounceIn 1s;
}

/* Privacy and Terms Pages */
.privacy-page, .terms-page {
  padding-top: 120px;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-page h1, .terms-page h1 {
  margin-bottom: 30px;
}

.privacy-page h2, .terms-page h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.privacy-page p, .terms-page p,
.privacy-page ul, .terms-page ul {
  margin-bottom: 20px;
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero {
    padding: 150px 0 80px;
  }
  
  .case-study-item {
    flex-direction: column;
  }
  
  .press-item {
    flex-direction: column;
  }
  
  .press-item img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    height: 0;
    overflow: hidden;
    transition: height var(--transition-normal);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav.active {
    height: auto;
  }
  
  .nav-links {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }
  
  .nav-links li {
    margin: 10px 0;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .image-container {
    height: 250px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1.5s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  animation: slideInRight 1s ease forwards;
}

.slide-up {
  animation: slideUp 1s ease forwards;
}

.scale-in {
  animation: scaleIn 0.8s ease forwards;
}

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

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

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 3D Effects */
.card-3d {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-3d:hover .card-inner {
  transform: rotateY(5deg);
}

.card-inner {
  transition: transform var(--transition-normal);
  transform-style: preserve-3d;
}

/* JS Functionality */
[data-percent] {
  --percent: attr(data-percent);
}

[data-animate-in] {
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

[data-animate-in="up"] {
  transform: translateY(20px);
}

[data-animate-in="down"] {
  transform: translateY(-20px);
}

[data-animate-in="left"] {
  transform: translateX(-20px);
}

[data-animate-in="right"] {
  transform: translateX(20px);
}

[data-animate-in="fade"] {
  transform: translateY(0);
}

[data-animate-in].animated {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
html,body{
  overflow-x: hidden;
}