/*-------------------------
event_hero
--------------------------*/
.wp-block.event_hero {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #edf4f5;
  min-height: 667px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.wp-block.event_hero .event_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.7) 0%, rgba(87, 199, 133, 0) 80%);
  z-index: 1;
}
.wp-block.event_hero .brown-button {
  padding-left: 24px;
  padding-right: 24px;
}
.wp-block.event_hero .container {
  position: relative;
  z-index: 2;
}
.wp-block.event_hero .leftside {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wp-block.event_hero .inner {
  max-width: 752px;
}
.wp-block.event_hero .button_wrapper {
  display: flex;
}
.wp-block.event_hero .dates {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wp-block.event_hero .location {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  gap: 10px;
  display: flex;
  align-items: center;
}
.wp-block.event_hero .ticket_description {
  color: #fff;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  gap: 10px;
}
.wp-block.event_hero h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 130%;
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .wp-block.event_hero h1 {
    font-size: 44px;
    line-height: 130%;
  }
}
.wp-block.event_hero p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 0;
}

.anchor_menu {
  margin-bottom: 40px;
  background: #edf4f5;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .anchor_menu {
    margin-bottom: 64px;
  }
}
.anchor_menu.gold {
  background: #edf4f5;
}
.anchor_menu.purple {
  background: #f5edf2;
}
.anchor_menu.purple .container ul li a.active {
  background: #e1cad7;
}
.anchor_menu .container {
  display: none;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .anchor_menu .container {
    display: flex;
  }
}
.anchor_menu .container ul {
  width: 100%;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (min-width: 768px) {
  .anchor_menu .container ul {
    display: flex;
    justify-content: space-between;
  }
}
.anchor_menu .container ul li {
  width: 100%;
  list-style: none;
}
.anchor_menu .container ul li a {
  display: block;
  padding: 8px 16px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  border-bottom: solid 2px transparent;
}
@media only screen and (min-width: 768px) {
  .anchor_menu .container ul li a {
    padding: 16px 36px;
  }
}
.anchor_menu .container ul li a.active {
  border-bottom: solid 2px #4e8d9a;
}