@font-face {
    font-family: 'BIZUDPGothic';
    src: url('../fonts/BIZUDPGothic-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'PretendardVariable';
    src: url('../fonts/PretendardVariable.ttf') format('truetype');
}

@font-face {
    font-family: 'SegoeUI';
    src: url('../fonts/SegoeUI.woff2') format('woff2');
    src: url('../fonts/SegoeUI.woff') format('woff');
}

@font-face {
    font-family: 'NotoSansKR-Regular';
    src: url('../fonts/NotoSansKR-Regular.woff2') format('woff2');
    src: url('../fonts/NotoSansKR-Regular.woff') format('woff');
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: unset;
}

/* button, input, optgroup, select, textarea {
	font-family: none;
} */

body {
    font-family: 'SegoeUI' !important;
    background: #070b1a;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}



.cursor-pointer {
    cursor: pointer;
}

.page-section h2 {
    margin-bottom: 100px !important;
}

.btn-light-green {
    background: darkturquoise;
    color: white;
}

.btn-light-green:hover {
    background: #1a365d;
    color: #fff;
}

.form-check-input:checked {
    background-color: #000;
    border-color: #000
}

.form-check-input:focus {
    box-shadow: none;
}

/* Navigation */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(7, 11, 26, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* min-width: 1920px; */
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 12px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.brand-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: grid;
    place-items: center;
}

.nav-menu {
    display: flex;
    gap: 5rem;
}

.nav-link {
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.2s;
    font-size: 18px;
    line-height: 28.8px;
    
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.offcanvas-body .nav-link {
    color: rgba(0, 0, 0, 1);
    border-bottom: 1px solid #ccc;
    width: 100%;
    text-align: left;
}

.offcanvas-body .navbar-collapse {
    border-bottom: 1px solid #ccc;
    width: 100%;
    text-align: left;
}

.navbar-toggler {
    border: 0;
    padding: 0;
}

.dropdown-item.active,
.dropdown-item:hover {
    background-color: #f5f5f5;
}


.dropdown-item.active,
.dropdown-item:active {
    background-color: #ccc;
    color: #333;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
    border: 0;
    background-color: unset;
    box-shadow: unset;
}

.btn-primary {
    background: white;
    color: #070b1a;
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-close:focus {
    box-shadow: none;
}

.offcanvas .dropdown-menu {
    position: relative !important;
    transform: none !important;
    border: 0;
}

@media (min-width: 1025px) {
	.top-nav {
		/* min-width: 1920px; */
	}
}

/* Page sections */
.page-section {
    /*display: none;*/
    position: relative;
    min-height: calc(100vh - 56px);
}

.page-section.active {
    display: block;
}

@media (max-width: 1024px) {

    .page-section h2 {
        margin-bottom: 30px !important
    }

    #home.page-section {
        min-height: calc(100vh - 56px) !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {

    .page-section {
        min-height: unset;
    }

    #use-cases {
        padding-bottom: 50px;
    }
}

@media (max-width: 1024px) {

    #use-cases {
        padding-bottom: 50px;
    }
}

/* Dynamic Background */
.dynamic-backdrop {
    position: absolute;
    inset: 0;
    z-index: -10;
    overflow: hidden;
}

.gradient-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 60% at 50% 0%, rgba(75, 130, 255, 0.25), transparent 60%);
}

.moving-blob-1,
.moving-blob-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    animation: float 20s infinite ease-in-out;
}

.moving-blob-1 {
    top: -96px;
    left: -96px;
    width: 320px;
    height: 320px;
    background: conic-gradient(from 90deg, rgba(80, 160, 255, 0.25), transparent);
}

.moving-blob-2 {
    bottom: -96px;
    right: -96px;
    width: 448px;
    height: 448px;
    background: radial-gradient(circle, rgba(150, 200, 255, 0.18), transparent);
    animation-duration: 25s;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, -20px) rotate(30deg);
    }

    50% {
        transform: translate(-20px, 30px) rotate(-15deg);
    }

    75% {
        transform: translate(30px, 10px) rotate(20deg);
    }
}

/* Canvas backgrounds */
.canvas-container {
    position: absolute;
    inset: 0;
    z-index: -5;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100%;
}

/* Content */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

@media (max-width: 820px) {
    .container {
        padding-top: 10px;
    }
}

.text-center {
    text-align: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #252129;
    border-radius: 9999px;
    font-size: 1rem;
    color: #252129;
    backdrop-filter: blur(4px);
    transition: border 0.1s ease, color 0.1s ease !important;
    box-sizing: border-box;
}

h1 {
    font-size: 100px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 1rem;
    letter-spacing: -0.02em;
}

.main-title {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.mainSlide3 .main-title.animate h1 {
    text-align: right;
}

.mainSlide3 .main-title.animate p {
    max-width: 100%;
    text-align: right;
    width: 100%;
}

.subtitle {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.875rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.swiper-pagination-bullet {
    background: #fff !important;
    width: 30px !important;
    border-radius: 0 !important;
    height: 5px !important;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 4rem;
}

.feature-card {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Application Carousel */

#application {
    color: #fff !important;
    background: #272727;
}

.application-details {
    color: #212529 !important;
    background: #000 !important;
}

.application-details h2 {}

#application .container {
    padding-bottom: 128px;
}

#application .pill {
    color: #fff;
}

.application-details .pill {
    border-color: #fff;
}

.carousel {
    background: rgba(255, 255, 255, 0.03);
    /*border: 1px solid rgba(255, 255, 255, 0.1);*/
    border-radius: 1.5rem;
    overflow: hidden;
    margin-top: 2rem;
    background: #000;
    height: 600px;
}

.carousel-content {
    /* aspect-ratio: 16/7;*/
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90%;
}

.carousel-item {
    display: none;
    animation: slideIn 0.6s ease;
    margin-right: 0;
}

.carousel-item.active {
    display: block;
}

.accordion {
    --bs-accordion-btn-icon-width: 2rem
}



@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem;
    background-color: #000
}

.carousel-dot {
    width: 24px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: white;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    background: 0;
}

.carousel-prev {
    position: absolute;
    left: 10px;
    background: 0;
    color: #fff;
    border: 0;
    display: none;
}

.carousel-next {
    position: absolute;
    right: 10px;
    background: 0;
    color: #fff;
    border: 0;
}

.nav-tabs {
    height: 170px;
}

.nav-tabs .nav-link:hover {
    border: 0;
}

.nav-item {
    width: 200px;
    height: 100%;
}

.dropdown:focus-visible {
    outline: 0 !important;
}

.nav-item .btn {
    transition: unset;
    font-size: 18px;
}

.nav-item button {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: rgba(255, 255, 255, 0.7);
}

#application .nav-item button {
    color: #888;
    border-radius: 1.3rem;
    /*background-color: darkturquoise;*/
    background-color: transparent;
    background-size: 40%;
    /*box-shadow: 1px 1px 10px 3px darkcyan;*/
    border: 0;
    font-size: 30px;
}

#application .carousel-item {
    /*height: 100%;*/
}

#application .carousel-item .txt-lg {
    font-size: 120px;
    font-weight: bold;
    /*text-shadow: 3px 3px 10px teal;*/
    -webkit-box-reflect: below -90px linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    font-family: 'NotoSansKR-Regular' !important;
}

#application .carousel-item .txt-sub {
    font-size: 24px;
    text-align: left;
    position: relative;
    background-color: #000;
    width: 100%;
    font-family: 'PretendardVariable';
    padding: 20px 0 0 10px;
}

@media (max-width: 1440px) {
    #application .nav-item button {
        font-size: 16px;
    }
}

.offcanvas-body .nav-item {
    width: 100%;
}

.offcanvas-body .nav-item button {
    color: #000;
    width: 100%;
    text-align: left;
}

.offcanvas-body button:focus:not(:focus-visible) {
    border: 0;
}

.nav-item.hbp button {
    background-image: url(../images/app-btn1.png);
    background-position: 50% 20%;
}

.nav-item.lung button {
    background-image: url(../images/app-btn2.png);
    background-position: 50% 20%;
}

.nav-item.cardiac button {
    background-image: url(../images/app-btn3.png);
    background-position: 50% 20%;
}

.nav-item.knee button {
    background-image: url(../images/app-btn4.png);
    background-position: 50% 20%;
}

.nav-tabs .nav-link:hover {
    color: #fff !important;
}


.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent;
    border-color: unset;
    font-weight: bold;
}

#application .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #000 !important;
    background-color: #fff !important;
    box-shadow: 1px 0px 4px 5px rgba(255, 255, 255, .3);
}

.navbar-nav:focus-visible {
    outline: 0 !important;
}

.page-link {
    color: #888 !important;
}

.active > .page-link,
.page-link.active {
    background: #ccc !important;
    border: 1px solid #ccc !important;
    color: #fff !important;
}



.modality img {
    width: 35px;
    height: auto;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modality.img-1 img {
	width: 30px;
}

.modality span.multi-btn {
    background-color: #000;
    color: #fff;
}

#application ul {
    padding-left: 0;
}

#application ul li {
    list-style: none;
    color: #fff;
    text-indent: -.5em;
    font-family: 'PretendardVariable';
    line-height: 2em;
    font-size: 18px;
}

#application .nav-item {
    padding-left: 0;
}

@media (max-width: 768px) {

    #application .carousel-content {
        aspect-ratio: auto;
        padding: 2em;
    }

    #application .volume-img {
        width: 100% !important;
        height: 200px !important;
    }

    #application .volume-img .button-group {
        bottom: -30px !important;
    }

	.modality img {
		width: auto !important;
		height: 30px;
	}
	
	.modality-fuji {
		font-size: 14px;
		white-space: nowrap;
	}

}

@media (max-width: 820px) {

    #application .volume-img {
        width: 50%;
        height: 200px !important;
    }

    #application .volume-img .button-group {
        bottom: -30px !important;
    }
}

@media (max-width: 1440px) {
    #application .carousel-content {
        aspect-ratio: auto;
    }

    #application .nav-item button {
        border-radius: 1rem;
    }

    .carousel-item .carousel-txt {
        padding-left: 0 !important;
        width: 100% !important;
    }

    .carousel-next,
    .carousel-prev {
        /* display: none !important; */
    }

}

#all-application {}

#all-application .all-list {
    color: #888;
    background-color: #f5f5f7;
    padding: 1em 2em;
    position: relative;
    gap: 1em;
    height: 150px;
}

#all-application .all-title {
    font-size: 18px;
    color: #1875a3;
    font-weight: bold;
    font-family: 'Noto Sans KR';
}

.all-application {
    color: #212529 !important;
    background: #fff !important
}

.all-application .pill {
    color: #212529 !important;
    border-color: #212529;
}

.bookmark {
    width: 30px;
    height: auto;
    position: absolute;
    top: 0;
    left: 1%;
}

.bookmark img {
    width: 80%;
    height: auto;
}

.all-img {
    height: 30%;
}

.all-img img {
    width: 100%;
    height: 100%;
}

.heart-list .all-img {
    width: 100%;
}

@media (max-width: 767px) {
	#all-application .all-list {
		height: auto;
	}
}


/* main-title 초기 스타일 */

.main-title {
    max-width: 1280px;
    width: 100%;
}

.main-title h1,
.main-title p {
    opacity: 0 !important;
    /* 초기 상태: 완전 투명 */
    transform: translateY(20px) !important;
    /* 초기 상태: 아래로 20px 이동 */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out !important;
    /* 부드러운 전환 */
}

/* 애니메이션 적용 시 스타일 */
.main-title.animate h1,
.main-title.animate p {
    opacity: 1 !important;
    /* 최종 상태: 완전 선명 */
    transform: translateY(0) !important;
    /* 최종 상태: 원래 위치 */
}

/* 순차적 애니메이션 딜레이 */
.main-title.animate h1 {
    transition-delay: 0.2s !important;
    text-align: left;
}

.main-f.animate h1,
.main-f.animate p {
    text-align: center !important;
}

.main-f .subtitle {
    max-width: 100%;
}

.main-title.animate p {
    transition-delay: 0.4s !important;
    text-align: left;
}

.carousel-txt {
	
}

@media (min-width: 1366px) and (max-width: 1665px) {
	#application .carousel-item .txt-lg {
		font-size: 130px !important;
		-webkit-box-reflect: below -70px linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) !important;
	}
}

@media (min-width: 768px) and (max-width: 1365px) {
	#application .carousel-item .txt-lg {
		font-size: 100px !important;
		-webkit-box-reflect: below -70px linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) !important;
	}
}

@media (min-width: 768px) and (max-width: 1665px) {
	
	
	.carousel-item .carousel-txt {
		padding-left: 70px !important;
	}
	
	.carousel-img {
		width: unset !important;
		height: -webkit-fill-available;
	}
	
	.carousel-img img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover;
		padding-right: 0 !important;
	}
	
	#application .nav-item button {
		font-size: 22px;
	}
}


@media (min-width: 1267px) and (max-width: 1440px) {
	
	
	.carousel-img > div {
		height: 100%;
	}
	
	#application .carousel-item .txt-sub {
		font-size: 16px;
	}
}

@media (min-width: 768px) and (max-width: 1266px) {
    #application .nav-item {
        width: 100px;
    }

    .nav-tabs {
        height: 120px;
    }

    #application .carousel-content {
        /* padding: 2em; */
    }

    #application .carousel-item .txt-lg {
        font-size: 90px !important;
        -webkit-box-reflect: below -35px linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) !important;
    }

    #application .carousel-item .txt-sub {
        font-size: 16px;
        padding-left: 0;
    }

    .carousel {
        height: 380px;
    }

    .carousel-img {
        width: 100% !important;
    }

    .carousel-img > div {
        text-align: center;
    }

    .carousel-img img {
        padding-right: 0 !important;
        width: 100%;
        height: auto;
    }
    
    .main-title {
    	max-width: 90%
    }

}

@media (max-width: 767px) {

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 1.5em !important;
    }

    .nav-tabs {
        justify-content: space-between !important;
        height: 100px;
    }

    .nav-item {
        width: 23%;

    }

    #application .nav-item {
        padding-left: 0 !important;
    }

    .main-title {
        width: 90%;
    }

    .subtitle {
        font-size: 16px;
    }
    
    .carousel-content {
    	height: 560px;
    }

    #application .carousel-item .txt-sub {
        font-size: 16px;
        margin: 0 auto;
        text-align: center;
    }
    
    .carousel {
    	height: auto ;
    }

    .carousel-item img {
        width: 100%;
        height: auto !important;
    }

    #application .carousel-item .txt-lg {
        font-size: 50px !important;
        -webkit-box-reflect: below -35px linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) !important;
    }

    .carousel-img {
        width: 100% !important;
    }

    .carousel-img > div {
        text-align: center;
    }

    .carousel-img img {
        padding-right: 0 !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 30px !important
    }

    .swiper-button-prev {
        left: 0 !important;
    }

    .swiper-button-next {
        right: 0 !important;
    }

}

/* @media (max-width: 1155px) {

	.sub-title-01 {
    	font-size: 13px;
    }
}   

@media (max-width: 430px) {
	
	.swiper.mySwiper .swiper-slide img {
		width: 75% !important;
	}
}

@media (min-width: 431px) and (max-width: 580px) {
	
	.swiper.mySwiper .swiper-slide img {
		width: 60% !important;
	}
}

@media (min-width: 581px) and (max-width: 618px) {
	
	.swiper.mySwiper .swiper-slide img {
		width: 50% !important;
	}
}

@media (min-width: 619px) and (max-width: 690px) {
	
	.swiper.mySwiper .swiper-slide img {
		width: 45% !important;
	}
}

@media (min-width: 691px) and (max-width: 767px) {
	
	.swiper.mySwiper .swiper-slide img {
		width: 45% !important;
	}
}

@media (min-width: 768px) and (max-width: 825px) {
	
	.swiper.mySwiper .swiper-slide img {
		width: 40% !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	
	.main-title h1 {
		margin-top: .5em !important
	}
}

@media (min-width: 826px) and (max-width: 1440px) {
	
	.swiper.mySwiper .swiper-slide img {
		width: 35% !important;
	}
}

@media (min-width: 1571px) {
	
	.sub-title-01.pc {
		display: block !important;
	}
	
	.sub-title-01.mb {
		display: none !important;
	}
}

@media (max-width: 1570px) {
	
	.sub-title-01.pc {
		display: none !important;
	}
	
	.sub-title-01.mb {
		display: block !important;
	}
} */

/* 메인 동영상 반응형 */

@media (max-width: 468px) {
	.sub-title-01.mb {
		font-size: 12px;
	}
}

/* iPad Air 4세대 - 가로 모드 (Landscape) */
@media (min-width: 768px) and (max-width: 1180px) and (orientation: landscape) {
	
  .main-title h1 {
  	margin-top: .5em!important;
  	font-size: 80px;
  }	
	
  .sub-title-01 {
    font-size: 1vw !important; /* 가로 모드에서 원래 스타일 유지 */
  }
  
  .carousel-item .carousel-txt {
  	padding-left: 120px !important;
  }
}

/* iPad Air 4세대 - 세로 모드 (Portrait) */
@media (min-width: 768px) and (max-width: 820px) and (orientation: portrait) {
  
  .main-title h1 {
  	margin-top: .5em!important;
  	font-size: 80px;
  }
  
  .sub-title-01 {
    font-size: 2.1vw !important; /* 세로 모드에서 다른 폰트 크기 적용 */
  }
  
  #application .carousel-item .txt-lg {
  	font-size: 70px !important;
  }
  
}

/* pancreas 반응형 */

@media (min-width: 1200px) and (max-width: 1880px) {
	.pancreas-carousel .gap-xl-5 {
		gap: 1.5rem !important;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.pancreas-carousel .gap-md-4 {
		gap: 1rem !important;
	}
}

@media (min-width: 768px) and (max-width: 796px) {
	#application .pancreas-carousel .txt-sub {
		font-size: 15px !important;
	}
}

/* cardiac 반응형 */

@media (min-width: 1666px) and (max-width: 1880px) {
	
	#application .carousel-item .txt-lg {
		font-size: 120px !important;
		-webkit-box-reflect: below -80px linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)) !important;
	}
	
	#application .cardiac-carousel .carousel-item .txt-sub {
		font-size: 16px !important;
	}
	
	#application .cardiac-carousel .carousel-img img {
		width: 100% !important;
	}
}

@media (min-width: 1193px) and (max-width: 1622px) {
	#application .cardiac-carousel .carousel-item .txt-sub {
		font-size: 16px !important;
	}
}

@media (min-width: 768px) and (max-width: 1192px) {
	#application .cardiac-carousel .carousel-item .txt-sub {
		font-size: 13px !important;
	}
}

@media (max-width: 767px) {
	#application .cardiac-carousel .carousel-item .txt-sub {
		letter-spacing: -0.12em;
	}
}

/* knee 반응형 */

@media (min-width: 767px) and (max-width: 768px) {
	#application .knee-carousel .carousel-item .txt-sub {
		font-size: 11px !important;
	}
}

@media (min-width: 769px) and (max-width: 1023px) {
	#application .knee-carousel .carousel-item .txt-sub {
		font-size: 14px !important;
	}
}


/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* 기능 소개 */

.feature-title {
    font-weight: bold;
    font-size: 20px;
    font-family: 'PretendardVariable';
    color: #1d3557;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 40;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    border: none;
    box-shadow: 1px 1px 10px 4px rgba(255, 255, 255, .5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s;
    width: 65px;
    height: 65px;
    background-color: #fff;
}

.floating-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
	.floating-btn {
		width: 50px;
        height: 50px;
	}
}

/* business */

#business {
    background: #f5f5f5;
    color: #252129;
}

#business .container {
    padding-top: 0 !important;
}

.business-box {
    width: 32.4%;
    margin-bottom: 20px;
    height: 182px;
    font-size: 17px;
    background: #fff;
}

.business-box:hover {
    box-shadow: 2px 4px 16px #00000029;
    transform: scale3d(1.01, 1.01, 1.01);
}

.business-txt {
    height: 88px;
    display: flex;
    flex-direction: column;
    gap: .5em;
}

@media (min-width: 1551px) {

    .business-box {
        /* height: auto; */
    }

    .business-txt {
        height: auto;
    }
}

@media (max-width: 1024px) {

    .business-box {
        height: auto;
    }

    .business-txt {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 1550px) {
    .business-box {
        width: 49% !important;
    }
}



@media (min-width: 1013px) {
	.feature-content.pc {
    	display: block !important;	
    }
    
    .feature-content.mb {
    	display: none !important;
    }
}

@media (max-width: 1012px) {
	.feature-content.pc {
    	display: none !important;	
    }
    
    .feature-content.mb {
    	display: block !important;
    }
}

@media (min-width: 868px) and (max-width: 911px) {
    .business-txt.business-txt-last {
        font-size: 15px;
    }
}

@media (min-width: 768px) and (max-width: 867px) {
    .business-txt {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .business-box {
        width: 100% !important;
    }

    .feature-title {
        font-size: 16px;
    }
    
    
}

@media (min-width: 509px) and (max-width: 767px) {
    .feature-content.pc {
    	display: block !important;	
    }
    
    .feature-content.mb {
    	display: none !important;
    }
}

@media (min-width: 439px) and (max-width: 459px) {
    .business-txt.business-txt-last {
        font-size: 15px;
    }
}

@media (max-width: 438px) {
    
    .business-txt {
        font-size: 12px;
        letter-spacing: -0.02em;
    }
    
    .business-txt.business-txt-last {
        font-size: 10px;
    }
}

/* 타입 소개 */

#type {
    background: #fff;
    color: #252129;
    padding-bottom: 4em;
    font-family: 'PretendardVariable';
}

.type-box {
    width: 49%;
    background: #f5f5f5;
    box-shadow: 2px 4px 16px #f5f5f5;
}

.type-box:hover {
    box-shadow: 2px 4px 16px #9bc7de;
    transform: scale3d(1.01, 1.01, 1.01);
}

.type-title {
    font-size: 3em;
    color: #252129;
    font-weight: 600;
    color: #156082;
    text-align: center;
}

.type-box:nth-child(1) .type-title {
    background: linear-gradient(to right, #82a7bf, #0d5e83, #106287);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.type-box:nth-child(2) .type-title {
    background: linear-gradient(to right, #8bc7ff, #377dc0, #2b649a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.type-sub {
    padding-top: 10px;
    font-size: 18px;
    text-align: center;
}

.type-img {
    padding: 100px 0 0;
    text-align: center;
    height: 500px;
}

.type-img img {
    height: 100%;
}

.circle-box {
    background-color: aliceblue;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    box-shadow: 1px 1px 1px 1px #888;
}

@media (min-width: 1327px) {
	.type-sub-pc {
    	display: block !important;
    }
    
    .type-sub-mb {
    	display: none !important;
    }
}

@media (max-width: 1326px) {
	.type-sub-pc {
    	display: none !important;
    }
    
    .type-sub-mb {
    	display: block !important;
    }
}

@media (max-width: 1399px) {
	.type-title {
        font-size: 4.1vw;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    
    .typeB-tag {
		font-size: 1.5vw;
	} 
	
    .type-modal .modal-body {
        overflow-x: scroll;
    }

    .modal-dialog {
        max-width: 90% !important;
        margin: 0 auto;
    }
}

@media (min-width: 958px) and (max-width: 1060px) {
	.type-sub-second .type-sub-mb {
		letter-spacing: -0.05em;
	} 
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
    	/* --bs-modal-width: 90%; */
    }
}

@media (max-width: 991px) {
	
	.typeB-tag {
		font-size: 1.6vw;
	} 
	
	.type-img img {
        width: -webkit-fill-available;
        object-fit: contain;
    }
	
    
}

@media (min-width: 768px) and (max-width: 957px) {
	.type-sub-second .type-sub-mb {
		letter-spacing: -0.14em;
	} 
}

@media (max-width: 767px) {
	
	.type-box {
        width: 100%;
        padding-top: 6.5vh !important;
    }
	
	.typeB-tag {
		font-size: 3vw;
	}
	
	.type-title {
		font-size: 8.5vw;
	}
	
	.type-sub {
        font-size: 3vw;
    }
    
    .type-img {
    	height: 300px;
        padding-top: 30px;
    }
	
    
    
    .type-btn button {
    	font-size: 16px;
    }
    

}



/* 활용사례 */

#use-cases {
    background: #f5f5f5;
    color: #252129;
    font-family: 'PretendardVariable';
}

.use-box {
    /*width: 33.333%;*/
    min-height: 367px;
    position: relative;
    border-radius: 50px;
    height: 98%;
    background: #fff;
    cursor: pointer;
    overflow-y: scroll;
	-ms-overflow-style: none;
}

.use-box::-webkit-scrollbar {
	display: none;
}

.use-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1d3557;
}

.use-title img {
    width: 43px !important;
    height: 43px !important;
    margin-right: 10px;
}

.use-name {
	text-decoration: underline;
	font-size: 18px;
}

.use-name {
	white-space: normal;
	max-width: 600px; /* 텍스트가 3줄/4줄 초과하도록 컨테이너 크기 제한 */
	line-height: 1.5; /* 명확한 줄 높이 설정 */
	padding: 0; /* 패딩 제거로 높이 계산 정확도 향상 */
	margin-bottom: 10px;
}

/* .use-name에 3줄 초과 시 적용 */
.use-name.clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 3줄로 제한 */
  -webkit-box-orient: vertical;
  line-clamp: 3; /* 현대 브라우저 지원 */
}

.use-name.clamp {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  line-clamp: 3 !important;
  max-height: 81px !important; /* 3줄 * 27px */
}

/* .use-sub > div:first-child에 4줄 초과 시 적용 */
.use-sub > div:first-child.clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* 4줄로 제한 */
  -webkit-box-orient: vertical;
  line-clamp: 4; /* 현대 브라우저 지원 */
}

.use-name.expanded, .use-sub>div:first-child.expanded {
	display: block; /* 전체 텍스트 표시 */
	-webkit-line-clamp: unset;
	line-clamp: unset;
	text-overflow: unset;
	overflow: visible;
}

.toggle-btn {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: #0f4376;
	margin-left: 10px;
	display: flex;
	justify-content: end;
	width: 100%;
	padding-right: 10px;
	margin-bottom: 10px;
}

.toggle-btn i {
	padding: 2.5px;
	border-color: #0f4376 !important;
}

.toggle-btn:hover {
	color: #0056b3;
}

.use-sub {
    color: #888;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    height: 270px;
    position: relative;
}

.use-sub>div {
	padding: 15px 0;
	border-top: 1px solid #ccc;
	margin-top: 15px;
}

.use-sub>div:nth-child(1) {
	padding: 15px 0 0;
}


.use-sub div.fw-bold {
    font-size: 16px;
}

.website {
    margin-top: 30px;
    font-size: 16px;
    position: absolute;
    bottom: 10%;
    flex-direction: column;
    overflow-wrap: break-word;
}

.use-link {
    color: darkturquoise;
    width: 100%;
    
    position: absolute;
    bottom: 5%;
    right: 5%;
    display: none !important;
}


@media (max-width: 1024px) {
    .use-box {
        width: 100%;
    }
    
    .use-sub {
    	height: auto;
    }
    
    .use-link {
    	position: relative;
    	height: 100px;
    }

	.use-link div {
		position: absolute;
		bottom: 20px;
		right: -5%;
	}


}

@media (max-width: 1024px) {
    .use-box {
        width: 95% !important;
        margin-bottom: 10px !important;
    }

    .use-sub {
        /*height: 170px;
        position: relative;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;*/
        overflow-wrap: break-word;
    }

    .swiper.mySwiper2 .swiper-slide {
        
    }


}

/* Application 상세페이지 */

.application-details .container {
    max-width: 70%;
}

.application-details h2 {
    margin-bottom: 30px !important;
}

h2.accordion-header {
    margin-bottom: 0 !important;
}

h2.accordion-header .accordion-button {
    font-weight: bold;
    font-size: 1.75rem;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding-left: 0;
    font-family: 'PretendardVariable';
}

.accordion-button:not(.collapsed) {
    color: #fff;
    box-shadow: none;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

.accordion-body {
    /*height: 400px;*/
    overflow: overlay;
}

.accordion-body::-webkit-scrollbar {

    width: .5vw;

}

.accordion-body::-webkit-scrollbar-thumb {

    background-color: hsla(0, 0%, 42%, 0.49);
    border-radius: 0;

}

.accordion-item {
    /*color: #fff;*/
    background-color: transparent !important;
    border: 0;

}

.accordion-button {
    background-color: transparent !important;
    border-bottom: 1px solid #dee2e6;
    color: #fff;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.accordion-collapse.show {}

.slide-title {
    font-family: 'PretendardVariable';
    font-weight: 600
}

.function-box {
    background-color: #f5f5f5;
    padding: 1em;
    border-radius: 10px;
    margin-bottom: 30px;
}

.function-box img {
	height: 42px;
}

.function-box ul {
    padding: 10px 0 0;
}

.function-box ul li {
    list-style: none;
    color: #888;
    line-height: 2;
    padding-left: 1em;
    text-indent: -.6em;
}

#func_01 .modal-body,
#func_02 .modal-body,
#func_03 .modal-body {
    height: 460px;
}

@media (max-width:1024px) {

    .application-details .container {
        max-width: 100% !important;
    }

    .app-btn {
        padding-right: 0 !important;
    }
}

@media (max-width:767px) {

    .app-btn button {
        font-size: 14px;
    }
}

/* Q&A */

/* 선택 버튼 그룹 */

.select-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.select-btn {
    padding: 10px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-btn:hover,
.select-btn.active {
    border-color: #3b82f6;
    background: #eff6ff;
    color: #1d4ed8;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    background: #070b1a
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 1266px) {
    .nav-menu,
    .nav-r {
        display: none;
    }

    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }
}

@media (min-width: 1266px) {
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}

.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, .7);
}

.offcanvas-backdrop.show {
    opacity: 1
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 35px !important;
}

/* width 확장요소 css */

#application .container-fluid,
#business .container-fluid,
#type .container-fluid,
#use-cases .container-fluid {
    width: 95%;
}

.modal {
	z-index: 2000000;
}

.modal.Zoom,
.modal.Zoom-fc {
	--bs-modal-width: 50%;
}

.Zoom .modal-content {
	height: 90vh;
}

. Zoom-fc .modal-content {
     height: unset;
}

@media (max-width: 767px) {
	.more-btn {
	font-size: 11px;
}
	
}

.offcanvas {
	z-index: 10000000;
}