  .image-banner-block {
    position: relative;
    width: 100vw;
    aspect-ratio: 3 / 2;
    min-height: 480px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
    margin-bottom: 100px;
  }

  .image-banner-block .banner-image {
    position: absolute;
    inset: 0;
  }

  .image-banner-block .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .image-banner-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
  }

  .image-banner-block .banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 0 30px;
  }

  .image-banner-block .top-text,
  .image-banner-block .heading {
    display: block;
    font-family: var(--font-intl, "INTLAwards", serif);
    color: #D0D0D0;
    font-size: clamp(40px, 7.5vw, 106px);
    line-height: 1.05;
  }
  
  .image-banner-block .subheading{
    font-family: nuckle-medium;
    color: #D0D0D0;
    margin-top: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .image-banner-block .buttons {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .image-banner-block .btn {
    display: inline-block;
    font-size: 14px;
    min-width: 136px;
    padding: 7px 6px 5px;
    border: 1px solid #D0D0D0;
    color: #898989;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
  }

  .image-banner-block .btn:hover {
    background-color: transparent;
    color: #d0d0d0;
  }

  @media only screen and (max-width: 1024px) {

    .image-banner-block {
      margin-bottom: 80px;
    }

  }

  @media only screen and (max-width: 600px) {

    .image-banner-block {
      min-height: 500px;
      height: 80vh;
      margin-bottom: 60px;
    }

    .image-banner-block .buttons {
      margin-top: 24px;
      gap: 12px;
    }

    .image-banner-block .btn {
      min-width: 136px;
      padding: 7px 6px 5px;
    }

    .image-banner-block .top-text,
    .image-banner-block .heading {
      font-size: 14vw;
    }

  }

  .text-block {
    padding-top: 46px;
    padding-bottom: 50px;
    background-color: #ffffff;
  }

  .image-banner-block+.text-block {
    padding-top: 0;
  }

  .text-block .container {
    padding: 0 30px;
  }

  .text-block .text-block-content {
    width: 100%;
    max-width: 725px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 28px;
    color: #898989;
  }

  .text-formatting p,
  .text-formatting {
    font-family: nuckle-medium;
  }

  .text-formatting p {
    margin-bottom: 20px;
  }

  .text-formatting p:last-child {
    margin-bottom: 0;
  }

  .text-formatting a {
    color: inherit;
    text-decoration: underline;
  }

  @media only screen and (max-width: 1024px) {

    .text-block {
      padding-top: 37px;
      padding-bottom: 40px;
    }

  }

  @media only screen and (max-width: 850px) {

    .text-block .text-block-content {
      width: 100%;
    }

  }

  @media only screen and (max-width: 650px) {

    .text-block .text-block-content {
      font-size: 16px;
      line-height: 1.3;
    }

  }

  @media only screen and (max-width: 600px) {

    .text-block {
      padding-top: 28px;
      padding-bottom: 30px;
    }

    .text-block .container {
      padding: 0 15px;
    }

  }

  .text-formatting h1,
  .text-formatting h2,
  .text-formatting h3,
  .text-formatting h4,
  .text-formatting h5,
  .text-formatting h6 {
    font-family: nuckle-semibold;
    color: var(--txt_dark, #898989);
    line-height: 1.25;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .text-formatting h1:first-child,
  .text-formatting h2:first-child,
  .text-formatting h3:first-child,
  .text-formatting h4:first-child,
  .text-formatting h5:first-child,
  .text-formatting h6:first-child {
    margin-top: 0;
  }

  .text-formatting h1 {
    font-size: 42px;
  }

  .text-formatting h2 {
    font-size: 34px;
  }

  .text-formatting h3 {
    font-size: 28px;
  }

  .text-formatting h4 {
    font-size: 22px;
  }

  .text-formatting h5 {
    font-size: 20px;
  }

  .text-formatting h6 {
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .text-formatting strong,
  .text-formatting b {
    font-family: nuckle-semibold;
  }

  .text-formatting em,
  .text-formatting i {
    font-style: italic;
  }

  .text-formatting ul,
  .text-formatting ol {
    margin: 0 0 20px;
    padding-left: 22px;
  }

  .text-formatting ul {
    list-style: disc;
  }

  .text-formatting ol {
    list-style: decimal;
  }

  .text-formatting li {
    margin-bottom: 8px;
  }

  .text-formatting li:last-child {
    margin-bottom: 0;
  }

  .text-formatting li>ul,
  .text-formatting li>ol {
    margin-top: 8px;
    margin-bottom: 0;
  }

  .text-formatting blockquote {
    margin: 0 0 20px;
    padding-left: 20px;
    border-left: 3px solid var(--btn_border, #d0d0d0);
    font-style: italic;
    color: var(--txt_dark, #898989);
  }

  .text-formatting hr {
    margin: 30px 0;
    border-top: 1px solid var(--btn_border, #d0d0d0);
  }

  @media only screen and (max-width: 600px) {

    .text-formatting h1 {
      font-size: 30px;
    }

    .text-formatting h2 {
      font-size: 26px;
    }

    .text-formatting h3 {
      font-size: 22px;
    }

    .text-formatting h4 {
      font-size: 19px;
    }

  }

  .date-time-venue-block {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff;
  }

  .date-time-venue-block .container {
    padding: 0 30px;
  }

  .date-time-venue-block-inner {
    width: 100%;
    max-width: 725px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #d0d0d0;
  }

  .date-time-venue-block .details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px 40px;
  }

  .date-time-venue-block .detail-label {
    font-size: 15px;
    line-height: 19px;
    font-family: 'nuckle-semibold';
    color: #898989;
    margin-bottom: 12px;
  }

  .date-time-venue-block .detail-value {
    font-size: 15px;
    line-height: 21px;
    font-family: nuckle-medium;
    color: #898989;
  }

  @media only screen and (max-width: 1024px) {

    .date-time-venue-block {
      padding-top: 40px;
      padding-bottom: 40px;
    }

  }

  @media only screen and (max-width: 600px) {

    .date-time-venue-block {
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .date-time-venue-block .container {
      padding: 0 15px;
    }

    .date-time-venue-block .details {
      gap: 20px 40px;
    }

  }

  .grid-border-block {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff;
  }

  .grid-border-block .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .grid-border-block .heading {
    text-align: center;
    font-size: 30px;
    line-height: 38px;
    font-family: nuckle-medium;
    color: var(--txt_dark, #898989);
    margin-bottom: 60px;
  }

  .grid-border-block .grid .column {
    width: calc(100% / 3 - 10px);
    margin-bottom: 20px;
    border: 1px solid var(--btn_border, #d0d0d0);
    border-radius: var(--border_radius, 30px);
    overflow: hidden;
  }

  .grid-border-block .grid .column .image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
  }

  .grid-border-block .grid .column .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .grid-border-block .grid .column .info {
    padding: 28px 30px 33px;
  }

  .grid-border-block .grid .column .info .title {
    font-size: 15px;
    line-height: 19px;
    font-family: 'nuckle-semibold';
    color: #898989;
    margin-bottom: 20px;
  }

  .grid-border-block .grid .column .info .description {
    font-size: 15px;
    line-height: 20px;
    color: #898989;
  }

  .grid-border-block .grid .column .info .description p {
    margin-bottom: 12px;
  }

  .grid-border-block .grid .column .info .description p:last-child {
    margin-bottom: 0;
  }

  @media only screen and (max-width: 1024px) {

    .grid-border-block {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .grid-border-block .heading {
      margin-bottom: 40px;
    }

    .grid-border-block .grid .column {
      width: calc(50% - 15px);
    }

  }

  @media only screen and (max-width: 650px) {

    .grid-border-block .grid .column {
      width: 100%;
    }

  }

  @media only screen and (max-width: 600px) {

    .grid-border-block {
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .grid-border-block .container {
      padding: 0 15px;
    }

    .grid-border-block .heading {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 30px;
    }

  }

  .ceremony-schedule-block {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff;
  }

  .ceremony-schedule-block .container {
    padding: 0 30px;
  }

  .ceremony-schedule-block-inner {
    width: 100%;
    max-width: 725px;
    margin: 0 auto;
  }

  .ceremony-schedule-block .heading {
    text-align: center;
    font-size: 30px;
    line-height: 38px;
    font-family: nuckle-medium;
    color: var(--txt_dark, #898989);
    margin-bottom: 60px;
  }

  .ceremony-schedule-block .schedule {
    border-top: 1px solid var(--btn_border, #d0d0d0);
    padding-top: 30px;
  }

  .ceremony-schedule-block .schedule-row {
    display: grid;
    grid-template-columns: minmax(140px, 200px) 1fr;
    gap: 20px;
    font-size: 20px;
    line-height: 25px;
    font-family: nuckle-medium;
    color: var(--txt_dark, #898989);
    margin-bottom: 19px;
  }

  .ceremony-schedule-block .schedule-row:last-child {
    margin-bottom: 0;
  }

  @media only screen and (max-width: 1024px) {

    .ceremony-schedule-block {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .ceremony-schedule-block .heading {
      margin-bottom: 40px;
    }

  }

  @media only screen and (max-width: 650px) {

    .ceremony-schedule-block .schedule-row {
      grid-template-columns: 1fr;
      gap: 4px;
      font-size: 16px;
      line-height: 22px;
      margin-bottom: 14px;
    }

  }

  @media only screen and (max-width: 600px) {

    .ceremony-schedule-block {
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .ceremony-schedule-block .container {
      padding: 0 15px;
    }

    .ceremony-schedule-block .heading {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 30px;
    }

  }

  .venue-block {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #ffffff;
  }

  .venue-block .slick-dots {
    display: none !important;
  }

  .venue-block .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .venue-block .heading {
    text-align: center;
    font-size: 30px;
    line-height: 38px;
    font-family: nuckle-medium;
    color: var(--txt_dark, #898989);
    margin-bottom: 52px;
  }

  .venue-block .slider {
    margin-bottom: 45px;
  }

  .venue-block .venue-slider .slick-list {
    overflow: hidden;
    border-radius: var(--border_radius, 30px);
  }

  .venue-block .slide {
    aspect-ratio: 3 / 2;
  }

  .venue-block .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .venue-block .slick-dots {
    position: static;
    margin-top: 20px;
    line-height: 0;
  }

  .venue-block .slick-dots li button:before {
    font-size: 10px;
    color: var(--btn_border, #d0d0d0);
    opacity: 1;
  }

  .venue-block .slick-dots li.slick-active button:before {
    color: var(--txt_dark, #898989);
  }

  .venue-block .venue-block-content {
    width: 100%;
    max-width: 725px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 28px;
    font-family: nuckle-medium;
    color: var(--txt_dark, #898989);
  }

  @media only screen and (max-width: 1024px) {

    .venue-block {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .venue-block .heading {
      margin-bottom: 37px;
    }

    .venue-block .slider {
      margin-bottom: 35px;
    }

  }

  @media only screen and (max-width: 650px) {

    .venue-block .venue-block-content {
      font-size: 16px;
      line-height: 1.3;
    }

  }

  @media only screen and (max-width: 600px) {

    .venue-block {
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .venue-block .container {
      padding: 0 15px;
    }

    .venue-block .heading {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 30px;
    }

    .venue-block .slider {
      margin-bottom: 25px;
    }

  }

  .image-marquee-block {
    padding-top: 85px;
    padding-bottom: 50px;
    background-color: #ffffff;
  }

  .image-marquee-block .marquee {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    /* background-color: #1a1a1a; */
  }

  .image-marquee-block .marquee-track {
    display: flex;
    width: max-content;
    animation: image-marquee-scroll 50s linear infinite;
    will-change: transform;
  }

  .image-marquee-block .marquee-item {
    flex: 0 0 auto;
    height: 80vh;
    min-height: 500px;
    border-radius: var(--border_radius, 30px);
    overflow: hidden;
    margin-right: 20px;
  }

  .image-marquee-block .marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  @keyframes image-marquee-scroll {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }

  }

  @media (prefers-reduced-motion: reduce) {

    .image-marquee-block .marquee-track {
      animation: none;
    }

  }

  @media only screen and (max-width: 1024px) {

    .image-marquee-block {
      padding-top: 68px;
      padding-bottom: 40px;
    }

  }

  @media only screen and (max-width: 600px) {

    .image-marquee-block {
      padding-top: 50px;
      padding-bottom: 30px;
    }

    .image-marquee-block .marquee-item {
      height: 50vh;
    }
  }

  .faq-block {
    padding-top: 50px;
    padding-bottom: 0px;
    background-color: #ffffff;
  }

  .faq-block .container {
    padding: 0 30px;
  }

  .faq-block .heading {
    text-align: center;
    font-size: 30px;
    line-height: 38px;
    font-family: nuckle-medium;
    color: var(--txt_dark, #898989);
    margin-bottom: 60px;
  }

  .faq-block .questions {
    width: 100%;
    max-width: 725px;
    margin: 0 auto;
  }

  .faq-block .question {
    border-bottom: 1px solid var(--btn_border, #d0d0d0);
  }

  .faq-block .question:first-of-type .top {
    border-top: 1px solid var(--btn_border, #d0d0d0);
  }

  .faq-block .question .top {
    padding: 20px 0 16px;
    color: #4f4f4f;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    margin-bottom: 2px;
  }

  .faq-block .question .top:hover * {
    color: #4f4f4f !important;
  }

  .faq-block .question .top p {
    width: calc(100% - 30px);
    color: var(--txt_dark, #898989);
    font-family: nuckle-medium;
  }

  .faq-block .question:hover .top p {
    color: var(--txt_dark, #898989);
  }

  .faq-block .question .top span {
    margin-right: 3px;
    transition: all 0.3s ease-in-out;
    color: var(--txt_dark, #898989);
  }

  .faq-block .question:hover .top span {
    animation-name: faq-block-bounce;
    animation-duration: 0.8s;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  @keyframes faq-block-bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(5px);
    }

  }

  .faq-block .question .answer {
    display: none;
    color: var(--txt_dark, #898989);
    line-height: 1.4;
    padding-bottom: 20px;
    padding-top: 16px;
    font-size: 16px;
    padding-right: 20px;
    margin-top: -15px;
  }

  .faq-block .question .answer p {
    margin-bottom: 16px;
  }

  .faq-block .question .answer p:last-child {
    margin-bottom: 0;
  }

  .faq-block .question .answer ul {
    list-style: none;
    padding-left: 15px;
  }

  .faq-block .question .answer ol {
    padding-left: 15px;
  }

  .faq-block .question .answer ul li {
    text-indent: -15px;
    margin-bottom: 3px;
    font-family: nuckle-regular;
  }

  .faq-block .question .answer ul li::before {
    content: "+ ";
  }

  .faq-block .question .answer ol li {
    margin-bottom: 3px;
    font-family: nuckle-regular;
  }

  .faq-block .question .answer a {
    text-decoration: none;
    border-bottom: 1px solid var(--txt_dark, #898989);
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
  }

  .faq-block .question .answer p:empty {
    height: 10px;
  }

  @media only screen and (max-width: 1024px) {

    .faq-block {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .faq-block .heading {
      margin-bottom: 40px;
    }

  }

  @media only screen and (max-width: 710px) {

    .faq-block .questions {
      max-width: 100%;
    }

    .faq-block .question .top {
      font-size: 16px;
    }

    .faq-block .question .answer {
      font-size: 16px;
    }

  }

  @media only screen and (max-width: 600px) {

    .faq-block {
      padding-top: 30px;
    }

    .faq-block .container {
      padding: 0 15px;
    }

    .faq-block .heading {
      font-size: 24px;
      line-height: 30px;
      margin-bottom: 30px;
    }

  }

  .big-button-block {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ffffff;
    text-align: center;
  }

  .big-button-block .container {
    padding: 0 30px;
  }

  .big-button-block-inner {
    width: 100%;
    max-width: 725px;
    margin: 0 auto;
  }

  .big-button-block.has-border-top .big-button-block-inner {
    padding-top: 40px;
    border-top: 1px solid var(--btn_border, #d0d0d0);
  }

  .big-button-block .btn-big {
    display: inline-block;
    padding: 25px 115px 20px 115px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 50px;
    color: #898989;
    transition: all 0.3s ease-in-out;
    font-family: nuckle-medium;
    font-size: 30px;
    line-height: 36px;
  }

  .big-button-block .btn-big:hover {
    text-decoration: none;
    background-color: #f4f4f4;
    border-color: #f4f4f4;
  }

  @media only screen and (max-width: 1024px) {

    .big-button-block.has-border-top .big-button-block-inner {
      padding-top: 30px;
    }

  }

  @media only screen and (max-width: 600px) {
    .big-button-block .container {
      padding: 0 15px;
    }

    .big-button-block .btn-big {
      padding: 25px 100px 20px 100px;
      font-size: 22px;
      line-height: 26px;
    }

  }


  body.page-template-template-block-builder footer .cta {
    display: none;
  }