@font-face {
	font-family: 'NotoSansKR';
	font-weight: 100;
	src: local('NotoSansKR'),url('/font/NotoSansKR-Thin.woff2') format('woff2');
}
@font-face {
	font-family: 'NotoSansKR';
	font-weight: 300;
	src: local('NotoSansKR'),url('/font/NotoSansKR-Light.woff2') format('woff2');
}
@font-face {
	font-family: 'NotoSansKR';
	font-weight: 400;
	src: local('NotoSansKR'),url('/font/NotoSansKR-Regular.woff2') format('woff2');
}
@font-face {
	font-family: 'NotoSansKR';
	font-weight: 500;
	src: local('NotoSansKR'),url('/font/NotoSansKR-Medium.woff2') format('woff2');
}
@font-face {
	font-family: 'NotoSansKR';
	font-weight: 600;
	src: local('NotoSansKR'),url('/font/NotoSansKR-Bold.woff2') format('woff2');
}
@font-face {
	font-family: 'NotoSansKR';
	font-weight: 800;
	src:local('NotoSansKR'), url('/font/NotoSansKR-Black.woff2') format('woff2');
}

body{
    margin: 0px;
    padding: 0px;
}
ul,li{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h4,h3,h2,h1{
    margin: 0px;
    padding: 0px;
}
h1{
    font-size: 50px;
    font-weight: 300;
    line-height: 1.4;
}
h2{
    font-size: 32px;
    font-weight: 300;
}
h3{
    font-size: 28px;
    font-weight: 400;
}
p{
    margin: 0px;
    padding: 0px;
}
a{
    text-decoration: none;
    color: white;
}


/* header */
.nav_bar{
    width: 100%;
    display: flex;
    position: fixed;
    top: 0px;
    padding: 20px 80px;
    align-items: center;
    color: white;
    box-sizing: border-box;
    justify-content: space-between;
    z-index: 11;
    transition: all .3s;
}
.logo{
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    z-index: 9;
}
.logo img{
    width: 80px;
}
.logo_w{
    display: none;
}
.logo_w.visible{
    display: block;
}
.logo_b{
    display: block;
}
.logo_b.visible{
    display: none;
}
.hamburger-lines {
    display: block;
    width: 40px;
    height: 33px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    align-items: flex-end;
  }
  .hamburger-lines:hover .line{
      width: 100%;
      transition: all .3s;
  }
.hamburger-lines .line {
    display: block;
    height: 4px;
    border-radius: 10px;
    background: #0e2431;
    transition: all .3s;
  }
  
.line1{
    transform-origin: 0% 0%;
    width: 95%;
    transition: transform 0.4s ease-in-out;
  }
.line2{
    width: 65%;
    transition: transform 0.2s ease-in-out;
  }
 .line3{
    width: 100%;
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}
.line1.active {
    background: white;
    transform: rotate(45deg);
    width: 100%;
}
  
.line2.active {
    background: white;
    transform: scaleY(0);
}
  
.line3.active {
    width: 100%;
    background: white;
    transform: rotate(-45deg);
    transform-origin: -8% 100%;
  }
.menu_op{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100%;
    left: 0px;
    background-color: black;
    opacity: 0;
    transition: all .6s;
}
.menu_op.active{
    opacity: 1;
    top: 0;
    transition: all .6s;
}
.op_inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.op_inner li{
    font-family: 'Montserrat';
    color: white;
    font-size: 6rem;
    opacity: .4;
    transition: .3s;
    cursor: pointer;
}
.menu_op li:hover{
    opacity: 1;
    transition: .3s;
}
.op_inner .active{
    opacity: 1;
}
#cart_index::-webkit-scrollbar,body::-webkit-scrollbar {
    width: 8px;  /* 스크롤바의 너비 */
}

#cart_index::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    height: 20%; /* 스크롤바의 길이 */
    background: #564843; /* 스크롤바의 색상 */

    border-radius: 10px;
}

#cart_index::-webkit-scrollbar-track,body::-webkit-scrollbar-track {
    background: rgba(255 255 255 / 0%);  /*스크롤바 뒷 배경 색상*/
}
@media (max-width: 575px){
    .nav_bar{
        padding: 15px 15px;
    }
    .op_inner{
        gap: 20px;
    }
    .op_inner li{
        font-size: 2rem;
    }
    .menu_bar span{
        width: 40px;
        height: 2px;
        left: 5px;
    }
    .hamburger-lines{
        width: 30px;
        height: 25px;
    }
    .line3.active{
        transform-origin: -7% 100%;
    }
    .hamburger-lines .line{
        height: 2px;
    }
}