.header {
  background-color: var(--optional-color);
}
.headerinside {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
.headerinside a {
  color: var(--white-color);
}
.headerinside a:hover {
  color: var(--main-color);
}

.headerinside i {
  padding-right: 8px;
}
.navbar {
  background-color: var(--new-color);
  padding: 20px 0;
}

.sticky {
  position: sticky;
  top: -1px;
  z-index: 99;
  background-color: var(--new-color);
  padding: 20px;
  transition: background-color 0.5s ease;
  background-color: var(--new-color);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.logo img {
  width: 170px;
}

.navbaritem ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.navbaritem ul li {
  padding-left: 20px;
}

.navbaritem ul li a {
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
  line-height: 1;
}

.navbaritem ul li a:hover {
  color: var(--main-color);
}
