.annoucement_banner {
  background-color: var(--secondary-color);
  max-width: 100%;
  margin:0;
  padding: 8px 24px;
}

.annoucement_banner .content {
  display:flex;
  width: 100%;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}
.annoucement_banner .cta-buttons {
  width: fit-content;
}
.annoucement_banner .btn-secondary {
  background: var(--background-light)
}
.annoucement_banner p {
  font-size: 1.25rem;
}
@media screen and (max-width:768px) {
  .annoucement_banner .content {
    flex-direction: column;
    gap: 12px;
  }
  .annoucement_banner p {
  font-size: 1rem;
}
}