@media (max-width:980px) {
  .nav__bar {
    display: none;
  }

  .nav__btn {
    position: fixed;
    display: block;

    top: 46px;
    right: 30px;

    z-index: 9;
  }

  .nav.open .nav__bar {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 40px;

    position: fixed;
    top: 0;
    left: 10vw;
    right: 0;
    bottom: 5vh;

    padding: 46px 80px;

    background: white;
    z-index: 2;
  }

  a.nav__link {
    font-weight: 600;
    font-size: 34px;
    line-height: 51px;

    color: #828282;
  }

  a.nav__link.active {
    color: #000;
  }

  .nav.open .nav__background::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.425);
  }


  .hero {
    padding-top: 50px;
  }

  .hero__container{
    flex-direction: column;
    justify-content: center;
  }

  .hero__content {
    padding-top: 0;
    max-width: fit-content;
  }

  .hero__img {
    max-width: 296px;
    margin-top: 20px;
  }

  .hero__title {
    font-size: 34px;
    line-height: 51px;
  }

  .title__descript {
    font-weight: 600;
    font-size: 28px;
    line-height: 42px;
  }

  .scills {
    padding: 60px 0;
  }

  .scills__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .scills__item {
    flex: 1 1 0;
    max-width: 370px;
  }

  .footer__contacts {
    width: 314px;
  }

}
