@font-face {font-family: 'GmarketSans';src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');font-weight: 300;}/* Light */
@font-face {font-family: 'GmarketSans';src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');font-weight: 500;}/* Medium */
@font-face {font-family: 'GmarketSans';src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');font-weight: bold;} /* Bold */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.6/dist/web/static/pretendard.css");

/* ===================================
    Default CSS
=================================== */

:root {
    /* Layout */
    --layoutwidth: 1240px ;
    --boldWeight:500;
    /* Font */
    --mainfont:'Pretendard';
    --pointfont:'GmarketSans';
    --koSerif:'Noto Serif KR';

    /* Color */
    --BodyColor : #fff;    /* 만약,홈페이지 기본배경이 흰색이 아닌 다른 색상일때 수정 */
    --pointcolor: #00D739 ;
    --subcolor: #0019BC;
    --backcolor: ;

    --gray : ;
    --dark-gray : ;
    --light-gray   : ;


    /* 게시판 공통부분 Custom  (게시판 글자크기, 여백크기)*/
    --boardBodyColor : #fff;    /* 만약, 기본배경이 흰색이 아닌 다른 색상일때 게시판색상 기본 body색상 수정*/
    --borderMargin :5rem auto 10rem auto;
    --borderFontsize : 1rem;
}

/* ========== Font family ========== */
.main-font    {font-family: var(--mainfont), sans-serif}
.point-font   {font-family: var(--pointfont),serif}

.font_serif   {font-family: var(--koSerif), serif;}

/* =============== Color ===============*/
.point-color   {color: var(--pointcolor)!important;color: var(--pointcolor)}/* 익스용 CSS > impotant 쓰면 적용안되는 부분으로 한줄더 작성 */
.sub-color   {color: var(--subcolor)!important;color: var(--subcolor)}/* 익스용 CSS > impotant 쓰면 적용안되는 부분으로 한줄더 작성 */
.back-color   {color: var(--backcolor)!important;color: var(--backcolor)}/* 익스용 CSS > impotant 쓰면 적용안되는 부분으로 한줄더 작성 */

.point-bg     {background-color: var(--pointcolor)}
.sub-bg       {background-color: var(--subcolor)}
.back-bg      {background-color: var(--backcolor)}

/* ==================================================================
    Reset 초기화
===================================================================== */

*{outline:none;}
*, :after, :before {box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0;padding: 0;border: 0;font: inherit;vertical-align: baseline;}

html, body{font-family: var(--mainfont), sans-serif; font-weight: var(--boldWeight); line-height: 1.4; word-break:break-all; color: #000;}
body{-webkit-font-smoothing: antialiased;-font-smoothing: antialiased; letter-spacing: -0.0625rem; background-color: var(--BodyColor);}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
div,span,p,ul,ol,li,dd,dt,dl,h1,h2,h3,h4,h5,h6{word-break: keep-all;} /* 줄바꿈 속성 (단어기준)*/
h1, h2, h3, h4, h5, h6{font-size: 1em;margin: 0;padding: 0;font-family: inherit;}
a{text-decoration:none;color:#000;-webkit-tap-highlight-color: transparent;}
button{border:none;background-color:transparent;cursor: pointer;}
ul,li, ol, dl,dt,dd {list-style:none}
b, strong {font-weight: bold;}
small{font-size:0.9em;vertical-align: text-bottom;}
tbody, tfoot, thead, tr, th, td{vertical-align: middle;}
br{font-family:sans-serif}
img{
    image-rendering: -moz-auto;         /* Firefox */
    image-rendering:   -o-auto;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    image-rendering: auto;
    -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
    max-width: 100%;
    display: block;
}

input, button,textarea, select {margin:0;padding:0;font-family: var(--mainfont), sans-serif;}
input[type="submit"] {width: auto}
input[type="button"], input[type="text"], input[type="email"],
input[type="search"], input[type="password"], textarea, input[type="submit"] {   appearance: none;-webkit-appearance: none; outline: none;}

input:focus, textarea:focus{ border-color: #585858; outline: none; }
input[type="button"]:focus{ outline: none;}
select::-ms-expand{ display:none;}

::-webkit-input-placeholder { color: #6f6f6f; text-overflow: ellipsis;}
::-moz-placeholder { color: #6f6f6f; text-overflow: ellipsis; opacity:1;}
::-ms-input-placeholder { color: #6f6f6f; text-overflow: ellipsis; opacity:1;}

/* Scroll관련 */
::-webkit-scrollbar {width: 10px;}
::-webkit-scrollbar-track {-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);box-shadow: inset 0 0 6px rgba(0,0,0,0.1); border-radius: 5px; background-color: rgba(220, 220, 220, 0.3);}
::-webkit-scrollbar-thumb {background-clip: padding-box; border-radius: 5px; background: var(--pointcolor); border: 1px solid transparent;}

@media (max-width: 500px) {
    div,span,p,ul,ol,li,dd,dt,dl,h1,h2,h3,h4,h5,h6{word-break: keep-all;} /* 줄바꿈 속성 (글자기준)*/
}

/* ==============================================================
    ♥ Custom ♥
============================================================== */

/* ===== Basic ===== */
html,body{font-size:16px; letter-spacing: -0.0625rem;}
@media (max-width:1580px){html, body {font-size: 14px;}}
@media (max-width:1240px){html, body {font-size: 13px;}}
@media (max-width:1024px){html, body {font-size: 11px;}}
@media (max-width:768px) {html, body {font-size: 10.5px;}}

/* ========== Font size (16px 기준) ========== */
.font-12  { font-size: 0.750rem; }
.font-14  { font-size: 0.875rem; }
.font-15  { font-size: .9375rem; }
.font-16  { font-size: 1.000rem; }
.font-18  { font-size: 1.125rem; }
.font-20  { font-size: 1.250rem; }
.font-22  { font-size: 1.375rem; }
.font-24  { font-size: 1.500rem; }
.font-25  { font-size: 1.5625rem;}
.font-26  { font-size: 1.625rem; }
.font-28  { font-size: 1.750rem; }
.font-30  { font-size: 1.875rem; }
.font-32  { font-size: 2.000rem; }
.font-34  { font-size: 2.125rem; }
.font-35  { font-size: 2.1875rem;}
.font-36  { font-size: 2.250rem; }
.font-38  { font-size: 2.375rem; }
.font-40  { font-size: 2.500rem; }
.font-42  { font-size: 2.625rem; }
.font-44  { font-size: 2.750rem; }
.font-45  { font-size: 2.8125rem;}
.font-46  { font-size: 2.875rem; }
.font-48  { font-size: 3.000rem; }
.font-50  { font-size: 3.125rem; }
.font-55  { font-size: 3.4375rem;}
.font-60  { font-size: 3.750rem; }
.font-65  { font-size: 4.0625rem;}
.font-70  { font-size: 4.375rem; }
.font-75  { font-size: 4.6875rem;}
.font-80  { font-size: 5.000rem; }
.font-85  { font-size: 5.3125rem;}
.font-90  { font-size: 5.625rem; }
.font-95  { font-size: 5.9375rem;}
.font-100 { font-size: 6.250rem; }
.font-110 { font-size: 6.875rem; }
.font-120 { font-size: 7.500rem; }
.font-130 { font-size: 8.125rem; }
.font-140 { font-size: 8.750rem; }
.font-150 { font-size: 9.375rem; }
.font-160 { font-size: 10.000rem; }
.font-170 { font-size: 10.625rem; }
.font-180 { font-size: 11.250rem; }
.font-190 { font-size: 11.875rem; }
.font-200 { font-size: 12.500rem; }



/* ========== Font weight ========= */
.bold100 {font-weight:100}
.bold200 {font-weight:200}
.bold300 {font-weight:300}
.bold400 {font-weight:400}
.bold500 {font-weight:500}
.bold600 {font-weight:600}
.bold700 {font-weight:700}
.bold800 {font-weight:800}
.bold900 {font-weight:900}


/* ===== Basic color + background =====*/
.color-white          {color:#ffffff;}
.color-black          {color: #000000;}

.color-gray           {color: var(--gray )}
.color-dark-gray      {color: var(--dark-gray )}
.color-light-gray     {color: var(--light-gray )}

.bg-white             {background-color:#ffffff;}
.bg-black             {background-color:#000000;}


.bg-gray              {background-color: var(--gray )}
.bg-dark-gray         {background-color: var(--dark-gray )}
.bg-light-gray        {background-color: var(--light-gray )}

/* ========== Line-hight ========== */
.lh-10 {line-height: 1.0}
.lh-12 {line-height: 1.2}
.lh-14 {line-height: 1.4}
.lh-15 {line-height: 1.5}
.lh-16 {line-height: 1.6}
.lh-17 {line-height: 1.7}
.lh-20 {line-height: 2.0}
.lh-24 {line-height: 2.4}

/* =============== Letter-spacing =============== */

.sp-0 {letter-spacing: 0px}
.sp-1 {letter-spacing: -1px}
.sp-2 {letter-spacing: -2px}
.sp-20 {letter-spacing: 2px}
.ls-30{letter-spacing: .3rem}
.ls-01{letter-spacing: -1px;}
.ls-02{letter-spacing: -2px;}
.ls-03{letter-spacing: -.3px;}
.ls-04{letter-spacing: -.4px;}
.ls-05{letter-spacing: 0.5px;}
.ls-08{letter-spacing: 0.8px;}
.ls-10{letter-spacing: 1px;}
.ls-20{letter-spacing: 2px;}
.ls-40{letter-spacing: 4px;}
 

/* =============== Display =============== */
.block { display: block; }
.inline-block { display: inline-block; }

.flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
.flex-wrap{display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;flex-wrap: wrap;}
.flex-center {display: flex; align-items: center; justify-content: center;}
.flex-between {display: flex; justify-content: space-between;}

.justify-start { justify-content:flex-start !important}
.justify-center { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
.justify-between { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.items-start { -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }
.items-center { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.items-end { -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }

.align-self-start{-ms-flex-item-align: start;align-self: flex-start}
.align-self-center{-ms-flex-item-align:center;align-self: center}
.align-self-end{-ms-flex-item-align:end;align-self: flex-end}

.shrink0{flex-shrink: 0}
.flex-column {flex-direction: column;}
/* ========== Section Common ==========*/
.section       {padding:9.375rem 0;}
.section_mini  {padding:}
.section-left  {padding-left : calc((100% - var(--layoutwidth)) / 2);width:100%;}
.section-right {padding-right: calc((100% - var(--layoutwidth)) / 2);width:100%;}

.container {max-width: var(--layoutwidth); margin:auto; width: 100%;}
.container_Lg{max-width: 1600px;margin: auto;}
.container_mini{max-width: 1240px;margin: auto;}
.cont_box {margin-top: 3.75rem;}

.mark     {display: inline !important;box-shadow: inset 0 -0.65em 0 rgba(var(--markcolor), 0.3);}
.shadow   {box-shadow: 0 0 15px rgb(0 0 0 / 5%);}
.shadow_lg   {box-shadow: 1px 1px 26px rgb(0 0 0 / 10%);}


@media (max-width:1640px) {
    .container_Lg{width: 90%;}
}
@media (max-width:1550px) {
    .container{width:90%;margin:auto;padding: 0;}

    .section         {padding:6.25rem 0;}
    .section_midini  {padding:6.25rem 0;}
    .section-left  {padding-left : 5%}
    .section-right {padding-right: 5%}
}

@media (max-width:1240px) {
    .container_mini{width:90%;margin:auto;}
}

@media (max-width: 990px) {
    .section       {padding:6rem 0;}
    .section_mini  {padding:6rem 0}
}

@media (max-width: 768px) {
    /* .section      {padding:50px 0;}
    .section_midini {padding:50px 0} */

    .cont_box {margin-top: 4.5rem;}
}
@media (max-width: 500px) {
    .cont_box {margin-top: 3rem;}  
}
/* ========== Text-align ========== */
.text-left   {text-align:left;}
.text-right  {text-align:right;}
.text-center {text-align:center;}

/* ========== Position & Visible ========== */
.hidden   {overflow: hidden;}
.relative {position: relative;}
.absolute {position: absolute;}
.pointerNon{pointer-events: none;}

.visible-lg, .visible-md, .visible-sm, .visible-xs,.visible-xxs {display:none !important}

@media (max-width:1550px) { .hidden-lg {display:none!important} .visible-lg {display:block!important}}
@media (max-width:1240px) { .hidden-md {display:none!important} .visible-md {display:block!important}}
@media (max-width:990px)  { .hidden-sm {display:none!important} .visible-sm {display:block!important}}
@media (max-width:768px)  { .hidden-xs {display:none!important} .visible-xs {display:block!important}}
@media (max-width:500px)  { .hidden-xxs{display:none!important} .visible-xxs{display:block!important}}

/* ===== Img & Width===== */
.img-responsive {max-width: 100%;display: block;}

.width100 {width: 100% !important;width:100%}
.width95 {width: 95%;}
.width90 {width: 90%;}
.width85 {width: 85%;}
.width80 {width: 80%;}
.width75 {width: 75%;}
.width70 {width: 70%;}
.width65 {width: 65%;}
.width60 {width: 60%;}
.width55 {width: 55%;}
.width50 {width: 50%;}
.width45 {width: 45%;}
.width40 {width: 40%;}
.width35 {width: 35%;}
.width30 {width: 30%;}
.width25 {width: 25%;}
.width20 {width: 20%;}
.width15 {width: 15%;}
.width10 {width: 10%;}
.width5 {width: 5%;}

/* ===== Layout ===== */
.max1920{max-width:1920px}
.max1820{max-width:1820px}
.max1800{max-width:1800px}
.max1660{max-width:1660px}
.max1600{max-width:1600px}
.max1520{max-width:1520px}
.max1440{max-width:1440px}
.max1400{max-width:1400px}
.max1240{max-width:1240px}
.max1200{max-width:1200px}
.max1180{max-width:1180px}
.max1024{max-width:1024px}
.max990{max-width:990px}
.max890{max-width:890px}
.max768{max-width:768px}
.max600{max-width:600px}
.max500{max-width:500px}

/* ===== Margin ===== */
.no-margin {margin:0 !important}
.m-zero-auto {margin: 0 auto ;}
.m-auto {margin: auto}

.ml-auto {margin-left: auto;}
.mr-auto {margin-right: auto;}
.mt-auto {margin-top: auto;}
.mb-auto {margin-bottom: auto;}
.mx-auto {margin-left: auto;margin-right:auto}
.my-auto {margin-top: auto;margin-bottom:auto}

.mt-0   {margin-top: 0 !important;}
.mt-8  {margin-top: .5rem }
.mt-12  {margin-top: .75rem;}
.mt-16  {margin-top: 1rem; }
.mt-20  {margin-top: 1.25rem;}
.mt-24  {margin-top: 1.5rem; }
.mt-28  {margin-top: 1.75rem;}
.mt-32  {margin-top: 2rem; }
.mt-36  {margin-top: 2.25rem;}
.mt-40  {margin-top: 2.5rem}
.mt-44  {margin-top: 2.75rem}
.mt-48  {margin-top: 3rem}
.mt-52  {margin-top: 3.25rem}
.mt-56  {margin-top: 3.5rem}
.mt-60  {margin-top: 3.75rem}
.mt-64  {margin-top: 4rem}
.mt-68  {margin-top: 6.125rem}
.mt-72  {margin-top: 4.5rem}
.mt-76  {margin-top: 4.75rem}
.mt-80  {margin-top: 5rem}
.mt-84  {margin-top: 5.25rem}
.mt-88  {margin-top: 5.5rem}
.mt-96  {margin-top: 6rem}
.mt-104 {margin-top: 6.5rem}
.mt-112 {margin-top: 7rem}
.mt-120 {margin-top: 7.5rem}
.mt-132 {margin-top: 8.25rem}
.mt-140 {margin-top: 8.75rem}


.mb-0   {margin-top: 0 !important;}
.mb-8  {margin-top: .5rem }
.mb-12  {margin-top: .75rem;}
.mb-16  {margin-top: 1rem; }
.mb-20  {margin-top: 1.25rem;}
.mb-24  {margin-top: 1.5rem; }
.mb-28  {margin-top: 1.75rem;}
.mb-32  {margin-top: 2rem; }
.mb-36  {margin-top: 2.25rem;}
.mb-40  {margin-top: 2.5rem}
.mb-44  {margin-top: 2.75rem}
.mb-48  {margin-top: 3rem}
.mb-52  {margin-top: 3.25rem}
.mb-56  {margin-top: 3.5rem}
.mb-60  {margin-top: 3.75rem}
.mb-64  {margin-top: 4rem}
.mb-68  {margin-top: 6.125rem}
.mb-72  {margin-top: 4.5rem}
.mb-76  {margin-top: 4.75rem}
.mb-80  {margin-top: 5rem}
.mb-84  {margin-top: 5.25rem}
.mb-88  {margin-top: 5.5rem}
.mb-96  {margin-top: 6rem}
.mb-104 {margin-top: 6.5rem}
.mb-112 {margin-top: 7rem}
.mb-120 {margin-top: 7.5rem}
.mb-132 {margin-top: 8.25rem}
.mb-140 {margin-top: 8.75rem}

.mr-0   {margin-top: 0 !important;}
.mr-8  {margin-top: .5rem }
.mr-12  {margin-top: .75rem;}
.mr-16  {margin-top: 1rem; }
.mr-20  {margin-top: 1.25rem;}
.mr-24  {margin-top: 1.5rem; }
.mr-28  {margin-top: 1.75rem;}
.mr-32  {margin-top: 2rem; }
.mr-36  {margin-top: 2.25rem;}
.mr-40  {margin-top: 2.5rem}
.mr-44  {margin-top: 2.75rem}
.mr-48  {margin-top: 3rem}
.mr-52  {margin-top: 3.25rem}
.mr-56  {margin-top: 3.5rem}
.mr-60  {margin-top: 3.75rem}
.mr-64  {margin-top: 4rem}
.mr-68  {margin-top: 6.125rem}
.mr-72  {margin-top: 4.5rem}
.mr-76  {margin-top: 4.75rem}
.mr-80  {margin-top: 5rem}
.mr-84  {margin-top: 5.25rem}
.mr-88  {margin-top: 5.5rem}
.mr-96  {margin-top: 6rem}
.mr-104 {margin-top: 6.5rem}
.mr-112 {margin-top: 7rem}
.mr-120 {margin-top: 7.5rem}
.mr-132 {margin-top: 8.25rem}
.mr-140 {margin-top: 8.75rem}

.ml-0   {margin-top: 0 !important;}
.ml-8  {margin-top: .5rem }
.ml-12  {margin-top: .75rem;}
.ml-16  {margin-top: 1rem; }
.ml-20  {margin-top: 1.25rem;}
.ml-24  {margin-top: 1.5rem; }
.ml-28  {margin-top: 1.75rem;}
.ml-32  {margin-top: 2rem; }
.ml-36  {margin-top: 2.25rem;}
.ml-40  {margin-top: 2.5rem}
.ml-44  {margin-top: 2.75rem}
.ml-48  {margin-top: 3rem}
.ml-52  {margin-top: 3.25rem}
.ml-56  {margin-top: 3.5rem}
.ml-60  {margin-top: 3.75rem}
.ml-64  {margin-top: 4rem}
.ml-68  {margin-top: 6.125rem}
.ml-72  {margin-top: 4.5rem}
.ml-76  {margin-top: 4.75rem}
.ml-80  {margin-top: 5rem}
.ml-84  {margin-top: 5.25rem}
.ml-88  {margin-top: 5.5rem}
.ml-96  {margin-top: 6rem}
.ml-104 {margin-top: 6.5rem}
.ml-112 {margin-top: 7rem}
.ml-120 {margin-top: 7.5rem}
.ml-132 {margin-top: 8.25rem}
.ml-140 {margin-top: 8.75rem}

/* ===== Padding ===== */
.no-padding {padding:0!important}

.pt-0   {padding-top: 0!important;}
.pb-0   {padding-bottom: 0!important;}
.pr-0   {padding-right:0!important}
.pl-0   {padding-left:0!important}

.pt-0   {margin-top: 0 !important;}
.pt-8  {margin-top: .5rem }
.pt-12  {margin-top: .75rem;}
.pt-16  {margin-top: 1rem; }
.pt-20  {margin-top: 1.25rem;}
.pt-24  {margin-top: 1.5rem; }
.pt-28  {margin-top: 1.75rem;}
.pt-32  {margin-top: 2rem; }
.pt-36  {margin-top: 2.25rem;}
.pt-40  {margin-top: 2.5rem}
.pt-44  {margin-top: 2.75rem}
.pt-48  {margin-top: 3rem}
.pt-52  {margin-top: 3.25rem}
.pt-56  {margin-top: 3.5rem}
.pt-60  {margin-top: 3.75rem}
.pt-64  {margin-top: 4rem}
.pt-68  {margin-top: 6.125rem}
.pt-72  {margin-top: 4.5rem}
.pt-76  {margin-top: 4.75rem}
.pt-80  {margin-top: 5rem}
.pt-84  {margin-top: 5.25rem}
.pt-88  {margin-top: 5.5rem}
.pt-96  {margin-top: 6rem}
.pt-104 {margin-top: 6.5rem}
.pt-112 {margin-top: 7rem}
.pt-120 {margin-top: 7.5rem}
.pt-132 {margin-top: 8.25rem}
.pt-140 {margin-top: 8.75rem}

.pb-0   {margin-top: 0 !important;}
.pb-8  {margin-top: .5rem }
.pb-12  {margin-top: .75rem;}
.pb-16  {margin-top: 1rem; }
.pb-20  {margin-top: 1.25rem;}
.pb-24  {margin-top: 1.5rem; }
.pb-28  {margin-top: 1.75rem;}
.pb-32  {margin-top: 2rem; }
.pb-36  {margin-top: 2.25rem;}
.pb-40  {margin-top: 2.5rem}
.pb-44  {margin-top: 2.75rem}
.pb-48  {margin-top: 3rem}
.pb-52  {margin-top: 3.25rem}
.pb-56  {margin-top: 3.5rem}
.pb-60  {margin-top: 3.75rem}
.pb-64  {margin-top: 4rem}
.pb-68  {margin-top: 6.125rem}
.pb-72  {margin-top: 4.5rem}
.pb-76  {margin-top: 4.75rem}
.pb-80  {margin-top: 5rem}
.pb-84  {margin-top: 5.25rem}
.pb-88  {margin-top: 5.5rem}
.pb-96  {margin-top: 6rem}
.pb-104 {margin-top: 6.5rem}
.pb-112 {margin-top: 7rem}
.pb-120 {margin-top: 7.5rem}
.pb-132 {margin-top: 8.25rem}
.pb-140 {margin-top: 8.75rem}

.pr-0   {margin-top: 0 !important;}
.pr-8  {margin-top: .5rem }
.pr-12  {margin-top: .75rem;}
.pr-16  {margin-top: 1rem; }
.pr-20  {margin-top: 1.25rem;}
.pr-24  {margin-top: 1.5rem; }
.pr-28  {margin-top: 1.75rem;}
.pr-32  {margin-top: 2rem; }
.pr-36  {margin-top: 2.25rem;}
.pr-40  {margin-top: 2.5rem}
.pr-44  {margin-top: 2.75rem}
.pr-48  {margin-top: 3rem}
.pr-52  {margin-top: 3.25rem}
.pr-56  {margin-top: 3.5rem}
.pr-60  {margin-top: 3.75rem}
.pr-64  {margin-top: 4rem}
.pr-68  {margin-top: 6.125rem}
.pr-72  {margin-top: 4.5rem}
.pr-76  {margin-top: 4.75rem}
.pr-80  {margin-top: 5rem}
.pr-84  {margin-top: 5.25rem}
.pr-88  {margin-top: 5.5rem}
.pr-96  {margin-top: 6rem}
.pr-104 {margin-top: 6.5rem}
.pr-112 {margin-top: 7rem}
.pr-120 {margin-top: 7.5rem}
.pr-132 {margin-top: 8.25rem}
.pr-140 {margin-top: 8.75rem}

.pl-0   {margin-top: 0 !important;}
.pl-8  {margin-top: .5rem }
.pl-12  {margin-top: .75rem;}
.pl-16  {margin-top: 1rem; }
.pl-20  {margin-top: 1.25rem;}
.pl-24  {margin-top: 1.5rem; }
.pl-28  {margin-top: 1.75rem;}
.pl-32  {margin-top: 2rem; }
.pl-36  {margin-top: 2.25rem;}
.pl-40  {margin-top: 2.5rem}
.pl-44  {margin-top: 2.75rem}
.pl-48  {margin-top: 3rem}
.pl-52  {margin-top: 3.25rem}
.pl-56  {margin-top: 3.5rem}
.pl-60  {margin-top: 3.75rem}
.pl-64  {margin-top: 4rem}
.pl-68  {margin-top: 6.125rem}
.pl-72  {margin-top: 4.5rem}
.pl-76  {margin-top: 4.75rem}
.pl-80  {margin-top: 5rem}
.pl-84  {margin-top: 5.25rem}
.pl-88  {margin-top: 5.5rem}
.pl-96  {margin-top: 6rem}
.pl-104 {margin-top: 6.5rem}
.pl-112 {margin-top: 7rem}
.pl-120 {margin-top: 7.5rem}
.pl-132 {margin-top: 8.25rem}
.pl-140 {margin-top: 8.75rem}

/* Padding (em)*/
.pd-1em {padding: 1em}
.pd-2em {padding: 2em}
.pd-3em {padding: 3em}
.pd-4em {padding: 4em}
.px-1em {padding-left: 1em ; padding-right: 1em}
.px-2em {padding-left: 2em ; padding-right: 2em}
.px-3em {padding-left: 3em ; padding-right: 3em}
.px-4em {padding-left: 4em ; padding-right: 4em}

.py-1em {padding-top:  1em ; padding-bottom: 1em}
.py-2em {padding-top:  2em ; padding-bottom: 2em}
.py-3em {padding-top:  3em ; padding-bottom: 3em}
.py-4em {padding-top:  4em ; padding-bottom: 4em}

.px-em-point {padding-left:  0.5em ; padding-right: 0.5em}
.py-em-point {padding-top:  0.5em ; padding-bottom: 0.5em}


/* ==================================================================
    기본 box style Layout
===================================================================== */
.flexList { --x-gap:1.5rem; --y-gap:1.5rem;   display:flex;  flex-wrap:wrap;  gap:var(--y-gap) var(--x-gap);}
.flexList > .box{width:calc(100% / var(--count) - (var(--x-gap) * (var(--count) - 1)) / var(--count)); }
.flexList[layoutStyle="fullbox"] {--x-gap:0; --y-gap:0; }
.flexList[layoutStyle="fullbox"] > .box{  width:calc(100% / var(--count)) }
/* boxCout */
[boxCount="2"]{ --count:2; }
[boxCount="3"]{ --count:3; }
[boxCount="4"]{ --count:4; }
[boxCount="5"]{ --count:5; }
[boxCount="6"]{ --count:6; }

@media (max-width:1550px){
    .lg-direction{flex-direction: column;}
    .lg-w100{width:100%}
    .lg-w90{width:90%}
    .lg-w80{width:80%}
    .lg-order{order: 1}
    .lg-cont_box {margin-top: 4.68rem;}

    .lg-wrap3{--count:3}
    .lg-wrap2{--count:2}
    .lg-wrap1{--count:1}
}
@media (max-width:1240px){
    .md-direction{flex-direction: column;}
    .md-w100{width:100%}
    .md-w90{width:90%}
    .md-w80{width:80%}
    .md-order{order: 1}
    .md-cont_box {margin-top: 4.68rem;}

    .md-wrap3{--count:3}
    .md-wrap2{--count:2}
    .md-wrap1{--count:1}
}
@media (max-width:990px){
    .sm-direction{flex-direction: column;}
    .sm-w100{width:100%}
    .sm-w90{width:90%}
    .sm-w80{width:80%}
    .sm-order{order: 1}
    .sm-cont_box {margin-top: 4.68rem;}

    .sm-wrap3{--count:3}
    .sm-wrap2{--count:2}
    .sm-wrap1{--count:1}
}
@media (max-width:768px){
    .xs-direction{flex-direction: column;}
    .xs-w100{width:100%}
    .xs-w90{width:90%}
    .xs-w80{width:80%}
    .xs-order{order: 1}
    .lg-cont_box,.md-cont_box,.sm-cont_box,.xs-cont_box {margin-top: 3.5rem;}

    .xs-wrap3{--count:3}
    .xs-wrap2{--count:2}
    .xs-wrap1{--count:1}
}
@media (max-width:500px){
    .xxs-direction{flex-direction: column;}
    .xxs-w100{width:100%}
    .xxs-w90{width:90%}
    .xxs-w80{width:80%}
    .xxs-order{order: 1}
    .xxs-cont_box {margin-top: 3.5rem}

    .xxs-wrap3{--count:3}
    .xxs-wrap2{--count:2}
    .xxs-wrap1{--count:1}
}


/* ==================================================================
    그누보드 팝업 (기본제공)
===================================================================== */
@media(max-width:1580px){
    #hd_pop{width: 90% !important;z-index: 10000;display: flex;justify-content: space-between;flex-wrap: wrap;align-items: flex-start;}
    .hd_pops{position: relative;width:49% !important; left: auto !important; top: 10px !important; margin-bottom: 2%;}
    .hd_pops_con{width: 100% !important;  height: auto !important;}
    .hd_pops img{width: 100% !important;}
}
@media(max-width:1024px){
    .hd_pops{width: 49% !important;}
}

@media(max-width:768px){
    .hd_pops{width: 100% !important;position: absolute;;}
}

/* ==================================================================
    게시판 관련 CSS (수정예정)
===================================================================== */
#bo_list, #bo_w, #bo_v, #bo_gall,#board_FAQ,#Membership {max-width: var(--layoutwidth) !important;width: 90% !important;margin:var(--borderMargin) !important;font-size:var(--borderFontsize)}
.more_opt{font-size:0.92rem}/* ... 옵션 관련 글자크기 */
.btn_submit{background:var(--pointcolor)}
.btn_submit:hover{background:var(--pointcolor2)}

/* 게시판 background 색 설정시 */
body.board{background: var(--boardBodyColor);}
.sub.board{background: var(--boardBodyColor);}

/* list부분 */
.tbl_wrap table, #bo_list tbody .even td{background: var(--boardBodyColor)!important;}
.tbl_head01 tbody tr:hover td, #bo_list tbody .even:hover td{background:rgba(var(--pointcolor-rgb),.0)!important}
/* view */
#bo_v, .cmt_btn{background: var(--boardBodyColor)!important;}
/* btn */
#bo_v_top ul, .btn_bo_user li, .more_opt li button, .more_opt li a, #bo_v_share .btn{background: var(--boardBodyColor)!important;}


/* ==================================================================
    Animation 및 효과 설정부분
===================================================================== */

/* ========== Aos (fade) ========== */
[data-aos=fade-up2] { transform: translate3d(0, 30px, 0); }
[data-aos=fade-down2] { transform: translate3d(0, -30px, 0); }
[data-aos=fade-right2] { transform: translate3d(-30px, 0, 0); }
[data-aos=fade-left2] { transform: translate3d(30px, 0, 0); }
[data-aos=fade-up-right2] { transform: translate3d(-30px, 30px, 0); }
[data-aos=fade-up-left2] { transform: translate3d(30px, 30px, 0); }
[data-aos=fade-down-right2] { transform: translate3d(-30px, -30px, 0); }
[data-aos=fade-down-left2] { transform: translate3d(30px, -30px, 0); }
[data-aos=fade-in] { transform: translate3d(0, 0, 0); }
/* ========== Aos (zoom) ========== */
[data-aos*="bg-zoom-out"]{transform: scale(1.1)}
[data-aos*="bg-zoom-out"].aos-animate {transform: scale(1);}
[data-aos*="bg-zoom-in"]{transform: scale(1)}
[data-aos*="bg-zoom-in"].aos-animate {transform: scale(1.1);}

/* ========== Aos (reveal) ========== */
[data-aos="reveal-line"]{clip-path:polygon(0 0,0 0,0 100%,0 100%);}
[data-aos="reveal-line"].aos-animate {clip-path: polygon(0 0,100% 0,100% 100%,0 100%)}
[data-aos="reveal-line-revers"]{clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%)}
[data-aos="reveal-line-revers"].aos-animate {clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)}

[data-aos="reveal-line-half"]{clip-path:polygon(0 0,50% 0,50% 100%,0 100%);}
[data-aos="reveal-line-half"].aos-animate {clip-path: polygon(0 0,100% 0,100% 100%,0 100%)}
[data-aos="reveal-line-half-revers"]{clip-path:polygon(50% 0,100% 0,100% 100%,50% 100%);}
[data-aos="reveal-line-half-revers"].aos-animate {clip-path: polygon(0 0,100% 0,100% 100%,0% 100%)}

[data-aos="reveal-top"]{clip-path:polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);}
[data-aos="reveal-top"].aos-animate {clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);}
[data-aos="reveal-bottom"]{clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);}
[data-aos="reveal-bottom"].aos-animate {clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);}
[data-aos="reveal-circle"]{clip-path: circle(0% at 50% 50%);}
[data-aos="reveal-circle"].aos-animate {clip-path:  circle(100% at 50% 50%);}
[data-aos="reveal-open"]{clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%)}
[data-aos="reveal-open"].aos-animate {clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)}


/* ========== Aos (animation 효과로 설정) ========== */
[data-aos="title"]{ opacity: 0;}
[data-aos="title"].aos-animate {animation: title 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;}
[data-aos="tit_mini"]{ opacity: 0;}
[data-aos="tit_mini"].aos-animate {animation: tit_mini 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;}
[data-aos="focus"]{ opacity: 0;}
[data-aos="focus"].aos-animate {animation: focus 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;}


[data-aos*="mark-line"]{position: relative;background: linear-gradient(to right, rgba(97, 97, 97, 0) 50%, #003926 50%); background-size: 200% 1.4em; background-repeat: no-repeat;background-position: 200% 100%; padding: 0 1rem;}
[data-aos*="mark-line"].aos-animate{background-position: 100% 100%;}

[data-aos="radius"] {border-radius: 0px 0px 0px 0px;}
[data-aos="radius"].aos-animate {border-radius: 15.625rem 15.625rem 0px 0px; /* animation: focus 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */}

[data-aos="radius20"] {border-radius: 0px 0px 0px 0px;}
[data-aos="radius20"].aos-animate {border-radius: 1.25rem 1.25rem 1.25rem 1.25rem; /* animation: focus 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */}

[data-aos="radius30"] {border-radius: 0px 0px 0px 0px;}
[data-aos="radius30"].aos-animate {border-radius: 1.875rem 1.875rem 1.875rem 1.875rem; /* animation: focus 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */}

[data-aos="radius195"] {border-radius: 0px 0px 0px 0px;}
[data-aos="radius195"].aos-animate {border-radius: 195px 195px 195px 195px; /* animation: focus 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */}

[data-aos="radius300"] {border-radius: 0px 0px 0px 0px;}
[data-aos="radius300"].aos-animate {border-radius: 0px 18.75rem 0px 0px; /* animation: focus 1.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) both; */}


/* ========== Animation ========== */
@keyframes title    {0% {letter-spacing: -0.5em;opacity: 0;} 40% {opacity: 0.6;}  100% {opacity: 1;} }
@keyframes tit_mini {0% {letter-spacing: 0.5em;opacity: 0;}  40% {opacity: 0.6;}  100% {letter-spacing: 0;opacity: 1;}}
@keyframes focus    {0% {-webkit-filter: blur(15px);filter: blur(15px);opacity: 0;}  100% {-webkit-filter: blur(0px);filter: blur(0px);opacity: 1;}}
@keyframes cycleM   {0% {transform:  translateY(0) scale(1);}    100% {transform: translateY(1.5rem) scale(0.95)}}
@keyframes rotate   {from{ transform: rotate(0); }to{ transform: rotate(360deg); }}
@keyframes scroll   {0% {transform: translate(-50%, 0);opacity: 0;} 40% {opacity: 1;}80% {transform: translate(-50%, 1.4rem);opacity: 0;}100% {opacity: 0;}}
@keyframes bigger   {0%{transform: scale(0); opacity:1;} 100%{transform: scale(5); opacity:0;}}
@keyframes bounce   {to {transform: translateX(2rem);opacity: 0;}}



