@media screen and (max-width: 600px) {
  /* navbar start */
  .header__nav-desktop {
    display: none;
  }
  .header__nav-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__nav-mobile-title {
    border-bottom: 1px solid var(--gray);
    padding-top: 0;
  }
  .header__nav-mobile-title h3,
  .header__nav-mobile-item {
    font-size: 1.2rem;
  }
  /* navbar end */

  /* home start */
  .home__services {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0 !important;
  }
  .home__services div {
    width: 100%;
    margin-bottom: 20px;
  }
  .home__steps {
    grid-template-columns: 1fr;
  }
  .home__steps .home__step,
  .home__steps .home__step:first-child {
    padding: 10px 50px;
  }
  .home__steps .home__step::after {
    position: relative;
    content: "";
    width: 0;
    height: 0;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
  }
  /* home end */

  /* about start */
  .about__company {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about__values {
    flex-direction: column;
  }

  .service-card-horizontal {
    flex-direction: column;
    align-items: flex-start;
    height: max-content;
  }
  .service-card-horizontal > div:nth-child(1) {
    width: 100%;
  }
  .service-card-horizontal > div:nth-child(2) {
    width: 100%;
    padding: 5%;
  }
  .service-card-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /* footer start */
  footer div {
    flex-direction: column;
  }
}
