@charset "UTF-8";
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: transparent;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  /* ANIMATION EN CROIX */
}
.navbar .logo {
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
  color: #e4a4b7;
}
.navbar .nav-links {
  display: flex;
  gap: 2rem;
}
.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
}
.navbar .nav-links a:hover {
  color: #e4a4b7;
}
.navbar .burger {
  width: 30px;
  height: 25px;
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 1100;
}
.navbar .burger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: #e4a4b7;
  left: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.navbar .burger span:nth-child(1) {
  top: 0;
}
.navbar .burger span:nth-child(2) {
  top: 11px;
}
.navbar .burger span:nth-child(3) {
  top: 22px;
}
.navbar .burger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.navbar .burger.open span:nth-child(2) {
  opacity: 0;
}
.navbar .burger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

@media (max-width: 768px) {
  /* Menu caché par défaut */
  .navbar .nav-links {
    display: flex; /* important pour l'animation */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.85);
    transition: right 0.4s ease-in-out;
    z-index: 999;
  }
  /* Menu visible */
  .navbar .nav-links.active {
    right: 0;
  }
  .navbar .burger {
    display: block;
    position: absolute;
    right: 2rem;
    top: 1.2rem;
    font-size: 2rem;
    color: #e4a4b7;
    cursor: pointer;
    z-index: 1000;
  }
}
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #e4a4b7;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
  color: #f5e9ec;
  margin-bottom: 2rem;
}
.hero .btn {
  background-color: #e4a4b7;
  color: #111;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.hero .btn:hover {
  background-color: rgb(239.6694915254, 203.3305084746, 214.1186440678);
}

.presentation {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #111;
}
.presentation h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2.2rem;
  color: #e4a4b7;
  margin-bottom: 1rem;
}
.presentation p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #f5e9ec;
  line-height: 1.6;
}

.packs {
  padding: 4rem 2rem;
  background-color: rgb(9.35, 9.35, 9.35);
  text-align: center;
}
.packs h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2.2rem;
  color: #e4a4b7;
  margin-bottom: 2rem;
}
.packs .pack-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.packs .pack-list .pack {
  background-color: #111;
  border: 1px solid #e4a4b7;
  padding: 2rem;
  border-radius: 10px;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.packs .pack-list .pack:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
}
.packs .pack-list .pack h3 {
  font-size: 1.5rem;
  color: #e4a4b7;
  margin-bottom: 1rem;
}
.packs .pack-list .pack p {
  color: #f5e9ec;
  font-size: 1rem;
  line-height: 1.5;
}

.fonctionnement {
  background-color: #111;
  color: #fff;
  padding: 6rem 2rem;
}
.fonctionnement .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4rem;
}
.fonctionnement .container .texte {
  flex: 1;
}
.fonctionnement .container .texte h2 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #e4a4b7;
  margin-bottom: 2rem;
}
.fonctionnement .container .texte p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.fonctionnement .container .texte ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.fonctionnement .container .texte ul li {
  font-family: "Poppins", sans-serif;
  background-color: #f5e9ec;
  color: #111;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.fonctionnement .container .texte ul li strong {
  color: #e4a4b7;
}
.fonctionnement .container .texte .confiance {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #fff;
  opacity: 0.9;
}
.fonctionnement .container .image {
  flex: 1;
}
.fonctionnement .container .image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 1.5rem;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 1.05rem;
    max-width: 660px;
  }
  .hero .btn {
    padding: 0.75rem 1.25rem;
  }
  .presentation {
    padding: 3rem 1.5rem;
  }
  .presentation h2 {
    font-size: 1.9rem;
  }
  .presentation p {
    font-size: 1rem;
    max-width: 640px;
  }
  .packs {
    padding: 3rem 1.5rem;
  }
  .packs h2 {
    font-size: 1.9rem;
  }
  .packs .pack-list {
    gap: 1rem;
    justify-content: center;
  }
  .packs .pack-list .pack {
    width: calc(50% - 0.5rem);
    padding: 1.5rem;
  }
  .packs .pack-list .pack h3 {
    font-size: 1.3rem;
  }
  .packs .pack-list .pack p {
    font-size: 0.95rem;
  }
  .fonctionnement .container {
    flex-direction: column;
    text-align: center;
  }
  .fonctionnement .container .image {
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding: 1.25rem;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero p {
    font-size: 0.95rem;
    max-width: 520px;
  }
  .hero .btn {
    width: 100%;
    max-width: 320px;
    display: inline-block;
  }
  .presentation {
    padding: 2.25rem 1.25rem;
  }
  .presentation h2 {
    font-size: 1.6rem;
  }
  .presentation p {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 520px;
  }
  .packs {
    padding: 2.25rem 1.25rem;
  }
  .packs h2 {
    font-size: 1.6rem;
  }
  .packs .pack-list {
    gap: 1rem;
  }
  .packs .pack-list .pack {
    width: 100%;
    padding: 1.25rem;
  }
  .fonctionnement {
    padding: 4rem 1rem;
  }
  .fonctionnement .texte h2 {
    font-size: 2rem;
  }
  .fonctionnement .texte p,
  .fonctionnement .texte li {
    font-size: 1rem;
  }
}
.hero-prestations {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/prestations.jpg") center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero-prestations h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #e4a4b7;
  margin-bottom: 0.5rem;
}
.hero-prestations p {
  font-size: 1.2rem;
  color: #f5e9ec;
}

.presentation {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #111;
}
.presentation h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2.2rem;
  color: #e4a4b7;
  margin-bottom: 1rem;
}
.presentation p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: #f5e9ec;
  line-height: 1.6;
}

.forfaits {
  padding: 4rem 2rem;
  background-color: rgb(11.9, 11.9, 11.9);
  text-align: center;
}
.forfaits h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2.2rem;
  color: #e4a4b7;
  margin-bottom: 3rem;
}
.forfaits .forfait {
  background: #111;
  border: 1px solid #e4a4b7;
  border-radius: 15px;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.forfaits .forfait:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.forfaits .forfait .forfait-inner {
  padding: 2rem;
  text-align: left;
}
.forfaits .forfait .forfait-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.forfaits .forfait .forfait-header h3 {
  font-size: 1.5rem;
  color: #e4a4b7;
}
.forfaits .forfait .forfait-header .tarif {
  background-color: #e4a4b7;
  color: #111;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: bold;
}
.forfaits .forfait p {
  color: #f5e9ec;
  font-size: 1rem;
  line-height: 1.6;
}
.forfaits .forfait ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.forfaits .forfait ul li {
  color: #fff;
  margin-bottom: 0.5rem;
}
.forfaits .forfait .note {
  font-style: italic;
  color: rgb(239.6694915254, 203.3305084746, 214.1186440678);
  margin-top: 1rem;
}
.forfaits .forfait .btn-forfait {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #e4a4b7;
  color: #111;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.forfaits .forfait .btn-forfait:hover {
  background-color: rgb(239.6694915254, 203.3305084746, 214.1186440678);
}

@media (max-width: 768px) {
  .hero-prestations {
    min-height: 60vh;
    padding: 1.5rem;
  }
  .hero-prestations h1 {
    font-size: 2.4rem;
  }
  .hero-prestations p {
    font-size: 1.05rem;
  }
  .presentation {
    padding: 3rem 1.5rem;
  }
  .presentation h2 {
    font-size: 1.9rem;
  }
  .presentation p {
    font-size: 1rem;
  }
  .forfaits {
    padding: 3rem 1.5rem;
  }
  .forfaits h2 {
    font-size: 1.9rem;
  }
  .forfaits .forfait .forfait-inner {
    padding: 1.5rem;
  }
  .forfaits .forfait .forfait-header h3 {
    font-size: 1.3rem;
  }
  .forfaits .forfait .tarif {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
  }
  .forfaits .forfait ul {
    padding-left: 1.2rem;
  }
}
@media (max-width: 480px) {
  .hero-prestations {
    min-height: 50vh;
    padding: 1.25rem;
  }
  .hero-prestations h1 {
    font-size: 1.9rem;
  }
  .hero-prestations p {
    font-size: 0.95rem;
  }
  .presentation {
    padding: 2.5rem 1.25rem;
  }
  .presentation h2 {
    font-size: 1.6rem;
  }
  .presentation p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .forfaits {
    padding: 2rem 1rem;
  }
  .forfaits h2 {
    font-size: 1.6rem;
  }
  .forfaits .forfait .forfait-inner {
    padding: 1.25rem;
  }
  .forfaits .forfait .forfait-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .forfaits .forfait .btn-forfait {
    width: 100%;
    text-align: center;
  }
}
.hero-contact {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/contact.jpg") center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}
.hero-contact h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #e4a4b7;
  margin-bottom: 0.5rem;
}
.hero-contact p {
  font-size: 1.2rem;
  color: #f5e9ec;
}

.contact-form {
  padding: 4rem 2rem;
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.contact-form h2 {
  font-family: "Great Vibes", cursive;
  color: #e4a4b7;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form form .form-group {
  text-align: left;
}
.contact-form form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #fff;
}
.contact-form form .form-group input,
.contact-form form .form-group select,
.contact-form form .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgb(29.75, 29.75, 29.75);
  border: 1px solid #e4a4b7;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
}
.contact-form form .form-group input:focus,
.contact-form form .form-group select:focus,
.contact-form form .form-group textarea:focus {
  outline: none;
  border-color: rgb(239.6694915254, 203.3305084746, 214.1186440678);
  background-color: rgb(37.4, 37.4, 37.4);
}
.contact-form form .btn-forfait {
  align-self: center;
  background-color: #e4a4b7;
  color: #111;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form form .btn-forfait:hover {
  background-color: rgb(239.6694915254, 203.3305084746, 214.1186440678);
}

@media (max-width: 768px) {
  .hero-contact {
    min-height: 60vh;
    padding: 1.5rem;
  }
  .hero-contact h1 {
    font-size: 2.4rem;
  }
  .hero-contact p {
    font-size: 1.05rem;
  }
  .contact-form {
    padding: 3rem 1.5rem;
  }
  .contact-form h2 {
    font-size: 1.8rem;
  }
  .contact-form form {
    gap: 1.2rem;
  }
  .contact-form form .form-group input,
  .contact-form form .form-group select,
  .contact-form form .form-group textarea {
    font-size: 1rem;
    padding: 0.7rem;
  }
  .contact-form form .btn-forfait {
    font-size: 1rem;
    padding: 0.7rem 1.8rem;
  }
}
@media (max-width: 480px) {
  .hero-contact {
    min-height: 50vh;
    padding: 1.25rem;
  }
  .hero-contact h1 {
    font-size: 2rem;
  }
  .hero-contact p {
    font-size: 0.95rem;
  }
  .contact-form {
    padding: 2rem 1rem;
  }
  .contact-form h2 {
    font-size: 1.6rem;
  }
  .contact-form form {
    gap: 1rem;
  }
  .contact-form form .form-group label {
    font-size: 0.95rem;
  }
  .contact-form form .form-group input,
  .contact-form form .form-group select,
  .contact-form form .form-group textarea {
    font-size: 0.95rem;
    padding: 0.65rem;
  }
  .contact-form form .btn-forfait {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
}
.cgv {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.cgv h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #e4a4b7;
}
.cgv p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-left: 3px solid #f5e9ec;
  border-radius: 5px;
}
.cgv ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  list-style-type: disc;
}
.cgv ul li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #fff;
}
.cgv ul li::marker {
  color: #e4a4b7;
}
.cgv section {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cgv {
    padding: 0 1.5rem;
  }
  .cgv h2 {
    font-size: 2rem;
  }
  .cgv p,
  .cgv li {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .cgv {
    padding: 0 1rem;
  }
  .cgv h2 {
    font-size: 1.7rem;
  }
  .cgv p,
  .cgv li {
    font-size: 0.9rem;
  }
}

.presentation-agence,
.pourquoi,
.valeurs {
  padding: 6rem 2rem;
  color: #fff;
  background-color: #111;
}
.presentation-agence h2,
.pourquoi h2,
.valeurs h2 {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #e4a4b7;
}
.presentation-agence p,
.pourquoi p,
.valeurs p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
}
.presentation-agence .container,
.pourquoi .container,
.valeurs .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.presentation-agence .container .image,
.pourquoi .container .image,
.valeurs .container .image {
  flex: 1;
}
.presentation-agence .container .image img,
.pourquoi .container .image img,
.valeurs .container .image img {
  width: 100%;
  border-radius: 1rem;
}
.presentation-agence .container .text,
.pourquoi .container .text,
.valeurs .container .text {
  flex: 1;
}

.pourquoi {
  background-color: #f399b4;
  color: #111;
}
.pourquoi h2 {
  color: #111;
}
.pourquoi .container {
  flex-direction: column;
  text-align: center;
}

@media (max-width: 768px) {
  .presentation-agence .container,
  .valeurs .container {
    flex-direction: column;
  }
  .presentation-agence .container .image,
  .valeurs .container .image {
    order: -1;
  }
}
@media (max-width: 480px) {
  .pourquoi {
    padding: 2rem 1rem;
  }
  .pourquoi h2 {
    font-size: 1.8rem;
  }
  .pourquoi p {
    font-size: 0.95rem;
  }
}
.mentions-legales {
  background-color: #111;
  color: #fff;
  padding: 4rem 2rem;
}
.mentions-legales h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #e4a4b7;
  text-align: center;
}
.mentions-legales h2 {
  margin-top: 2rem;
  color: #f5e9ec;
  font-size: 1.8rem;
}
.mentions-legales p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}
.mentions-legales a {
  color: #e4a4b7;
  text-decoration: underline;
}
.mentions-legales a:hover {
  color: rgb(239.6694915254, 203.3305084746, 214.1186440678);
}
@media (max-width: 768px) {
  .mentions-legales {
    padding: 3rem 1.5rem;
  }
  .mentions-legales h1 {
    font-size: 2.4rem;
  }
  .mentions-legales h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .mentions-legales {
    padding: 2rem 1rem;
  }
  .mentions-legales h1 {
    font-size: 2rem;
  }
  .mentions-legales h2 {
    font-size: 1.3rem;
  }
}

.footer {
  background-color: #111;
  color: #f5e9ec;
  padding: 2rem 1rem;
  border-top: 1px solid #e4a4b7;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Logo */
  /* Liens */
  /* Réseaux sociaux */
  /* Texte final */
}
.footer .footer-content .footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.footer .footer-content .footer-logo img {
  max-width: 130px;
  height: auto;
  display: block;
}
.footer .footer-content .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}
.footer .footer-content .footer-links a {
  color: #f5e9ec;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer .footer-content .footer-links a:hover {
  color: #e4a4b7;
}
.footer .footer-content .footer-socials {
  display: flex;
  gap: 1.2rem;
}
.footer .footer-content .footer-socials a {
  font-size: 1.6rem;
  color: #f5e9ec;
  transition: color 0.3s ease;
}
.footer .footer-content .footer-socials a:hover {
  color: #e4a4b7;
}
.footer .footer-content p {
  font-size: 0.9rem;
  margin-top: 1rem;
  opacity: 0.8;
}

/* Tablette */
@media (max-width: 768px) {
  .footer .footer-content .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .footer .footer-content .footer-links {
    gap: 1rem;
  }
  .footer .footer-content .footer-links a {
    font-size: 0.9rem;
  }
  .footer .footer-content .footer-socials a {
    font-size: 1.8rem;
  }
}
/* Mobile */
@media (max-width: 480px) {
  .footer {
    padding: 1.5rem 1rem;
  }
  .footer .footer-content .footer-links {
    flex-direction: column;
    gap: 0.6rem;
  }
  .footer .footer-content .footer-links a {
    font-size: 0.85rem;
  }
  .footer .footer-content .footer-socials {
    gap: 1rem;
  }
  .footer .footer-content .footer-socials a {
    font-size: 2rem;
  }
  .footer .footer-content p {
    font-size: 0.8rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #111;
  color: #fff;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Great Vibes", cursive;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=styles.css.map */