@import "reset.css";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR:wght@400;500;600;700&display=swap');
@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(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@2.0/nanumsquare.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{
    margin: 0px;
    width: 100vw;
    font-family: 'Pretendard';
    overflow-x: hidden;
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
    color: #3e3a39;
    background-color:#faf5ee;
}

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;
  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;
}


/*스크롤 액션*/

.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;
}


.top-btn{
  position: fixed;
  z-index: 500;
  right: 4vw;
  bottom:3vw;
  cursor: pointer;
}
.top-btn img{
 width: 2.8vw;
}

.section1{
    margin-top: 0vw;
    color: #efebda;
    background-color: #36211E;
}

  .sec1-video{
    height: 42vw;
    width: 100vw;
    margin: auto;
    /*border-radius:0px 0px 90% 90% / 0px 0px 50% 50%; */
    background-image: url("../img/video-top.png");
    background-position: top;
    background-size: cover;
  }


/**/

.section-wave{
position: absolute;
top: 38vw;
}
.section-wave img{
  width: 100vw;
}

/**/

.section2{
  padding-top: 6vw;
    padding-bottom: 12vw;
    background: linear-gradient( to bottom, #faf5ee, #fffcf8 );
    position: relative;
}

.section2-text{
  margin-left: 19vw;
  float: left;
}

  .sec2-top{
    font-size: 2.0833vw; /*40px*/
    font-weight: 600;
    font-family: 'Inter', sans-serif;
  }
  .sec2-top p{
    margin: 0;
    margin-bottom: 0.5vw;
  }
  .sec2-p-min{
    font-size: 1.8750vw; /*36px*/
  }

  .section2 h2{
    font-size: 2.0833vw; /*40px*/
    margin: 0;
    line-height: 2.4vw;
    margin-top: 1.5vw;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #3e3a39;
  }

  .sec2-bottom p{
    margin: 0;
    margin-top: 1vw;
    line-height: 1.4vw; /*36px*/
    font-size: 1.0417vw; /*20px*/
    font-weight: 500;

  }


  .section2 img{
    width:30vw;
    margin-left: 6vw;
  }
  .company-btn p{
    background-color: #eb7631;
    font-size: 1.2500vw; /*24px*/
    width: fit-content;
    border-radius: 90px;
    color: #fff;
    padding:  0.4vw 0.8vw;
    font-weight: 500;
    text-align: center;
    margin-top: 2.5vw;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }


  /**/

.section-wave-2{
  position: absolute;
  height: 30vw;
  width: 100vw;
  background-image: url("../img/section2-wave.png");
  background-position: center;
  background-size: cover;
  top: 102.5vw;
  color: #EBE7D9;
  text-align: center;
  z-index: 100;
}
.section-wave-2 h2{
  font-size: 2.6042vw; /*50px*/
  margin: 0;
  line-height: 3.2vw;
  margin-top: 0.8vw;
  font-weight: 600;
}
.section-wave-2 p{
  margin: 0;
  margin-top: 10vw;
  line-height: 2.6vw; /*36px*/
  font-size: 2.0833vw; /*40px*/
  font-weight: 400;
}
/**/

.section-video{
  background-image: url("../img/video.png");
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 40vw;
  margin-top: 14vw;
}

/**/

.section3-wave{
width: 100vw;
margin-top: -6vw;
position: relative;
z-index: 100;
background-image: url("../img/wave-white.png");
background-position: top;
background-size: cover;
height: 6vw;
  }


 /**/  

.section3{
  height: 26vw;
  background:#ffffff;
  color: #3e3a39;
}
.section3 h2{
  text-align: center;
  font-size: 2.0833vw; /*40px*/
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin: 0;
}
.section3 h2:nth-child(1)
{
  font-size: 1.8750vw;
  margin-bottom: 0.5vw;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #eb7631;
}
.section3 .product{
  position: absolute;
  z-index: 100;
}
.section3 .product h2{
  margin-top: 15vw;
  left: 13vw;
  width: 35vw;
  font-size: 2.6042vw; /*50px*/
  font-weight: 600;
  position: absolute;
  font-family: 'Inter', sans-serif;
  color: #3e3a39;
}
.section3 .product .product-about{
  margin-top: 10vw;
  left: 62vw;
  width: 30vw;
  position: absolute;
}
.section3 .product .product-about h3{
  font-size: 1.5625vw; /*30px*/
  font-weight: 600;
  margin: 0;
}
.section3 .product .product-about h4{
  font-size:  1.3542vw; /*26px*/
  font-weight: 600;
  margin: 0;
  margin-top: 0.6vw;
  font-family: 'Inter', sans-serif;
}
.section3 .product .product-about p:nth-child(1){
  font-size: 1.0938vw; /*21px*/
  margin: 0;
  margin-bottom: 0.5vw;
  font-weight: 600;
}
.section3 .product .product-about p:nth-child(5){
  font-size: 0.9375vw; /*18px*/
  line-height: 1.3vw; /*34px*/
  font-weight: 500;
  margin-top: 2vw;
  width: 18vw;
  word-break: keep-all;
}
.sec3-btn{
  font-size: 1.2500vw; /*24px*/
  width: 7.5vw;
  border-radius: 90px;
  background-color: #f1d3b3;
  color: #3e3a39;
  padding-top: 0.5vw;
  padding-bottom: 0.5vw;
  font-weight: 600;
  margin: auto;
margin-top: -15vw;
z-index: 100;
position: relative;
text-align: center;
cursor: pointer;
transition: all 0.2s ease-in-out;
 }
 .sec3-btn:hover{
  background-color: #d1a87d;
  transition: all 0.2s ease-in-out;
 }
 .sec3-btn2{
  display: flex;
  justify-content: center;
z-index: 100;
position: relative;
margin-top: -20vw;
 }

 .sec3-btn2 #left{
  width: 1.5vw;
  height: 1.5vw;
  background: url('../img/left-bb.png') no-repeat center;
  background-size: cover;

 }
 .sec3-btn2 #right{
  width: 1.5vw;
  height: 1.5vw;
  background: url('../img/right-bb.png') no-repeat center;
  background-size: cover;
  margin-left: 5vw;
 }

 /**/

.product-back{
  position: absolute;
  left: 45vw;
  margin-top: 10vw;
  z-index: -500;
}
.product-back img{
  width: 8vw;
  position: absolute;

}
.product-back img:nth-child(1){
margin-left: 10vw;
width: 5vw;
margin-top: 4vw;
}
.product-back img:nth-child(2){
  margin-left: 2vw;
  margin-top: 10vw;
  width: 12vw;
  transform: rotate(-55deg);
  }
  .product-back img:nth-child(3){
    margin-left: -3vw;
    margin-top: 6vw;
    width: 11vw;
    }
    .product-back img:nth-child(4){
      margin-left: -6vw;
      margin-top: -1vw;
      width: 6vw;
      }

      /**/

  .product-back{
  position: absolute;
  left: 45vw;
  margin-top: 10vw;
  z-index: -500;
}
.product-back img{
  width: 8vw;
  position: absolute;

}
.product-back img:nth-child(1){
margin-left: 11vw;
width: 4.5vw;
margin-top: 4vw;
}
.product-back img:nth-child(2){
  margin-left: 3vw;
  margin-top: 10vw;
  width: 11vw;
  transform: rotate(30deg);
  }
  .product-back img:nth-child(3){
    margin-left: -5.5vw;
    margin-top: 5vw;
    width: 13vw;
    transform: rotate(70deg);
    }
 .product-back img:nth-child(4){
      margin-left: -6vw;
      margin-top: -3vw;
      width: 5vw;
      transform: rotate(246deg);
      }

  /**/
  .product-back2{
        position: absolute;
        left: 45vw;
        margin-top: 10vw;
        z-index: -500;
        opacity: 0;
      }
  .product-back2 img{
        width: 8vw;
        position: absolute;
      
      }
  .product-back2 img:nth-child(1){
      margin-left: 5vw;
      width: 18vw;
      margin-top: 15vw;
      }
  .product-back2 img:nth-child(2){
        margin-left: -8vw;
        margin-top: 9vw;
        width: 8vw;

        }
  .product-back2 img:nth-child(3){
          margin-left: -14vw;
          margin-top: -3vw;
          width: 9vw;
  
          }

/**/

.product-back3{
  position: absolute;
  left: 45vw;
  margin-top: 10vw;
  z-index: -500;
  opacity: 0;
}
.product-back3 img{
  width: 8vw;
  position: absolute;

}
.product-back3 img:nth-child(1){
margin-left: 12vw;
width: 4vw;
margin-top: -4vw;
}
.product-back3 img:nth-child(2){
  margin-left: -8vw;
  margin-top: 2vw;
  width: 6vw;

  }
.product-back3 img:nth-child(3){
    margin-left: -6vw;
    margin-top: 12vw;
    width: 9vw;
    }

    .product-back3 img:nth-child(4){
      margin-left: 0vw;
      margin-top: 7vw;
      width: 18vw;
  
      }

/*캐러셀 파트 */
.carousel {
  padding-top: 1vw;
  width: 100%;
  height:35vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-top:-2vw;
  padding-bottom: 17vw;
  overflow: hidden;
}

.carousel .card-carousel {
display: flex;
align-items: center;
justify-content: center;
position: relative;

}

.carousel .card-carousel .my-card {
height:22vw;
width: 18vw;
position: relative;
z-index: 100;
-webkit-transform: scale(0.8) translateY(0rem);
transform: scale(0.8) translateY(-0rem);
opacity: 0.7;
cursor: pointer;
pointer-events: none;
transition: 1s;

margin-left: 10VW;
margin-right: 10VW;
overflow: hidden;
margin-top: 6vw;
}
.carousel .card-carousel .my-card.active {
z-index: 100;
-webkit-transform: scale(1) translateY(0) translateX(0);
transform: scale(1.1) translateY(0) translateX(0);
opacity: 1;
pointer-events: auto;
transition: 1s;
margin-top: -1vw;
}
.carousel .card-carousel .my-card.prev, .carousel .card-carousel .my-card.next {
z-index: 2;

pointer-events: auto;
transition: 1s;
}
.carousel .card-carousel .my-card.prev {
-webkit-transform: scale(0.8) translateY(-1rem) translateX(26rem);
transform: scale(0.8) translateY(0rem) translateX(-2rem) ;
z-index: 100;
}
.carousel .card-carousel .my-card.next {
-webkit-transform: scale(0.8) translateY(-1rem) translateX(-26rem);
transform: scale(0.8) translateY(0rem) translateX(2rem);
z-index: 100;
}
    
/**/

.section3-block{
  background-color: #faf5ee;
  height:12vw;
  text-align: center;
}

 /**/  


.section5{
  text-align: center;
background: #ffffff;
  padding-top: 4vw;
  padding-bottom: 4vw;
  color: #3e3a39;
}
.section5 h2{
  font-size:  3.1250vw; /*60px*/
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  position: absolute;
  text-align: center;
  margin-left: 18vw;
  margin-top: 8VW;
  z-index: 100;
  
}
.recipe h2{
  font-weight: 500;
}
.section5 h4{
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-size: 1.5625vw;
  margin-bottom: 0.5vw;
}
.section5 h3{
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-size: 2.0833vw;
  margin-bottom: 4vw;
  margin-top: 0;
  color: #eb7631;
}

/**/

.slider{
display: flex;
overflow: scroll;
overflow-y: hidden;
position: relative;
padding-left: 1vw;

}
.slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}

.cover{
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cover p{
	text-align: center;
	position: absolute;
width: 18.3vw;
color: #ffffff;
font-size:  1.8750vw; /*36px*/
top:45%;

line-height: 2vw;
}

.slide a{
  color: #3e3a39;
  text-decoration: none;
}
.top-text{
  display: flex;
  text-align: center;
  justify-content: space-between;
  margin-bottom: 1.3vw;
 
  font-weight: 600;
  font-size: 0.8333vw;/*12*/
  width: 18.3vw;
}
.top-text p:nth-child(1){
margin-left: 50%;
}


.slide{
  margin-left: 0.8vw;
  margin-right: 0.8vw;
  width: 18.3vw !important;

}
.slide:nth-child(7){
  width: 19vw !important;
}
 .img-box{
width: 18.3vw;
height: 18.3vw;
overflow: hidden;
 }
 .img-box img{
  transition: all 0.3s ease-in-out;
  width: 100%;
	height: 100%;
	object-fit: cover;
 }
.act3 img{
  border-radius: 90%;
}
.act5 img{
  border-radius: 90%;
}

.act8 img{
  width: 12vw;
  position: relative;
  margin-top: 5vw;
  animation: rotateAnim 12s linear infinite forwards;
}
.act8 {
  text-align: center;

}



@keyframes rotateAnim{
  to {
    transform: rotateZ(360deg);
  }
}

 .slide:hover img{
  filter: brightness(0.5);
  transition: all 0.3s ease-in-out;
 }
 .slide:hover .cover{
  opacity: 1;
  transition: all 0.3s ease-in-out;
 }


 .sec5-btn{
  display: flex;
  margin-top: 3vw;
  justify-content: center;
  position: relative;
  text-align: center;
 }
 .sec5-btn #left-2{
  width: 1.5vw;
  height: 1.5vw;
  background: url(../img/left-bb.png) no-repeat center;
  background-size: cover;
  margin-right: 2vw;
 }
 .sec5-btn #right-2{
  width: 1.5vw;
  height: 1.5vw;
  background: url(../img/right-bb.png) no-repeat center;
  background-size: cover;
  margin-left: 2vw;
 }
 /*.bx-wrapper .bx-pager-item:nth-child(2) a.active {
  background: #231815;
 }*/

/**/
.section6{
  text-align: center;
  font-size: 1.6667vw;/*32*/
  background-color: #fff;
  font-weight: 600;
  line-height: 2.2vw;
  color: #3e3a39;
  padding-bottom: 5vw;
  letter-spacing: -0.01em;
}
/**/
.section-video-bottom{
  background-image: url("../img/video-bottom.png");
background-position: center;
background-size: cover;
width: 100vw;
}


/*모바일*/
.sec1-video-mobile{
  height: 100vh;
  width: 100vw;
  display: none;
  overflow: hidden;
}


.sec1-video-mobile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}





.mobile-h5{
  display: none;
  font-size: 16px;
}
.section3-b{
  background: linear-gradient( to bottom, #ffffff, #FAF5EE );
 width: 100vw;
 height: 16vh;
 display: none;
}

.slider-mobile{
  display: none;
  overflow: scroll;
  overflow-y: hidden;
  margin-bottom: 64px;
}
.slider-mobile::-webkit-scrollbar {
  display: none;
}
.slider-item{
  margin-left: 16px;
  margin-right: 16px;

}
.slider-item a{
  display: block;
  width: 200px;
  height: 250px;
}
.slider-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
 }
 .top-text-m{
  display: flex;
  justify-content: flex-start;
  margin-bottom: 7px;
 }
 .top-text-m p{
font-size: 12px;
font-weight: 600;
font-family: 'Inter', sans-serif;
 }
 .top-text-m p:nth-child(2){
  margin-left: 24px;
 }

 .mobile-video-bottom{
  display: none;
  width: 100vw;
  height: auto;
  background-image: url("../img/video-bottom.png");
background-position: center;
background-size: cover;
overflow: hidden;
 }

 

/**/


.post-slider{
  height:50vh;
margin: auto;
  overflow: hidden;
  display: none !important;
  margin-top: 0px;
}


       .slick-center {
            opacity: 1 !important;
            transform: scale(1) !important;
          }

          .slick-current{
            opacity: 1 !important;
            transform: scale(1) !important;
            transition: all 400ms ease-in-out;
            z-index: 500 !important;
            position: relative;
          }

          .post-slider .dd{
           text-align: center;
            margin-left: -25vw;
            margin-right: -25vw;
            transition: all 400ms ease-in-out;
  
            height: 35vh;
            opacity: 0.6;
            margin-top: 23vw;
      
          }
          .dd img{
            object-fit: cover;
         height: 100%;
            z-index: 500;
            position: relative;
         margin: auto;
          }
          .d3{
           /* width: 50vw !important;*/ 

          }
  .powder-slide {
  /*height: 5vh !important;*/
  }

  /*모바일 스크롤 인터렉션*/

  .scroll-action-m{
    display: none;
  }

  /*모바일 반원 이미지 스크롤 인터렉션*/
  .inner {
    margin: auto;
    width: 48vw;
    height: 28vw;
    margin-top: 80px;
    background-image: url("../img/section2-circle.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: none;
  }
  


 /***************/

@media (max-width: 1024px) {
  .scroll-action{
    display: none;
  }
  .top-btn{
    display: none;
  }
  
}

@media (max-width: 540px) {
  .sec1-video-mobile{
    display: block;
  }
  .sec1-video{
   display: none;
  }
  .section-wave{
    display: none;
  }
/**/
  .section2{
    padding-top: 50px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 80px;
    word-break: keep-all;
    overflow: hidden;
  }
  .section2-text{
    float: none;
    margin: auto;
  }
  .sec2-top{
    font-size: 20px;
    text-align: center;
  }
  .section2 h2{
    margin: auto;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: -0.045em;
    text-align: center;
    margin-top: 16px;
    width: 85vw;
    font-weight: 600;

  }
  .section2 h2 br{
    display: none;
  }
  .sec2-bottom p{
    margin: 0;
    margin-top: 20px;
    line-height: 17px;
    font-size: 12px;
    text-align: center;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: 500;
  }
  .sec2-bottom p br{
    display: none;
  }
  .company-btn p{
    margin: auto;
    font-size: 14px;
    width: fit-content;
    padding: 7px 8px;
    margin-top: 20px;
  }

  .section2-img{
    text-align: center;
  }
  .section2 img{
    width: 85vw;
    margin: 0;
    margin-top: 70px;
    display: none;
  }
  .inner{
    display: block;
  }

  /*section3*/
.section3-wave{
  display: none;
}
  .section3-block{
    background-image: linear-gradient(to top,   
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0.7) 45%,
    rgba(0,0,0,0) 100%);
    position: absolute;
    margin-top: -20vh;
    height: 40vw;
    width: 100vw;
    z-index: 300;
    background-color: rgba(255, 255, 255, 0);
  }

  .section3{
    height: auto;
    text-align: center;
    padding-top: 48px;
  }
  .sec3-btn2{
    display: none;
  }
  .section3-b{
    display: block;
  }
  .section3-block{
    display: none;
  }

  .section3 .product {
    left: 50%;
    transform: translate(-50%);
    z-index: 400;
    margin-top: 40vh;
  }
  .section3 h2:nth-child(1){
    font-size: 20px;
    margin-bottom: 0px;
  }
  .section3 .product h2{
    margin-top: 0px;
    font-size: 20px;
    left: auto;
    width: auto;
    position:relative;
  }
  .section3 .product h2 br{
    display: none;
  }
  .section3 .product .product-about{
    margin-top: 10px;
    left: auto;
    width: auto;
    position:relative;
  }
  .product-about h3{
    display: none;
  }
  .product-about h4{
    display: none;
  }
  .section3 .product .product-about p:nth-child(5){
    font-size: 12px;
    line-height: 16px;
    width: 60vw;
  }
  .section3 .product .product-about p:nth-child(5) br{
    display: none;
  }
  .mobile-h5{
    display: block;
  }

  .carousel{
    height: 50vh;
    margin: 0;
      display: none;
  }
  .n1{
    display: none;
  }
  .n2{
    display: none;
  }
  .carousel .card-carousel .my-card{
    height: 22vw;
    width: 18vw;
    position: relative;
    z-index: 100;
    -webkit-transform: scale(0.8) translateY(0rem);
    transform: scale(2.5) translateY(0.6rem);
    opacity: 0.5;
    cursor: pointer;
    pointer-events: none;
    transition: 1s;
    margin-left: 10VW;
    margin-right: 10VW;
    overflow: hidden;
    margin-top: 6vw;
  }
  .carousel .card-carousel .my-card.prev{
    transform: scale(2.9) translateY(0.2rem) translateX(-1.2rem);
    z-index: 100;
  }
  .carousel .card-carousel .my-card.next{
    transform: scale(2.9 ) translateY(0.2rem) translateX(1.2rem);
    z-index: 100;
  }
  .carousel .card-carousel .my-card.active{
    z-index: 100;
    -webkit-transform: scale(1) translateY(0) translateX(0);
    transform: scale(4) translateY(0) translateX(0);
    opacity: 1;
    pointer-events: auto;
    transition: 1s;
    margin-top: -1vw;
   
  }
  .n1{
    height: 45vh !important;
  
  }
  .n2{
    height: 45vh !important;
   
  }
  .powder-slide{
   /* height: 90% !important;
    /*height: 85% !important;*/
    /*margin-top: 10vw !important;*/
   /* display: none;*/
  }

  /*section5*/
  .sec5-btn{
    display: none;
  }
  .section5{
    padding-top: 48px;
  }
  .section5 h3{
    font-size: 20px;
    margin-bottom: 40px;
    text-align: left;
    margin-left: 24px;
  }
  .bx-wrapper{
    display: none;
  }
  .slider-mobile{
    display: flex;
  }
  .slider{
    display: none;
  }
  .act1{
    padding-left: 12px;
  }
  .act8 img{
    width: 140px;
    margin-top: 4vh;
  }

  /**/
  .post-slider{
    display: block !important; 
  }

  /**/
  .section6{
    background-color: #f9f4ed77;
    font-size: 14px;
    line-height: 18px !important;
    letter-spacing: -0.045em;
    padding: 30px 20px;
    word-break: keep-all;
  }
  .section6 h2{
    font-weight: 600;
  }
  .section6 br{
    display: none;
  }

  /**/
  .section-video-bottom{
    display: none;
  }
  .mobile-video-bottom{
    display: block;
  }
  /**/
  
/*스크롤 액션*/

.scroll-action-m{
  text-align: center;

  display: block;
  }
  .scroll-action-m p{
  z-index: 100;
  position: absolute;
  top: 93%;
  left: 50%;
  transform: translate(-50%);
  color: #fff;
  font-size: 16px;
  }
  .scroll-action-m a span {
    position: absolute;
    top: 85%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb1 2s infinite;
    animation: sdb1 2s infinite;
    box-sizing: border-box;
  }
  .scroll-action-m a span:nth-of-type(2) {
    top: 83%;
    }
  @-webkit-keyframes sdb1 {
    0% {
      -webkit-transform: rotate(-45deg) translate(0, 0);
    }
    20% {
      -webkit-transform: rotate(-45deg) translate(-10px, 10px);
    }
    40% {
      -webkit-transform: rotate(-45deg) translate(0, 0);
    }
  }
  @keyframes sdb1 {
    0% {
      transform: rotate(-45deg) translate(0, 0);
    }
    20% {
      transform: rotate(-45deg) translate(-10px, 10px);
    }
    40% {
      transform: rotate(-45deg) translate(0, 0);
    }
  }

}
