@charset "UTF-8";
:root {
  --primary: #416F7F;
  --primary-m3: #4F849B;
  --primary-dark2: #005B7F;
  --primary-dark: #0D3B4B;
  --primary-light: #98C0C2;
  --secondary: #0093B2;
  --secondary-light: #4AB3D7;
  --green: #AC7;
  --white: #FFF;
  --gray-light: #BFBFBF;
  --gray-middle: #8C8C8C;
  --gray: #7E6C6C;
  --gray-deep: #545454;
  --tag-red: #FF6060;
  --tag-purple: #7F8DD6;
  --tag-pink: #F9AAD4;
  --tag-blue: #60A0FF;
  --tag-green: #ADD881;
  --tag-orange: #FF8660;
}

body {
  color: var(--primary-dark);
  min-height: 100dvh;
  background: linear-gradient(180deg, #BEE1D0 0%, #F8F7E9 100%) no-repeat;
  font-family: "Microsoft JhengHei", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

.container {
  max-width: 1121px;
  margin: 0 auto;
}

h2, h3 {
  font-weight: normal;
  margin: 0;
}

.flex-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.mt-10 {
  margin-top: 5vh;
}

.header {
  position: sticky;
  top: 0;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  z-index: 50;
  transition: background-color 200ms ease-in;
}
@media only screen and (max-width: 768px) {
  .header {
    padding: 10px;
  }
}
.header.fixed {
  background-color: var(--white);
}
.header.fixed + .event-nav {
  background-color: var(--white);
  box-shadow: 1px 4px 8px rgba(162, 162, 162, 0.25);
}
.header.fixed + .event-nav .container {
  box-shadow: none;
}
.header .logo img {
  display: block;
  height: 50px;
}

.nav {
  flex: 1;
}
.nav[data-collapse=true] .nav__wrap {
  max-height: 80vh;
}
.nav[data-collapse=true] .nav__btn span {
  margin: 0;
}
.nav[data-collapse=true] .nav__btn span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.nav[data-collapse=true] .nav__btn span:nth-child(2) {
  opacity: 0;
}
.nav[data-collapse=true] .nav__btn span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}
.nav__btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  .nav__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-left: auto;
    transition: max-height 200ms ease-in;
    cursor: pointer;
  }
  .nav__btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    margin: 3px 0;
    transition: all 200ms ease-in;
  }
}
.nav__wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .nav__wrap {
    position: absolute;
    min-width: 200px;
    max-height: 0;
    right: 0;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
}
.nav__item {
  margin-left: 85px;
  color: var(--primary);
}
@media only screen and (max-width: 1280px) {
  .nav__item {
    margin-left: 5%;
  }
}
@media only screen and (max-width: 768px) {
  .nav__item {
    text-align: center;
    margin-left: 0;
    font-size: 14px;
    padding: 20px;
  }
}

.footer {
  position: relative;
  min-height: 434px;
  margin-top: 185px;
  background: url("../images/footer.svg") no-repeat right bottom;
}
@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 50px;
    background-size: 100% auto;
    padding-bottom: 60vw;
  }
}
.footer p {
  margin: 35px 0;
  font-size: 14px;
  line-height: 1.5em;
}
@media only screen and (max-width: 768px) {
  .footer p {
    padding: 20px;
    margin: 0;
  }
}

.footer-info {
  display: flex;
  align-items: flex-end;
}
@media only screen and (max-width: 1280px) {
  .footer-info {
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-logo img {
  display: block;
}
.footer-logo span {
  display: block;
  margin-top: 16px;
}

.footer-nav {
  margin-left: 46px;
  flex: 1;
  max-width: 295px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 6px;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media only screen and (max-width: 768px) {
  .footer-nav {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
}
.footer-nav__item {
  font-size: 14px;
  line-height: 152.489%; /* 21.348px */
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 3px 10px;
  text-align: center;
}

.satellite {
  position: absolute;
  right: 228px;
  top: -50px;
  width: 134px;
  height: 100px;
  background: url("../images/satellite.svg") no-repeat;
  animation: satellite 2s alternate ease-in-out infinite;
}
@media only screen and (max-width: 768px) {
  .satellite {
    right: 20vw;
    top: auto;
    bottom: 50vw;
    width: 66px;
    height: 50px;
    background-size: contain;
  }
}

@keyframes satellite {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10%);
  }
}
.mascot {
  position: fixed;
  right: 0px;
  top: 40vh;
  text-align: center;
  padding: 20px 10px 10px 10px;
  background-color: var(--secondary);
  border-radius: 10px 0px 0px 10px;
  z-index: 10;
}
.mascot img {
  width: 80px;
}
.mascot p {
  margin-top: 10px;
  color: #fff;
  letter-spacing: 1px;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.mascot img {
  display: block;
  margin: 0 auto;
  animation: shake 2s infinite;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  text-align: center;
  padding: 4px 30px;
  background-color: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 768px) {
  .btn {
    padding: 4px 16px;
  }
}
.btn--secondary {
  font-size: 14px;
  color: var(--white);
  background-color: var(--secondary);
  line-height: 152.489%; /* 24.398px */
  letter-spacing: 2.4px;
}
.btn--secondary-light {
  font-size: 14px;
  border-radius: 3px;
  color: var(--white);
  padding: 4px 19px;
  background-color: var(--secondary-light);
  line-height: 152.489%; /* 24.398px */
  letter-spacing: 2.4px;
}
.btn--m3 {
  font-size: 14px;
  border-radius: 3px;
  color: var(--white);
  padding: 4px 19px;
  background-color: var(--primary-m3);
  line-height: 152.489%; /* 24.398px */
  letter-spacing: 2.4px;
}
.btn--secondary-outline {
  color: var(--secondary);
  border: 1px solid currentColor;
  border-bottom: 4px solid currentColor;
  line-height: 152.489%; /* 24.398px */
  letter-spacing: 2.4px;
}
.btn--secondary-text {
  padding: 0;
  color: var(--secondary);
  border-bottom: 2px solid currentColor;
}
.btn--secondary-round {
  height: 37px;
  min-width: 37px;
  border-radius: 20px;
  padding: 0;
  background-color: var(--secondary);
}
.btn--icon {
  padding: 0;
}
.btn--video {
  border-radius: 5px;
  padding: 5px 20px;
  font-size: 16px;
  color: var(--white);
  background-color: #E15364;
}
.btn--report {
  border-radius: 5px;
  padding: 5px 20px;
  font-size: 16px;
  color: var(--white);
  background-color: #5373E1;
}
.btn--facebook {
  width: 42px;
  height: 42px;
  padding: 0;
  background: url("../images/icons/facebook.svg") no-repeat center center/contain;
}
.btn--email {
  width: 42px;
  height: 42px;
  padding: 0;
  background: url("../images/icons/email.svg") no-repeat center center/contain;
}
.btn--print {
  width: 42px;
  height: 42px;
  padding: 0;
  background: url("../images/icons/print.svg") no-repeat center center/contain;
}
.btn--file {
  padding: 9px 17px;
  margin-bottom: 12px;
  color: var(--primary-m3);
  border: 1px solid currentColor;
  border-radius: 6px;
  gap: 7px;
  font-size: 18px;
  line-height: 22px;
  box-shadow: 0px 4px 4px 0px rgba(200, 212, 200, 0.2509803922);
}
@media only screen and (max-width: 768px) {
  .btn--file {
    font-size: 14px;
    padding: 4px 8px;
  }
}
.btn--event {
  font-weight: bold;
}
.btn--event::before {
  content: "➤ ";
}
.btn--more {
  font-weight: bold;
  color: #Fff;
  display: block;
  margin-top: 20px;
}

.seemorebtn {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 6;
  background-color: #3386a2;
  color: #Fff;
  border-radius: 10px 10px 0px 0px;
  padding: 5px 30px 5px 5px;
}
@media only screen and (max-width: 768px) {
  .seemorebtn {
    width: 90%;
  }
}
.seemorebtn h5 {
  font-size: 16px;
  margin-bottom: 10px;
}
.seemorebtn h6 {
  font-size: 20px;
  margin: 0px;
  color: rgb(255, 255, 177);
}

.icon {
  flex: 0 0 auto;
  display: inline-flex;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.icon--search {
  width: 19px;
  height: 19px;
  background-image: url("../images/icons/search-white.svg");
}
.icon--prev {
  width: 44px;
  height: 44px;
  background-image: url("../images/icons/slider-prev.svg");
}
.icon--next {
  width: 44px;
  height: 44px;
  background-image: url("../images/icons/slider-next.svg");
}
.icon--arrow-right {
  width: 40px;
  height: 40px;
  background-image: url("../images/icons/arrow-right.svg");
}
.icon--delete {
  width: 14px;
  height: 14px;
  background-image: url("../images/icons/delete.svg");
}
.icon--full-screen {
  width: 31px;
  height: 31px;
  background-image: url("../images/icons/full-screen.svg");
}
.icon--add {
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/add.svg");
}
.icon--minus {
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/minus.svg");
}
.icon--collapse {
  width: 9px;
  height: 19px;
  background-image: url("../images/icons/collapse.svg");
}
.icon--add-primary {
  width: 18px;
  height: 18px;
  background-image: url("../images/icons/add-primary.svg");
}
.icon--tag {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-image: url("../images/icons/tag.svg");
}
.icon--pdf {
  width: 32px;
  height: 32px;
  background-image: url("../images/icons/pdf.svg");
}
.icon--pin {
  width: 22px;
  height: 22px;
  background-image: url("../images/icons/pin.svg");
}
.icon--date {
  width: 22px;
  height: 22px;
  background-image: url("../images/icons/date.svg");
}

.tags {
  display: flex;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  padding: 0 11px;
  margin: 0 5px 5px 0;
  color: var(--white);
  font-size: 12px;
  line-height: 1.5em;
  background-color: var(--primary-light);
}

.event-tag {
  display: flex;
  background-color: var(--primary-m3);
  color: var(--white);
  padding: 6px 12px 6px 24px;
  border-radius: 4px;
}
.event-tag--outline {
  color: var(--gray-deep);
  border: 1px solid currentColor;
  background-color: transparent;
  padding: 6px 24px;
}
@media only screen and (max-width: 768px) {
  .event-tag--outline {
    padding: 4px 10px;
  }
}
.event-tag--red {
  color: var(--tag-red);
  border-color: var(--tag-red);
  background-color: var(--tag-red);
}
.event-tag--purple {
  color: var(--tag-purple);
  border-color: var(--tag-purple);
  background-color: var(--tag-purple);
}
.event-tag--pink {
  color: var(--tag-pink);
  border-color: var(--tag-pink);
  background-color: var(--tag-pink);
}
.event-tag--blue {
  color: var(--tag-blue);
  border-color: var(--tag-blue);
  background-color: var(--tag-blue);
}
.event-tag--green {
  color: var(--tag-green);
  border-color: var(--tag-green);
  background-color: var(--tag-green);
}
.event-tag--orange {
  color: var(--tag-orange);
  border-color: var(--tag-orange);
  background-color: var(--tag-orange);
}
.event-tag .btn {
  margin-left: 10px;
}

.box-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .box-tags {
    gap: 6px;
  }
}
.box-tags a {
  padding: 4px 10px;
  color: #fff;
  border-radius: 10px;
  background-color: #5fcea1;
}
@media only screen and (max-width: 768px) {
  .box-tags a {
    font-size: 10px;
    padding: 3px 6px;
  }
}
.box-tags a:nth-child(odd) {
  background-color: red;
}
.box-tags a:nth-child(even) {
  background-color: green;
}
.box-tags a:nth-child(1) {
  background-color: #5fcea1;
  color: beige;
}
.box-tags a:nth-child(2) {
  background-color: #3cabe0;
  color: #f9faff;
}
.box-tags a:nth-child(3) {
  background-color: #e0883c;
  color: #f9faff;
}
.box-tags a:nth-child(4) {
  background-color: #b25295;
  color: #fff2f2;
}
.box-tags a:nth-child(5) {
  background-color: #e03c6a;
  color: #ffdee7;
}
.box-tags a:nth-child(6) {
  background-color: #e0573c;
  color: #f9faff;
}
.box-tags a:nth-child(7) {
  background-color: #604acd;
  color: #e4e9ff;
}
.box-tags a:nth-child(8) {
  background-color: #3f2a9f;
  color: #f9faff;
}
.box-tags a:nth-child(9) {
  background-color: #c1f1fc;
  color: #2f3f8c;
}
.box-tags a:nth-child(10) {
  background-color: #b1f8e3;
  color: #22382f;
}
.box-tags a:nth-child(11) {
  background-color: #fffbb6;
  color: #7e6239;
}
.box-tags a:nth-child(12) {
  background-color: #3cabe0;
  color: #f9faff;
}
.box-tags a:nth-child(13) {
  background-color: #e0883c;
  color: #f9faff;
}
.box-tags a:nth-child(14) {
  background-color: #b25295;
  color: #fff2f2;
}
.box-tags a:nth-child(15) {
  background-color: #e03c6a;
  color: #ffdee7;
}
.box-tags a:nth-child(16) {
  background-color: #e0573c;
  color: #f9faff;
}
.box-tags a:nth-child(17) {
  background-color: #604acd;
  color: #e4e9ff;
}
.box-tags a:nth-child(18) {
  background-color: #3f2a9f;
  color: #f9faff;
}
.box-tags a:nth-child(19) {
  background-color: #c1f1fc;
  color: #2f3f8c;
}
.box-tags a:nth-child(20) {
  background-color: #b1f8e3;
  color: #22382f;
}
.box-tags a:nth-child(21) {
  background-color: #fffbb6;
  color: #7e6239;
}

.bread-crumbs {
  font-size: 13px;
  color: var(--gray-middle);
}
.bread-crumbs a {
  color: var(--gray-middle);
}
.bread-crumbs a:hover {
  color: var(--primary);
}
.bread-crumbs .divider {
  padding: 4px;
}

.form-input--calendar input {
  width: 100%;
}
.form-input--calendar input::-webkit-calendar-picker-indicator {
  width: 20px;
  height: 20px;
  background: url("../images/icons/calendar.svg") no-repeat center center;
}
.form-input input {
  border: none;
  outline: none;
  padding: 9px;
  border-radius: 5px;
}
.form-input input::-moz-placeholder {
  color: var(--gray-light);
}
.form-input input::placeholder {
  color: var(--gray-light);
}

.form-select select {
  border: none;
  outline: none;
  padding: 9px;
  padding-right: 40px;
  border-radius: 5px;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background-image: url("../images/icons/dropdown.svg");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px 9px;
}

.table {
  border-collapse: collapse;
}
.table thead tr {
  border-bottom: 4px solid var(--primary-m3);
}
@media only screen and (max-width: 768px) {
  .table thead tr {
    border-width: 2px;
  }
}
.table thead th {
  color: var(--primary-m3);
  font-size: 21px;
  padding: 10px 0;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .table thead th {
    font-size: 16px;
  }
}
.table tbody tr {
  border-bottom: 1px solid #DBDBDB;
}
.table tbody td {
  padding: 12px 1px;
  line-height: 1.3;
}
.table tbody td a {
  display: block;
}
@media only screen and (max-width: 768px) {
  .table tbody td {
    padding: 6px 0;
  }
}

.table-count {
  margin-top: 20px;
  margin-bottom: 10vh;
}

.btn--event {
  display: block;
  padding: 0px 20px 0px 0px;
}

.pager {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.pager .btn {
  padding: 2px 5px;
  color: var(--primary-m3);
}
.pager .pager-pages {
  display: flex;
  gap: 4px;
}
.pager .pager-pages .btn {
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
}
.pager .pager-pages .btn.active {
  color: var(--white);
  background-color: var(--primary-m3);
}

.progress {
  height: 6px;
  border-radius: 3px;
  background-color: rgba(187, 211, 221, 0.1);
}

.progress-bar {
  height: 6px;
  border-radius: 3px;
}
.progress-bar--blue {
  background-color: #4AB3D7;
}
.progress-bar--green {
  background-color: #6CE2C6;
}
.progress-bar--yellow {
  background-color: #D4A956;
}
.progress-bar--red {
  background-color: #D7744A;
}

.tab {
  overflow-x: auto;
  border-bottom: 2px solid var(--secondary-light);
}
.tab__container {
  display: inline-flex;
  gap: 23px;
}
@media only screen and (max-width: 768px) {
  .tab__container {
    gap: 12px;
  }
}
.tab__item {
  cursor: pointer;
  padding: 10px 20px;
  min-width: 152px;
  color: var(--white);
  font-weight: bold;
  text-align: center;
  background-color: var(--secondary-light);
  white-space: nowrap;
}
.tab__item.active {
  background-color: #0792bf;
}
.tab__item a {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .tab__item {
    min-width: unset;
  }
}

.table-count tr td:first-child {
  background-color: var(--secondary-light);
  color: #fff;
}

.chat-container {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4AB3D7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px;
}

.chat-tabs {
  display: flex;
}

.chat-tab {
  flex: 1;
  min-width: 160px;
  border-radius: 10px 10px 0px 0px;
  border: 0px;
  padding: 10px;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
  background-color: #2b9cc3;
}
@media only screen and (max-width: 768px) {
  .chat-tab {
    min-width: 140px;
  }
}

.chat-tab.active {
  background: none;
}

.chat-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

.chat-tab-content {
  display: flex;
  flex-direction: column;
  height: 340px;
  overflow: hidden;
}

.chat-tab-pane {
  display: none;
  padding: 10px;
  height: 100%;
}

.chat-tab-pane.active {
  display: block;
}

.chat-window {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  border-bottom: 1px solid #eee;
  animation: fadeIn 0.5s;
  height: 268px;
}

.chat-moresearch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chat-moresearch a {
  background-color: #feffcb;
  border: 1px solid #4AB3D7;
  padding: 10px;
  border-radius: 6px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.chat-message {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  animation: slideIn 0.5s;
  margin-bottom: 28px;
}

@keyframes slideIn {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.chat-message-left {
  flex-direction: row;
}

.chat-message-right {
  flex-direction: row-reverse;
}

.chat-message img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-message-right img {
  margin-right: 0;
  margin-left: 10px;
}

.chat-message div {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  min-width: 300px;
}

.chat-timestamp {
  font-size: 12px;
  color: #888;
  position: absolute;
  bottom: -20px;
  right: 10px;
}

.chat-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #eee;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-right: 10px;
}

.chat-input button {
  padding: 10px 20px;
  background-color: #4AB3D7;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.chat-input button:hover {
  background-color: #2b9cc3;
}

@media (max-width: 600px) {
  .chat-container {
    width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.hot {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.hot h6 {
  font-size: 16px;
  margin: 0px;
}
.hot a {
  background-color: #4AB3D7;
  border-radius: 6px;
  color: #fff;
  padding: 4px;
}

.chat-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chat-link a {
  background-color: #e7f3fb;
  border-radius: 10px;
  padding: 10px;
}

.hero .container {
  position: relative;
  padding-bottom: 4vh;
}
@media only screen and (max-width: 1280px) {
  .hero .container {
    padding: 0 80px 5vh;
  }
}
@media only screen and (max-width: 1280px) {
  .hero .container {
    padding: 0 20px 5vh;
  }
}

.hero-swiper {
  --swiper-navigation-sides-offset: -72px;
  --swiper-pagination-bottom: -30px;
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 10px;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-border-radius: 5px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .hero-swiper {
    --swiper-navigation-sides-offset: 0px;
  }
}
.hero-swiper .swiper {
  border-radius: 24px;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 44px;
  height: 44px;
}
.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    right: -10px;
  }
}
.hero-swiper .swiper-pagination {
  bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .hero-swiper .swiper-pagination {
    text-align: left;
  }
}
.hero-swiper .swiper-pagination-bullet {
  background-color: var(--secondary);
  transition: all ease-in 200ms;
}
.hero-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 48px;
  background-image: linear-gradient(90deg, #C7E8E8 0%, #84D0D3 100%);
}
.hero-swiper__img {
  width: 100%;
  height: 405px;
  background-size: cover;
  margin-bottom: 140px;
  border-radius: 24px;
}
@media only screen and (max-width: 768px) {
  .hero-swiper__img {
    height: 180px;
  }
}
.hero-swiper__text {
  position: absolute;
  right: 44px;
  bottom: 230px;
  width: 380px;
  display: inline-block;
  padding: 16px 22px;
  color: var(--white);
  line-height: 152.489%; /* 24.398px */
  letter-spacing: 2.4px;
  z-index: 1;
  background-image: linear-gradient(94deg, #088AD3 0.87%, #184EAE 116.01%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.hero-swiper__text p {
  margin: 0px;
}
.hero-swiper__text a {
  background-color: #Fff;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 14px;
  display: inline-block;
  color: #184EAE;
}
.hero-swiper__text a:hover {
  box-shadow: 5px 11px 9px -10px rgb(45, 49, 117);
}
.hero-swiper__text.left {
  left: 44px;
  right: auto;
}
@media only screen and (max-width: 768px) {
  .hero-swiper__text.left {
    right: 16px;
    left: auto;
  }
}
@media only screen and (max-width: 768px) {
  .hero-swiper__text {
    right: 20px;
    bottom: 100px;
    width: 200px;
    height: auto;
    padding: 8px;
    font-size: 12px;
    line-height: 1.5em;
    letter-spacing: 0;
  }
}

.air-camera {
  position: absolute;
  bottom: 20px;
  right: 100px;
  width: 256px;
  height: 192px;
  background: url("../images/air-camera.svg") no-repeat;
  z-index: 1;
  animation: air-camera 10s ease-in-out alternate infinite;
}
.air-camera.left {
  left: 100px;
  right: auto;
}
@media only screen and (max-width: 768px) {
  .air-camera.left {
    right: 10px;
    left: auto;
  }
}
@media only screen and (max-width: 768px) {
  .air-camera {
    right: 10px;
    left: auto;
    width: 128px;
    height: 96px;
    bottom: 20px;
    background-size: contain;
  }
}

@keyframes air-camera {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(5%, 5%);
  }
  50% {
    transform: translate(0, 10%);
  }
  75% {
    transform: translate(-5%, 5%);
  }
}
.statistics {
  margin-top: 30px;
}
.statistics .container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .statistics .container {
    padding: 20px;
    flex-direction: column;
  }
}

.statistics-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  width: 60%;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.74);
}
@media only screen and (max-width: 768px) {
  .statistics-main {
    width: 100%;
    padding: 16px;
  }
}
.statistics-main__info h2 {
  color: var(--secondary);
  font-size: 34px;
  line-height: 152.489%; /* 51.846px */
  letter-spacing: 5.1px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .statistics-main__info h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.statistics-main__img {
  margin-bottom: -80px;
  width: 325px;
  height: 286px;
  background: url("../images/statistics.svg") no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .statistics-main__img {
    margin-bottom: -40px;
    width: 160px;
    height: 140px;
  }
}

.statistics-info {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-left: 54px;
}
@media only screen and (max-width: 768px) {
  .statistics-info {
    margin-top: 20px;
    margin-left: 0;
  }
}
.statistics-info__item {
  padding: 20px 0;
}
.statistics-info__item:first-child {
  grid-column: 1/3;
  border-bottom: 1px solid var(--primary);
}
.statistics-info__item h3 {
  font-size: 26px;
  color: var(--secondary);
  letter-spacing: 3.9px;
  line-height: 152.489%; /* 39.647px */
}
@media only screen and (max-width: 768px) {
  .statistics-info__item h3 {
    font-size: 18px;
  }
}
.statistics-info__count {
  font-size: 24px;
}
.statistics-info__count strong {
  font-size: 40px;
  font-weight: normal;
  line-height: 152.489%;
  margin-right: 6px;
}
@media only screen and (max-width: 768px) {
  .statistics-info__count strong {
    font-size: 30px;
  }
}
.statistics-info__compare {
  font-size: 14px;
  letter-spacing: 1.4px;
}
@media only screen and (max-width: 768px) {
  .statistics-info__compare {
    font-size: 12px;
    letter-spacing: 0;
  }
}
.statistics-info__compare strong {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 2.4px;
  color: var(--secondary);
  margin-left: 4px;
}
@media only screen and (max-width: 768px) {
  .statistics-info__compare strong {
    font-size: 18px;
  }
}

.events {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .events {
    margin-top: 30px;
  }
}
.events .container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .events .container {
    flex-direction: column;
  }
}

.events-item {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 20px;
  min-height: 225px;
  padding: 0 60px 0 276px;
}
@media only screen and (max-width: 768px) {
  .events-item {
    padding: 20px 20px 20px 40%;
    align-items: flex-end;
    min-height: unset;
    margin: 20px;
  }
}
.events-item--calendar {
  background: url("../images/calendar.svg") no-repeat left center;
  background-size: auto 100%;
}
.events-item--calendar::after {
  content: "";
  position: absolute;
  top: 45px;
  bottom: 45px;
  right: 0;
  width: 1px;
  background-color: var(--primary);
}
@media only screen and (max-width: 768px) {
  .events-item--calendar::after {
    width: auto;
    top: unset;
    left: 45px;
    right: 45px;
    bottom: -20px;
    height: 1px;
  }
}
.events-item--area {
  background: url("../images/area.svg") no-repeat left center;
  background-size: auto 100%;
}
.events-item h2 {
  font-size: 58px;
  color: var(--secondary);
  letter-spacing: 5.8px;
}
@media only screen and (max-width: 768px) {
  .events-item h2 {
    font-size: 36px;
  }
}
.events-item__describe {
  color: var(--secondary);
  font-size: 26px;
  line-height: 152.489%; /* 39.647px */
  letter-spacing: 2.6px;
}
@media only screen and (max-width: 768px) {
  .events-item__describe {
    font-size: 18px;
  }
}

.bg-tw {
  background-image: url(../../images/tw.svg);
  background-size: 100%;
  background-position: center;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.article-column {
  table-layout: fixed;
  border-collapse: collapse;
}
.article-column th, .article-column td {
  padding: 10px 20px;
  border: 1px solid var(--secondary);
}
@media only screen and (max-width: 768px) {
  .article-column th, .article-column td {
    padding: 10px;
  }
}
.article-column th {
  background-color: var(--primary);
  color: #fff;
}

.record-tags {
  display: flex;
  gap: 3%;
  flex-wrap: wrap;
  row-gap: 17px;
}
.record-tags a {
  background-color: var(--secondary);
  min-width: 150px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .record-tags a {
    padding: 10px;
    margin-bottom: 10px;
    flex: 1;
    min-width: 30%;
  }
}
.record-tags a img {
  width: 60px;
  filter: brightness(5);
  min-height: 60px;
}
@media only screen and (max-width: 768px) {
  .record-tags a img {
    width: 40px;
  }
}
.record-tags a:hover {
  background-color: var(--primary);
}
.record-tags a.active {
  background-color: var(--primary);
}

.event-pin {
  width: 60px;
  height: 60px;
}
.event-pin img {
  width: 100%;
  min-height: auto !important;
  height: auto;
}

.event-more-img {
  width: 100%;
  height: 100px;
  background-color: var(--secondary);
  border-radius: 6px;
  color: #fff !important;
  align-content: center;
  text-align: center;
}

.event-article ol li span {
  display: inline-table;
  width: 80%;
}

.btn-moremap {
  position: fixed;
  bottom: 0px;
  left: 40vw;
  z-index: 100;
  background-color: #0093b2;
  display: flex;
  color: #fff;
  align-items: center;
  padding: 10px 40px;
  border-radius: 20px 20px 0px 0px;
}
.btn-moremap p {
  font-size: 19px;
}

.history {
  position: relative;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .history {
    margin-top: 50px;
  }
}
.history::before {
  content: "";
  position: absolute;
  left: 0;
  width: 60%;
  height: 315px;
  background-image: linear-gradient(90deg, #008AAA 0%, #33B2C1 43%, #D9E25A 100%);
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .history::before {
    width: 80%;
  }
}
.history .container {
  padding-top: 65px;
}
@media only screen and (max-width: 768px) {
  .history .container {
    padding: 20px;
  }
}
.history h2 {
  position: relative;
  font-size: 26px;
  height: 40px;
  color: var(--white);
  z-index: 1;
}

.history-list {
  position: relative;
  z-index: 1;
  display: flex;
  -moz-column-gap: 32px;
       column-gap: 32px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .history-list {
    flex-direction: column;
  }
}

.history-item {
  position: relative;
  flex: 1;
  border-radius: 20px;
  line-height: 1.5em;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .history-item {
    margin-bottom: 20px;
  }
}
.history-item--intro {
  color: var(--white);
  border-radius: 0;
}
@media only screen and (max-width: 768px) {
  .history-item--intro {
    padding-right: 20%;
  }
}
.history-item__img {
  height: 200px;
  background-size: cover;
}
.history-item__info {
  padding: 16px;
  background-color: var(--white);
  height: 100%;
}
.history-item p {
  margin: 0;
  font-size: 14px;
  max-height: 3em;
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.history-item__more {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
}
.history-item__label {
  position: absolute;
  right: 0;
  top: 0;
  padding: 3px 14px;
  line-height: 1.5em;
  color: var(--white);
  background-color: #F6895B;
  border-radius: 0 20px;
}
.history-item__label.over {
  background-color: #008AAA;
}

.map {
  position: relative;
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .map {
    margin-top: 50px;
  }
}
.map h2 {
  text-align: center;
  color: var(--secondary);
  font-size: 32px;
  line-height: 152.489%; /* 48.796px */
  letter-spacing: 4.8px;
}
.map .map-container {
  position: absolute;
  top: 92px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
@media only screen and (max-width: 1280px) {
  .map .map-container img {
    width: auto;
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .map .map-container {
    top: 62px;
  }
}
.map .container {
  position: relative;
  margin-top: 44px;
  padding: 200px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 46px;
       column-gap: 46px;
  row-gap: 55px;
}
@media only screen and (max-width: 1280px) {
  .map .container {
    padding: 200px 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .map .container {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    row-gap: 20px;
  }
}

.map-item {
  text-align: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 26px 8%;
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 7px 10px 22.2px 1px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 768px) {
  .map-item {
    padding: 16px;
  }
}
.map-item__area {
  grid-column: 1/3;
}
.map-item__info {
  width: 100%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .map-item__info {
    width: 100%;
  }
}
.map-item__info:nth-of-type(2) .map-item__label {
  background-color: var(--primary);
}
.map-item__info:nth-of-type(2) .map-item__label.world {
  background-color: #568fe2;
}
.map-item__info:nth-of-type(3) .map-item__label {
  background-color: var(--green);
}
.map-item__label {
  color: var(--white);
  border-radius: 4px;
  padding: 0 11px;
  font-size: 12px;
  line-height: 1.5em;
  width: 100%;
  margin: auto;
}
.map-item__count {
  font-size: 36px;
  line-height: 152.489%; /* 54.896px */
  letter-spacing: 2.16px;
}
@media only screen and (max-width: 768px) {
  .map-item__count {
    font-size: 24px;
  }
}

.links {
  position: relative;
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .links {
    margin-top: 50px;
  }
}
.links h2 {
  text-align: center;
  color: var(--secondary);
  font-size: 32px;
  line-height: 152.489%; /* 48.796px */
  letter-spacing: 4.8px;
}

.links-more {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.links-list {
  margin-top: 50px;
  display: flex;
  gap: 70px;
}
@media only screen and (max-width: 1280px) {
  .links-list {
    padding: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .links-list {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

.links-item {
  position: relative;
  flex: 1;
  color: var(--primary);
  background-color: var(--white);
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .links-item {
    padding-right: 60px;
  }
}
.links-item strong {
  display: block;
  line-height: 152.489%; /* 24.398px */
  letter-spacing: 2.4px;
}
.links-item small {
  display: block;
  font-size: 11px;
  line-height: 152.489%;
}
.links-item .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--primary);
}
@media only screen and (max-width: 768px) {
  .links-item .icon {
    transform: translate(-20%, -50%);
  }
}

.search {
  background-color: #F1F4F6;
  border-radius: 9px;
  padding: 25px 95px;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.14em;
  color: var(--gray-deep);
}
.search.forworld {
  background-color: #fffffa;
}
.search.forworld .search__field {
  align-self: center;
}
@media only screen and (max-width: 768px) {
  .search {
    letter-spacing: 0;
    padding: 16px;
    flex-direction: column;
  }
}
.search__group {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .search__group {
    width: 100%;
  }
}
.search__row {
  display: flex;
  gap: 18px;
}
@media only screen and (max-width: 768px) {
  .search__row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }
}
.search__row + .search__row {
  margin-top: 18px;
}
@media only screen and (max-width: 768px) {
  .search__row + .search__row {
    margin-top: 8px;
  }
}
.search__label {
  width: 80px;
  text-align: right;
  font-weight: bold;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  .search__label {
    color: var(--primary-m3);
    width: auto;
    padding-bottom: 0;
    text-align: left;
  }
}
.search__field {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .search__field + .search__label {
    margin-top: 20px;
  }
}
.search__field-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.search__field-row + .search__field-row {
  margin-top: 18px;
}
@media only screen and (max-width: 768px) {
  .search__field-row + .search__field-row {
    margin-top: 8px;
  }
}
.search__field .form-input {
  flex: 1;
}
@media only screen and (max-width: 768px) {
  .search__field .form-input {
    flex: auto;
  }
}
.search__field .form-input input[type=text] {
  width: 100%;
  max-width: 345px;
}
.search__field .form-input--radio {
  padding: 2px 0;
}
.search__field .form-select {
  flex: 1;
  max-width: 170px;
}
@media only screen and (max-width: 768px) {
  .search__field .form-select {
    max-width: unset;
  }
}
.search__field .form-select select {
  width: 100%;
  max-width: 170px;
}
@media only screen and (max-width: 768px) {
  .search__field .form-select select {
    max-width: unset;
  }
}
.search__field .form-select + .btn {
  padding: 9px 12px;
}
.search__action {
  width: 100%;
  margin-top: 22px;
  display: flex;
  justify-content: center;
}
.search__action .btn--secondary {
  border-radius: 4px;
  background-color: var(--primary-m3);
  font-size: 20px;
  padding: 9px 39px;
}
.search__action .btn--secondary .icon {
  margin-right: 10px;
}

.forsearch {
  width: 100%;
}
.forsearch .bigg {
  flex: 3;
}
.forsearch .search__field .form-input input[type=text] {
  max-width: none;
}

.searchbtnn {
  gap: 30px;
}

.event-table-info .comm {
  font-size: 16px;
}

.event-map {
  --map-side-width: 510px;
  --map-side-height: 815px;
  margin-top: 50px;
  display: flex;
}
@media only screen and (max-width: 1280px) {
  .event-map {
    --map-side-width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .event-map {
    --map-side-width: 100%;
    --map-side-height: 400px;
  }
}
.event-map[data-full=true] {
  --map-side-height: 100vh;
}
@media only screen and (max-width: 768px) {
  .event-map[data-full=true] {
    --map-side-height: 50vh;
  }
}
.event-map--distribution .event-map-wrap {
  border-radius: 0px;
  width: calc(100% - var(--map-side-width) - 26px);
  max-height: var(--map-side-height);
}
@media only screen and (max-width: 768px) {
  .event-map--distribution .event-map-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .event-map--distribution .container {
    flex-direction: column;
  }
}
.event-map--distribution .event-map-side {
  display: flex;
  flex-direction: column;
  max-height: var(--map-side-height);
  position: relative;
}
.event-map[data-full=true] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  margin: 0;
}
.event-map[data-full=true] .container {
  max-width: unset;
  overflow: hidden;
  padding: 0;
}
.event-map[data-full=true] .event-map-panel-control {
  right: calc(var(--event-map-panel-width));
}
.event-map[data-full=true] .event-map-wrap,
.event-map[data-full=true] .event-map-panel {
  border-radius: 0;
}
.event-map[data-full=true] .event-map-panel {
  right: 0;
}
.event-map[data-full=true] img,
.event-map[data-full=true] iframe {
  height: 100%;
}
.event-map[data-collapse=true][data-full=true] .event-map-panel-control {
  right: 0;
}
.event-map[data-collapse=true] .event-map-panel {
  display: none;
}
.event-map[data-collapse=true] .event-map-panel-control {
  right: var(--container-padding);
}
.event-map[data-collapse=true] .event-map-panel-control .icon {
  transform: rotate(180deg);
}
.event-map .container {
  display: flex;
  width: 100%;
  position: relative;
}

.event-map-tool {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 13px;
  right: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.event-map-tool .btn {
  pointer-events: auto;
}
.event-map-tool .btn--icon {
  width: 39px;
  height: 39px;
  border-radius: 2px;
  background-color: var(--white);
}
.event-map-tool__screen {
  display: flex;
  flex-direction: column;
}
.event-map-tool__zoom {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.event-map-tool__type {
  display: flex;
  margin-bottom: 21px;
}
.event-map-tool__type .btn {
  min-width: 106px;
}
.event-map-tool .picture-swiper {
  --swiper-navigation-size: 20px;
  --swiper-theme-color: var(--primary-m3);
  position: relative;
  height: 120px;
  background-color: var(--white);
  pointer-events: auto;
  padding: 14px 48px;
  border-radius: 11px;
  box-shadow: 0 4px 5px rgba(41, 41, 41, 0.115);
}
@media only screen and (max-width: 768px) {
  .event-map-tool .picture-swiper {
    padding-inline: 36px;
    height: auto;
  }
}
.event-map-tool .picture-swiper .swiper-slide {
  display: block;
  color: #000;
}
.event-map-tool .picture-swiper .swiper-slide img {
  max-width: 100%;
  height: 70px;
  min-height: unset;
}
@media only screen and (max-width: 768px) {
  .event-map-tool .picture-swiper .swiper-slide img {
    height: 50px;
  }
}
.event-map-tool .picture-swiper .swiper-slide p {
  margin: 4px 0 0;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-map-tool .picture-swiper .swiper-button-prev,
.event-map-tool .picture-swiper .swiper-button-next {
  width: 28px;
}
@media only screen and (max-width: 768px) {
  .event-map-tool .picture-swiper .swiper-button-prev,
  .event-map-tool .picture-swiper .swiper-button-next {
    width: 20px;
  }
}

.event-map-wrap {
  position: relative;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.event-map-wrap img,
.event-map-wrap iframe {
  width: 100%;
  min-height: 495px;
  display: block;
}
.event-map-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}

.event-map-panel-control {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: var(--container-padding);
  top: 50%;
  width: 39px;
  height: 83px;
  z-index: 1;
  transform: translateY(-50%);
  background-color: var(--white);
  border-radius: 5px 0 0 5px;
  cursor: pointer;
}
[data-full=true] .event-map-panel-control[data-collapse=false] {
  right: 0;
}

.event-map-panel-control[data-collapse=true] {
  right: calc(var(--event-map-panel-width) + var(--container-padding));
}
.event-map-panel-control[data-collapse=true] .icon {
  transform: rotate(0deg);
}
.event-map-panel-control .icon {
  transform: rotate(180deg);
}

.event-map-panel {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  right: var(--container-padding);
  bottom: 0;
  top: 0;
  width: var(--event-map-panel-width);
  background-color: var(--white);
  border-radius: 0 9px 9px 0;
  box-shadow: 4px 4px 10px rgba(41, 41, 41, 0.115);
  color: var(--primary-m3);
  padding: 40px;
}
.event-map-panel[data-show=true] {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .event-map-panel {
    padding: 20px;
  }
}
.event-map-panel__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.event-map-panel__header h3 {
  font-size: 36px;
}
.event-map-panel__header .event-map-text strong {
  font-size: 28px;
}
.event-map-panel__list {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  width: 100%;
}
.event-map-panel__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 6px;
  border: 1px solid rgba(79, 132, 155, 0.4);
  padding: 10px;
}
.event-map-panel__item .event-map-text {
  margin-top: 8px;
  text-align: center;
}
.event-map-panel__item .event-map-text strong {
  font-size: 21px;
}
.event-map-panel__foreign {
  width: calc(100% + 20px);
  margin-top: 100px;
  overflow-y: auto;
  margin-inline: -10px;
  padding-inline: 10px;
}
.event-map-panel__row {
  margin-top: 20px;
}
.event-map-panel .progress {
  margin-top: 6px;
}
.event-map-panel .event-icon {
  width: 54px;
  height: 54px;
}
.event-map-panel .event-icon img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .event-map-panel .event-icon {
    width: 40px;
    height: 40px;
  }
}

.event-map-side {
  width: var(--map-side-width);
  background-color: #F1F1F1;
}
@media only screen and (max-width: 768px) {
  .event-map-side {
    width: 100%;
  }
}
.event-map-side__header {
  display: flex;
  align-items: center;
  padding: 15px 22px;
  background-color: var(--primary-m3);
  color: var(--white);
  height: 54px;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .event-map-side__header {
    height: unset;
  }
}
.event-map-side__nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: auto;
  padding: 34px 30px 18px;
  background-color: var(--white);
  box-shadow: 0 4px 4px rgba(41, 41, 41, 0.115);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .event-map-side__nav {
    padding: 6px 12px;
    gap: 6px;
  }
}
.event-map-side__nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-map-side__nav-item img {
  display: block;
  margin: 0 auto;
  height: 52px;
  width: 52px;
}
@media only screen and (max-width: 768px) {
  .event-map-side__nav-item img {
    width: 40px;
    height: 40px;
  }
}
.event-map-side__nav-item span, .event-map-side__nav-item strong {
  margin-top: 3px;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .event-map-side__nav-item span, .event-map-side__nav-item strong {
    font-size: 12px;
  }
}
.event-map-side__container {
  flex: 1;
  overflow-y: auto;
}
.event-map-side__wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 12px;
}
.event-map-side .side-stack {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 3px;
  padding: 10px 24px;
  gap: 12px;
}
@media only screen and (max-width: 768px) {
  .event-map-side .side-stack {
    padding: 12px;
  }
}
.event-map-side .side-stack__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: bold;
  font-size: 16px;
  color: var(--primary-m3);
}
.event-map-side .side-stack__info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--gray);
  font-size: 14px;
}
.event-map-side .side-stack__info-group {
  display: inline-flex;
  align-items: center;
}
.event-map-side .side-stack__picture {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 12px;
       column-gap: 12px;
  row-gap: 14px;
}
.event-map-side .side-stack__picture a {
  max-width: 133px;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .event-map-side .side-stack__picture a {
    width: calc(50% - 12px);
  }
}
.event-map-side .side-stack__picture img {
  display: block;
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-map-side .side-stack__picture p {
  margin: 4px 0 0;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-map-side .side-stack__divider {
  margin-bottom: 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--gray);
}

.spe2 {
  left: -39px;
}

.box-num {
  position: absolute;
  top: 10%;
  left: 20%;
}

.btn-num {
  border-radius: 50px;
  padding: 10px;
  background-color: rgba(211, 69, 69, 0.7);
  border: 3px hsla(0, 0%, 100%, 0.756) solid;
  color: #fff;
  font-size: 12px;
  height: 50px;
  display: inline-block;
  width: 50px;
  text-align: center;
  align-content: center;
}
.btn-num.c1 {
  background-color: rgba(255, 252, 57, 0.7);
  color: rgb(68, 21, 21);
}
.btn-num.c2 {
  background-color: rgba(255, 84, 57, 0.7);
}
.btn-num.c3 {
  background-color: rgba(196, 57, 255, 0.7);
}

.page-event {
  --event-map-panel-width: 342px;
  --container-padding: 50px;
}
@media only screen and (max-width: 768px) {
  .page-event {
    --event-map-panel-width: 260px;
    --container-padding: 20px;
  }
}

.page-event {
  background-image: linear-gradient(180deg, rgba(248, 247, 233, 0) 0%, #F8F7E9 100%);
}
.page-event.page-event--yellow {
  background-image: unset;
  background-color: #F8F7E9;
}
.page-event .container {
  max-width: 1353px;
  padding: 0 var(--container-padding);
}

.event-search h2 {
  color: var(--primary-m3);
  margin: 50px 0 14px;
  font-size: 36px;
  letter-spacing: 0.14em;
}

.event-table {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .event-table {
    margin-top: 40px;
  }
}
.event-table .table-container {
  margin-top: 26px;
  overflow: auto;
}
@media only screen and (max-width: 768px) {
  .event-table .table-container {
    margin-top: 10px;
  }
}
.event-table .table-container .table {
  min-width: 1200px;
  color: #616161;
}
@media only screen and (max-width: 768px) {
  .event-table .table-container .table {
    min-width: 600px;
  }
}
.event-table .table-container .event-tag {
  color: var(--white);
  padding: 5px 20px;
}
@media only screen and (max-width: 768px) {
  .event-table .table-container .event-tag {
    padding: 5px 10px;
  }
}
.event-table .table-container .flex-row {
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .event-table .table-container .flex-row {
    gap: 4px;
  }
}
.event-table .pager {
  margin-top: 40px;
}

.event-filter {
  display: flex;
  justify-content: space-between;
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  .event-filter {
    font-size: 16px;
  }
}
.event-filter__item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .event-filter__item {
    flex: 1;
    padding: 0 4px;
    flex-direction: column;
  }
}
.event-filter__item:not(.active) .event-tag {
  background-color: transparent;
}
.event-filter__item.active .event-tag {
  color: var(--white);
}
.event-filter__item .event-tag {
  border: 1px solid currentColor;
  margin-left: 10px;
  padding: 3px 38px;
  border-radius: 46px;
}
@media only screen and (max-width: 768px) {
  .event-filter__item .event-tag {
    padding: 3px;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

.event-table-info {
  margin-top: 20px;
  font-size: 22px;
  color: #676767;
}
@media only screen and (max-width: 768px) {
  .event-table-info {
    font-size: 16px;
  }
}
.event-table-info strong {
  margin-right: 34px;
}
@media only screen and (max-width: 768px) {
  .event-table-info strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
  }
}

.event-nav {
  position: sticky;
  top: 97px;
  display: flex;
  margin: 0 auto;
  text-align: center;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .event-nav {
    top: 60px;
  }
}
.event-nav .container {
  display: flex;
  width: 100%;
  max-width: 906px;
  padding: 0;
  background-color: var(--white);
  box-shadow: 1px 4px 8px rgba(41, 41, 41, 0.115);
}
.event-nav__item {
  flex: 1;
  position: relative;
}
.event-nav__item:hover .event-subnav {
  display: block;
}
.event-nav__item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--primary-m3);
}
.event-nav__btn {
  display: block;
  font-weight: bold;
  color: var(--primary-m3);
  padding: 15px;
}
@media only screen and (max-width: 768px) {
  .event-nav__btn {
    padding: 15px 0;
    font-size: 12px;
  }
}

.event-subnav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: var(--primary-m3);
}
.event-subnav__btn {
  display: block;
  padding: 5px;
  color: var(--white);
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .event-subnav__btn {
    padding: 15px 0;
    font-size: 12px;
  }
}

.event-hero {
  margin-top: -28px;
  background: url("../images/events/hero.jpg") no-repeat center center/cover;
}
@media only screen and (max-width: 768px) {
  .event-hero {
    margin-top: 0;
    background-size: auto 391px;
    background-position: top center;
  }
}
.event-hero .container {
  position: relative;
  height: 391px;
}
@media only screen and (max-width: 768px) {
  .event-hero .container {
    height: auto;
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
.event-hero .bread-crumbs {
  position: absolute;
  top: 40px;
  right: var(--container-padding);
  text-align: right;
  color: var(--white);
}
.event-hero .bread-crumbs a {
  color: var(--white);
}
.event-hero .event-views {
  position: absolute;
  left: var(--container-padding);
  bottom: 15px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  .event-hero .event-views {
    color: #000;
    bottom: -30px;
  }
}

.event-card {
  position: absolute;
  right: var(--container-padding);
  bottom: -38px;
  width: 653px;
  padding: 60px 36px 36px 45px;
  color: var(--white);
  background-color: var(--secondary-light);
  -webkit-clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 0% 100%, 0 70px);
          clip-path: polygon(60px 0%, 100% 0%, 100% 100%, 0% 100%, 0 70px);
}
@media only screen and (max-width: 768px) {
  .event-card {
    position: static;
    width: 100%;
    padding: 30px 18px 18px 20px;
    -webkit-clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%, 0 40px);
            clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%, 0 40px);
  }
}
.event-card__title {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .event-card__title {
    grid-template-columns: 1fr 80px;
  }
}
.event-card__title img {
  width: 60px;
}
.event-card__title h2 {
  margin-top: 14px;
  font-size: 36px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .event-card__title h2 {
    grid-column: 1/3;
  }
}
.event-card__img {
  width: 166px !important;
  grid-column-start: 2;
  grid-row: 1/3;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media only screen and (max-width: 768px) {
  .event-card__img {
    grid-row: 1/2;
    width: 100px !important;
    position: absolute;
    top: 10vh;
    right: 10vw;
  }
}
.event-card__footer {
  display: flex;
  align-items: center;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--white);
}
@media only screen and (max-width: 768px) {
  .event-card__footer {
    flex-direction: column;
  }
}
.event-card__info {
  flex: 1;
  -moz-column-count: 2;
       column-count: 2;
  gap: 20px;
}
.event-card__info p {
  margin: 0 0 4px;
  font-size: 14px;
}
.event-card__info strong {
  margin-left: 1em;
}
.event-card__media {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media only screen and (max-width: 768px) {
  .event-card__media {
    margin-top: 10px;
  }
}

.event-article {
  margin-top: 100px;
}
.event-article .container {
  display: flex;
  gap: var(--container-padding);
}
.event-article .container.column {
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .event-article .container {
    flex-direction: column;
  }
}
.event-article .article-column {
  flex: 1;
}
.event-article h3, .event-article h4 {
  font-weight: bold;
  color: var(--secondary-light);
}
.event-article h3 {
  font-size: 34px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .event-article h3 {
    justify-content: space-between;
  }
}
.event-article h3 .btn {
  margin-left: 47px;
  height: 44px;
  min-width: 238px;
  background-color: var(--secondary-light);
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .event-article h3 .btn {
    min-width: unset;
  }
}
.event-article h4 {
  font-size: 24px;
  margin: 0 0 14px;
}
.event-article h5 {
  margin: 80px 0 30px;
  font-size: 24px;
  color: var(--primary-m3);
}
@media only screen and (max-width: 768px) {
  .event-article h5 {
    margin-top: 50px;
  }
}
.event-article h6 {
  margin: 40px 0 0;
  font-size: 18px;
  color: var(--primary-m3);
}
@media only screen and (max-width: 768px) {
  .event-article h6 {
    margin-top: 20px;
  }
}
.event-article p {
  font-size: 14px;
  letter-spacing: 2px;
  color: #000;
  line-height: 161%;
}
.event-article p + h4 {
  margin-top: 40px;
}
.event-article p + .tab {
  margin-top: 80px;
}
.event-article p + .event-statistic {
  margin-top: 100px;
}
.event-article img {
  max-width: 100%;
}
.event-article ol {
  -moz-column-count: 2;
       column-count: 2;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.event-article .article-column.ori ol {
    -moz-column-count: auto;
    column-count: auto;
    gap: 10px;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 768px) {
  .event-article ol {
    -moz-column-count: 1;
         column-count: 1;
    gap: 0;
  }
}
.event-article ol li {
  position: relative;
  font-size: 18px;
  line-height: 29px;
  padding: 10px 0;
  list-style-position: inside;
  max-width: 98%;
  list-style: none;
}
.event-article .article-column.ori ol li {
    position: relative;
    font-size: 14px;
    line-height: 161%;
    padding: 10px 0;
    list-style: decimal;
    list-style-position: inside;
    max-width: 98%;
    color:black;
}
@media only screen and (max-width: 768px) {
  .event-article ol li span {
    display: inline-block;
  }
}
.event-article ol li .btn {
  position: absolute;
  right: 0px;
  bottom: 4px;
}
.event-article ol li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  width: 100%;
  background-color: var(--primary-m3);
  display: table;
  clear: both;
}
.event-article .article-column.ori ol li::after {
    display: none;
}
.event-article .iframe {
  width: 100%;
  outline: none;
  border: 0;
  border-radius: 23px;
}
.event-article .tab {
  margin-bottom: 40px;
}
.event-article + .event-map {
  margin-top: 0;
}

.event-picture {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  position: relative;
}
.event-picture__item {
  width: calc(33.33% - 10px);
  margin-bottom: 10px;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .event-picture__item {
    width: calc(50% - 10px);
  }
}
.event-picture__item:hover p {
  opacity: 1;
}
.event-picture__item img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.event-picture__item p {
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  align-items: center;
  justify-content: center;
  overflow: auto;
  margin: 0;
  padding: 20px;
  color: var(--white);
  background-color: rgba(79, 132, 155, 0.7);
  opacity: 0;
  transition: opacity 200ms ease-in;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .event-picture__item p {
    font-size: 12px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 10px;
  }
}

.event-load-more {
  margin-top: 68px;
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .event-load-more {
    margin-top: 40px;
  }
}
.event-load-more .btn {
  background-color: #5373E1;
  min-width: 263px;
  height: 48px;
}
@media only screen and (max-width: 768px) {
  .event-load-more .btn {
    min-width: 100px;
  }
}

.event-keyword {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 11px;
  min-height: 195px;
  padding: 38px;
}
@media only screen and (max-width: 768px) {
  .event-keyword {
    padding: 20px;
  }
}
.event-keyword .tags {
  margin-top: 22px;
  gap: 24px;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .event-keyword .tags {
    margin-top: 10px;
    gap: 12px;
  }
}
.event-keyword .tag {
  display: flex;
  align-items: center;
  background-color: var(--secondary-light);
  border-radius: 7px;
  padding: 8px 37px;
  gap: 9px;
  font-size: 18px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .event-keyword .tag {
    padding-inline: 16px;
    font-size: 14px;
  }
}

.event-statistic {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .event-statistic {
    flex-direction: column;
    gap: 20px;
  }
}
.event-statistic h3 {
  flex: 1;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .event-statistic h3 {
    margin-bottom: 0px;
  }
}
.event-statistic .statistic-card {
  flex: 1;
  max-width: 300px;
  padding: 11px 16px 26px;
  color: var(--secondary-light);
  font-weight: bold;
  font-size: 20px;
  border-radius: 19px;
  background-color: var(--white);
  box-shadow: 2px 7px 15px #DBE6EB;
}
@media only screen and (max-width: 768px) {
  .event-statistic .statistic-card {
    max-width: unset;
    padding: 16px;
  }
}
.event-statistic .statistic-card__count {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--secondary-light);
  padding-bottom: 24px;
  margin-bottom: 12px;
  height: 97px;
}
@media only screen and (max-width: 768px) {
  .event-statistic .statistic-card__count {
    height: 50px;
    padding-bottom: 10px;
  }
}
.event-statistic .statistic-card__count strong {
  font-size: 50px;
}
@media only screen and (max-width: 768px) {
  .event-statistic .statistic-card__count strong {
    font-size: 32px;
  }
}
.event-statistic .statistic-card__count img {
  display: block;
}
@media only screen and (max-width: 768px) {
  .event-statistic .statistic-card__count img {
    height: 40px;
  }
}
.event-statistic.forsingle .statistic-card:nth-child(1) {
  color: #8c53e1;
}
.event-statistic.forsingle .statistic-card:nth-child(1) .statistic-card__count {
  border-bottom: 1px solid #8c53e1;
}
.event-statistic.forsingle .statistic-card:nth-child(2) {
  color: #2537aa;
}
.event-statistic.forsingle .statistic-card:nth-child(2) .statistic-card__count {
  border-bottom: 1px solid #2537aa;
}
.event-statistic.forsingle .statistic-card:nth-child(3) {
  color: #31af51;
}
.event-statistic.forsingle .statistic-card:nth-child(3) .statistic-card__count {
  border-bottom: 1px solid #31af51;
}
.event-statistic.forsingle .statistic-card:nth-child(4) {
  color: #e19a53;
}
.event-statistic.forsingle .statistic-card:nth-child(4) .statistic-card__count {
  border-bottom: 1px solid #e19a53;
}
.event-statistic.forsingle .statistic-card:nth-child(5) {
  color: #aa3525;
}
.event-statistic.forsingle .statistic-card:nth-child(5) .statistic-card__count {
  border-bottom: 1px solid #aa3525;
}
.event-statistic.forsingle .statistic-card:nth-child(6) {
  color: #2570aa;
}
.event-statistic.forsingle .statistic-card:nth-child(6) .statistic-card__count {
  border-bottom: 1px solid #2570aa;
}

.event-report {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--primary-m3);
}
@media only screen and (max-width: 768px) {
  .event-report {
    flex-direction: column;
  }
}
.event-report h5 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  width: 175px;
}
@media only screen and (max-width: 768px) {
  .event-report h5 {
    width: unset;
  }
}
.event-report h5 small {
  font-size: 16px;
  font-weight: 400;
}
.event-report .report-all {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.event-report .report-all table {
  width: 100%;
  display: inline-table;
}
.event-report .report-all table tr th:first-child {
  min-width: 70px;
  width: 15%;
}
.event-report table th, .event-report table td {
  padding: 6px 8px;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  .event-report table th {
    padding-left: 0;
    white-space: nowrap;
  }
}
.event-report .icon {
  min-width: 32px;
}
@media only screen and (max-width: 768px) {
  .event-report .icon {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
}

.event-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media only screen and (max-width: 768px) {
  .event-story {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.event-story__item iframe {
  width: 100%;
}

.event-more {
  margin-top: 100px;
}
.event-more h4 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--secondary-light);
}
.event-more__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .event-more__list {
    flex-wrap: wrap;
  }
}
.event-more__item {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  max-width: 235px;
  height: 132px;
  border-radius: 10px;
  background-color: var(--white);
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .event-more__item {
    min-width: 100px;
    height: 70px;
  }
}
.event-more__item.typhoon {
  background-image: url("../images/events/typhoon.png");
}
.event-more__item.infrared {
  background-image: url("../images/events/infrared.png");
}
.event-more__item.radar {
  background-image: url("../images/events/radar.png");
}
.event-more__item.rainfall {
  background-image: url("../images/events/rainfall.png");
}
.event-more__label {
  margin-left: 90px;
  font-weight: bold;
  color: var(--secondary-light);
  letter-spacing: 2.4px;
}
@media only screen and (max-width: 768px) {
  .event-more__label {
    letter-spacing: 0;
    margin-left: 45px;
  }
}
.event-more__btn {
  position: absolute;
  right: -15px;
  bottom: 20px;
  width: 31px;
  height: 31px;
  background: url("../images/icons/arrow-right-secondary.svg") no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .event-more__btn {
    right: -10px;
    bottom: -10px;
  }
}

.event-map-side {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  max-height: 500px;
  overflow: hidden;
  opacity: 1;
  height: 100%;
}
.event-map-side.collapsed {
  max-height: 0;
  opacity: 0;
  display: none;
}

.right-box {
  position: relative;
}

.toggle-btn {
  background-color: var(--primary-m3);
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  left: -36px;
  top: 40%;
  height: 130px;
  border-radius: 20px 0px 0px 20px;
}
.toggle-btn span {
  transition: transform 0.3s ease-in-out;
  display: block;
}
@media only screen and (max-width: 768px) {
  .toggle-btn {
    display: none;
  }
}
.toggle-btn.collapsed span {
  display: block;
}

.box-overlay {
  position: absolute;
  top: 0;
  left: 50px;
  width: calc(100% - 100px);
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .box-overlay {
    width: calc(100% - 40px);
    left: 20px;
  }
}
.box-overlay p {
  margin-bottom: 20px;
}
.box-overlay button {
  background-color: var(--primary-m3);
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.hiddenbox {
  display: none;
}

.search-none {
  text-align: center;
  margin-top: 5vh;
}
.search-none img {
  width: 100px;
}
.search-none h4 {
  margin-bottom: 0px;
}
.search-none h5 {
  margin-top: 10px;
}

.eventlink-box {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .eventlink-box {
    flex-direction: column;
  }
}
.eventlink-box a {
  width: 48%;
  position: relative;
  font-size: 18px;
  line-height: 29px;
  padding: 20px 0;
  margin-bottom: 20px;
  list-style-position: inside;
}
@media only screen and (max-width: 768px) {
  .eventlink-box a {
    width: 100%;
  }
}
.eventlink-box a:hover .btn {
  background-color: #136883;
}
.eventlink-box a span {
  padding: 20px 0px;
}
.eventlink-box a .btn {
  position: absolute;
  right: 0px;
  bottom: -13px;
}
.eventlink-box a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  width: calc(100% - 90px);
  background-color: var(--primary-m3);
  display: table;
  clear: both;
}

.chat-faq-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chat-faq {
  margin-bottom: 10px;
}

.chat-faq-checkbox {
  display: none;
}

.chat-faq-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #4f849b;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

.chat-plus-minus {
  font-size: 20px;
}

.chat-faq-checkbox:checked + .chat-faq-label .chat-plus-minus {
  content: "-";
}

.chat-faq-checkbox:checked + .chat-faq-label {
  background-color: #0093B2;
}

.chat-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 10px;
  border-left: 2px solid #0093B2;
}
.chat-faq-content label {
  display: block;
  margin-bottom: 10px;
}

.chat-faq-checkbox:checked ~ .chat-faq-content {
  max-height: none;
  padding: 10px 10px;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}
.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
  border: #747474 1px solid;
  border-radius: 4px;
}
.styled-checkbox:hover + label:before {
  background: #0093b2;
}
.styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.styled-checkbox:checked + label:before {
  background: #0093b2;
}
.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

.chat-moreinfo {
  background-color: #dff1f2;
  border-radius: 6px;
  padding: 5%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chat-moreinfo .single {
  width: 40%;
  margin-bottom: 10px;
  display: flex;
  gap: 20px;
}
.chat-moreinfo .single .color {
  width: 20px;
  height: 20px;
  background-color: #4e5ec5;
  border-radius: 2px;
}

.chat-carousel {
  overflow: hidden;
  width: 100%;
  height: 400px;
  position: relative;
}
.chat-carousel__slides {
  display: flex;
  width: calc(12 * 25%);
  transition: transform 1s ease;
  gap: 10px;
}
.chat-carousel__slides .history-item {
  width: 25%;
  max-width: 300px;
}
.chat-carousel__slides__slide {
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-carousel__slides__slide img {
  width: 80%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
.chat-carousel__prev, .chat-carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.chat-carousel__prev {
  left: 10px;
}
.chat-carousel__next {
  right: 10px;
}

.single-event {
  background: #fff;
  padding: 3% 5%;
  border-radius: 10px;
}
.single-event p {
  font-size: 16px;
  color: #333;
}

.bg-world {
  background-image: url(../images/svg/world.svg);
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: -220%;
}

.box-tags2 .box-tags-single {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.box-tags2 .box-tags-single a {
  border: 1px solid var(--secondary);
  padding: 6px 20px;
  border-radius: 6px;
}
.box-tags2 .box-tags-single a:hover {
  background-color: var(--secondary);
  color: #fff;
  transition-duration: 300ms;
}

.location-hero {
  margin-top: 50px;
}
.location-hero h2 {
  color: var(--primary-m3);
  font-size: 36px;
}

.location-map {
  margin-top: 14px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
}

.location {
  margin-top: 46px;
}
.location__bar {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .location__bar {
    flex-direction: column;
    gap: 20px;
  }
}
.location__filter {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .location__filter {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .location__filter .form-select {
    width: 100%;
  }
}
.location__filter select {
  min-width: 170px;
  box-shadow: 3px 4px 8px rgba(169, 167, 167, 0.2509803922);
}
@media only screen and (max-width: 768px) {
  .location__filter select {
    min-width: unset;
    width: 100%;
  }
}
.location__search {
  display: flex;
}
.location__search .form-input {
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  .location__search .form-input {
    flex: 1;
  }
}
.location__search .form-input input {
  box-shadow: 0 4px 3px rgba(0, 0, 0, 0.168627451) inset;
  width: 345px;
}
@media only screen and (max-width: 768px) {
  .location__search .form-input input {
    width: 100%;
  }
}
.location__search .btn .icon {
  margin-right: 10px;
}

.location-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 0;
  font-size: 21px;
  line-height: 25px;
  color: var(--primary-m3);
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .location-tab {
    flex: 1;
    font-size: 16px;
  }
}
.location-tab.active {
  position: relative;
}
.location-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: var(--primary-m3);
}

.location-content {
  display: none;
  margin-top: 33px;
}
.location-content .pager {
  margin: 42px;
}

.location-taiwan {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 45px;
       column-gap: 45px;
  row-gap: 66px;
}
@media only screen and (max-width: 768px) {
  .location-taiwan {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 20px;
  }
}
.location-taiwan__item {
  cursor: pointer;
}
.location-taiwan__item:hover .location-taiwan__img {
  transform: translateY(-5px);
  background-image: linear-gradient(180deg, #BF854F 0%, #783402 100%);
  box-shadow: 2px 4px 8px 0px rgba(22, 24, 77, 0.2509803922);
}
.location-taiwan__img {
  border-radius: 24px;
  overflow: hidden;
  background-image: linear-gradient(180deg, #2F4B6D 0%, #5A92D3 100%);
  transition: all 200ms ease-in;
}
.location-taiwan__img img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.location-taiwan__label {
  margin-top: 9px;
  font-size: 21px;
  color: var(--primary-m3);
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .location-taiwan__label {
    font-size: 16px;
  }
}

.location-global {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 61px;
}
@media only screen and (max-width: 768px) {
  .location-global {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 30px;
  }
}
.location-global__item {
  margin-top: 34px;
  padding: 0 22px 28px;
  background: url("../images/location/bg.png") no-repeat #fff;
  background-size: cover;
  box-shadow: 4px 6px 18.5px 0px rgba(167, 172, 174, 0.2509803922);
  border-radius: 17px;
  transition: all 200ms ease-in;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .location-global__item {
    padding: 0 12px 16px;
  }
}
.location-global__item:hover {
  box-shadow: 4px 6px 18.5px 0px #A7ACAE;
}
.location-global__img {
  margin-top: -34px;
}
.location-global__img img {
  display: block;
  width: 100%;
  max-width: 168px;
}
@media only screen and (max-width: 768px) {
  .location-global__img img {
    width: 80%;
  }
}
.location-global__label {
  margin-top: 43px;
  font-size: 21px;
  color: var(--primary-m3);
}
@media only screen and (max-width: 768px) {
  .location-global__label {
    margin-top: 20px;
    font-size: 16px;
  }
}

.link {
  color: var(--primary-m3);
}
.link h2 {
  margin-top: 31px;
  color: var(--secondary-light);
  font-weight: bold;
  font-size: 34px;
}

.link-wrap {
  margin-top: 57px;
  display: flex;
}
.link-wrap .pager {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .link-wrap .pager {
    font-size: 14px;
  }
}

.column-tab {
  flex: 0 0 380px;
}
@media only screen and (max-width: 768px) {
  .column-tab {
    flex: 0 0 auto;
    max-width: 33%;
    padding-right: 20px;
  }
}
.column-tab__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 257px;
  min-height: 50px;
  font-size: 18px;
  background-color: #F8FCFF;
  border: 1px solid white;
  cursor: pointer;
  transition: all 200ms ease-in;
}
@media only screen and (max-width: 768px) {
  .column-tab__item {
    width: unset;
    padding: 5px 10px;
    font-size: 14px;
  }
}
.column-tab__item.active {
  position: relative;
  background-color: var(--primary-m3);
  color: var(--white);
}
.column-tab__item.active::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  width: 16px;
  height: 16px;
  background-color: var(--primary-m3);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media only screen and (max-width: 768px) {
  .column-tab__item.active::after {
    right: -8px;
    width: 8px;
  }
}

.column-container {
  flex: 1;
}

.column-content {
  display: none;
}
.column-content.active {
  display: block;
}

.link-list {
  gap: 60px;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  .link-list {
    -moz-column-count: 1;
         column-count: 1;
    gap: 0;
  }
}
.link-list li {
  position: relative;
  font-size: 18px;
  line-height: 29px;
  padding: 10px 0;
  list-style-position: inside;
  list-style: none;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .link-list li {
    font-size: 14px;
  }
}
.link-list li span {
  flex: 5;
}
.link-list li .btn {
  flex: 1;
  float: right;
  height: 40px;
  min-width: 109px;
}
@media only screen and (max-width: 768px) {
  .link-list li .btn {
    min-width: unset;
    font-size: 14px;
    padding: 3px 7px;
  }
}
.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  width: 100%;
  background-color: var(--primary-m3);
  display: table;
  clear: both;
}
.link-list li::after {
  content: "";
  display: table;
  clear: both;
}

.faq {
  margin-top: 31px;
}
.faq .container {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .faq .container {
    flex-direction: column;
    gap: 20px;
  }
}
.faq h2 {
  color: var(--secondary-light);
  font-weight: bold;
  font-size: 34px;
}

.faq-title {
  flex: none;
  width: 337px;
}
.faq-title__en {
  transform: translateX(-15px);
}
@media only screen and (max-width: 768px) {
  .faq-title__en {
    display: none;
  }
}
.faq-title__en img {
  max-width: 100%;
}

.faq-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.faq-item__q {
  display: flex;
  padding: 9px 24px;
  min-height: 50px;
  gap: 12px;
  line-height: 1.5em;
  color: white;
  background-color: var(--primary-m3);
  align-items: center;
  cursor: pointer;
}
.faq-item__q strong, .faq-item__q svg {
  flex: 0 0 auto;
}
.faq-item__q strong {
  font-family: "Inter";
  font-size: 27px;
}
.faq-item__q h3 {
  flex: 1;
  font-size: 18px;
}
.faq-item__a {
  display: none;
  padding: 17px 30px;
  background-color: #F5F7FA;
  color: var(--gray);
  font-size: 14px;
  line-height: 16.8px;
  letter-spacing: 0.14em;
}

.plus2 {
  transform: rotate(90deg);
}

.btn-plus {
  width: 50px;
  text-align: center;
}
.btn-plus::before {
  content: "+";
  font-size: 30px;
}

.faq-item.active .faq-item__q .btn-plus::before {
  content: "-";
  font-size: 40px;
}

:root {
  --flash-e1: #0070AF;
  --bgg1: rgb(255,255,255);
  --bgg2: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg3: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg4: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg5: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

body.flash {
  background-color: #Fff !important;
  background-image: none;
}

.page-flash1 {
  --flash-bg: url(../../images/SVG/flash-1.svg);
}

.page-flash2 {
  --flash-bg: url(../../images/SVG/flash-2.svg);
  --flash-e1: #954310;
  --bgg1: rgb(255,255,255);
  --bgg2: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg3: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg4: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg5: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.page-flash3 {
  --flash-bg: url(../../images/SVG/flash-3.svg);
  --flash-e1: #3d382f;
  --bgg1: rgb(255,255,255);
  --bgg2: -moz-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg3: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg4: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  --bgg5: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.event-article h3 {
  color: var(--flash-e1);
}

.flash-banner {
  min-height: 30vh;
  width: 100%;
  background-size: cover;
  position: relative;
  background-position: center;
}
.flash-banner::after {
  width: 100%;
  position: absolute;
  bottom: 0px;
  height: 40%;
  left: 0px;
  content: "";
  background: var(--bgg1);
  background: var(--bgg2);
  background: var(--bgg3);
  background: var(--bgg4);
  filter: var(--bgg5);
}
.flash-info {
  background-size: auto;
  min-height: 300px;
  position: relative;
}
.flash-info::before {
  width: 100%;
  position: absolute;
  bottom: 0px;
  height: 40%;
  left: 0px;
  content: "";
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.flash-info h1 {
  color: var(--flash-e1);
}
.flash-info .spimgg {
  position: relative;
}
.flash-info .social {
  display: flex;
  text-align: right;
  gap: 20px;
}
.flash-info .social a {
  background-color: var(--flash-e1);
  border-radius: 100px;
  border: 2px solid var(--flash-e1);
}
.flash-info .info {
  position: absolute;
  background-color: #fff;
  top: -10vh;
  left: 50%;
  transform: translate(-50%);
  padding: 3%;
  border-radius: 6px;
}
@media only screen and (max-width: 768px) {
  .flash-info .info {
    width: 96%;
  }
  .flash-info .info h3 {
    font-size: 20px;
  }
}
.flash-info .info p {
  line-height: 1.5;
}

.flash-box {
  background-color: var(--flash-e1);
  width: calc(100% + 80px);
  padding: 5% 10% 5% 20px;
  color: #fff;
  margin-left: -20px;
  position: relative;
  border-radius: 6px;
}
@media only screen and (max-width: 768px) {
  .flash-box {
    width: 100%;
    margin-left: 0px;
  }
}
.flash-box h3 {
  color: #fff;
}
.flash-box p {
  color: #fff;
}
.flash-box ::after {
  content: var(--flash-bg);
  position: absolute;
  right: -5vw;
  width: 10vw;
  bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .flash-box ::after {
    width: 40vw;
    right: -25vw;
    opacity: 0.6;
  }
}

.nb-masonry {
  -moz-column-count: 4;
       column-count: 4; /* Number of columns in masonry layout */
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.nb-masonry-item {
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: pointer;
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* Prevent items from breaking inside columns */
  position: relative;
}

.nb-masonry-item img {
  width: 100%;
  height: auto; /* Allows for images with different heights */
  display: block;
  transition: transform 0.3s ease;
}

.nb-masonry-item:hover img {
  transform: scale(1.05);
}

.nb-masonry-item .nb-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nb-masonry-item:hover .nb-description {
  opacity: 1;
}

#loadMore {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: block;
  margin: auto;
  margin-top: 20px;
}

#loadMore:hover {
  background-color: #0056b3;
}

/* Popup Modal Styles */
.nb-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.nb-popup-content {
  position: relative;
  background: #fff;
  padding: 1rem;
  max-width: 600px;
  width: 90%;
}

.nb-popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

.nb-popup-description {
  margin-top: 0.5rem;
  text-align: center;
}

.nb-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
}

.nb-masonry {
  -moz-column-count: 4;
       column-count: 4; /* Number of columns in masonry layout */
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.nb-masonry-item {
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: pointer;
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* Prevent items from breaking inside columns */
  position: relative;
}

.nb-masonry-item img {
  width: 100%;
  height: auto; /* Allows for images with different heights */
  display: block;
  transition: transform 0.3s ease;
}

.nb-masonry-item:hover img {
  transform: scale(1.05);
}

.nb-masonry-item .nb-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nb-masonry-item:hover .nb-description {
  opacity: 1;
}

#loadMore {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

#loadMore:hover {
  background-color: #0056b3;
}

/* Popup Modal Styles */
.nb-popup {
  display: none;
  position: fixed;
  top: 0;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.nb-popup-content {
  position: relative;
  background: #fff;
  padding: 1rem;
  max-width: 600px;
  width: 90%;
}

.nb-popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

.nb-popup-description {
  margin-top: 0.5rem;
  text-align: center;
}

.nb-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
}

.nb2-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Four equal columns */
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
}

.nb2-masonry-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  width: 100%;
  aspect-ratio: 1; /* Creates a square container for uniformity */
}

.nb2-masonry-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* Ensures image fills the square, cropping as necessary */
  transition: transform 0.3s ease;
}

.nb2-masonry-item:hover img {
  transform: scale(1.05);
}

.nb2-masonry-item .nb2-description {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nb2-masonry-item:hover .nb2-description {
  opacity: 1;
}

#loadMore {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

#loadMore:hover {
  background-color: #0056b3;
}

/* Popup Modal Styles */
.nb2-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.nb2-popup-content {
  position: relative;
  background: #fff;
  padding: 1rem;
  max-width: 600px;
  width: 90%;
}

.nb2-popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

.nb2-popup-description {
  margin-top: 0.5rem;
  text-align: center;
}

.nb2-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
}/*# sourceMappingURL=index.css.map */