/* navbar responsive */
/* Responsive styles to make the navbar collapse on small screen */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-icon {
      display: block;
  }

  .navbar-links {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 80px;
      left: 0;
      background-color: var(--white);
  }

  .navbar-links.active {
      display: flex;
  }

  .navbar-links li {
      width: 100%;
      text-align: center;
      margin: 1rem 0;
  }

  .navbar-btn {
      margin-top: 1rem;
  }
}

/* hero responsive style */
@media screen and (max-width: 768px) {
  .hero,
  .hero::before{
    height: 100vh;
  }
}

/* agent responsive style */
@media (max-width: 768px) {
  .agent-content {
      margin: 0;
      padding: 0;
  }
}

/* agent image responsive */
@media (max-width: 768px) {
  .black-guy-1 {
      margin-top: 50px;
  }
}