@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@font-face {
    font-family: 'Caviar_Dreams_Bold';
    src: url('../font/Caviar_Dreams_Bold-webfont.woff') format('truetype');
}

@font-face {
    font-family: 'CaviarDreams_Italic';
    src: url('../font/CaviarDreams_Italic-webfont.woff') format('truetype');
}
@font-face { 
    font-family: 'GmarketSans';
    font-weight: 300; 
    font-style: normal; 
    src: url(https://cdn.jsdelivr.net/gh/webfontworld/GmarketSans/GmarketSansTTFBold.woff2) format('woff2'), 
    url(https://cdn.jsdelivr.net/gh/webfontworld/GmarketSans/GmarketSansTTFBold.woff) format('woff'); 
    font-display: swap; 
} 

@font-face { 
    font-family: 'GmarketSans'; 
    font-weight: 500; 
    font-style: normal;
    src: url(https://cdn.jsdelivr.net/gh/webfontworld/GmarketSans/GmarketSansTTFMedium.woff2) format('woff2'), 
    url(https://cdn.jsdelivr.net/gh/webfontworld/GmarketSans/GmarketSansTTFMedium.woff) format('woff'); 
    font-display: swap; 
} 

@font-face { 
    font-family: 'GmarketSans';
    font-weight: 700; 
    font-style: normal; 
    src: url(https://cdn.jsdelivr.net/gh/webfontworld/GmarketSans/GmarketSansTTFLight.woff2) format('woff2'), 
    url(https://cdn.jsdelivr.net/gh/webfontworld/GmarketSans/GmarketSansTTFLight.woff) format('woff');
    font-display: swap;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

html {
    overflow-X: hidden;
}

ul,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
}

/* trigger btn */
.trigger_btn {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 17px;
    right: 0;
    z-index: 99999999;
    background: #891119;
    display: none;
}

.menu-trigger,
.menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
.menu-trigger {
    width: 25px;
    height: 25px;
    display: none;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-trigger span {
    position: absolute;
    top: 50px;
    left: 0;
    width: 25px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

#menu05.active2 {
    top: 25px;
}

.menu-trigger span:nth-of-type(1) {
    top: 0;
}

.menu-trigger span:nth-of-type(2) {
    top: 8px;
}

.menu-trigger span:nth-of-type(3) {
    top: 16px;
}

#menu05 span:nth-of-type(2)::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.4s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
}
#menu05.active span:nth-of-type(1) {
    transform: translateY(20px) scale(0);
    -webkit-transform: translateY(20px) scale(0);
    -moz-transform: translateY(20px) scale(0);
    -ms-transform: translateY(20px) scale(0);
    -o-transform: translateY(20px) scale(0);
}
#menu05.active span:nth-of-type(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
#menu05.active span:nth-of-type(2)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
#menu05.active span:nth-of-type(3) {
    transform: translateY(-20px) scale(0);
    -webkit-transform: translateY(-20px) scale(0);
    -moz-transform: translateY(-20px) scale(0);
    -ms-transform: translateY(-20px) scale(0);
    -o-transform: translateY(-20px) scale(0);
}

.trigger_menu {
    width: 50%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -50%;
    z-index: 9999999;
    opacity: 0.9;
    transition: all .4s;
    display: none;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.trigger_menu .trigger_top {
    width: 100%;
    height: auto;
    padding: 20px;
    border-bottom: 1px solid #ede2e2;
    display: flex;
    justify-content: space-between;
}

.trigger_menu .trigger_top .trigger_con {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trigger_menu .trigger_top .trigger_lang {
    width: 50%;
}

.trigger_menu .trigger_top .trigger_login {
    width: 30%;
}


.trigger_menu .trigger_lang ul {
    width: 100%;
    height: auto;
    display: flex;
}

.trigger_menu .trigger_lang .triggerlang_00 {
    width: 50%;
    height: auto;
}

.trigger_menu .trigger_lang .triggerlang_00 > a {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 1rem;
    font-weight: 300;
    text-align: center;
    color:#888;
}

.trigger_menu .trigger_lang .triggerlang_00 > a.active {
    color: #891119;
    font-weight: 600;
}

.trigger_menu .trigger_lang .triggerlang_00 > a:hover {
    color: #891119;
    font-weight: 600;
}

.trigger_menu .trigger_lang .triggerlang_01 {
    border-right: 1px solid #e3e3e3;
}

.trigger_menu .trigger_top .trigger_login .hd_login_02 {
    width: 100%;
    height: auto;
    padding-left: 20px;
    line-height: 26px;
    display: flex;
}

.trigger_menu .trigger_top .trigger_login .hd_login_02 li {
    width: 100%;
    height: auto;
}

.trigger_menu .trigger_top .trigger_login .hd_login_02 li a {
    display: block;
    font-size: 0.875rem;
    color: #666;
    
}

.trigger_menu.active2 {
    right: 0;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

.trigger_menu .trigger_gnb {
    width: 100%;
    height: 100%;
}

.trigger_menu .trigger_gnb > li {
    width: 100%;
    height: auto;
    text-align: center;
    line-height: 50px;
    border-bottom: 1px solid #ededed;
}

.trigger_menu .trigger_gnb > li > a {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.trigger_menu .trigger_gnb > li:hover > a {
    color: #fff;
    background: #891119;
}

/* trigger_sub */
.trigger_menu .trigger_gnb .trigger_sub {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 99;
    display: none;
}

.trigger_menu .trigger_gnb .trigger_sub > li {
    width: 100%;
    height: 40px;
    line-height: 40px;
}

.trigger_menu .trigger_gnb .trigger_sub > li > a {
    display: inline-block;
    font-size: 1rem;
    color: #888;
    padding: 0 10px;
    cursor: pointer;
    line-height: 22px;
    position: relative;
}

.trigger_menu .trigger_gnb .trigger_sub > li > a::after {
    background: none repeat scroll 0 0 transparent;
    bottom: -5px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #891119;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
    -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -moz-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -ms-transition: width 0.3s ease 0s, left 0.3s ease 0s;
    -o-transition: width 0.3s ease 0s, left 0.3s ease 0s;
}

  .trigger_menu .trigger_gnb .trigger_sub li > a:hover::after { 
    width: 100%;
    left: 0; 
  }

/* trigger background */
.trigger_menu_back.active3 {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9998;
}

/* top_menu */
.top_quick_menu {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 999999;
    transform: translate(-50% -50%);
    -webkit-transform: translate(-50% -50%);
    -moz-transform: translate(-50% -50%);
    -ms-transform: translate(-50% -50%);
    -o-transform: translate(-50% -50%);
}

.top_quick_menu .top_icon {
   width: 50px;
   height: 50px;
   border: 2px solid #891119;
   color: #891119;
   font-weight: 600;
   text-align: center;
   line-height: 45px;
   cursor: pointer;
   transition: all 0.2s;
   -webkit-transition: all 0.2s;
   -moz-transition: all 0.2s;
   -ms-transition: all 0.2s;
   -o-transition: all 0.2s;
   border-radius: 50px;
   -webkit-border-radius: 50px;
   -moz-border-radius: 50px;
   -ms-border-radius: 50px;
   -o-border-radius: 50px;
}

.top_quick_menu .top_icon:hover {
   background: #891119;
   color: #fff;
}

#wrap {
    width: 100%;
    height: 100%;
}

/* header */
#hder {
    width: 100%;
    height: 130px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

#hder .hder_area {
    width: 100%;
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

#hder .hder_area .hder_con {
    display: flex;
    align-items: center;
}

#hder .hder_area .logo_box {
    width: 10%;
    height: 100%;
}

#hder .hder_area .gnb_box {
    width: 65%;
    height: 100%;
}

#hder .hder_area .gnb_box ul.gnb {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

#hder .hder_area .gnb_box ul.gnb > li {
    width: auto;
    display: flex;
    flex-direction: column;
    margin-right: 80px;
    height: 100%;
    justify-content: center;
}

#hder .hder_area .gnb_box ul.gnb > li > a {
    display: block;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 300;
    position: relative;
}

#hder .hder_area .gnb_box ul.gnb ul.sub {
    width: auto;
    height: auto;
    position: absolute;
    top: 100px;
    display: none;
}

#hder .hder_area .gnb_box ul.gnb ul.sub > li {
    width: 100%;
    height: auto;
    background: #891119;
    padding: 0 15px;
}

#hder .hder_area .gnb_box ul.gnb ul.sub > li:first-child {
    padding-top: 5px;
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
}

#hder .hder_area .gnb_box ul.gnb ul.sub > li:last-child {
    padding-bottom: 5px;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
}

#hder .hder_area .gnb_box ul.gnb ul.sub > li > a {
    display: block;
    color: #f7858c;
    font-size: 1rem;
    font-weight: 300;
    line-height: 40px;
}

#hder .hder_area .gnb_box ul.gnb ul.sub > li > a:hover {
    color: #fff;
}

/*effect-underline*/
#hder .hder_area .gnb_box ul.gnb > li > a.effect-underline:after {
	content:"";
	display:block;
	position: absolute;
    top: 50%;
    width: 0px;
    height: 43%;
	background-color:#E59500;
	opacity: .6;
	z-index:-1;
	transition: all .3s ease-in-out;
}
#hder .hder_area .gnb_box ul.gnb > li > a.effect-underline:hover:after {
	width:100%;
}

#hder .hder_area .lang_box {
    width: 10%;
    height: 100%;
}

#hder .hder_area .lang_box > img.lang_icon {
    margin-right: 10px;
}

#hder .hder_area .lang_box > img.lang_icon_02 {
    display: none;
}

#hder .hder_area .lang_box ul.lang {
    width: 100%;
    height: auto;
}

#hder .hder_area .lang_box ul.lang > li {
    width: 100%;
    height: 40px;
}

#hder .hder_area .lang_box ul.lang > li > a {
    display: block;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 40px;
}

#hder .hder_area .lang_box ul.lang_02 {
    display: none;
}

#hder .hder_area .lang_box ul.lang_02 > li {
    background: #891119;
}

#hder .hder_area .lang_box ul.lang_02 > li > a {
    font-size: 1rem;
    padding-left: 10px;
}

#hder .hder_area .lang_box ul.lang_02 > li > a:hover {
    background: #fff;
    color: #891119;
}

#hder .hder_area .lang_box > img.lang_arrow_02 {
    display: none;
}

/* header _ shrink */
#hder.shrink {
    height: 60px;
    border-bottom: 1px solid #ededed;
    background: #fff;
    opacity: 0.9;
}

#hder.shrink:hover {
    opacity: 1;
}

#hder.shrink .hder_area .logo_box > a > img {
    width: 60%;
}

#hder.shrink .hder_area .hder_con .gnb > li > a {
    line-height: 60px;
    color: #333 !important;
    font-weight: 400;
}

#hder.shrink .hder_area .gnb_box ul.gnb>li>a.effect-underline:after {
    margin-top: 0 !important;
}

#hder.shrink .hder_area .lang_box ul.lang_01 > li > a {
    color: #333 !important;
    font-weight: 400;
}

#hder.shrink .hder_area .lang_box > img.lang_icon_01 {
    display: none;
}

#hder.shrink .hder_area .lang_box > img.lang_icon_02 {
    display: block;
}

#hder.shrink .hder_area .hder_con .langbtn .langbtn_01 > li > a {
    color: #333 !important;
}

#hder.shrink .hder_area .lang_box > img.lang_arrow_01 {
    display: none;
}

#hder.shrink .hder_area .lang_box > img.lang_arrow_02 {
    display: block;
}

#hder.shrink .hder_area .gnb_box ul.gnb > li > a.effect-underline:after {
    height: 20%;
}

#hder.shrink .hder_area .gnb_box ul.gnb ul.sub {
    top: 50px;
}

.trigger_btn.active1 {
    background: none;
    top: 10px;
}

.menu-trigger.active2 span {
    background-color: #891119;
}

.trigger_menu .trigger_top.active3 {
    height: 60px;
}

#menu05.active2 span:nth-of-type(2)::after {
    background-color: #891119;
}


/* main */
#main {
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    left: 0;
}

#main .main_area {
    width: 100%;
    height: auto;
}

#main .main_area video {
    width: 100%;
    height: 100vh;
    object-fit: fill;
    /* background: #891119; */
}

#main .main_area::before {
    content: '';
    background-image: url(../img/bg_line.png);
    background-position: center;
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 99;
}

#main .main_area::after {
    content: '';
    background: #000;
    background-position: center;
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    z-index: 999;
}

#main .main_area .main_bg {
    width: 100%;
    height: 400px;
    background: url(../img/product_bg.png) no-repeat center;
    background-size: cover;
    display: none;
}

#main .main_area .main_con {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    text-align: center;
    z-index: 9999;
    line-height: 120px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    opacity: 0.5;
}

#main .main_area .main_con > p {
    font-family: 'Caviar_Dreams_Bold';
    font-size: 5.625rem;
    color: #fff;
    letter-spacing: -0.2rem;
}

#main .main_area .main_con > span {
    font-family: 'CaviarDreams_Italic';
    font-size: 3.75rem;
    color: #fff;
    letter-spacing: -0.2rem;
}

/* content _ tab */
#tab {
    width: 100%;
    height: 100vh;
    background: #f7f7f7;
}

#tab .tab_area {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 80px 0 0;
}

#tab .tab_tit {
    width: 100%;
    height: auto;
    text-align: center;
    padding-bottom: 60px;
}

#tab .tab_tit > p {
    font-size: 2.75rem;
    font-weight: 300;
    color: #111;
    letter-spacing: -0.05rem;
    line-height: 56px;
}

#tab .tab_tit > p > span {
    font-weight: 600;
}

#tab .tab_btn {
    width: 100%;
    height: auto;
}

#tab .tab_btn ul.tabs {
    width: 100%;
    height: auto;
	margin: 0px;
	padding: 0px;
	list-style: none;
    display: flex;
    justify-content: center;
}
#tab .tab_btn ul.tabs li {
    width: 230px;
    height: 50px;
    border: 1px solid #b61b1d;
    color: #b61b1d;
    padding: 10px 15px;
    margin-right: 30px;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    border-radius: 25px 25px;
    -webkit-border-radius: 25px 25px;
    -moz-border-radius: 25px 25px;
    -ms-border-radius: 25px 25px;
    -o-border-radius: 25px 25px;
}

#tab .tab_btn ul.tabs li:last-child {
    margin-right: 0;
}

#tab .tab_btn ul.tabs li.current {
	background: #b61b1d;
	color: #fff;
}

#tab .tab_btn ul.tabs li:hover {
    background: #b61b1d;
    color: #fff;
}

/* tab 내용 */
#tab .tab_con {
    width: 100%;
    height: 590px;
	display: none;
    position: relative;
    overflow: hidden;
}

#tab .tab_con.current {
	display: inherit;
}

#tab .tab_con > img.tab_bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

#tab .tab_con .tab_info {
    width: 50%;
    height: 350px;
    position: absolute;
    top: 51%;
    left: 74.5%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    display: flex;
}

#tab .tab_con .tab_info .tab_line {
    padding: 7px 10px 0 0;
}

#tab .tab_con .tab_info .tab_txt {}

#tab .tab_con .tab_info .tab_txt h2 {
    font-size: 2.25rem;
    font-weight: 300;
    color: #333;
    text-align: left;
    letter-spacing: -0.02rem;
    line-height: 50px;
    padding-bottom: 50px;
    position: relative;
}


#tab #tab_1 .tab_info .tab_txt h2 > span {
    font-size: 2.5rem;
    font-weight: 900;
    color: #db3b47;
}

#tab #tab_2 .tab_info .tab_txt h2 > span {
    font-size: 2.5rem;
    font-weight: 900;
    color: #63c99a;
}

#tab #tab_3 .tab_info .tab_txt h2 > span {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f45b58;
}

#tab #tab_4 .tab_info h2 > span {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fac071;
}

#tab .tab_con .tab_info p {
    font-size: 1.25rem;
    font-weight: 300;
    color: #7f7f7f;
    letter-spacing: -0.02rem;
    line-height: 36px;
}

/* content _ slide */
#slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url(../img/slide_bg.png);
}

#slide .slide_area {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 100px 0 0 165px;
    position: relative;
}

#slide .slide_area::after {
    content: '';
    position: absolute;
    top: -90px;
    right: 0;
    width: 625px;
    height: 947px;
    background: url(../img/slide_hand.png);
}

#slide .slide_info {
    width: 100%;
    height: auto;
}

#slide .slide_info .slide_top {
    width: 100%;
    height: auto;
}

#slide .slide_info .slide_top h3 {
    font-family: 'GmarketSans';
    font-size: 3.75rem;
    font-weight: 700;
    letter-spacing: -0.02rem;
    line-height: 80px;
    color: #111;
    padding-bottom: 20px;
}

#slide .slide_info .slide_top h4 {
    font-family: 'GmarketSans';
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.05rem;
    color: #b61b1d;
    line-height: 80px;
}

#slide .slide_info .slide_bottom {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
}

#slide .slide_info .slide_bottom .slide_txt {
    width: 35%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#slide .slide_info .slide_bottom .slide_txt .example {
    font-size: 2.125rem;
    font-weight: 700;
    font-family: 'GmarketSans';
    color: #c35e5f;
    padding-bottom: 20px;
 }

/* #slide .slide_info .slide_bottom .slide_txt .example {
   font-size: 2.125rem;
   font-weight: 700;
   font-family: 'GmarketSans';
   color: #c35e5f;
   padding-bottom: 20px;
   animation: colorchange 18s infinite alternate;
   -webkit-animation: colorchange 18s infinite alternate;
}

#slide .slide_info .slide_bottom .slide_txt .example_01 {
    animation-delay: 0.2s;
 }

 #slide .slide_info .slide_bottom .slide_txt .example_02 {
    animation-delay: 0.4s;
 }

 #slide .slide_info .slide_bottom .slide_txt .example_03 {
    animation-delay: 0.6s;
 }

 #slide .slide_info .slide_bottom .slide_txt .example_04 {
    animation-delay: 0.8s;
 }

 #slide .slide_info .slide_bottom .slide_txt .example_05 {
    animation-delay: 1s;
 }
  
  @-webkit-keyframes colorchange {
    0% {color: rgb(62, 62, 182);}
    10% {color: #8e44ad; }
    20% {color: #1abc9c;}
    30% {olor: #d35400;} 
    40% {color: rgb(62, 62, 182);}
    50% {color: #e179eb;}
    60% {color: rgb(62, 62, 182);}
    70% {color: #2980b9; }
    80% { color: #f1c40f; }
    90% {color: #2980b9;}
    100% { color: pink; }
} */

#slide .slide_info .slide_bottom .slide_img {
    width: 61%;
    height: auto;
}

#slide .slide_info .slide_bottom .slide_img .autoplay {
    width: 95%;
    height: auto;
}

#slide .slide_info .slide_bottom .slide_img .autoplay .slide_con {
    width: 50%;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-next:before {
    content:url(../img/slide_next.png) !important;
    display: none;
}
.slick-prev:before {
    content:url(../img/slide_prev.png) !important;
    display: none;
}
/* slide end */
/* content _ text */
#text {
    width: 100%;
    height: auto;
    padding-bottom: 50px;
}

#text .text_area {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

#text .text_area .text_img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

#text .text_area .text_img .text_l {
    width: 49%;
    height: auto;
    padding-top: 80px;
}

#text .text_area .text_img .text_l  > h3 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.05rem;
    color: #111;
    text-align: center;
    padding-bottom: 40px;
    letter-spacing: -0.07rem;
    font-family: 'Caviar_Dreams_Bold';
}

#text .text_area .text_img .text_l  > h3 > span {
    position: relative;
}

#text .text_area .text_img .text_l  > h3 > span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background:  url(../img/title_line.png);
    opacity: 0.3;
}

#text .text_area .text_img .text_l > img {
    max-width: 100%;
}

#text .text_area .text_img .text_r {
    width: 49%;
    height: auto;
}

#text .text_area .text_img .text_r > img {
    max-width: 100%;
}

#text .text_area .text_img .text_r .text_txt {
    width: 100%;
    height: auto;
    padding-left: 30px;
}

#text .text_area .text_img .text_r .text_txt > h3 {
    font-size: 2rem;
    padding: 40px 0 10px;
    letter-spacing: -0.07rem;
    font-family: 'Caviar_Dreams_Bold';
}

#text .text_area .text_img .text_r .text_txt > p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #666;
    line-height: 28px;
    padding-bottom: 40px;
    word-break: keep-all;
}

#text .text_area .text_img .text_r .text_txt > p > span {
    color: #b61b1d;
    font-weight: 400;
}

#text .text_area .text_img .text_r .text_txt > a {
    font-size: 0.938rem;
    border: 1px solid #b61b1d;
    color: #b61b1d;
    padding:  5px 20px;
    border-radius: 50px 50px;
    -webkit-border-radius: 50px 50px;
    -moz-border-radius: 50px 50px;
    -ms-border-radius: 50px 50px;
    -o-border-radius: 50px 50px;
}

#text .text_area .text_img .text_r .text_txt > a:hover {
    background: #b61b1d;
    color: #fff;
}

#text .text_area .text_icon {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: flex;
    padding-top: 60px;
}

#text .text_area .text_icon .icon_00 {
    width: 25%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid #e5e5e5;
}

#text .text_area .text_icon .icon_00:last-child {
    border: 0;
}

#text .text_area .text_icon .icon_00 > span {
    font-size: 1.125rem;
    padding-top: 15px;
    line-height : 16px;
}

#text .text_area .text_icon .icon_00 > span > br {
    display: none;
}
/* content _ text end*/

/* product */
#product {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: url(../img/product_bg.png) no-repeat;
    background-position: center -100px;
}

#product .product_area {
    width: 100%;
    height: 100%;
    position: relative;
}

#product .product_area .product_txt {
    width: 100%;
    height: auto;
    padding-top: 130px;
}

#product .product_area .product_txt > p {
    font-size: 6rem;
    font-weight: 100;
    color: #fff;
    line-height: 100px;
    text-align: center;
    letter-spacing: -0.05rem;
}

#product .product_area .product_txt > p >span {
    font-weight: 600;
}

/* link */
#link {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#link .link_area {
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#link .link_area .link_con {
    width: 100%;
    max-width: 500px;
    height: 700px;
    position: relative;
}

#link .link_area .link_con .link_info {
    width: 80%;
    height: auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.7);
    border-bottom-right-radius: 25px;
    position: absolute;
    top: 0;
    left: 0;
}

#link .link_area .link_con .link_info .link_tit {
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    letter-spacing: -0.05rem;
}

#link .link_area .link_con .link_info .link_tit  > p {
    font-family: 'GmarketSans';
    font-size: 1.75rem;
    font-weight: 100;
    line-height: 36px;
    padding-bottom: 10px;
}


#link .link_area .link_con .link_info .link_tit  > span {
    font-family: 'GmarketSans';
    font-size: 2.125rem;
    font-weight: 700;
}

#link .link_area .link_con .link_info .link_btn {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#link .link_area .link_con .link_info .link_btn > a {
    display: flex;
    justify-content: flex-end;
    color: #777777;
    font-size: 1.125rem;
    font-weight: 300;
    position: relative;
    margin-right: 20px;
    line-height: 1px;
}

#link .link_area .link_con .link_info .link_btn img {
    transition: all 0.2s ease-in-out;
}

#link .link_area .link_con .link_info .link_btn:hover img {
    animation: ani 1s infinite;
}

@keyframes ani {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px); 
    }

    50% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

#link .link_area .recipe .link_info {
 color: #b61b1d;
}

#link .link_area .catalog .link_info  {
    color: #ff7702;
}

#link .link_area .home .link_info  {
    color: #5c6a46;
}









/* footer */
#fter {
    width: 100%;
    height: auto;
    background: #353535;
    padding: 60px 0;
}

#fter .fter_area {
    width: 100%;
    max-width: 1600px;
    height: auto;
    margin: 0 auto;
    display: flex;
}

#fter .fter_area .fter_logo {
    width: 10%;
    height: auto;
}

#fter .fter_area .fter_logo > a {
    display: block;
}

#fter .fter_area .fter_info {
    width: 90%;
    height: auto;
}

#fter .fter_area .fter_info .fter_top {
    padding: 0 0 40px 20px;
    border-bottom: 1px solid #4a4a4a;
    letter-spacing: -0.05rem;
    display: flex;
    justify-content: space-between;
}

#fter .fter_area .fter_info .fter_top > p {
    font-size: 1.5rem;
    font-weight: 500;
    color: #d6d6d6;
}

#fter .fter_area .fter_info .fter_bottom {
    padding: 40px 0 0 20px;
    letter-spacing: -0.02rem;
}

#fter .fter_area .fter_info .fter_bottom > p {
    font-size: 1.125rem;
    font-weight: 300;
    color: #d6d6d6;
    line-height: 30px;
}

#fter .fter_area .fter_info .fter_bottom p.fter_css {
    padding-bottom: 20px;
}

#fter .fter_area .fter_info .fter_bottom > span {
    font-size: 1rem;
    color: #6c6c6c;
}

/* 미디어쿼리 */
@media all and (max-width:1500px) {
    #hder {
        padding: 0 50px;
    }

    #slide .slide_area {
        padding: 100px 0 0 50px;
    }

    #link .link_area {
        max-width: 1500px;
        padding: 0 50px;
    }

    #link .link_area .link_con {
        max-width: 430px;
        overflow: hidden;
    }

    #fter {
        padding: 60px 50px;
    }
}

@media all and (max-width:1281px) {
    #main {
        height: auto;
    }

    #main .main_area video {
        height: auto;
        object-fit: contain;
        display: block;
    }

    #main .main_area .main_con {
        line-height: 100px;
    }

    #main .main_area .main_con > p {
        font-size: 4.5rem;
    }

    #main .main_area .main_con > span {
        font-size: 3.25rem;
    }

    #tab .tab_tit > p {
        font-size: 2.5rem;
        line-height: 52px;
    }

    #tab .tab_con > img.tab_bg {
        left: 30%;
    }

    #tab .tab_con .tab_info {
        width: 70%;
        left: 64.5%;
    }

    #slide .slide_info .slide_top h3 {
        font-size: 3.25rem;
        line-height: 68px;
        padding-bottom: 10px;
    }

    #slide .slide_info .slide_top h4 {
        font-size: 3.5rem;
        line-height: 70px;
    }

    #slide .slide_info .slide_bottom .slide_txt .example {
        font-size: 1.75rem;
        padding-bottom: 15px;
    }

    #slide .slide_area::after {
        display: none;
    }

    #slide .slide_info .slide_bottom .slide_txt {
        width: 30%;
    }

    #slide .slide_info .slide_bottom .slide_img {
        width: 70%;
    }

    #product {
        background-position: center -180px;
    }

    #product .product_area .product_txt {
        padding-top: 100px;
    }

    #product .product_area .product_txt > p {
        font-size: 5rem;
        line-height: 90px;
    }

    #link {
        height: auto;
    }

    #link .link_area {
        padding: 50px;
    }

    #link .link_area .link_con {
        max-width: 370px;
        height: 600px;
    }

    #link .link_area .link_con .link_info .link_tit > p {
        font-size: 1.5rem;
        line-height: 30px;
    }

    #link .link_area .link_con .link_info .link_tit > span {
        font-size: 1.75rem;
    }
}

@media all and (max-width:1231px) {
    .trigger_btn {
        display: block;
    }

    .trigger_menu {
        display: block;
    }

    .gnb_box {
        display: none !important;
    }

    .lang_box {
        display: none !important;
    }

    .menu-trigger {
        display: block;
    }

    #hder {
        padding: 0 30px;
    }

    #text .text_area .text_img {
        flex-direction: column;
    }

    #text .text_area .text_img .text_l {
        width:100%
    }

    #text .text_area .text_img .text_l  > img {
        display: none;
    }

    #text .text_area .text_img .text_r {
        width:100%;
        text-align: center;
    }

    #text .text_area .text_img .text_r .text_txt {
        padding: 0 15px;
    }

    #text .text_area .text_img .text_r .text_txt > p {
        padding-bottom: 30px;
    }

    #link .link_area {
        padding: 50px 30px;
    }

    #fter {
        padding: 50px 30px;
    }
}

@media all and (max-width:1025px) {
    #main .main_area .main_con {
        line-height: 80px;
    }

    #main .main_area .main_con > p {
        font-size: 3.5rem;
    }

    #main .main_area .main_con > span {
        font-size: 2.5rem;
    }

    #tab .tab_tit > p {
        font-size: 2.25rem;
        line-height: 46px;
    }

    #tab .tab_btn ul.tabs li {
        width: 200px;
    }

    #slide {
        height: 90vh;
    }

    #slide .slide_area {
        padding: 70px 0 0 50px;
    }

    #slide .slide_info .slide_bottom {
        flex-direction: column;
    }

    #slide .slide_info .slide_bottom .slide_img {
        width: 100%;
    }

    #slide .slide_info .slide_top h3 {
        font-size: 3rem;
        line-height: 60px;
    }

    #slide .slide_info .slide_top h4 {
        font-size: 3.25rem;
        line-height: 60px;
    }

    #slide .slide_info .slide_bottom {
        padding-top: 40px;
    }

    #slide .slide_info .slide_bottom .slide_txt {
        position: absolute;
        top: 100px;
        right: 50px;
    }

    #text .text_area .text_icon {
        width: 100%;
    }

    #link .link_area .link_con {
        max-width: 310px;
        height: auto;
    }
    
    #link .link_area .link_con > img {
        max-width: 100%;
    }

    #link .link_area .link_con .link_info {
        padding: 15px;
    }

    #link .link_area .link_con .link_info .link_tit > p {
        font-size: 1.25rem;
        line-height: 26px;
        padding-bottom: 6px;
    }

    #link .link_area .link_con .link_info .link_tit > span {
        font-size: 1.5rem;
    }

    #link .link_area .link_con .link_info .link_btn > a {
        font-size: 1rem;
    }

    #link .link_area .link_con .link_info .link_btn > img {
        margin-top: 1px;
    }
}

@media all and (max-width:801px) {
    #main .main_area .main_con {
        line-height: 50px;
    }

    #main .main_area .main_con > p {
        font-size: 2.5rem;
    }

    #main .main_area .main_con > span {
        font-size: 2rem;
    }

    #tab {
        height: auto;
    }

    #tab .tab_area {
        padding: 50px 0;
    }

    #tab .tab_tit {
        padding-bottom: 30px;
    }

    #tab .tab_tit > p {
        font-size: 2rem;
        line-height: 40px;
    }
    
    #tab .tab_btn ul.tabs li {
        width: 170px;
        padding: 10px;
        margin-right: 15px;
        letter-spacing: -0.05rem;
    }

    #tab .tab_con {
        height: auto;
    }

    #tab .tab_con > img.tab_bg {
        width: 170%;
        position: relative;
        left: 50%;
    }

    #tab .tab_con .tab_info .tab_line {
        display: none;
    }

    #tab .tab_con .tab_info {
        width: 100%;
        height: auto;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
    }

    #tab .tab_con .tab_info p {
        font-size: 1rem;
        line-height: 26px;
    }

    #tab .tab_con .tab_info .tab_txt {
        display: flex;
        align-items: flex-start;
        width: 100%;
        justify-content: center;
    }

    #tab .tab_con .tab_info .tab_txt h2 {
        text-align: right;
        padding-right: 50px;
        padding-bottom: 0;
        font-size: 2rem;
        line-height: 40px;
    }

    #tab #tab_1 .tab_info .tab_txt h2 > span {
        font-size: 2rem;
    }

    #tab #tab_2 .tab_info .tab_txt h2 > span {
        font-size: 2rem;
    }

    #tab #tab_3 .tab_info .tab_txt h2 > span {
        font-size: 2rem;
    }

    #tab #tab_4 .tab_info .tab_txt h2 > span {
        font-size: 2rem;
    }

    #slide {
        height: 80vh;
    }

    #slide .slide_area {
        padding: 70px 0 0 50px;
    }

    #slide .slide_info .slide_top h3 {
        font-size: 2.5rem;
        line-height: 54px;
    }

    #slide .slide_info .slide_top h4 {
        font-size: 2.5rem;
        line-height: 48px;
    }

    #slide .slide_info .slide_bottom .slide_txt {
        position: absolute;
        top: 90px;
        right: 40px;
    }

    #slide .slide_info .slide_bottom .slide_txt .example {
        font-size: 1.25rem;
        padding-bottom: 10px;
    }

    .slick-slide img {
        width: 200px;
    }

    #text .text_area .text_img .text_l > h3 {
        font-size: 2.25rem;
    }

    #product {
        height: 40vh;
        background-position: center -450px;
    }

    #product .product_area {
        background: rgba(0,0,0,0.5);
    }

    #product .product_area .product_txt {
        padding-top: 80px;
    }

    #link .link_area {
        flex-direction: column;
        padding: 30px;
    }

    #link .link_area .link_con {
        max-width: 100% !important;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }

    #link .link_area .link_con.home {
        margin-bottom: 0;
    }

    #link .link_area .link_con > img {
        width: 100%;
    }

    #link .link_area .link_con .link_info {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    #link .link_area .link_con .link_info .link_tit {
        text-align: center;
    }

    #link .link_area .link_con .link_info .link_tit > p {
        font-size: 1.5rem;
    }

    #link .link_area .link_con .link_info .link_tit > p br {
        display: none;
    }

    #link .link_area .link_con .link_info .link_tit > span {
        font-size: 2rem;
    }

    #link .link_area .link_con .link_info .link_btn {
        justify-content: center;
    }

    #fter .fter_area {
        flex-direction: column;
    }

    #fter .fter_area .fter_logo {
        width: 100%;
    }

    #fter .fter_area .fter_info {
        width: 100%;
    }

    #fter .fter_area .fter_logo {
        text-align: center;
    }

    #fter .fter_area .fter_info .fter_top {
        text-align: center;
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 0;
    }

    .hd_login {
        padding: 20px 0 0 0;
    }

    #fter .fter_area .fter_info .fter_bottom {
        text-align: center;
        padding: 10px 0 0 0;
    }

    #fter .fter_area .fter_info .fter_bottom > p {
        display: none;
    }
}

@media all and (max-width:621px) {
    #main .main_area video {
        height: 400px;
        object-fit: cover;
    }

    #main .main_area .main_con > p {
        font-size: 2rem;
        letter-spacing: -0.1rem;
    }

    #main .main_area .main_con > span {
        font-size: 1.5rem;
    }

    #tab .tab_tit > p {
        font-size: 1.5rem;
        line-height: 30px;
    }

    #tab .tab_btn ul.tabs {
        flex-direction: column;
    }

    #tab .tab_btn ul.tabs li {
        margin: 0 auto;
        width: 90%;
        height: 40px;
        padding: 6px;
        margin-bottom: 5px;
    }

    #tab .tab_btn ul.tabs li:last-child {
        margin-right: auto;
    }

    #tab .tab_con .tab_info .tab_txt h2 {
        font-size: 1.5rem;
        line-height: 32px;
        padding-right: 0;
    }

    #tab .tab_con .tab_info p {
        font-size: 0.938rem;
        line-height: 24px;
    }

    #tab .tab_con .tab_info .tab_txt {
        flex-direction: column;
        align-items: center;
    }

    #tab .tab_con .tab_info .tab_txt h2 {
        text-align: center;
        padding-bottom: 10px;
    }

    #tab .tab_con .tab_info p {
        text-align: center;
    }

    #slide {
        height: 65vh;
    }

    #slide .slide_info .slide_bottom .slide_txt {
        position: inherit;
        width: 100%;
    }

    #slide .slide_info .slide_bottom .slide_txt .example {
        font-size: 1.5rem;
        padding-bottom: 14px;
    }

    #slide .slide_info .slide_bottom .slide_img {
        display: none;
    }

    #text .text_area .text_img .text_l > h3 {
        font-size: 2rem;
    }

    #text .text_area .text_img .text_r .text_txt > h3 {
        font-size: 1.75rem;
    }

    #text .text_area .text_img .text_r .text_txt > p {
        font-size: 1rem;
        line-height: 22px;
    }
    
    #product .product_area .product_txt > p {
        font-size: 3rem;
        line-height: 60px;
    }

    #product {
        height: 30vh;
        background-position: center -520px;
    }

    #link .link_area .link_con {
        height: 200px;
    }

    #link .link_area .link_con .link_info .link_tit {
        padding-bottom: 20px;
    }

    #link .link_area .link_con .link_info .link_tit > span {
        font-size: 1.5rem;
    }
}

@media all and (max-width:481px) {
    #hder {
        padding: 0 15px;
    }

    #main {
        height: 400px;
    }

    #main .main_area video {
        display: none;
    }

    #main .main_area .main_bg {
        display: block;
    }

    #main .main_area .main_con {
        line-height: 30px;
    }

    #main .main_area .main_con > p {
        font-size: 1.25rem;
        letter-spacing: -0.02rem;
    }

    #main .main_area .main_con > span {
        font-size: 1rem;
        letter-spacing: -0.02rem;
    }

    #tab .tab_con .tab_info .tab_txt h2 {
        font-size: 1.25rem;
        line-height: 26px;
    }

    #tab #tab_1 .tab_info .tab_txt h2 > span {
        font-size: 1.5rem;
    }

    #tab #tab_2 .tab_info .tab_txt h2 > span {
        font-size: 1.5rem;
    }

    #tab #tab_3 .tab_info .tab_txt h2 > span {
        font-size: 1.5rem;
    }

    #tab #tab_4 .tab_info .tab_txt h2 > span {
        font-size: 1.5rem;
    }

    #slide {
        height: 100%;
    }

    #slide .slide_area {
        padding: 50px 0;
    }

    #slide .slide_info .slide_top h3 {
        font-size: 2rem;
        line-height: 40px;
        padding-bottom: 5px;
        text-align: center;
    }

    #slide .slide_info .slide_top h4 {
        font-size: 2rem;
        line-height: 36px;
        text-align: center;
    }

    #slide .slide_info .slide_bottom {
        display: none;
    }

    #text .text_area .text_img .text_l {
        padding-top: 50px;
    }

    #text .text_area .text_img .text_l > h3 {
        font-size: 1.5rem;
    }

    #text .text_area .text_img .text_r .text_txt > h3 {
        font-size: 1.25rem;
        padding: 20px 0 5px;
    }

    #text .text_area .text_img .text_r .text_txt > p {
        font-size: 0.938rem;
        line-height: 20px;
    }

    #text .text_area .text_icon .icon_00 > img {
        width: 40%;
    }

    #text .text_area .text_icon .icon_00 > span {
        font-size: 0.938rem;
    }

    #text .text_area .text_icon .icon_00 > span > br {
        display: block;
    }

    #product {
        display: none;
    }

    #link .link_area {
        padding: 15px;
    }

    #link .link_area .link_con {
        height: 150px;
    }

    #link .link_area .link_con .link_info .link_tit {
        padding-bottom: 15px;
    }

    #link .link_area .link_con .link_info .link_tit > p {
        font-size: 1.25rem;
    }

    #link .link_area .link_con .link_info .link_tit > span {
        font-size: 1.25rem;
    }

    #link .link_area .link_con .link_info .link_btn > a {
        font-size: 0.938rem;
    }

    #link .link_area .link_con .link_info .link_btn > img {
        margin-top: 2px;
    }

    #fter {
        padding: 30px 15px;
    }

    #fter .fter_area .fter_logo img {
        width: 50px;
    }
    
    #fter .fter_area .fter_info .fter_top {
        padding: 15px 0;
    }

    #fter .fter_area .fter_info .fter_top > p {
        font-size: 1.25rem;
    }

    #fter .fter_area .fter_info .fter_bottom {
        padding: 0;
    }

    #fter .fter_area .fter_info .fter_bottom > span {
        font-size: 0.875rem;
    }
    
    .hd_login {
        padding: 10px 0 0 0;
    }

    .hd_login a {
        font-size: 0.875rem;
        padding: 2px 20px;
    }
}

@media all and (max-width:376px) {
    #main {
        height: 300px;
    }

    #main .main_area .main_bg {
        height: 300px;
    }

    #tab .tab_tit > p {
        font-size: 1.125rem;
        line-height: 24px;
    }

    #tab .tab_tit {
        padding-bottom: 10px;
    }

    #tab .tab_btn ul.tabs li {
        height: 32px;
        margin-bottom: 3px;
        padding: 4px;
        font-size: 0.938rem;
    }

    #tab .tab_con > img.tab_bg {
        width: 300%;
    }

    #slide {
        height: 25vh;
    }

    #slide .slide_area {
        padding: 30px 0;
    }

    #slide .slide_info .slide_top h3 {
        font-size: 1.5rem;
        line-height: 32px;
    }

    #slide .slide_info .slide_top h4 {
        font-size: 1.5rem;
        line-height: 28px;
    }

    #text {
        padding-bottom: 40px;
    }

    #text .text_area .text_img .text_l > h3 {
        font-size: 1.25rem;
    }

    #text .text_area .text_img .text_r .text_txt > h3 {
        font-size: 1.125rem;
    }

    #text .text_area .text_img .text_r .text_txt > p {
        font-size: 0.875rem;
    }

    #text .text_area .text_img .text_r .text_txt > p > br {
        display: none;
    }

    #text .text_area .text_img .text_r .text_txt > a {
        font-size: 0.938rem; 
        padding: 4px 15px;
    }

    #text .text_area .text_icon .icon_00 > span {
        font-size: 0.875rem;
    }
}
