.top-bar {
  margin: 0;
  top: -6px;
  width: 100%;
  overflow: hidden;
  position: relative;
  transition: all 500ms ease;
  background: #EFF5FC;
}
.header-menu .top-bar {
  top: 0;
}
.top-bar .close_bar {
  top: 50%;
  z-index: 98;
  width: 20px;
  right: 30px;
  height: 20px;
  display: block;
  cursor: pointer;
  position: absolute;
  border-radius: 50%;
  transform: rotate(45deg) translateY(-74%);
}
.top-bar .close_bar::after,
.top-bar .close_bar::before {
  left: 50%;
  width: 2px;
  content: "";
  height: 100%;
  border-radius: 3px;
  position: absolute;
  background: #5a5a5a;
  transform: translateX(-50%);
}
.top-bar .close_bar::after {
  left: 0;
  top: 50%;
  height: 2px;
  width: 100%;
  transform: translateY(-50%);
}
.top-bar .container {
  display: block;
}
.top-bar>.hidden_btn {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
}
.product_hunt_topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  .left-img img {
    max-width: 160px;
    height: 60px;
  }
  .right-img img {
    max-width: 190px;
    height: 60px;
  }
.topbar-text p {
  font-family: "SF Pro Display";
  font-size: 25px;
  text-align: center;
  margin: 0;
  padding: 0;
  font-weight: 400;
  color: #001F48;
}
.topbar-text p strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .top-bar .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .product_hunt_topbar {
    justify-content: space-between;
    gap: 10px;
    align-items: center;
  }
  .left-img img {
    max-width: 118px;
    height: 45px;
  }
  .right-img img {
    max-width: 140px;
    height: 45px;
    margin-right: 35px;
  }
  .topbar-text p {
    font-size: 18px;
  }
  .topbar-text {
    flex: 1;
    min-width: 0;
    padding: 0 10px;
  }
}

@media (max-width: 567px) {
  .top-bar .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .product_hunt_topbar {
    justify-content: space-between;
    gap: 5px;
    align-items: center;
  }
  .left-img img {
    display: none;
  }
  .right-img img {
    max-width: 160px;
    height: 45px;
    margin-right: 25px;
  }
  .topbar-text p {
    font-size: 15px;
    line-height: 1.3;
    text-align: left;
  }
  .topbar-text {
    flex: 1;
    min-width: 0;
    padding: 0;
  }
  .top-bar .close_bar {
    right: 20px;
    width: 16px;
    height: 16px;
  }
}