/* datetime */
.datetime-box {
  position: fixed;
  right: 10px;
  padding: 6px 12px;
  color: white;
  font-family: monospace;
  font-size: 0.8rem;
  border-radius: 6px;
  z-index: 9999;
  pointer-events: none;
}

/* Font */
body {
  font-family: Poppins, sans-serif;
}

/* disable text Selection */
body {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

/* Disable dragging images */
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

/* styles */
.hero-section {
  position: relative;
  width: 100%;
  background-color: #80cb5d;
  background-image: url("../../assets/img/greenbg.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 76, 161, 0.9), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-top: 8rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.rounded-button {
  border-radius: 8px;
}

.text-primary-custom {
  color: #111111;
}

.text-primary-custom:hover {
  color: var(--bs-gray-100);
  background-color: var(--bs-success) !important;
}

.bg-secondary-custom {
  background-color: #e63312;
}

.bg-secondary-hover:hover {
  background-color: #cc2c10;
}

.element:hover {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1), -10px -10px 10px white;
}

@media (min-width: 300px) {
  .bg-secondary-custom.rounded-button.bg-secondary-hover {
    width: 10rem;
  }
}
@media (min-width: 300px) {
  .text-primary-custom.rounded-button {
    width: 10rem;
  }
}
/* form */
@media (min-width: 300px) {
  #contact {
    max-width: 100%;
  }
}
/* faq */
#faqAccordion {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* map */
#mapContainer {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* footer */
footer {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
  border-top-left-radius: 60%;
  border-top-right-radius: 60%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  width: 200%;
  min-width: 2100px;
  height: 80%;
  background-color: #c4e3b5;
  padding: 60px 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}