@charset "utf-8";
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #121212;
}
ol, ul, li{
    list-style: none;
}
a{
    text-decoration: none;
}
img, input, button{
    vertical-align: top;
}
input, button{
    font-family: "Pretendard Variable", Pretendard, sans-serif;
}
button{
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

:root{
    --primary-color: #163be0;
    --color0: #d55a55;
    --color1: #203864;
    --color2: #002060;
    --color3: #bf1c37;
    --color4: #3e224e;
    --bg1: #2a2d5b;
    --bg2: #191d17;
}

.hide{
    position: fixed;
    top: -99999px;
    left: -999999px;
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.btn-primary a{
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
}

.prev-arr,
.next-arr {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.prev-arr::before,
.next-arr::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
}
.prev-arr::before {
    transform: translate(8px, 9px) rotate(-135deg);
}
.next-arr::before {
    transform: translate(5px, 9px) rotate(45deg);
}

.forward-arr,
.backward-arr {
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.forward-arr::before,
.forward-arr::after,
.backward-arr::before,
.backward-arr::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
}
.forward-arr::before,
.forward-arr::after {
    transform: translate(6px, 2px) rotate(-135deg);
}
.backward-arr::before,
.backward-arr::after {
    transform: translate(3px, 2px) rotate(45deg);
}