/* 공통되는 부분 */ 
   @font-face { 
     	font-family: 'Pretendard'; 	
		font-weight: 400; 
      	src: url('{ basePath }/sfsites/c/resource/windmillFonts/Pretendard-Regular') format('woff'); 
   } 

:root { 
    /** set the font for all root/body text **/ 
    --dxp-g-root-font-family: 'Pretendard', sans-serif; 
    --dxp-s-body-font-family:'Pretendard', sans-serif; 

    /** set the font for headings **/ 
    --dxp-g-heading-font-family: 'Pretendard', sans-serif;
    --font-22:1.38rem;
    --color-p-gray:#787878;
        --columns: 24;
    --gutter: 0px;
    --col-width: calc((min(100vw, 1440px) - 2* var(--gutter)) / var(--columns));
    --point-color01:#FF7B31;
        --point-color02:#009C51;
        --point-color03:#EC60D0;
        --point-color04:#FFCD00;
    --point-bg01:#FFF4E4;
    --point-bg02:#E7FAED;
    --point-bg03:#FFEEFC; 
    --point-bg04:#F9F3E2;       
    } 
    html { 
        font-size:100%; 
        overflow-x: hidden;
    }
    body { 
        color:#111;
        letter-spacing: -0.1rem;
        word-break:keep-all;
    } 
    a:active,
    a:focus,
    a:hover{
        text-decoration:none !important;
    }
    h1{
        font-size:3.5rem;
        line-height:120%;
        letter-spacing: -0.25rem;
    }
    h2{
        font-size:3rem;
        line-height:134%;
        letter-spacing: -0.2rem;
    }
    h3{
        font-size:2.375rem;
        line-height:130%;
        letter-spacing: 0;
    }
    h4{
        font-size:1.75rem;
        line-height:120%;
        letter-spacing: -0.1rem;
    }
    h5{
        font-size:1.13rem;
        font-weight:500;
        letter-spacing: -0.1rem;
    }
    p{
        letter-spacing:0;
    }
    /* max width 1440px */ 
.section-footer{
background-color:#fff;        
    }
    main .container-wrap{ 
    max-width:90rem; 
    margin:0 auto; 
    padding: 0 1rem 6.25rem 1rem;
}
/* main full container wrap  및 공통 타이틀 */
/* full container 공통요소 */
.full-container-wrap{
    max-width: 120rem;
    margin:0 auto;
    margin-bottom:6.25rem;
}
.full-container-wrap .container-wrap {
    padding-top:6.25rem;
}
.section-division {
    font-size: 1.13rem;
    font-weight: 500;
    margin-bottom: 0.88rem;
}
.text-cont-wrap h2 b{
    font-weight: 600;
}
.text-cont-wrap h2 strong{
    font-weight: 600;
    color: var(--dxp-g-brand);
}
.text-cont-wrap p{
    font-size: 1.25rem;
    line-height: 160%;
    margin: 1rem 0 2.5rem;
}
.link-btn-large{
    display: inline-block;
}
.link-btn-large a{
    display: block;
    height: 3.75rem;
    padding:0 2.25rem;
    font-size: 1.13rem;
    font-weight: 500;
    letter-spacing:0;
    line-height: 3.75rem;
    border-radius: 0.75rem;
    transition: all .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.link-btn-large:not(.outline) a {        
    color: #fff !important;
}
.link-btn-large a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dxp-g-brand);
    border-radius: 0.75rem;
    z-index: -2;
}
.link-btn-large a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #2C2C2C;
    transition: all .3s;
    border-radius: 0.75rem;
    z-index: -1;
}
.link-btn-large:hover a:before {
    width: 100%;
}
.link-btn-large a i{
    margin-left: 0.94rem;
}
    .text-en{
        letter-spacing: -0.04rem;
    }
    .link-btn-middle {
        letter-spacing: 0;
    }