/* menu.css */


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    word-break: keep-all;
    list-style: none;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
ol,
li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

address {
    font-style: normal !important;
}

/* 스크롤바 */
::-webkit-scrollbar {
    width: 5px;

}

::-webkit-scrollbar-track {
    background: transparent;

}

::-webkit-scrollbar-thumb {
    background: #b8d4f0;
    border-radius: 10px;

}

::-webkit-scrollbar-thumb:hover {
    background: #90b8e8;
}

.header {
    border-bottom: 1px solid #e8eaf0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    letter-spacing: -0.02rem;
    transition: border-color 0.3s, background 0.3s;
}

.gnb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1700px;
    /* padding: 0 40px; */
    height: 100px;
}

.gnb-logo img {
    /* height: 50px; */
    display: block;
}

.gnb-right {
    display: flex;
    gap: 70px;
    align-items: center;
}

/* ── 1depth nav ── */
.gnb-nav {
    display: flex;
    height: 100px;
    list-style: none;
}

.gnb-item {
    display: flex;
    align-items: center;
    padding: 0 22px;
    position: static;
    height: 100%;
    cursor: pointer;
}

.gnb-item>a {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.gnb-item>a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2269C1;
    transition: width 0.28s cubic-bezier(.4, 0, .2, 1);
    content: '';
}

.gnb-item.is-hover>a,
.gnb-item:hover>a {
    color: #2269C1;
}

.gnb-item.is-hover>a::after,
.gnb-item:hover>a::after {
    width: 100%;
}

/* ── 2depth 드롭다운 패널 ── */
.gnb-panel {
    position: absolute;
    top: 101px;
    left: 0;
    z-index: 99;
    width: 100%;
    visibility: hidden;
    background: rgb(255 255 255 / 92%);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
    pointer-events: none;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(-10px);
}

.gnb-item.is-hover .gnb-panel {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.gnb-panel-inner {
    display: flex;
    gap: 18px;
    flex-direction: column;
    margin: 0 auto;
    padding: 32px 40px 44px;
    max-width: 1700px;
}

.gnb-panel-title {
    font-size: 35px;
    font-weight: 700;
    color: #191919;
}

/* 2depth 아이템 행 */
.gnb-2list {
    display: flex;
    gap: 15px;
    list-style: none;
}

.gnb-2item {
    flex: 1;
    /* min-width: 100px; */
}

/* 2depth 링크 박스 (3depth 없음) */
.gnb-2item>a {
    display: flex;
    display: flex;
    align-items: center;
    align-items: center;
    flex: 1;
    padding: 25px 20px 25px 30px;
    background: #f5f7fb;
    font-size: 19px;
    font-weight: 700;
    color: #2c2c3e;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s;
    border-radius: 8px;
    box-sizing: border-box;
}

.gnb-2item>a:hover {
    background: #EAF1FB;
    color: #2269C1;
}

/* 2depth 링크 박스 (3depth 있음) */

.gnb-2item.has3>a:hover {
    background: #EAF1FB;
}

/* 3depth 목록 */
.gnb-3list {
    padding: 12px 0 0 4px;
    list-style: none;
}

.gnb-3list li a {
    display: block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    /* border: 1px solid red; */
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    border-radius: 5px;
}

.gnb-3list li a:hover {
    /* background: #eef3ff; */
    padding-left: 29px;
    color: #2269C1;
}

i.snb_link{
    font-weight: 100;
    color: #2269C1;
    padding-left: 5px;
}

/* ══════════════════════════════════
   햄버거 → X
══════════════════════════════════ */
.gnb-toggle {
    flex-shrink: 0;
    border: none;
    position: relative;
    width: 42px;
    height: 42px;
    background: none;
    transition: background 0.2s;
    cursor: pointer;
    border-radius: 8px;
}

.gnb-toggle:hover {
    background: #eef3ff;
}

header .bar {
    position: absolute;
    left: 9px;
    width: 24px;
    height: 2px;
    background: #2269C1;
    transition: top 0.32s cubic-bezier(.4, 0, .2, 1), transform 0.32s cubic-bezier(.4, 0, .2, 1), opacity 0.2s ease, width 0.2s ease;
    border-radius: 2px;
}

header .bar:nth-child(1) {
    top: 13px;
}

header .bar:nth-child(2) {
    top: 20px;
}

header .bar:nth-child(3) {
    top: 27px;
}

.gnb-toggle.is-open .bar:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
}

.gnb-toggle.is-open .bar:nth-child(2) {
    width: 0;
    opacity: 0;
}

.gnb-toggle.is-open .bar:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
}

/* ══════════════════════════════════
   풀메뉴 (데스크톱 사이트맵)
══════════════════════════════════ */
.full-menu {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 990;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    transition: opacity 0.38s ease, visibility 0.38s;
    pointer-events: none;
    /* 닫힘 상태 */
    opacity: 0;
}

.full-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

/* 배경: 진한 네이비 컬러 풀 커버 + 흰 블러 오버레이 */
.fm-bg {
    position: absolute;
    transition: transform 0.48s cubic-bezier(.77, 0, .18, 1);
    inset: 0;
    /* background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6c 40%, #2269C1 100%); */
    transform: scaleY(0);
    transform-origin: top center;
}

.full-menu.is-open .fm-bg {
    transform: scaleY(1);
}

/* 흰 블러 레이어 */
.fm-blur {
    position: absolute;
    background: rgb(255 255 255 / 92%);
    transition: opacity 0.35s ease 0.2s;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
}

.full-menu.is-open .fm-blur {
    opacity: 1;
}

/* 콘텐츠 영역 */
.fm-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 100px 100px;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.fm-inner {
    /* padding: 0 40px; */
    display: flex;
    /* padding-top: 100px; */
    /* padding-bottom: 60px; */
    display: flex;
    gap: 0;
    align-items: flex-start;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1700px;
    height: 100%;
}

/* 브랜드 */
.fm-brand {
    flex: 0 0 240px;
    padding-top: 4px;
    padding-right: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    position: absolute;
    bottom: 100px;
    left: 150px;
    transition: opacity 0.45s ease 0.1s, transform 0.45s ease 0.1s;
    opacity: 0;
    transform: translateY(24px);
}

.fm-inner>div {
    flex: 1;
    /* border: 1px solid; */
    border-right: 1px solid rgb(101 101 101 / 12%);
    height: 100%;
    /* padding: 50px; */
}

.full-menu.is-open .fm-brand {
    opacity: 1;
    transform: translateY(0);
}

.fm-brand-en {
    margin-bottom: 12px;
    font-size: 14px;
    color: rgb(0 0 0 / 50%);
    letter-spacing: 0.03em;
}

.fm-brand-en b {
    font-weight: 800;
    color: #7eb8ff;
}

.fm-brand-ko {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.45;
    color: #000000;
}

/* 메뉴 컬럼 */
.fm-col {
    flex: 1;
    padding: 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: opacity 0.42s ease, transform 0.42s ease;
    opacity: 0;
    transform: translateY(28px);
}

.fm-col:last-child {
    border-right: none;
}

.full-menu>.fm-col {
    border-right: 1px solid #000000;
}

.full-menu.is-open .fm-col:nth-child(2) {
    position: relative;
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateY(0);
}

.full-menu.is-open .fm-col:nth-child(2)::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 80%;
    background: rgb(101 101 101 / 12%);
    content: "";
}

.full-menu.is-open .fm-col:nth-child(3) {
    transition-delay: 0.22s;
    opacity: 1;
    transform: translateY(0);
}

.full-menu.is-open .fm-col:nth-child(4) {
    transition-delay: 0.29s;
    opacity: 1;
    transform: translateY(0);
}

.full-menu.is-open .fm-col:nth-child(5) {
    transition-delay: 0.36s;
    opacity: 1;
    transform: translateY(0);
}

.fm-col-title {
    display: block;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 25px;
    font-weight: 700;
    color: #174B8C;
}

/* 풀메뉴 2depth 링크 */
.fm-list {
    list-style: none;
}

.fm-list-item {
    margin-bottom: 1px;
}

.fm-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    border-bottom: 1px solid rgb(101 101 101 / 12%);
    /* border-radius: 7px; */
    font-size: 19px;
    font-weight: 600;
    color: #191919;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    cursor: pointer;
    user-select: none;
}

.fm-link i {
    display: inline-block;
    flex-shrink: 0;
    margin-left: 6px;
    font-weight: 100;
    line-height: 1;
    color: #b5b5b5;
    transition: transform 0.25s, color 0.2s;
}

.fm-link:hover i {
    color: #2269c1;
}

.fm-link:hover {
    color: #2269c1;
}

.fm-list-item.is-open .fm-link i {
    color: #2269c1;
    transform: rotate(180deg);
}

.fm-list-item.is-open .fm-link {
    color: #2269c1;
}

/* 풀메뉴 3depth 아코디언 */
.fm-sub {
    padding-left: 12px;
    overflow: hidden;
    /* margin-top: 2px; */
    /* border-left: 2px solid rgb(189 189 189 / 30%); */
    max-height: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    list-style: none;
    opacity: 0;
}

.fm-list-item.is-open .fm-sub {
    padding: 10px 10px;
    max-height: 400px;
    background: #f6faff;
    opacity: 1;
}

.fm-sub-link {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #616161;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-radius: 5px;
}

.fm-sub-link:hover {
    color: #191919;
}

/* ══════════════════════════════════
   오버레이
══════════════════════════════════ */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    background: rgba(10, 20, 50, 0.45);
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
}

.overlay.is-open {
    visibility: visible;
    opacity: 1;
}

/* ══════════════════════════════════
   모바일
══════════════════════════════════ */
.drawer {
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: -340px;
    z-index: 1060;
    width: 320px;
    height: 100vh;
    background: #fff;
    transition: right 0.45s ease, opacity 0.35s ease;
    opacity: 0;
}

.drawer.is-open {
    right: 0;
    opacity: 1;
}

.overlay {
    transition: opacity 0.45s ease, visibility 0.45s;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 111111111;
    background: #fff;
}

.drawer-head img {
    /* height:50px; */
    width: 160px;
}

.drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    width: 32px;
    height: 32px;
    background: none;
    font-size: 18px;
    line-height: 1;
    color: #666;
    transition: background 0.5s, border-color 0.5s;
    cursor: pointer;
    border-radius: 50%;
}

.drawer-close:hover {
    border-color: #b3c8ff;
    background: #f0f4ff;
}

.drawer-nav {
    padding: 0 0 20px;
}

/* 1depth */
.d-1item {
    border-bottom: 1px solid #f2f2f2;
}

.d-1head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    transition: color 0.5s;
    cursor: pointer;
    user-select: none;
}

.d-1head:hover {
    color: #2269C1;
}

.d-chev {
    display: inline-block;
    font-size: 11px;
    color: #bbb;
    transition: transform 0.28s cubic-bezier(.4, 0, .2, 1);
}

.d-1item.is-open>.d-1head {
    color: #2269C1;
}

.d-1item.is-open>.d-1head .d-chev {
    color: #2269C1;
    transform: rotate(180deg);
}

/* 1depth 콘텐츠 슬라이드 */
.d-1body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, opacity 0.28s ease;
    opacity: 0;
}

.d-1item.is-open .d-1body {
    max-height: 800px;
    opacity: 1;
}

.d-2list {
    padding: 6px 20px 10px 28px;
    list-style: none;
}

.d-2item {
    margin-bottom: 2px;
}

/* 2depth 순수 링크 */
.d-2link {
    display: block;
    padding: 9px 10px;
    font-size: 15px;
    color: #444;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border-radius: 6px;
}

.d-2link:hover {
    background: #eef3ff;
    color: #2269C1;
}

/* 2depth 토글 (3depth 있음) */
.d-2head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    font-size: 15px;
    font-weight: 600;
    color: #444;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    border-radius: 6px;
    user-select: none;
}

.d-2head:hover {
    background: #eef3ff;
    color: #2269C1;
}

.d-2item.is-open>.d-2head {
    color: #2269C1;
}

.d-2item.is-open>.d-2head .d-chev {
    color: #2269C1;
    transform: rotate(180deg);
}

.d-3body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, opacity 0.22s ease;
    opacity: 0;
}

.d-2item.is-open .d-3body {
    max-height: 400px;
    opacity: 1;
}

.d-3list {
    margin: 4px 10px 4px 14px;
    padding: 4px 0 4px 14px;
    border-left: 2px solid #dde4f5;
    list-style: none;
}

.d-3list li {
    margin-bottom: 1px;
}

.d-3list li a {
    display: block;
    padding: 7px 8px;
    font-size: 14px;
    color: #777;
    text-decoration: none;
    transition: background 0.14s, color 0.14s;
    border-radius: 4px;
}

.d-3list li a:hover {
    background: #eef3ff;
    color: #2269C1;
}

html.scroll-lock,
body.scroll-lock {
    overflow: hidden !important;
    touch-action: none !important;
    overscroll-behavior: none !important;
    /* 바운스 스크롤 완벽 차단 */
}

#fullMenu,
#drawer {
    overflow-y: auto;
    max-height: 100dvh;
    overscroll-behavior: contain;
}

/* ══════════════════════════════════
   반응형
══════════════════════════════════ */
main {
    padding-top: 100px;
}

@media (max-width:1440px) {

    .fm-brand {
        left: 100px;
        width: 36%;
    }

    .fm-col-title {
        font-size: 21px;
    }

    .fm-link {
        font-size: 17px;
    }
}

@media (max-width:1600px) {
    .gnb-nav {
        display: none;
    }

    .full-menu {
        display: none !important;
    }

    .overlay {
        display: block;
    }
}

@media (min-width:1600px) {
    .drawer {
        display: none;
    }

    .overlay {
        display: none;
    }
}

@media (max-width:480px) {
    .drawer {
        right: -100%;
        width: 100%;
    }
}

#rise_footer.rise-wrap {
    border-top: 1px solid #e0e0e0;
    width: 100%;
    background: #fff;
}

.rise-wrap .rise-inner {
    margin: 0 auto;
    max-width: 1700px;
}

/* 파트너스 */
.rise-wrap .rise-partners-area {
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.rise-wrap .rise-flex-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.rise-wrap .rise-partner-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #d3d6de;
    border-radius: 40px;
    /* flex-shrink: 0; */
    cursor: pointer;
}

.rise-wrap .rise-partner-controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: color 0.2s ease;
    cursor: pointer;
    all: unset;
}

.rise-wrap .rise-partner-controls button:hover {
    color: #1E3A5F;
}

.rise-partner-swiper  {
    overflow: hidden;
    width: 100%;
}

.rise-partner-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
}

.rise-wrap .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rise-wrap .rise-partner-swiper img {
    max-height: 35px;
    transition: 0.3s;
    filter: grayscale(1);
    opacity: 0.6;
}

.rise-wrap .rise-partner-swiper img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* footer */
.rise-wrap .rise-main-area {
    padding: 50px 0;
}

.rise-wrap .rise-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}

.rise-row-mid {
    padding-bottom: 20px;
}

.rise-wrap .rise-row .rise-menu a {
    font-weight: 700;
    color: #989a98;
}

.rise-wrap .rise-row .rise-menu {
    display: flex;
    gap: 10px;
}

.rise-row-top {
    margin-bottom: 20px;
}

.rise-wrap .rise-addr,
.rise-wrap .rise-contact {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #A8A8A8;
}

.rise-wrap .rise-contact .label {
    color: #676767;
}

.rise-wrap .rise-menu li a.rise-text-em {
    font-weight: 700;
    color: #333;
}

.rise-copyright {
    font-size: 14px;
    color: #B3BBCF;
    letter-spacing: -0.02rem;
}

.rise-sns-icons {
    display: flex;
    gap: 10px;
}

.rise-sns-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.rise-sns-icons i {
    font-size: 22px;
    color: #053863;
}

/*패밀리사이트*/
.rise-family-site {
    position: relative;
    width: 260px;
}

.rise-family-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 1px solid #1E3A5F;
    outline: none;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 55px;
    background-color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    color: #1E3A5F;
    transition: border-radius 0.7s ease;
    cursor: pointer;
    border-radius: 8px;
}

.rise-family-toggle::after {
    display: block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 13.172l4.95-4.95 1.414 1.414L12 16 5.636 9.636 7.05 8.222z' fill='%23748AAC'/%3E%3C/svg%3E") no-repeat center / contain;
    transition: transform 0.7s ease;
    content: '';
}

.rise-family-site.active .rise-family-toggle {
    border-top: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px;
}

.rise-family-site.active .rise-family-toggle::after {
    transform: rotate(-180deg);
}

.rise-family-list {
    margin: 0;
    padding: 0;
    border: 1px solid #1E3A5F;
    border-bottom: none;
    overflow-y: auto;
    position: absolute;
    bottom: 54px;
    left: 0;
    z-index: 1;
    width: 100%;
    max-height: 0;
    visibility: hidden;
    background-color: #f5faff;
    transition: max-height 0.6s ease, opacity 0.6s ease, visibility 0s 0.6s;
    list-style: none;
    border-radius: 8px 8px 0 0;
    opacity: 0;
}

.rise-family-site.active .rise-family-list {
    max-height: 300px;
    visibility: visible;
    transition: max-height 0.7s ease, opacity 0.7s ease, visibility 0s 0s;
    opacity: 1;
}

.rise-family-list li {
    border-bottom: 1px solid #e2e8f0;
}

.rise-family-list li:last-child {
    border-bottom: 1px solid #fff opacity 0.7s ease;
}

.rise-family-list a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    transition: background-color 0.2s;
}

.rise-family-list a:hover {
    background-color: #e2e8f0;
    font-weight: 600;
    color: #1E3A5F;
}

.rise-family-list::-webkit-scrollbar {
    width: 4px;
}

.rise-family-list::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 2px;
}

/* end */


/* 퀵메뉴 */

.quick-menu {
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    position: fixed;
    top: 37%;
    right: 0;
    z-index: 5;
    /* width: 72px; */
    background: #fff;
    transform: translateY(-50%);
    /* border: 1px solid #e0e6f0; */
    border-radius: 8px 0 0 8px;
    /* box-shadow: 0 2px 12px rgba(0,0,0,0.10); */
}

.qm-header {
    padding: 15px 0 15px;
    width: 100%;
    background: #1a3a6b;
    background: linear-gradient(135deg, #2b5cae, #4781d4);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    /* border-radius: 10px 0 0 0; */
}

.qm-header span {
    display: block;
    margin-top: 1px;
    font-size: 10px;
    font-weight: 400;
}

.qm-item {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    padding: 18px 15px;
    width: 100%;
    background: #fff;
    color: #222;
    text-decoration: none;
    transition: background 0.18s;
    box-sizing: border-box;
}

.qm-icon i {
    font-size: 22px;
    color: #3b60b8;
}

.qm-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #333;
    text-align: center;
    word-break: keep-all;
}

.qm-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 0;
    border: none;
    border-top: 1px solid #e8ecf4;
    width: 100%;
    background: #fff;
    background: linear-gradient(135deg, #2b5cae, #4781d4);
    color: #fff;
    transition: background 0.18s;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.qm-top-btn i {
    font-size: 20px;
    color: #ffffff;
}

@media (max-width:1900px) {

    .gnb {
        margin: 0 auto;
        width: 90%;
    }

    .rise-wrap .rise-inner {
        width: 90%;
    }

    .rise-wrap .rise-main-area {
        padding: 40px 0;
    }
}

@media (max-width:1600px) {
    .quick-menu {
        display: none;
    }

    .gnb-item>a {
        font-size: 18px;
    }
}

@media (max-width:1024px) {
    .quick-menu {
        display: none;
        right: 10px;
    }


}

@media (max-width:1260px) {
    .gnb {
        height: 70px;
    }
    
    .gnb-logo img {
        width: 160px;
    }

    .drawer-head img {
        width: 160px;
    }

    main {
        padding-top: 60px;
    }
}

@media (max-width:768px) {
    .quick-menu {
        flex-direction: row;
        border-top: 1px solid #e0e6f0;
        border-bottom: none;
        border-right: none;
        border-left: none;
        top: auto;
        right: 0;
        bottom: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
    }

    .qm-header {
        display: none;
    }

    .qm-item {
        gap: 8px;
        flex: 1;
        flex-direction: row;
        padding: 12px 10px;
        border-top: none;
        border-left: 1px solid #e8ecf4;
    }

    .qm-item:first-of-type {
        border-left: none;
    }

    .qm-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
    }

    .qm-icon i {
        font-size: 18px;
    }

    .qm-label {
        font-size: 11px;
        text-align: left;
    }

    .qm-top-btn {
        flex-shrink: 0;
        border-top: none;
        border-left: 1px solid #e8ecf4;
        width: 50px;
    }


}

#drawerClose i {
    font-size: 20px;
    font-weight: 100;
    cursor: pointer;
}

@media (max-width:800px) {

    .rise-wrap .rise-row {
        gap: 15px;
        align-items: flex-start;
        flex-direction: column;
    }

    .rise-family-site {
        width: 100%;
    }

    .rise-wrap .rise-contact {
        margin-bottom: 15px;
    }

    .rise-wrap .rise-partner-controls {
        gap: 5px;
        padding: 7px 12px;
    }
}

@media (max-width:440px) {

    .rise-wrap .rise-flex-row{
        gap: 10px;
    }

    .rise-wrap .rise-contact {
        flex-direction: column;
    }

    .rise-logo img {
    height: 28px;
    }

    .rise-wrap .rise-partners-area{
        padding: 10px 0;
    }

    .rise-wrap .rise-partner-swiper img{
        max-height: 28px;
    }

    .rise-wrap .rise-addr, .rise-wrap .rise-contact {
    margin-bottom: 10px;
    }

}