@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-display: swap;
    src: local('Pretendard Bold'), url(fonts/pretendard/woff2/Pretendard-Bold.woff2) format('woff2'), url(fonts/pretendard/woff/Pretendard-Bold.woff) format('woff');
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-display: swap;
    src: local('Pretendard Regular'), url(fonts/pretendard/woff2/Pretendard-Regular.woff2) format('woff2'), url(fonts/pretendard/woff/Pretendard-Regular.woff) format('woff');
}

* {
    font-family: 'Pretendard';
}

body {
    background-color: #E9F4FD;
    position: relative;
    min-height: 100vh;
    min-width: 1920px;
}

.bg_img {
    position: absolute;
    left: 0;
    width: 100%;

}

.bg_img.top {
    top: 0;
}

.bg_img.bottom {
    bottom: 0;
}

/* content */
.content {
    position: relative;
    width: 1100px;
    margin: 0 auto;
    padding: 118px 0 120px;
    box-sizing: border-box;
    min-height: calc(100vh - 160px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main_title {
    background-color: #ffff;
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px #4690FF4D;
    padding: 26px 0 32px;
    text-align: center;
    margin-bottom: 75px;
}

.links {
    display: flex;
    align-items: start;
    gap: 45px;
    justify-content: space-between;
}

.links li {
    flex: 1;
    padding-right: 15px;
    transition: 0.2s;
    padding-bottom: 15px;
}

.links li>a {
    background-color: #fff;
    transition: 0.2s;
    border-radius: 20px;
    padding: 20px 25px 30px;
    display: block;
    text-align: center;
    text-decoration: none;
    position: relative;
}

.links li a::after {
    content: "";
    background: linear-gradient(312.93deg, rgba(167, 181, 255, 0.4) -53.6%, rgba(70, 144, 255, 0.4) 55.85%);
    border-radius: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 18px;
    border-radius: 20px;
    left: 15px;
}

.links .title {
    padding: 15px 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 30px;
}

.links .title p:first-child {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 14px;
    color: #09244B;
}

.links .title p:last-child {
    font-size: 20x;
    color: #6D6D6D;
}

.links li:hover a::after {
    display: none;
}

.links li:hover {
    padding-right: 0;
    padding-bottom: 0;
}

.links li:hover a {
    padding-bottom: 45px;
    background-color: #4690FF;
}

.links li:hover a p:first-child,
.links li:hover a p:last-child {
    color: #fff;
}

/* ft */
#ft {
    background-color: #fff;
    padding: 40px 0;
    position: relative;
}

.ft_content {
    width: 1420px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.ft_content p {
    color: #6D6D6D;
    font-size: 16px;
    margin-bottom: 11px;
}

.ft_content p:last-child {
    margin-bottom: 0;
}

.ft_content p:has(span) {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ft_content p:has(span) i {
    background-color: #d9d9d9;
    display: block;
    width: 1px;
    height: 14px;
    position: relative;
    top: 1px;
}
