* {
    font-family: "Noto Sans KR", serif;
}

/* 스크롤 위로가기 버튼 */
.topBtn {
    position: fixed;
    bottom: 10px;
    right: 15px;
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 50%;
    padding: 7px;
    background: #6b9abf;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    z-index: 11;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

    .topBtn p {
        margin: 0;
        font-size: 12px;
        font-weight: 500;
    }


/* 상세페이지 중단 네비게이션 바*/
.mid-navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

    .mid-navbar li {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
/*        padding: 25px;*/
        background: none;
        height: 100%;
        list-style: none;
    }

    .mid-navbar a {
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        transition: all 0.3s ease;

        width:100%;
        height:100%;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .mid-navbar li.active {
        background: #fff;
    }
    /* 현재 선택된 메뉴 */
    .mid-navbar a.active {
        font-weight: bold;
        color: #000;
    }

/* 상세페이지 배경 커버 */
.Bnr_cover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

/* 상세페이지 title / subtitle */
.content_title {
    margin: 50px 0;
    text-align: center;
    color: #000;
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 50px;
    border-bottom: 1px solid #ddd;
}

.content_subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin-top: 40px;
}

@media(max-width: 991px) {
    .mid-navbar {
        height: 50px !important;
        margin: 0;
        padding: 0;
    }

        .mid-navbar li {
            padding: 0 20px !important;
        }

        .mid-navbar a {
            font-size: 13px !important;
        }
    .content_title{
        font-size:30px !important;
    }
}

@media(max-width: 767px) {
    .mid-navbar {
        height: 50px !important;
        margin: 0;
        padding: 0;
    }

        .mid-navbar li {
            padding: 0 15px !important;
            
        }

        .mid-navbar a {
            font-size: 13px !important;
        }
    .content_title {
        font-size: 25px !important;
    }
    .topBtn{
        width:55px !important;
        height:55px !important;
    }
}

@media(max-width: 575px) {
    .content_title {
        font-size: 20px !important;
        padding-bottom: 20px !important;
        margin: 20px 0 !important;
    }

    .content_subtitle {
        font-size: 13px !important;
    }
}

@media(max-width:480px){
    .mid-navbar {
        position: relative !important;
        top: 53px !important;
        width: 100% !important;
        height: 35px !important;
        background: rgba(0, 0, 0, 1) !important;
        margin: 0;
        padding: 0;
        justify-content:center !important;
    }


        .mid-navbar li {
            padding: 0 5px !important;
        }

        .mid-navbar a {
            font-size: clamp(10px, 2vw, 20px) !important;
        }
        .content_title{
            margin:50px 0 !important;
        }
}
