.nav-desktop .nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
  margin: 10px 0;
}

.nav-list {
  list-style: none;
}

.nav-list li {
  width: 100%;
}

.nav-list .link {
  min-width: 160px;
  height: 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 400;
  font-size: 18px;
  white-space: nowrap;
  transition: background-color 0.5s ease;
}

.nav-list .call {
  background-color: #dc3545;
  color: #fff;
  border: 1px solid #dc3545;
  padding: 0 20px;
}

.nav-list .call:hover {
  background-color: #c82333;
}

.nav-list .h-link:hover {
  background-color: #ececec;
}

.logo {
  font-size: 18px;
  font-weight: 900;
  color: #dc3545;
  text-transform: uppercase;
  text-decoration: none;
  background-color: #fff;
  height: 60px;
  min-width: 162px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn {
  display: none;
}

.bg-dark {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
}

.run {
  display: block;
}

.nav-mobile {
  display: none;
  transition: 0.5s ease;
  position: fixed;
  z-index: 11;
  top: 0;
  right: -300px;
  width: 240px;
  height: 100%;
  background-color: #fff;
  padding: 10px 10px 10px 20px;
}

.run-mobile {
  right: 0;
}

.nav-close {
  display: flex;
  justify-content: flex-end;
}

.nav-mobile .close {
  width: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.close img {
  width: 100%;
  height: 100%;
}

.mobile-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
}

.mobile-call {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 50px;
  background-color: #dc3545;
  color: #fff;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  white-space: nowrap;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-logo {
  font-size: 28px;
  font-weight: 900;
  color: #dc3545;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-link {
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 400;
  font-size: 22px;
  white-space: nowrap;
}

@media screen and (max-width: 1440px) {
  .nav-list .link {
    font-size: 16px;
    min-width: 134px;
  }
}

@media screen and (max-width: 1200px) {
  .nav-list .link {
    min-width: 142px;
  }
  .lg-none {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .nav-list .link {
    min-width: 150px;
  }
  .md-none,
  .md-none-call {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .menu-btn {
    display: block;
  }

  .nav-mobile {
    display: block;
  }

  .menu-btn button {
    background-color: #fff;
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 24px;
    padding: 10px;
  }

  .menu-btn button img {
    width: 100%;
    height: 100%;
  }

  .sm-none {
    display: none;
  }

  .md-none-call {
    display: block;
  }

  .nav-list .call {
    width: 234px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 16px;
    min-width: 134px;
  }

  .nav-list .call {
    width: 162px;
  }
}

@media screen and (max-width: 360px) {
  .logo {
    font-size: 18px;
    min-width: 258px;
    border-radius: 18px;
  }

  .menu-btn button {
    border-radius: 18px;
  }

  .nav-list .call {
    display: none;
  }

  .nav-desktop .nav-list {
    gap: 1px;
  }
}
