/* Desktop devices (992px and above) */
@media screen and (min-width: 992px) {
  /* Your CSS styles for desktop devices here */
  .mobile {
    display: none !important;
  }
}

/* Mobile devices (up to 767px) */
@media screen and (max-width: 991px) {
  /* Your CSS styles for mobile devices here */
  .desktop {
    display: none !important;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px 0;
    transition: 0.4s;
  }

  .logo-block {
    max-width: 90px;
  }
  .mobile_menu.active {
    right: -1px;
    display: block;
  }
  .mobile_menu {
    display: none;
    position: absolute;
    height: 100vh;
    width: 300px;
    background-color: rgba(0, 0, 0, 0.8);
    right: -300px;
    top: 0;
    z-index: 9999;
    overflow: hidden;
    transition: right 0.2s;
  }
  .mobile_menu ul {
    position: relative;
    top: 30px;
    left: 40px;
    width: 200px;
  }

  .mobile_menu ul li {
    line-height: 50px;
  }
  .mobile_menu ul li a {
    color: #ffffff;
    font-size: 18px;
  }

  .mobile_menu ul li a:hover {
    color: #cccccc;
  }

  .closeMenu {
    color: #fff;
    font-size: 30px;
    position: absolute;
    right: 40px;
    top: 30px;
  }

  .page_banner {
    height: 300px;
  }

  .profile_column.st_column {
    width: 80%;
  }
  .st_row .st_column.dual {
    flex-wrap: wrap;
  }
  .st_column.dual .text_column,
  .st_column.dual .image_column {
    width: 100%;
    text-align: center;
  }
  .st_column.dual .image_column img {
    max-height: 250px;
    margin: auto;
    width: auto;
    max-width: 300px;
  }
  .alternate .st_row .st_column.dual .text_column {
    order: 2;
  }
  .alternate .st_row .st_column.dual .image_column {
    order: 1;
  }
  .form-group,
  .services-group label {
    flex: 0 0 100%;
  }
}
