.header_outer {
  background-color: var(--primary-background-color);
}

.header_inner {
  width: 65%;
  margin: auto;
  padding: 0.75rem 0;
  display: flex;
}

.inner_header_left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner_header_left>span:first-of-type {
  background: var(--secondary-color);
  color: var(--primary-background-color);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.05rem 1rem;
  margin-right: 1rem;
  border-radius: 75px;
}

.inner_header_left marquee {
  color: var(--secondary-color);
  font-size: 0.8rem;
  font-weight: 600;
}

.inner_header_left marquee span {
  margin-right: 4rem;
}

.inner_header_left marquee span i {
  color: #f3bb1c;
}

.inner_header_left marquee a {
  color: var(--secondary-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.inner_header_right {
  flex: 1;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.inner_header_right>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.inner_header_right div i {
  background: #ffffff33;
  color: #fff;
  padding: 0.7rem;
  border-radius: 3rem;
}

.inner_header_right div p {
  font-size: .875rem;
  color: #ffffffcc;
}

.inner_header_right div a {
  text-decoration: none;
  font-size: 0.938rem;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1680px) {
  .header_inner {
    width: 100%;
    padding: 0.75rem 1rem;
  }


  .inner_header_right {
    justify-content: space-between;
  }
}

@media (max-width: 1130px) {
  .header_inner {
    gap: 1rem;
  }

  .inner_header_right {
    justify-content: space-between;
    width: 30%;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
  }

  .inner_header_right div p {
    display: none;
  }

  .inner_header_right div i {
    font-size: 0.8rem;
    padding: 0;
    background: transparent;
  }
}

@media (max-width: 615px) {
  .header_inner {}

  .inner_header_right {
    gap: none;
  }

  .inner_header_right div a {
    font-size: 0.8rem;
  }

  .inner_header_right div i {
    display: none;
  }

}

@media (max-width: 530px) {
  .header_inner {
    flex-direction: column;
    gap: 0;
  }
  .inner_header_left marquee {
    font-size: 0.6rem;
  }
  .inner_header_right {
    width: 100%;
  }

  .inner_header_left>span:first-of-type {
    font-size: 0.55rem;
    padding: 0.05rem 0.4rem;
    margin-right: 0.4rem;
  }
}