@font-face {
    font-family: 'SUIT-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_suit@1.0/SUIT-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'LotteMartDream';
    font-style: normal;
    font-weight: 400;
    src: url('//fastly.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamMedium.woff2') format('woff2'), url('//fastly.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamMedium.woff') format('woff');
  }
  @font-face {
    font-family: 'LotteMartDream';
    font-style: normal;
    font-weight: 700;
    src: url('//fastly.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamBold.woff2') format('woff2'), url('//fastly.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamBold.woff') format('woff');
  }
  @font-face {
    font-family: 'LotteMartDream';
    font-style: normal;
    font-weight: 300;
    src: url('//fastly.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamLight.woff2') format('woff2'), url('//fastly.jsdelivr.net/korean-webfonts/1/corps/lottemart/LotteMartDream/LotteMartDreamLight.woff') format('woff');
  }
  .lottemartdream * {
   font-family: 'LotteMartDream', sans-serif;
  }
#wrap * {
    font-family: 'SUIT-Regular';
}

header {
    padding: 15px;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid #dcdcdc;
    background-color: #fff;
}

.header_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    width: 60%;
    font-size: 16px;
}

header img {
    width: 20%;
    height: 20%;
}

header ul {
    display: flex;
    gap: 1rem;
    width: 40%;
    border: 1px solid #88a5c2;
    padding: .5rem;
    border-radius: 3rem;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

header ul li {
    padding: .5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
}

header ul li a {
    text-decoration: none;
    color: #3f6488;
    font-weight: 600;
    font-family: 'LotteMartDream';
    font-size: 1.6rem;
    padding: 1.5rem;
}

.selected a {
    color: #fff;
    font-weight: 500;
    background-color: #367fff;
    padding: 1.5rem;
    border-radius: 3rem;
}

.header_mo {
    display: none;
}
footer {
    padding: 20px;
    background-color: #1f62b0;
}
footer img{
    width:25%;
    padding-bottom: 1rem;
}
footer p{
    line-height: 1.3;
    font-size: 1.4rem;
    color: #fff;
    font-family: 'SUIT-Regular';
    display: block;
    border-top: 1px solid #82a5cf;
    padding-top: 1rem;
}
footer  span{
    line-height: 1.5;
    font-size: 1.4rem;
    color: #fff;
    font-family: 'SUIT-Regular';
}

@media (min-width: 768px) and (max-width: 1200px) {
    header a {
        font-size: 20px;
    }
    .header_wrap {
        width: 100%;
        max-width: unset;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }
    header a {
        width: 100%;
        text-align: center;
    }
    header img {
        width: 20%;
        height: 20%;
    }
    header ul {
        display: flex;
        gap: 1rem;
        width: 100%;
        justify-content: space-around
    }
}
@media screen and (max-width: 767px) {
    header {
        border-bottom: 0;
    }
    .header_wrap {
        width: 100%;
        max-width: unset;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        gap: 15PX;
    }
    header a {
        width: 100%;
        display: inline-block;
        font-size: 14px;
        text-align: center;
    }
    header img {
        width: 30%;
        height: 20%;
    }
    header ul {
        display: flex;
        gap: .5rem;
        width: 100%;
        justify-content: space-around
    }
    header ul li {
        padding: 0;
        border-radius: 0;
        cursor: pointer;
        width: 25%;
        display: flex;
        align-items: center;
    }
}