body {
  display: block;
  margin: 0;
  overflow-x: hidden;
}

p {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.header-bar-content a {
  color: black;
}

.header-bar-content a:hover {
  color: black;
  font-weight: bolder;
}

.header-container {
  background-color: #e5e5e5;
}

.header-info-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  height: 35px;
}

.header-info-item {
  font-size: 16px;
  font-family: "Carnas-light";
  padding: 0 20px;
}

.header-info-list:first-child {
  padding-left: 30px;
}

.header-bar {
  /* background-image: url('../assets/ICONS/headerbar.png'); */
  background-repeat: no-repeat;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 30px 0 0;
  position: relative;
  z-index: 2;
}

.header-bar-content {
  padding-top: 20px;
  width: 100%;
  font-size: 20px;
  -webkit-transform: skew(30deg);
  -moz-transform: skew(30deg);
  -o-transform: skew(30deg);
}

.header-bar-content-block {
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -o-transform: skew(-30deg);
}

.header-bar-content:before {
  z-index: -1;
  content: "";
  position: absolute;
  /* left: -15%; */
  top: 0;
  height: 125%;
  width: 261px;
  margin-left: -25px;
  background-color: #f8bc3a;
  -webkit-transform: skew(0deg);
  -moz-transform: skew(0deg);
  -o-transform: skew(0deg);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.header-bar-content a {
  padding: 0 10px;
}

/* ------------------------------------------------------------------------ */
/* .header-container {
  background-color: #e5e5e5;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 20px 2px;
}
.header-content {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 20px;
  min-height: 20px;
  justify-content: flex-start;
}

.header-box{
  width: auto;
  height: 40px;
  background: #ebac00;
  padding-right: 15px;
  padding-left: 40px;
  display: grid;
  justify-content: center;
  align-items: center;
  grid-area: 1/2/span 2/span 2;
}
.header-box p{
  margin: 0;
} */

@media(max-width:991px) {
  .header-container {
    display: none;
  }
}