body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* header */
header {
  display: flex;
  position: fixed;
}

a{
  text-decoration: none;
  color: var(--black);
}

.navbar a
{
  text-decoration: none;
  font-weight: 500;
}
.navbar .scrolled{
  overflow: hidden;
  
}

.navbar {
  /* 원래 100vw에 display flex로 편하게 고정했는데
  이렇게 하니까 줄어들었을 때 뒤에 보이는 버튼들이 클릭이 안되어서
  left설정하고 transform으로 가운데 정렬시킴 */
  /* width: 100vw; */
  
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.navbar{
  z-index: 50;
}
#pro:hover,#app:hover,#cop:hover,#help:hover,#ex:hover,#cus:hover,
.menu-item li:hover{
  color: var(--info);
  cursor: pointer;
  /* 하위메뉴와 속도가 안 맞아서 위치 옮김*/
  transition: color 0.25s ease;

}
.search_category li:hover{
  color: #000000;
  cursor: default;
}
.sns{
  margin-right: 0;
}
#nav_cont{
   transition: background-color 0.5s ease; /* 너비가 0.5초 동안 부드럽게 변화 */
  width: 100vw;
  display: flex;
  justify-content: center;
  margin-top: 1em;
  background-color: var(--background-blue);
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  color: var(--darkinfo);
  height: 46px;
}
.nav_container{
 transition: width 0.5s ease; /* 너비가 0.5초 동안 부드럽게 변화 */
  width: 85vw;
  display: flex;
  justify-content:space-between;
  align-items:center;
  /* margin: 1em; */
  border-radius: 20px;
  background-color: var(--background-blue);
  z-index: 50;
  /* height: auto; */
}
.nav_container1{
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  position: absolute;
  margin: 1em;
  background-color: var(--white);
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  border-radius: 20px;
}
.navbar-menu, .sns {
  transition: opacity 0.5s ease; /* 메뉴의 사라짐과 나타남 */
  opacity: 1; /* 초기값을 보이도록 설정 */
  display: flex; /* 초기값을 flex로 설정 */
}

.nav_container.shrink {
  width: 148px; /* 로고만 남기기 위한 최소 너비로 설정 */
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
}
.nav_container.shrink .logo{
  margin-left: 0.4em;
}
#nav_cont.shrink{
  background-color: transparent;
  box-shadow: none;
}

.navbar-menu.shrink,
.sns.shrink {
  opacity: 0; /* 메뉴의 투명도를 0으로 설정하여 사라지게 함 */
  visibility: hidden; /* 메뉴의 가시성을 숨김 */
}


 .logo{
  /* margin:0.5em; */
 }

 .searchInput {
  width: 200px;
  height: 30px;
  padding: 6px 12px;
  transition: all 0.3s ease;
  opacity: 1;
  background-color: var(--gray-light);
  border: 1px solid var(--coolgray);
}

#searchInput.collapsed {
  width: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  border: none;
}

.navbar-menu li a:hover{
  /* margin:0.5rem 1rem; */
  /* border-radius:50px;
  text-decoration: none;
  font-weight: 500; */
  /* transition: background 0.5s ease; */
}
#pro,#app,#cop,#help,#ex,#cus,
.sns_li{
  /* 패딩수정하기(하이라이트) */
  padding:1.5rem;
  white-space: nowrap;
}

#pro,#app,#cop,#help,#ex,#cus,
.selector-item a {
  padding:1rem;
  white-space: nowrap;
  width: 100%;
}

ul.menu-sub-list li:nth-child(2) a{
  padding: 2rem 2rem 1rem 1rem;
}
.menu-item i {
  font-size: 13px;
  transition: transform 0.3s ease; /* 부드러운 애니메이션 효과 */
}

.navbar-menu a:hover i,
.navbar-menu div:hover i {
  animation: bounce 0.5s; 
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 
  0% { transform: tr   
anslateY(+10px); }
  20% { transform: translateY(+5px); }
}
/* .navbar-menu li a.on{
  border-radius:50px;
  background: var(--gray);
  color: var(--white);
  padding:0.5rem 1rem;
} */

.navbar-menu, .sns {
  transition: opacity 0.5s ease; /* 투명도 변화에 대한 전환 */
   opacity: 1; /* 초기값을 보이도록 설정 */
}

.navbar-menu li i{
  margin-left:5px;
}

/* , .web:hover .menu-sub-list
hover가 모바일에서는 클릭역할을 하는것 같음*/
#pro:hover + .menu-sub-list,
#app:hover + .menu-sub-list,
#cop:hover + .menu-sub-list,
#help:hover + .menu-sub-list,
#ex:hover + .menu-sub-list,
#cus:hover + .menu-sub-list
{
  display: -webkit-box;
  display: flex;
}

.menu-sub-list.active  {
  display: none;
}
#search{
  cursor: pointer;
}
.search_category.search  {
  display: flex;
}
.search_category{
  display: none;
  /* 기본적으로 숨겨야함. 꾸미는 동안만 flex상태 */
  /* display: flex; */
  white-space: nowrap;
  margin-top: 3em;
  /* padding-bottom: 8px; */
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  position: absolute;
  z-index: 100;
  top: 0;
  right: 1em;
  -webkit-box-direction: normal;
          flex-direction: column;
  background-color: #fff;
  max-height: 80vh;
  max-width: 600px;
  width: auto;
  overflow-y: auto;
}
.sel{
  position: relative;
  width: auto;
}
.divider{
  position: sticky; 
  top: 0; /* 화면 상단에서 0px에 고정 */
  z-index: 110; /* 다른 요소 위에 표시 */
  background: white; /* 배경 설정 (스크롤 시 겹침 방지) */
  box-shadow: 0 2px 1px rgb(255, 255, 255), 0 4px 2px rgba(255, 255, 255, 0.808), 0 8px 4px rgba(255, 255, 255, 0.438), 0 16px 8px rgba(255, 255, 255, 0.253), 0 32px 16px rgba(255, 255, 255, 0.09);
  padding: 8px;
  /* border-bottom: var(--light) 1px dashed; */
}
#large-category,
#middle-categories{
  width: 100%;
  display: flex;
}
#middle-categories{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#result{
  padding-top:8px;
}
.pro-item {
  display: flex;
  flex-direction: column; /* 필터에 맞는 항목만 표시 */
  align-items: center;
  margin: 0.5em;
  padding: 0.5em;
  box-shadow: 0 5px 5px rgba(64, 64, 64, 0.08);
  border-radius: 10px;
  max-width: 165px;
}

.pro-item img{
  object-fit: contain;
  width: 150px;
}
.product-name{
  white-space: pre-wrap;
}
.ca_op{
  display: flex;
  /* align-items: center; */
  margin-bottom: 0.5em;
  
}
.ca_op h3{
  width: 150px;
}
.ca_op label{
  padding-left: 10px;
  display: flex;
  align-items: center;
  color: var(--gray-dark);
}
.ca_op label input{
  margin-right: 5px;
}
.labels-container{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 377.8px;
}

.result{
  display: flex;
  justify-content:center;
  flex-wrap: wrap;
  padding-top: 1em;
  position: relative;
}

#conceal{
  position: sticky;
  position: sticky; /* 스크롤에 따라 고정 */
  bottom: 0; /* 화면 상단에서 0px에 고정 */
  z-index: 110; /* 다른 요소 위에 표시 */
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.76234243697479) 28%, rgba(255,255,255,1) 51%, rgba(255,255,255,1) 100%); /* 배경 설정 (스크롤 시 겹침 방지) */
  padding-bottom: 8px;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
  outline: none !important;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--gray-light);
}
input[type="checkbox"]::before {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: scale(0) translate(-50%, -50%);
  line-height: 1;
}

input[type="checkbox"]:hover {
  border-color: rgba(170, 170, 170, 1);
}

input[type="checkbox"]:checked {
  background-color: #ff0909;
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1em;
}
input[type="checkbox"]:checked::before{
  border-radius: 2px;
  transform: scale(1) translate(-50%, -50%)
}
.omg{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#searchInput{
  margin: 0.5em;
}
#searchResults{
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 🔥 3열 고정 */
  /* gap: 20px; */
  list-style: none;
  padding: 0;
  margin: 0;
}
#searchResults2{
  display: grid;
 /* grid-template-columns: repeat(4, 1fr);   🔥 3열 고정 */
  /* gap: 20px; */
  list-style: none;
  padding: 0;
  margin: 0;
}
#searchResults li{
  padding: 0;
}
mark {
  background-color: yellow;
  font-weight: bold;
}
.search-item{
  border-radius: 2em;
  box-shadow: 0 5px 5px rgba(64, 64, 64, 0.08);
}
#no-results {
  display: none; /* 기본적으로 숨김 */
  color: red; /* 안내 메시지는 눈에 띄게 설정 */
  margin: 20px 0;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
}
#no-results p{
  color: var(--primary);
  margin-bottom: 1em;
}
.ca_1{
  border-right: 1px solid var(--gray);
  padding-right: 10px;
}
.navbar-menu {
  display: flex;
  justify-content: space-around;
  list-style: none;
  position: static;
  width: 60%;
}
.menu-item {
  position: relative;
}
.mobile{
  display: none;
}
.selector-item {
  margin: 1em;
  position: relative;
}
/* .selector-item span{
  margin-left: 1em;
} */
.menu-sub-list {
  display: none;
  /* display: flex; */
  margin-top: 3em;
  /* padding: 8px; */
  background-color: var(--color-bg-secondary);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  position: absolute;
  z-index: 100;
  top: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  background-color: #fff;
}
.menu-sub-list:hover {
  display: -webkit-box;
  display: flex;
}

.highlight {
  /* background-color: #ff4757; */
  /* border-radius: 8px; */
  position: absolute;
  left: 0.25rem;
  width: 1px;
  top: 1em;
  height:1rem;
  font-size: 15px;
  z-index: 1;
  /* box-shadow: 0px 0px 12px -2px rgba(255,71,86,0.9); */
  transition: top 0.2s ease,
              height 0.2s ease;
}


.menu-item {
  font-size: 15px;
  font-weight: 500;
  /* margin: 1.5em 1.5em; */
  z-index: 50;
}
#global-search{
  display: flex;
  align-items: center;
}
.navbar-menu li:hover {
  /* color: var(--gray); */
  /* 하위메뉴들에 손올렸을 때 색상 바뀌는 속도 */
  transition: 0.25s ease-in-out;
}


.logo a {
  display: flex;
  width: 122px;
  height: auto;
  z-index: 100;
  margin: 0.5em;
}

.sns-hide {
  display: none;
}

.sns {
  display: flex;
  font-size: 15px;
  align-items: center;
  /* color: var(--gray); */
  z-index: 15;
}


.sns li {
  /* padding: 1.3rem; */
}

.sns li i {
  margin-top: 5px;
}

.navbar-tooglebtn {
  display: none;
  position: absolute;
  z-index: 50;
  font-size: 24px;
  right: 32px;
  top: -5px;
}

.navbar-tooglebtn:hover {
  transition: 250ms ease-in-out;
}

#minimap-canvas {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 120px;
  height: 180px;
  background: #f5f5f5;
  border: 1px solid #aaa;
  z-index: 9999;
}

/* #horizontal-underline {
  position: absolute;
  left: 647;
  height: 40px;
  width: 0;
  border-radius: 50px;
  transition: 0.5s;
  background-color: var(--light);
  opacity: 0.2;
  top: 0;
  z-index: 10;
} */

.background {
  width: 100vw;
  /* height: 100vh; */
  display: flex;
  overflow: hidden;
  position: relative;
}

/* .background img {
  width: 100%;
  height: 100%; 
} */
.background .logo img{
  width: 100%;
  height: 100%;
}
/* 모바일헤더 */
.appear{
  display: none;
}

/* 푸터 */
footer{
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 0;
  background-color: var(--gray);
}
#footer{
  display: block;
  text-align: center;
  font-size: 0.8em;
  /* line-height: 1rem; */
  /* padding: 5px 0; */
}
/* 노트북 */
@media  screen and (max-width: 1650px){
  .navbar{ 
    padding: 0.5em;
  }
  .navbar-menu li {
    font-size: 0.9rem;
    font-weight: 500;
    /* margin: 0.2em 0.4em; */
    z-index: 50;
  }
  .sns li{
    font-size: 0.9rem;
    padding:1em;
  }
 
}
@media  screen and (max-width: 1200px){
 
  .sns li{
    padding:1em;
  }
 
}
@media  screen and (max-width: 1190px){
 
  .navbar-menu li {
    font-size: 0.8rem;
    font-weight: 500;
    /* margin: 0; */
    z-index: 50;
  }
  .highlight{
    top: 1em;
  }
  .sns li{
    font-size: 0.8rem;
  }
}

/* 모바일 */

@media screen and (max-width:1010px) {
  nav{
    z-index: 100;
  }
  .navbar {
    z-index: 100;
    background-color:var(--white);
    padding-left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    height: 80px;
    box-shadow: 0 10px 20px rgba(64, 64, 64, 0.15);
  }
  .fas{
    line-height:5rem
  }
  .nav_container{
    width: 30vw;
    background-color: transparent;
    box-shadow: none;
  }
  .nav_container1{
    opacity: 1;
    width: auto;
    box-shadow: none;
    background-color: transparent;
  }

  .logo a{
    width: auto;
  }
  .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .navbar-menu li {
    /* width: 100%; */
    text-align: center;
    
  }

  .logo img {
    z-index: 50;
    width: 20vw;
  }

  .sns {
    display: none;
  }

  .sns-hide {
    display: flex;
  }
  .sns-hide li{
    padding: 1rem;
  }

  .navbar-tooglebtn {
    display: flex;
    justify-content: center;
    color: var(--gray);
  }
  .menu-item {
    position: relative;
  }
  .selector-item {
    margin: 1em;
    position: relative;
  }
  /* .selector-item span{
    margin-left: 1em;
  } */
  .menu-sub-list {
    display: none;
    /* display: flex; */
    margin-top: 0;
    /* padding: 8px; */
    background-color: var(--color-bg-secondary);
    border-radius: 10px;
    box-shadow: none;
    position: relative;
    left: 0;
    z-index: 100;
    width: 40vw;
    top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    background-color: #fff;
  }
  
  .highlight {
    position: absolute;
    left: 10%;
  }
  
  
  .menu-item {
    display: flex;
    flex-direction: column;
    align-items:center;
    font-size: 15px;
    font-weight: 500;
    /* margin: 1.5em 1.5em; */
    z-index: 50;
  }
  ul.menu-sub-list li:nth-child(2) a{
    padding: 0;
  }
  .navbar-menu li:hover {
    /* color: var(--gray); */
    transition: 250ms ease-in-out;
  }
  
  .mobile{
    display: block;
    margin: 1.5em 0;
    transition: color 0.3s ease;
    cursor: pointer;
  }
  .mobile:hover{
    color: var(--midinfo);
  }
  .selector-item span{
    padding: 1.5em;
  }
  #pro,
  #app,
  #cop,
  #help,
  #ex,
  #cus{
    display: none;
  }
  .menu-sub-list.active  {
    display: flex;
  }
  .navbar-menu.active {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    z-index: 40;
    top: 80px;
    left: 0;
    padding: 10px 0px;
    background-color: var(--white);
    height: 100vh;
  }
  .navbar-menu.active li {
    margin: 1.5em 0;
    font-size: 1em;
  }



  /* #horizontal-underline {
    display: none;
  } */
  .icon-scroll{
    display: none;
  }
}

/* 모바일 에러 수정 */
@media screen and (max-width:900px) {

  nav{
    z-index: 100;
  }
  .navbar {
  background-color: var(--background-blue);
    position: fixed;
    z-index: 100;
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    height: 60px;
  }
  #nav_cont{
    justify-content: flex-start;
    margin-top: 0;
    box-shadow: none;
  }
  .sub-nav{
    display:none;
  }
  .fas{
    line-height:4.5rem
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .navbar-menu li {
    width: 100%;
    text-align: center;
  }

  .navbar-menu li a{
    padding:0
  }
  .highlight {
    display: none;
    position: absolute;
    width: 13px;
  }
 /* .nav_container .logo{
  display: none;
 } */
  .logo img {
    z-index: 50;
    width: 200px;
  }
  .nav_container{
    width: 148px;
    z-index: 50;
    background-color: var(--background-blue);
    margin: 1em;
  }
  .nav_container .logo,
  .nav_container .logo a
  { 
    margin: 0;
  }
  .sns {
    display: none;
  }

  .sns-hide {
    display: flex;
    width: 100vw;
  }
  .sns-hide li{
    padding: 1rem;
  }

  .navbar-tooglebtn {
    display: block;
    color: var(--gray);
  }

  .navbar-menu.active {
    display: flex;
    justify-content: flex-start;
    position: absolute;
    z-index: 40;
    top: 0px;
    left: 0;
    padding: 60px 0px 0px 0px;
    background-color: var(--white);
    height: 100vh;
    font-size: 14px;
    overflow-y: scroll;
  }
  .sns-hide li{
    margin: 0;
  }
/* 
  #horizontal-underline {
    display: none;
  } */

  .line img{
    top: 20%
  }
  .line{
    align-items: center;
  }
  
  #footer{
    display: block;
    bottom: 0;
    text-align: center;
    /* font-size: 0.1em; */
    /* line-height: 1rem; */
    /* padding: 5px 0; */
  }

}
@media screen and (max-width:500px){
  .highlight{
    /* width: 13px; */
    /* left: 35%; */
  }
  .menu-sub-list{
    width: 65vw;
  }
}

/* 스크롤 아이콘 */
.icon-right,
.icon-left{
  opacity:0;
}
.icon-right-full{
  top: 50%;
  right:5%;
  position: absolute;
}
.icon-right-exhibit{
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  color:var(--gray);
}
.icon-right-full,
.icon-right-exhibit{
  top: 50%;
  right:5%;
  z-index: 1;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll-right-full;
          animation-name: scroll-right-full; 
}

.icon-left-full{
  position: absolute;
  z-index: 1;
}

.icon-left-exhibit{
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  color:var(--gray);
}

.icon-left-full,
.icon-left-exhibit{
  top: 50%;
  left:5%;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll-left-full;
          animation-name: scroll-left-full;    
}

.icon-right-exhibit i,
.icon-left-exhibit i{
  content: '';
  font-size: 40px;
  /* width:100px;
  height:100px; */
  color: var(--midinfo);
  border-radius: 4px;
}


.icon-right-full i{
  content: '';
  font-size: 40px;
  /* width:100px;
  height:100px; */
  color: var(--white);
  /* margin-left: 9px; */
  /* top: -5px; */
  border-radius: 4px;
}
.icon-left-full i{
  content: '';
  font-size: 40px;
  width:100px;
  height:100px;
  color: var(--midinfo);
  border-radius: 4px;
  /* margin-left: 9px; */
  /* top: -5px; */
  
}

@-webkit-keyframes scroll-right-full {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(40px);
  }
}
@keyframes scroll-right-full {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(40px);
  }
}
@-webkit-keyframes scroll-left-full {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-40px);
  }
}
@keyframes scroll-left-full {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-40px);
  }
}
.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  z-index: 30;
  width: 30px;
  height: 60px;
  margin-left: -20px;
  bottom: 2em;
  /* margin-top: -35px; */
  /* box-shadow: inset 0 0 0 1px var(--primary); */
  border-radius: 25px;
}
.icon-scroll i {
  content: '';
  font-size: 30px;
  width:100px;
  height:100px;
  color: var(--midinfo);
  margin-left: 9px;
  /* top: -5px; */
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
  
}

@media screen and (max-width:900px){
  .icon-right,
  .icon-left{
  opacity:1;
  position: absolute;
  top: 20%;
}

  .icon-right i{
    content: '';
    font-size: 0.5em;
    width:100px;
    height:100px;
    color: var(--midinfo);
    /* margin-left: 9px; */
    /* top: -5px; */
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: scroll-right;
            animation-name: scroll-right;
  }
  .icon-left i{
    content: '';
    font-size: 0.8em;
    width:100px;
    height:100px;
    color: var(--midinfo);
    /* margin-left: 9px; */
    /* top: -5px; */
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: scroll-left;
            animation-name: scroll-left;
  }

  @-webkit-keyframes scroll-right {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(40px);
    }
  }
  @keyframes scroll-right {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(40px);
    }
  }
  @-webkit-keyframes scroll-left {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(-40px);
    }
  }
  @keyframes scroll-left {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translateX(-40px);
    }
  }
}
@media screen and (max-width:500px){
  .item i{
    font-size: 30px;
  }
}
::-webkit-scrollbar {
	/* 스크롤바 전체 영역 */
width: 5px;
height: 5px;
} 
::-webkit-scrollbar-track {
	/* 스크롤이 움직이는 영역  */
background-color: transparent;
} 
::-webkit-scrollbar-thumb {
	/*  스크롤  */
background-color: var(--midinfo); 
opacity: 0.3;
border-radius:30px;
scrollbar-width: thin;
scrollbar-color: var(--midinfo);
} 
::-webkit-scrollbar-button:start:decrement, 
::-webkit-scrollbar-button:end:increment {
	/*  스크롤의 화살표가 포함된 영역   */
display: none;
/* background-color: #000; */
} 
::-webkit-scrollbar-corner {
	/*  상하+좌우 스크롤이 만나는 공간   */
background-color: var(--midinfo);
} 

  

  /* 캔버스 */
/* canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}
.first{
    top: 0;
  left: 0;
  height: 100vh;
  position:absolute;
  z-index: 10;
} */