.site-header {
  height: 65px;
  background-color: #fff;
  position: sticky;
  top: -1px;
  padding: 10px 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  z-index: 50;
}

.site-header>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 224px;
  height: 46px;
  margin-top: -16px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-center {}

.header-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 60px;
  font-weight: 500;
}

.header-nav-link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header-right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-end;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
}

.contact-info-title {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}

.contact-info-phone {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  position: relative;
}


.header-language {
  height: 22px;
  width: 30px;
  background-color: var(--skeleton-color);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--trans-md);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--primary-color);
}

.header-burger {
  display: flex;
  width: 24px;
  height: 24px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: none;
  cursor: pointer;
  transition: var(--trans-md);
  padding: 5px;
  border-radius: 3px;
}

.header-burger:hover {
  background-color: var(--primary-color);
}

.header-burger-line {
  height: 2px;
  width: calc(100% - 6px);
  background-color: var(--text-color);
  border-radius: 500px;
  transition: var(--trans-md);
}

.header-burger:hover .header-burger-line {
  background-color: #fff;
}

.header-language:hover {
  box-shadow: 0px 0px 0px 2px var(--primary-color);
}

@media screen and (min-width: 1280px) and (max-width: 1600px) {
  .header-nav {
    gap: 32px;
  }
  .logo{
    width: 175px;;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .header-nav {
    gap: 16px;
  }

  .logo {
    width: 148px;
  }

  .header-nav-link {
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .header-right {
    gap: 16px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 640px) {
  .header-nav {
    gap: 15px;
  }

  .logo {
    width: 148px;
  }
  .header-right {
    gap: 20px;
  }
  .contact-info-title {
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 2px;
    text-align: right;
  }
  .contact-info {
    gap: 0px;
  }
  .contact-info-phone {
    font-weight: 700;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .header-nav-link {
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
}

@media screen and (max-width: 1023px) and (min-width: 640px) {
  .header-center,
  .header-right {
    display: none;
  }
  .header-burger {
    display: flex;
  }
  .site-header {
    height: 25px;
  }
  .logo {
    width: 121px;
    margin-top: -6px;
  }
}

@media screen and (max-width: 639px) {
  .header-center,
  .header-right {
    display: none;
  }

  .header-burger {
    display: flex;
  }

  .site-header {
    height: 25px;
  }

  .logo {
    width: 121px;
    margin-top: -6px;
  }
}