/* navbar */
.navbar-nav .nav-item.join-button .nav-link::after {
  content: none;
}
/* Hero Section */
.hero-section-contact {
  background: url('img/contact-us-banner.png') no-repeat center center/cover;
  height: 50vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  top: 4.68rem;
  overflow: hidden;
}

.hero-section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1; 
}

.hero-section-contact .container {
  position: relative;
  z-index: 2;
}


.hero-section-contact h1 {
  font-size: 4rem;
  font-weight: 600;
}

.hero-section-contact p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* --------------------------- */
.theme-btn {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ------------------------- */

/* Contact Form */
.contact-us form {
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

.contact-us{
  margin: 90px 0;
}

section{
  margin-bottom: 0 !important;
}

.map-container iframe {
  width: 100%;
  height:40vh;
  border: 0;
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.contact-support {
  background-color: #F3F7FF;
  padding: 128px 0 58px 0;
}

.form-group input {
  padding: 30px 0 30px 10px;
}

/* Responsive Styles */
@media (max-width: 425px) {
  .hero-section-contact h1 {
    font-size: 2rem;
  }
}