@import url('https://fonts.googleapis.com/css2?family=Barlow&display=swap');

.fixed-header-message {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #010111;
  display: block;
  width: 100%;
  padding: 5px 20px;
  z-index: 9999;
  font-family: 'Barlow', sans-serif;
  transition: all 1s ease 0s;
  transform: translateY(-100%);
}
.fixed-header-message.fixed-header-message--down {
  transform: translateY(0);
}
.fixed-header-message--link {
  text-decoration: none;
  display:block;
  flex: 1 1 70%;
}
.fixed-header-message--link .hs_cos_wrapper {
    height: 100%;
    width: 100%;
    text-decoration: none;
    font-family: sans-serif;
    line-height: 1.5;
    color:#fff;
    font-size:1rem;
}
.fixed-header-message--inner {
    display: flex;
    justify-content: start;
    align-items: center;
    max-width: 950px;
    margin: auto;
}
.fixed-header-message--logo {
  flex:1 1 30%;
  text-align:left;
}
.underline {
text-decoration: underline;
}

@media (max-width:768px) {
  .fixed-header-message {
    padding:10px;
  }
  .fixed-header-message--link .hs_cos_wrapper {
      line-height: 1.5;
      font-size:0.8rem;
  }
  .fixed-header-message--logo {
    text-align:center;
  }
}