.nav-shader {
  position: fixed;
  z-index: 20;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(4, 4, 20, 0.78) 0%, rgba(4, 4, 20, 0) 70%);
}

nav {
  position: fixed;
  width: calc(100% - 4rem);
  margin-left: 2rem;
  margin-top: 1rem;
  height: 64px;
  background: transparent border-radius: 16px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
}

.nav-logo img {
  height: 64px;
}

.nav-logo,
.nav-info {
  display: flex;
  align-self: center;
  gap: 0.3rem;
  z-index: 2;
}

.nav-logo {
/*  background: #ffffffdb;
  backdrop-filter: blur(9px);
  border-radius: 12px;
  padding: 2px 6px;
  */
}

.nav-info {
  align-items: center;
  background: #fff;
  background: #ffffffdb;
  backdrop-filter: blur(9px);
  padding: 0.2rem 0.2rem 0.2rem 1.2rem;
  border-radius: 12px;
}

.nav-info-menu {
  display: flex;
  justify-content: center;
}

.nav-info-menu ul {
  display: flex;
  gap: 1.5rem;
  /* расстояние между пунктами */
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-info-menu ul li a {
  color: #272727;
  text-decoration: none;
  font-weight: 500;
}

.nav-info-mobile, .nav-mobile-menu {
  display: none;
}

.nav-info-socials {
  display: flex;
  gap: 0.6rem;
}

@media (max-width: 992px) {
  nav {
    width: calc(100% - 1rem);
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    background: #ffffff;
    background: #ffffff87;
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 3px;
    height: auto;
  }

  nav::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 60%;
    left: 0;
    top: 0;
    background: transparent;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.87) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 12px 0px 0px 12px;
  }

  .nav-logo {
    background: transparent;
    backdrop-filter: unset;
    border-radius: unset;
    padding: 0;
  }

  .nav-logo img {
    height: 42px;
  }

  .nav-info-socials {
    display: none;
  }

  .nav-info, .nav-info-menu {
    display: none;
  }

  .nav-info-mobile {
    display: flex;
    gap: 0.6rem;
    align-items: center;
  }

  .nav-mobile-menu {
    display: flex;
  }
}


@media (min-width: 992px) and (max-width: 1164px) {
  .nav-info-menu ul li a {
    font-size: 1rem;
  }
    .btn-phone {
      font-size: 1.2rem;
      padding: 4px 8px 4px 8px;
    }
}




/* media fixes*/

@media (min-width: 1024px) and (max-width: 1380px) {
  .section-inner {
    padding: 100px 16px;
  }

  .info-card {
    padding: 1.1rem;
    min-height: 244px;
  }

  .section-inner-intro p {
    font-size: 1.05rem;
  }

  .card-body {
    padding: 0px 24px 24px 48px;
  }

  .card-inner-info h2 {
    font-size: 1.8rem;
  }

  .card-inner-info p {
    font-size: 1.1rem;
  }

  .card-inner-info-notificator {
    font-size: 1.1rem;
  }

  .card-body-color-1 {
    background-size: 58%;
  }

  .card-body-color-2 {
    background-size: 55%;
  }

  .card-body-color-3 {
    background-size: 70%;
  }

  .bento-block h2 {
    font-size: 1.4rem;
  }

  .bento-block h3 {
    font-size: 1.2rem;
  }

  /* media fixes end*/