@charset "UTF-8";
.color-white {
  color: #fff !important;
}

.color-cream {
  color: #F8F3EC !important;
}

.color-secondary {
  color: #ff3300 !important;
}

.bg-white {
  background-color: #fff !important;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal__container {
  min-width: 300px;
}

.modal__content ul {
  padding-left: 0;
  list-style: bullet;
  font-family: "Open Sans";
}
.modal__content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
}
.modal__content ul li::after {
  content: "•"; /* The bullet character */
  display: inline-block;
  position: absolute;
  left: 0; /* Align to the far left of the LI */
  top: 50%; /* Align with the first line of text */
  transform: translateY(-50%);
  color: #000; /* Match your text color or pick a brand color */
  font-weight: bold;
  font-size: 1.2rem; /* Make the bullet slightly larger if needed */
}

.modal__content .title-default {
  font-family: "ITCAvantGardeStd";
}

.event-hero {
  position: relative;
  padding: 20px 0;
  color: #fff;
  overflow-x: hidden;
  padding-bottom: 100px;
  background-color: #070751;
  margin-bottom: 100px;
}
@media only screen and (min-width: 1024px) {
  .event-hero {
    min-height: 60vh;
  }
}
@media only screen and (min-width: 1170px) {
  .event-hero {
    min-height: 85vh;
  }
}
@media only screen and (min-width: 1600px) {
  .event-hero {
    min-height: 70vh;
  }
}
@media only screen and (max-width: 1023px) {
  .event-hero {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.event-hero.no-image::after {
  display: none !important;
}
@media only screen and (min-width: 1600px) {
  .event-hero.no-image {
    min-height: 50vh;
  }
}
.event-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: #F8F3EC;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .event-hero::after {
    display: none;
  }
}
.event-hero .row {
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .event-hero .row {
    min-height: min(42vw, 420px);
  }
}
.event-hero .col-6:first-child {
  position: relative;
  z-index: 1;
}
.event-hero__title {
  font-size: 24px;
}
@media only screen and (min-width: 576px) {
  .event-hero__title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .event-hero__title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .event-hero__title {
    font-size: 42px;
  }
}
.event-hero__title {
  line-height: 1.42;
  margin-bottom: 40px;
  font-family: "ITCAvantGardeStd";
  margin-right: 70px;
}
@media only screen and (max-width: 1023px) {
  .event-hero__title {
    text-align: center;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .event-hero__media {
    min-height: 0;
    pointer-events: none;
  }
}
.event-hero__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .event-hero__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    min-height: 280px;
    max-width: none;
    pointer-events: auto;
    border-radius: 20px 0 0 20px;
    margin-top: 0;
    margin-bottom: 0;
    -o-object-position: top;
       object-position: top;
  }
}
.event-hero__details--wrapper {
  margin-bottom: 40px;
  padding-left: 30px;
  border-left: 2px solid #ff3300;
}
@media only screen and (max-width: 1023px) {
  .event-hero__details--wrapper {
    margin-top: 40px;
  }
}
.event-hero__details--wrapper * {
  font-size: 14px;
  line-height: 1.39;
}
.event-hero__details {
  margin-bottom: 20px;
}
.event-hero .post-details p {
  font-size: 14px !important;
  line-height: 1.39 !important;
}
.event-hero img {
  z-index: 10;
}
.event-hero .events__play-button {
  cursor: pointer;
  font-weight: bold;
  margin-top: 40px;
}
.event-hero .events__play-button:hover svg path {
  fill: #ff3300;
}
.event-hero__partners {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 10;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 20px;
}
.event-hero__partners-title {
  font-size: 15px;
}
@media only screen and (min-width: 576px) {
  .event-hero__partners-title {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .event-hero__partners-title {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .event-hero__partners-title {
    font-size: 18px;
  }
}
.event-hero__partners-title {
  text-align: center;
  color: #070751;
  margin-bottom: 0px;
  font-family: "ITCAvantGardeStd", sans-serif;
  font-weight: bold;
}
.event-hero .post-details--time {
  margin-bottom: 20px;
}
.event-hero .post-details {
  border-left: 3px solid #ff3300;
  padding-left: 30px;
}

body {
  background: #F8F3EC;
}
body.single-press main.site-main h1.wp-block-heading,
body.single-press main.site-main h2.wp-block-heading,
body.single-press main.site-main h3.wp-block-heading,
body.single-press main.site-main h4.wp-block-heading,
body.single-press main.site-main h5.wp-block-heading,
body.single-press main.site-main h6.wp-block-heading, body.single-post main.site-main h1.wp-block-heading,
body.single-post main.site-main h2.wp-block-heading,
body.single-post main.site-main h3.wp-block-heading,
body.single-post main.site-main h4.wp-block-heading,
body.single-post main.site-main h5.wp-block-heading,
body.single-post main.site-main h6.wp-block-heading {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  font-family: "ITCAvantGardeStd", sans-serif;
  line-height: 1.23;
}
body.single-press main.site-main ul, body.single-press main.site-main a, body.single-press main.site-main p, body.single-post main.site-main ul, body.single-post main.site-main a, body.single-post main.site-main p {
  font-size: 15px;
}
@media only screen and (min-width: 576px) {
  body.single-press main.site-main ul, body.single-press main.site-main a, body.single-press main.site-main p, body.single-post main.site-main ul, body.single-post main.site-main a, body.single-post main.site-main p {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  body.single-press main.site-main ul, body.single-press main.site-main a, body.single-press main.site-main p, body.single-post main.site-main ul, body.single-post main.site-main a, body.single-post main.site-main p {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) {
  body.single-press main.site-main ul, body.single-press main.site-main a, body.single-press main.site-main p, body.single-post main.site-main ul, body.single-post main.site-main a, body.single-post main.site-main p {
    font-size: 20px;
  }
}
body.single-press main.site-main p, body.single-post main.site-main p {
  margin-bottom: 25px !important;
  line-height: 1.75;
}
body.single-press main.site-main a:not(.btn), body.single-post main.site-main a:not(.btn) {
  display: inline;
  color: #ff3300;
}
body.single-press main.site-main ul, body.single-post main.site-main ul {
  padding: 40px 80px;
  background-color: #fff;
  border-radius: 21px;
  margin-bottom: 30px !important;
  list-style: none;
}
@media only screen and (max-width: 1023px) {
  body.single-press main.site-main ul, body.single-post main.site-main ul {
    padding: 20px 30px;
  }
}
body.single-press main.site-main ul li, body.single-post main.site-main ul li {
  margin-bottom: 20px !important;
}
body.single-press main.site-main ul li::before, body.single-post main.site-main ul li::before {
  content: "";
  background-image: url("data:image/svg+xml,%3csvg%20width='27'%20height='27'%20viewBox='0%200%2027%2027'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M13.5%2018L18%2013.5M18%2013.5L13.5%209M18%2013.5H9M24.75%2013.5C24.75%2019.7132%2019.7132%2024.75%2013.5%2024.75C7.2868%2024.75%202.25%2019.7132%202.25%2013.5C2.25%207.2868%207.2868%202.25%2013.5%202.25C19.7132%202.25%2024.75%207.2868%2024.75%2013.5Z'%20stroke='%23FF3300'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e");
  background-color: #fff !important;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  body.single-press main.site-main ul li::before, body.single-post main.site-main ul li::before {
    display: none;
  }
}
body.single-press main.site-main .content-container, body.single-post main.site-main .content-container {
  padding-bottom: 100px;
}