/* Dropdown on hover (desktop only) */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive for carousel text on mobile */
@media (max-width: 768px) {
  .carousel-caption {
    bottom: 20%;
    text-align: center;
  }

  .carousel-caption h1 {
    font-size: 1.75rem;
  }

  .carousel-caption h4 {
    font-size: 1.25rem;
  }

  .carousel-caption p {
    font-size: 12px;
  }
  
  .form-row .col-md-4 {
    margin-bottom: 15px;
  }
  .section-title {
    font-size: 20px;
  }
  .vh-100 {
    height: 70vh !important;
  }
  .text-start {
    text-align: center !important;
  }

}