/* 공통 */
header, article {
    overflow-x: hidden;
}
header {
    margin-bottom: 20px;
}
.marginb-50 {
    display: inline-block;
    margin-bottom: 50px;
}
.section-wrap h2 {
    font-weight: bolder;
}
.section-wrap p {
    font-weight: normal;
}
.section-wrap a {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 48px;
    background-color: #fff;
    font-size: 1.125rem;
    color: #377DBD;
    transition: .15s;
    border: 1px solid #377DBD;
}
.section-wrap a:hover{
    background-color: #377DBD;
    color: #fff;
}
.section-wrap a span {
    display: inline-block;
    transition: transform 0.15s ease-in-out;
}
.section-wrap a:hover span {
    animation: moveRight 0.35s infinite alternate;
}
/* 헤더 */
nav {
    position: fixed;
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    align-content: center;
    align-items: center;
    height: 80px;
    box-shadow: 0 1px 10px #d8d8d8;
    z-index: 9999;
    width: 100vw;
    background-color: #fff;
}
nav div img {
    padding: 8px;
    height: 60px;
}
nav ul li {
    float: left;
    transition: .2s;
}
nav ul li a {
    font-size: 1.325rem;
    font-weight: bolder;
    padding: .75rem;
    color: rgb(15, 76, 133);
}
/* 메인 */
section {
    position: relative;
    min-height: 500px;
    align-content: center;
}
.section-wrap {
    padding: 0;
}
/* 푸터 */
footer {
    background-color: #1365b1cc;
    padding: 16px 0;
    text-align: center;
    color: #fff;
}