@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* =========================================================
   Global Base Style
   - 모든 랜딩페이지 공통 reset/base 전용
   - 특정 랜딩 디자인 코드는 넣지 않음
========================================================= */

html,
body {
    width: 100%;
    min-width: 320px;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    color: #333;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -0.05em;
    font-family: 'SUIT', 'Pretendard', 'Noto Sans KR', sans-serif;
    font-weight: 400;
    background: #fff;
}

body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
li,
dl,
dt,
dd,
ul,
pre,
form,
fieldset,
legend,
button,
table,
th,
td {
    border: 0;
    margin: 0;
    padding: 0;
}

ul,
ol,
li,
dl {
    list-style: none;
}

img {
    border: 0;
    vertical-align: middle;
    font-size: 0;
    max-width: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
var {
    font-style: normal;
}

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

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

table {
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
    padding: 0;
}

strong {
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
    letter-spacing: inherit;
}

button {
    cursor: pointer;
}

input,
select,
textarea,
button {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

:focus {
    outline: none;
}

* {
    box-sizing: border-box;
}

#ifrm {
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    border: 0;
}

/* =========================================================
   Common Utility
========================================================= */

.blind,
.gnb-open-btn,
.gnb-close-btn,
.mobile-gnb {
    display: none;
}

.clearfix::after,
.gnb::after,
.sub-content::after {
    clear: both;
    display: block;
    height: 0;
    content: "";
    visibility: hidden;
}

.slick-slide {
    display: inline-block;
}

/* =========================================================
   Common Responsive Utility
========================================================= */

@media screen and (min-width: 1300px) {
    #memofile {
        max-width: 1250px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    #memofile {
        width: 99%;
    }
}

@media screen and (min-width: 0) and (max-width: 767px) {
    #memofile {
        width: 99%;
    }
}