.header-container {
  background: var(--color-dark-violet);
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3);
}

.header-ribbon-shape {
  bottom: -10px;
  height: calc(100% + 10px);
  background: var(--color-orange);
}

.header-left-ribbon {
  left: 0;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}

.header-right-ribbon {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}

.header-company-image {
  width: 55px;
  height: 55px;
}

.header-link-item {
  font-family: pelak;
}

.header-link-item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  height: 3px;
  width: 15%;
  background: var(--color-white);
  transition: all ease-in-out 0.5s;
}

.header-link-item:hover::before {
  width: 80%;
}

.header-res-menu-btn-wrap {
  top: 5px;
  left: -50px;
  width: 50px;
  padding: 20px 0;
}

.header-res-menu-btn {
  width: 30px;
  height: 3px;
  background: var(--color-dark-violet);
  border-radius: 3px;
}

.header-res-menu-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: -7px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--color-dark-violet);
  transition: all 0.3s ease;
}

.header-res-menu-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--color-dark-violet);
  transition: all 0.3s ease;
}

.header-res-menu-btn-close {
  background: transparent;
  left: 20px;
}

.header-res-menu-btn-close::before {
  transform: rotateZ(45deg) translateY(10px);
}

.header-res-menu-btn-close::after {
  transform: rotateZ(-45deg) translateY(-10px);
}

.header-res-wrap {
  top: 0;
  left: -100%;
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.2);
}

.header-res-logo img {
  width: 40px;
  height: 40px;
}

@media only screen and (max-width: 768px) {
  .header-container {
    height: 100vh;
    padding-top: 150px;
    box-shadow: none;
    transform: translateX(100%);
    transition: all ease-in-out 0.3s;
  }
  .header-container-open {
    transform: translateX(50px);
  }
  .header-link-item::before {
    display: none;
  }
  .header-links-wrap ul {
    position: relative;
  }
  .header-links-wrap li {
    width: 100%;
    text-align: start;
  }
  .header-company-wrap {
    position: absolute;
    top: -80px;
    right: -4%;
  }
}
