@media (max-width: 991.98px) {
  header {
    flex-direction: column;
    gap: 25px;
  }
  .main-logo img {
    width: 80px;
  }
  header > button {
    display: none !important;
  }
  .main-logo .main-logo-text {
    top: -9px;
  }
  .main-logo .main-logo-text h2 {
    font-size: 20px;
  }
  nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 60px;
    width: 100%;
    height: fit-content;
    background-color: var(--light);
    border-radius: 0 0 50px 50px;
    padding: 0;
    padding-bottom: 50px;
    box-shadow: 0px 5.9px 5.3px rgba(0, 0, 0, 0.028), 0px 19.7px 17.9px rgba(0, 0, 0, 0.042), 0px 88px 80px rgba(0, 0, 0, 0.07);
    z-index: 100;
    transition: 0.2s;
    opacity: 0;
    visibility: hidden;
  }
  nav ul li a {
    font-size: 21px;
  }
  nav::after {
    display: none;
  }
  header .logo-md {
    display: none;
  }
  header .logo-sm {
    display: block;
    width: 71px;
  }
  .hamb {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 100;
  }
  .hamb__field {
    cursor: pointer;
  }
  .bar {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 5px;
    margin: 7px auto;
    background-color: var(--dark-black);
    transition: 0.7s;
  }
  .hamb__field.active .bar:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .hamb__field.active .bar:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
  }
  nav ul {
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
  }
  nav.active {
    opacity: 1;
    visibility: visible;
  }
}
