#elite-hat{
  background-color: #ff4c22;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: 0 18px;
}

#elite-hat.show{
  display: block;
}

.hat-close{
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #fff;
  color: #014261;
  font-weight: 100;
  font-size: 22px;
  border-radius: 8px;
  line-height: 1;
  border: none;
  max-width: 25px;
  max-height: 25px;
  min-width: 25px;
  min-height: 25px;
  width: 25px;
  height: 25px;
  display: grid;
  z-index: 3;
  padding: 0;
  place-content: center;
  box-shadow: 0px 11px 22px #01426138;
}

.hat-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  margin: 0 auto;
  padding: 8px 30px;
  position: relative;
  column-gap: 20px;
}

.hat-text p {
  color: #fff;
  font-family: 'Raleway';
  margin-bottom: 0;
}

/* .hat-cta {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
} */

.hat-cta a{
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: 0.4s;
  border: 1px solid #fff;
  color: #915d29;
  font-weight: 600;
  background: #fff;
  border-radius: 8px;
  display: inline-block;
  font-family: Raleway;
  text-transform: capitalize;
  font-weight: var(--unnamed-font-weight-medium);
  padding: 10px 24px;
}

.hat-cta a:hover,
.hat-cta a:focus{
  background: transparent;
  color: #fff;
}

.hat-cta a span {
  display: inline;
}

.topo-overlay{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: 50%;
/*   filter: brightness(0) invert(1);
  opacity: 0.25; */
}

nav.nav.hat-show{
  margin-top: 80px !important;
}
/* body.hat-show{
  padding-top: 164px !important;
}  */

@media (max-width: 768px){
  .hat-inner {
        grid-template-columns: 1fr auto;
        column-gap: 10px;
        row-gap: 0;
        padding: 8px 30px 8px 0;
  }
  .hat-text p {
    font-size: 14px;
    line-height: 1.05;
    width: 100%:
  }
  .hat-cta a {
    font-size: 12px;
    padding: 10px 10px;
    white-space: nowrap;
  }
}