@import "reset.css";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&display=swap');
@import url(//fonts.googleapis.com/earlyaccess/jejumyeongjo.css);


@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
	font-family: 'Pretendard Variable';
	font-weight: 45 920;
	font-style: normal;
	font-display: swap;
	src: url('../../../packages/pretendard/dist/web/variable/woff2/PretendardVariable.woff2') format('woff2-variations');
}

@font-face {
  font-family: 'LotteMartDream';
  font-style: normal;
  font-weight: 400;
  src: url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamMedium.woff2') format('woff2'), url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamMedium.woff') format('woff');
}
@font-face {
  font-family: 'LotteMartDream';
  font-style: normal;
  font-weight: 700;
  src: url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamBold.woff2') format('woff2'), url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamBold.woff') format('woff');
}
@font-face {
  font-family: 'LotteMartDream';
  font-style: normal;
  font-weight: 300;
  src: url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamLight.woff2') format('woff2'), url('//cdn.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamLight.woff') format('woff');
}

.lottemartdream * {
 font-family: 'LotteMartDream', sans-serif;
}


* {
  /* 드래그나 더블클릭 시에 텍스트가 선택이 되지 않도록 설정 */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body::-webkit-scrollbar {
  display: none;
}

body{
  background: #F9F4ED;
    margin: 0px;
    width: 100vw;
    font-family: 'Pretendard Variable';
    overflow-x: hidden;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
    margin: 0;
    color: #3e3a39;
}

canvas {
  width: 100%;
  height: 30%;
  position: absolute;
  top: 34vw;
}

/*메뉴 파트*/
.header {
  z-index: 500;
  font-size: 0.8333vw;
  width:100vw;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  color: #3e3a39;
  text-align:center;
  position:fixed;
  background-color: #ffffff88;
  top:0;
  left:0;
  height:4.5vw;
  -webkit-transition-duration:0.4s;
  -webkit-transition-timing-function:ease;
  transition-duration:0.4s;
  transition-timing-function:ease;
}


.header:after {
  display:block;
  width:100%;
  content:"";
}

.down {
  background-color:#ffffff88;
  -webkit-transition-duration:0.4s;
  -webkit-transition-timing-function:ease;
  transition-duration:0.4s;
  transition-timing-function:ease;
}

.logo {
  text-decoration: none;
  margin-left: 8.3333vw;
}

.logo img{
  width: 1.5vw;
}

.navbar ul {
  list-style: none;
  display: flex;
  font-weight: 500;
}
 
.navbar a {
  text-transform: uppercase;
  text-decoration: none;
  color: #3e3a39;
  padding: 0.5vw 1vw 0.5vw 1vw;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.sns{
  list-style: none;
  display: flex;
  margin-right: 8.3333vw;
}
.sns img{
  width: 1.7vw;
}
.sns a{
  padding-right: 0.5vw;
  padding-left: 0.5vw;
}

.navbar ul li a:hover {
  color: #eb7631;
}

.navbar li:nth-child(1) a{
  color: #eb7631;
}


/*스크롤 액션*/

.scroll-action{
text-align: center;
margin-top: 4vw;
}
.scroll-action p{
z-index: 100;
position: relative;
}
.scroll-action a span {
position: absolute;
top: 42.1vw;
left: 50%;
width: 1vw;
height: 1vw;
margin-left: -0.5vw;
border-left: 1px solid #cac0be;
border-bottom: 1px solid #cac0be;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-animation: sdb 2s infinite;
animation: sdb 2s infinite;
opacity: 0;
z-index: 100;
}
.scroll-action a span:nth-of-type(1) {
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
.scroll-action a span:nth-of-type(2) {
top: 42.8vw;
-webkit-animation-delay: .15s;
animation-delay: .15s;
}
.scroll-action a span:nth-of-type(3) {
top: 43.5vw;
-webkit-animation-delay: .3s;
animation-delay: .3s;
}
@-webkit-keyframes sdb {
0% {
  opacity: 0;
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
}
}
@keyframes sdb {
0% {
  opacity: 0;
}
50% {
  opacity: 1;
}
100% {
  opacity: 0;
}
}

.search{
float: left; 
color: #3e3a39; 
text-align: center; 
padding-top: 0.4vw; 
padding-bottom: 0.3vw; 
border: 1px solid #3e3a39; 
border-radius: 30vw; 
vertical-align: middle; 
padding-left: 1vw; 
padding-right: 1vw; 
height: 1.2vw; 
margin-top: 0.5vw; 
margin-right: 1vw; 
width: 6vw;
cursor: pointer;
}
.search p{
margin-top: 0.2vw;
margin-left: 0.5vw;
}
.search img{
width: 0.8vw; 
margin-right: 0.3vw;
float: left;
}

/*태그 팝업창*/

.tag h2 span{
font-size: 1.0417vw; /*20*/
font-family: 'Pretendard Variable';
}
.tag img{
width: 2vw;
display: block;
margin-left: auto;
margin-bottom: 1.8vw;
cursor: pointer;
}



.tag-box{
background-color: #faf5ee;
padding-left: 1.5vw;
padding-right: 1.5vw;
padding-top: 1.8vw;
padding-bottom: 1.8vw;
margin-bottom: 2vw;
}
.tag-box h2{
font-size: 1.7708vw; /*34*/
font-weight: 600;
font-family: 'Inter', sans-serif;
margin-bottom: 1vw;
color: #eb7631;
text-align: left;
}
.tag-list{
display: flex;
flex-wrap: wrap;
}
.tag-list li{
background-color: #faf5ee;
padding-left: 0.8vw;
padding-right: 0.8vw;
padding-top: 0.3vw;
padding-bottom: 0.3vw;
border-radius: 30vw;
margin-right: 0.6vw;
margin-bottom: 0.8vw;
box-shadow: 1px 2px 3px 2px #eedeca;
font-size: 0.9375vw;/*18*/
font-weight: 600;
cursor: pointer;
}
/*scroll bar*/
.tag::-webkit-scrollbar {
width: 3vw;  /* 스크롤바의 너비 */
}
.tag::-webkit-scrollbar-thumb {
height: 30%; /* 스크롤바의 길이 */
background: #e75400; /* 스크롤바의 색상 */
border-radius: 30vw;
background-clip: padding-box;
border: 1.3vw solid transparent;
}
.tag::-webkit-scrollbar-track {
background: #f3c9a8;  /*스크롤바 뒷 배경 색상*/
margin-top: 5vw;
margin-bottom: 2vw;
margin-left: -1vw;
border-radius: 30vw;
background-clip: padding-box;
border: 1.3vw solid transparent;

}

.top-btn{
  position: fixed;
  z-index: 500;
  right: 4vw;
  bottom:3vw;
  cursor: pointer;
}
.top-btn img{
  width: 2.8vw;
 }
 
.section1{
    margin-top: 0vw;
}
 
  .sec1-video{
    height: 42vw;/*900px 언저리*/
    width: 100vw;
    margin: auto;
    /*border-radius:0px 0px 90% 90% / 0px 0px 50% 50%; */
    background-color: #ee7623;
    background: url("../img/about-banner.png");
    background-position: center;
    background-size: cover;
  }
.sec1-text{
  position: absolute;
  z-index: 200;
  color: #ffffff;
  margin-top: 25vw;
  margin-left: 38%;
  opacity: 0;
  /* @keyframes duration | easing-function | delay | name */
   animation: 0.8s ease-in-out 0.4s slideup;
   animation-fill-mode: forwards;
}
.sec1-text h2{
 font-size: 2.6042vw;/*50*/
 font-family: 'Inter', sans-serif;
 font-weight: 500;
}
@keyframes slideup {
  from {
  
  }
  to {
opacity: 1;
margin-top: 22vw;
  }
}

/**/


.section2{
    padding-top: 6vw;
    position: relative;
    padding-bottom:  6vw;
    text-align: center;
}
.section2 h2{
  font-size: 1.8750vw; /*40*/
  font-weight: 500;
 /* font-family: 'LotteMartDream', sans-serif;*/
  margin-top: 4vw;
  line-height: 2.4vw;
}
.section2 h2 span{
  font-weight: 700;
}

.section2 h3{
  font-family: 'Inter', sans-serif;
  font-size: 3.0208vw; /*58*/
  line-height: 3vw;
  font-weight: 600;
  color: #eb7631;
}
.section2 p{
  font-size: 1.2500vw; /*24*/
  margin-top: 2.5vw;
  font-weight: 500;
  line-height: 1.6vw;

}
.section2 .section2-title{
  margin-bottom: 5vw;
}

/**/
.brand-box{
  padding: 0vw 10vw;
  height: 22vw;
  text-align: start;
  transition: all 200ms ease-in-out;
}
.box-text{
  display: flex;
  justify-content: space-between;
  padding-top: 6VW;
  z-index: 10;
  position: relative;
}
.brand-box h2{
  font-size: 2.2917vw /*44*/;
  margin-top: 0.5vw;
  line-height: auto;
  font-weight: 600;
}
.brand-box h3{
  font-size: 1.7708vw /*34*/;
}
.brand-box p{
  font-size: 1.0417vw /*20*/;
  line-height: 1.4vw;
  width: 44vw;
  word-break: keep-all;
  opacity: 0;
  margin-top: 5vw;
  transition: all 200ms ease-in-out;
}
.opacity-box{
  position: absolute;
  width: 100vw;
  height: 22vw;
  left: 0;
  background-color:  rgba(249, 244, 237, 1);
  opacity: 0;
  transition: all 200ms ease-in-out;
  z-index: 1;
}

.b1{
  background: linear-gradient(to left, rgba(255, 255, 255, 0)50%,  rgba(249, 244, 237, 0.8)90%), url("../img/brand-1.png")  ;
  background-position: center;
  background-size: cover;
}
.b2{
  background: linear-gradient(to left, rgba(255, 255, 255, 0)50%,  rgba(249, 244, 237, 0.8)90%), url("../img/brand-2.png")  ;
  background-position: center;
  background-size: cover;
}
.b3{
  background: linear-gradient(to left, rgba(255, 255, 255, 0)50%,  rgba(249, 244, 237, 0.8)90%), url("../img/brand-3.png")  ;

  background-size: cover;
}

.brand-box:hover > .box-text p{
opacity: 1; 
margin-top: 2vw;
}
.b3:hover > .box-text p{
  opacity: 1; 
  margin-top: 3.5vw;
  }

.brand-box:hover > .opacity-box{
  opacity: 0.8;
}


/**/

.wave{
  position: relative;
z-index: 100;
}
.wave img{
  width: 101vw;
  margin-left: -1vw;
  height: 8vw;
}
.wave2{
  height: 0;
}
.wave2 img{
  width: 100vw;
  margin-top: -5vw;
}

.wave-top{
  position: absolute;
z-index: 100;
margin-top: -0.5vw;
}
.wave-top img{
  width: 101vw;
  margin-left: -1vw;
  height: 8vw;
  transform: scaleY(-1);
}
/**/
.section2-mobile{
  display: none;
  text-align: left;
  padding-left: 8.333vw;
  padding-right: 8.333vw;
}
.m1 .mobile-img{
  background-image: url("../img/brand-1.png");
  background-position: center;
  background-size: cover;
}
.m2 .mobile-img{
  background-image: url("../img/brand-2.png");
  background-position: 60%;
  background-size: cover;
}
.m3 .mobile-img{
  background-image: url("../img/brand-3.png");
  background-position: center;
  background-size: cover;
}
.mobile-img{
  margin: auto;
  width: 83vw;
  height: 40vw;
}
.mobile-box:nth-child(1){
  margin-top: 50px;
}
.mobile-box{
  margin-top: 40px;
}
.mobile-box h3{
  font-size: 16px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-top: 20px !important;
}
.mobile-box h2{
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
  line-height: 22px;
}
.mobile-box p{
  font-size: 12px !important;
  padding: 0 !important;
  margin-top: 12px !important;
  font-weight: 400 !important;
}
    

 

 /***/

 
@media (max-width: 540px){
  .sec1-text h2{
    display: none;
  }
  .sec1-video{
    height: 38vh;
    background-position: right;
  }
  .wave2 img{
    margin-top: 0;
  }
  .wave2{
    top: 35vh;
    position: absolute;
    display: none;
  }
  
  .top-btn{
    display: none;
  }
  /**/
  .section2-mobile{
    display: block;
  }
  .section2{
    padding-top: 50px;
  }
  .section2 h3{
    font-size: 20px;
    line-height: normal;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 0px;
  }
  .section2 h3 br{
    display: none;
  }
  .section2 p{
    font-size: 12px;
    line-height: 16px;
    padding-left: 52px;
    padding-right: 52px;
    word-break: keep-all;
    margin-top: 10px;
    font-weight: 600;
  }
  .section2 p br{
    display: none;
  }
  .section2 .section2-title h2{
    font-size: 20px;
    margin-top: 24px;
  }
  /**/
  .brand-box{
    height: 60vh;
    padding: 0vw 8.3333vw;
    display: none;
  }
  .opacity-box{
    height: 60vh;
  }
  .brand-box h3{
    font-size: 14px;
    padding: 0;
    line-height: normal;
    margin-top: 0;
  }
  .brand-box p{
    font-size: 12px;
    line-height: 18px;
     padding-left: 0px; 
     padding-right: 0px; 
    word-break: keep-all;
    margin-top: 0px !important;
    width: auto;
  }
  /**/


}
