.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1c1c1c;
}
.brand-logo {
  width: 17rem;
  height: auto;
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.nav-item .nav-link {
  text-transform: uppercase;
  color: var(--text-color);
}
.header-button-item {
  font-family: "DM Serif Display";
  font-style: italic;
  text-transform: uppercase;
  color: var(--accent-color-2);
  width: 100%;
  padding: 1.5rem 0.75rem;
  transition: color 0.3s ease;
}
.header-button-item:hover {
  color: black;
}
.header-btn-wrapper {
  border: 1px solid var(--accent-color);
  background-color: transparent;
  min-width: 8.8rem;
  transition: background-color 0.5s ease;
  border-bottom: none;
}
.header-btn-wrapper:hover {
  background-color: #f9eddc;
}

@media (max-width: 767.98px) {
  .header-btn-wrapper:nth-of-type(1) {
    border-left: none;
  }
  .header-btn-wrapper:nth-of-type(2) {
    border-right: none;
    border-left: none;
  }
  .header-btn-wrapper:nth-of-type(3) {
    border-left: none;
  }
  .header-btn-wrapper:nth-of-type(4) {
    border-right: none;
    border-left: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-btn-wrapper:nth-of-type(1) {
    border-right: none;
    border-left: none;
  }
  .header-btn-wrapper:nth-of-type(2) {
    border-right: none;
  }
  .header-btn-wrapper:nth-of-type(3) {
    border-right: none;
  }
  .header-btn-wrapper:nth-of-type(4) {
    border-right: none;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header-btn-wrapper:nth-of-type(1) {
    border-left: none;
  }
  .header-btn-wrapper:nth-of-type(4) {
    border-right: none;
  }
}
@media (min-width: 1200px) {
  .header-btn-wrapper {
    border-top: none;
  }
  .header-btn-wrapper:nth-of-type(1) {
    border-right: none;
  }
  .header-btn-wrapper:nth-of-type(2) {
    border-right: none;
  }
  .header-btn-wrapper:nth-of-type(3) {
    border-right: none;
  }
  .header-btn-wrapper:nth-of-type(4) {
    border-right: none;
  }
}

@media (max-width: 1199.98px) {
  .container-header {
    display: block;
  }
}
