/* ===== CONTACT PAGE CUSTOM STYLES ===== */
/* Only styles that cannot be achieved with Bootstrap utilities */

/* Hero Banner Section */
.contact-hero {
  position: relative;
  height: 300px;
  background-image: url('../img/Rectangle 1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1200px) {
  .contact-hero .container {
    max-width: 1170px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.contact-hero .breadcrumb {
  background: transparent;
  padding: 0;
}

.contact-hero .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #ffffff;
  padding: 0 8px;
}

.contact-hero .breadcrumb-item a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-hero {
    height: 250px;
  }
  
  .contact-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 575.98px) {
  .contact-hero {
    height: 200px;
  }
  
  .contact-hero-title {
    font-size: 28px;
  }
}
