/*
 * Breakpoint variables.
 *
 * Used for bp() mixin and bp() function
 */
/*
 * Generate a media query based on convenient names such as sm, md , lg. The
 * names are set in a $breakpoints-map.
 *
 * Usage:
 *
 * @include bp(sm); // @media only screen and (min-width: 600px)
 *
 * @include bp($max: sm);  // @media only screen and (max-width: 600px)
 *
 * @include bp(sm, md);  // @media only screen and (min-width: 600px) and (max-width: 900px)
 *
 * @include bp(sm, $type: print);  // @media print and (min-width: 600px)
 *
 * @include bp(sm, md, print);  // @media print and (min-width: 600px) and (max-width: 900px)
 */
.td-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (min-width:75em) {
  .td-container {
    width: 75em;
    padding-left: 0;
    padding-right: 0;
  }
}

.td-button {
  display: grid;
  place-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #0053b3;
  color: white;
  transition: all 0.3s ease;
}
.td-button:hover, .td-button:focus-visible {
  color: white;
  background-color: #003b80;
}
.td-button.arrow {
  height: 50px;
  width: 50px;
}
.td-button.arrow:hover, .td-button.arrow:focus-visible {
  color: white;
}
.td-button:not(.arrow) {
  font-weight: bold;
  padding: 8px 16px;
}
.td-button.type {
  color: #00131d;
}
.td-button.register {
  display: flex;
  align-items: center;
}
.td-button.register img {
  transform: rotate(180deg);
  margin-left: 1rem;
}

button.facetwp-load-more {
  display: flex;
  background-color: white;
  border: 2px solid #0053b3;
  color: #0053b3;
  padding: 11px 30px;
  position: relative;
}
button.facetwp-load-more:hover, button.facetwp-load-more:focus-visible {
  background-color: #b3d6ff;
}
button.facetwp-load-more::after {
  content: url(../../img/arrow-blue.svg);
  display: inline-block;
  margin-left: 1rem;
  transform: rotate(-90deg);
}

.td-events-menu {
  padding: 1rem 0;
}
.td-events-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width:64.0625em) {
  .td-events-menu ul {
    overflow: hidden;
  }
}
.td-events-menu li {
  padding: 0 0.5rem 1rem;
  max-width: 14ch;
  text-align: center;
}
@media only screen and (min-width:64.0625em) {
  .td-events-menu li {
    max-width: unset;
    margin: 0 1rem;
  }
  .td-events-menu li.title {
    padding-left: 0;
    margin-left: 0;
  }
}
.td-events-menu li:not(.title) {
  border-bottom: 2px solid transparent;
}
.td-events-menu li:not(.title):hover, .td-events-menu li:not(.title):focus-visible {
  border-bottom-color: #d5007f;
}
.td-events-menu li:not(.title):hover a, .td-events-menu li:not(.title):focus-visible a {
  font-weight: bold;
}
.td-events-menu li.current-menu-item {
  border-bottom-color: #d5007f;
}
.td-events-menu li.current-menu-item a {
  font-weight: bold;
}
.single-ad-event .td-events-menu li.menu-item-type-post_type_archive {
  border-bottom-color: #d5007f;
}
.single-ad-event .td-events-menu li.menu-item-type-post_type_archive a {
  font-weight: bold;
}
.td-events-menu li a {
  display: block;
  max-width: 14ch;
  color: #0053b3;
}
@media only screen and (min-width:64.0625em) {
  .td-events-menu li a {
    max-width: unset;
  }
}
.td-events-menu .title > span {
  display: flex;
  align-items: center;
}
.td-events-menu .title > span .arrow-right {
  display: inline-block;
  margin-left: 7px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid black;
}

@media only screen and (min-width:75em) {
   .td-events-single-header {
    background: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    position: relative;
  }
   .td-events-single-header:after {
    content: "";
    background-color: #d5007f;
    width: 4px;
    height: 50%;
    position: absolute;
    top: 25%;
    left: 0;
    bottom: 25%;
  }
   .td-events-single-header:before {
    content: "";
    background: linear-gradient(90deg, #00131d 40%, rgba(0, 19, 29, 0.5) 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
  }
}
 .view-all-events {
  flex-direction: row;
  align-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #00131d;
}
 .view-all-events a:not(.td-button) {
  color: white;
  align-self: center;
  margin-left: 20px;
}
@media only screen and (min-width:75em) {
   .view-all-events {
    position: relative;
    background-color: transparent;
    z-index: 2;
  }
}
 .view-all-events .td-container {
  flex-direction: row;
}
 .td-post-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}
@media only screen and (min-width:64.0625em) {
   .td-post-image {
    display: none;
  }
}
 .text {
  background-color: #00131d;
  color: white;
  padding: 20px 0;
}
@media only screen and (min-width:75em) {
   .text {
    padding-top: 10px;
    background-color: transparent;
    position: relative;
    z-index: 2;
  }
}
 .text h1 {
  font-weight: bold;
  color: white;
  font-size: 30px;
}
 .text .td-container .inner {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width:75em) {
   .text .td-container .inner {
    padding-right: 60px;
    width: 50%;
  }
}
@media only screen and (min-width:120.0625em) {
   .text .td-container .inner {
    padding-right: 115px;
  }
}
 .text .td-container .inner > *:not(:last-child) {
  margin-bottom: 20px;
}
@supports (gap: 1rem) {
   .text .td-container .inner {
    gap: 20px;
  }
   .text .td-container .inner > *:not(:last-child) {
    margin-bottom: 0;
  }
}
 .event-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
 .event-date img {
  margin-right: 14px;
}
 .event-date .date {
  font-size: 24px;
  font-weight: bold;
}
 .event-date .event-times {
  padding-left: 34px;
  width: 100%;
}
 .td-events-single-content {
  padding-top: 26px;
  padding-bottom: 60px;
}
 .td-events-single-content h2 {
  font-size: 48px;
  font-weight: bold;
  padding-bottom: 7px;
  margin-bottom: 40px;
  position: relative;
}
 .td-events-single-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  height: 2px;
  width: 100px;
  background-color: #d5007f;
}
 .td-events-single-location h3 {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 12px;
  margin-bottom: 40px;
  position: relative;
}
 .td-events-single-location h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  height: 2px;
  width: 100px;
  background-color: #d5007f;
}
 .events-location {
  padding-bottom: 30px;
}
@media only screen and (min-width:64.0625em) {
   .events-location.has-map .td-container {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (min-width:64.0625em) {
   .events-location.has-map .td-container .events-location,
 .events-location.has-map .td-container .map {
    width: calc(50% - 15px);
  }
}
 .events-location h4,
 .events-location h5 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
 .events-location .events-location {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 22px 0 rgba(112, 125, 132, 0.2);
}
 .events-location .campuses hr {
  border: 0;
  height: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
 .events-location .campuses ul {
  list-style: none;
  margin-left: 0;
}
 .events-location .campuses a {
  display: inline-block;
  margin-right: 0.5rem;
  color: #0053b3;
  text-decoration: underline;
}
 .events-location .campuses a:hover,  .events-location .campuses a:focus-visible {
  color: #0053b3;
}
 .events-location .campuses span.title {
  display: inline-block;
  margin-right: 0.5rem;
}
 .events-location .campuses span.distance {
  color: #707d84;
}
 .td-contact {
  background-color: #edf3fa;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 100px;
}
@media only screen and (min-width:75em) {
   .td-contact {
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
  }
}
 .td-contact .td-container {
  background-color: #edf3fa;
  padding: 40px 30px;
}
 .td-contact h2 {
  font-size: 48px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 20px;
}
 .td-contact .top-content,
 .td-contact .bottom-content {
  color: #707d84;
}
 .td-contact .top-content {
  margin-bottom: 40px;
}
 .td-contact p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width:75em) {
   .td-contact .td-contact-details {
    display: flex;
    justify-content: space-between;
  }
}
 .td-contact .td-contact-details > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
 .td-contact .td-contact-details img {
  margin-bottom: 1rem;
}
 .td-contact .td-contact-details p {
  color: #0053b3;
}
 .td-contact .td-contact-details a {
  color: #0053b3;
}
 .td-contact .td-contact-details a:hover,  .td-contact .td-contact-details a:focus-visible {
  text-decoration: underline;
}
 .map {
  margin-bottom: 30px;
  display: block;
}
 .map .acf-map {
  box-shadow: 0 0 22px 0 rgba(112, 125, 132, 0.2);
  height: 360px;
}
@media only screen and (min-width:64.0625em) {
   .map .acf-map {
    height: 400px;
  }
}
 .map .leaflet-marker-icon {
  height: 40px;
  width: 26px;
}

@media only screen and (min-width:75em) {
  .post-type-archive-ad-event .td-events-archive-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    position: relative;
    display: flex;
  }
  .post-type-archive-ad-event .td-events-archive-header:after {
    content: "";
    background-color: #d5007f;
    width: 4px;
    height: 50%;
    position: absolute;
    top: 25%;
    left: 0;
    bottom: 25%;
  }
  .post-type-archive-ad-event .td-events-archive-header:before {
    content: "";
    background: linear-gradient(90deg, #00131d 40%, rgba(0, 19, 29, 0.5) 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
  }
}
.post-type-archive-ad-event .td-archive-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}
@media only screen and (min-width:64.0625em) {
  .post-type-archive-ad-event .td-archive-image {
    display: none;
  }
}
.post-type-archive-ad-event .text {
  background-color: #00131d;
  color: white;
  padding: 20px 0;
}
@media only screen and (min-width:75em) {
  .post-type-archive-ad-event .text {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 10px;
    background-color: transparent;
    position: relative;
    z-index: 2;
  }
}
.post-type-archive-ad-event .text h1 {
  font-size: 60px;
  font-weight: 600;
  color: white;
}
@media only screen and (min-width:64.0625em) {
  .post-type-archive-ad-event .text h1 {
    margin-top: 0;
    line-height: 1.1;
  }
}
.post-type-archive-ad-event .text p {
  font-size: 18px;
}
@media only screen and (min-width:64.0625em) {
  .post-type-archive-ad-event .text p {
    margin: 0;
  }
}
.post-type-archive-ad-event .text .td-container .inner {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width:75em) {
  .post-type-archive-ad-event .text .td-container .inner {
    padding-right: 60px;
    width: 50%;
  }
}
@media only screen and (min-width:120.0625em) {
  .post-type-archive-ad-event .text .td-container .inner {
    padding-right: 115px;
  }
}
.post-type-archive-ad-event .text .td-container .inner > *:not(:last-child) {
  margin-bottom: 20px;
}
@supports (gap: 1rem) {
  .post-type-archive-ad-event .text .td-container .inner {
    gap: 20px;
  }
  .post-type-archive-ad-event .text .td-container .inner > *:not(:last-child) {
    margin-bottom: 0;
  }
}
.post-type-archive-ad-event .td-events-menu {
  margin-bottom: 25px;
}
.post-type-archive-ad-event .td-event-posts {
  margin-bottom: 100px;
}
.post-type-archive-ad-event .td-event-posts h2 {
  font-size: 48px;
  font-weight: bold;
  padding-bottom: 7px;
  margin-bottom: 40px;
  position: relative;
}
.post-type-archive-ad-event .td-event-posts h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  height: 2px;
  width: 100px;
  background-color: #d5007f;
}
.post-type-archive-ad-event .td-event-posts .filters {
  margin-bottom: 40px;
}
.post-type-archive-ad-event .td-event-posts .td-featured-post {
  margin-bottom: 100px;
}
@media only screen and (min-width:75em) {
  .post-type-archive-ad-event .td-event-posts .td-featured-post .td-event-card {
    display: flex;
    flex-direction: row;
  }
}
.post-type-archive-ad-event .td-event-posts .td-featured-post .wp-post-image {
  height: 252px;
}
@media only screen and (min-width:75em) {
  .post-type-archive-ad-event .td-event-posts .td-featured-post .wp-post-image {
    order: 2;
    width: 50%;
    max-height: 500px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (min-width:75em) {
  .post-type-archive-ad-event .td-event-posts .td-featured-post .card-inner {
    order: 1;
    width: 50%;
  }
}
.post-type-archive-ad-event .td-event-posts .td-event-filters label {
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters label[for=filter-facets] {
  border: 2px solid #00131d;
  background-image: url(../../img/down-arrow.svg);
  background-size: 16px;
  background-position: 96% 50%;
  background-repeat: no-repeat;
  padding: 10px;
  margin-bottom: 2.5rem;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters label[for=filter-facets].active {
  background-image: url(../../img/up-arrow.svg);
}
@media only screen and (min-width:40.0625em) {
  .post-type-archive-ad-event .td-event-posts .td-event-filters label[for=filter-facets] {
    padding: 0px;
    margin-right: 8px;
    display: block;
    border: none;
    background: none;
    margin-bottom: 0px;
  }
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .search-facet .facetwp-input-wrap {
  width: 100%;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .search-facet input[type=text] {
  width: 100%;
  border: 2px solid #00131d;
  padding: 13px 16px;
  color: #00131d;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .search-facet ::-moz-placeholder {
  color: #00131d;
  opacity: 1;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .search-facet :-ms-input-placeholder {
  color: #00131d;
  opacity: 1;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .search-facet ::placeholder {
  color: #00131d;
  opacity: 1;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .search-facet i.facetwp-icon {
  opacity: 1;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .search-facet i.facetwp-icon::before {
  background-image: url(../../img/search.svg);
  background-size: 16px;
  margin-right: 8px;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .filter-facets {
  display: none;
}
@media only screen and (min-width:40.0625em) {
  .post-type-archive-ad-event .td-event-posts .td-event-filters .filter-facets {
    display: flex;
    justify-content: space-evenly;
  }
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .filter-facets > div:not(:last-child) {
  margin-right: 24px;
}
@supports (gap: 24px) {
  .post-type-archive-ad-event .td-event-posts .td-event-filters .filter-facets {
    gap: 24px;
  }
  .post-type-archive-ad-event .td-event-posts .td-event-filters .filter-facets > div:not(:last-child) {
    margin-right: 0;
  }
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .filter-facets > div {
  flex-basis: 25%;
}
.post-type-archive-ad-event .td-event-posts .td-event-filters .filter-facets select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #00131d;
  padding: 13px 16px;
  background-image: url(../../img/down-arrow.svg);
  background-size: 16px;
  background-position: 96% 50%;
  background-repeat: no-repeat;
  color: #00131d;
  width: 100%;
}
.post-type-archive-ad-event .td-event-posts .td-event-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 12px;
  margin-bottom: 40px;
}
@media only screen and (min-width:40.0625em) {
  .post-type-archive-ad-event .td-event-posts .td-event-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width:64.0625em) {
  .post-type-archive-ad-event .td-event-posts .td-event-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
  }
}
.post-type-archive-ad-event .td-event-posts .facetwp-facet-load_more {
  display: flex;
  justify-content: center;
}
.post-type-archive-ad-event .td-event-card {
  box-shadow: 0 0 22px 0 rgba(112, 125, 132, 0.2);
}
.post-type-archive-ad-event .td-event-card .wp-post-image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 123px;
  max-width: 100%;
}
@media only screen and (min-width:64.0625em) {
  .post-type-archive-ad-event .td-event-card .wp-post-image {
    height: 216px;
  }
}
.post-type-archive-ad-event .td-event-card .fallback-img {
  height: 123px;
  width: 100%;
  background: #e6e6e6;
}
@media only screen and (min-width:64.0625em) {
  .post-type-archive-ad-event .td-event-card .fallback-img {
    height: 216px;
  }
}
.post-type-archive-ad-event .td-event-card h3 {
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 20px;
}
.post-type-archive-ad-event .td-event-card .card-inner {
  padding: 20px 10px;
}
@media only screen and (min-width:64.0625em) {
  .post-type-archive-ad-event .td-event-card .card-inner {
    padding: 20px 24px 30px;
  }
}
.post-type-archive-ad-event .td-event-card .td-button.type {
  margin-bottom: 20px;
}
.post-type-archive-ad-event .td-event-card .event-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.post-type-archive-ad-event .td-event-card .event-date img {
  margin-right: 14px;
}
.post-type-archive-ad-event .td-event-card .event-date .date {
  font-size: 21px;
  color: #00131d;
  font-weight: bold;
}
.post-type-archive-ad-event .td-event-card .event-date .event-times {
  padding-left: 34px;
  width: 100%;
}
.post-type-archive-ad-event .td-event-card .event-excerpt {
  margin-bottom: 20px;
}
.post-type-archive-ad-event .search-no-results {
  grid-column: 1/span 3;
}
.post-type-archive-ad-event .search-no-results .message {
  background-color: transparent;
  padding: 0;
  border: none;
  min-height: unset;
  text-align: center;
}
.post-type-archive-ad-event .search-no-results .message h2 {
  border-bottom: 0;
  padding: 0;
  font-weight: bold;
  background-color: transparent;
  font-size: 30px;
}
.post-type-archive-ad-event .search-no-results .message h2::after {
  display: none;
}

@media only screen and (min-width:75em) {
  .page-template-td-event-template .td-events-page-header {
    display: flex;
    align-items: center;
    background: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    position: relative;
  }
  .page-template-td-event-template .td-events-page-header:after {
    content: "";
    background-color: #d5007f;
    width: 4px;
    height: 50%;
    position: absolute;
    top: 25%;
    left: 0;
    bottom: 25%;
  }
  .page-template-td-event-template .td-events-page-header:before {
    content: "";
    background: linear-gradient(90deg, #00131d 40%, rgba(0, 19, 29, 0.5) 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
  }
}
.page-template-td-event-template .td-post-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 270px;
}
@media only screen and (min-width:64.0625em) {
  .page-template-td-event-template .td-post-image {
    display: none;
  }
}
.page-template-td-event-template .text {
  background-color: #00131d;
  color: white;
  padding: 20px 0;
}
@media only screen and (min-width:75em) {
  .page-template-td-event-template .text {
    width: 100%;
    padding-top: 10px;
    background-color: transparent;
    position: relative;
    z-index: 2;
  }
}
.page-template-td-event-template .text h1 {
  font-weight: bold;
  color: white;
  font-size: 60px;
  line-height: 1.2;
}
@media only screen and (min-width:75em) {
  .page-template-td-event-template .text h1 {
    max-width: 12ch;
  }
}
.page-template-td-event-template .text .td-container .inner {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width:75em) {
  .page-template-td-event-template .text .td-container .inner {
    padding-right: 60px;
    width: 50%;
  }
}
@media only screen and (min-width:120.0625em) {
  .page-template-td-event-template .text .td-container .inner {
    padding-right: 115px;
  }
}
.page-template-td-event-template .text .td-container .inner > *:not(:last-child) {
  margin-bottom: 20px;
}
@supports (gap: 1rem) {
  .page-template-td-event-template .text .td-container .inner {
    gap: 20px;
  }
  .page-template-td-event-template .text .td-container .inner > *:not(:last-child) {
    margin-bottom: 0;
  }
}
.page-template-td-event-template .td-content .td-container {
  padding-top: 26px;
  padding-bottom: 60px;
}
.page-template-td-event-template .td-content .td-container > * {
  margin-bottom: 40px;
}
.page-template-td-event-template .td-content .td-container > *:last-child {
  margin-bottom: 0;
}
.page-template-td-event-template .td-content h2 {
  font-size: 48px;
  font-weight: bold;
  padding-bottom: 15px;
  margin-top: 0;
  position: relative;
}
.page-template-td-event-template .td-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  height: 2px;
  width: 100px;
  background-color: #d5007f;
}
.page-template-td-event-template .td-content h3 {
  font-weight: bold;
}
.page-template-td-event-template .td-content h3,
.page-template-td-event-template .td-content h4 {
  margin-top: 0;
}
.page-template-td-event-template .td-content p {
  color: #707d84;
  max-width: 100ch;
}
.page-template-td-event-template .td-content .wp-block-video {
  box-shadow: 0 0 22px 0 rgba(112, 125, 132, 0.2);
}
.page-template-td-event-template .td-content .wp-block-video figcaption {
  padding: 20px;
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}

.post-type-archive-ad-event main,
 main,
.page-template-td-event-template main {
  clear: both;
}
.post-type-archive-ad-event main::after,
 main::after,
.page-template-td-event-template main::after {
  display: block;
  content: "";
  clear: both;
}
.wp-block-navigation-item__content {
  font-size: 16px;
}

.past-event .td-events-menu li.menu-item-type-post_type_archive.current-menu-item {
    border: 0 !important;
}
.past-event .td-events-menu li.menu-item-type-post_type_archive.current-menu-item a {
    font-weight: 400 !important;
}