@font-face {
  font-family: "Community";
  src: url("./fonts/Community-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Community";
  src: url("./fonts/Community-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  /* Width of the vertical scrollbar */
  height: 8px;
  /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  /* Thumb color */
  border-radius: 10px;
  /* Rounded corners */
  border: 2px solid #f1f1f1;
  /* Border around the thumb */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Darker thumb color on hover */
}

::-webkit-scrollbar-track {
  background-color: transparent;
  /* Track color */
  border-radius: 10px;
  /* Rounded corners */
}

::-webkit-scrollbar-track:hover {
  background-color: transparent;
  /* Darker track color on hover */
}

/* For horizontal scrollbar */
::-webkit-scrollbar-horizontal {
  height: 8px;
}

::-webkit-scrollbar-thumb-horizontal {
  background-color: #888;
}

::-webkit-scrollbar-track-horizontal {
  background-color: #f1f1f1;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

* {
  box-sizing: border-box;
}

header {
  background: #004182;
  height: 80px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  position: sticky;
  top: -1px;
  z-index: 1;
}

.region-filters {
  display: flex;
  gap: 10px;
}

.region-filters label {
  cursor: pointer;
}

.region-filters label input[type=radio] {
  display: none;
}

.region-filters label span {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 14px;
  color: #555;
  transition: all 0.2s ease;
}

.region-filters label span:hover {
  border-color: #004182;
  color: #004182;
}

.region-filters label input[type=radio]:checked+span {
  background-color: #004182;
  color: #fff;
  border-color: #004182;
  font-weight: 600;
}

body {
  font-family: "Community", "Segoe UI", sans-serif;
  background: linear-gradient(90deg, #F4F7F6 0%, #E6EEF8 100%);
}

body section.content {
  overflow: auto;
  padding: 3rem 30px 30px 30px;
  height: calc(100vh - 90px);
  margin-right: 3px;
}

body section.content .inner {
  max-width: 1200px;
  margin: 0 auto;
}

body section.content .top {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}

body section.content .top .title {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 22px;
}

body section.content .top .sub-title {
  letter-spacing: 0.5px;
  font-size: 18px;
}

body section.content .citis {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

body section.content .citis .card {
  background-color: white;
  padding: 6px;
  border-radius: 20px;
  border: none;
  max-width: 250px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body section.content .citis .card:hover {
  transform: translateY(-5px);
}

body section.content .citis .card:active {
  border: 1px solid #004182;
}

body section.content .citis .card img {
  border-radius: 15px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

body section.content .citis .card .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.062745098);
  margin-top: 8px;
  padding-top: 5px;
}

body section.content .citis .card .details span {
  flex: 1;
  font-weight: 600;
  padding-left: 10px;
  font-size: 18px;
  letter-spacing: 0.5px;
}

body section.content .credits {
  padding: 30px 0;
}

body section.content.hospitality {
  max-width: 100%;
}

body section.content.hospitality .inner {
  width: -moz-fit-content;
  width: fit-content;
}

body section.content.hospitality .card {
  display: flex;
  max-width: 100% !important;
  cursor: unset;
  transition: unset;
  flex-direction: column;
  align-items: center;
  padding: 10px !important;
}

body section.content.hospitality .card:hover {
  transform: unset;
}

body section.content.hospitality .card:active {
  border: unset;
}

body section.content.hospitality .card .img-wrapper {
  display: flex;
  align-items: center;
  max-width: 150px !important;
}

body section.content.hospitality .card .details {
  border-top: 0;
  margin-top: 0;
  margin-left: 10px;
  width: 100%;
}

body section.content.hospitality .card .details .hospitality-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}

body section.content.hospitality .card .details .hospitality-list .badge {
  width: 100%;
  text-align: left;
  padding: 7px;
  background: rgba(0, 65, 130, 0.2196078431);
  color: #004182;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

body section.content.hospitality .card .details .hospitality-list .badge:hover {
  cursor: pointer;
  opacity: 0.8;
}

body section.content.hospitality .card .details .hospitality-list .badge:active {
  background-color: rgba(0, 65, 130, 0.3294117647);
}

body section.content.hospitality .card .details .hospitality-list .badge.title {
  background: none;
  padding-left: 0;
  border-bottom: 1px solid;
  border-radius: 0;
  color: black;
}

body section.content.hospitality .card .details .hospitality-list .badge.title:hover {
  cursor: unset;
  opacity: 1;
}

body section.content.hospitality .card .details .hospitality-list .badge.title:active {
  background-color: unset;
}

body section.content.hospitality .card .details .hospitality-list .badge.title a {
  color: #004182;
}

body section.content.hospitality .card .details .hospitality-list .badge.title span {
  padding: 0;
  font-weight: 400;
}

@media (min-width: 768px) {
  body section.content.hospitality .card {
    flex-direction: row;
  }

  body section.content.hospitality .card .img-wrapper {
    max-width: 350px !important;
    min-width: 350px !important;
  }

  body section.content.hospitality .card .details {
    min-width: 350px;
  }

  body section.content.hospitality .card .details .hospitality-list {
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
  }

  body section.content.hospitality .card .details .hospitality-list .badge {
    min-width: 300px;
    padding: 20px;
    font-size: 20px;
  }

  body section.content.hospitality .card .img-wrapper {
    max-width: unset;
  }
}

body section.content.locations {
  padding: 3rem 10px 16px 10px;
}

body section.content.locations .inner {
  width: -moz-fit-content;
  width: fit-content;
}

body section.content.locations .top {
  flex-direction: column;
}

body section.content.locations .citis .card {
  padding: 15px;
  max-width: 100% !important;
  cursor: unset;
  transition: unset;
}

body section.content.locations .citis .card:hover {
  transform: unset;
}

body section.content.locations .citis .card:active {
  border: unset;
}

body section.content.locations .citis .card .img-wrapper .title {
  font-size: 18px;
}

body section.content.locations .citis .card .img-wrapper .title a {
  color: #004182;
  font-weight: 700;
}

body section.content.locations .citis .card .details .venue-list {
  padding-top: 15px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

body section.content.locations .citis .card .details .venue-list .vcard {
  max-width: 160px;
  text-align: center;
  background: white;
  color: #004182;
  padding: 6px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;

  position: relative;
  overflow: hidden;
}

body section.content.locations .citis .card .details .venue-list .vcard:hover {
  cursor: pointer;
  opacity: 0.8;
}

body section.content.locations .citis .card .details .venue-list .vcard:active {
  background: rgba(0, 65, 130, 0.2196078431);
}

body section.content.locations .citis .card .details .venue-list .vcard .image img {
  border-radius: 10px;
}

body section.content.locations .citis .card .details .venue-list .vcard .name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

body section.content.locations .citis .card .details .venue-list .seggrigation {
  padding: 5px;
  background-color: #eff4f7;
  border-radius: 10px;
}

body section.content.locations .citis .card .details .venue-list .seggrigation>p {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  padding-left: 6px;
}

body section.content.locations .citis .card .details .venue-list .seggrigation .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

body section.content.locations .citis.mkichen .card {
  max-width: 100% !important;
}

body section.content.locations .citis.mkichen .vcard {
  position: relative;
}

body section.content.locations .citis.mkichen .vcard:nth-child(1n) .image {
  background-color: #1e1e1e;
}

body section.content.locations .citis.mkichen .vcard:nth-child(2n) .image {
  background-color: #460606;
}

body section.content.locations .citis.mkichen .vcard:nth-child(3n) .image {
  background-color: #00280f;
}

body section.content.locations .citis.mkichen .vcard:nth-child(4n) .image {
  background-color: #17023d;
}

body section.content.locations .citis.mkichen .vcard .image {
  background: black;
  border-radius: 10px;
  position: relative;
}

body section.content.locations .citis.mkichen .vcard .image img {
  opacity: 0.3;
}

body section.content.locations .citis.mkichen .vcard a p {
  position: absolute;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  margin: 0 !important;
  padding: 5px;

  width: calc(100% - 10px);

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: rgba(255, 255, 255, 0.65);
  color: black;

  font-size: 18px !important;
  font-weight: 600;
  line-height: 1.4;

  word-break: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  body section.content.locations {
    padding: 3rem 30px 30px 30px;
  }

  body section.content.locations .card {
    padding: 20px;
    min-width: 600px;
  }

  body section.content.locations .card .seggrigation {
    padding: 10px;
  }

  body section.content.locations .card .seggrigation .list {
    gap: 15px !important;
    justify-content: center;
  }

  body section.content.locations .venue-list .vcard {
    max-width: 180px;
  }
}

.spinner-wrapper {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px) {
  section.content {
    padding: 1rem 10px 30px 10px !important;
  }

  section.content .top {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px !important;
  }

  section.content .top .title {
    font-size: 20px;
    text-align: center;
  }

  section.content .top .sub-title {
    font-size: 16px;
    text-align: center;
  }

  section.content .citis {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  section.content .citis .card {
    padding: 4px !important;
    width: 100%;
    max-width: calc(50% - 7.5px) !important;
  }

  section.content .citis .card .details svg {
    max-width: 18px;
  }

  section.content .citis .card .details .arrow {
    display: none;
  }

  section.content .citis .card .details span {
    font-size: 16px;
  }

  section.content .credits {
    text-align: center;
    font-size: 14px;
  }

  header {
    padding-left: 1rem;
  }

  header img {
    height: 30px;
  }
}

/*# sourceMappingURL=style.css.map */