/*=============== HEADER & NAV ===============*/
.mo{
  display: none !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-container);
  z-index: var(--z-fixed);
  transition: box-shadow 0.3s, background-color 0.3s;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.container{
  width: auto;
}
.nav {
  height: var(--header-height);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  /* margin-top: 1.5rem; */
  /* padding-bottom: 1rem; */

  font-size: var(--font-size-small);
}

.logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: left;
  width: 200px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  line-height: 100%;
}

.nav-link {
  color: var(--color-dark-gray);
  font-weight: var(--font-weight-medium);
  transition: 0.3s;
}

.nav-link span {
  display: none;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
}

.nav-link i {
  font-size: calc(var(--font-size-normal) * 1.1);
  font-weight: var(--font-weight-medium);
}

.nav-link:hover {
  color: var(--color-first);
  border-bottom: 2px solid var(--color-first);
}

.login-box {
  display: flex;
  gap: 1rem;
  font-size: var(--font-size-smaller);
  align-items: center;
  transform: translateY(10px);
}

.login-box button {
  background: transparent;
}

.login-box .login {
  display: flex;
  background: var(--color-first);
  border-radius: 10px;
  color: var(--color-container);
  line-height: 1.5;
  padding: 0.2rem 0.5rem;
  align-items: center;
}
.login-box .login:hover{
  background: var(--color-second);
  color: var(--color-container);
}

.login-box-link {
  display: flex;
  align-items: stretch;
  height: 100%;
  cursor: pointer;
}

.login-box-link img {
  display: none;
  width: auto;
  height: 100%;
  scale: 1.1;
  aspect-ratio: 1/1;
  filter: contrast(0.5) brightness(1.5) sepia(1) saturate(32.5) hue-rotate(227deg);
}

.login-box button:hover,
.login-box-link i:hover {
  color: #4346ff;
}
.hall-owner-pic{
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.hall-owner-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(0.5) brightness(1.5) sepia(1) saturate(32.5) hue-rotate(227deg);
}
/* 
.hall-owner-pic{
  width: 2rem;
  height: 2rem;
  border: 1px solid #c0c0c0;
  border-radius: 50%;
  cursor: pointer;
}

.hall-owner-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
} 
*/

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .container {
    margin-inline: 1rem;
  }
  .nav-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--color-container);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 5%;
    transition: background-color 0.3s;
  }

  .open-hall-slide-container {
    grid-auto-columns: 25% !important;
  }
}

/* Add shadow header */
/* .shadow-header {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
} */

/* Active link */
.active-link {
  color: var(--color-first);
}

/*=============== SEARCH ===============*/

/* Show search */

/*=============== LOGIN ===============*/

/* Show login */

/*=============== HOME ===============*/

.home.section {
  padding-top: 5rem;
}

.bg-slide {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-content {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 2rem;
}

.home-title {
  width: 600px;
  word-break: keep-all;
  font-size: calc(var(--font-size-main-description) * 1.5);
  font-weight: 600;
  color: var(--color-bg);
  padding-top: 3rem;

  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.bg-slide .home-btn {
  width: 120px;
  text-align: center;
  background: var(--color-first);

  padding: 0.5rem 1rem;
  margin-top: 2rem;

  border: none;
  border-radius: 10px;

  font-size: var(--font-size-small);
  color: var(--color-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

  transition: all 0.3s;
}

.home-btn:hover {
  background: var(--color-effect);
}

/* Swiper class */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  /* background-color: var(--color-container); */
  /* border: 2px solid var(--color-second); */
  padding: 0.5rem;
  font-size: 5rem;
  font-weight: 100;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: none;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.home-swiper:hover .swiper-button-prev,
.home-swiper:hover .swiper-button-next {
  display: initial;
}

/*=============== 플랫폼 소개 ===============*/
.intro-container {
  gap: 4rem;
}

.main-title.section-title {
  width: fit-content;
  background: var(--color-first);
  border-radius: 100px;
  color: white;
  font-size: 8rem;
  font-family: 'Judson', serif;
  font-weight: 400;
  letter-spacing: -0.1vw;
  margin: 20px auto;
  padding: 0 80px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.main-title-description {
  margin-bottom: 3rem;
}

/* .main-title img {
  width: 60%;
} */

.sug-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 2rem 0;
  border-top: 1px solid var(--color-gray);
}

.title {
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-bold);
  color: var(--color-gray);
  line-height: 2.5rem;
}

.description li {
  position: relative;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  color: var(--color-gray);
  line-height: 2.5rem;
}

.description li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: -20px;
  top: 40%;
  background: var(--color-first);
  border-radius: 50%;
}

.usp-container {
  display: grid;
  row-gap: 5rem;
}

.usp-img-box {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.usp-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(2px) brightness(0.9) contrast(0.8);
}

.usp-data {
  position: absolute;
  bottom: 15%;
  left: 3rem;
  display: flex;
  gap: 5rem;
}

.img-title {
  color: var(--color-bg);
  font-size: var(--font-size-sub-title);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  word-break: keep-all;
}

.img-subtitle {
  width: 40%;
  color: var(--color-container);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  word-break: keep-all;
  line-height: 2rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.usp-description {
  margin-left: 2rem;
}
.whiteSector {
  color: var(--color-container);
}
/*=============== functions ===============*/
.functions {
  background: var(--color-first);
}

.function-summary {
  display: flex;
  align-items: center;
  justify-content: center;
}

.function-summary-box {
  display: flex;
  flex-direction: column;
  width: 350px;
  /* height: 600px; */
  padding: 2rem;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.function-summary img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1rem;
  box-shadow: 0px 2px 10px 0 rgba(0, 0, 0, 0.4);
}

.function-summary-box h3 {
  background: var(--color-container);
  border-radius: 100px;
  color: var(--color-first);
  padding: 10px 40px;
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-bold);
}

.function-summary-box p {
  font-size: calc(var(--font-size-small) * 1.2);
  font-weight: var(--font-weight-medium);
  color: var(--color-bg);
  word-break: keep-all;
  line-height: 2rem;
}

.function-category-box {
  margin-bottom: 3.5rem;
}

.function-img-box {
  position: relative;
  box-shadow: 0 0 8px 0 #0000007d;
  width: 100%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.function-img-box img {
  width: 100%;
  height: 100%;
  filter: brightness(0.9) contrast(0.9) saturate(1.2);
  object-fit: cover;
  object-position: 0 40%;
}

.function-img-data {
  position: absolute;
  bottom: 12%;
  left: 3rem;
}

.function-title {
  color: var(--color-bg);
  font-size: calc(var(--font-size-sub-title) * 0.8);
  font-weight: var(--font-weight-bold);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.function-subtitle {
  width: 100%;
  color: var(--color-container);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  word-break: keep-all;
  line-height: 2rem;
  text-shadow: 0 0px 6px rgba(0, 0, 0, 0.8);
}

.function-detail-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 0.8rem;
}

.detail-data-box {
  position: relative;
  border: 2px solid #ffffff6e;
  border-radius: 20px;
  padding: 4rem 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  gap: 1.5rem;
}

.detail-data-box::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--color-container);
  border-radius: 20px;
  opacity: 0.2;
}

.detail-data-box .icon-container {
  width: 45%;
  background: var(--color-container);
  border-radius: 50%;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2), -3px -3px 3px rgba(0, 0, 0, 0.2);
  position: relative;
}

.icon-container img {
  width: 100%;
  padding: 20%;
  filter: saturate(2.5) contrast(1.5) drop-shadow(0 0 3px #00000075);
}

.detail-data-box h2 {
  color: var(--color-container);
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-bold);
  margin-top: 10px;
  position: relative;
  text-align: center;
}

.detail-data-box p {
  color: var(--color-container);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  text-align: center;
  word-break: keep-all;
  line-height: 1.8rem;
  margin-top: 10px;
  position: relative;
}
/* Swiper class */

/*=============== price ===============*/
.price-data-container {
  position: relative;
}

.price-data {
  display: grid;
  grid-template-columns: 40% 30% 30%;
  padding: 2rem 15%;
  gap: 0.7rem;
  color: var(--color-dark-gray);
}

.basic {
  color: var(--color-gray);
  text-align: center;
}

.premium {
  color: var(--color-bg);
  text-align: center;
}

.price-head {
  font-size: var(--font-size-main-title);
  font-weight: var(--font-weight-bold);
  text-align: center;
}

.price-index {
  margin: 1rem 0 0.5rem;
  font-size: var(--font-size-main-description);
  font-weight: var(--font-weight-bold);
}

.index-detail {
  padding: 0 1rem;
}

.index-detail.basic,
.index-detail.premium {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
}

.basic-bg {
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  right: 35.8%;
  border-radius: 15px;
  background: var(--color-container);
  z-index: -1;
}

.premium-bg {
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  right: 14%;
  border-radius: 15px;
  background: var(--color-first);
  z-index: -1;
}

/*=============== template ===============*/
.template {
  background: var(--color-effect);
}

.template-title-description {
  color: var(--color-bg);
}

.template-design-contianer {
  position: relative;
  border-top: 1px solid var(--color-container);
  border-bottom: 1px solid var(--color-container);
  /* border-radius: 10px; */
  padding: 3rem 2rem;
  margin-bottom: 5rem;
}

.template-design-contianer::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
}

.template-swiper {
  position: relative;
}

.template-slide {
  position: relative;
  /* width: 600px;
  padding: 1rem 0; */
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.template-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.template-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.template-categoty {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 0 0 10px 10px;
  background: linear-gradient( 0deg, rgb(0 0 0), rgb(0 0 0 / 0%) );
  color: var(--color-container);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding-bottom: 1rem;
}

.template-categoty .category {
  color: var(--color-bg);
}

.comming-soon-text {
  position: absolute;

  display: none;

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

  width: 100%;
  text-align: center;

  filter:saturate(1.4);
  font-size: var(--font-size-main-title);
  font-weight: var(--font-weight-bold);
  color: var(--color-container);

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* comming soon text show */
.template-slide.comming-soon .template-img img {
  filter: grayscale(90%) blur(4px);
}

.template-slide.comming-soon .comming-soon-text {
  display: initial;
}

/* template pagination */
.template-swiper .swiper-pagination-bullets {
  position: relative;
  margin-top: 1.5rem;
}

/*템플릿별 상세 */

.template-data-header {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.template-data-title {
  font-size: var(--font-size-sub-title);
  font-weight: var(--font-weight-semibold);
  color: var(--color-bg);
  position: relative;
}

.template-selector {
  outline: none;
  width: 200px;
  border: 2px solid var(--color-container);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  color: var(--color-bg);
  font-size: var(--font-size-smaller);

  -webkit-appearance: none; /* 화살표 없애기 for chrome*/
  -moz-appearance: none; /* 화살표 없애기 for firefox*/
  appearance: none; /* 화살표 없애기 공통*/

  background: url("../img/icons/arrow-down-s-fill.png") no-repeat 95% 50%;

  cursor: pointer;
}

.template-selector option {
  font-size: var(--font-size-smaller);
  font-weight: var(--font-weight-medium);
  color: var(--color-bg);
  background: #5e61ff;
  border: none;
}

/*템플릿 상세설명 구역정리*/

.template-data-body {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  /* column-gap: 1rem; */
}

.template-data {
  flex-basis: 60%;
  background-color: #ffffff33;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--color-container);
}

.template-data-space {
  flex-basis: 5%;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--color-container);
}

.template-use-guide {
  flex-basis: 35%;
  position: relative;
  display: flex;
  background-color: #ffffff33;
  padding: 3rem 2rem 2rem;
  border-radius: 15px;
  color: var(--color-container);
  flex-direction: column;
  justify-content: flex-start;
  gap: 3rem;
}

/*템플릿 상세 내용 구역별 css*/

.template-data {
  background-color: #ffffff33;
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--color-container);
}

.template-description {
  font-size: var(--font-size-small);
  line-height: 2rem;
  color: var(--color-bg);
  margin-bottom: 1.5rem;
}

.template-data .selected-img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

  margin-bottom: 1rem;
}

.template-data .selected-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.template-img-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1rem;
}

.template-detail-img {
  width: 100%;
  height: 125px;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}

.template-detail-img.active {
  border: 3px solid var(--color-bg);
}

.template-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(0.8) contrast(0.8);
}

.active img {
  filter: brightness(1) saturate(1) contrast(1) !important;
}

.template-data-space {
  flex-basis: 5%;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.use-guide-title {
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-semibold);
}

.template-minimap {
  position: relative;
  display: flex;
  justify-self: center;
  width: 250px;
  height: 250px;
  margin: 1rem auto;

  scale: 0.9;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
}
.template-minimap img{
  aspect-ratio: 1/1;
  /* overflow: hidden; */
}

/* 가이드 미니맵 위치 및 active class */

.menu-area {
  position: absolute;
  /* top: 0;
  left: 0; */

  width: 30%;
  height: 30%;

  border-radius: 50%;

  border: 8px dashed #d1d1ff;

  background-color: transparent;
  cursor: pointer;
  color: transparent;

  font-size: 0.5rem;
  transition: all ease-out 0.3s;
  pointer-events: all;
  box-shadow: 0 0 0.6rem 0 #00000070;
}

.menu-area.active {
  border: 8px solid var(--color-effect);
  box-shadow: 0 0 0.6rem 0 #00000070;
  text-align: center;
  font-size: 2rem;
  color: var(--color-container);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff8b24;
}

.menu-area-rotate{
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  transform-origin: center;
  pointer-events: none;
}

.buddha {
  transform: rotate(45deg);
}
.image {
  transform: rotate(90deg);
}
.tree {
  transform: rotate(135deg);
}
.textboard {
  transform: rotate(180deg);
}
.memorialboard {
  transform: rotate(225deg);
}
.voice {
  transform: rotate(270deg);
}
.mybox {
  transform: rotate(315deg);
}
.video {
  transform: rotate(360deg);
}
.memorial {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}
.buddha-area {
}
.image-area {
}
.tree-area {
}
.memorialboard-area {
}
.mybox-area {
}
.textboard-area {
}
.voice-area {
}
.video-area {
}
.memorial-area {
}

.guide-text-box .menu-title {
  margin-bottom: 1rem;

  font-size: calc(var(--font-size-small) * 1.2);
  font-weight: var(--font-weight-bold);
  color: var(--color-container);
}

.guide-text-box .menu-description {
  font-size: calc(var(--font-size-smaller) * 1.05);
  font-weight: var(--font-weight-medium);
  word-break: keep-all;
  line-height: 1.7rem;

  color: var(--color-bg);
}

.user-level {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  font-size: var(--font-size-smaller);
  font-weight: 200;
  color: var(--color-container);
}

.creat-honorhall {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/*=============== 개설기념관 ===============*/

.open-list-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.search-box{
  display: flex;
  align-items: center;
}

.search-box input {
  width: 100%;
  padding: 0.6rem 1.5rem;
  background: transparent;

  border: 2px solid var(--color-bg);
  border-radius: 50px;

  color: var(--color-container);
  font-weight: 300;
  transition: all 0.3s ease-out;
}

.search-box input:hover {
  background: #ffffff50;
}

.search-box i {
  color: var(--color-bg);
  cursor: pointer;
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-semibold);
  margin-left: 10px;
}

.open-hall-list {
  /* position: relative; */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );

  border-top: 1px solid var(--color-container);
  border-bottom: 1px solid var(--color-container);

  /* padding: 2rem 3rem; */
  margin-bottom: 5rem;

  overflow: hidden;
}

.open-hall-slide-container {
  margin: 2rem 3rem;
  overflow: hidden;
  /* display: grid;

  grid-auto-flow: column;
  grid-auto-columns: 20%;
  
  overflow: hidden; */
}

.open-hall-slide {
  /* display: flex;
  border-radius: 10px;
  background: linear-gradient(167deg, #87a6ff, #5e61ff);
  box-shadow: 0 0 6px 0 #00000052;
  cursor:pointer;
  padding: 1.2rem 1rem;
  margin: 0.5rem 0.5rem;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease-out; */
  border-radius: 10px;
  background-color: #ffffff29;

  padding: 1.5rem 1rem;
}

.open-hall-slide .hall-image {
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 0 10px 0 #00000066;
  margin-bottom: 1rem;
  overflow: hidden;
}

.open-hall-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.owner-box {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.owner-box .user-pic img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.hall-data .hall-name {
  font-size: var(--font-size-smaller);
  font-weight: var(--font-weight-medium);
  color: var(--color-container);

  margin-bottom: 0.5rem;
}

.hall-data p {
  font-size: calc(var(--font-size-smaller) * 0.9);
  font-weight: 200;
  color: var(--color-container);
  line-height: 1.2rem;
}

.hall-data p span {
  margin-left: 0.5rem;
}


.list-prev-btn {
  left: -0.5rem;
}

.list-next-btn {
  right: -0.5rem;
}


.list-prev-btn,
.list-next-btn {
  display: block;

  font-size: var(--font-size-main-title);
  font-weight: 100;
  color: var(--color-container);
}

/*===========단체회원============*/
.group-member-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.company-image {
  width: 100%;
  height: auto;
  aspect-ratio: 614/300;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.company-image:hover img {
  scale: 1.05;
}
.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.2s ease-out;
}

.company-data {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.group-member-slide .hall-name {
  margin-bottom: 1rem;

  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark-gray);
}

.group-member-slide .company-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--color-gray);
  font-size: calc(var(--font-size-smaller) * 1.05);
  font-weight: var(--font-weight-medium);
  line-height: 1.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: keep-all;
  word-wrap: break-word;

}

.group-btn-container {
  display: flex;
  justify-content: flex-end;
}

/*=============== FOOTER ===============*/

.footer {
  background: var(--color-container);
  padding-bottom: 6rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 3rem 0;
}

.footer-container a {
  text-decoration: none;
}

.footer-logo {
  padding-bottom: 1.5rem;
}

.footer-logo a {
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-first);
}

.footer-left p {
  font-size: var(--font-size-small);
  line-height: 1.5rem;
}

.footer-middle li p {
  line-height: 1.6rem;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-dark-gray);
}

.footer-company-data li a {
  line-height: 1.6rem;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-dark-gray);
  transition: all 0.3s;

  cursor: pointer;
}

.footer-right {
  flex-basis: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-right .policy {
  display: flex;
  justify-content: space-between;
}

.footer-right .policy span {
  line-height: 1.8rem;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  color: var(--color-dark-gray);

  transition: all 0.3s;

  cursor: pointer;
}

.footer-right .policy span:hover {
  color: #4346ff;
  font-weight: var(--font-weight-semibold);
}

.footer-right .company-logo img {
  width: 100%;
}

.footer__copy {
  display: block;
  text-align: center;
  padding-bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 0.5rem;
  background-color: #d4d4d4;
}

::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: var(--color-second);
}

::-webkit-scrollbar-thumb:hover {
  border-radius: 0.5rem;
  background-color: var(--color-first);
}

/*=============== SCROLL UP ===============*/

/* Show Scroll Up */

/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 1312px) {
  .login_m {
    width: 100%;
    height: auto;
    padding: 1rem 0;
  }
  .login_m_typebox{
    border-radius: 100px;
    padding: 1.2rem 1.6rem;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .login_m_typebox_info{
    padding-left: 1rem;
  }
  .swiper-button-prev, .swiper-button-next{
    display: none !important;
  }
  .container {
    margin-inline: 1rem;
    margin-bottom: 1.8rem;
    padding-left: 0;
  }
  .intro-container{
    gap: 2rem;
  }
  .template-minimap {
    scale: 0.8;
  }
}
/* For large devices */
@media screen and (min-width: 1150px) {
  .section {
    padding-block: 5rem 6rem;
  }
  .nav {
    height: var(--header-height);
    column-gap: 3rem;
  }

  .nav-link i {
    display: none;
  }

  .nav-link span {
    display: block;
  }

  .nav-item {
    width: initial;
    margin-inline: auto 0;
  }

  .nav-list {
    column-gap: 2rem;
  }

  .nav-link {
    font-weight: var(--font-medium);
  }

  .home.section {
    padding-top: 5rem;
  }

  .bg-slide {
    height: 60vh;
  }
}

/* For medium devices */
@media screen and (min-width: 768px) and (max-width: 1149px) {
  .swiper-button-prev, .swiper-button-next{
    display: none !important;
  }
  .section {
    padding-block: 4rem 1rem;
  }

  .main-title.section-title {
    font-size: 7rem;
  }
  .sug-grid {
    grid-template-columns: 1fr;
  }

  .sug-description {
    margin-left: 2rem;
  }

  .usp-img-box {
    height: 200px;
  }

  .img-subtitle {
    width: 50%;
  }

  .function-summary {
    gap: 1rem;
  }

  .function-summary-box {
    padding: 0.5rem;
  }

  .function-summary img {
    width: 200px;
    height: 200px;
  }

  .function-summary-box p {
    font-size: calc(var(--font-size-small) * 1.1);
  }

  .detail-data-box {
    padding: 1.5rem 0.7rem;
    gap: 1rem;
  }

  .detail-data-box h2 {
    font-size: calc(var(--font-size-small) * 1.1);
  }

  .detail-data-box p {
    line-height: 1.5rem;
    font-size: calc(var(--font-size-smaller) * 1.1);
    font-weight: var(--font-weight-medium);
  }

  .premium-bg {
    width: 22%;
    right: 12%;
  }

  .template-data-space {
    font-size: 3.5rem;
  }

  .template-use-guide {
    padding: 2rem 1.5rem;
  }

  .open-hall-list {
    height: 440px;
    overflow: hidden;
  }

  /* .open-hall-slide-container {
    grid-auto-columns: 33.33%;
  } */

  .group-member-slide .hall-name {
    margin-bottom: 0.5rem;
  }

  .group-member-slide .company-description {
    line-height: 1.5rem;
  }

  .group-btn.button {
    padding: 1rem 3rem;
  }

  .footer-left p,
  .footer-middle li p,
  .footer-right .policy span {
    font-size: calc(var(--font-size-smaller) * 1.2);
    line-height: 1.3rem;
  }

  .footer-right .policy {
    flex-direction: column;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .pc767{
    display: none;
  }
  .swiper-button-prev, .swiper-button-next{
    display: none !important;
  }
  .section {
    padding-block: 4rem 1rem;
  }
  .nav-list{
    gap: 0.8rem;
  }
  .nav-menu {
    margin-inline: auto;
    padding: 1.25rem 5%;
  }
  .login_m{
    max-width: 28rem;
  }
  .login-box {
    height: 60%;
    transform: translateY(4px);
  }
  .hall-owner-pic{
    width: auto;
    height: 100%;
  }
  .login-box-link{
    width: auto;
    height: 100%;
  }
  .login-box-link button {
    display: none;
  }
  .login-box-link img {
    display: block;
  }
  .login-box-link i {
    display: initial;
  }

  .bg-slide {
    height: 45vh;
  }

  .home-title {
    width: 90%;
  }

  .intro.section {
    padding-top: 5rem;
  }

  .main-title.section-title {
    font-size: 4.5rem;
  }

  .main-title-description {
    margin-bottom: 5rem;
  }

  .main-title-description span {
    display: block;
  }

  .usp-img-box {
    height: 38vw;
  }

  .usp-data {
    flex-direction: column;
    gap: 2rem;
    left: 0;
    width:100%;
    text-align: center;
  }
  .usp-description{
    margin-left: 0;
  }
  .img-subtitle {
    width: 90%;
    margin: 0 auto;
    line-height: 1.7rem;
  }

  .description li {
    line-height: 1.7rem;
    word-break: keep-all;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 10px 10px 50px;
    letter-spacing: -0.4px;
  }
  
  .description li::after {
    left: 20px;
  }

  .section-title {
    font-size: calc(var(--font-size-section-title) * 0.9);
  }

  .section-title-description {
    font-size: calc(var(--font-size-main-description) * 0.9);
    line-height: 2rem;
    word-break: keep-all;
    line-height: 2rem;
  }

  .function-summary {
    display: none;
  }

  .function-summary-box {
    padding: 1rem 0.5rem;
  }

  .function-summary img {
    width: 25vw;
    height: 25vw;
  }

  .function-summary-box h3 {
    background: var(--color-container);
    border-radius: 100px;
    color: var(--color-first);
    font-weight: var(--font-weight-bold);
    padding: 10px 40px;
    font-size: calc(var(--font-size-main-description) * 0.9);
  }

  .function-summary-box p {
    font-size: calc(var(--font-size-small) * 1.1);
    line-height: 1.8rem;
  }

  .function-detail-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-data-box {
    padding: 1.5rem 2rem;
    gap: 1rem;
  }

  .detail-data-box .icon-container {
    width: 30%;
  }

  .price-data {
    row-gap: 0.5rem;
  }

  .price-head {
    font-size: calc(var(--font-size-main-title) * 0.7);
  }

  .basic-price,
  .premium-price {
    font-size: calc(var(--font-size-small) * 1.15);
  }

  .premium-bg {
    width: 24%;
    right: 10%;
  }


  .template-data-body {
    flex-direction: column;
    gap: 2rem;
  }

  .template-data-space {
    display: none;
  }

  .template-use-guide {
    gap: 1rem;
  }

  .template-use-guide {
    padding-bottom: 5rem;
  }

  .guide-text-box .menu-description {
    font-size: calc(var(--font-size-smaller) * 1.15);
  }

  .create-btn {
    width: 100%;
  }

  /* .open-hall-slide-container {
    grid-auto-columns: 50%;
  } */

  .section-title-description {
    margin: 0 10% 3rem;
    word-break: keep-all;
    line-height: 2rem;
  }

  .group-member-container {
    gap: 1.5rem;
  }

  .group-member-slide .company-description {
    font-size: calc(var(--font-size-smaller) * 1.1);
    line-height: 1.5rem;
  }

  .group-btn {
    width: 100%;
  }

  .footer-container {
    display: grid;
    gap: 2rem;
  }

  /* .footer-container {
    padding-left: 30%;
  } */

  .footer-container p,
  .footer-middle li p,
  .footer-right .policy {
    font-size: var(--font-size-small);
  }

  .footer-right {
    gap: 2rem;
  }

  .footer-right .policy {
    flex-direction: column;
  }

  .footer-right .company-logo {
    width: 30%;
  }
  .rightItem .picture{
    height: 10rem;
  }
  .rightItem .picture .plus{
    height: 2.5rem;
    font-size: 1.5rem;
  }
}


@media screen and (max-width: 575px) {
  .pc767{
    display: none;
  }
  .pc{
    display: none !important;
  }
  .mo{
    display: flex !important;
  }
  .logingroup{
    display: flex;
    align-items: center;
  }
  .premium{
    color: var(--color-container) !important;
    background: var(--color-first) !important;
  }
  .premium h3{
    color: var(--color-container);
  }
  .free{
    color:  var(--color-dark-gray) !important;
    background: var(--color-container) !important;
  }
  .price-tabGroup{
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1rem;
    font-size: var(--font-size-main-description);
    font-weight: var(--font-weight-bold);
  }
  .price_mobile_freeGroup{
    width: 100%;
  } 
  .price_mobile_premiumGroup{
    width: 100%;
  } 
  .price-tab{
    padding: 0.6rem 1.5rem;
    width: fit-content;
    text-align: center;
    cursor: pointer;
    color:  var(--color-dark-gray);
    background: var(--color-container);
    transition: all ease-out 0.4s;
  }
  .premiumtab{
    border-radius: 0 1rem 1rem 0;
    width: 50%;
  }
  .freetab{
    border-radius: 1rem 0 0 1rem;
    width: 50%;
  }
  .premiumtab:hover{
    filter: brightness(1.2) contrast(0.8);
  }
  .freetab:hover{
    filter: brightness(1.2) contrast(0.8);
  }
  .premiumtab:active{
    filter: brightness(1.4);
    scale: 0.96;
  }
  .freetab:active{
    filter: brightness(1.4);
    scale: 0.96;
  }
  .price_mobile{
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    gap: 0.8rem;
    padding: 2rem 0 2.4rem 0;
    margin-bottom: 5%;
    text-align: center;
  }
  .price_mobile h3{
    font-size: var(--font-size-sub-title);
    font-weight: var(--font-weight-bold);
  }
  .price_mobile_title{
    font-size: var(--font-size-main-description);
    font-weight: var(--font-weight-semibold); 
    margin: 2rem 2rem 0 2rem;
  }
  .price_mobile_detail{
    display: flex;
    justify-content: center;
    font-size: var(--font-size-small);
    width: 80%;
    margin: 0 auto;
  }
  .price_mobile_item{
    width: 60%;
    text-align: left;
  }
  .price_mobile_content{
    width: 30%;
  }
  .intro-container{
    width: 90% !important;
    margin: 0 auto;
  }
  .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    gap: 1rem;
    margin-inline: auto;
    padding-left: 0;
  }
  .title-container{
    width: 100%;
  }
  .nav-list{
    gap: 0.8rem;
  }
  .section {
    padding-block: 4rem 1rem;
  }

  .nav {
    height: var(--header-height);
    margin-bottom: 1.6rem;
    height: 3rem;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }

  .logo-box {
    width: 30%;
    min-width: 120px;
  }

  .login-box {
    gap: 0.4rem;
    height: 60%;
    transform: translateY(6px);
  }

  .hall-owner-pic{
    height: 100%;
  }
  /* 
  .hall-owner-pic{
    width: auto;
    height: 100%;
  } */
  .login-box-link{
    width: auto;
    height: 100%;
  }
  .login-box-link button {
    display: none;
  }

  .login-box-link img {
    display: block;
  }

  .login-box-link i {
    display: initial;
  }

  .home.section {
    padding-block: 4rem 1rem;
  }

  .bg-slide {
    height: 35vh;
  }

  .home-title {
    width: 90%;
    font-size: var(--font-size-normal);
    text-align: center;
  }
  .bg-slide .home-btn{
    width: 40%;
    padding: 0.8rem 1rem;
    margin: 8% auto;
    opacity: 0.94;
  }
  .intro.section {
    padding-top: 5rem;
  }

  .main-title.section-title { 
    font-size: 2.4rem;
    width: 100%;
    padding: 10px 2rem;
  }

  .main-title-description {
    margin-bottom: 5rem;
  }

  .main-title-description span {
    display: block;
  }

  .usp-img-box {
    height: 280px;
  }
  .usp-container{
    row-gap: 3rem;
  }
  .usp-data {
    flex-direction: column;
    gap: 1rem;
    left: 0;
    width: 100%;
    text-align: center;
  }
  .usp-description{
    margin-left: 0;
  }
  .img-subtitle {
    width: 90%;
    margin: 0 auto;
    line-height: 1.7rem;
  }
  .description li {
    line-height: 1.7rem;
    word-break: keep-all;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 10px 10px 50px;
    letter-spacing: -0.4px;
  }
  
  .description li::after {
    left: 20px;
  }

  .section-title {
    font-size: var(--font-size-sub-title);
    letter-spacing: -0.4px;
    margin-bottom: 2rem;
  }
  .section-title-description {
    font-size: var(--font-size-small);
    line-height: 1.8rem;
    letter-spacing: -0.6px;
    margin: 0 auto 3rem auto;
    width: 90%;
  }
  .function-title{
    font-size: var(--font-size-normal);
    text-align: center;
  }
  .function-subtitle {
    line-height: 1.7rem;
    font-size: var(--font-size-smaller);
    text-align: center;
  }
  .function-summary {
    display: none;
  }
  .function-img-box {
    height: 250px;
  }
  .function-img-data {
    left: 0rem;
    width: 100%;
    padding: 0 5%;
  }
  .function-detail-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .detail-data-box {
    padding: 1.5rem 2rem;
    gap: 1rem;
    flex-direction: row;
  }
  .detail-data-box h2{
    text-align: left;
    margin-top: 0;
    width: 100%;
  }
  .detail-data-box p{
    text-align: left;
    line-height: 1.4rem;
  }
  .detail-data-box .icon-container {
    width: 40%;
    max-width: 50px;
  }

  .price-data {
    padding: 1rem 0;
    column-gap: 0;
    row-gap: 0.3rem;
    /* row-gap: 0.5rem; */
    grid-template-columns: 40% 30% 30%;
  }

  /* .price-data .basic {
    visibility: hidden;
  } */

  .index-detail {
    padding: 0;
  }

  /* .price-data .basic {
    display: none;
  } */

  .price-head {
    font-size: calc(var(--font-size-main-title) * 0.5);
  }

  .price-index {
    font-size: calc(var(--font-size-small) * 1.1);
  }

  .index-detail {
    font-size: calc(var(--font-size-small) * 0.95);
  }

  .index-detail.basic,
  .index-detail.premium {
    font-size: calc(var(--font-size-small) * 0.9);
  }

  .basic-price,
  .premium-price {
    font-size: calc(var(--font-size-small) * 1);
    display: flex;
    flex-direction: column;
  }

  .premium-bg {
    width: 30%;
    right: 0;
  }
  .template-design-contianer{
    padding: 2rem 0;
  }
  .template-data .selected-img{
    height: 200px;
  }
  .template-detail-img{
    height: auto;
    aspect-ratio: 16/9;
  }
  
  .template-data-header {
    flex-direction: column;
  }

  .template-data-body {
    flex-direction: column;
    gap: 2rem;
  }

  .template-description {
    font-size: calc(var(--font-size-normal) * 0.8);
    line-height: 1.7rem;
  }

  .template-data {
    flex-basis: 100%;
    padding: 1.5rem 1rem;
  }

  .template-data-space {
    display: none;
  }

  .template-use-guide {  
    display: flex;
    border-top: 1px solid white;
    border-radius: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    background: transparent;
    margin-top: 1.4rem;
    padding: 2rem 0;
    z-index: 100;
    gap: 1rem;
  }

  .template-minimap {
    width: 30%;
    height: auto;
    aspect-ratio: 1/1;
    margin: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .use-guide-title{
    width: 100%;
  }
  .guide-text-box{
    width: calc(70% - 3rem);
  }
  .user-level{
    left: 0rem;
    bottom: 0rem;
  }
  .menu-area {
    border: 4px solid #d1d1ff;
  }
  .menu-area.active {
    font-size: var(--font-size-small);    
    border: 4px solid var(--color-effect);
  }

  .guide-text-box .menu-description {
    font-size: var(--font-size-smaller);
    line-height: 1.4rem;
  }

  .create-btn {
    width: 100%;
    padding: 1rem 0;
  }

  .search-box {
    position: relative;
  }

  .search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .open-hall-list {
    padding: 1rem 0;
  }

  .open-hall-slide-container {
    margin: 2rem 1rem;
    overflow: hidden;
  }

  .group-member-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .company-image {
    height: 180px;
  }

  .group-member-slide {
    gap: 1.5rem;
    width: 100%;
    aspect-ratio: 16/12;
    background: white;
    border-radius: 20px;
    padding: 1rem;
  }

  .group-member-slide .company-description {
    font-size: calc(var(--font-size-smaller) * 1.1);
    line-height: 1.5rem;
  }

  .group-btn {
    width: 100%;
    padding: 1rem 0;
  }

  .footer-container {
    display: grid;
    gap: 1.4rem;
    padding: 4rem 0;
  }

  .footer-container p,
  .footer-middle li p,
  .footer-right .policy {
    font-size: var(--font-size-small);
  }

  .footer-right {
    gap: 2rem;
  }
  .footer-logo{
    padding-bottom: 1rem;
  }

  .footer-right .company-logo {
    width: 100%;
  }
  .footer-container .company-logo a{
    display: flex;
    justify-content: center;
  }
  .footer-right .company-logo img{
    width: 50%;
  }
  .login_m {
    box-shadow: none;
  }
}

@media screen and (max-width: 400px) {
.logo-box{
  width: 30%;
  min-width: 110px;
}
.home-title{
  font-size: var(--font-size-small);
}
}
/* For small devices */
@media screen and (max-width: 320px) {
  .swiper-button-prev, .swiper-button-next{
    display: none !important;
  }
  .nav-list{
    gap: 0.6rem !important;
  }
  .nav-menu {
    padding-inline: 5%;
  }
  .login-box-link img {
    display: block;
  }
  .detail-data-box {
    padding: 1rem 1.2rem;
    flex-direction: column;
  }
  .detail-data-box h2{
    font-size: var(--font-size-small);
    text-align: center;
  }
  .detail-data-box p{
    font-size: var(--font-size-smaller);
    line-height: 1.2rem;
    text-align: center;
  }
  .description li{
    font-size: var(--font-size-smaller);
    padding: 10px;
  }
  .description li::after{
    display: none;
  }
  .login-box .login{
    font-size: calc(var(--font-size-smaller) * 1);
    padding: 0.2rem 0.4rem;
  }
}

@media screen and (max-width: 280px) {
  .swiper-button-prev, .swiper-button-next{
    display: none !important;
  }
  .nav-list{
    gap: 0.4rem;
  }
  .main-title.section-title {
    font-size: 2rem;
    width: 100%;
    padding: 10px 20px;
  }
  .bg-slide .home-btn{
    width: 50%;
    padding: 0.8rem;
    margin: 4%;
  }
  .usp-data {
    flex-direction: column;
    gap: 1rem;
    left: 0;
    text-align: center;
  }
  .img-subtitle{
    width: 100%;
    letter-spacing: -0.6px;
  }
  .intro-container{
    gap: 2rem;
  }
  .section-title {
    font-size: var(--font-size-main-description);
  }
  .section-title-description{
    font-size: var(--font-size-smaller);
  }
  .function-title {
    word-break: keep-all;
  }

  .function-img-data {
    bottom: 1rem;
  }

  .template-minimap {
    scale: 0.8;
  }

  .template-use-guide {
    padding: 3rem 1rem 2rem;
  }

  .search-box input {
    width: 100%;
  }
  .login-box{
    gap: 0.2rem;
  }
  .login-box .login{
    font-size: calc(var(--font-size-smaller) * 0.8);
    height: 100%;
  }
}
