
@media (max-width: 768px) {
  .header {
    padding: 16px;
    grid-template-areas:
    "logo buttons";
  }
  .drawer{
    width: 375px;
  }
  .drawer__inner {
    padding: 16px;
  }
  .drawer.is-open {
    transform: translate(-50%, 0);
  }
  .site-header__inner {
    height: 63px;
  }

  .site-header__logo {
    max-width: 197px;
    height: auto;
  }

  .site-header__nav {
    display: none;
  }
  .btn-contact,
  .drawer .button-contact {
    display: none;
  }
  .section-title {
    padding-left: 24px;
    gap: 0;
  }

  .kowa-logo{
    width: 197px;
    height: auto;
  }

  .drawer .two-col{
    grid-template-columns: 1fr;
    row-gap: 16px;
    grid-template-areas:
      "right"
      "left";
  }
  .drawer .two-col::before{
    display: none;
  }

  .service-menu-list ul{
    display: flex;
		flex-direction: row;
		flex-wrap: wrap;
    gap: 16px;
  }
}