/* Basic reset */  
  div, p, span {
    font-family: Poppins, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
  }

  .navbar {
    padding: 0px !important;
  }
  
  .nav-wrapper {
      z-index: 99;
  }
  body {
    font-size: 16px;
  }
  * {
    margin: 0;
    padding: 0;
    font-size: 16px;
    box-sizing: border-box;
  }
  a {
    text-decoration: none;
  }
  
  .secondary-nav .secondary-nav-wrapper {
    height: 100%;
  }
  
  .container {
    max-width: 1192px;
    margin: 0 auto;
  }
  
  .error-text {
    color: red;
  }
  
  /* event section */
  .events-section {
    padding: 100px 0px;
    background-color: var(--white-smoke);
  }
  
  .events-section .container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
  }
  .events-section * {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    line-height: 1.5;
  }
  
  .events-page-heading {
    margin-bottom: -80px;
  }
  
  /* Dropdown container */
  .dropdown {
    position: relative;
    width: 160px;
  }
  
  .dropdown-name {
    font-size: 14px;
  }
  
  /* Dropdown button styling */
  .dropdown-btn-custom {
    background: transparent;
    border: 1px solid var(--black-2);
    color: var(--black-2);
    padding: 8px 18px;
    width: 100%;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .dropdown-btn-custom span {
    font-size: 14px;
    color: var(--black-2);
  }
  .dropdown-btn-custom .dropdown-icon {
    width: 18px;
    height: 18px;
  }
  
  /* Dropdown menu */
  .dropdown-menu-custom {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    width: max-content;
    min-width: 250px;
    background-color: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
    overflow-y: auto;
    padding: 24px 24px 14px;
  }
  .dropdown-menu-custom.no-padding {
    padding: 0px;
  }
  
  .dropdown-menu-custom .list-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
  }
  
  .dropdown-menu-custom.no-padding .list-container {
    gap: 0px;
  }
  
  .dropdown-menu-custom input[type="checkbox"] {
    margin-right: 8px;
  }
  .dropdown-menu-custom {
    display: none;
  }
  /* Show the dropdown menu when open */
  .dropdown.open .dropdown-menu-custom {
    display: block;
  }
  
  .clear-all {
    grid-column-gap: .1rem;
    grid-row-gap: .1rem;
    white-space: nowrap;
    align-items: center;
    text-decoration: none;
    transition: all .28s;
    display: flex;
    color: var(--black-2)
  }
  
  .filter-group {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: flex-start;
    align-items: flex-end;
    font-size: .875rem;
    display: flex;
  }
  
  /* Placeholder text for selected values */
  .selected-items {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .past .view-event-btn {
    border: 1px solid var(--dark-grey);
    color: var(--dark-grey);
    cursor: auto;
  }
  
  .events-grid.list-type {
    grid-template-columns: 1fr;
  }
  
  .events-grid-loading {
    padding: 20px;
    display: flex;
    justify-content: center;
  }
  .loader {
    width: 48px;
    height: 48px;
    border: 5px solid var(--black-2);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
  } 
  
  .events-card {
    font-family: Poppins;
    background-color: #f9f8f5;
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 10px #0000001a;
    display: flex;
    justify-content: space-between;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .events-card:hover {
    box-shadow: 0 4px 21px #0000005e;
  }
  
  .event-info-wrapp {
    padding: 24px;
    display: flex;
    gap: 16px;
    flex-direction: column;
  }
  .event-info-wrapp.full {
    height: 100%;
  }
  
  .events-grid.list-type .event-info-wrapp {
    flex-direction: row;
  }
  
  .events-card-img {
    aspect-ratio: 1.91;
    /* object-fit: cover; */
    border-radius: 12px;
    width: 100%;
  }
  
  .event-details-flex {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  .event-details-flex .icon-embed-small img {
    width: 24px;
    height: 24px;
  }
  
  .events-grid.list-type .events-card .events-details {
    display: flex;
    flex-direction: row;
  }
  
  .events-grid.list-type .events-card .events-card-img {
    /* height: 150px; */
    width: 300px;
  }
  
  .events-grid.list-type .events-card .event-tags-wrapper-grid {
    display: none;
  }
  
  .events-grid.list-type .events-card .event-tags-wrapper-list {
    display: flex;
    gap: 8px;
  }
  
  .events-grid.list-type .events-card .card-banner.earlybird-grid {
    display: none !important;
  }
  
  .event-tags-list-container {
    display: none;
    justify-content: space-between;
    align-items: center;
  }
  .events-tag {
    white-space: nowrap;
    border: 1px solid #09100f;
    border-radius: 2rem;
    justify-content: center;
    align-items: center;
    min-height: 2.3rem;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    display: flex;
  }
  .events-tag div {
    font-size: 14px;
  }
  .events-tag.members {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    border-color: var(--brand-1);
    color: var(--brand-1);
    white-space: nowrap;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }
  .event-tags-wrapper-grid {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: wrap;
    display: flex;
  }
  
  .card-banner-list {
    background: var(--black-2);
    white-space: nowrap;
    display: flex;
    border-radius: 2rem;
    justify-content: center;
    align-items: center;
    min-height: 2.3rem;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--white-smoke);
    line-height: 1;
  }
  
  .events-grid.list-type .events-card .event-tags-list-container {
    display: flex;
  }
  
  .card-banner.earlybird-grid.passed-event {
    background-color: var(--black-2);
  }
  
  .events-filters {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
  }
  
  .all-filters, .more-filters {
    display: none;
    flex-direction: column;
    gap: 32px;
  }
  
  .all-filters.open {
    display: flex;
  }
  
  .main-filters, .more-filters.open {
    display: flex;
    width: 100%;
    gap: 16px;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
  }
  .filters_tags-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  .filters_tag {
    color: #9b9b9b;
    border: 1px solid #9b9b9b;
    border-radius: 3rem;
    align-items: center;
    padding: 8px 16px;
    line-height: 1;
    display: flex;
    gap: 8px;
    cursor: pointer;
  }
  .no-events-found {
    display: none;
    flex-direction: column;
  }
  .no-events-found h5 {
    color: var(--brand-1);
    font-size: 18px;
  }
  
  .filter-button-date.is-alternate {
    background-color: var(--transparent);
    color: #000;
    border: 1px solid var(--black-2);
    border-radius: 5px;
    padding: 8px 18px;
    font-size: 14px;
    min-width: 160px;
    background-image: url('https://middleware.pmmalliance.com/learning-site/img/calendar.svg');
    background-repeat: no-repeat;
    background-position: 95%;
    background-size: 20px;
  }
  
  .filter-button-date {
    position: relative;
  }
  
  .filter-button-date::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
  }
  
  .filter-button-date::-webkit-inner-spin-button,
  .filter-button-date::-webkit-clear-button {
    z-index: 10;
  }
  .pasteventsblock {
    display: none;
    flex-direction: column;
    justify-content: flex-end;
  }
  .show-advanced-filters {
    display: flex;
    white-space: nowrap;
    align-items: center;
    text-decoration: none;
    transition: all .28s;
    color: var(--black-2);
    align-self: end;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 10px;
    gap: 8px;
    cursor: pointer;
  }
  .filters-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-self: flex-end;
    gap: 40px;
  }
  
  .show-advanced-filters.open .eye-icon-open {
    display: block;
  }
  .show-advanced-filters.open .eye-icon-close {
    display: none;
  }
  .show-advanced-filters .eye-icon-open {
    display: none;
  }
  .show-advanced-filters .eye-icon-close {
    display: block;
  }
  
  .filter-block.center {
      display: flex;
      align-items: center;
  }
  
  .filter-block .dropdown .sort-buttons, .filter-block .dropdown .month-buttons {
    cursor: pointer;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-height: 3rem;
    margin-bottom: 0;
    text-decoration: none;
    display: flex;
    position: relative;
    color: var(--black-2);
    padding: 8px 24px;
  }
  .filter-block .dropdown .sort-buttons:hover, .filter-block .dropdown .month-buttons:hover {
    background-color: #eaeaea;  
  }
  
  .filter-block .dropdown .sort-buttons.active, .filter-block .dropdown .month-buttons.active {
    background-color: #eaeaea;
    background-image: linear-gradient(87deg, var(--brand-1), var(--brand-2));
    color: var(--white-smoke)
  }
  
  .events-grid {
    display: grid;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    place-items: stretch start;
  }
  .events-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  
  .heading-style-h1 {
    letter-spacing: -5px;
    font-size: 96px;
    font-weight: 400;
    line-height: .85;
  }
  
  .heading-style-h1 span {
    font-size: 96px;
    line-height: .9;
    position: relative;
    letter-spacing: -5px;
  }
  
  
  .heading-style-h2 {
    font-family: Poppins, sans-serif;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    font-size: 56px;
    font-weight: 400; 
  }
  .heading-style-h2 span {
    font-size: 56px;
    letter-spacing: -5px;
    line-height: 56px;
    font-weight: 400; 
  }
  
  .heading-style-h3 {
    font-family: Poppins, sans-serif;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    font-size: 40px;
    font-weight: 400; 
    letter-spacing: -2px;
    line-height: 40px;
  }
  .heading-style-h3 span {
    font-size: 40px;
    letter-spacing: -5px;
    line-height: 40px;
    font-weight: 400; 
  }
  
  .heading-style-h5 {
    letter-spacing: -0.06rem;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0px;
  }
  .card-banner {
    color: #f9f8f5;
    background-color: #09100f;
    justify-content: center;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
    display: flex;
  }
  .card-banner div {
    font-size: 12px;
    font-weight: 300;
  }
  .event-details-wrapp {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    grid-template-rows: 1fr auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    display: grid;
  }
  
  .events-grid.list-type .event-details-wrapp {
    grid-row-gap: 8px;
  }
  
  .events-details {
    grid-column-gap: 16px;
    grid-row-gap: 8px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .events-grid:not(.list-type) .events-details {
    min-height: 100px;
  }
  
  .view-event-btn-wrapp {
    width: 100%;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 0;
  }
  
  .view-event-btn, .custom-primary-button, .see-more-button {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    border: 1px solid var(--black-2);
    color: var(--black-2);
    border-radius: 4px;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-flex;
    text-decoration: none;
    background: transparent;
  }
  .view-event-btn > * , .custom-primary-button > *, .see-more-button > * {
    font-size: 14px;
    font-weight: 400;
  }

  .view-event-btn {
    background: var(--coral-gradient);
    border: none;
    color: var(--white-smoke);
  }
  .view-event-btn:hover {
    background: var(--black-2);
    border: none;
    color: var(--white-smoke) !important;
  }
  
  .see-more-button {
    display: none;
    cursor: pointer;
    text-decoration: none;
  }
  .see-more-button:hover {
    text-decoration: none;
  }
  .events-pagination {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
  
  .view-event-btn:hover, .custom-primary-button:hover {
    border-color: var(--brand-1);
    text-decoration: none;
    color: var(--brand-1);
  }
  
  .event-btn-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
  }
  
  .events-grid.list-type .event-btn-group {
    flex-direction: row;
  }
  
  /* custom checkbox filter */
  .checkbox-filter {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    white-space: nowrap;
    align-items: center;
    display: flex;
    cursor: pointer;
    font-size: 14px;
    color: #333;
  }
  
  .checkbox-custom {
    border: 1px solid var(--black-2);
    width: 18px;
    height: 18px;
    margin-top: 0;
    border-radius: 5px;
    position: relative;
    background-color: transparent;
  }
  
  .checkbox-custom:after {
    content: "";
    position: absolute;
    inset: 14% 33%;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
  
  
  .checkbox-custom-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkbox-custom-input:checked ~ .checkbox-custom {
    background-color: var(--black-2);
    background: var(--black-2);
  }
  
  
  /* search box */
  .filters_keyword-search {
    border-top: 2px solid #6c6c6c;
    flex: 1;
    align-items: center;
    width: 100%;
    display: flex;
    position: relative;
  }
  .search_input.is-icon-left {
    width: 100%;
    padding-left: 2.3rem;
    line-height: 1;
  }
  .search_input {
    background-color: transparent !important;
    border: 1px solid #f9f8f5 !important;
    margin-bottom: 16px !important;
    padding: 16px !important;
    font-size: 24px !important;
    margin: 0 !important;
  }
  
  .search-box-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
  }
  
  .search-box-wrapper .searchbox-icon {
    width: 24px;
    height: 24px;
  }
  
  #grid-switch-input{
      height: 0;
      width: 0;
      opacity: 0;
      position: absolute;
  }
  
  .grid-switch {
    cursor: pointer;
    text-indent: -9999px;
    width: 40px;
    height: 26px;
    background: transparent;
    display: block;
    border-radius: 100px;
    position: relative;
    border: 1px solid var(--black-2);
  }
  
  .grid-switch:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--black-2);
    border-radius: 90px;
    transition: 0.3s;
  }
  
  #grid-switch-input:checked ~ span {
      color: red;
  }
  #grid-switch-input:checked ~ .grid-switch:after {
      left: calc(100% - 3px);
      transform: translateX(-100%);
  }
  
  .grid-switch:active:after {
      width: 30px;
  }
  
  .grid-list_component {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
  
  .text-font-ivy {
    font-family: IvyJournal, sans-serif !important;
    font-style: italic;
    position: static;
    padding-right: 15px;
    padding-bottom: 15px;
  }
  
  .flex-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-main-group {
    display: flex;
    gap: 16px;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  
  .secondary-heading {
    align-self: normal;
  }
  
  .heading-decal {
    position: absolute;
    height: 110px;
    top: -60px;
    right: -100px;
  }
  
  .brand-colors {
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(87deg, var(--brand-1),var(--brand-2));
    -webkit-background-clip: text;
    background-clip: text;
    font-family: IvyJournal, sans-serif;
    font-weight: 400;
  }
  
  /* oustider sign in modal */
  #outsiderModal .modal-content{
    border-radius: 12px;
    border: none;
    padding: 32px;
  }
  
  #outsiderModal .free-ticket-signin-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  
  #outsiderModal .free-ticket-signin-button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    color: var(--white-smoke);
    background-image: linear-gradient(106deg, var(--brand-1), var(--brand-2));
  }
  
  #outsiderModal .free-ticket-signin-button:hover {
    color: var(--white-smoke);
    background: var(--black-2);
  }
  
  #outsiderModal .btn-close {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  /* Member Modal */
  #memberModal .modal-content{
    border-radius: 12px;
    border: none;
    padding: 32px;
    padding-top: 64px;
  }
  
  #memberModal .btn-close {
    position: absolute;
    top: -32px;
    right: 0;
  }
  
  #memberModal .free-ticket-button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    color: var(--white-smoke);
    background-image: linear-gradient(106deg, var(--brand-1), var(--brand-2));
    font-weight: 300;
    font-family: Poppins, sans-serif;
  }
  
  #memberModal .free-ticket-button:disabled, #memberModal .free-ticket-button:disabled:hover {
    background: #eaeaea;
    color: #666;  
  }
  
  #memberModal .free-ticket-button:hover {
    color: var(--white-smoke);
    background: var(--black-2);
  }
  
  /* Member Modal */
  #discountModal .modal-content{
    border-radius: 12px;
    border: none;
    padding: 32px;
    padding-top: 64px;
  }
  
  #discountModal .btn-close {
    position: absolute;
    top: -32px;
    right: 0;
  }
  
  #discountModal .free-ticket-button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    color: var(--white-smoke);
    background-image: linear-gradient(106deg, var(--brand-1), var(--brand-2));
    font-weight: 300;
  }
  
  #discountModal .free-ticket-button:disabled, #discountModal .free-ticket-button:disabled:hover {
    background: #eaeaea;
    color: #666;  
  }
  
  #discountModal .free-ticket-button:hover {
    color: var(--white-smoke);
    background: var(--black-2);
  }
  
  
  /* share modal */
  
  #shareModal .btn-close {
    position: absolute;
    top: 0px;
    right: 0;
  }
  
  .modal-social-share-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }
  
  .modal-copy-link-section {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-flow: column;
    display: flex;
  }
  .modal-share-item {
    width: 32px;
    height: 32px;
  }
  
  .modal-copy-link-icon {
    height: 17px;
    position: absolute;
    inset: 15px 10px 0% auto;
  }
  .modal-link-to-copy {
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 12px 45px 12px 18px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }
  
  .modal-link-to-copy-wrapper {
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    color: var(--black-2)
  }
  .modal-link-to-copy-wrapper:hover {
    text-decoration: none;
  }
  
  #shareModal .modal-content {
    border-radius: 12px;
    border: none;
    padding: 32px;
  }
  
  .copied-text-alert {
    display: none;
    position: absolute;
    top: 8px;
    right: 7px;
    background: var(--black-2);
    padding: 4px 10px;
    border-radius: 5px;
    color: var(--white-smoke);
    z-index: 1;
  }
  
  .share-modal-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .event-share-link {
    border: none;
    background-color: #ffffff69;
    border-radius: 999px;
    padding: 8px;
    display: flex;
  }
  .event-share-link:hover {
    background-color: #eaeaea;
  }
  .event-share-link img {
    width: 25px;
    height: 25px;
  }
  
  .separator {
    border-top: 1px solid #eaeaea;
    margin: 24px 0;
  }
  
  .ticket-prompt {
    font-weight: 400;
    line-height: 1.3;
  }
  .ticket-prompt b {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
    display: block;
  }
  
  .event-link-block {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  
  @media screen and (max-width: 1200px) {
    .main-filters {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
    }
  
    .show-advanced-filters {
      width: auto;
      align-self: flex-start;
      font-size: 14px;
    }
    .show-advanced-filters div {
      font-size: 14px;
    }
  
    .filter-main-group {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    .heading-style-h1 span {
      font-size: 6rem;
      letter-spacing: -4px;
    }
    .heading-decal {
      height: 84px;
      top: -40px;
      right: -76px;
    }
    .events-grid.list-type .events-card .events-details {
      flex-wrap: wrap;
    }
  }
  @media screen and (max-width: 1024px) {
    .events-section {
      padding: 50px 30px;
    }
    .events-section .container {
      width: 100%;
      max-width: 100%;
    }
  }
  
  @media screen and (max-width: 991px) {
    .events-grid {
      grid-template-columns: 1fr 1fr;
    }
    .more-filters.open {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .events-grid.list-type .events-card .events-card-img {
      width: 180px;
    }
    .events-grid.list-type .events-card {
      align-items: flex-start;
    }
  }
  
  @media screen and (max-width: 768px) {
    .events-grid.list-type .event-featured-image {
        width: 50%;
    }
  
    .events-grid.list-type .event-details-wrapp {
        width: 50%;
    }
    .events-grid.list-type .events-card .events-card-img {
      width: 100%;
    }
  }
  
  
  @media screen and (max-width: 600px) {
    .grid-list_component {
      display: none;
    }
    .events-grid {
      grid-template-columns: 1fr;
    }
    .events-section {
      padding: 50px 20px;
    }
  
    .main-filters {
      flex-direction: column;
      gap: 24px;
    }
    .filter-group {
      flex-wrap: wrap;
    }
    .events-page-heading {
      margin-bottom: 0px;
    }
  }
  
  @media screen and (max-width: 450px) {
  
    .heading-decal {
      display: none;
    }
    .events-grid.list-type .events-card {
      flex-direction: column;
    }
    .events-grid.list-type .events-card .events-card-img {
      width: 100%;
    }
  }