.container-header {
  width: 100vw;
  height: 90px;
  z-index: 1;
  position: relative;
  background-color: transparent;
}

.wrapper {
  width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.navbar-container {
  width: 415px;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-item {
  color: var(--white);
  font-family: var(--montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.contacts-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contacts-item {
  background-color: var(--white);
  border-radius: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 2px;
  text-decoration: none;
}

.phone {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.icons-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone {
  color: var(--white);
  text-align: right;
  font-family: var(--montserrat);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}
.logo-block {
  width: 215px;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 14px;
  font-family: var(--montserrat);
  color: var(--white);
  font-style: normal;
  line-height: 20px;
  text-decoration: none;
}

.logo-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0px;
  margin-bottom: 4px;
}

.logo-subtitle {
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}

.open-menu {
  display: none;
}

@media (max-width: 1400px) and (min-width: 1024px) {
  .wrapper {
    width: 960px;
  }

  .navbar-container {
    width: 415px;
    gap: 25px;
  }

  .nav-item {
    font-size: 14px;
  }

  .contacts-block {
    gap: 25px;
  }

  .contacts-item {
    width: 25px;
    height: 25px;
  }

  .phone {
    font-size: 16px;
  }

  .logo-title {
    font-size: 16px;
  }

  .logo-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .wrapper {
    width: 760px;
  }

  .navbar-container {
    width: 300px;
    gap: 15px;
  }

  .nav-item {
    font-size: 12px;
  }

  .contacts-block {
    gap: 10px;
  }

  .icons-block {
    gap: 10px;
  }

  .phone {
    font-size: 11px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-subtitle {
    font-size: 12px;
  }
  .logo-block {
    width: 160px;
    gap: 10px;
  }
  .logo-block > img {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .wrapper {
    width: 345px;
  }

  .navbar-container {
    width: 0px;
    gap: 15px;
    display: none;
  }

  .nav-item {
    font-size: 12px;
  }

  .contacts-block {
    display: none;
    margin-top: 10px;
    gap: 0px;
    flex-direction: column-reverse;
  }

  .icons-block {
    gap: 20px;
    /* display: none; */
  }

  .phone {
    font-size: 12px;
  }

  .logo-title {
    font-size: 14px;
  }

  .logo-subtitle {
    font-size: 12px;
  }
  .logo-block {
    width: 160px;
    gap: 10px;
  }
  .logo-block > img {
    width: 40px;
  }
  .open-menu {
    display: block;
    cursor: pointer;
  }
}
