html, body {
  margin: 0;
  padding: 0;
  font-family: "Lexend Exa", sans-serif;
box-sizing: border-box;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}
hr {
  width: 45%;
  height: 2px;
  background-color: gold;
 border-top: 1 dashed ;
  margin: auto;
  margin-top: 1%;
   color: #d4af37;
  font-weight: 800;
  float: center ;

}

body {
  /*  font-family: 'Segoe UI', sans-serif;*/
 /* font-family: "Mrs Saint Delafield", cursive;*/
  /*  font-family: "Poiret One", sans-serif;*/
   font-family: "Lexend Exa", sans-serif;

    font-size: 18px;
    background-color: #4e6f7226;
    color: #101010;
    margin: 0;
    padding: 0;
    font-weight: 200;
  }


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

  }
  
  /* Create two equal columns that floats next to each other */
  .column {
    float: left;
    width: 50%;
    height: auto; /* Should be removed. Only for demonstration */
  }
  
  .column3 {
    float: left;
    width: 70%;
    height: auto;
    margin: 0;
    background-color: #ec1515;
  }
  .column1 {
    float: left;
    width: 30%;
    height: auto;
    margin: 0;
    background-color: #ec1515;


  }
    
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }



  
.space {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  flex-wrap: wrap;
  gap:10px;
  padding: 10px;
}


#grad {
    background-image: linear-gradient(to bottom, #000000, #ffffff);
  }
  
  

#buttonStart {
  font-family: "Poiret One", sans-serif;
  background-color: rgba(212, 237, 231, 0.471);
/*  border: 3px solid #333;*/
  border-radius: 50%;
  font-weight: bold;

}

#buttonStart:hover {
  font-family: "Poiret One", sans-serif;
  background-color: rgb(8, 83, 47);
  color: #ccc;
}

  

 

  /* Navbar container */
   nav {
    color: white;
    position: absolute;
    padding: 5px 30px;
    width: 100%;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1000;
    }

    .nav-container {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      height: 100px;
    }

    /* Centered nav links */
    .nav-links {
      list-style: none;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 5rem;
      border-radius: 8px;

    }

    .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

  

    .nav-links a:hover {
      color: #d48300;
    }

    .nav-links img{
      width: 80px;
    }

    /* Right-side button */
    .nav-button {
      position: absolute;
      top:40px;
      right: 20px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: white;
      transition: transform 0.2s ease;
      box-shadow: s 0 0 10px rgba(255, 255, 255, 0.2);
    }

    .nav-button:hover {
      transform: scale(1.1);
          background: rgba(255,255,255,0.04);

    }
    /* Hamburger menu */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 25px;
      height: 18px;
      position: absolute;
      left: 20px;
      top: 20px;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: white;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    #menu-checkbox {
      display: none;
    }

    /* --- Responsive --- */
    @media (max-width: 900px) {
      .menu-toggle {
        display: flex;
      }

      


      .nav-links {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #22222297;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap:1rem;
      }

      /* When checked: show menu */
      #menu-checkbox:checked ~ .nav-links {
        max-height: 300px;
        padding: 5px 0 15px;
      }

      /* Move button inside dropdown menu */
      .nav-button {
        position: static;
        margin-top: 10px;
        width: 80%;
        align-self: center;
      }
  .nav-links li img {
    display: none;
  }

  .nav-links li:has(img) {
    display: none;
  }

      /* Center everything vertically */
      .nav-container {
        flex-direction: column;
      }
    }

    /* Hamburger animation */
    #menu-checkbox:checked + .menu-toggle span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-checkbox:checked + .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    #menu-checkbox:checked + .menu-toggle span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

   /*NAVBAR fine*/

      .buttonLanguage {
    display: flex;
    justify-content: right;
    background-color: #00bcd4;
    text-align: right;
    margin-top: 12px;
  }


/* LANGUAGE SWITCH */
.lang-switch {
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 20px 0;
}




 /* HERO */
.hero {
  background: linear-gradient(rgba(10,26,58,0.7), rgba(10,26,58,0.7));
 /* background-image: url("images/content2.png");      */     
  background-image: url("images/sfondo3.1.jpg");    
  background-repeat: no-repeat;
  background-size: cover; 
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;    

  
  
}


.hero img{
  width: 100px;
margin: bottom 5%;
}

.hero h3, .hero h1{
  color:rgb(243, 236, 236);
   margin-top:0px;

  /*text-shadow: 2px 0px 2px #00000094;*/
}
/*
.hero.visible {
    opacity: 1;
    transform: translateY(0);
  }*/

.hero-content h1 {
  font-size: 4.5rem;
}

.hero-content h3 {
  font-size: 2rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}


.heroEvent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* space between buttons */
  flex-wrap: wrap; 
  margin-top: 20px;
}

.heroEvent .btn {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.heroEvent .btn:hover {
  background: #864a06;
  transform: translateY(-2px);
}


@media screen and (min-width: 600px) and (max-width: 1024px) {
 .hero{
      background-image: url("images/phone1.jpg");           

  }
}


@media (max-width: 600px) {
  .heroEvent {
    flex-direction: column; /* stack vertically */
    gap: 12px;
  }


  .hero{
      background-image: url("images/phone1.jpg");           

  }

  .hero-content h1{
    font-size: 2.2rem;
  }

    .hero-content h3{
    font-size: 1.5rem;
  }

  .heroEvent .btn {
    width: 80%; /* make buttons wide and centered */
    text-align: center;
  }
}


.btn {
  background-color: #fdd835;
  color: #0a1a3a;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  cursor: pointer;
}

.btn:hover { background-color: #ffe867; }  
  /* CONTENT */


  .container {
    padding: 2rem;
    margin: auto;
    max-width: 1250px;
  }
  
  .eventSection{
    margin: auto;
    max-width: 1250px;
    background-color: transparent;
  }

  /*.container.visible {
    opacity: 1;
    transform: translateY(0);
  }*/

  .container h2, .container-about h2 {
   text-align: center;
   font-size: 1.8 rem;
   
  }

  .container .section {
    margin-top: 5%;
   margin-bottom: 5%;
    
  }

  .section p{
    font-size: 14px;
  }
  
  .about-text h2, h3 {
    color: #514b39;
    margin-bottom: 0.5rem;
  }

  .about-more,  .about-more-choir{
  display: block;
}


.about-toggle {
  display: none;
}
  
  .event {
    background: #fff;
    padding: 1rem;
    border-left: 5px solid #d4af37;
    margin-bottom: 1rem;
    margin-top: 2%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }


/*EVENT CAROUSEL*/
/* --- EVENT CARDS: stile B (compatte, tipo calendario) --- */

.events-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.events-carousel::-webkit-scrollbar {
  height: 6px;
}

.events-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}

.event-card {
  min-width: 220px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1rem;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.newEvent {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0px 16px rgba(194, 148, 9, 0.644);
}



/* DATE BOX */
.event-card .event-date {
  background: #bc7203; /* puoi sostituire con il tuo colore principale */
  color: #fff;
  text-align: center;
  padding: 0.6rem 0;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.event-card .day {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}

.event-card .month {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* TEXT */
.event-card h3 {
  font-size: 1rem;
  margin: 0.4rem 0;
  font-weight: bold;
}

.event-card p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 600px) {
  .event-card {
    min-width: 180px;
  }
  .event-card h3 {
    font-size: 0.9rem;
  }


}

/*end*/


  /*event section*/
  .section-title {
  text-align: center;
  font-size: 2rem;
  color: #333;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.divider {
  width: 80px;
  height: 4px;
  background: #d4af37;
  border: none;
  border-radius: 2px;
  margin: 0 auto 2rem auto;
}

.event {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin: 1.5rem auto;
  width: min(90%, 950px);
  transition: all 0.3s ease;
}

.event:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.event-new{
  background-color: transparent;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 0.5rem;
  text-align: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.event-date {
  background: #d4af37;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: bold;
  transition: background 0.3s ease;
}

.event:hover .event-date {
  background: #f5c542;
}

.event-date .day {
  font-size: 1.2rem;
  line-height: 1;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-info {
  padding: 1rem 1.5rem;
  flex: 1;
}

.event-title {
  margin: 0;
  color: #222;
  font-size: 1.1rem;
  font-weight: 600;
}

.event-time {
  color: #555;
  font-size: 0.95rem;
  margin-top: 0.3rem;
  font-weight: bold;
}

.event-desc {
  color: #666;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.3;
}


@media (max-width: 600px) {
  .event {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-date {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 12px 12px 0 0;
  }

  .event-info {
    padding: 1rem;
  }
}


  .container-about {
    padding: 1rem;
   max-width: 1400px;
    margin: auto;
    margin-top: 5rem;
  }


  .about-flex {
    display: flex;
    position: relative;

    align-items: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    margin-top: 4em;
    margin-bottom: 2em;
    
    /*animation*/

  }


/*
  .about-flex.visible {
    opacity: 1;
    transform: translateX(0);
  }*/

  /* Specific directions */
  .from-left {
    transform: translateX(-100px);
  }
  .from-right {
    transform: translateX(20px);
  }

  .from-bottom {
    transform: translateY(100px);
  }

    .from-top {
    transform: translateY(-100px);
  }

  /* When they become visible */
  .from-left.visible {
    transform: translateX(0);
  }
  .from-right.visible {
    transform: translateX(0);
  }

    .from-bottom.visible {
    transform: translateY(0);
  }

  .from-top.visible {
    transform: translateY(0);
  }
  
  .choir-photo {
    width: 100%;
    max-width: 600px;
    border: 2px solid #b6962f;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   
  }
  
  .about-text {
    flex: 1 1 300px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
   hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -0.05em;  }
  

  /* FOOTER */
  footer {
    text-align: center;
    
    padding: 2rem;
    background: #2c2c2c;
    color: white;
    font-family: "Lexend Exa", sans-serif;


  }



   .social   {
   /* flex-direction: column;*/
    align-items: center;
   display: flex;
   margin: auto;
   text-align: center;
   flex-wrap: wrap;
  
    
  }

  .social i {
    font-size: 24px;
    text-align: center;
    font-weight: 200;
    cursor: pointer;
    
  }

  .social a{
    color: white;

  }

   .social i p{
    font-family: "Lexend Exa", sans-serif;
    font-size: small;
    padding: 8px;
    vertical-align: middle;
  }



  footer .icon img {
    max-width: 200px;
    height: auto;
  }

  footer .icon{
     color: white;
     height: fit-content;
     display: flex;
    font-size: 18px;
    font-family: "Lexend Exa", sans-serif;
    max-width: 1100px;
    margin: auto;
    position: relative;
    padding: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  }



  

  
  @media (max-width: 600px) {

    .footer icon {
      color: #00bcd4;
      text-align: center;
    }
    .choir-photo {
      max-width: 100%;
      margin: auto;     
     
    }
    .tab-buttons {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
   

    .video-thumb {
      width: 100%;
      height: 100%;
      border-radius: 0%;
    }
  }
  

@media (max-width: 767px) {
  .youtube-grid iframe {
    flex: 0 0 100%;
    max-width: 100%;
  }
    .section-title, .container h2, .container-about h2 {
  font-size: 1.3rem;
  }
  .about-flex {
    margin-top: 1.2rem;
  }
  .event-title h3 {
    font-size: 1rem;
  }
  .event-date .day {
    font-size: 1rem;
  }
}

  /* MOBILE RESPONSIVENESS */
  @media (max-width: 768px) {

   
.about-flex {
    flex-direction: column; /* impila immagine e testo in verticale */
  }

   .about-more, .about-more-choir {
    display: none;
    margin-top: 1rem;
  }

  .about-more.open, .about-more-choir.open {
    display: block;
  }


  .about-toggle {
    display: block;
    margin-top: 1rem;
    margin-left: auto;  
    background: none;
    border: none;
    padding: 0;
    font-family: 'Spectral', serif;
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
    color: #000000d2;
    padding: 5%;
    font-family: "Lexend Exa", sans-serif;
  }

  /* Per invertire solo la sezione della direttrice */
  .about-flex:nth-of-type(2) {
    flex-direction: column-reverse; /* immagine sopra, testo sotto */
  }

  .choir-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

   
    .menu-toggle {
      display: flex;
      float: right;
      text-align: right;
      position: relative;
      margin-left: auto;
      top:0;
    }


  
    .hero-overlay h2 {
      font-size: 1.2rem;
      padding: 0.3rem 0.8rem;
    }
  
    .hero-logo {
      width: 80px;
    }

  }
  

/*/////////*/

   /* === GALLERY SECTION === */
/*.gallery {
  max-width: 1300px;
  margin: 50px auto;
  padding: 10px 20px;
  border-radius: 8px;

}


.gallery-header {
  display: flex;
  justify-content: center;
  width:fit-content;
  gap: 10px;
  margin: auto;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  margin-top: 1.2rem;


}

.gallery-header img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.tab-button {
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  height: 50px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid #ae8706;

}

.tab-button.active {
  background: #ae8706;
  color: #fff;
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: block;

}*/

/* Contenitore dei bottoni */
.gallery-header {
  display: flex;
  justify-content: center;
  gap: 15px;            /* Spazio uniforme tra i bottoni */
  margin: 30px 0;       /* Distanza dal titolo e dalla griglia */
  flex-wrap: wrap;      /* Permette di andare a capo su smartphone */
}

/* Stile base del bottone */
.tab-button {
  background: transparent;
  color: #64748b;        /* Grigio neutro elegante per i bottoni non attivi */
  border: 2px solid #e2e8f0; /* Bordo sottile chiaro */
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;  /* Effetto pillola arrotondato */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;             /* Spazio tra l'icona FontAwesome e il testo */
  transition: all 0.3s ease; /* Transizione morbida per colori e ombre */
}

/* Icone dentro i bottoni */
.tab-button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* Effetto Hover (quando passi sopra con il mouse) */
.tab-button:hover {
  color: #0a1a3a;       /* Colore blu scuro identico al tuo Hero */
  border-color: #0a1a3a;
  background-color: rgba(10, 26, 58, 0.03); /* Sfondo leggerissimo */
}

.tab-button:hover i {
  transform: scale(1.15); /* Piccola enfasi sull'icona */
}

/* Stato Attivo (quando la galleria corrispondente è aperta) */
.tab-button.active {
  background-color: #0a1a3a; /* Sfondo scuro pieno (colore Hero) */
  color: #ffffff;            /* Testo bianco */
  border-color: #0a1a3a;
  box-shadow: 0 4px 12px rgba(10, 26, 58, 0.25); /* Ombra morbida per dare profondità */
}

/* Personalizzazione specifica per il tasto YouTube quando è attivo (opzionale ma di grande impatto) */
.tab-button[data-tab="youtube"].active {
  background-color: #ff0000; /* Rosso YouTube */
  border-color: #ff0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.25);
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 4px; 
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.youtube-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .youtube-grid {
    grid-template-columns: 1fr;
  }
}

.grid video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;  
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.grid img{
    width: 100%;
 aspect-ratio: 1 / 1;
   object-fit: cover;  
  border-radius: 2px;
  transition: transform 0.3s ease; 
}

@media (hover: hover) {
  .grid img:hover,
  .grid video:hover,
  .youtube-grid iframe:hover {
    transform: scale(1.03);
  }
}

@media (min-width: 600px) {
  .grid {
    gap: 6px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
      .youtube-grid iframe {
    max-width: calc(100% - 0.75rem);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

}

@media (min-width: 900px) {
  .grid {
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  

}



/* === LIGHTBOX STYLES === */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 999;
  overflow: hidden;
}

.lightbox.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

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

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


.placeholder {
  text-align: center;
  color: #666;
  padding: 40px 0;
  font-size: 1.2rem;
}



/*
.glow {
  font-size: 0.9rem;
  color: #e0d3bc;
  
  animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #c68917, 0 0 20px #c68917, 0 0 30px #e0a332, 0 0 40px #e0a332, 0 0 50px #e0a332, 0 0 60px #e0a332, 0 0 70px #e0a332;
  }
  
  to {
    text-shadow: 0 0 20px #c68917, 0 0 30px #c68917, 0 0 40px #e0a332, 0 0 50px #e0a332, 0 0 60px #e0a332, 0 0 70px #e0a332, 0 0 80px #e0a332;
  }
}
*/

.glow {
  color: #ffffff; /* Testo bianco per far risaltare il contrasto */
  font-size: 1.2rem;
  font-weight: bold;
  
  /* Ombre stratificate: una vicina e intensa, una lontana e sfumata */
  text-shadow: 
    0 0 4px #ab7500,
    0 0 10px #ab8c00,
    0 0 20px #a79600,
    0 0 40px #a76100;
}



/* ANIMAZIONI BASE */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* VARIANTI */
.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-top {
  transform: translateY(-80px);
}

.reveal-bottom {
  transform: translateY(80px);
}

.reveal.show.reveal-left,
.reveal.show.reveal-right,
.reveal.show.reveal-top,
.reveal.show.reveal-bottom {
  transform: translateX(0);
}
