@charset "utf-8";

/* color */

:root {
    --main-text: #282A2D;
    --main-color: #276EF1;
    --blue-bg: #EDF5FF;
    --sub-text: #909090;
    --gray-bg: #F7F8FB;
    --navy-color: #2E4C84;
    --sub-blue: #4E82E2;
    --hover-color: #194597;
    --gra01-blue: linear-gradient(180deg, #FFFFFF 0%, #D2E2FF 100%);
}

/* 공통 */

.mobile {
    display: none;
}

@media (max-width:768px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    .br_m {
        display: block;
    }
}

.blue {
    color: var(--main-color);
}

.black {
    color: var(--main-text);
}

.navy {
    color: var(--navy-color);
}

.red {
    color: #E03D3D;
}

.sub_blue {
    color: var(--sub-blue);
}

.yellow {
    color: #FFC700;
}

.green {
    color: #22CDC3;
}

.orange {
    color: #FFAA05;
}

.br {
    display: block;
}

/* margin */

.mt6 {
    margin-top: 0.6rem !important;
}

.mt10 {
    margin-top: 1rem !important;
}

.mb6 {
    margin-bottom: 0.6rem !important;
}

.mb10 {
    margin-bottom: 1rem !important;
}

.mb12 {
    margin-bottom: 1.2rem !important;
}

.mb16 {
    margin-bottom: 1.6rem !important;
}

.mb20 {
    margin-bottom: 2rem !important;
}

.mb26 {
    margin-bottom: 2.6rem !important;
}

.mb30 {
    margin-bottom: 3rem !important;
}

.mb40 {
    margin-bottom: 4rem !important;
}

.mb50 {
    margin-bottom: 5rem !important;
}

.mb60 {
    margin-bottom: 6rem !important;
}

.mb70 {
    margin-bottom: 7rem !important;
}

.mb80 {
    margin-bottom: 8rem !important;
}

.mb100 {
    margin-bottom: 10rem !important;
}

/* header_crew */

.header_crew {
    position: sticky;
    top: 0;
    z-index: 5;
    width: 100%;
    height: 9rem;
    box-shadow: 0px 5px 20px rgba(40, 42, 45, 0.05);
    background-color: #fff;
}

.inner_header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    width: 100%;
    height: 9rem;
    margin: 0 auto;
    padding: 2.1rem 0;
}

.inner_header .logo img {
    max-width: 18.689rem;
    width: 100%;
    height: 4.8rem;
    cursor: pointer;
}

.inner_header .nav_crew ul {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.inner_header .nav_crew li {
    font-size: 1.8rem;
    cursor: pointer;
}

.inner_header .nav_crew li:hover,
.inner_header .nav_crew li.on {
    color: var(--main-color);
    font-weight: 800;
}

.inner_header .nav_crew li.payback_test {
    position: relative;
}

.inner_header .nav_crew li.payback_test::before {
    position: absolute;
    top: -5px;
    left: -5px;
    display: block;
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--main-color);
    border-radius: 50%;
}

@media (max-width:1199px) {
    .inner_header {
        padding: 0 2rem;
    }

    .inner_header .nav_crew ul {
        gap: 3rem;
    }
    
    .inner_header .nav_crew li {
        font-size: 1.6rem;
    }
}

@media (max-width:768px) {
    .header_crew {
        height: 6rem;
    }

    .inner_header {
        display: block;
        padding: 1.1rem 1.6rem;
        height: 6rem;
    }

    .inner_header .logo img {
        max-width: 14.82rem;
        width: 100%;
        height: 3.8rem;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .m_nav {
        cursor: pointer;
    }

    .m_nav img {
        position: absolute;
        top: 50%;
        right: 1.6rem;
        transform: translateY(-50%);
    }
}

/* footer */

.footer_crew {
    width: 100%;
    height: 15.5rem;
    background-color: var(--main-text);
    padding-top: 6.9rem;
}

.footer_crew p {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    color: #fff;
}

@media (max-width:768px) {
    .footer_crew {
        height: 11.4rem;
        padding-top: 5rem;
    }

    .footer_crew p {
        font-size: 1.4rem;
    }
}

/* floating */

.floating_contents {
    position: fixed;
    bottom: 9.25%;
    right: 5.2%;
    z-index: 1;
}

.floating_contents .cs_top_btn {
    width: 7.1rem;
    height: 17.5rem;
    box-shadow: 0px 5px 20px rgba(40, 42, 45, 0.08);
    border-radius: 10px;
    background-color: #fff;
}

.floating_contents .cs_btn {
    width: 7.1rem;
    height: 9.8rem;
    border-radius: 10px 10px 0px 0px;
    background-color: var(--main-color);
    cursor: pointer;
    padding: 1.8rem 0;
}

.floating_contents .cs_btn img {
    display: block;
    margin: 0 auto;
}

.floating_contents .cs_btn .cs_text {
    font-size: 1.4rem;
    text-align: center;
    color: #fff;
}

.floating_contents .top_btn {
    cursor: pointer;
}

.floating_contents .top_btn img {
    display: block;
    margin: 0 auto;
}

.floating_contents .top_btn .top_text {
    font-size: 1.6rem;
    text-align: center;
}

/* box - max-width, padding 조절 필요 */

.box {
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(40, 42, 45, 0.05);
    border-radius: 30px;
}

/* button */

.check_blue_btn {
    max-width: 22rem;
    width: 100%;
    height: 5.6rem;
    border-radius: 8px;
    background-color: var(--main-color);
    font-size: 1.8rem;
    color: #fff;
}

.check_blue_btn:hover {
    background-color: var(--hover-color);
}

.exchange_red_btn {
    max-width: 33.6rem;
    width: 100%;
    height: 5rem;
    border-radius: 10px;
    background-color: #E03D3D;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.exchange_blue_btn {
    max-width: 33.6rem;
    width: 100%;
    height: 5rem;
    border-radius: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    background-color: var(--sub-blue);
}

@media (max-width:768px) {
    .check_blue_btn {
        height: 5rem;
        font-size: 1.6rem;
    }

    .exchange_red_btn {
        max-width: 100%;
        height: 4.6rem;
    }

    .exchange_blue_btn {
        max-width: 100%;
        height: 4.6rem;
    }
}

/* mobile_menu */

.m_menu {
    display: none;
    position: fixed;
    top: 6rem;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.m_menu .black_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.m_menu .white_bg {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 24.1rem;
    width: 100%;
    height: 100%;
    background: #F7F8FB;
}

.m_menu .white_bg li {
    width: 100%;
    height: 6rem;
    background: #FFFFFF;
    border: 1px solid #F7F8FB;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 2.1rem 0;
    cursor: pointer;
    color: var(--main-text);
}

.m_menu .white_bg li:hover {
    color: var(--main-color);
}

.close {
    display: none;
}

.m_menu .payback_test {
    position: relative;
}

.m_menu .payback_test::before {
    position: absolute;
    top: -5px;
    left: -5px;
    display: block;
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--main-color);
    border-radius: 50%;
}