/* header logo */
html #header .header-logo .white {
    display: block;
}
html #header .header-logo .color {
    display: none;
}
html #header:hover .header-logo .white,
html.sticky-header-active #header .header-logo .white {
    display: none;
}
html #header:hover .header-logo .color,
html.sticky-header-active #header .header-logo .color {
    display: block;
}
/* header */
#header .header-body {
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.4s, transform 0.4s 0.2s;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}
html #header .header-nav-main nav > ul > li > a {
    font-family: 'Pretendard' !important;
    color: #fff !important;
    letter-spacing: 0px !important;
}
html #header .header-nav-main nav > ul > li > a {
    font-family: 'Pretendard' !important;
    color: #fff !important;
    letter-spacing: 0px !important;
}
html #header:hover .header-nav-main nav > ul > li > a ,
html.sticky-header-active #header .header-nav-main nav > ul > li > a  {
    color: #111 !important;
}
/*visual*/
#en_visual_wrp {
    position: relative;
}
#en_visual_wrp .vsDeco {
    position: absolute;
    right: 0px;
    bottom: 0;
    transform: translate3d(0, 50%, 0);
    z-index: 15;
    width: 100%;
    text-align: right;
}
#en_visual_wrp .vsDeco img {
    max-width: 50%;
}
#en_visual {
    position: relative;
}
#en_visual .bg {
    height: 950px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#en_visual .bg:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    mix-blend-mode: color-burn;
    z-index: 3;
}
#en_visual .bg:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-size: cover !important;
    transform: scale(1.2);
    transition: all 2s ease;
}
#en_visual .bg.bg1:before {
    background: url(../img/en_visual_bg1.jpg) center center no-repeat;
    background-size: cover;
}
#en_visual .bg.bg2:before {
    background: url(../img/en_visual_bg2.jpg) center center no-repeat;
    background-size: cover;
}
#en_visual .bg.bg3:before {
    background: url(../img/en_visual_bg3.jpg) center center no-repeat;
    background-size: cover;
}
#en_visual .bg.bg4:before {
    background: url(../img/en_visual_bg4.jpg) center center no-repeat;
    background-size: cover;
}
#en_visual .bg.slick-current:before {
    transform: scale(1) !important;
}
#en_visual .txt {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}
#en_visual .tcon {
    text-align: left;
}
#en_visual .tcon .topTt {
    letter-spacing: 5px;
}
#en_visual .tcon h1 {
    position: relative;
    line-height: 1.2em;
    color: #fff;
    display: inline-block;
}
#en_visual .tcon h1 strong {
    font-weight: 500;
}
@media (max-width:992px){
    #en_visual .bg {
        height: 600px;
    }
    #en_visual .txt {
        align-items: center;
    }
    #en_visual .tcon .more {
        font-size: 13px;
        left: -5px;
        top: -10px;
        transform: translateY(-100%);
        width: 80px;
        padding: 4px 0;
    }
}
@media (max-width:768px){
    #en_visual .bg {
        height: 500px;
    }
    #en_visual .bg .tcon {
        margin: 0 auto;
        text-align: center;
    }
}

/* txt */
#en_visual .txt1,
#en_visual .txt2,
#en_visual .txt3,
#en_visual .txt4,
#en_visual .lined {
    opacity: 0;
}
#en_visual .ply .txt1 {
    -webkit-animation: fadeMove 6.5s linear infinite;
    -moz-animation: fadeMove 6.5s linear infinite;
    -ms-animation: fadeMove 6.5s linear infinite;
    -o-animation: fadeMove 6.5s linear infinite;
    animation: fadeMove 6.5s linear infinite;
}
@keyframes fadeMove {
    0% {
        transform: translate3d(0, 30px, 0);
        opacity: 0;
    }
    8% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

#en_visual .ply .txt2 {
    -webkit-animation: fadeMove2 6.5s linear infinite;
    -moz-animation: fadeMove2 6.5s linear infinite;
    -ms-animation: fadeMove2 6.5s linear infinite;
    -o-animation: fadeMove2 6.5s linear infinite;
    animation: fadeMove2 6.5s linear infinite;
}
@keyframes fadeMove2 {
    8% {
        transform: translate3d(0, 30px, 0);
        opacity: 0;
    }
    16% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

#en_visual .ply .txt3 {
    -webkit-animation: fadeMove3 6.5s linear infinite;
    -moz-animation: fadeMove3 6.5s linear infinite;
    -ms-animation: fadeMove3 6.5s linear infinite;
    -o-animation: fadeMove3 6.5s linear infinite;
    animation: fadeMove3 6.5s linear infinite;
}
@keyframes fadeMove3 {
    16% {
        transform: translate3d(0, 30px, 0);
        opacity: 0;
    }
    24% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
#en_visual .ply .txt4 {
    -webkit-animation: fadeMove4 6.5s linear infinite;
    -moz-animation: fadeMove4 6.5s linear infinite;
    -ms-animation: fadeMove4 6.5s linear infinite;
    -o-animation: fadeMove4 6.5s linear infinite;
    animation: fadeMove4 6.5s linear infinite;
}
@keyframes fadeMove4 {
    24% {
        transform: translate3d(0, 30px, 0);
        opacity: 0;
    }
    32% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}


/*Slider - navigation*/
#en_nav_con {
    bottom: 15%;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 15;
}
#en_nav_con .progress_bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 0%;
    margin: 0;
    position: relative;
}
#en_nav_con .progress_bar span {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
}
.slick-slide.slick-active #en_nav_con .progress_bar span {
    -webkit-animation: movBg 6.5s linear infinite;
    -moz-animation: movBg 6.5s linear infinite;
    -ms-animation: movBg 6.5s linear infinite;
    -o-animation: movBg 6.5s linear infinite;
    animation: movBg 6.5s linear infinite;
}
@keyframes movBg {
    0% {
        width: 0px;
    }
    25% {
        width: 0px;
    }
    100% {
        width: 100%;
    }  
}

/* arr_wrp */
#en_visual_wrp #arr_wrp {
    position: absolute;
    top: 70%;
    width: 100%;
    height: 0px;
    left: 0;
}
#arr_wrp .fbox {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: -1px;
    opacity: .6;
}
#arr_wrp .en_arrBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    width: 75px;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    cursor: pointer;
}
#arr_wrp .en_arrBtn + .en_arrBtn {
    border-left: 0px;
}
@media (max-width:767px){
    #en_visual_wrp #arr_wrp {
        top: auto;
        bottom: 10%;
        display: none;
    }
    #arr_wrp .fbox {
        justify-content: center;
    }
    #arr_wrp .en_arrBtn {
        height: 35px;
        width: 35px;
    }
}

/* arrSmBtn */
.arrSmBtn {
    display: inline-block;
}
.arrSmBtn span,
.arrSmBtn a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    color: #111;
}
.arrSmBtn span i,
.arrSmBtn a i {
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #111;
    color: #fff;
    border-radius: 50%;
    font-size: .85em;
}
.arrSmBtn.text-light span,
.arrSmBtn.text-light a {
    color: #fff;
}
.arrSmBtn.text-light span i,
.arrSmBtn.text-light a i {
    background-color: #fff;
    color: #111;
}

/* en_ms1 */
#en_ms1 {
    background: url(../img/en_ms1_bg.jpg) center center no-repeat;
    background-size: cover;
}
@media (max-width:768px){
    #en_ms1 .fbox > div {
        width: 100%;
    }
    #en_ms1 .fbox > .img {
        margin-top: 30px;
    }
}
/* faq */
#qnaWrp {
    border-bottom: 1px solid #aaa;
}
#qnaWrp .qnaItem {
    position: relative;
}
#qnaWrp .qnaItem:last-child {
    border-bottom-width: 2px;
}
#qnaWrp .qnaItem > div {
    padding: 15px 60px;
    position: relative;
}
#qnaWrp .qnaItem .qna_a {
    padding-top: 0px;
    margin-top: -10px;
}
#qnaWrp .qnaItem .qna_q {
    cursor: pointer;
    border-top: 1px solid #aaa;
}
#qnaWrp .qnaItem .qna_q .actBtn {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 0;
    height: 100%;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#qnaWrp .qnaItem.act .qna_q .actBtn {
    transform: rotate(180deg);
}
#qnaWrp .qnaItem .qna_q h3 {
    font-weight: 700;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0px;
    display: flex;
    align-items: center;
}
#qnaWrp .qnaItem .qna_q h4 {
    margin-bottom: 0px;
}
#qnaWrp .qnaItem .qna_q h3,
#qnaWrp .qnaItem .qna_q h4 {
    color: #666;
}
#qnaWrp .qnaItem .qna_q .qq {
    color: #d90c25;
}
#qnaWrp .qnaItem.act .qna_q {
    border-top: 1px solid #aaa;
}
#qnaWrp .qnaItem.act .qna_q .qq,
#qnaWrp .qnaItem.act .qna_q h3,
#qnaWrp .qnaItem.act .qna_q h4 {
    color: #fff;
}
@media (max-width:768px){
    #qnaWrp .qnaItem .qna_q {
        padding: 15px 40px;
        padding-right: 25px;
    }
    #qnaWrp .qnaItem .qna_a {
        padding-left: 40px;
        padding-right: 40px;
    }
    #qnaWrp .qnaItem .qna_q h3 {
        left: 15px;
    }
    #qnaWrp .qnaItem .qna_q h3 img {
        width: 15px;
    }
    #qnaWrp .qnaItem .qna_q .actBtn {
        background-size: 10px !important;
    }
}

/* en_ms2 */
#en_ms2 {
    background-color: #e8edea;
    overflow: hidden;
    position: relative;
}
#en_ms2 .mer_sym {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/mer_en_sym.png) center center no-repeat;
    background-attachment: fixed;
    z-index: 0;
}
#en_ms2 .container {
    position: relative;
    z-index: 5;
}
#en_ms2 .cont {
    position: relative;
}
#en_ms2 .cont .line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #034426;
}
#en_ms2 .cont .line:after,
#en_ms2 .cont .line::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    border-style: solid;
    border-width: 6px;
    border-color: #034426 transparent transparent transparent;
    /* width: 6px;
    height: 6px; */
    transform: translate3d(-50%, -50%, 0);
    /* background-color: #034426; */
    /* border-radius: 50%; */
}
/* #en_ms2 .cont .line::before {
    width: 16px;
    height: 16px;
    opacity: .1;
} */
#en_ms2 .cont .line.dot {
    position: absolute;
    width: 2.5rem;
    bottom: -1em;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}
#en_ms2 .cont .line.dot svg {
    display: block;
    width: 100%;
}
#en_ms2 .cont .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 4rem 0;
}
#en_ms2 .cont .list .item {
    position: relative;
    width: calc(50% - 12rem);
    margin-top: 8rem;
}
#en_ms2 .cont .list .item:nth-child(1),
#en_ms2 .cont .list .item:nth-child(2) {
    margin-top: 0;
}
#en_ms2 .cont .list .item:nth-child(even) {
    top: 8rem;
}
#en_ms2 .cont .list .item .img_con img {
    border-radius: 20px;
}
#en_ms2 .cont .list .item .txt_con {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
#en_ms2 .cont .list .item .txt_con .cc {
    color: #8e937f;
    padding-left: 10px;
    position: relative;
}
#en_ms2 .cont .list .item .txt_con .cc:after {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 3px;
    height: 3px;
    background-color: #3b3b3b;
}
#en_ms2 .cont .list .item.item_only_txt {
    width: 50%;
    margin-top: 8rem;
    padding-left: 30px;
}
#en_ms2 .cont .list .item.item_only_txt:nth-child(odd) {
    padding-left: 0;
    padding-right: 30px;
    text-align: right;
}
#en_ms2 .cont .list .item.item_only_txt .yy {
    position: relative;
}
#en_ms2 .cont .list .item.item_only_txt .yy:after {
    content: "";
    position: absolute;
    right: -30px;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: #034426;
    border-radius: 50%;
    transform: translate3d(50%, -50%, 0);
}
#en_ms2 .cont .list .item.item_only_txt:nth-child(even) .yy:after {
    right: auto;
    left: -30px;
    transform: translate3d(-50%, -50%, 0);
}
/* #en_ms2 .cont .list .item.item_only_txt:nth-child(even) {
    margin-top: 16rem;
} */
@media screen and (max-width: 768px) {
    #en_ms2 .cont .list .item:nth-child(even){
        top: 60px;
    }
    #en_ms2 .cont .list .item:nth-child(2) {
        margin-top: 0;
    }
    #en_ms2 .cont{
        margin-top: 3em;
    }
    #en_ms2 .cont .list .item {
        width:calc(50% - 20px)
    }
    #en_ms2 .cont .list .item .txt_con {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    #en_ms2 .cont .list .item .img_con img {
        border-radius: 8px;
    }
    #en_ms2 .cont .list .item.item_only_txt {
        padding-left: 17px;
    }
    #en_ms2 .cont .list .item.item_only_txt:nth-child(odd) {
        padding-left: 0;
        padding-right: 17px;
    }
    #en_ms2 .cont .list .item.item_only_txt .yy:after {
        right: -17px;
    }
    #en_ms2 .cont .list .item.item_only_txt:nth-child(even) .yy:after {
        right: auto;
        left: -17px;
    }
}

/* centerd_item */
.centerd_item {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* en_ms4 */
#en_ms4 {
    background-color: #f9fcfb;
    position: relative;
}
#en_ms4 .backSlickInfiniteWrp {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: .1;
    filter: grayscale(1);
}
#en_ms4 .backSlickInfiniteWrp .backSlickInfinite {
    width: 100%;
}
#en_ms4 .backSlickInfiniteWrp .backSlickInfinite .slick-slide {
    padding: 10px;
}
#en_ms4 .circlItem .en_cnt_sym {
    position: relative;
    display: inline-block;
}
#en_ms4 .circlItem .en_cnt_sym .backCircle {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%;
    left: 5%;
    z-index: 1;
}
#en_ms4 .circlItem .en_cnt_sym .backCircle::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    animation: circleScale 2s linear infinite;
    transform: translate3d(-50%, -50%, 0);
}
@keyframes circleScale {
    0% {
        opacity: 0;
        width: 100%;
        height: 100%;
    }
    50% {
        opacity: 1;
        width: 115%;
        height: 115%;
    }
    100% {
        opacity: 0;
        width: 130%;
        height: 130%;
    }
}
#en_ms4 .circlItem .en_cnt_sym .backCircle:after {
    content: "";
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.1);
}
#en_ms4 .circlItem .en_cnt_sym .backCircleCons {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    border: 1px dashed #034426;
    border-radius: 50%;
    z-index: 1;
}
#en_ms4 .circlItem .en_cnt_sym .sym_txt {
    position: absolute;
    z-index: 10;
}
#en_ms4 .circlItem .en_cnt_sym .sym_img {
    position: relative;
    z-index: 5;
}


#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid #034426;
    background-color: #f9fcfb;
    justify-content: center;
    
    position: absolute;
    top: calc(50% - 95px);
    left: calc(50% - 95px);
    transform-origin: 0 0; 
    z-index: 10;
}
#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem .mi {
    line-height: 1.2em;
}
#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem .sb {
    line-height: 1.1em;
}
/* 1번째 아이콘 */
#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem.floatItem1 {
    animation: rotateIcons1 15s linear infinite;
}

/* 2번째 아이콘 */
#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem.floatItem2 {
    animation: rotateIcons2 15s linear infinite;
}
/* 3번째 아이콘 */
#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem.floatItem3 {
    animation: rotateIcons3 15s linear infinite;
}
/* 4번째 아이콘 */
#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem.floatItem4 {
    animation: rotateIcons4 15s linear infinite;
}
#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #034426;
    
    position: absolute;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    transform-origin: 0 0; 
    z-index: 5;

    transform-origin: center;
    animation: rotateDot 25s linear infinite;
}
#en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatDot2 {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #034426;
    
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    transform-origin: 0 0; 
    z-index: 5;

    transform-origin: center;
    animation: rotateDot2 15s linear infinite;
}
@media (min-width:992px){
    #en_ms4 .circlItem .en_cnt_sym .backCircle,
    #en_ms4 .circlItem .en_cnt_sym .backCircleCons,
    #en_ms4 .circlItem .en_cnt_sym .sym_txt {
        transform: scale(0);
    }
    #en_ms4 .circlItem .en_cnt_sym .sym_img {
        transform: scale(0) rotate(0deg);
    }
    @keyframes rotateIcons1 {
        0% {transform: rotate(0deg) translateX(365px) rotate(0deg);}
        100% {transform: rotate(360deg) translateX(365px) rotate(-360deg);}
    }
    @keyframes rotateIcons2 {
        0% {transform: rotate(90deg) translateX(365px) rotate(-90deg);}
        100% {transform: rotate(450deg) translateX(365px) rotate(-450deg);}
    }

    @keyframes rotateIcons3 {
        0% {transform: rotate(180deg) translateX(365px) rotate(-180deg);}
        100% {transform: rotate(540deg) translateX(365px) rotate(-540deg);}
    }

    @keyframes rotateIcons4 {
        0% {transform: rotate(270deg) translateX(365px) rotate(-270deg);}
        100% {transform: rotate(630deg) translateX(365px) rotate(-630deg);}
    }
    @keyframes rotateDot {
        0% {transform: rotate(45deg) translateX(365px) rotate(-45deg);}
        100% {transform: rotate(405deg) translateX(365px) rotate(-405deg);}
    }
    @keyframes rotateDot2 {
        0% {transform: rotate(135deg) translateX(365px) rotate(-135deg);}
        100% {transform: rotate(495deg) translateX(365px) rotate(-495deg);}
    }
}
@media (max-width:992px) and (min-width:768px){
    #en_ms4 .circlItem .en_cnt_sym .sym_img {
        width: 550px;
    }
    @keyframes rotateIcons1 {
        0% {transform: rotate(0deg) translateX(275px) rotate(0deg);}
        100% {transform: rotate(360deg) translateX(275px) rotate(-360deg);}
    }
    @keyframes rotateIcons2 {
        0% {transform: rotate(90deg) translateX(275px) rotate(-90deg);}
        100% {transform: rotate(450deg) translateX(275px) rotate(-450deg);}
    }
    @keyframes rotateIcons3 {
        0% {transform: rotate(180deg) translateX(275px) rotate(-180deg);}
        100% {transform: rotate(540deg) translateX(275px) rotate(-540deg);}
    }
    @keyframes rotateIcons4 {
        0% {transform: rotate(270deg) translateX(275px) rotate(-270deg);}
        100% {transform: rotate(630deg) translateX(275px) rotate(-630deg);}
    }

    @keyframes rotateDot {
        0% {transform: rotate(45deg) translateX(275px) rotate(-45deg);}
        100% {transform: rotate(405deg) translateX(275px) rotate(-405deg);}
    }
    @keyframes rotateDot2 {
        0% {transform: rotate(135deg) translateX(275px) rotate(-135deg);}
        100% {transform: rotate(495deg) translateX(275px) rotate(-495deg);}
    }
}
@media (max-width:768px){
    #en_ms4 .circlItem .en_cnt_sym {
        display: block;
    }
    #en_ms4 .circlItem .en_cnt_sym .sym_img img {
        width: 360px;
        max-width: 80vw;
    }
    #en_ms4 .circlItem .en_cnt_sym .backCircle {
        width: 360px;
        height: 360px;
        max-width: 80vw;
        max-height: 80vw;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    #en_ms4 .circlItem .en_cnt_sym .sym_txt {
        width: 360px;
        height: 360px;
        max-width: 80vw;
        max-height: 80vw;
        left: 50%;
        transform: translateX(-50%);
    }
    #en_ms4 .circlItem .en_cnt_sym .backCircleCons {
        position: relative;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1vw;
        border: 0px;
    }
    #en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem {
        position: relative;
        left: auto;
        top: auto;
        border-radius: 0px;
        width: 44vw;
        border-radius: 4px;
        height: 150px;
    }
    #en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatItem .icon img {
        width: 50px;
    }
    #en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatDot,
    #en_ms4 .circlItem .en_cnt_sym .backCircleCons .floatDot2 {
        display: none;
    }
}
@media (max-width:768px){
    #en_ms4 .circlItem .en_cnt_sym .sym_txt h2 {
        font-size: calc(100vw * (22 / 500));
    }
}

/* en_ms5 */
#en_ms5 {
    overflow: hidden;
}
#en_ms5 #factory-section {
  position: relative;
  padding: 200px 0; /* 예시 여백 */
  background: #f8f8f8;
}
#en_ms5 #factory-section .container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#en_ms5 .circle {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 40px auto;
  transform-origin: center center;
}
#en_ms5 .circleInner {
  width: 100%;
  height: 100%;
  border: 2px solid #ccc;
  border-radius: 50%;
  clip-path: circle(18% at 50% 50%); /* 초기 상태 */
  transition: clip-path .3s ease;
}
#en_ms5 .circleLabel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s ease;
  font-size: 1.2rem;
  color: #333;
}
#en_ms5 .content {
  margin-top: 100px;
}
#en_ms5 .contentItem {
  opacity: 0;
  transform: translateY(40px);
  transition: all .4s ease;
  margin-bottom: 60px;
  font-size: 1.5rem;
  color: #444;
}


/* hisCircle */
.hisCircles {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}
.hisCircles .hisCircle {
    height: 450px;
    width: 450px;
    border-radius: 50%;
    border: 1px solid #ddd;
    position: relative;
}
.hisCircles .hisCircle .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: calc(100% - 50px);
    height: calc(100% - 50px);
}
.hisCircles .hisCircle .inner img {
    border-radius: 50%;
}
.hisCircles .hisCircle .inner .his_label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transform: scale(1);
    z-index: 3;
}
.hisCircles .hisCircle .inner .his_blur {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
}
.hisCircles .hisCircle.after .inner .his_label {
    position: absolute;
    left: 0;
    top: 0;
    opacity: .2;
    transform: scale(1.8);
    backdrop-filter: blur(0px);
    border-radius: 0%;
    color: #111;
    width: auto;
    height: auto;
}
@media (min-width:992px){
    .hisCircles {
        transform: translateX(100%);
    }
}
@media (max-width:992px){
    .hisCircles {
        flex-wrap: wrap;
        gap: 10px;
    }
    .hisCircles .hisCircle {
        height: 40vw;
        width: 40vw;
    }
}
@media (max-width:768px){
    .hisCircles .hisCircle .inner {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
    .hisCircles .hisCircle .inner .his_label {
        width: auto;
        height: auto;
        color: rgba(0, 0, 0, 0.4);
    }
}

/* greenBox */
.greenBox {
    background: url(../img/greenBox_bg.jpg) center center no-repeat;
    background-size: cover;
    text-align: center;
    border-radius: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
/* en_rotMer_wrp */
.en_rotMer_wrp {
    position: relative;
}
.en_rotMer_wrp .en_rotMer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.en_rotMer_wrp .en_rotMer img {
    transform: translateY(-50%) translateX(-20%);
    -webkit-animation: en_rotMer 9s linear infinite;
    -moz-animation: en_rotMer 9s linear infinite;
    -ms-animation: en_rotMer 9s linear infinite;
    -o-animation: en_rotMer 9s linear infinite;
    animation: en_rotMer 9s linear infinite;
}
@keyframes en_rotMer {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width:768px){
    .en_rotMer_wrp {
        height: 100px;
        display: flex;
        align-items: end;
    }
    .en_rotMer_wrp .en_rotMer img {
        width: 50vw;
    }
}
/* en_storeList_wrp */
.en_storeList_wrp .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1vw;
}
.en_storeList_wrp .nav li {
    float: none;
}
.en_storeList_wrp .nav li a:hover,
.en_storeList_wrp .nav li a {
    border-bottom: 1px solid transparent;
    padding: 10px 0;
    background-color: transparent !important;
    border-radius: 0px !important;
    color: #666;
    font-size: 18px;
    cursor: pointer;
}
.en_storeList_wrp .nav li.active a {
    color: #052c15;
    border-color: #052c15;
}
@media (max-width:768px){
    .en_storeList_wrp .nav {
        gap: 5px 10px;
    }
    .en_storeList_wrp .nav li a,
    .en_storeList_wrp .nav li a:hover {
        font-size: 14px;
        padding: 5px 0;
    }
}
/* en_storeList */
.en_storeList .en_st_item {
    border-radius: 20px;
    background-color: #f9f4e5;
    padding: 15px;
}
.en_storeList .store_ty1 .en_st_item {
    background-color: #052c15;
}
.en_storeList .store_ty2 .en_st_item {
    background-color: #e8f4e9;
}
.en_storeList .en_st_item .img {
    border: 0px;
    border-radius: 20px;
    position: relative;;
}
.en_storeList .en_st_item .img img {
    border-radius: 15px;
}
.en_storeList .en_st_item .img .ty {
    position: absolute;
    left: 10px;
    top: 10px;
    line-height: 1em;
    padding: 8px 15px;
    border-radius: 80px;
    background-color: rgba(197, 148, 0, 0.8);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}
.en_storeList .en_st_item .img .ty.ty1 {
    background-color: rgba(5, 44, 21, 0.8);
}
.en_storeList .en_st_item .img .ty.ty2 {
    background-color: rgba(5, 44, 21, 0.8);
}
.en_storeList .en_st_item .txt {
    padding: 15px 0;
    text-align: left;
}
.en_storeList .en_st_item .tt {
    position: relative;
    display: flex;
    gap: 5px;
    align-items: center;
}
.en_storeList .en_st_item .tt .icon {
    width: 20px;
    line-height: 1em;
}
.en_storeList .en_st_item .tt .icon img {
    width: 14px;
}
.en_storeList .en_st_item .tt .cc {
    width: calc(100% - 25px);
}
.en_storeList .en_st_item .addr {
    line-height: 1.2em;
    padding-left: 25px;
}
@media (max-width:768px){
    .en_storeList .en_st_item {
        border-radius: 10px;
    }
    .en_storeList .en_st_item .img img {
        border-radius: 7px;
    }
    .en_storeList .en_st_item .txt {
        padding-bottom: 0px;
    }
    .en_storeList .en_st_item .img .ty {
        left: 6px;
        top: 6px;
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* mereumil_en */
@media (max-width:768px){
    #mereumil_en #newAdd1 .org_box .bt {
        padding: 0 15px;
    }
    #mereumil_en #newAdd1 .org_box .bt .circleBox {
        margin: 10px 0;
    }
    #mereumil_en #newAdd1 .org_box .bt .circleBox .cr {
        width: 250px;
        height: 250px;
        max-width: 36vw;
        max-height: 36vw;
    }
}
/* en_ms6 */
#en_ms6 {
    background: url(../img/en_ms6_bg.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}
#en_ms6 .momil {
    background: url(../img/en_ms6_momil.jpg) center center no-repeat;
    background-size: cover;
}
@media (min-width:768px){
    #en_ms6 .momil {
        position: absolute;
        left: 50%;
        top: 0;
        width: 50%;
        height: 100%;
        z-index: 5;
    }
    #en_ms6 .momil img {
        transform: translateX(-10%);
    }
}
@media (max-width:768px){
    #en_ms6 .w1800 {
        text-align: center;
    }
    #en_ms6 .storeHisSlick  {
        padding-bottom: 30px;
    }
    #en_ms6 .momil img {
        max-width: 65vw;
    }
}
/* storeHisSlick */
.storeHisSlick .slick-slide {
    padding: 0 8px;
}
.storeHisSlick .slick-slide img {
    filter: grayscale(1);
}

/* en_ms7 */
@media (min-width:768px){
    #en_ms7 .portfolio-list .mn_detail {
        height: 130px;
    }
}


/* #en_ms8 */
#en_ms8 {
    background-color: #866f28;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media (max-width:768px){
    #en_ms8 {
        height: auto;
        flex-direction: column;
    }
    #en_ms8 .center_mr {
        padding: 60px 0;
    }
}

/* mrBoxWrp */
@media (min-width:768px){
    .mrBoxWrp {
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%;
        z-index: 10;
    }
    .mrBoxWrp .mrContent {
        opacity: 0;
    }
    .mrBoxWrp .mrContent .list_box{
        position: absolute; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        width: 100vw; 
        height: 100%; 
        transform: translateX(100%);
        gap: 10px;
    }
    .mrBoxWrp .mrContent .list_box .item .img {
        border-radius: 30px;
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    }
}
@media (max-width:768px){
    .mrBoxWrp .mrContent .list_box {
        display: flex;
        flex-wrap: wrap;
    }
    .mrBoxWrp .mrContent .list_box .item {
        width: 50%;
    }
}

/* mtit */
.mtit .spTit span {
    display: inline-block;
    border: 1px solid #003d20;
    border-radius: 50px;
    padding: 5px 15px;
}
.mtit .spTit.c_yl span {
    border-color: #ffd132;
}
/* adList */
.adList .item {
    height: 500px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}
.adList .item .txt{
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 50px 30px;
    z-index: 5;
}
.adList .item img {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center;
    z-index: 0;
}
@media (max-width:768px){
    .adList .item {
        height: 300px;
        border-radius: 15px;
    }
    .adList .item .txt{
        padding: 30px 20px;
    }
}
/* en_ms10 */
#en_ms10 {
    background-color: #f2f4ec;
}
@media (max-width:768px){
    #en_ms10 .fbox > div {
        width: 100%;
    }
}
/* marginItem */
.marginItem {
    display: flex;
    align-items: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
}
.marginItem + .marginItem {
    border-top: 1px dashed #aaa;
}
.marginItem .tcon {
    width: calc(100% - 92px);
    padding-right: 30px;
}
.marginItem .icon {
    width: 92px;
}
@media (max-width:768px){
    .marginItem {
        padding: 15px 0;
        max-width: 100%;
    }
    .marginItem .tcon {
        width: calc(100% - 70px);
        padding-right: 20px;
    }
    .marginItem .icon {
        width: 70px;
    }
}
@media (max-width:500px){
    .marginItem .tcon .dft br {
        display: none;
    }
}

/* rate_items */
.rate_items .rate_item {
    padding: 50px 15px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}
.rate_items .rate_item .tcon .dft {
    line-height: 1.3em;
}
@media (max-width:768px){
    .rate_items .rate_item {
        padding: 30px 15px;
        border-radius: 15px;
    }
    .rate_items .rate_item .icon img {
        width: 50px;
    }
}
@media (max-width:500px){
    .rate_items .rate_item {
        display: flex;
        align-items: center;
        padding: 20px;
    }
    .rate_items .rate_item .icon {
        width: 50px;
    }
    .rate_items .rate_item .tcon {
        width: calc(100% - 50px);
        margin-top: 0px;
        padding-left: 20px;
        text-align: left;
    }
    .rate_items .rate_item .tcon br {
        display: none;
    }
}

/* en_ms12 */
#en_ms12 {
    background: url(../img/en_ms12_bg.jpg) right center no-repeat;
    background-size: cover;
}
#en_ms12 .recipWrp {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}
#en_ms12 .recip {
    max-width: 1000px;
    padding: 0 50px;
    margin: 0 auto;
}
#en_ms12 .num_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}
#en_ms12 .num_item + .num_item {
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
}
#en_ms12 .num_item .nn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 109, 45, 0.9);
    font-weight: 600;
    font-size: 0.85em;
}
#en_ms12 .num_item .cc {
    width: calc(100% - 55px);
    padding-left: 20px;
}
@media (max-width:768px){
    #en_ms12 .recipWrp {
        border-radius: 10px;
    }
    #en_ms12 .recip {
        padding: 0 30px;
    }
    #en_ms12 .num_item {
        gap: 8px;
        padding: 15px 0;
    }
    #en_ms12 .num_item .nn {
        width: 30px;
        height: 30px;
    }
    #en_ms12 .num_item .cc {
        width: calc(100% - 38px);
        padding-left: 10px;
    }
}

/* en_ms13 */
#en_ms13 {
    background: url(../img/en_ms13_bg.jpg) center center no-repeat;
    height: 100vh;
    background-size: cover;
    position: relative;
}
#en_ms13 .mtit {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
#en_ms13 .back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(0);
}
@media (min-width:992px){
    #en_ms13 .mtit {
        /* scale: 0; */
        opacity: 0;
    }
}
@media (max-width:768px){
    #en_ms13 {
        height: auto;
        padding: 60px 0;
    }
    #en_ms13 .mtit {
        position: relative;
    }
}

/* prdTit */
.prdTit {
    border-bottom: 1px solid #034426;
}

/* meal_kit */
.meal_kit .item_modal {
    cursor: pointer;
}
.meal_kit .item .img {
    background-color: #f9f9f9;
    border-radius: 20px;
    position: relative;
}
.meal_kit .item .img .goModal {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    background-color: rgba(255, 238, 0, 0.9);
    border-radius: 80px;
    padding: 8px 20px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}
/* ms16 */
#ms16 .form .smt {
    padding: 10px;
    font-weight: 700;
}



/* ========================mr_intro */
#mr_intro {
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: stretch;
    background-color: #003d20;
    z-index: 10000;
    text-align: center;
    display: flex;
}
#mr_intro .ctnTop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
}
#mr_intro > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-decoration: none;
}
#mr_intro > .lft {
    background: url(../img/mr_intro_lft.jpg) center center no-repeat;
    background-size: cover;
}
#mr_intro > .rt {
    background: url(../img/mr_intro_rt.jpg) center center no-repeat;
    background-size: cover;
}
#mr_intro > a .intro-line {
    font-size: 100px;
    line-height: 120px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
#mr_intro > a .intro-line.color_shadow {
    font-size: 20px;
    line-height: 30px;
}
#mr_intro > a .intro-line span {
    display: inline-block;
    font-weight: 900;
    color: rgba(0, 109, 45, 0.5);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
@media (min-width:991px){
    #mr_intro > a .huge {
        font-size: 10em;
        line-height: 1.2em;
    }
    #mr_intro > a .intro-line span {
        transform: translateY(0%);
        text-shadow: 0 120px 0 #FFF;
    }
    #mr_intro > a .intro-line.color_shadow span {
        text-shadow: 0 30px 0 #fff000;
        width: 16px;
    }
    #mr_intro > a:hover .intro-line span {
        transform: translateY(-100%);
    }
    .intro-line span:nth-child(1)  { transition-delay: 0.1s !important; }
    .intro-line span:nth-child(2)  { transition-delay: 0.2s !important; }
    .intro-line span:nth-child(3)  { transition-delay: 0.3s !important; }
    .intro-line span:nth-child(4)  { transition-delay: 0.4s !important; }
    .intro-line span:nth-child(5)  { transition-delay: 0.5s !important; }
    .intro-line span:nth-child(6)  { transition-delay: 0.6s !important; }
    .intro-line span:nth-child(7)  { transition-delay: 0.7s !important; }
    .intro-line span:nth-child(8)  { transition-delay: 0.8s !important; }
    .intro-line span:nth-child(9)  { transition-delay: 0.9s !important; }
    .intro-line span:nth-child(10) { transition-delay: 1.0s !important; }
    .intro-line span:nth-child(11) { transition-delay: 1.1s !important; }
    .intro-line span:nth-child(12) { transition-delay: 1.2s !important; }
    .intro-line span:nth-child(13) { transition-delay: 1.3s !important; }
    .intro-line span:nth-child(14) { transition-delay: 1.4s !important; }
    .intro-line span:nth-child(15) { transition-delay: 1.5s !important; }

    .intro-line.color_shadow span:nth-child(1)  { transition-delay: 0.05s !important; }
    .intro-line.color_shadow span:nth-child(2)  { transition-delay: 0.1s !important; }
    .intro-line.color_shadow span:nth-child(3)  { transition-delay: 0.15s !important; }
    .intro-line.color_shadow span:nth-child(4)  { transition-delay: 0.2s !important; }
    .intro-line.color_shadow span:nth-child(5)  { transition-delay: 0.25s !important; }
    .intro-line.color_shadow span:nth-child(6)  { transition-delay: 0.3s !important; }
    .intro-line.color_shadow span:nth-child(7)  { transition-delay: 0.35s !important; }
    .intro-line.color_shadow span:nth-child(8)  { transition-delay: 0.4s !important; }
    .intro-line.color_shadow span:nth-child(9)  { transition-delay: 0.45s !important; }
    .intro-line.color_shadow span:nth-child(10) { transition-delay: 0.5s !important; }
    .intro-line.color_shadow span:nth-child(11) { transition-delay: 0.55s !important; }
    .intro-line.color_shadow span:nth-child(12) { transition-delay: 0.6s !important; }
    .intro-line.color_shadow span:nth-child(13) { transition-delay: 0.65s !important; }
    .intro-line.color_shadow span:nth-child(14) { transition-delay: 0.7s !important; }
    .intro-line.color_shadow span:nth-child(15) { transition-delay: 0.75s !important; }
}
@media (max-width:991px){
    #mr_intro {
        flex-direction: column;
    }
    #mr_intro .ctnTop {
        top: 50%;
        transform: translateY(-50%);
    }
    #mr_intro > a {
        width: 100%;
        height: 50%;
    }
    #mr_intro > a .intro-line {
        font-size: 40px;
        line-height: 1em;
    }
    #mr_intro > a .intro-line.color_shadow {
        font-size: 15px;
        line-height: 1em;
    }
    #mr_intro > a .intro-line span {
        color: #fff;
    }
    #mr_intro > a .intro-line.color_shadow span {
        color: #fff000;
    }
}


/* pfProfs modal */
.card_select.pfProfs .modal-header .cls_btn2 {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 30px;
    width: 30px;
    cursor: pointer;
    border: 0px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #333;
    border: 0px;
    font-size: 25px;
}
.privacy.pfProfs .modal-dialog > div .modal-content {
    max-width: 1200px;
    border-radius: 0px;
}
.privacy.pfProfs .modal-body {
    padding: 0;
}
.privacy.pfProfs .modal-body .btList > li,
.privacy.pfProfs .modal-body .impList > li {
    margin: 4px 0;
}
.privacy.pfProfs .modal-body .btList > li .dft,
.privacy.pfProfs .modal-body .impList > li .dft {
    position: relative;
    padding-left: 10px;
    font-weight: 400;
}
.privacy.pfProfs .modal-body .btList > li p {
    color: #666;
    font-weight: 300;
}
.privacy.pfProfs .modal-body .btList > li .dft:after,
.privacy.pfProfs .modal-body .impList > li .dft:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    background-color: #ccc;
}
.privacy.pfProfs .modal-body .fbox .img {
    background-color: #ddd;
    position: relative;
    text-align: right;
}
.privacy.pfProfs .modal-body .fbox .bigTit {
    padding: 10% 5% 0;
    position: absolute;
    left: 0;
    top: 0;
    text-align: left;
}
.privacy.pfProfs .modal-body .fbox .txt {
    padding: 30px 60px;
}
.privacy.pfProfs .modal-body .fbox .txt .cr_tt {
    display: inline-block;
    padding: 3px 15px;
    border-radius: 4px;
    background-color: rgba(228, 189, 194, 0.15);
}
.privacy.pfProfs .modal-body .fbox .txt .sm {
    font-size: .6em;
    opacity: .6;
}
@media (min-width:768px) {
    .privacy.pfProfs .modal-body {
        position: relative;
    }
    .privacy.pfProfs .modal-body:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background-color: #f7f7f7;
        z-index: 0;
    }
    .privacy.pfProfs .modal-body .fbox {
        position: relative;
        z-index: 4;
    }
}
@media (max-width:768px) {
    .privacy.pfProfs .modal-body .fbox > div {
        width: 100%;
    }
    .privacy.pfProfs .modal-body .fbox .img img {
        max-width: 80vw;
    }
    .privacy.pfProfs .modal-body .fbox .txt {
        padding: 30px 20px;
    }
}

/*card_select*/
.card_select .modal-content {
    border-radius: 10px;
    border: 0px;
}
.card_select .modal-header {
    border: 0px;
    background-color: #fff;
    padding: 0;
    position: relative;
    border-radius: 20px 20px 0 0;
}
.card_select .modal-header .cls_btn {
    position: absolute;
    right: -20px;
    top: -20px;
    height: 60px;
    background: url(../img/cls_btn.png) center center no-repeat;
    width: 60px;
    cursor: pointer;
    border: 0px;
    z-index: 5;
}
.card_select .modal-header h4 {
    font-weight: 700;  
    line-height: 1.2em; 
}
.card_select .modal-header p {
    color: #999;
    font-weight: 700;
    line-height: 1.2em;
    margin-top: 10px;
}
.card_select .modal-body {
    padding: 30px 20px;
}
.card_select .modal-body > p {
    font-weight: 600;
    margin-bottom: 15px;
}
.card_select .modal-body > .bt_cmt {
    color: #999;
    font-weight: 400;
    margin-top: 10px;
    font-size: 14px;
}
.card_select .modal-body .row {
    margin: 0 -5px;
}
.card_select .modal-body .row > li {
    padding: 0 5px;
    margin: 5px 0;
}
.card_select .modal-body ul li a {
    text-decoration: none;
    display: block;
    text-align: center;
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    font-size: 17px;
    color: #333;
    word-break: keep-all;
}
.card_select .modal-body ul li a h6 {
    color: #666;
    margin-top: 5px;
}
@media (max-width:768px){
    .card_select .modal-body {
        padding: 20px 10px 40px;
    }
    .card_select .modal-body > p {
        margin-bottom: 5px;
    }
    .card_select .modal-body ul li a h6 {
        font-size: 13px;
    }
    .card_select .modal-body > .bt_cmt {
        font-size: 12px;
    }
    .card_select .modal-header .cls_btn {
        right: -5px;
        top: -5px;
        height: 40px;
        width: 40px;
        background-size: 40px !important;
    }
}
/*gift_confirm*/
.gift_confirm .bt_ {
    margin-top: 10px;
}
.gift_confirm .bt_ a {
    display: inline-block;
    color: #37018d;
    font-weight: 600;
}
.gift_confirm .infobox {
    margin: 20px 0;
    padding: 20px 15px;
    background-color: #f7f7f7;
    border-radius: 10px;
}
.gift_confirm .infobox ul li {
    color: #333;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.2em;
}
.gift_confirm .infobox ul li span {
    position: absolute;
    left: 0;
}
.gift_confirm .wanningbox {
    margin: 20px 0;
    padding: 20px 15px;
    background-color: #ffe5e5;
    border-radius: 10px;
}
.gift_confirm .wanningbox p {
    color: #156ad6;
}
@media (max-width: 768px) {
    .gift_confirm .wanningbox,
    .gift_confirm .infobox {
        margin: 15px 0;
    }
    .gift_confirm .infobox ul li,
    .gift_confirm .wanningbox p {
        font-size: 13px;
    }
}
