/* Hide mobile header on desktop */
.mobile-header {
  display: none;
}

/* Mobile only */
@media (max-width: 991px) {
  body {
    overflow-x: clip;
  }

  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
    background: #fff;
    position: fixed;
    top: 0;
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.07);
    z-index: 999;
  }

  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
  }

  .mobile-logo img {
    max-height: 60px;
  }

  .mobile-toggle {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    outline: none;
    border: none;
  }

  /* Mobile menu sliding from top */
  .mobile-menu {
    position: absolute;
    top: 0%;
    right: -200%;
    height: 100vh;
    width: 86%;
    background: #fff;
    transition: top 0.3s ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s all;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu ul li {
    border-bottom: 1px solid #eee;
  }

  .mobile-menu ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #000;
    text-transform: capitalize;
  }

  .mobile-menu.active {
    right: 0;
  }

  .about-image-box {
    width: auto;
  }

  .fact-two {
    padding: 3rem 0;
  }

  .fact-two-single {
    margin-bottom: 20px;
  }

  .banner_wrapper__content {
    width: 100%;
  }

  .banner_wrapper__content h1 {
    font-size: 30px;
  }

  .banner_wrapper__content p {
    font-size: 15px;
  }

  .mobile-menu .logo {
    width: 150px;
    height: 150px;
  }

  .certifications .main_heading {
    align-items: center;
  }

  .global_wrapper {
    padding: 40px 0;
  }

  .about_content {
    padding: 0;
  }

  .about_content h2 {
    font-size: 30px;
  }

  .service_box__content h3 {
    font-size: 22px;
  }

  .why-choose-us-two {
    padding-top: 50px;
  }

  .why-choose-us-two .section-name {
    margin-inline: auto;
  }

  .breadcrumb_wrapper {
    padding-bottom: 15px;
  }

  .breadcrumb_wrapper .breadcrumb_wrapper__content {
    margin-top: 20px;
  }

  .timeline .main_heading {
    padding: 0 10px;
  }

  .timeline .arrows {
    display: none;
  }

  .breadcrumb_wrapper__content h1 {
    font-size: 35px;
  }

  .services-section .service-box {
    width: 100%;
  }

  .client-img {
    width: 100%;
    margin-bottom: 1rem;
  }

  .mobile-menu ul li a.active {
    color: var(--main-color);
  }
}
