@charset 'utf-8';

@font-face {
    font-family: 'designhouseOTFLight00';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_three@1.0/designhouseOTFLight00.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-primary: #41AEBB;

    --font-20: 20px
}

body,
html {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 320px;
    scroll-behavior: smooth;
}
body {width:100%;}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
address, code, em, img,
small, strong, sub, sup, var, button,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, input, textarea,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary, mark, video, a, a:visited, a:active {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: keep-all;
    color: #444444;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; 
}
a, a:hover, a:visited, a:active {
    text-decoration: none;
    cursor: pointer;
}
a {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
a:hover {
    color: #41AEBB;
}
iframe,
img,
table {
    border: 0;
}
button,
img,
input,
select,
textarea {
    vertical-align: middle;
}
li,
ol,
ul {
    list-style: none;
}
td,
tr {
    vertical-align: middle;
}
address,
em,
optgroup {
    font-style: normal;
}

p,li {
    line-height: 1.4;
}
pre {
    white-space:pre-line
}

::-moz-selection{
    color: #fff;
    background: #231F20;
}
::selection{
    color: #fff;
    background: #231F20;
}
:lang(en) {
    font-family: 'Poppins',
    sans - serif;
}
svg {
    height: auto;
}

@media all and (max-width:320px) {
    html, body, div, span, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    address, code, em, img,
    small, strong, sub, sup, var,
    b, i, dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section, summary, mark, video, a {
        font-size: 13px;
    }
}

textarea,
input,
select,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0;
    line-height: normal;
}

/* placeholder css 적용하기 */
input::placeholder,
textarea::placeholder {color: #231F20;opacity: 1; /* 파이어폭스에서 뿌옇게 나오는 현상을 방지하기 위한 css */}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {color: #231F20}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {color: #231F20 }
input:-mos-input-placeholder,
textarea:-mos-input-placeholder {color: #231F20;}

/* placeholder 포커스시 감추기*/
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder { /* WebKit browsers */ color:transparent; }
input:focus:-moz-placeholder, 
textarea:focus:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color:transparent; } 
input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder { /* Mozilla Firefox 19+ */ color:transparent; }
input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder { /* Internet Explorer 10+ */ color:transparent; }

/* Padding & Margin  */
.p0 {
    padding: 0 !important;
}
.pt0 {
    padding-top: 0 !important;
}
.pr0 {
    padding-right: 0 !important;
}
.pb0 {
    padding-bottom: 0 !important;
}
.pl0 {
    padding-left: 0 !important;
}
.m0 {
    margin-top: 0 !important;
}
.mt0 {
    margin-top: 0 !important;
}
.mr0 {
    margin-right: 0 !important;
}
.mb0 {
    margin-bottom: 0 !important;
}
.ml0 {
    margin-left: 0 !important;
}
/* Float */
.fl {
    float: left;
}
.fr {
    float: right;
}
.cb {
    clear: both !important;
}
.clear::after {
    content: "";
    display: block;
    clear: both;
}

/* Display */
.db {
    display: block !important;
}
.di {
    display: inline !important;
}
.dib {
    display: inline-block !important;
}
.dibw100 {
    width: 100%;
    display: inline-block;
}

/* Alaign */
.tac {text-align:center}

/* Absolute align */
.xyalign {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.yalign {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.xalign {
    position: absolute;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/* Border */
.b0 {
    border: 0 !important;
}
.bt0 {
    border-top: 0 !important;
}
.bl0 {
    border-left: 0 !important;
}
.br0 {
    border-right: 0 !important;
}
.bb0 {
    border-bottom: 0 !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    svg {
        height: 100%;
    }
}

/* float 관련 */
.clear::after {
    content: "";
    display: block;
    clear: both;
}
.leftbox {
    float: left;
}
.rightbox {
    float: right;
}

/* box-shadow */
.shadow {
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,0.1);
}

/* 말줄임 */
.dot {
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}
/* 효과 */
.effect1 {
    -webkit-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/* 호버 이미지 확대 */
.hover-img {
    display: block;
    overflow: hidden;
}
.hover-img img {
    overflow: hidden;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.hover-img:hover img {
    -webkit-transform:scale(1.05);
    transform:scale(1.05);
}

/*  다음지도 스타일 없애기 */
.wrap_controllers {
    display: none !important;
}
.root_daum_roughmap {
    width:100% !important
}
.root_daum_roughmap .border1,
.root_daum_roughmap .border2,
.root_daum_roughmap .border3,
.root_daum_roughmap .border4 {
    display: none !important;
}

/*  Scroll Top */
.scrolltop {
    display: block;
    position: fixed;
    bottom: 45px;
    right: 3.2%;
    z-index: 3;
    cursor:pointer;
    transition: all 0.5s ease;
    transform: translate(0, 0);
}
.scrolltop img {
    width: 100%
}
.scrolltop:hover {
    transform: translate(0,-10px);
}

    /* Footer 미디어쿼리 */
    @media all and (max-width: 1700px) {
        .scrolltop {
            width:30px;
            top:30px;
            right:3.2%;
            bottom:auto
        }
    }