/* =============================================
   1. ESTILOS GLOBALES Y COMPONENTES REUTILIZABLES
   ============================================= */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap");

/* --- Reseteo Básico --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* --- Tipografía Base --- */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(35, 35, 85);
}

h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

h3 {
  color: #29303b;
}

h5 {
  font-size: 16px;
  color: #29303b;
}

h6 {
  font-size: 1.1rem;
  color: rgb(24, 24, 49);
}

p {
  color: #64626e;
}

span {
  font-size: 0.9rem;
}

/* --- Componente: Navegación --- */
nav {
  position: fixed;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 8vw;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000; /* Asegura que esté por encima de todo */
}

nav .logo {
  width: 150px;
  cursor: pointer;
}

nav .navigation {
  display: flex;
}

nav .navigation ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav .navigation ul li {
  list-style: none;
  margin-left: 30px;
}

nav .navigation ul li a {
  text-decoration: none;
  color: rgb(21, 21, 100);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
}

nav .navigation ul li a.active,
nav .navigation ul li a:hover {
  color: #fdc93b;
}

#menu-btn,
#menu-close {
  display: none;
}

/* --- Componente: Encabezado de Página (Hero Banner) --- */
.page-header {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}

.page-header h2 {
  color: #fff;
}

/* --- Componente: Botones Reutilizables --- */
.btn a {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  transition: 0.3s ease;
  border: 1px solid transparent;
  background-color: #fff;
}

.btn a.blue {
  color: #fff;
  background: rgb(21, 21, 100);
}

.btn a.blue:hover {
  color: rgb(21, 21, 100);
  background: #fff;
  border-color: rgb(21, 21, 100);
}

.btn a.yellow {
  color: #fff;
  background: #fdc938;
}

.btn a.yellow:hover {
  color: rgb(21, 21, 100);
  background: #fff;
  border-color: rgb(21, 21, 100);
}

/* --- Componente: Pie de Página (Footer) --- */
footer {
  padding: 4vw 8vw;
  background-color: #101c32;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
}

.footer-col {
  flex: 1 1 250px;
}

footer h3,
footer h5 {
  color: #f1f0f5;
  font-weight: 600;
  margin-bottom: 10px;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer li {
  list-style: none;
  color: #7b838a;
  padding: 8px 0;
  cursor: pointer;
  transition: 0.3s ease;
}

footer li:hover {
  color: #fff;
}

footer p {
  color: #7b838a;
  font-size: 14px;
}

footer .justificado {
  text-align: justify;
}

footer .pro-links {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

footer .pro-links i {
  font-size: 18px;
  color: #fff;
  background: #5f7185;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
}

footer .pro-links i:hover {
  background: #fdc93b;
  color: #101c32;
}

.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  color: #7b838a;
}

.contact-info .info-item i {
  font-size: 18px;
  margin-top: 4px;
  color: #fdc93b;
  min-width: 20px;
}

.contact-info .info-item h5 {
  margin: 0 0 4px;
  color: #f1f0f5;
  font-weight: 500;
}

footer .copyright {
  width: 100%;
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #334f6c;
  padding-top: 20px;
  color: #fff;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #7b838a;
  transition: 0.3s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

/* =============================================
   2. ESTILOS DE PÁGINA: HOME
   ============================================= */
#home {
  height: 100vh;
  background-color: #090536;
  background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)),
    url("https://e-desk.services/appweb/img/freecompress-fondoinicio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadein 1s ease-in;
}

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

#home p {
  width: 50%;
  color: #fff;
  font-size: 0.9rem;
  line-height: 25px;
}

#home .btn {
  margin-top: 30px;
}

#features {
  padding: 5vw 8vw 0 8vw;
  text-align: center;
}

#features .fea-base {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;
}

#features .fea-box {
  background: #edf1f2;
  text-align: start;
  padding: 1.2rem;
  border-radius: 6px;
}

#features .fea-box i {
  font-size: 2.3rem;
  color: rgb(44, 44, 80);
}

#features .fea-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(46, 46, 59);
  padding: 13px 0 7px 0;
}

#features .fea-box p {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(70, 70, 87);
}

#productos {
  padding: 8vw 8vw 8vw 8vw;
  text-align: center;
}

#productos .productos-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  margin-top: 50px;
  place-items: center;
}

#productos .product {
  background: transparent;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

#productos .img-container {
  width: 100%;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

#productos .product img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

#productos .details {
  background: #edf1f2;
  padding: 15px;
  text-align: center;
  flex-grow: 1;
}

#productos .product .details i {
  color: #fdc93b;
  font-size: 0.9rem;
}

#productos .product .cost {
  background-color: rgb(74, 74, 136);
  color: #fff;
  line-height: 70px;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  bottom: 100px;
}

#registration {
  padding: 6vw 8vw 6vw 8vw;
  background-image: linear-gradient(
      rgba(99, 112, 168, 0.5),
      rgba(81, 91, 233, 0.5)
    ),
    url("../img/signup.jpg");
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#registration .reminder,
#registration .reminder h1 {
  color: #fff;
}

#registration .reminder .time {
  display: flex;
  margin-top: 40px;
}

#registration .reminder .time .date {
  text-align: center;
  padding: 13px 33px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 10px;
  margin: 0 5px 10px 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.1rem;
  font-weight: 600;
}

#registration .form {
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

#registration .form input {
  margin: 15px 0;
  padding: 15px 10px;
  border: 1px solid rgb(84, 40, 241);
  outline: none;
}

#registration .form input::placeholder {
  color: #413c3c;
  font-weight: 500;
  font-size: 0.9rem;
}

#registration .form .btn {
  margin-top: 20px;
}

#experts {
  padding: 8vw 8vw 8vw 8vw;
  text-align: center;
}

#experts .expert-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;
}

#experts .expert-box .profile {
  background: #fafaf1;
  padding: 30px 10px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px,
    rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

#experts .expert-box .profile:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

#experts .pro-links {
  margin-top: 10px;
}

#experts .pro-links i {
  padding: 10px 13px;
  border: 1px solid rgb(21, 21, 100);
  cursor: pointer;
  transition: 0.3s ease;
}

#experts .pro-links i:hover {
  background: rgb(21, 21, 100);
  color: #fff;
}

/* =============================================
   3. ESTILOS DE PÁGINA: QUIÉNES SOMOS
   ============================================= */
#about-quienes {
  background-color: #090536;
  background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)),
    url("https://e-desk.services/appweb/img/trabajo.jpg");
  background-size: 100% auto; /* ajusta al ancho sin deformar */
  background-repeat: no-repeat;
  background-attachment: scroll; /* o fixed si quieres efecto parallax */
  animation: fadein 1s ease-in;
  padding: 60px 0; /* ajusta según el contenido */
}

#about-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  padding: 8vw;
  max-width: 1200px;
  margin: auto;
}

#about-container .about-img,
#about-container .about-text {
  width: 48%;
}
#about-container .about-img img {
  width: 100%;
  border-radius: 10px;
}

#about-container .about-text {
  width: 40%;
}

#about-container .about-text h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: justify;
}

#about-container .about-text p {
  color: #686f7a;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

#about-container .about-text .about-fe {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}

#about-container .about-text .about-fe img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 5px;
}
#about-container .about-text .about-fe .fe-text {
  width: 90%;
}

#about-container .about-text .about-fe .fe-text h5 {
  margin: 0;
}
#trust {
  text-align: center;
  padding: 8vw;
  background: #f9f9f9;
  overflow-x: hidden; /* evita desbordes horizontales */
}

.swiper-container {
  width: 100%;
  padding: 40px 0;
  position: relative; /* 👈 necesario para posicionar flechas */
  touch-action: pan-y;
  overflow: hidden;
}

.swiper-slide.trust-logo {
  width: 180px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin: 0;
  flex-shrink: 0; /* 👈 evita que se reduzca el slide en pantallas pequeñas */
}

.trust-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* 🎯 Posicionar las flechas correctamente */
.swiper-button-prev,
.swiper-button-next {
  color: #333; /* ajusta color según diseño */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Opcional: ajusta separación lateral */
.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* =============================================
   4. ESTILOS DE PÁGINA: PORTAFOLIO
   ============================================= */
#about-portafolio {
  background-color: #090536;
  background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)),
    url("https://e-desk.services/appweb/img/portafolioFD.jpg");
  background-size: 100% auto; /* ajusta al ancho sin deformar */
  background-repeat: no-repeat;
  background-attachment: scroll; /* o fixed si quieres efecto parallax */
  animation: fadein 1s ease-in;
  padding: 60px 0; /* ajusta según el contenido */
}

.service-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 60px auto;
  padding: 20px 0;
  flex-wrap: wrap;
  max-width: 1200px;
}

.service-section > .overview,
.service-section > .enroll {
  flex: 1 1 45%;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-section > .overview {
  max-width: 45%;
  align-items: center;
  text-align: center;
}

.portafolio-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  margin: 0 auto 20px auto;
}

.service-section .overview .c-name p {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  margin: 0 auto;
}

.service-section .enroll {
  max-width: 45%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
}

.service-section .enroll p {
  margin-bottom: 12px;
  font-size: 14px;
  text-align: left;
}

.service-section .enroll p i {
  color: #654ce4;
  margin-right: 12px;
  width: 16px;
  text-align: center;
}

.enroll-btn {
  margin-top: 20px;
  text-align: center;
}

.enroll-btn a {
  text-decoration: none;
  font-size: 0.85rem;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  background-color: #232355;
  color: #ffffff;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.enroll-btn a:hover {
  background-color: #1b1b40;
}

#portafolio-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8vw;
}

#portafolio-inner hr {
  height: 1px;
  background: rgba(236, 226, 229, 0.5);
  margin-top: 40px;
}

#portafolio-inner .overview {
  width: 70%;
}

#portafolio-inner .overview .portafolio-img {
  object-fit: cover;
}

#portafolio-inner .overview .portafolio-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#portafolio-inner .overview .portafolio-head .c-name {
  width: 70%;
}

#portafolio-inner .overview .portafolio-head .c-name .star {
  margin: 6px 0;
}

#portafolio-inner .overview .portafolio-head .c-name .star i {
  color: #fdc93b;
  font-size: 0.9rem;
}

#portafolio-inner .overview .portafolio-head .c-name p {
  font-size: 15px;
}

#portafolio-inner .overview .portafolio-head span {
  padding: 16px 22px;
  border-radius: 5px;
  color: #5838fc;
  font-size: 24px;
  font-weight: 700;
  background-color: rgba(88, 56, 252, 0.1);
}

#portafolio-inner .learn p {
  font-size: 15px;
  padding-bottom: 15px;
}

#portafolio-inner .learn p i {
  color: #564ce4;
  font-weight: 700;
  margin-right: 20px;
}

#portafolio-inner .tutor {
  display: flex;
}

#portafolio-inner .tutor img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
}

#portafolio-inner .enroll {
  width: 300px;
  padding: 0 30px 30px 30px;
  border-radius: 11px;
  box-shadow: 0px 20px 40px 0 rgb(11 2 55 / 8%);
}

#portafolio-inner .enroll p {
  padding-bottom: 15px;
  margin: 15px 0;
}

#portafolio-inner .enroll p i {
  color: #654ce4;
  margin-right: 18px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}

/* =============================================
   5. ESTILOS DE PÁGINA: CONTACTO
   ============================================= */
#about-contacto {
  background-color: #090536;
  background-image: linear-gradient(rgba(9, 5, 54, 0.3), rgba(5, 4, 46, 0.7)),
    url("https://e-desk.services/appweb/img/torresdelrio.jpg");
  background-size: 100% auto; /* ajusta al ancho sin deformar */
  background-repeat: no-repeat;
  background-attachment: scroll; /* o fixed si quieres efecto parallax */
  animation: fadein 1s ease-in;
  padding: 60px 0; /* ajusta según el contenido */
}

#contact {
  padding: 8vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#contact .getin {
  width: 350px;
}

#contact .getin h2 {
  color: #2c234d;
  font-size: 30px;
  font-weight: 800;
  line-height: 0.8;
  margin-bottom: 16px;
}

#contact .getin p {
  color: #686875;
  line-height: 24px;
  margin-bottom: 33px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e4ed;
}

#contact .getin h3 {
  color: #2c234d;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 15px;
}

#contact .getin .getin-details div {
  display: flex;
}

#contact .getin .getin-details div .get {
  font-size: 16px;
  line-height: 22px;
  color: #5838fc;
  margin-right: 20px;
}

#contact .getin .getin-details div p {
  font-size: 14px;
  border-bottom: none;
  line-height: 22px;
  margin-bottom: 15px;
}

#contact .getin .getin-details .pro-links i {
  margin-right: 8px;
}

#contact .form {
  width: 60%;
  background: #f7f6fa;
  padding: 40px;
  border-radius: 10px;
}

#contact .form h4 {
  font-size: 24px;
  color: #2c234d;
  line-height: 30px;
  margin-bottom: 8px;
}

#contact .form p {
  color: #686875;
  line-height: 24px;
  padding-bottom: 25px;
}

#contact .form .form-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

#contact .form .form-row input {
  width: 48%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #fff;
  color: #7e7c87;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}

#contact .form .form-col input,
#contact .form .form-col textarea {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  border-radius: 3px;
  border: none;
  background: #fff;
  color: #7e7c87;
  outline: none;
  padding: 20px 30px;
  margin-bottom: 20px;
}

#contact .form button {
  font-size: 0.9rem;
  padding: 13px 25px;
  background: rgb(21, 21, 100);
  border-radius: 5px;
  outline: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
}

#map {
  width: 100%;

  height: 450px; /*  height: 70vh; Puedes cambiar este valor si lo necesitas */
}

#map iframe {
  width: 100%;
  height: 100%;
}

/* =============================================
   6. MEDIA QUERIES (ESTILOS RESPONSIVE)
   ============================================= */

/* --- Pantallas Medianas (Tablets) --- */
@media screen and (max-width: 768px) {
  /* Navegación */
  nav {
    padding: 15px 20px;
  }
  nav img {
    width: 130px;
  }
  #menu-btn {
    display: initial;
    width: 30px;
    height: 30px;
  }
  #menu-close {
    display: initial;
    font-size: 1.6rem;
    color: #fff;
    padding: 30px 0 20px 20px;
  }
  nav .navigation ul {
    position: absolute;
    top: 0;
    right: -220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 220px;
    height: 100vh;
    background: rgba(17, 20, 104, 0.45);
    backdrop-filter: blur(4.5px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: 0.3s ease-in;
  }
  nav .navigation ul.active {
    right: 0;
  }
  nav .navigation ul li {
    padding: 20px 0 20px 40px;
    margin-left: 0;
  }
  nav .navigation ul li a {
    color: #fff;
  }

  /* Página: Home */
  #home {
    padding: 0px;
  }
  #home p {
    width: 90%;
  }
  #features,
  #productos,
  #registration,
  #experts {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  #registration {
    gap: 2.2rem;
  }
  #registration .reminder .time {
    flex-wrap: wrap;
  }

  /* Página: Quiénes Somos */
  #about-container {
    flex-direction: column;
    padding: 6vw 4vw;
  }
  #about-container .about-img,
  #about-container .about-text {
    width: 100%;
  }
  #trust .trust-img {
    gap: 20px;
  }

  /* Página: Portafolio */
  .service-section {
    flex-direction: column;
    padding: 8vw 5vw;
    gap: 30px;
  }
  .service-section > .overview,
  .service-section > .enroll {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .service-section .enroll p {
    text-align: center;
  }
  #portafolio-inner {
    flex-direction: column;
    padding: 8vw 4vw;
  }
  #portafolio-inner .overview {
    width: 100%;
  }
  #portafolio-inner .enroll {
    width: 100%;
    margin-top: 25px;
  }

  /* Página: Contacto */
  #contact {
    padding: 8vw 4vw;
  }
  #contact .getin {
    width: 250px;
  }
}

/* --- Pantallas Pequeñas (Móviles) --- */
@media screen and (max-width: 475px) {
  /* Página: Home (Registration) */
  #registration {
    flex-direction: column;
  }
  .reminder p,
  .reminder h1 {
    text-align: center;
  }
  .reminder h1 {
    font-size: 1.8rem;
  }
  #registration .reminder .time {
    justify-content: space-evenly;
    margin-top: 20px;
  }

  /* Página: Quiénes Somos */
  #about-container {
    flex-direction: column-reverse;
  }
  #about-container .about-text {
    width: 100%;
    padding-bottom: 20px;
  }
  #trust .trust-img {
    margin-top: 40px;
  }

  /* Página: Portafolio */
  #portafolio-inner .overview .portafolio-head .c-name {
    width: 50%;
  }
  #portafolio-inner .overview .portafolio-head .c-name h2 {
    font-size: 16px;
  }

  @media screen and (max-width: 768px) {
    #about-contacto,
    #about-portafolio,
    #about-quienes {
      background-size: cover;
      background-position: center;
    }
  }
  /* Página: Contacto */
  #contact {
    flex-direction: column;
  }
  #contact .getin {
    width: 100%;
    margin-bottom: 30px;
  }
  #contact .form {
    width: 100%;
    padding: 40px 30px;
  }
  #contact .form .form-row {
    flex-direction: column;
  }
  #contact .form .form-row input {
    width: 100%;
  }
}

.toast-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2d72d9;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 9999;
}
.toast-message.show {
  opacity: 1;
}
