@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-padding-top: 100px;
}

body {
  background: #fff;
  font-family: "Times New Roman", Times, "Noto Sans Myanmar", "Poppins", serif;
  font-size-adjust: 0.5;
}

.container {
  margin-left: 80px;
  margin-right: 80px;
}

.navbar a:focus-visible {
  outline: 2px solid #cfafe9;
  outline-offset: 4px;
  border-radius: 4px;
}

.dropdown-menu {
  display: none;
}

.dropdown-menu.open {
  display: block;
}

.fade-section {
  transition: transform 1s ease, opacity 1s ease;
}

.fade-section.exit {
  opacity: 0;
  transform: translateY(-40px);
  pointer-events: none;
}

.bold-font {
  color: #583759;
  font-size: 30px;
  font-weight: bold;
}

.main-font {
  color: #6d1470;
  font-size: 58px;
}

.mobile-break {
  display: none;
}

.text-color-purple {
  color: #583759;
  font-size: 16px;
}

.text-color-purple-fbig {
  color: #583759;
  font-size: 20px;
}

.title {
  font-size: 50px;
  color: #583759;
  margin-bottom: 70px;
}

.top-bottom {
  margin-top: 100px;
  margin-bottom: 100px;
}

.top {
  margin-top: -5px;
}

.main-social {
  display: flex;
  gap: 10px;
}
.main-social a {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f7f2fc;
  transition: 0.3s;
  text-decoration: none;
}
.main-social a i {
  font-size: 22px;
}
.main-social a:hover {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.btn-wrapper {
  display: flex;
  margin-top: 50px;
}
.btn-wrapper .btn {
  padding: 6px 16px;
  font-size: 16px;
  font-weight: bold;
  color: #583759;
  background-color: transparent;
  border: 1px solid #583759;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-wrapper .btn:hover {
  background-color: #583759;
  color: #f7f2fc;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#main {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./assets/main_page/main_visual/main_visual_deer.webp") no-repeat right top;
  background-size: 146vh auto;
  z-index: -1;
}
#main.fade-out-bg::before {
  opacity: 0;
}
#main.shrink {
  height: 40vh;
}
#main .main-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
#main .main-visual .main-logo {
  margin-top: 100px;
  width: 300px;
  height: auto;
}
#main .main-visual .main-title {
  margin-top: 130px;
  flex: 1;
}
#main .main-visual .main-title p {
  margin-left: 10px;
}
#main .main-visual .main-title h1 {
  background-color: rgba(255, 255, 255, 0.2);
  height: 100px;
  padding: 10px;
  -webkit-text-stroke: 0.7px #fff;
  line-height: 5rem;
}
#main .main-title {
  transition: 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}
#main .main-title.fade-out {
  opacity: 0;
  transform: translateY(-30px);
}
#main .navbar {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 7px 0;
  z-index: 999;
  transition: 0.3s ease;
  justify-content: space-between;
  margin-top: 0;
  background-color: #583759;
}
#main .navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
}
#main .navbar.sticky .nav-section {
  margin-left: 80px;
}
#main .navbar .nav-section {
  position: relative;
  display: flex;
  gap: 40px;
}
#main .navbar .nav-section .dropdown {
  position: relative;
}
#main .navbar .nav-section .dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}
#main .navbar .nav-section .dropdown .drop-btn {
  color: #f7f2fc;
  text-decoration: none;
}
#main .navbar .nav-section .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 6px;
  left: 0;
  background: #f7f2fc;
  border-radius: 5px;
  padding: 8px;
  width: 195px;
  display: none;
  flex-direction: column;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.159);
  z-index: 9999;
}
#main .navbar .nav-section .dropdown .dropdown-menu a {
  padding: 6px 20px;
  color: #583759;
  font-weight: normal;
  text-decoration: none;
  font-size: 16px;
}
#main .navbar .nav-section .dropdown .dropdown-menu a:hover {
  background: rgb(91.1166666667, 56.9479166667, 92.1520833333);
  color: #f7f2fc;
  border-radius: 5px;
}
#main .navbar .nav-section .dropdown .dropdown-menu a:hover::after {
  display: none;
}
#main .navbar .nav-section .dropdown:hover .dropdown-menu {
  display: flex;
  animation: fadeDrop 0.8s ease forwards;
}
#main .navbar .nav-section a {
  position: relative;
  text-decoration: none;
  color: #f7f2fc;
}
#main .navbar .nav-section a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: currentColor;
  transition: width 0.5s ease;
}
#main .navbar .nav-section a:hover::after {
  width: 100%;
}
#main .navbar .social-icons {
  position: relative;
  display: flex;
  flex-direction: row;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  gap: 3vh;
  margin-right: 80px;
}
#main .navbar .social-icons.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#main .navbar .social-icons i {
  font-size: 25px;
  color: #f7f2fc;
}
#main .navbar .social-icons a {
  transition: 0.3s ease;
}
#main .navbar .social-icons a:hover {
  color: white;
  transform: scale(1.5);
}
#main .navbar .mobile-menu-icons {
  display: none;
}
#main #fixedLogo {
  transition: 0.8s ease;
}
#main #fixedLogo.small {
  position: fixed;
  top: -100px;
  left: 20px;
  width: 100px;
  height: auto;
  z-index: 1000;
}

#whatSection {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 800px;
  background: #ad7ad8;
  overflow: hidden;
  transition: all 0.8s ease;
}
#whatSection.active {
  opacity: 1;
  transform: translateY(0);
}
#whatSection.exit {
  opacity: 0;
  pointer-events: none;
}
#whatSection h1 {
  text-align: center;
  margin: 0 auto;
  color: #fff;
  font-size: 70px;
  transition: transform 1s ease, opacity 1s ease;
}
#whatSection img.what-background {
  width: 65vh;
  height: auto;
  transition: transform 1s ease, opacity 1s ease;
}
#whatSection.exit h1 {
  transform: translateX(-150px);
  opacity: 0;
}
#whatSection.exit img.what-background {
  transform: translateX(150px);
  opacity: 0;
}

#quillingSection {
  width: 100%;
  margin-top: -50px;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  position: relative;
}
#quillingSection.show {
  opacity: 1;
  transform: translateY(0);
}
#quillingSection.exit {
  opacity: 0;
  transform: scale(0.92);
}
#quillingSection .quilling-left-img {
  transform: translateX(-80px);
  opacity: 0;
  transition: all 0.9s ease;
}
#quillingSection .quilling-left-img.show {
  transform: translateX(0);
  opacity: 1;
}
#quillingSection .quilling-left-img.exit {
  transform: translateX(10px);
  opacity: 1;
}
#quillingSection .quilling-right-hand {
  transform: translateX(80px);
  opacity: 0;
  transition: all 0.9s ease;
}
#quillingSection .quilling-right-hand.show {
  transform: translateX(0);
  opacity: 1;
}
#quillingSection .quilling-right-hand.exit {
  transform: translateX(10px);
  opacity: 1;
}
#quillingSection .quilling-container {
  position: relative;
  width: 75%;
  background: #f7f2fc;
  border-radius: 40px;
  padding: 60px 50px;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
  z-index: 99;
}
#quillingSection .quilling-container .lotus-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
#quillingSection .quilling-container .lotus-wrapper::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -150px;
  width: 450px;
  height: 450px;
  background: url("./assets/main_page/what_quilling/what_quilling_lotus.webp") no-repeat center/contain;
  opacity: 0.4;
}
#quillingSection .quilling-container .quilling-left-img img {
  position: absolute;
  left: -380px;
  width: 400px;
  height: auto;
  rotate: -10deg;
  z-index: -1;
}
#quillingSection .quilling-container .quilling-content {
  position: relative;
  flex: 1;
}
#quillingSection .quilling-container .quilling-content h1 {
  color: #583759;
  font-size: 42px;
  margin-bottom: 35px;
  text-align: center;
}
#quillingSection .quilling-container .quilling-content .quilling-subtitle {
  background: #ad7ad8;
  color: #fff;
  padding: 14px 25px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#quillingSection .quilling-container .quilling-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}
#quillingSection .quilling-container .quilling-content .last-content {
  margin-top: 40px;
  font-weight: bold;
  font-size: 19px;
  text-align: center;
  color: #583759;
}
#quillingSection .quilling-container .quilling-right-hand img {
  width: 400px;
  position: absolute;
  right: -250px;
  bottom: 120px;
}

#gallerySection .btn-wrapper {
  justify-content: center;
}
#gallerySection .gallery-row {
  -moz-column-count: 4;
       column-count: 4;
  gap: 15px;
}
#gallerySection .gallery-column {
  margin-bottom: 15px;
}
#gallerySection .gallery-column img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 6px;
  display: block;
}
#gallerySection .lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#gallerySection .lightbox-modal.active {
  display: flex;
  opacity: 1;
}
#gallerySection .lightbox-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  animation: zoomIn 0.3s ease;
}
#gallerySection .lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
#gallerySection .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #583759;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#gallerySection .lightbox-close:hover {
  background: #ad7ad8;
  color: #fff;
  transform: rotate(90deg);
}
#gallerySection .lightbox-close:focus {
  outline: 2px solid #ad7ad8;
  outline-offset: 2px;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#founderSection {
  position: relative;
  overflow: visible;
  margin-top: 200px;
  transition: all 0.8s ease;
  opacity: 1;
  transform: translateY(0);
}
#founderSection.exit {
  opacity: 0;
  transform: translateY(-80px);
  pointer-events: none;
}
#founderSection .container {
  position: relative;
  z-index: 3;
}
#founderSection .rainbow-background {
  position: absolute;
  left: 0;
  margin-top: -50px;
  margin-bottom: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
#founderSection .rainbow-background .rainbow-lines {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
}
#founderSection .rainbow-background .rainbow-lines .line {
  width: 100%;
  height: 4px;
}
#founderSection .rainbow-background .rainbow-lines .line.red {
  background-color: #ae3082;
}
#founderSection .rainbow-background .rainbow-lines .line.orange {
  background-color: #f9c6b3;
}
#founderSection .rainbow-background .rainbow-lines .line.yellow {
  background-color: #f5fa8f;
}
#founderSection .rainbow-background .rainbow-lines .line.green {
  background-color: #7fffbf;
  height: 2.5px;
}
#founderSection .rainbow-background .rainbow-lines .line.blue {
  background-color: #7ad2f1;
}
#founderSection .rainbow-background .rainbow-lines .line.purple {
  background-color: #ea75af;
}
#founderSection .rainbow-background:first-of-type {
  top: 0;
  z-index: 1;
}
#founderSection .rainbow-background:last-of-type {
  bottom: 0;
  z-index: 10;
}
#founderSection .founder-text {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #fff;
  position: relative;
  z-index: 6;
}
#founderSection .founder-text .intro-mm {
  max-width: 400px;
}
#founderSection .founder-text .founder-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#founderSection .founder-text .founder-title .subtitle {
  font-size: 20px;
  margin-bottom: 4px;
}
#founderSection .founder-text .founder-title .title {
  line-height: 1.1;
}
#founderSection .founder-text .founder-sign img {
  width: 200px;
  height: auto;
}
#founderSection .founder-text .founder-img {
  position: absolute;
  top: -400px;
  left: 350px;
  z-index: 4;
  pointer-events: none;
}
#founderSection .founder-text .founder-img img {
  max-width: 580px;
  height: auto;
}
#founderSection .founder-name-bg {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}
#founderSection .founder-name-bg .name-img {
  max-width: 530px;
  height: auto;
}
#founderSection .founder-name-bg .htike {
  max-width: 740px;
}

#interviewSection {
  position: relative;
  z-index: 2;
  margin-top: 200px;
}
#interviewSection .btn-wrapper {
  margin-top: -50px;
}
#interviewSection .swiper-button-prev,
#interviewSection .swiper-button-next {
  display: none;
}
#interviewSection .menu-swiper {
  width: 100%;
  max-width: 100%;
  position: relative;
  opacity: 0;
  pointer-events: none;
  overflow: visible;
  transition: opacity 0.6s ease;
  margin-top: 70px;
  align-items: center;
}
#interviewSection .menu-swiper.swiper-initialized {
  opacity: 1;
  pointer-events: auto;
}
#interviewSection .menu-swiper .swiper-slide {
  opacity: 0.5;
  transform: scale(0.8);
  transition: all 0.3s ease;
  cursor: grab;
}
#interviewSection .menu-swiper .swiper-slide.swiper-slide-active {
  opacity: 0.95;
  transform: scale(1);
  cursor: pointer;
}
#interviewSection .menu-swiper .swiper-slide:not(.swiper-slide-active) a {
  pointer-events: none;
}
#interviewSection .menu-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#interviewSection .menu-swiper .swiper-controls-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 30px auto 0;
  max-width: 300px;
  font-size: 20px;
  font-weight: bold;
  color: #583759;
}
#interviewSection .menu-swiper .swiper-pagination {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
  margin: 0;
  font-size: 16px;
  color: #583759;
}
#interviewSection .menu-swiper .swiper-pagination-bullet {
  background: #583759;
}
#interviewSection figure.menu-card {
  background-color: rgba(173, 122, 216, 0.3);
  color: #583759;
  font-size: 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
  opacity: 0.95;
  margin: 0;
}
#interviewSection figure.menu-card img {
  width: 100%;
  vertical-align: top;
  transition: transform 0.4s ease;
}
#interviewSection figure.menu-card figcaption {
  padding: 25px;
  position: relative;
}
#interviewSection figure.menu-card .date {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 20px;
  background-color: rgba(173, 122, 216, 0.8);
  color: #f7f2fc;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
}
#interviewSection figure.menu-card h2 {
  margin: 0 0 5px;
  font-weight: bold;
  color: #583759;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}
#interviewSection figure.menu-card p {
  margin: 15px 0 20px;
  line-height: 1.8;
  min-height: 90px;
}
#interviewSection figure.menu-card button {
  display: block;
  width: 60%;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #ad7ad8;
  color: #f7f2fc;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.5;
  border: 1px solid #f7f2fc;
  cursor: pointer;
  transition: 0.2s;
}
#interviewSection figure.menu-card a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#interviewSection figure.menu-card:hover img {
  transform: scale(0.9);
}
#interviewSection figure.menu-card:hover button {
  background-color: #583759;
}
#interviewSection figure.menu-card:hover img {
  transform: scale(0.9);
}
#interviewSection .featured-section {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

#activitySection {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgba(173, 122, 216, 0.2);
  position: relative;
  z-index: 2;
}
#activitySection .container {
  position: relative;
}
#activitySection .btn-wrapper {
  margin-top: -50px;
}
#activitySection .swiper-button-prev,
#activitySection .swiper-button-next {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  width: 54px;
  height: 34px;
  background: #583759;
  color: #f7f2fc;
  z-index: 50;
}
#activitySection .swiper-button-prev::after,
#activitySection .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}
#activitySection .swiper-button-prev {
  left: 0px;
  border-radius: 30px 0px 0px 30px;
}
#activitySection .swiper-button-next {
  right: 0px;
  border-radius: 0px 30px 30px 0px;
}
#activitySection .activity-swiper {
  max-width: 1100px;
  position: relative;
  padding: 0;
  margin: 50px auto 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.6s ease;
  align-items: center;
}
#activitySection .activity-swiper.swiper-initialized {
  visibility: visible;
  opacity: 1;
}
#activitySection .activity-swiper .swiper-wrapper {
  display: flex;
  justify-content: flex-start;
}
#activitySection .activity-swiper .swiper-slide {
  display: flex;
  height: auto;
  justify-content: center;
  width: calc((100% - 12px) / 2);
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
  cursor: pointer;
  touch-action: pan-y;
  pointer-events: auto !important;
}
#activitySection .activity-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  cursor: pointer;
}
#activitySection .activity-swiper .swiper-slide a {
  pointer-events: auto;
}
#activitySection .activity-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#activitySection .swiper-controls-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 10px auto 0;
  max-width: 200px;
  font-size: 20px;
  font-weight: bold;
  color: #583759;
}
#activitySection .swiper-pagination {
  position: relative;
  margin-top: 20px;
  z-index: 60;
  pointer-events: auto;
  text-align: center;
  font-size: 16px;
  color: #583759;
}
#activitySection .swiper-pagination-bullet {
  background: #583759;
}
#activitySection figure.menu-card {
  width: 100%;
  margin: 0 auto;
  background-color: #583759;
  color: #f7f2fc;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0.95;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
#activitySection figure.menu-card a {
  display: block;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 5;
  text-decoration: none;
  color: inherit;
}
#activitySection figure.menu-card .img-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  z-index: 1;
}
#activitySection figure.menu-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
#activitySection figure.menu-card figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 40px 25px 25px;
  flex: 1;
  position: relative;
  z-index: 1;
  color: #f7f2fc;
  transition: color 0.5s ease;
}
#activitySection figure.menu-card h2 {
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}
#activitySection figure.menu-card p {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.8;
  flex-grow: 1;
}
#activitySection figure.menu-card a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#activitySection figure.menu-card:hover img {
  transform: scale(0.9);
}
#activitySection .featured-section {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

#workshopSection {
  position: relative;
  overflow: hidden;
}
#workshopSection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  z-index: 1;
}
#workshopSection .canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#workshopSection .container {
  position: relative;
  z-index: 2;
}
#workshopSection .btn-wrapper {
  margin-top: -50px;
}
#workshopSection .swiper-button-prev,
#workshopSection .swiper-button-next {
  position: relative;
  z-index: 5;
  display: none;
}
#workshopSection .menu-swiper {
  width: 100%;
  max-width: 100%;
  position: relative;
  visibility: hidden;
  opacity: 0;
  overflow: visible;
  transition: opacity 0.6s ease;
  margin-top: 70px;
  align-items: center;
}
#workshopSection .menu-swiper.swiper-initialized {
  visibility: visible;
  opacity: 1;
}
#workshopSection .menu-swiper .swiper-wrapper {
  align-items: stretch;
}
#workshopSection .menu-swiper .swiper-slide {
  height: auto;
  display: flex;
  opacity: 0.5;
  transform: scale(0.92);
  transition: all 0.3s ease;
  cursor: grab;
}
#workshopSection .menu-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  cursor: pointer;
}
#workshopSection .menu-swiper .swiper-slide:not(.swiper-slide-active) a {
  pointer-events: none;
}
#workshopSection .menu-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#workshopSection .menu-swiper .swiper-controls-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 10px auto 0;
  max-width: 200px;
  font-size: 20px;
  font-weight: bold;
  color: #583759;
}
#workshopSection .menu-swiper .swiper-pagination {
  position: relative;
  margin-top: 5px;
  z-index: 3;
  pointer-events: auto;
  text-align: center;
  font-size: 16px;
  color: #583759;
}
#workshopSection .menu-swiper .swiper-pagination-bullet {
  background: #583759;
}
#workshopSection figure.menu-card {
  width: 100%;
  margin: 0 auto;
  background-color: #cfafe9;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 620px;
  opacity: 1;
}
#workshopSection figure.menu-card .img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
#workshopSection figure.menu-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
#workshopSection figure.menu-card figcaption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 25px;
  position: relative;
  transition: transform 0.5s ease;
}
#workshopSection figure.menu-card h2 {
  margin-bottom: 20px;
  font-weight: bold;
  color: #583759;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
}
#workshopSection figure.menu-card p {
  font-size: 16px;
  line-height: 1.8;
  min-height: 90px;
  color: #583759;
  flex-grow: 1;
}
#workshopSection figure.menu-card h4 {
  font-size: 16px;
  font-weight: normal;
  margin-top: -40px;
}
#workshopSection figure.menu-card a {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#workshopSection figure.menu-card:hover img {
  transform: scale(0.9);
}
#workshopSection .featured-section {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

#newsSection {
  position: relative;
  overflow: hidden;
}
#newsSection .news-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
#newsSection .news-left {
  width: 100%;
  max-width: 820px;
  z-index: 2;
  flex: 1;
}
#newsSection .news-left a {
  text-decoration: none;
}
#newsSection .news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f7f2fc;
  padding: 0px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
#newsSection .news-item:hover {
  transform: translateY(-6px);
  background: rgba(236, 224, 250, 0.95);
  box-shadow: 0 14px 30px rgba(86, 34, 146, 0.25);
}
#newsSection .news-item img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
#newsSection .news-content {
  flex: 1;
  padding: 15px;
}
#newsSection .news-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #583759;
  text-decoration: none;
}
#newsSection .news-content .news-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #6d1470;
  text-decoration: none;
}
#newsSection .news-content .news-tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  background: #ad7ad8;
  color: #f7f2fc;
  margin-top: 20px;
}
#newsSection .news-date {
  font-size: 18px;
  color: #583759;
  font-weight: 600;
  white-space: nowrap;
  padding: 15px;
}
#newsSection .news-right {
  position: absolute;
  top: 50%;
  right: -12%;
  transform: translateY(-50%) scaleX(-1);
  pointer-events: none;
  width: 580px;
  opacity: 0.35;
  z-index: 1;
}
#newsSection .news-right img {
  width: 100%;
  height: auto;
  display: block;
}

#backToTop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.35s ease;
}
#backToTop img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(120, 60, 180, 0.35);
  transition: all 0.3s ease;
}
#backToTop .top-text {
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  color: #583759;
  text-align: center;
}
#backToTop.footer-over .top-text {
  color: #f7f2fc;
}
#backToTop:hover img {
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 15px 35px rgba(120, 60, 180, 0.5);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

#siteFooter {
  background: #583759;
  color: #f7f2fc;
  padding: 40px 50px 0;
}
#siteFooter .footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: flex-start;
  margin-bottom: -40px;
}
#siteFooter .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
#siteFooter .footer-brand .footer-logo {
  width: 180px;
}
#siteFooter .footer-brand i {
  font-size: 50px;
}
#siteFooter .footer-links {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px;
}
#siteFooter .footer-links .footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
#siteFooter .footer-links .footer-col ul {
  list-style: none;
  padding: 0;
}
#siteFooter .footer-links .footer-col ul li {
  margin-bottom: 10px;
}
#siteFooter .footer-links .footer-col ul li a {
  font-size: 14px;
  color: #f7f2fc;
  text-decoration: none;
  transition: 0.25s;
}
#siteFooter .footer-links .footer-col ul li a:hover {
  color: #cfafe9;
  text-decoration: underline;
}
#siteFooter .footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
}

#page-history #main, #page-interview #main, #page-review #main, #page-activity #main, #page-exhibition #main, #page-workshop #main, #page-gallery #main, #page-category #main, #page-collection #main, #page-contact #main {
  height: auto;
  overflow: visible;
}
#page-history #main::before, #page-interview #main::before, #page-review #main::before, #page-activity #main::before, #page-exhibition #main::before, #page-workshop #main::before, #page-gallery #main::before, #page-category #main::before, #page-collection #main::before, #page-contact #main::before {
  display: none;
}
#page-history .navbar, #page-interview .navbar, #page-review .navbar, #page-activity .navbar, #page-exhibition .navbar, #page-workshop .navbar, #page-gallery .navbar, #page-category .navbar, #page-collection .navbar, #page-contact .navbar {
  position: fixed;
}
#page-history .history-logo, #page-interview .history-logo, #page-review .history-logo, #page-activity .history-logo, #page-exhibition .history-logo, #page-workshop .history-logo, #page-gallery .history-logo, #page-category .history-logo, #page-collection .history-logo, #page-contact .history-logo {
  position: fixed;
  left: 40px;
  top: 50px;
  transform: translateY(-50%);
  width: 100px !important;
  height: auto;
  z-index: 9999;
}
#page-history .nav-section, #page-interview .nav-section, #page-review .nav-section, #page-activity .nav-section, #page-exhibition .nav-section, #page-workshop .nav-section, #page-gallery .nav-section, #page-category .nav-section, #page-collection .nav-section, #page-contact .nav-section {
  margin-left: 120px;
}
#page-history .social-icons, #page-interview .social-icons, #page-review .social-icons, #page-activity .social-icons, #page-exhibition .social-icons, #page-workshop .social-icons, #page-gallery .social-icons, #page-category .social-icons, #page-collection .social-icons, #page-contact .social-icons {
  margin-right: 40px;
}

#page-history .history-section {
  position: relative;
  padding: 140px 0 100px;
  background-color: #fff;
  overflow: hidden;
}
#page-history .history-section .history-bg {
  position: absolute;
  top: 0;
  right: -50px;
  width: 617px;
  height: 673px;
  background-image: url("./assets/history_page/history_section/history_section_peacock.webp");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 50%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
#page-history .history-section .history-content {
  position: relative;
  max-width: 100%;
  z-index: 1;
}
#page-history .history-section .history-content .history-title {
  font-size: 36px;
  color: #583759;
  margin-bottom: 24px;
}
#page-history .history-section .history-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #583759;
  margin-bottom: 20px;
}
#page-history .history-section .history-content .history-note {
  margin-top: 30px;
  color: #583759;
}
#page-history .history-section .year-tabs {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 150px;
  padding: 16px 0;
  margin-bottom: 60px;
  border-top: 1px solid #ad7ad8;
  border-bottom: 1px solid #ad7ad8;
}
#page-history .history-section .year-tabs .year-tab {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #583759;
  transition: color 0.3s ease;
}
#page-history .history-section .year-tabs .year-tab::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #ad7ad8;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
#page-history .history-section .year-tabs .year-tab:hover, #page-history .history-section .year-tabs .year-tab.active {
  color: #cfafe9;
}
#page-history .history-section .year-tabs .year-tab:hover::after {
  transform: scaleX(1);
}
#page-history .history-section .timeline-year {
  position: relative;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
}
#page-history .history-section .timeline-year .year-title {
  text-align: center;
  color: #583759;
  margin-bottom: 50px;
}
#page-history .history-section .timeline-year .timeline-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 10px 1fr;
  align-items: stretch;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
#page-history .history-section .timeline-year .timeline-body::before {
  content: "";
  grid-column: 2;
  width: 2px;
  background: #583759;
  justify-self: center;
  min-height: 100%;
}
#page-history .history-section .timeline-year .timeline-body .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #ad7ad8;
  z-index: 1;
}
#page-history .history-section .timeline-year .timeline-body .timeline-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  background: #ad7ad8;
  border-radius: 50%;
  z-index: 2;
}
#page-history .history-section .timeline-year .timeline-body .timeline-content {
  grid-column: 1;
  padding-right: 40px;
  margin-top: 50px;
  display: block;
}
#page-history .history-section .timeline-year .timeline-body .timeline-content .month-content {
  max-width: 520px;
}
#page-history .history-section .timeline-year .timeline-body .timeline-content .month-content img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 14px;
}
#page-history .history-section .timeline-year .timeline-body .timeline-content .month-content p:first-of-type {
  font-weight: 600;
  margin-bottom: 12px;
}
#page-history .history-section .timeline-year .timeline-body .timeline-content .month-content p {
  line-height: 1.7;
  color: #583759;
}
#page-history .history-section .timeline-year.active {
  display: block;
}
#page-history .history-section .timeline-months {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin-left: 30px;
}
#page-history .history-section .timeline-months .month-btn {
  display: flex;
  flex-direction: row;
  font-size: 16px;
  gap: 30px;
  color: #5b3c63;
  cursor: pointer;
  margin-bottom: 30px;
}
#page-history .history-section .timeline-months .month-btn:hover {
  color: #ad7ad8;
}
#page-history .history-section .timeline-months .month-btn .month {
  font-size: 18px;
}
#page-history .year-group {
  display: none;
}
#page-history .timeline-year {
  display: block;
  margin-bottom: 50px;
}
#page-history .timeline-year .month-content {
  display: none;
}
#page-history .timeline-year .month-content.active {
  display: block;
}
#page-history .timeline-year .month-btn {
  cursor: pointer;
}
#page-history .timeline-year .month-btn.active {
  font-weight: bold;
  color: #ad7ad8;
}

#page-interview #interview-section {
  margin-top: 150px;
}
#page-interview #interview-section .container {
  position: relative;
}
#page-interview #interview-section .container .title-line {
  width: 100%;
  height: 2px;
  background: #ad7ad8;
}
#page-interview #interview-section .container a {
  text-decoration: none;
}
#page-interview #interview-section .container .interview-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 50px;
  margin-left: 50px;
}
#page-interview #interview-section .container .interview-layout .media-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 100px;
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  -webkit-mask-image: linear-gradient(to bottom, black 110%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 110%, transparent 100%);
  scrollbar-width: none;
}
#page-interview #interview-section .container .interview-layout .media-list img {
  width: 150px;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
}
#page-interview #interview-section .container .interview-layout .media-list img:hover {
  opacity: 1;
  transform: translateX(6px);
}
#page-interview #interview-section .container .interview-layout .media-list img.active {
  opacity: 1;
  filter: grayscale(0%);
}
#page-interview #interview-section .container .interview-layout .timeline {
  position: relative;
  padding-left: 40px;
}
#page-interview #interview-section .container .interview-layout .timeline .vertical-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  height: auto;
  background: #ad7ad8;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  margin: 50px 0 50px 10px;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item .date {
  display: grid;
  grid-template-rows: auto auto 1fr;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item .date .year {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item .date .year::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #ad7ad8;
  margin-top: 8px;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content .thumbnail {
  flex: 0 0 450px;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content .thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content .content {
  flex: 1;
}
#page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content .content h3 {
  margin-bottom: 10px;
}

#page-review #review-section {
  margin-top: 150px;
}
#page-review #review-section .section-title {
  margin-bottom: 30px;
  color: #cfafe9;
}
#page-review #review-section .review-summary {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
#page-review #review-section .review-summary .summary-box {
  padding: 20px 30px;
  min-width: 220px;
}
#page-review #review-section .review-summary .summary-box .label {
  font-size: 24px;
  color: #583759;
  margin-bottom: 20px;
}
#page-review #review-section .review-summary .summary-box .value {
  font-size: 26px;
  font-weight: 700;
  color: #583759;
}
#page-review #review-section .review-summary .summary-box .stars {
  color: #583759;
}
#page-review #review-section .review-summary .summary-box.total {
  background: #fff;
  border: 2px solid #f7f2fc;
}
#page-review #review-section .review-summary .summary-box.total .label,
#page-review #review-section .review-summary .summary-box.total .value {
  color: #583759;
}
#page-review #review-section .review-summary .summary-box.rating {
  background: #f7f2fc;
  border: 2px solid #f7f2fc;
}
#page-review #review-section .review-summary .summary-box.rating .value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
#page-review #review-section .review-summary .summary-box.rating .stars {
  font-size: 16px;
  line-height: 1;
}
#page-review #review-section .review-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 80px;
  width: 100%;
  overflow-x: hidden;
}
#page-review #review-section .review-card {
  width: 100%;
  max-width: 100%;
  background: #f7f2fc;
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 20px;
  overflow: hidden;
}
#page-review #review-section .review-left .review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
#page-review #review-section .review-left .review-header .meta {
  display: flex;
  flex-direction: column;
}
#page-review #review-section .review-left .review-header img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-review #review-section .review-left .review-header .top-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}
#page-review #review-section .review-left .review-header .top-line .name {
  font-weight: 700;
  font-size: 18px;
  color: #583759;
}
#page-review #review-section .review-left .review-header .top-line .date {
  font-size: 16px;
  color: #583759;
  opacity: 0.8;
}
#page-review #review-section .review-left .review-text {
  max-height: 120px;
  overflow-y: auto;
  padding-right: 6px;
  font-size: 16px;
  line-height: 1.7;
  color: #583759;
}
#page-review #review-section .review-right {
  text-align: right;
}
#page-review #review-section .review-right .stars {
  color: #583759;
  margin-bottom: 10px;
}
#page-review #review-section .review-right img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-review #review-section .pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#page-review #review-section .pagination button {
  border: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
  color: #cfafe9;
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#page-review #review-section .pagination button.active {
  background: #583759;
  border-radius: 50%;
  color: #f7f2fc;
}
#page-review #review-section .pagination button:disabled {
  opacity: 0.3;
  cursor: default;
}
#page-review #review-section .pagination .dots {
  font-size: 14px;
  color: #999;
  padding: 0 4px;
}

#page-activity #activity-section {
  margin-top: 150px;
}
#page-activity #activity-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
#page-activity #activity-section .container .title-line {
  width: 100%;
  height: 2px;
  background: #ad7ad8;
}
#page-activity #activity-section .container .activity-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  align-items: flex-start;
}
#page-activity #activity-section .container .activity-layout .activity-years {
  margin-top: 50px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  scrollbar-width: none;
}
#page-activity #activity-section .container .activity-layout .activity-years .year {
  width: 150px;
  font-size: 24px;
  font-weight: bold;
  background: #cfafe9;
  color: #583759;
  text-align: center;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}
#page-activity #activity-section .container .activity-layout .activity-years .year::after {
  content: "";
  display: none;
}
#page-activity #activity-section .container .activity-layout .activity-years ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#page-activity #activity-section .container .activity-layout .activity-years ul li {
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
  color: #583759;
  transition: all 0.3s;
}
#page-activity #activity-section .container .activity-layout .activity-years ul li.active {
  font-weight: bold;
  color: #ad7ad8;
}
#page-activity #activity-section .container .activity-layout .activity-years ul li:hover {
  color: #ad7ad8;
}
#page-activity #activity-section .container .activity-layout .activity-detail {
  position: relative;
  padding-left: 60px;
  padding-bottom: 50px;
}
#page-activity #activity-section .container .activity-layout .activity-detail .vertical-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  height: auto;
  background: #ad7ad8;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item {
  padding-top: 50px;
  display: none;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item:first-child {
  display: block;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item #activityTitle {
  font-size: 24px;
  color: #583759;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .activity-date {
  margin: 10px 0 20px;
  font-size: 18px;
  font-weight: bold;
  color: #ad7ad8;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item #activityText {
  line-height: 1.8;
  margin-bottom: 30px;
  color: #583759;
  font-size: 16px;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery {
  max-width: 100%;
  position: relative;
  display: block !important;
  margin-bottom: 20px;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .mySlides {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .mySlides.active {
  display: block;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .mySlides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .mySlides .numbertext {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 12px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .prev,
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 10;
  border: none;
  transition: background 0.3s;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .prev:hover,
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .next:hover {
  background: rgba(0, 0, 0, 0.85);
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .prev {
  left: 0;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .next {
  right: 0;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .column {
  flex: 1;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .column img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  display: block;
  border: 2px solid transparent;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .column img.active {
  opacity: 1;
}
#page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .column img:hover {
  opacity: 1;
}

#page-exhibition #exhibition-section {
  background-image: url(./assets/exhibition_page/background/unicorn.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: clamp(150px, 30vw, 350px) auto;
  margin-top: 150px;
}
#page-exhibition #exhibition-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
#page-exhibition #exhibition-section .container .exhibition-detail {
  display: none;
}
#page-exhibition #exhibition-section .container .exhibition-detail.active {
  display: block;
}
#page-exhibition #exhibition-section .container .title {
  margin-bottom: 50px;
}
#page-exhibition #exhibition-section .container .title-line {
  width: 100%;
  height: 2px;
  background: #ad7ad8;
}
#page-exhibition #exhibition-section .container .exhibition-layout {
  display: grid;
  grid-template-columns: 170px 1fr 300px;
  gap: 30px;
  align-items: stretch;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-years {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 50px;
  padding-left: 20px;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-years .year {
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #583759;
  border: 2px solid #cfafe9;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-years .year:hover {
  background-color: rgba(207, 175, 233, 0.1);
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-years .year.active {
  background-color: #cfafe9;
  color: white;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper {
  position: relative;
  padding-left: 30px;
  min-height: 600px;
  margin-bottom: 100px;
  height: 100%;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .vertical-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #ad7ad8;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail {
  display: none;
  padding-top: 50px;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail.active {
  display: block;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .upcoming p {
  font-size: 18px;
  margin-bottom: 20px;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content {
  display: block;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content p {
  color: #583759 !important;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #583759;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .activity-date {
  font-size: 16px;
  color: #ad7ad8;
  margin-bottom: 30px;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-bottom: 50px;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .mySlides {
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: none;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .mySlides.active {
  display: block;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .mySlides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .prev, #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .prev:hover, #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .row .column {
  flex: 1;
  min-width: 80px;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .row .column img {
  cursor: pointer;
  border-radius: 4px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .row .column img:hover, #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .row .column img.active {
  opacity: 1;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery:focus {
  outline: none;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content p {
  line-height: 1.8;
  color: #583759;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items {
  display: none;
  position: relative;
  padding-left: 30px;
  padding-top: 50px;
  margin-bottom: 30px;
  height: 100%;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .vertical-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  height: auto;
  background: #ad7ad8;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  height: 110px;
  box-sizing: border-box;
  margin-bottom: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid transparent;
  overflow: hidden;
  opacity: 0.6;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item:hover {
  transform: translateY(-5px);
  border-color: #cfafe9;
  opacity: 1;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item.active {
  border-color: #cfafe9;
  box-shadow: 0 4px 12px rgba(207, 175, 233, 0.3);
  opacity: 1;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item .exhibition-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item img {
  width: 150px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
  display: block;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item h3 {
  font-size: 18px;
  color: #583759;
  margin: 0;
}
#page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item p {
  margin: 0;
  color: #583759;
  font-size: 16px;
}

#page-workshop #workshop-section {
  min-height: 100vh;
  padding: 100px 0;
  background-image: url(./assets/workshop_page/background/workshop_mainbg_img.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 45% auto;
  display: flex;
  align-items: center;
  margin-top: 0;
  position: relative;
  margin-bottom: 10px;
}
#page-workshop #workshop-section .swiper-slide {
  width: 100% !important;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0.5;
  transform: scale(0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}
#page-workshop #workshop-section .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
#page-workshop #workshop-section .swiper-pagination-bullets {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: static !important;
}
#page-workshop #workshop-section .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #583759;
  opacity: 0.3;
  transition: all 0.3s ease;
  margin: 0 !important;
  border-radius: 50%;
}
#page-workshop #workshop-section .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #583759;
  transform: scale(1.2);
}
#page-workshop #workshop-section .swiper-pagination-fraction {
  font-size: 16px;
  color: #583759;
  position: static !important;
}
#page-workshop #workshop-section .swiper-button-prev,
#page-workshop #workshop-section .swiper-button-next {
  width: 44px;
  height: 36px;
  color: #cfafe9;
  background-color: #583759;
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
#page-workshop #workshop-section .swiper-button-prev::after,
#page-workshop #workshop-section .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
}
#page-workshop #workshop-section .swiper-button-prev {
  border-radius: 30px 0px 0px 30px;
}
#page-workshop #workshop-section .swiper-button-next {
  border-radius: 0px 30px 30px 0px;
}
#page-workshop #workshop-section .swiper-button-prev {
  left: 0;
}
#page-workshop #workshop-section .swiper-button-next {
  right: 0;
}
#page-workshop #workshop-section .swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
#page-workshop #workshop-section .swiper-controls-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin: 30px auto 0;
  max-width: 300px;
  font-size: 20px;
  font-weight: bold;
  color: #583759;
}
#page-workshop #workshop-section .swiper-pagination {
  position: static !important;
  width: auto !important;
}
#page-workshop #workshop-section .swiper-pagination-bullet {
  background: #583759;
}
#page-workshop #workshop-section .container {
  margin-top: 250px;
  position: relative;
  max-width: 1400px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
#page-workshop #workshop-section .container .main-font {
  color: #583759;
}
#page-workshop #workshop-section .container .br {
  display: inline;
}
#page-workshop #workshop-section .container .info {
  margin-top: 200px;
  position: relative;
}
#page-workshop #workshop-section .container .info::after {
  content: "";
  position: absolute;
  right: -15vw;
  top: clamp(15%, 20vw, 25%);
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background-image: url(./assets/workshop_page/background/workshop_cat.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#page-workshop #workshop-section .container .info::before {
  content: "";
  position: absolute;
  right: -3vw;
  top: clamp(18%, 22vw, 30%);
  width: 300px;
  height: 300px;
  background-image: url(./assets/workshop_page/background/workshop_hourse.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#page-workshop #workshop-section .container .info .info-box {
  margin-bottom: 50px;
  position: relative;
}
#page-workshop #workshop-section .container .info .info-box:last-child::after {
  content: "";
  position: absolute;
  right: -15vw;
  top: clamp(-220%, -50vw, -100%);
  width: 300px;
  height: 300px;
  background-image: url(./assets/workshop_page/background/workshop_pyittghtaung.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#page-workshop #workshop-section .container .info .info-box h3 {
  background-color: #ad7ad8;
  color: #fff;
  display: inline;
  padding: 10px 30px;
}
#page-workshop #workshop-section .container .info .info-box .info-content {
  margin-top: 30px;
}
#page-workshop #workshop-section .container .info .info-box .info-content ul, #page-workshop #workshop-section .container .info .info-box .info-content p {
  margin-left: 50px;
  color: #583759;
  list-style: none;
}
#page-workshop #workshop-section .container .info .info-box .info-content li {
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
}
#page-workshop #workshop-section .container .info .info-box .info-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ad7ad8;
  font-size: 30px;
}
#page-workshop #workshop-section .container .info .info-box .info-content .underline {
  display: inline;
  border-bottom: 3px solid #ad7ad8;
  padding-bottom: 8px;
}
#page-workshop #workshop-section .container .info .info-box .info-content .underline + p {
  margin-top: 10px;
}
#page-workshop #workshop-section .container #toolSection {
  margin-top: 150px;
  position: relative;
  width: 100%;
}
#page-workshop #workshop-section .container #toolSection .tool-swiper {
  padding: 30px 0 80px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#page-workshop #workshop-section .container #toolSection .tool-swiper .swiper-wrapper {
  align-items: center;
}
#page-workshop #workshop-section .container #toolSection .tool-swiper .swiper-slide {
  width: 400px !important;
  flex-shrink: 0;
}
#page-workshop #workshop-section .container #toolSection .tool-card {
  border: 2px solid #ad7ad8;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#page-workshop #workshop-section .container #toolSection .tool-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
}
#page-workshop #workshop-section .container #classSection {
  margin-top: 150px;
  position: relative;
  width: 100%;
}
#page-workshop #workshop-section .container #classSection .class-swiper {
  padding: 30px 0 80px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#page-workshop #workshop-section .container #classSection .class-swiper .swiper-wrapper {
  align-items: center;
}
#page-workshop #workshop-section .container #classSection .class-swiper .swiper-slide {
  width: 400px !important;
  flex-shrink: 0;
}
#page-workshop #workshop-section .container #classSection .class-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#page-workshop #workshop-section .container #classSection .class-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
}
#page-workshop #workshop-section .container #classSection .class-card .class-content {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background-color: rgba(173, 122, 216, 0.3);
  overflow-x: hidden;
}
#page-workshop #workshop-section .container #classSection .class-card .class-content h3 {
  font-size: 22px;
  color: #583759;
}
#page-workshop #workshop-section .container #classSection .class-card .class-content .date {
  font-size: 18px;
  color: #583759;
  margin-bottom: 20px;
}
#page-workshop #workshop-section .container #classSection .class-card .class-content p {
  color: #583759;
  font-size: 16px;
}
#page-workshop #workshop-section .container #classSection .class-card .class-content .content {
  font-size: 16px;
  margin-top: 30px;
}
#page-workshop #workshop-section .container .workshop-contact {
  text-align: center;
}
#page-workshop #workshop-section .container .workshop-contact p {
  font-size: 18px;
  color: #583759;
  margin-bottom: 20px;
}
#page-workshop #workshop-section .container .workshop-contact button {
  color: #583759;
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #583759;
  padding: 10px 30px;
  border-radius: 50px;
  transition: all 0.6s ease;
}
#page-workshop #workshop-section .container .workshop-contact button:hover {
  background-color: #583759;
  color: #cfafe9;
}

#page-gallery #gallerySection {
  position: relative;
  margin-top: 200px;
}
#page-gallery #gallerySection .btn-wrapper {
  justify-content: center;
}
#page-gallery #gallerySection .gallery-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  align-items: start;
}
#page-gallery #gallerySection .gallery-column {
  display: flex;
  flex-direction: column;
}
#page-gallery #gallerySection .gallery-item {
  display: block;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}
#page-gallery #gallerySection .gallery-item:hover {
  transform: scale(1.02);
}
#page-gallery #gallerySection .gallery-item:hover img {
  opacity: 0.9;
}
#page-gallery #gallerySection .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}
#page-gallery #gallerySection .lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#page-gallery #gallerySection .lightbox-modal.active {
  display: flex;
  opacity: 1;
}
#page-gallery #gallerySection .lightbox-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  animation: zoomIn 0.3s ease;
}
#page-gallery #gallerySection .lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
#page-gallery #gallerySection .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #583759;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#page-gallery #gallerySection .lightbox-close:hover {
  background: #ad7ad8;
  color: #fff;
  transform: rotate(90deg);
}
#page-gallery #gallerySection .lightbox-close:focus {
  outline: 2px solid #ad7ad8;
  outline-offset: 2px;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#page-category {
  margin-top: -21px;
  min-height: 100vh;
  height: auto !important;
  overflow-y: visible !important;
}
#page-category #main {
  height: auto !important;
  overflow: visible !important;
}
#page-category .container {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}
#page-category .top-bottom {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}
#page-category #category-section {
  margin-top: 100px;
  letter-spacing: -1px;
  padding-top: 60px;
  font-size: 20px;
  height: auto !important;
  max-height: none !important;
  margin-bottom: 200px;
  overflow: visible !important;
}
#page-category #category-section .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 80px;
}
#page-category #category-section .buttons .button {
  transition: all 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none;
  font-weight: normal;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  opacity: 0.4;
  border: none;
  color: #583759;
  border: 1px solid #583759;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 30px;
}
#page-category #category-section .buttons .button:hover,
#page-category #category-section .buttons .button.active {
  opacity: 1;
  border: 1px solid #cfafe9;
  background-color: #cfafe9;
  color: #583759;
}
#page-category #category-section .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto 80px;
  gap: 15px;
  width: 100%;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  margin: 0 auto 80px;
  overflow: visible !important;
}
#page-category #category-section .grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
#page-category #category-section .gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}
#page-category #category-section .gallery-item:hover {
  transform: scale(1.02);
}
#page-category #category-section .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#page-category #category-section .grid img {
  transition: opacity 0.3s ease;
}
#page-category #category-section .lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#page-category #category-section .lightbox-modal.active {
  display: flex;
  opacity: 1;
}
#page-category #category-section .lightbox-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  animation: zoomIn 0.3s ease;
}
#page-category #category-section .lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
#page-category #category-section .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #583759;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#page-category #category-section .lightbox-close:hover {
  background: #ad7ad8;
  color: #fff;
  transform: rotate(90deg);
}
#page-category #category-section .lightbox-close:focus {
  outline: 2px solid #ad7ad8;
  outline-offset: 2px;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
#page-category #category-section .item {
  border-radius: 4px;
  height: 100px;
  width: 100%;
}
#page-category #category-section .hide {
  display: none;
}

#page-collection #collection-section {
  margin-top: 150px;
}
#page-collection #collection-section .buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 80px;
}
#page-collection #collection-section .buttons .thadingyut {
  background-image: url(./assets/collection_page/collection_btn_bg1.webp);
}
#page-collection #collection-section .buttons .thingyan {
  background-image: url(./assets/collection_page/collection_btn_bg2.webp);
}
#page-collection #collection-section .buttons .celebrity {
  background-image: url(./assets/collection_page/collection_btn_bg3.webp);
}
#page-collection #collection-section .buttons .wedding {
  background-image: url(./assets/collection_page/collection_btn_bg4.webp);
}
#page-collection #collection-section .buttons .button {
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 16px 80px;
  font-weight: bold;
  font-size: 20px;
  color: rgba(88, 55, 89, 0.6);
  border: none;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
#page-collection #collection-section .buttons .button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  transition: opacity 0.3s ease;
  z-index: -1;
}
#page-collection #collection-section .buttons .button.active {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
#page-collection #collection-section .buttons .button:hover {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
#page-collection #collection-section .buttons .button:hover::before,
#page-collection #collection-section .buttons .button.active::before {
  opacity: 0;
}
#page-collection #collection-section .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 0 auto 80px;
  max-width: 100%;
  gap: 15px;
  width: 100%;
}
#page-collection #collection-section .grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
#page-collection #collection-section .gallery-item {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}
#page-collection #collection-section .gallery-item:hover {
  transform: scale(1.02);
}
#page-collection #collection-section .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#page-collection #collection-section .grid img {
  transition: opacity 0.3s ease;
}
#page-collection #collection-section .lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#page-collection #collection-section .lightbox-modal.active {
  display: flex;
  opacity: 1;
}
#page-collection #collection-section .lightbox-content {
  position: relative;
  max-width: 500px;
  width: 90%;
  animation: zoomIn 0.3s ease;
}
#page-collection #collection-section .lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}
#page-collection #collection-section .lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #583759;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#page-collection #collection-section .lightbox-close:hover {
  background: #ad7ad8;
  color: #fff;
  transform: rotate(90deg);
}
#page-collection #collection-section .lightbox-close:focus {
  outline: 2px solid #ad7ad8;
  outline-offset: 2px;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
#page-collection #collection-section .item {
  border-radius: 4px;
  height: 100px;
  width: 100%;
}
#page-collection #collection-section .hide {
  display: none;
}

#page-contact #contact-section {
  position: relative;
  padding: 0;
}
#page-contact #contact-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  height: 500px;
  background-image: url(./assets/contact_page/contact-map.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  z-index: 1;
  opacity: 0.6;
}
#page-contact #contact-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#page-contact #contact-section .container .contact-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 80px;
}
#page-contact #contact-section .container .contact-content .contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 700px;
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card {
  background: #fff;
  border: 2px solid #ad7ad8;
  border-radius: 8px;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card .icon {
  font-size: 48px;
  color: #ad7ad8;
  margin-bottom: 20px;
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card .icon i {
  display: inline-block;
  transition: transform 0.3s ease;
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card.office-hours {
  cursor: pointer;
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card h3 {
  font-size: 24px;
  color: #ad7ad8;
  margin-bottom: 5px;
  font-weight: bold;
  text-decoration: none;
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card p {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #583759;
  text-decoration: none;
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card:hover .fa-phone {
  animation: phone-shake 0.6s ease-in-out infinite;
  transform-origin: center;
}
#page-contact #contact-section .container .contact-content .contact-cards .contact-card:hover .fa-clock {
  animation: clock-shake 0.6s ease-in-out infinite;
  transform-origin: center;
}
#page-contact #contact-mail {
  padding: 200px 0 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page-contact #contact-mail .container {
  width: 600px;
  height: 300px;
  padding-top: 50px;
  min-height: 300px;
  position: relative;
  margin: 0 auto;
}
#page-contact #contact-mail .envelope {
  width: 600px;
  cursor: pointer;
  min-height: 300px;
  position: relative;
  transition: all 1s ease-in-out;
}
#page-contact #contact-mail .envelope:hover .top-wrap {
  transform: rotatex(180deg);
}
#page-contact #contact-mail .inner {
  position: relative;
  top: 5px;
  width: 100%;
  height: 100%;
}
#page-contact #contact-mail .triangle {
  width: 600px;
  height: 300px;
  position: absolute;
}
#page-contact #contact-mail .top-wrap {
  position: absolute;
  transform-origin: top;
  transition: all 1s ease-in-out;
}
#page-contact #contact-mail .frontface {
  backface-visibility: hidden;
}
#page-contact #contact-mail .top {
  width: 600px;
  height: 160px;
  position: absolute;
  background: linear-gradient(39deg, transparent 24%, rgba(0, 0, 0, 0.2) 24.5%, #cfafe9 24%, #cfafe9 230px, transparent 42%), linear-gradient(-39deg, transparent 24%, rgba(0, 0, 0, 0.2) 24.5%, #cfafe9 24%, #cfafe9 230px, transparent 42%, transparent 100%);
}
#page-contact #contact-mail .backface .top {
  background: linear-gradient(39deg, transparent 24%, rgba(0, 0, 0, 0.1) 24.5%, #f7f2fc 24%, #f7f2fc 230px, transparent 42%), linear-gradient(-39deg, transparent 24%, rgba(0, 0, 0, 0.1) 24.5%, #f7f2fc 24%, #f7f2fc 230px, transparent 42%, transparent 100%);
}
#page-contact #contact-mail .top-center {
  width: 284px;
  height: 197px;
  background-color: #cfafe9;
  position: absolute;
  top: -5px;
  left: 159px;
  border-radius: 0 0 50% 50%/0 0 60% 60%;
  box-shadow: 0 1px 0 #cfafe9, 0 2px 1px rgba(0, 0, 0, 0.4);
}
#page-contact #contact-mail .backface .top-center {
  background-color: #f7f2fc;
  box-shadow: 0 1px 0 #f7f2fc, 0 2px 1px rgba(0, 0, 0, 0.2);
}
#page-contact #contact-mail .back, #page-contact #contact-mail .front {
  width: 600px;
  height: 300px;
  top: 0px;
  position: absolute;
  border-radius: 0 0 30px 30px;
}
#page-contact #contact-mail .back {
  background-color: #b787de;
  border-top: 2px solid rgb(171, 115, 216.5);
  z-index: -1;
  box-shadow: 8px 8px 15px 1px rgba(0, 0, 0, 0.2);
}
#page-contact #contact-mail .letter-wrap {
  position: absolute;
  top: 0;
  padding: 10px 0;
  width: 600px;
  height: 200px;
  overflow: hidden;
  transition: all 1s ease-in-out;
}
#page-contact #contact-mail .letter {
  position: relative;
  padding: 30px;
  width: 560px;
  height: 520px;
  overflow: hidden;
  margin: 0 auto;
  background-color: #583759;
  transition: all 1s ease-in-out;
  border-radius: 3px;
}
#page-contact #contact-mail label {
  color: #f7f2fc;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  font-size: 13px;
}
#page-contact #contact-mail input, #page-contact #contact-mail textarea {
  width: 100%;
  height: 35px;
  display: block;
  margin: 5px 0;
  padding: 8px 10px;
  background: none;
  outline: none;
  color: #f7f2fc;
  border: 1px solid rgba(247, 242, 252, 0.2);
  border-radius: 5px;
  box-shadow: inset 0px 0px 1px rgb(25.6666666667, 16.0416666667, 25.9583333333);
}
#page-contact #contact-mail textarea {
  height: 100px;
  resize: none;
  font-family: "Times New Roman", Times, "Noto Sans Myanmar", "Poppins", serif;
  font-size: 16px;
}
#page-contact #contact-mail input:focus, #page-contact #contact-mail textarea:focus {
  background-color: rgb(97.35, 60.84375, 98.45625);
}
#page-contact #contact-mail .submit-card {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  background: #cfafe9;
  color: #583759;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  margin: 30px 0;
  width: 100%;
  transition: all 0.3s ease;
}
#page-contact #contact-mail .submit-card span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#page-contact #contact-mail .submit-card .text-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s;
}
#page-contact #contact-mail .submit-card:hover {
  background: #b787de;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(207, 175, 233, 0.4);
}
#page-contact #contact-mail .submit-card:hover .text-default {
  opacity: 0;
}
#page-contact #contact-mail .submit-card:hover .text-hover {
  opacity: 1;
}
#page-contact #contact-mail .icon-anim {
  display: inline-block;
  animation: fly 1s infinite;
}
#page-contact #contact-mail .front {
  overflow: hidden;
}
#page-contact #contact-mail .left {
  background: linear-gradient(38deg, #cfafe9 40%, rgba(255, 255, 255, 0.3) 40.5%, transparent 40%);
}
#page-contact #contact-mail .right {
  background: linear-gradient(-38deg, #cfafe9 40%, rgba(255, 255, 255, 0.3) 40.5%, transparent 40%);
}
#page-contact #contact-mail .bottom {
  width: 600px;
  height: 175px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 10%, transparent), linear-gradient(150deg, transparent 24%, rgba(255, 255, 255, 0.2) 25%, #cfafe9 24%, #cfafe9 42%, transparent 42%, transparent 100%), linear-gradient(-150deg, transparent 24%, rgba(255, 255, 255, 0.2) 25%, #cfafe9 24%, #cfafe9 42%, transparent 42%, transparent 100%), linear-gradient(to top, #cfafe9 77%, transparent 77%);
}
#page-contact #contact-mail .rounded {
  width: 180px;
  height: 80px;
  border-radius: 33px;
  background-color: #cfafe9;
  position: absolute;
  box-shadow: 0 -1px 1px 2px rgba(255, 255, 255, 0.2);
  top: 120px;
  left: 210px;
}
#page-contact #contact-mail .notif {
  left: 50%;
  top: 50%;
  margin: 0;
  padding: 0;
  display: none;
  font-size: 18px;
  position: absolute;
  text-align: center;
  color: #583759;
  font-weight: bold;
  transform: translate(-50%, -50%);
}

/* Animations */
@keyframes phone-shake {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  20% {
    transform: rotate(-10deg) translateX(-3px);
  }
  40% {
    transform: rotate(10deg) translateX(3px);
  }
  60% {
    transform: rotate(-10deg) translateX(-3px);
  }
  80% {
    transform: rotate(10deg) translateX(3px);
  }
  100% {
    transform: rotate(0deg) translateX(0);
  }
}
@keyframes clock-shake {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  40% {
    transform: rotate(8deg);
  }
  60% {
    transform: rotate(-8deg);
  }
  80% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fly {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(3px) translateY(-3px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes fadeDrop {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .container {
    margin-left: 30px;
    margin-right: 30px;
  }
  .mobile-break {
    display: inline;
  }
  .display-none {
    display: none;
  }
  .btn-wrapper {
    margin-top: 35px;
  }
  .btn-wrapper .btn {
    padding: 5px 10px;
    font-size: 12px;
    border-width: 1.5px;
  }
  #main {
    height: 100vh;
    min-height: 600px;
  }
  #main::before {
    background-size: 70vh auto;
    margin-top: 10px;
    margin-left: -20px;
    justify-content: center;
    align-items: center;
  }
  #main .main-visual {
    position: relative;
  }
  #main .main-visual .main-logo {
    display: none;
    position: relative;
    z-index: 1111;
  }
  #main .main-visual .main-title {
    position: absolute;
    top: 230px;
    text-align: center;
    width: 100%;
  }
  #main .main-visual .main-title p {
    margin-bottom: 0;
    font-size: 24px;
    text-align: center;
    width: 100%;
  }
  #main .main-visual .main-title h1 {
    background-color: none !important;
    font-size: 30px;
    font-weight: bolder;
    line-height: 2rem;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }
  #main .main-visual .main-title .main-title-text {
    flex-direction: column !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 32px;
  }
  #main .main-visual .main-title .main-title-text .title-top::after {
    content: "" !important;
  }
  #main .main-visual .main-title .main-title-text .title-bottom {
    font-size: 28px;
  }
  #main .navbar {
    position: fixed !important;
    top: 0;
    width: 100%;
    background: #583759;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  #main .nav-section {
    display: none !important;
  }
  #main .social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    margin-left: 140px;
  }
  #main .social-icons i {
    font-size: 22px;
    color: #f7f2fc;
  }
  #main .mobile-menu-icons {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding-right: 70px;
  }
  #main .mobile-menu-icons i {
    font-size: 25px;
    color: #f7f2fc;
  }
  #main .mobile-menu-icons .dropdown {
    position: relative;
  }
  #main .mobile-menu-icons .dropdown #drop-btn {
    color: #f7f2fc;
    text-decoration: none;
  }
  #main .mobile-menu-icons .dropdown .dropdown-menu {
    position: absolute;
    top: 35px;
    left: auto;
    right: 0;
    margin-left: 0;
    background: #f7f2fc;
    border-radius: 5px;
    padding: 8px;
    width: 170px;
    display: none;
    flex-direction: column;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.159);
    z-index: 9999;
  }
  #main .mobile-menu-icons .dropdown .dropdown-menu a {
    padding: 6px 20px;
    color: #583759;
    font-weight: normal;
    text-decoration: none;
    font-size: 16px;
  }
  #main .mobile-menu-icons .dropdown .dropdown-menu a:hover {
    background: rgb(91.1166666667, 56.9479166667, 92.1520833333);
    color: #f7f2fc;
    border-radius: 5px;
  }
  #main .mobile-menu-icons .dropdown .dropdown-menu a:hover::after {
    display: none;
  }
  #main .mobile-menu-icons .dropdown .dropdown-menu.open {
    display: flex;
  }
  #main .mobile-menu-icons .dropdown:hover .dropdown-menu {
    display: flex;
    animation: fadeDrop 0.25s ease forwards;
    left: 0;
    margin-left: -150px;
  }
  #main #fixedLogo {
    position: relative;
    top: 370px;
    left: 30%;
    width: 150px;
    height: auto;
    display: block;
  }
  #main #fixedLogo.small {
    position: fixed;
    top: -100px;
    left: 10px;
    width: 90px;
    z-index: 99999;
  }
  #whatSection {
    height: 520px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    gap: 20px;
    overflow: hidden;
    position: relative;
  }
  #whatSection h1 {
    font-size: 30px;
    color: #fff;
    line-height: 1.8;
    max-width: 50%;
    text-align: left;
  }
  #whatSection img.what-background {
    width: 45%;
    max-width: 220px;
    height: auto;
    transform: translateX(10%);
  }
  #whatSection.exit h1 {
    transform: translateX(-40px);
    opacity: 0;
  }
  #whatSection.exit img.what-background {
    transform: translateX(80px);
    opacity: 0;
  }
  #quillingSection .quilling-container {
    flex-direction: column;
    align-items: center;
    padding: 35px 15px;
    text-align: center;
    gap: 20px;
    position: relative;
    border-radius: 30px;
  }
  #quillingSection .quilling-left-img {
    position: relative;
    width: 150px;
    height: auto;
    top: -20px;
    left: -70px;
    rotate: -8deg;
    z-index: 2;
  }
  #quillingSection .quilling-left-img img {
    width: 100%;
    transform: translateX(0);
  }
  #quillingSection .quilling-content {
    padding: 0px 10px;
  }
  #quillingSection .quilling-content h1 {
    font-size: 30px !important;
    margin-bottom: 5px;
    color: #583759;
  }
  #quillingSection .quilling-content .quilling-subtitle {
    width: 90%;
    font-size: 14px;
    background: #f7f2fc;
    padding: 10px 15px;
    border-radius: 12px;
    color: #fff;
    margin: 0 auto 20px auto;
    line-height: 1.5;
  }
  #quillingSection .quilling-content p {
    font-size: 14px !important;
    line-height: 1.7;
    margin-top: 10px;
  }
  #quillingSection .quilling-right-hand {
    width: 150px;
    position: absolute;
    right: 10px;
    bottom: -50px;
    z-index: 2;
  }
  #quillingSection .lotus-wrapper {
    border-radius: 30px;
  }
  #gallerySection {
    margin-top: 30px;
  }
  #gallerySection h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #gallerySection .gallery-row {
    -moz-column-count: 2;
         column-count: 2;
    gap: 15px;
  }
  #gallerySection .gallery-column {
    margin-bottom: 10px;
  }
  #gallerySection .gallery-column img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 6px;
    display: block;
  }
  #founderSection {
    margin-top: 120px;
  }
  #founderSection .container {
    overflow: hidden;
  }
  #founderSection .founder-name-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
  }
  #founderSection .founder-name-bg .name-img {
    max-width: 180px;
    height: auto;
  }
  #founderSection .founder-name-bg .htike {
    max-width: 240px;
  }
  #founderSection .founder-text {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #founderSection .founder-text .founder-img {
    position: absolute;
    top: 250px;
    left: 130px;
    z-index: 5;
  }
  #founderSection .founder-text .founder-img img {
    max-width: 220px;
  }
  #founderSection .founder-text .intro-mm {
    max-width: 100%;
    font-size: 14px;
  }
  #founderSection .founder-text .founder-title {
    align-items: center;
    margin-top: 50px;
    margin-bottom: -10px;
  }
  #founderSection .founder-text .founder-title .title {
    font-size: 30px;
  }
  #founderSection .founder-text .founder-sign img {
    width: 130px;
    margin-top: 60px;
    margin-left: -150px;
  }
  #founderSection .rainbow-background .rainbow-lines .line {
    height: 2px;
  }
  #interviewSection {
    position: relative;
  }
  #interviewSection .swiper-button-prev,
  #interviewSection .swiper-button-next {
    width: 44px;
    height: 36px;
    color: #583759;
    display: flex !important;
    align-items: center;
    position: absolute;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000 !important;
    transition: all 0.25s ease;
    pointer-events: auto !important;
    touch-action: manipulation;
    transition: all 0.25s ease;
  }
  #interviewSection .swiper-button-prev {
    border-radius: 30px 0px 0px 30px;
    left: -15px;
  }
  #interviewSection .swiper-button-next {
    border-radius: 0px 30px 30px 0px;
    right: -15px;
  }
  #interviewSection .swiper-button-prev::after,
  #interviewSection .swiper-button-next::after {
    display: none;
    font-size: 30px;
    font-weight: bold;
    color: #583759;
  }
  #interviewSection .swiper-button-prev:active,
  #interviewSection .swiper-button-next:active {
    transform: translateY(-50%) scale(0.95);
  }
  #interviewSection .menu-swiper {
    margin-top: 40px;
    position: relative;
  }
  #interviewSection figure.menu-card figcaption {
    padding: 16px;
  }
  #interviewSection figure.menu-card h2 {
    font-size: 16px;
  }
  #interviewSection figure.menu-card p {
    font-size: 13px;
    line-height: 1.6;
  }
  #interviewSection figure.menu-card button {
    font-size: 12px;
    padding: 10px;
  }
  #activitySection .swiper-button-next {
    display: none !important;
  }
  #activitySection .swiper-button-prev {
    display: none !important;
  }
  #workshopSection {
    position: relative;
  }
  #workshopSection .canvas {
    display: block;
    opacity: 1;
    pointer-events: none;
  }
  #workshopSection .swiper-button-prev,
  #workshopSection .swiper-button-next {
    position: absolute;
    width: 44px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000 !important;
    pointer-events: auto !important;
    touch-action: manipulation;
    transition: all 0.25s ease;
  }
  #workshopSection .swiper-button-prev {
    border-radius: 30px 0px 0px 30px;
    left: -15px;
  }
  #workshopSection .swiper-button-next {
    border-radius: 0px 30px 30px 0px;
    right: -15px;
  }
  #workshopSection .swiper-button-prev::after,
  #workshopSection .swiper-button-next::after {
    display: none;
    font-size: 30px;
    font-weight: bolder;
    color: #583759;
  }
  #workshopSection .swiper-button-prev:active,
  #workshopSection .swiper-button-next:active {
    transform: translateY(-50%) scale(0.95);
  }
  #workshopSection .menu-swiper {
    position: relative;
    margin-top: 40px;
  }
  #workshopSection figure.menu-card {
    height: 480px;
  }
  #workshopSection figure.menu-card figcaption {
    padding: 16px;
  }
  #workshopSection figure.menu-card h2 {
    font-size: 16px;
  }
  #workshopSection figure.menu-card p {
    font-size: 13px;
    line-height: 1.6;
  }
  #workshopSection figure.menu-card h4 {
    font-size: 13px;
  }
  #newsSection .news-wrapper {
    flex-direction: column;
  }
  #newsSection .news-right {
    display: none;
  }
  #newsSection .news-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }
  #newsSection .news-item img {
    width: 100%;
    height: auto;
  }
  #newsSection .news-item .news-date {
    align-self: flex-end;
  }
  #backToTop {
    width: 46px;
    height: 46px;
    right: 18px;
    bottom: 18px;
  }
  #backToTop .top-text {
    font-size: 12px;
    padding: 2px 6px;
  }
  #siteFooter {
    padding: 30px 20px 0;
  }
  #siteFooter .footer-inner {
    grid-template-columns: 1fr;
    margin-bottom: -10px;
  }
  #siteFooter .footer-brand {
    align-items: center;
  }
  #siteFooter .footer-logo {
    display: none;
  }
  #siteFooter .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
  }
  #siteFooter .footer-social a i {
    font-size: 42px;
  }
  #siteFooter .footer-social a:hover {
    color: #e6c8ff;
  }
  #siteFooter .footer-links {
    display: none;
  }
  #siteFooter .footer-links .footer-col {
    display: none;
  }
  #siteFooter .footer-bottom {
    margin-top: 25px;
    font-size: 12px;
  }
  #page-history #main #navbar {
    height: 42px;
  }
  #page-history #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-history #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-history #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-history #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-history .history-section {
    background-position: center bottom;
    background-size: 80%;
    margin-top: -600px;
  }
  #page-history .history-section .history-bg {
    margin-top: 700px;
  }
  #page-history .history-section .history-content {
    padding-left: 0;
    max-width: 100%;
  }
  #page-history .history-section .history-content .history-title {
    font-size: 28px;
  }
  #page-history .history-section .year-tabs {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  #page-history .history-section .year-tabs .year-tab {
    font-size: 18px;
  }
  #page-history .history-section .year-tabs .year-tab::after {
    left: 35%;
    width: 30%;
  }
  #page-history .history-section .year-group {
    margin-left: -50px;
    margin-right: -50px;
    margin-bottom: -80px;
  }
  #page-history .history-section .timeline-body .timeline-content {
    position: relative;
    width: 200px;
    left: 0;
    right: 0;
  }
  #page-history .history-section .timeline-body .timeline-months {
    position: relative;
    width: 150px;
    left: -170px;
    right: 20px;
  }
  #page-interview #main #navbar {
    height: 42px;
  }
  #page-interview #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-interview #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-interview #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-interview #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-interview #interview-section {
    margin-top: -480px;
  }
  #page-interview #interview-section .container {
    margin-bottom: -50px;
  }
  #page-interview #interview-section .container .title {
    font-size: 28px;
  }
  #page-interview #interview-section .container .interview-layout {
    grid-template-columns: 80px 1fr;
    gap: 20px;
    margin-left: 0;
  }
  #page-interview #interview-section .container .interview-layout .media-list {
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
    max-height: calc(60vh - 100px);
  }
  #page-interview #interview-section .container .interview-layout .media-list img {
    width: 80px;
  }
  #page-interview #interview-section .container .interview-layout .media-list img:hover {
    transform: translateX(3px);
  }
  #page-interview #interview-section .container .interview-layout .timeline {
    padding-left: 10px;
  }
  #page-interview #interview-section .container .interview-layout .timeline .vertical-line {
    left: -10px;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item {
    grid-template-columns: 30px auto;
    gap: 30px;
    margin: 30px 0;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .date {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .date .year {
    font-size: 16px;
    padding-bottom: 0;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .date .day {
    font-size: 13px;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .date .month {
    font-size: 13px;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content {
    flex-direction: column;
    gap: 15px;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content .thumbnail {
    flex: 0 0 auto;
    width: 100%;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content .thumbnail img {
    width: 100%;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content .content h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  #page-interview #interview-section .container .interview-layout .timeline .interview-item .interview-content .content p {
    font-size: 13px;
    line-height: 1.6;
  }
  #page-review #main #navbar {
    height: 42px;
  }
  #page-review #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-review #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-review #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-review #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-review #review-section {
    margin-top: -480px;
  }
  #page-review #review-section .pagination {
    gap: 6px;
  }
  #page-review #review-section .pagination button {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
  #page-review #review-section .container .title {
    font-size: 28px;
  }
  #page-review #review-section .container .review-summary {
    flex-direction: column;
    gap: 12px;
    margin-top: -20px;
    margin-bottom: -20px;
  }
  #page-review #review-section .container .review-summary .summary-box {
    width: 100%;
    max-width: 280px;
    padding: 12px 16px;
  }
  #page-review #review-section .container .review-summary .summary-box .label {
    font-size: 16px;
    margin-bottom: 6px;
  }
  #page-review #review-section .container .review-summary .summary-box .value {
    font-size: 20px;
  }
  #page-review #review-section .container .review-summary .summary-box.rating .value {
    gap: 12px;
  }
  #page-review #review-section .container .review-summary .summary-box.rating .stars {
    font-size: 13px;
  }
  #page-review #review-section .container .review-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  #page-review #review-section .container .review-left {
    text-align: left;
  }
  #page-review #review-section .container .review-left .review-text {
    font-size: 14px;
    line-height: 1.6;
  }
  #page-review #review-section .container .review-right {
    text-align: left;
  }
  #page-review #review-section .container .review-right img {
    width: 100%;
    border-radius: 12px;
  }
  #page-activity #main #navbar {
    height: 42px;
  }
  #page-activity #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-activity #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-activity #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-activity #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-activity #activity-section {
    margin-top: -480px;
  }
  #page-activity #activity-section .container {
    margin: 0 10px;
  }
  #page-activity #activity-section .container .title {
    font-size: 28px;
    margin-bottom: -30px;
  }
  #page-activity #activity-section .container .title-line {
    display: none;
  }
  #page-activity #activity-section .container .activity-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }
  #page-activity #activity-section .container .activity-layout .activity-years {
    max-height: none;
    margin-top: 20px;
    padding-bottom: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-prev,
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-next {
    width: 44px;
    height: 36px;
    background-color: #583759;
    border: none;
    color: #f7f2fc;
    font-size: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    touch-action: manipulation;
    padding-bottom: 3px;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-prev:disabled,
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #e0e0e0;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-prev {
    border-radius: 30px 0px 0px 30px;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-next {
    border-radius: 0px 30px 30px 0px;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-display {
    position: relative;
    width: 150px;
    height: 50px;
    overflow: hidden;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-display .year {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year-navigation .year-display .year.active {
    opacity: 1;
    pointer-events: auto;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .event-list {
    display: none;
    margin-left: 20px;
    margin-right: 20px;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .event-list.active {
    display: flex;
  }
  #page-activity #activity-section .container .activity-layout .activity-years .year {
    width: 100%;
    font-size: 20px;
  }
  #page-activity #activity-section .container .activity-layout .activity-years ul {
    gap: 10px;
  }
  #page-activity #activity-section .container .activity-layout .activity-years ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail {
    padding-left: 0px;
    margin-left: 30px;
    margin-right: 30px;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #cfafe9;
    z-index: -1;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail::before {
    background-color: #f7f2fc;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .vertical-line {
    display: none;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item {
    padding-top: 30px;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item #activityTitle {
    font-size: 20px;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item .activity-date {
    font-size: 14px;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item #activityText {
    font-size: 14px;
    line-height: 1.6;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .mySlides {
    aspect-ratio: 4/3;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .mySlides .numbertext {
    font-size: 10px;
    padding: 5px 8px;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .prev,
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .next {
    padding: 10px;
    font-size: 16px;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .row {
    gap: 5px;
    margin-top: 8px;
  }
  #page-activity #activity-section .container .activity-layout .activity-detail .activity-item .gallery .column img {
    aspect-ratio: 4/3;
  }
  #page-exhibition #main #navbar {
    height: 42px;
  }
  #page-exhibition #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-exhibition #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-exhibition #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-exhibition #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-exhibition #exhibition-section {
    background-size: 150px auto;
    background-position: left bottom;
    margin-top: -480px;
  }
  #page-exhibition #exhibition-section .container {
    margin: 0 10px;
    padding: 0 15px;
  }
  #page-exhibition #exhibition-section .container .title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  #page-exhibition #exhibition-section .container .title-line {
    display: none;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 10px;
    grid-template-areas: "years years years" "items line details";
  }
  #page-exhibition #exhibition-section .container .exhibition-layout::before {
    content: "";
    grid-area: line;
    width: 2px;
    background: #ad7ad8;
    justify-self: center;
    margin-top: -15px;
    margin-left: -95px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-years {
    grid-area: years;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 30px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-years::after {
    content: "";
    position: absolute;
    top: 70px;
    height: 2px;
    width: 100%;
    background: #ad7ad8;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-years .year {
    flex: 1;
    max-width: 120px;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 4px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper {
    grid-area: details;
    padding-left: 15px;
    margin-bottom: 80px;
    min-height: auto;
    width: 100%;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .vertical-line {
    display: none;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail {
    padding-top: 20px;
    margin-left: -50px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .activity-date {
    font-size: 14px;
    margin-bottom: 20px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .mySlides {
    height: 200px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .prev, #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content .gallery .next {
    padding: 12px;
    font-size: 18px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content p {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    padding: 0 5px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content.upcoming {
    text-align: center;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content.upcoming h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content.upcoming p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-detail-wrapper .exhibition-detail .detail-content.upcoming img {
    border-radius: 8px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items {
    grid-area: items;
    display: flex;
    flex-direction: column;
    width: 60%;
    padding: 20px 0 30px 0;
    margin-bottom: 30px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .vertical-line {
    display: none;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 5px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item img {
    width: 100%;
    height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item .exhibition-content {
    padding: 0;
    text-align: center;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item .exhibition-content h3 {
    font-size: 16px;
    line-height: 1.2;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item .exhibition-content p {
    font-size: 13px;
  }
  #page-exhibition #exhibition-section .container .exhibition-layout .exhibition-items .exhibition-item.active {
    background-color: rgba(207, 175, 233, 0.1);
    border: 1px solid #ad7ad8;
  }
  #page-workshop #main #navbar {
    height: 42px;
  }
  #page-workshop #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-workshop #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-workshop #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-workshop #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-workshop #workshop-section {
    background: none;
    position: relative;
    overflow: hidden;
    margin-top: -600px;
    margin-bottom: -50px;
  }
  #page-workshop #workshop-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(./assets/workshop_page/background/workshop_mainbg_img.webp);
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: right -70px top 20px;
    z-index: -1;
  }
  #page-workshop #workshop-section .swiper-pagination-fraction {
    font-size: 12px !important;
  }
  #page-workshop #workshop-section .container {
    margin-top: 80px;
    width: 95%;
    padding: 0 15px;
  }
  #page-workshop #workshop-section .container .main-font {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    padding-right: 180px;
  }
  #page-workshop #workshop-section .container .br {
    display: block;
  }
  #page-workshop #workshop-section .container .info {
    margin-top: 150px;
  }
  #page-workshop #workshop-section .container .info::after, #page-workshop #workshop-section .container .info::before {
    display: none;
  }
  #page-workshop #workshop-section .container .info .info-box {
    margin-bottom: 40px;
  }
  #page-workshop #workshop-section .container .info .info-box:last-child::after {
    display: none;
  }
  #page-workshop #workshop-section .container .info .info-box h3 {
    font-size: 14px;
    padding: 8px 20px;
    display: block;
    text-align: center;
  }
  #page-workshop #workshop-section .container .info .info-box .info-content {
    margin-top: 20px;
  }
  #page-workshop #workshop-section .container .info .info-box .info-content ul, #page-workshop #workshop-section .container .info .info-box .info-content p {
    margin-left: 20px;
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.8;
  }
  #page-workshop #workshop-section .container .info .info-box .info-content li {
    margin-left: 10px;
    padding-left: 15px;
    font-size: 13px;
  }
  #page-workshop #workshop-section .container .info .info-box .info-content li::before {
    font-size: 16px;
  }
  #page-workshop #workshop-section .container .info .info-box .info-content .underline {
    font-size: 13px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ad7ad8;
  }
  #page-workshop #workshop-section .container #toolSection {
    margin-top: 80px;
  }
  #page-workshop #workshop-section .container #toolSection .title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
  }
  #page-workshop #workshop-section .container #toolSection .tool-swiper {
    padding: 20px 0 60px;
  }
  #page-workshop #workshop-section .container #toolSection .tool-swiper .swiper-slide {
    width: 265px !important;
    max-width: 265px !important;
  }
  #page-workshop #workshop-section .container #toolSection .tool-card {
    padding: 8px;
  }
  #page-workshop #workshop-section .container #toolSection .swiper-button-prev,
  #page-workshop #workshop-section .container #toolSection .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  #page-workshop #workshop-section .container #toolSection .swiper-button-prev::after,
  #page-workshop #workshop-section .container #toolSection .swiper-button-next::after {
    font-size: 14px;
  }
  #page-workshop #workshop-section .container #toolSection .swiper-controls-row {
    gap: 2rem;
    margin-top: 20px;
  }
  #page-workshop #workshop-section .container #toolSection .swiper-controls-row .swiper-pagination {
    font-size: 12px;
  }
  #page-workshop #workshop-section .container #classSection {
    margin-top: -80px;
  }
  #page-workshop #workshop-section .container #classSection .title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
  }
  #page-workshop #workshop-section .container #classSection .class-swiper {
    padding: 20px 0 60px;
  }
  #page-workshop #workshop-section .container #classSection .class-swiper .swiper-slide {
    width: 265px !important;
    max-width: 265px !important;
  }
  #page-workshop #workshop-section .container #classSection .class-card img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #page-workshop #workshop-section .container #classSection .class-card .class-content {
    height: auto;
    max-height: 250px;
    padding: 20px;
    overflow-y: hidden;
  }
  #page-workshop #workshop-section .container #classSection .class-card .class-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  #page-workshop #workshop-section .container #classSection .class-card .class-content .date {
    font-size: 13px;
    margin-bottom: 15px;
  }
  #page-workshop #workshop-section .container #classSection .class-card .class-content p {
    font-size: 12px;
    line-height: 1.6;
  }
  #page-workshop #workshop-section .container #classSection .class-card .class-content .content {
    font-size: 12px;
    margin-top: 15px;
  }
  #page-workshop #workshop-section .container #classSection .swiper-button-prev,
  #page-workshop #workshop-section .container #classSection .swiper-button-next {
    width: 30px;
    height: 30px;
  }
  #page-workshop #workshop-section .container #classSection .swiper-button-prev::after,
  #page-workshop #workshop-section .container #classSection .swiper-button-next::after {
    font-size: 14px;
  }
  #page-workshop #workshop-section .container #classSection .swiper-controls-row {
    gap: 2rem;
    margin-top: 60px;
  }
  #page-workshop #workshop-section .container #classSection .swiper-controls-row .swiper-pagination {
    font-size: 12px;
    margin-top: -50px;
  }
  #page-workshop #workshop-section .container .workshop-contact {
    margin-top: -100px;
    padding: 30px 15px;
  }
  #page-workshop #workshop-section .container .workshop-contact p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  #page-workshop #workshop-section .container .workshop-contact button {
    font-size: 14px;
    padding: 8px 25px;
  }
  #page-gallery {
    margin-top: -80px;
  }
  #page-gallery #main #navbar {
    height: 42px;
  }
  #page-gallery #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-gallery #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-gallery #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-gallery #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-gallery #gallerySection .title {
    font-size: 28px;
    margin-bottom: 40px;
    margin-top: -600px;
  }
  #page-gallery #gallerySection .gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
  #page-category #main #navbar {
    height: 42px;
  }
  #page-category #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-category #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-category #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-category #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-category #category-section {
    margin-bottom: 100px;
    margin-top: -520px;
  }
  #page-category #category-section .title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  #page-category #category-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #page-category #category-section .buttons {
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 5px;
  }
  #page-category #category-section .buttons .button {
    font-size: 10px;
    border-radius: 50px;
    padding: 0 5px;
  }
  #page-category #category-section .buttons .expect {
    padding-left: 15px;
    padding-right: 15px;
  }
  #page-category #category-section .buttons .en, #page-category #category-section .buttons .all {
    padding: 5px 13px;
  }
  #page-collection #main #navbar {
    height: 42px;
  }
  #page-collection #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-collection #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-collection #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-collection #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-collection #collection-section {
    margin-bottom: 100px;
    margin-top: -470px;
  }
  #page-collection #collection-section .title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  #page-collection #collection-section .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #page-collection #collection-section .buttons {
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 16px;
  }
  #page-collection #collection-section .buttons .button {
    font-size: 16px;
    padding: 8px 30px;
  }
  #page-contact #main #navbar {
    height: 42px;
  }
  #page-contact #main #navbar .nav-mobile {
    margin-right: -125px;
  }
  #page-contact #main #navbar #fixedLogo {
    width: 90px !important;
    height: auto;
    margin-top: -345px;
    margin-left: 25px;
  }
  #page-contact #main #navbar .social-icons {
    padding-left: 35px;
  }
  #page-contact #fixedLogo {
    position: relative;
    top: 370px;
    left: 0;
    width: 150px;
    height: auto;
    display: block;
  }
  #page-contact #contact-section {
    padding: 30px;
    margin-top: -600px;
  }
  #page-contact #contact-section::before {
    width: 300px;
    height: 300px;
    top: 50px;
    right: -50px;
    opacity: 0.3;
  }
  #page-contact #contact-section .container {
    padding: 0 10px;
  }
  #page-contact #contact-section .container .contact-content {
    gap: 30px;
  }
  #page-contact #contact-section .container .contact-content .contact-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 70%;
    margin: 0 auto;
  }
  #page-contact #contact-section .container .contact-content .contact-cards .contact-card {
    padding: 5px;
  }
  #page-contact #contact-section .container .contact-content .contact-cards .contact-card .icon {
    font-size: 36px;
    margin-bottom: 0;
  }
  #page-contact #contact-section .container .contact-content .contact-cards .contact-card h3 {
    font-size: 20px;
    margin-bottom: 0;
  }
  #page-contact #contact-section .container .contact-content .contact-cards .contact-card p, #page-contact #contact-section .container .contact-content .contact-cards .contact-card a {
    font-size: 16px;
  }
  #page-contact #contact-section .container #contact-mail {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 130px 0 50px;
    margin-bottom: -100px;
  }
  #page-contact #contact-section .container #contact-mail .container {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    min-height: 280px;
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
  }
  #page-contact #contact-section .container #contact-mail .envelope {
    width: 320px;
    min-height: 160px;
    height: 160px;
    margin-left: -5px;
    position: relative;
    left: 0;
    right: 0;
    transform: none;
    overflow: visible;
  }
  #page-contact #contact-section .container #contact-mail .inner {
    top: 5px;
  }
  #page-contact #contact-section .container #contact-mail .triangle {
    width: 320px;
    height: 160px;
  }
  #page-contact #contact-section .container #contact-mail .letter-wrap {
    width: 320px;
    height: 120px;
    overflow: hidden;
    padding: 10px 0;
  }
  #page-contact #contact-section .container #contact-mail .front,
  #page-contact #contact-section .container #contact-mail .back {
    width: 320px;
    height: 160px;
  }
  #page-contact #contact-section .container #contact-mail .top {
    width: 320px;
    height: 90px;
    background: linear-gradient(39deg, transparent 24%, rgba(0, 0, 0, 0.2) 24.5%, #cfafe9 24%, #cfafe9 123px, transparent 42%), linear-gradient(-39deg, transparent 24%, rgba(0, 0, 0, 0.2) 24.5%, #cfafe9 24%, #cfafe9 123px, transparent 42%, transparent 100%);
  }
  #page-contact #contact-section .container #contact-mail .backface .top {
    background: linear-gradient(39deg, transparent 24%, rgba(0, 0, 0, 0.1) 24.5%, #f7f2fc 24%, #f7f2fc 123px, transparent 42%), linear-gradient(-39deg, transparent 24%, rgba(0, 0, 0, 0.1) 24.5%, #f7f2fc 24%, #f7f2fc 123px, transparent 42%, transparent 100%);
  }
  #page-contact #contact-section .container #contact-mail .top-center {
    width: 150px;
    height: 105px;
    left: 85px;
    top: -5px;
  }
  #page-contact #contact-section .container #contact-mail .letter {
    width: 300px;
    height: 360px;
    max-height: 360px;
    padding: 15px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  #page-contact #contact-section .container #contact-mail .letter::-webkit-scrollbar {
    width: 4px;
  }
  #page-contact #contact-section .container #contact-mail .letter::-webkit-scrollbar-track {
    background: rgba(247, 242, 252, 0.1);
    border-radius: 2px;
  }
  #page-contact #contact-section .container #contact-mail .letter::-webkit-scrollbar-thumb {
    background: #cfafe9;
    border-radius: 2px;
  }
  #page-contact #contact-section .container #contact-mail .top-wrap {
    transform-origin: top center;
  }
  #page-contact #contact-section .container #contact-mail .bottom {
    width: 320px;
    height: 95px;
  }
  #page-contact #contact-section .container #contact-mail .rounded {
    width: 96px;
    height: 43px;
    top: 65px;
    left: 112px;
  }
  #page-contact #contact-section .container #contact-mail label {
    font-size: 11px;
    margin: 0 0 2px 0;
    display: block;
  }
  #page-contact #contact-section .container #contact-mail input,
  #page-contact #contact-section .container #contact-mail textarea {
    font-size: 12px;
    padding: 6px 8px;
    height: 30px;
    margin: 2px 0 8px 0;
  }
  #page-contact #contact-section .container #contact-mail textarea {
    height: 50px;
  }
  #page-contact #contact-section .container #contact-mail .submit-card {
    padding: 10px;
    font-size: 13px;
    margin: 12px 0 0 0;
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
  }
  #page-contact #contact-section .container #contact-mail .notif {
    font-size: 16px;
    width: 90%;
    line-height: 1.4;
  }
}/*# sourceMappingURL=style.css.map */