/* Base Variables */
:root {
  /* Color Palette */
  --primary-color: #3273dc;
  --primary-dark: #2160c4;
  --primary-light: #5e8de4;
  --secondary-color: #ff9234;
  --secondary-dark: #f27b1a;
  --secondary-light: #ffb067;
  --accent-color: #8d47fe;
  --accent-dark: #7933e6;
  --accent-light: #a46fff;
  --success-color: #23d160;
  --warning-color: #ffdd57;
  --danger-color: #ff3860;
  --dark-color: #363636;
  --dark-lighter: #4a4a4a;
  --light-color: #f5f5f5;
  --light-darker: #eeeeee;
  --white-color: #ffffff;
  --black-color: #0a0a0a;
  
  /* Gradient Backgrounds */
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --dark-gradient: linear-gradient(135deg, var(--dark-color), var(--dark-lighter));
  --light-gradient: linear-gradient(135deg, var(--light-color), var(--light-darker));
  
  /* Neomorphism Shadow Settings */
  --nm-shadow-small: 5px 5px 10px rgba(0, 0, 0, 0.05), -5px -5px 10px rgba(255, 255, 255, 0.8);
  --nm-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05), -10px -10px 20px rgba(255, 255, 255, 0.8);
  --nm-shadow-large: 15px 15px 30px rgba(0, 0, 0, 0.05), -15px -15px 30px rgba(255, 255, 255, 0.8);
  --nm-shadow-inset: inset 5px 5px 10px rgba(0, 0, 0, 0.05), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  
  /* Typography */
  --heading-font: 'Manrope', sans-serif;
  --body-font: 'Rubik', sans-serif;
  
  /* Border Radius */
  --border-radius-small: 6px;
  --border-radius: 12px;
  --border-radius-large: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

body {
  font-family: var(--body-font);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-color);
}

p {
  margin-bottom: 1rem;
}

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

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

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

/* Button Styles */
.button {
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--nm-shadow-small);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: var(--nm-shadow);
}

.button:active {
  transform: translateY(1px);
  box-shadow: var(--nm-shadow-inset);
}

.button.is-primary {
  background: var(--primary-gradient);
  border: none;
}

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.button.is-outlined.is-white {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.button.is-outlined.is-white:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--primary-color);
  transition: all var(--transition);
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover:after {
  transform: translateX(5px);
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  padding: 0.5rem 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand h1 {
  font-weight: 800;
  margin-bottom: 0;
}

.navbar-brand h1 span {
  color: var(--primary-color);
}

.navbar-menu {
  transition: all var(--transition);
}

.navbar-item {
  font-weight: 500;
  padding: 0.7rem 1rem;
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all var(--transition);
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 80%;
}

.navbar-burger {
  border: none;
  background: transparent;
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-body {
  z-index: 1;
  position: relative;
  padding: 6rem 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white-color);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.1;
  position: relative;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--white-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--white-color);
  margin-bottom: 2rem;
  max-width: 600px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white-color);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  z-index: 1;
}

.scroll-down .arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--white-color);
  border-bottom: 2px solid var(--white-color);
  transform: rotate(45deg);
  margin-top: 10px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Section Styles */
.section {
  padding: 5rem 1.5rem;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--dark-lighter);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Image Container */
.image-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

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

/* About Section */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section .title {
  margin-bottom: 1.5rem;
}

.about-section .content {
  margin-bottom: 1.5rem;
}

/* Vision Section */
.vision-section {
  background-color: var(--light-darker);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('image/curved-grid-pattern.jpg') center/cover no-repeat;
  opacity: 0.07;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  background-color: var(--white-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.value-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.value-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Features Section */
.features-section {
  padding: 5rem 1.5rem;
}

.card {
  height: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.card-content .title {
  margin-bottom: 1rem;
}

.card-content .content {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Statistics Section */
.statistics-section {
  background: var(--primary-gradient);
  color: var(--white-color);
}

.statistics-section .section-title {
  color: var(--white-color);
}

.statistics-section .section-title::after {
  background: var(--white-color);
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: var(--nm-shadow-small);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--white-color), rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Workshops Section */
.workshops-section {
  overflow: hidden;
}

.content-carousel {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.carousel-wrapper {
  width: 100%;
  position: relative;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 1.5rem;
  padding: 1rem 0;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 calc(100% - 2rem);
  scroll-snap-align: start;
}

@media screen and (min-width: 769px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 1.5rem);
  }
}

@media screen and (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.prev-button, .next-button {
  background-color: var(--white-color);
  border: none;
  border-radius: var(--border-radius-small);
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--nm-shadow-small);
  transition: all var(--transition);
}

.prev-button:hover, .next-button:hover {
  box-shadow: var(--nm-shadow);
  transform: translateY(-3px);
}

.prev-button:active, .next-button:active {
  box-shadow: var(--nm-shadow-inset);
  transform: translateY(1px);
}

.workshop-date {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-small);
  margin-bottom: 1rem;
}

.card .location {
  font-size: 0.9rem;
  color: var(--dark-lighter);
  margin-bottom: 1rem;
}

/* Press Section */
.press-section {
  background-color: var(--light-color);
  position: relative;
}

.press-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.press-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
}

.press-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  margin-bottom: 1.5rem;
}

.press-logo img {
  max-height: 100%;
  max-width: 160px;
  margin: 0 auto;
}

.press-quote {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.press-source {
  font-weight: 700;
  color: var(--primary-color);
}

/* Projects Section */
.projects-section {
  padding: 5rem 1.5rem;
}

.reverse-columns {
  flex-direction: row-reverse;
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background-color: var(--light-darker);
  position: relative;
  overflow: hidden;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  flex: 0 0 auto;
  background: var(--primary-gradient);
  color: var(--white-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Careers (Resources) Section */
.careers-section {
  padding: 5rem 1.5rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--nm-shadow-large);
  color: inherit;
}

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.resource-icon img {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}

.resource-card .title {
  margin-bottom: 1rem;
}

.resource-card .content {
  font-size: 0.95rem;
  color: var(--dark-lighter);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('image/contact-background.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  position: relative;
}

.contact-section .section-title,
.contact-section .section-subtitle {
  color: var(--white-color);
}

.contact-section .section-title::after {
  background: var(--white-color);
}

.contact-info {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item .icon {
  flex: 0 0 40px;
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-right: 1rem;
}

.contact-item .content {
  flex: 1;
}

.contact-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white-color);
}

.contact-item p {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.contact-form-container {
  background-color: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow-large);
  padding: 2.5rem;
  height: 100%;
}

.contact-form .label {
  font-weight: 600;
  color: var(--dark-color);
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border-radius: var(--border-radius-small);
  box-shadow: var(--nm-shadow-inset);
  border: none;
  background-color: var(--light-color);
  transition: all var(--transition);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  box-shadow: var(--nm-shadow-inset), 0 0 0 2px var(--primary-light);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 4rem 1.5rem 2rem;
}

.footer-title {
  color: var(--white-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.footer p {
  color: var(--light-darker);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--light-darker);
  transition: color var(--transition);
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  border-radius: var(--border-radius-small);
  background-color: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-darker);
  font-size: 0.95rem;
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white-color);
  transform: translateX(5px);
}

.newsletter-form .input {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white-color);
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.newsletter-form .input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .button {
  border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: var(--light-color);
}

.success-container {
  max-width: 800px;
  background-color: var(--white-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.success-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark-lighter);
}

/* Privacy and Terms Pages */
.page-content {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.page-content .container {
  background-color: var(--white-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--nm-shadow);
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Media Queries */
@media screen and (max-width: 1023px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .value-item {
    padding: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .values-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.95rem;
  }
  
  .approach-step {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
}

/* Animation Utilities */
[data-scroll-reveal] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
}

.animate-in {
  opacity: 1;
  transform: translateY(0) !important;
}

/* Animations for different directions */
[data-scroll-reveal="enter top move 50px over 0.8s after 0.1s"],
[data-scroll-reveal="enter top move 50px over 0.8s after 0.3s"],
[data-scroll-reveal="enter top move 50px over 0.8s after 0.5s"],
[data-scroll-reveal="enter top move 50px over 0.8s after 0.7s"] {
  transform: translateY(-50px);
}

[data-scroll-reveal="enter bottom move 50px over 0.8s after 0.1s"],
[data-scroll-reveal="enter bottom move 50px over 0.8s after 0.3s"],
[data-scroll-reveal="enter bottom move 50px over 0.8s after 0.5s"],
[data-scroll-reveal="enter bottom move 50px over 0.8s after 0.7s"],
[data-scroll-reveal="enter bottom move 50px over 0.8s after 0.9s"],
[data-scroll-reveal="enter bottom move 50px over 0.8s after 1.1s"] {
  transform: translateY(50px);
}

[data-scroll-reveal="enter left move 50px over 0.8s after 0.1s"],
[data-scroll-reveal="enter left move 50px over 0.8s after 0.3s"],
[data-scroll-reveal="enter left move 50px over 0.8s after 0.5s"],
[data-scroll-reveal="enter left move 50px over 0.8s after 0.7s"] {
  transform: translateX(-50px);
}

[data-scroll-reveal="enter right move 50px over 0.8s after 0.1s"],
[data-scroll-reveal="enter right move 50px over 0.8s after 0.3s"],
[data-scroll-reveal="enter right move 50px over 0.8s after 0.5s"],
[data-scroll-reveal="enter right move 50px over 0.8s after 0.7s"] {
  transform: translateX(50px);
}