.header {
  position: fixed;
  top: 0px;
  padding: 10px 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  transition: all 0.5s ease;
}
.header.header-scrolled {
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;

}

.header__middle {
  display: flex;
  align-items: center;
}

.header__left { 
  overflow: hidden;
  padding: 0 2rem;
}
.header__left a {
  display: inline-block;
  vertical-align: middle;
}

.header__logo {
  height: 100%;
  width: 20rem;
  object-fit: contain;
}

.header__right {
  margin: auto 0;
  margin-right: 1rem;
  text-align: right;
  width: 20%;
}

.header__nav__btn {
  display: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  padding: 8px 13px;
  color: var(--secondary-color);
  text-transform: capitalize;
  transition: background 0.3s linear;
}

.header__nav__btn:hover {
  background: #0000001c;
}

.header__nav__btn.menu__btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  /* padding: 10px 16px; */
  width: 45px;
  height: 45px;
  border: none !important;
  font-size: 18px;
  border-radius: 100%;
  text-align: center;
  margin: 0px 20px 0px 0px;
  overflow: hidden;
}

.header__middle .header__nav__btn {
  margin-right: 5px;
}

.hed-middle {
  display: none;
}

nav {
  position: relative;
  font-size: 0;
}
.desk-top a {
  position: relative;
  z-index: 1;
  font-weight: 600;
  cursor: pointer;
  background: rgb(208 7 203 / 72%);
  border-radius: 50px;
  color: #fff;
  margin: 5px;
  font-size: 0.9vw;
  padding: 0.8vw 1.2vw;
  display: block;
  min-width: 12.24vw;
  text-align: center;
}
.desk-top a span {
  /* transform: skew(200deg); */
  display: block;
}
.desk-top a:hover {
  background: rgb(208 7 203);
  color: #fff;
}


