.spacer {
  height: 100vh;
}

.animate-left, .animate-right {
  position: relative;
  opacity: 0;
}

.animate-left.visible {
  animation: slideInFromLeft 2s forwards;
  animation-delay: 1.3s;
}

.animate-right.visible {
  animation: slideInFromRight 2s forwards;
  animation-delay: 1.3s;
}

.btn-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes slideInFromLeft {
  0% {
    left: -1000px;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    right: -1000px;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
}

/* REPONSIVE DIV */

.resp {
  width: 100%;
}

.btn-resp{
  background-color: currentColor;
}

.text-resp{
  color: currentColor;
}

.li-resp {
  color: currentColor;
}




.form-s7 {
  background-color: rgba(31, 31, 31, 0.664);
  align-items: center;
  width: 100%;
  display: flex;
  font-family: sans-serif;
  font-size: 1.2rem;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px #fcb9003f;
}

.form-input {
  outline: 1;
  min-height: 40px;
  flex: 1;
  border: solid 1px #fcb900 ;
  border-radius: 5px;
  padding: 5px;
}

.text-white {
  color: #fff;
}

.form-field{
  width: 100%;
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.form-button {
  min-width: 240px;
  min-height: 40px;
  border: none;
  border-radius: 5px;
  background-color: #fcb900;
  font-size: larger;
}

.form-button:hover {
  background-color: #b48401;
  cursor: pointer;
}

.form-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}

.wpp-link {
  position: fixed;
  width: 120px;
  bottom: 20px; 
  right: 20px; 
  z-index: 20000000;
}

.wpp-link:hover {
  transition-duration: 0.5s;
  transform: scale(120%);
  cursor: pointer;
}

@media (max-width: 768px) {
  .resp {
    padding-bottom: 130px;
    padding-left: 30px;
  }
  .btn-resp{
    /* display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent; */
    visibility: hidden;
  }
  .text-resp {
    text-align: center;
  }
  .li-resp {
    font-size: large !important;
  }

  .form-field {
    display: flex;
    flex-direction: column;
  }

  .form-input {
    width: 100%;
  }

  .form-button {
    width: 100%;
  }
  
  .form-s7 {
    display: flex;
    flex-direction: column;
  }

  .wpp-link {
    bottom: 60px;
    right: 5px !important;
  }
}

