.header {
  margin-top: 38px;
  display: flex;
  align-items: center;
  margin-bottom: 72px;
}

.header__logo {
  width: 90px;
  height: 90px;
}

.header__menu-child {
  display: none;
  font-size: 20px;
}

.desktop-block {
  display: block;
}

.header__link {
  position: relative;
  right: 15px;
  margin-right: auto;
  display: flex;
  text-decoration: none;
}

.header__nav {
  float: right;
  position: relative;
}

.header__about-us {
  margin-right: 134px;
  display: block;
}

.header__page-reader {
  display: block;
}

.header__burger {
  display: none;
  border: none;
  background: none;
}

.header__menu-block {
  padding: 0;
  padding-left: 20px;
  display: flex;
  margin: 0;
}
.header__btn-close {
  border: none;
  background: none;
  float: right;
  margin-top: 3px;
}

.nav-links {
  color: #448AFE;
}

.header__name {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 17px;
  position: relative;
  top: 10px;
}

.header__name-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  margin: 0;
  letter-spacing: 0.07em;
  margin-bottom: 11px;
}

.header__add-name-logo {
  font-family: 'Montserrat', sans-serif;
  padding-left: 0px;
  letter-spacing: 0.06em;
  font-size: 16px;
  line-height: 14px;
  color: #000;
  margin: 0;
}

@media (max-width: 1000px) {

  .menu-enter-active, .menu-leave-active {
    transition: transform 1s, opacity 1s;
  }
  
  .menu-leave-to {
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  
  .menu-enter {
    transform: scale(0.2, 0.2);
    opacity: 0;
  }

  .header__name {
    padding-bottom: 3px;
  }

  .header__menu-block {
    padding: 0 27px;
    background-color: #fff;
    z-index: 10;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    width: 320px;
    position: absolute;
    right: 0;
    top: 0;
  }

  .header__menu-child, .header__burger {
    display: block;
  }

  .header__menu-child {
    padding: 15px 0 22px 0;
    border-bottom: 1px solid #EDEDED;
  }

  .header__menu-child:first-of-type {
    padding-top: 35px;
    display: flex;
    align-items: center;
    justify-content:space-between;
  }

  .header__menu-child:last-of-type {
    border: none;
    padding-bottom: 35px;
  }

  .nav-links {
    text-decoration: none;
    font-size: 15px;
    line-height: 20px;
    color: #505050;
    margin: 0;
  }
  .active {
    display: block;
    z-index: 10;
  }

  .header__nav {
    position: relative;
    top: 8px;
  }

  .header__name-logo {
    margin-bottom: 0;
  }

  .header__link {
    transform: scale(0.8, 0.8);
    transform-origin: left center;
    width: 260px;
  }

  .header__add-name-logo {
    font-size: 10px;
  }

  .header__name {
    padding-bottom: 15px;
  }

  .header {
    margin-top: 20px;
  }
}