/* Disclaimer.css */

/* Overlay for the Disclaimer */
.disclaimer-overlay67 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Ensure it is on top */
}

/* Disclaimer Modal */
.disclaimer-modal67 {
  background: white;
  border-radius: 15px;
  padding: 30px;
  width: 60%;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Disclaimer Content */
.disclaimer-content67 {
  text-align: center;
}

/* Close Button */
.close-btn67 {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.close-btn67:hover {
  color: #ff6600;
}


.know-more-btn67 button{
  background-color: lightblue;
  padding: 5px;
  border-radius: 4px;
  animation: contac-us 1.2s infinite linear;
}

@keyframes contac-us {
  0%{transform: scale(1);}
  50%{transform: scale(1.2);}
  100%{transform: scale(1);}    
}