@import "../css/swiper-bundle.css";

@layer base {
  main a {
    text-decoration: underline;
  }

  main a:hover {
    text-decoration: none;
  }

  #content ul {
    margin: 0 0 30px;
    counter-reset: revert;
    list-style: none;
  }

  #content ul {
    list-style-type: disc;
  }

  #content ul > li {
    margin-left: 24px;
    padding-left: 0px;
    margin-bottom: 10px;
    position: relative;
  }

  #content ul > li::marker {
    color: var(--primary-blue);
  }

  #content ul > li > ul > li::marker {
    color: #91c000;
  }

  #content ul > li > ul > li > ul > li::marker {
    color: #a6a6a6;
  }

  #content p {
    margin-bottom: 1.66em;
  }
}

#content {
  line-height: 1.556em;
  position: relative;
}

h2,
h3,
h4,
h5 {
  line-height: 1.2;
}

h2,
.section-title {
  color: var(--primary-color);
  font-size: 1.9em;
  line-height: 0.948;
  font-weight: 700;
  margin-bottom: 0.66em;
}

.section-title {
  position: relative;
  z-index: 1;
}

h3 {
  color: var(--primary-dark);
  font-size: 1.222em;
  font-weight: 600;
  margin-bottom: 0.9em;
}

#content h4 {
  color: var(--primary-light);
  font-size: 1.111em;
  margin-bottom: 1em;
}

#content h5 {
  color: var(--purple);
  font-size: 1em;
  margin-bottom: 1.111em;
}

#content img {
  max-width: 100%;
}

#content hr {
  line-height: 0;
  margin: 2.22em 0;
  height: 4px;
  width: 100%;
  border: none;
  border-top: 1px dotted rgba(0, 0, 0, 0.45);
}

#content ul.noBullet {
  margin-left: 0;
  list-style-type: none;
}

#content ul.noBullet li {
  padding-left: 0;
  margin-left: 0;
}

#content ul.square {
  list-style-type: square;
}

#content ul.circle {
  list-style-type: circle;
}

#content ul li ul,
#content ol li ul {
  margin: 10px 0;
}

#content ol {
  list-style: decimal;
  counter-reset: revert;
  margin: 0 0 1.66em 1.66em;
}

#content ol.lowerAlpha {
  list-style-type: lower-alpha;
}

#content ol.upperAlpha {
  list-style-type: upper-alpha;
}

#content ol.lowerRoman {
  list-style-type: lower-roman;
}

#content ol.upperRoman {
  list-style-type: upper-roman;
}

#content ol.lowerGreek,
#content ol[type="α"] {
  list-style-type: lower-greek;
}

#content ol p {
  margin-bottom: 15px;
}

#content ol > li {
  padding-left: 4px;
  margin-bottom: 10px;
}

#content ol li ol,
#content ul li ol {
  margin: 10px 0 10px 24px;
}

#content ol > li > ol > li,
#content ol > li > ol > li > ol > li,
#content ul > li > ol > li {
  padding-left: 4px;
}

#content div.rwd-table-wrap {
  margin-bottom: 2.22em;
  position: relative;
  clear: both;
}

#content div.rwd-table-wrap > div {
  position: relative;
  width: 100%;
  overflow: auto;
}

#content div.rwd-table-wrap:before,
#content div.rwd-table-wrap:after {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  background: linear-gradient(
    90deg,
    rgba(238, 238, 236, 0) 0%,
    rgba(238, 238, 236, 0.4) 50%,
    rgba(238, 238, 236, 0.8) 100%
  );
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease 0s;
}

#content div.rwd-table-wrap:before {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#content div.rwd-table-wrap.scroll-left:before,
#content div.rwd-table-wrap.scroll-right:after {
  opacity: 1;
}

#content div.rwd-table-wrap:after {
  right: 0;
}

#content div.rwd-table-wrap > div::-webkit-scrollbar {
  width: 15px;
}

#content div.rwd-table-wrap > div::-webkit-scrollbar-track {
  background-color: #e6f3e0;
  border-radius: 0;
}

#content div.rwd-table-wrap > div::-webkit-scrollbar-thumb {
  background-color: #a4e368;
  border-radius: 0;
}

#content div.rwd-table-wrap > div > table {
  width: 100%;
  min-width: 640px;
  margin-bottom: 0;
}

#content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 2.22em;
  padding: 0;
}

#content table .empty {
  text-indent: -9999px;
  font-size: 0;
}

#content table thead th {
  vertical-align: top;
  text-align: left;
  font-size: 1.111em;
  font-weight: 600;
}

#content table thead tr > th:first-child {
  padding-left: 20px;
}

#content table tbody th,
#content table tbody td {
  border-bottom: 1px solid rgba(3, 86, 62, 0.1);
}

#content table tbody tr:first-child th,
#content table tbody tr:first-child td {
  border-top: 1px solid var(--secondary-light);
}

#content table tbody tr:last-child th,
#content table tbody tr:last-child td {
  border-bottom: none;
}

#content table tbody th {
  padding: 10px 20px 11px;
  font-weight: 600;
  text-align: left;
  color: #fff;
  background-color: var(--primary-light);
  vertical-align: top;
}

#content table.vertical-table tbody th {
  background-color: var(--primary-blue);
}

#content table tbody td {
  padding: 10px 20px 11px;
  vertical-align: top;
}

#content table tr > th:first-child,
#content table tr > td:first-child {
  padding-left: 20px;
}

#content table.no-style {
  border: none;
  width: auto;
}

#content table.no-style thead tr th,
#content table.no-style tbody tr td,
#content table.no-style tbody tr th {
  border: none;
  background: transparent;
  padding: 0 5px 5px 0;
  vertical-align: top;
}

#content table.no-style tr > td:first-child {
  padding-left: inherit;
}

#content table.no-style th {
  font-weight: 700;
  color: var(--dark);
}

/*style-table*/
#content table {
  border-bottom: 1px solid var(--secondary-light);
}

#content table.style-table thead tr:first-child th:first-child {
  border-top-left-radius: 10px;
}

#content table.style-table thead tr:first-child th:last-child {
  border-top-right-radius: 10px;
}

#content table.style-table thead th {
  color: #fff;
  background: var(--primary-blue);
  padding: 11px 20px;
  vertical-align: top;
}

#content table.style-table tbody tr td.subhead {
  background-color: var(--secondary-light);
  color: var(--primary-dark);
}

#content table.style-table tbody tr:nth-child(2n) td {
  background-color: #f5f5f5;
}

#content table.style-table tbody tr:nth-child(2n + 1) td {
  background-color: transparent;
}

#content .common-btn {
  position: relative;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 10px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  background-color: var(--grey);
}

#content .common-btn:hover {
  background-color: var(--yellow);
  color: var(--grey);
}

#content .common-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 30px;
  line-height: 30px;
  color: var(--primary-blue);
  font-weight: 700;
  background-color: var(--secondary-blue);
  transition: background-color 0.3s ease 0s;
}

#content .common-link:hover {
  background-color: var(--primary-blue);
  color: var(--secondary-blue);
}

#content table + p.remarks {
  margin-top: -15px;
}

#content .remarks {
  font-size: 0.833em;
  line-height: 1.222rem;
  color: #6e6e6e;
}

#content .f-left-img {
  float: left;
  margin: 0 1.66em 1.66em 0;
}

#content .f-right-img {
  float: right;
  margin: 0 0 1.66em 1.66em;
}

#content .f-left-img,
#content .f-right-img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  max-width: 290px;
  border-radius: 20px;
  transition: margin 0.3s ease 0s, border-radius 0.3s ease 0s;
}

#content .f-left-img img,
#content .f-right-img img {
  width: 100%;
}

/* Create a custom checkbox */
.checkBoxWrap .checkBox {
  position: relative;
  padding-right: 20px;
  display: inline-block;
  min-width: 120px;
}

.checkBoxWrap .checkBox label {
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
}

.checkBoxWrap.check-box .checkBox label.focus {
  color: #1dbe69;
}

.checkBoxWrap.check-box .checkBox {
  margin-bottom: 10px;
}

#filtersPanel .checkBoxWrap.check-box .checkBox {
  display: block;
}

.checkBoxWrap .checkBox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkBoxWrap.check-radio .checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  transition: all 0.25s ease 0s;
}

.checkboxContainer.disabled_control .checkmark,
.checkBoxWrap.disabled_control .checkmark {
  opacity: 0.3;
}

.checkBoxWrap.check-box .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
}

/* On mouse-over, add a grey background color */
.checkBoxWrap:hover input ~ .checkmark {
  /* background-color: #ccc; */
}

.checkBoxWrap label {
  transition: color 0.25s ease 0s;
}

.checkBoxWrap label:hover {
  color: #148347;
}

/* When the checkbox is checked, add a blue background */
.checkBoxWrap input:checked ~ .checkmark {
  /* background-color: #2196F3; */
  border-color: #058752;
}

.checkBoxWrap input:checked ~ .text {
  color: #058752;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkBoxWrap:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkBoxWrap input:checked ~ .checkmark:after {
  opacity: 1;
}

/* Style the checkmark/indicator */
.checkBoxWrap.check-radio .checkmark:after {
  left: 3px;
  top: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1dbe69;
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.25s ease 0s;
}

.checkBoxWrap.check-box .checkmark:after {
  content: "";
  position: absolute;
  height: 6px;
  width: 10px;
  top: 4px;
  left: 3px;
  border-left: 2px solid #058752;
  border-bottom: 2px solid #058752;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.25s ease 0s;
}

/* custom-select css, The container must be positioned relative: */
.custom-select {
  position: relative;
  min-width: 100px;
}

.custom-select label {
  display: none;
}

.custom-select select {
  display: none !important;
  /*hide original SELECT element: */
}

.select-selected {
  background-color: transparent;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 18px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--primary-blue) transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent var(--primary-dark) transparent;
  top: 12px;
}

/* style the items (options), including the selected item: */
.select-selected {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 6px 25px 6px 20px;
  cursor: pointer;
  background-color: #f4f4f4;
  border-radius: 10px;
}

.select-items div {
  cursor: pointer;
}

.select-items div {
  padding: 7px 8px;
  text-align: center;
  background: transparent;
  transition: background 0.3s ease 0s;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.select-items div:first-child {
  border-top: none;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.2);
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 199;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 10px;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

/*custom select ends*/
.filter-wrap .select-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-wrap .select-wrap .filter-type {
  font-weight: 700;
}

.filter-wrap .custom-select {
  min-width: 140px;
}

.filter-wrap .btn-filter {
  display: block;
  text-align: center;
  color: var(--primary-blue);
  font-weight: 700;
  text-decoration: none;
  background-color: var(--yellow);
  border-radius: 10px;
  position: relative;
  width: 42px;
  line-height: 42px;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}

.filter-wrap .btn-filter:hover,
.filter-wrap .btn-filter.focus,
.filter-wrap .btn-filter:hover:after,
.filter-wrap .btn-filter.focus:after {
  background-color: var(--primary-blue);
  color: #fff;
}

#content > .btn-wrap,
#content #form-wrap .btn-wrap {
  margin: 2.22em 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  transition: gap 0.3s ease 0s;
}

#content > .btn-wrap.a-center {
  justify-content: center;
}

.hr {
  margin: 30px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

main a {
  color: var(--primary-blue);
}

table th.date {
  min-width: 112px;
  width: 200px;
}

#content .footNotes > strong {
  margin-bottom: 6px;
  display: block;
}

#content .footNotes ul,
#content .footNotes ol,
#content .footNotes table {
  font-size: 0.833em;
  line-height: 1.222rem;
}

#content .footNotes table {
  border: none;
  width: inherit;
}

#content .footNotes table th,
#content .footNotes table td {
  border: none;
  padding: 5px;
  color: inherit;
  background: none;
}

.backBtnWrap {
  border-top: 1px solid #dbdbdb;
  padding: 15px 0;
  text-decoration: none;
}

#content .btn-back {
  display: inline-block;
  line-height: 24px;
  position: relative;
  padding-left: 16px;
  text-decoration: none;
  color: #563c16;
  font-weight: 600;
}

.btn-back:before,
.btn-back:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid #a1680f;
  border-top-width: 0;
  border-left-width: 0;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  -webkit-transform: translateY(-50%) rotate(135deg);
  transition: border-color 0.3s ease 0s, left 0.3s ease 0s;
  -webkit-transition: border-color 0.3s ease 0s, left 0.3s ease 0s;
}

.btn-back:before {
  left: 2px;
}

#content .btn-back:hover:before {
  left: 0;
}

.btn-back:after {
  left: 7px;
}

#content .btn-back:hover:after {
  left: 5px;
}

#content .btn-back:hover {
  text-decoration: underline;
  color: #a1680f;
}

#content .btn-back:hover:before,
#content .btn-back:hover:after {
  border-color: #f4d628;
}

#content a.iconLink + span img {
  margin: 0 10px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.photoslider-wrap {
  margin-bottom: 2.22em;
}

.photoslider-wrap .swiper-container {
  overflow: hidden;
  padding: 2px;
  margin: -2px;
}

.photoslider-wrap .swiper-slide {
  width: calc((99.99% - 40px) / 5);
}

.photoslider-wrap .swiper-slide a {
  display: block;
  text-decoration: none;
  color: #000;
}

.photoslider-wrap .swiper-slide span {
  display: block;
  line-height: 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: #e9e9e9;
  position: relative;
  aspect-ratio: 3/2;
}

.photoslider-wrap .swiper-slide .swiper-lazy-preloader {
  transition: all 0.3s;
}

.photoslider-wrap .swiper-slide.swiper-slide-visible .swiper-lazy-preloader,
.photoslider-wrap
  .swiper-slide.swiper-slide-fully-visible
  .swiper-lazy-preloader {
  opacity: 0;
}

.photoslider-wrap .swiper-slide span > img {
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease 0s;
}

.photoslider-wrap .swiper-slide a:hover span > img,
.photoslider-wrap .swiper-slide a.focus span > img {
  transform: translate(-50%, -50%) scale(1.1);
}

#content .flexbox {
  display: grid;
  gap: 20px;
  margin-bottom: 1.66em;
}

#content .flexbox.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

#content .flexbox.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

#content .flexbox.imgCols .item .img {
  overflow: hidden;
  background-color: #e9e9e9;
  position: relative;
  aspect-ratio: 3/2;
}

#content .flexbox.imgCols .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#content .flexbox.imgCols .item .caption {
  padding: 15px 20px;
  text-align: center;
  line-height: 1.4rem;
}

.scroll-section {
  position: relative;
  overflow: hidden;
}

.horizontal-scroll-outer {
  min-height: 100vh;
  position: relative;
}

.horizontal-scroll-section {
  display: flex;
  /* min-height: 100vh; */
  flex-wrap: nowrap;
  height: 100%;
}

.inside-section .heading {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  max-width: 750px;
  min-width: 750px;
  width: 100%;
  text-align: center;
  background-color: var(--primary-color);
  mask: url("../images/bg-inside-arc-red-area.svg") no-repeat 100% 100% / cover;
  z-index: -1;
  --before-opacity: 0;
  --before-scale: 1.5;
}

.inside-section .heading:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 470px;
  max-height: 370px;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: -3;
  opacity: var(--before-opacity);
  transform: scale(var(--before-scale));
}

.inside-section.section-landraid .heading:before {
  background-image: url("../images/bg-pboto-LandRaid.jpg");
}

.inside-section.section-occupation .heading:before {
  background-image: url("../images/bg-pboto-ImprintsOfOccupation.jpg");
}

.inside-section.section-enemy .heading:before {
  background-image: url("../images/bg-pboto-DefyingTheEnemy.jpg");
}

.inside-section.section-memories .heading:before {
  background-image: url("../images/bg-pboto-ScarredMemories.jpg");
}

.inside-section .eventAndInformation .heading:before {
  /* opacity: 1; */
  background-image: url("../images/bg-pboto-EventsAndInformation.jpg");
  max-width: 482px;
  max-height: 285px;
}

.inside-section .heading .headingWrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 2%;
}

.inside-section .heading .section-title {
  max-width: 540px;
  margin-bottom: 0;
}

.inside-section .heading .section-description {
  font-size: 0.9em;
  line-height: 1.8em;
  margin: 0 0 2rem 0 !important;
  text-align: left;
  color: var(--white);
  text-align: justify;
  /* opacity: 0; */
}

.inside-section .heading .section-description .char {
  opacity: 0;
  /* 每個字元初始隱藏 */
  display: inline-block;
  /* 確保字元正確排列 */
}

.horizontal-scroll-section .cards-container {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  gap: 150px;
  flex: 0 1 auto;
  /* padding: 170px 80px 150px 80px; */
  justify-content: center;
  align-items: center;
  padding: 0% 3% 0% 11%;
  z-index: -2;
  /* width: 100%; */
}

.horizontal-scroll-section .cards-container .cards-bgContainer {
  position: absolute;
  bottom: 0;
  /* left: 0; */
  right: 0;
  width: 100%;
  height: 100%;
  /* max-width: 100%; */
  max-width: 1920px;
  visibility: visible;
  opacity: 1;
  transition: all 2s ease;
  /* overflow: hidden; */
}

.horizontal-scroll-section .cards-container .cards-bgContainer .cards-bgImage {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  bottom: 0;
  font-size: 0;
  /* opacity: 0; */
}

/* Each Section Mountain */
/* Landraid: 3 > 7 > 1 > 4 > 2 > 5 */
.section-content .cards-bgContainer .cards-bgImage.img-1 {
  background-image: url("../images/mountain-03.png");
  aspect-ratio: 170 / 302;
  width: 13%;
  left: 3.2%;
  bottom: -1.5%;
}

.section-content .cards-bgContainer .cards-bgImage.img-2 {
  background-image: url("../images/mountain-07.png");
  aspect-ratio: 321 / 281;
  width: 20%;
  left: 14%;
  bottom: 0;
}

.section-content .cards-bgContainer .cards-bgImage.img-3 {
  background-image: url("../images/mountain-01.png");
  aspect-ratio: 211 / 253;
  width: 12%;
  left: 35%;
  bottom: -13.3%;
}

.section-content .cards-bgContainer .cards-bgImage.img-4 {
  background-image: url("../images/mountain-04.png");
  aspect-ratio: 407 / 257;
  width: 33%;
  right: 20%;
  bottom: -15.2%;
}

.section-content .cards-bgContainer .cards-bgImage.img-5 {
  background-image: url("../images/mountain-02.png");
  aspect-ratio: 197 / 206;
  width: 7.8%;
  right: 18.4%;
  bottom: -4%;
}

.section-content .cards-bgContainer .cards-bgImage.img-6 {
  background-image: url("../images/mountain-05.png");
  aspect-ratio: 617 / 193;
  width: 23%;
  right: -1%;
}

.horizontal-scroll-section .card {
  max-width: 452px;
  width: 452px;
  z-index: 100;
  padding: 0 20px;
  transition: max-width 0.25s ease;
}

.horizontal-scroll-section .card:nth-child(odd) {
  margin-top: 70px;
}

.horizontal-scroll-section .card > .card-title {
  font-size: 1.9em;
  font-weight: 700;
  line-height: 0.95;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.25rem !important;
}

.horizontal-scroll-section .card > .card-title span {
  display: block;
  font-size: 0.615em;
  padding-top: 8px;
}

.horizontal-scroll-section .card .card-img {
  position: relative;
  aspect-ratio: 452 / 452;
  margin: 10px;
}

.horizontal-scroll-section .card .card-img .animateIcon {
  position: relative;
  line-height: 0;
  width: 100%;
  height: 100%;
}

.horizontal-scroll-section .card .card-img .animateIcon canvas {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.horizontal-scroll-section .card .link {
  position: relative;
  display: flex;
  justify-content: center;
  color: var(--white);
  font-size: 1em;
  line-height: 1.8;
  font-weight: 700;
  padding: 10px 40px 10px 25px;
  min-width: 160px;
  max-width: 160px;
  margin-left: auto;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  justify-self: flex-end;
  background-color: var(--primary-color);
  border: 1px solid transparent;
  opacity: 0;
}

.horizontal-scroll-section .card .link:hover,
.horizontal-scroll-section .card .link.focus {
  background-color: var(--white);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.horizontal-scroll-section .card .link:before {
  position: absolute;
  display: block;
  font-family: icomoon;
  content: "\e901";
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--white);
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.25s ease;
}

.horizontal-scroll-section .card .link:hover:before,
.horizontal-scroll-section .card .link.focus:before {
  color: var(--primary-color);
}

/* custom default swiper */
.swiper-slide {
  width: auto;
}

.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  aspect-ratio: 1;
  background-color: var(--primary-color);
  font-size: 0;
  border-radius: 50%;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.swiper-button-next:hover,
.swiper-button-next.focus,
.swiper-button-prev:hover,
.swiper-button-prev.focus {
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  font-family: icomoon;
  font-size: 1.125rem;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--white);
}

.swiper-button-prev:after {
  content: "\e900";
}

.swiper-button-next:after {
  content: "\e901";
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after,
.swiper-button-prev.focus:after,
.swiper-button-next.focus:after {
  color: var(--primary-color);
}

/* galleryContainer */
#swiperGroup > .swiper:not(first-child) {
  margin-top: 10px;
}

.galleryWrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 70px;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.galleryWrapper.preload {
  opacity: 0;
  visibility: hidden;
}

.galleryContainer {
  position: relative;
  padding: 100px 0 120px;
  text-align: center;
  min-height: 850px;
}

.galleryContainer .section-description {
  opacity: 0;
  text-align: justify;
}

.galleryContainer .swiper {
  /* max-height: 550px; */
  height: auto;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.galleryContainer .swiper.norGridStyle {
  max-width: 1200px;
}

.galleryContainer .swiper.centerSwiper {
  max-width: 1200px;
}

.galleryContainer .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 270px !important;
  transition: height 0.25s ease;
}

.galleryContainer .gallery-link {
  /* display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  */
  display: block;
  height: 100%;
}

.galleryContainer .gallery-link img {
  height: 100%;
  /* max-height: 270px; */
  /* width: auto; */
  /* object-fit: contain; */
  /* height: 100%;
  width: 100%;
  object-fit: cover;
  display: block; */
}

.gallery-bgContainer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  visibility: visible;
  opacity: 1;
  transition: all 2s ease;
  overflow: hidden;
}

.gallery-bgContainer .gallery-bgImage {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  bottom: 0;
  font-size: 0;
  opacity: 0;
}

/* Landraid: 3 > 7 > 1 > 4 > 2 > 5 */

.gallery-bgContainer .gallery-bgImage.img-1 {
  background-image: url("../images/mountain-03.png");
  aspect-ratio: 170 / 302;
  width: 17%;
  width: 14%;
  left: 0.2%;
}

.gallery-bgContainer .gallery-bgImage.img-2 {
  background-image: url("../images/mountain-07.png");
  aspect-ratio: 321 / 281;
  width: 22%;
  width: 19.2%;
  left: 11%;
}

.gallery-bgContainer .gallery-bgImage.img-3 {
  background-image: url("../images/mountain-01.png");
  aspect-ratio: 211 / 253;
  width: 16%;
  left: 29.4%;
  bottom: -14%;
}

.gallery-bgContainer .gallery-bgImage.img-4 {
  background-image: url("../images/mountain-04.png");
  aspect-ratio: 407 / 257;
  width: 42%;
  right: 17%;
  bottom: -15.2%;
}

.gallery-bgContainer .gallery-bgImage.img-5 {
  background-image: url("../images/mountain-02.png");
  aspect-ratio: 197 / 206;
  width: 9.8%;
  width: 11.8%;
  right: 18.4%;
}

.gallery-bgContainer .gallery-bgImage.img-6 {
  background-image: url("../images/mountain-05.png");
  aspect-ratio: 617 / 193;
  aspect-ratio: 617 / 193;
  width: 36%;
  right: -3%;
}

.galleryContainer .button.back {
  opacity: 0;
}

.galleryContainer .remarkList {
  padding: 0 20px;
  margin: 70px 0 20px 0;
  text-align: left;
  opacity: 0;
}

.galleryContainer .remarkList ul {
  margin: 0;
}

.galleryContainer .remarkList ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8em;
  line-height: 1.5;
}

/* .galleryContainer .remarkList li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.7em;
  line-height: 1.5;
} */

/* End galleryContainer */

/* Event and Infomation Page */
.eventAndInformation {
  position: relative;
  display: flex;
  /* flex-wrap: nowrap; */
  /* flex-direction: row; */
  /* align-items: flex-start; */
}

.inside-section .eventAndInformation .headingWrap {
  flex: 0 1 440px;
  width: 440px;
  position: relative;
  transition: all 1s ease-out;
}

.inside-section .eventAndInformation .headingWrap.hidden {
  flex: 0;
  width: 0;
}

.inside-section .eventAndInformation .headingWrap .heading {
  min-width: inherit;
  z-index: 1;
  position: fixed;
  max-width: 440px;
  top: 0;
  left: 0;
  opacity: 1;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.inside-section .eventAndInformation.hidden-heading .headingWrap .heading {
  transform: translateX(-100%);
  opacity: 0;
}

.inside-section .eventAndInformation .headingWrap .heading ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 0 !important;
}

.inside-section .eventAndInformation .headingWrap .heading li {
  list-style: none;
  margin: 0 !important;
}

.inside-section .eventAndInformation .headingWrap .heading li a {
  position: relative;
  display: inline-block;
  font-size: 1.5em;
  line-height: 1.5;
  color: var(--white);
}

.inside-section .eventAndInformation .headingWrap .heading li a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--white);
  left: 0;
  bottom: 0;
}

.inside-section .eventAndInformation .headingWrap .heading li a.focus:before,
.inside-section .eventAndInformation .headingWrap .heading li a:hover:before {
  width: 100%;
  transition: all 0.3s ease;
}

.inside-section .eventAndInformation .section-content {
  /* min-height: 1200px; */
  padding: 80px 20px;
  flex: 1;
}

.inside-section .eventAndInformation .event-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.inside-section .eventAndInformation .event-item {
  display: flex;
  align-items: center;
}

.inside-section .eventAndInformation .event-item.row-reverse {
  flex-direction: row-reverse;
}

.inside-section .eventAndInformation .event-item .img {
  padding: 0 1.3%;
  width: 50%;
}

.inside-section .eventAndInformation .event-item .img .uiWrap {
  position: relative;
  aspect-ratio: 816 / 530;
}

.inside-section .eventAndInformation .event-item .img .uiWrap .aContainer {
  position: relative;
  line-height: 0;
  width: 100%;
  height: 100%;
}

.inside-section .eventAndInformation .event-item .img .uiWrap canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inside-section .eventAndInformation .event-item .info {
  flex: 1;
  /* padding: 0 20px; */
}

.inside-section .eventAndInformation .event-item.row-reverse .info {
  text-align: right;
}

.inside-section .eventAndInformation .event-item .info table {
  width: 100% !important;
}

.inside-section .eventAndInformation .event-item .free {
  margin: 40px 0 20px 0;
}

/* custom lightGallery setting */
.lg-backdrop,
.lg-outer .lg-thumb-outer {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.lg-counter {
  color: #666666;
}

.lg-sub-html {
  position: absolute;
  color: #333 !important;
  width: 100%;
  z-index: 9999;
  font-size: 1em !important;
  padding: 0 5%;
  left: 0;
  bottom: 10px;
  opacity: 1;
  min-height: 60px;
  max-height: 100px;
  overflow: auto;
  pointer-events: all;
}

.lg-media-overlap .lg-sub-html {
  background-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5),
    rgba(200, 200, 200, 0.8)
  ) !important;
}

.lg-toolbar .lg-icon:hover {
  color: var(--primary-color) !important;
}

.lg-toolbar .lg-icon:focus,
.lg-prev:focus,
.lg-next:focus {
  outline: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
}

.lg-next,
.lg-prev,
.lg-toolbar .lg-icon,
.lg-counter {
  background-color: transparent !important;
  color: #666666 !important;
}

.lg-prev,
.lg-next {
  transition: all 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-prev:hover {
  transform: translateX(-8px);
}

.lg-next:hover {
  transform: translateX(8px);
}

.lg-prev:after,
.lg-next:before {
  color: #000000;
}

.lg-media-overlap .lg-toolbar {
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0),
    rgba(255, 255, 255, 0.4)
  ) !important;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--primary-color) !important;
}

/* ===================================== */
.lg-custom-thumbnails .lg-outer {
  width: auto;
  right: 0;
  /* left: 10px; */
  left: 0;
  transition: right 0.25s ease 0s;
}

.lg-custom-thumbnails .lg-outer.lg-components-open {
  right: 235px;
}

.lg-custom-thumbnails .lg-outer .lg-thumb {
  height: auto;
}

.lg-custom-thumbnails .lg-outer .lg-thumb-outer {
  left: auto;
  top: 0;
  width: 235px;
  bottom: 0;
  position: fixed;
  right: 0;
  max-height: none;
  padding-left: 5px;
  padding-right: 5px;
  margin: 0 -10px;
  overflow-y: auto;
  transform: translate3d(30%, 0, 0);
  opacity: 0;
  will-change: transform opacity;
  transition: transform 0.15s cubic-bezier(0, 0, 0.25, 1) 0s,
    cubic-bezier(0, 0, 0.25, 1) 0.15s;
}

.lg-custom-thumbnails .lg-outer .lg-thumb {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* @media(min-width: 768px) {} */
.lg-custom-thumbnails .lg-outer .lg-thumb-item {
  margin: 0 !important;
  filter: grayscale(100%);
  will-change: filter;
  transition: filter 0.25s ease-in, border-color 0.25s ease;
  transition: border-color 0.25s ease;
}

.lg-custom-thumbnails .lg-outer .lg-thumb-item img {
  filter: grayscale(100%);
  will-change: filter;
  transition: filter 0.25s ease-in;
}

.lg-custom-thumbnails .lg-outer .lg-thumb-item:hover,
.lg-custom-thumbnails .lg-outer .lg-thumb-item.active {
  filter: grayscale(0);
  /* border-color: var(--red-200); */
}

.lg-custom-thumbnails .lg-outer .lg-thumb-item:hover img,
.lg-custom-thumbnails .lg-outer .lg-thumb-item.active img {
  filter: grayscale(0);
}

.lg-custom-thumbnails .lg-outer .lg-thumb {
  padding: 5px 0;
}

.lg-custom-thumbnails .lg-outer.lg-components-open .lg-thumb-outer {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-outer.lg-single-item .lg-thumb-outer {
  display: block;
}

.lg-outer .lg-content {
  margin: 50px 0 110px;
}

.lg-outer .lg-video-cont {
  max-width: 100% !important;
  max-height: 100% !important;
}

.lg-outer .lg-video-poster {
  height: auto !important;
  object-fit: cover;
}

@media screen and (max-width: 991.98px) {
  .lg-sub-html {
    font-size: 1rem !important;
    line-height: 1.5;
    /*    bottom: 30px;*/
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .lg-custom-thumbnails .lg-outer.lg-components-open {
    right: 120px;
  }

  .lg-custom-thumbnails .lg-outer .lg-thumb-outer {
    width: 130px;
  }
}

@media screen and (max-width: 767.98px) {
  .lg-next,
  .lg-prev {
    font-size: 1.75rem;
  }
}

/*for testing only*/
#mixedLGallery > a {
  max-width: 300px;
  display: block;
}
