
/*Text Animation*/

.animi_text {
    font-family: "Tagesschrift", system-ui;
    margin: 25px 0px 20px 0px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.animi-container {
  display: flex;
  text-align: center;
  font-size: 2.5rem;
  letter-spacing: 12px;
  opacity: 0.8;
  transform: translateX(-100%);
  animation: slideLeftToRight 30s ease-in-out infinite, fadeIn ease-in-out infinite;
}



        .animi-container span {
            color: #121212;
            display: block;
            animation: fadeInText 1.5s ease-in-out infinite;
            opacity: 0.5;
            animation-delay: calc(0.5s * var(--i));
            margin: 0 80px; /* Spacing between the words */
        }

        @keyframes slideLeftToRight {
            0% {
                opacity: 0.8;
                transform: translateX(-100%); /* Start off-screen to the left */
            }

            50% {
                opacity: 1;
                transform: translateX(0); /* Slide to the normal position */
            }
            100% {
                opacity: 0.8;
                transform: translateX(100%); /* End off-screen to the right */
            }
        }

        @keyframes fadeInText {
            0% {
                opacity: 0.5;
                color: red;
            }
            100% {
                color: green;
                opacity: 1;
            }
        }


/*Top scroll-button*/

    .scroll-button {
      /* position: fixed;
      bottom: 40px;
      right: 15px;
      background-color: #333;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 25%;
      cursor: pointer;
      z-index: 1000;
      font-size: 15px; */
     /* display: none; Initially hidden */
      /* opacity: 0; */

animation: bounce 2s infinite;
transition: transform 0.3s ease, opacity 0.3s;
    }

/*    .scroll-button.show {
      display: block;
      opacity: 1;
    }

    .scroll-button:hover {
      transform: scale(1.1);
    }*/

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


@media (max-width: 769px) {
  .hide-770 {
    display: none;
  }
}



/* Contact Page */

.contact .btn{
 color: rgb(255, 255, 255);
 background-color: rgb(190, 4, 4);
}

.contact {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center;     /* Vertically center */
  /* height: 100vh;           Full viewport height */
  text-align: center;
}

.contact-title{
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center;     /* Vertically center */
  text-align: center;
  /* margin-top: 100px; */
}

.contact-main {
  display: flex;
  flex-direction: column;  /* Stack children vertically */
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-main .text{
 font-size: 25px;
}

.contact-main .text-ex{
  font-size: 25px;
}

.contact-main .text-important{
  font-size: 25px;
  font-weight: 600;
}

.contact-main .text-important span{
  font-size: 25px;
  font-weight: 600;
  color: red;
}

.back-btn{
  margin-bottom: 40px;
}
.back-btn .btn{
  background-color: rgb(190, 4, 4);
}


.page-content{
  height: 100vh;
}



/* Payment section */

.Payment {
  background: linear-gradient(to right, #141e30, #243b55);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.Payment h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.Payment .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.Payment .card {
  /* background-color: rgba(255, 255, 255, 0.08); */
  background-color: rgba(224, 236, 52, 0.87);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.Payment .card img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.Payment .card:hover {
  transform: scale(1.1);
  /* box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2); */
  box-shadow: 0 12px 24px rgba(153, 161, 34, 0.815);
}

.Payment .card:hover img {
  transform: scale(1.2) rotate(8deg);
}

/* .Payment footer {
  margin-top: 50px;
  font-size: 0.9rem;
  opacity: 0.6;
} */


@media (min-width: 800px) {
  .navbar {
    position: fixed;
  }
}