:root { 
  --custom-font-white: #ffffff;
  --custom-font-black: #000000;
  --custom--color-gard-purple: #664E9E;
  --custom--color-gard-yellow: #F58C1E;
  --custom--color-gard-purple-tra: #F0EEF6;
  --custom--color-gard-purple-line: #b8a6dd;
  --custom--color-gard-purple-sub: #A98DDA;
  --custom--color-gard-purple-graph2: #A395C5;
  --custom--color-gard-purple-graph3: #E0DCEC;
  --default-color: #444444;
}
:root {
  --default-font: "Roboto", 'Noto Sans KR', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", 'Noto Sans KR', sans-serif;
  --nav-font: "Open Sans", 'Noto Sans KR', sans-serif;
  --noto-font: 'Noto Sans KR', sans-serif;
}
/* ================================================================================== Sub Footer */
.sub-footer {
    padding: 0;
    background: var(--custom--color-gard-purple);
    margin-top: 50px;
}
.sub-footer-container {
    padding: 16px 12px;
}
.sub-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
}
.sub-footer-logo-wrap > img {
    width: 135px;
    height: auto;
}
.sub-footer-copyright p {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    color: var(--custom-font-white);
}
.sub-br-992, .sub-br-576, .sub-br-480{
	display: none;
}
/* ================================================================================== Sub Banner */
.sub-banner-wrap {
    padding: 79px 0;
}
.sub-banner {
    height: 200px;
    padding: 36px 0;
    border-top: 1px solid var(--custom--color-gard-purple-tra);
    border-bottom: 1px solid var(--custom--color-gard-purple-tra);
    overflow: hidden;
    background: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), url("/assets/img/sub/sub-banner-about.png");
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center center;
    background-size: cover, cover;
}
.sub-banner.menu-data {
    background-image: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), url("/assets/img/sub/sub-banner-data.png");
    background-position: center center, right center;
}
.sub-banner.menu-research {
    background-image: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), url("/assets/img/sub/sub-banner-research.png");
    background-position: center center, right 75%;
}
.sub-banner.menu-promotion {
    background-image: linear-gradient(rgba(255,255,255,0.55), rgba(255,255,255,0.55)), url("/assets/img/sub/sub-banner-promotion.png");
    background-position: center center, right 55%;
}
.sub-path {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 500;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}
.sub-path > * + *::before {
    content: ">";
    margin-right: 12px;
    color: var(--custom-font-black);
}
.sub-path .home-icon {
    font-size: 18px;
}
.sub-path .home-icon + span::before {
    display: none;
}
.sub-banner h2 {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}
.sub-banner p {
    margin: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}

/* ================================================================================== Sub LNB */
#sub-content-box{
	padding: 0;
}
.sub-lnb {
  	width: 100%;
  	max-width: 240px;
}
.sub-lnb-box {
  	background: var(--custom-font-white);
}
.sub-lnb-box h2 {
  	margin: 0;
  	padding: 20px;
  	font-size: 28px;
  	font-weight: 700;
  	text-align: center;
  	color: var(--custom-font-black);
  	font-family: var(--nav-font);
}
.sub-lnb-box ul {
  	margin: 0;
  	padding: 0;
  	list-style: none;
  	border: 1px solid var(--custom--color-gard-purple-tra);
  	border-top: 4px solid var(--custom--color-gard-purple);
}
.sub-lnb-box li {
  	border-top: 1px solid var(--custom--color-gard-purple-tra);
}
.sub-lnb-box li a {
  	display: flex;
  	align-items: center;
  	justify-content: space-between;
  	min-height: 65px;
  	padding: 0 24px;
  	font-size: 17px;
  	font-weight: 500;
  	color: var(--custom-font-black);
  	font-family: var(--nav-font);
  	text-decoration: none;
  	transition: all 0.3s ease;
}
.sub-lnb-box li a::after {
  	content: '\F285';
  	font-family: bootstrap-icons;
  	font-size: 14px;
  	color: #bbb;
  	transition: all 0.3s ease;
}
.sub-lnb-box li a span {
    position: relative;
    isolation: isolate;
}
.sub-lnb-box li a span::after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -2px;
    height: 7px;
    width: 0;
    background: rgba(106, 80, 170, 0.3);
    transition: width 0.25s ease;
    transform: translateY(-50%) rotate(-2deg);
    border-radius: 1px;
    z-index: -1;
}
.sub-lnb-box li:not(.lnb-active) a:hover span::after {
    width: 100%;
}
.sub-lnb-box li.lnb-active {
  	background: rgba(106, 80, 170, 0.08);
}
.sub-lnb-box li.lnb-active a {
  	font-weight: 700;
  	color: var(--custom--color-gard-purple);
}
.sub-lnb-box li.lnb-active a::after {
  	color: var(--custom--color-gard-purple);
}

/* ================================================================================== 공통 */
.sub-text .sub-text-h3{
	margin-bottom: 24px;
    padding-bottom: 22px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
    position: relative;
}
.sub-text .sub-text-h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: var(--custom--color-gard-purple);
}
.sub-text .sub-text-h4{
	font-size: 27px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
    margin-top: 50px;
}
.sub-text .sub-text-p{
	margin-bottom: 8px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}
/* ============
====================================================================== About - Mission */
.mission-card-wrap {
    display: flex;
    gap: 20px;
    margin-top: 34px;
}
.mission-card {
    display: flex;
    align-items: center;
    gap: 18px;
    width: calc((100% - 40px) / 3);
    min-height: 120px;
    padding: 17px;
    background: var(--custom--color-gard-purple-tra);
}
.mission-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--custom-font-white);
}
.mission-icon i {
    font-size: 34px;
    color: var(--custom-font-black);
}
.mission-card h4 {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}
.mission-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}
.mission-slogan {
    margin-top: 34px;
    text-align: left;
}
.mission-slogan span {
    display: block;
    font-size: 17px;
    font-weight: 500;
    color: rgba(111, 82, 174, 0.28);
}
.mission-slogan strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    color: rgba(111, 82, 174, 0.28);
}
/* ================================================================================== About - Greeting */
.greeting-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.greeting-photo-pc {
    flex: 0 0 300px;
    text-align: center;
    margin-top: 30px;
}
.greeting-photo-pc img {
    max-width: 100%;
    height: auto;
}
.greeting-text p.sub-text-p {
    margin-bottom: 24px;
}
.greeting-sign {
    margin-top: 36px;
    text-align: right;
}
.greeting-sign p {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}
.greeting-sign p:nth-child(2) {
    font-size: 19px;
}
.greeting-sign img {
    max-width: 150px;
    height: auto;
}
.greeting-photo-tablet {
    display: none;
}
.greeting-bottom-tablet {
    display: block;
}

/* ================================================================================== About - Organization Chart */
.framework-diagram {
    position: relative;
    width: 640px;
    height: 520px;
    margin: 30px auto 0;
    overflow: visible;
}
.framework-item {
    position: absolute;
    z-index: 3;
}
.framework-item-gard {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.framework-item-adf {
    left: 5px;
    bottom: 20px;
}
.framework-item-center {
    right: 5px;
    bottom: 20px;
}
.framework-card {
    width: 250px;
    height: 250px;
    border: 3px solid var(--custom--color-gard-purple);
    border-radius: 50%;
    background: var(--custom-font-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 0 0 18px var(--custom-font-white);
}
.framework-logo {
    display: block;
    width: auto;
    height: 18px;
    object-fit: contain;
    margin-bottom: 10px;
}
.framework-logo.adf-logo {
    height: 16px;
}
.framework-none-logo{
	height: 25px;
}
.framework-card h5 {
    margin: 0;
    color: var(--custom-font-black);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    letter-spacing: -0.04em;
    font-family: var(--nav-font);
}
.framework-divider {
    width: 100%;
    height: 2px;
    margin: 12px 0 10px;
    background: rgba(103, 80, 164, 0.35);
}
.framework-card ul {
    margin: 0;
    padding-left: 18px;
    text-align: left;
}
.framework-card li {
    color: var(--custom-font-black);
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: -0.04em;
    font-family: var(--nav-font);
}
.framework-orbit {
    position: absolute;
    left: 50%;
    top: 95px;
    width: 450px;
    height: 410px;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
    border: 5px solid rgba(103, 80, 164, 0.22);
    border-radius: 50%;
}
.framework-connection {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.connection-line {
    position: absolute;
    display: block;
    height: 2px;
    background-image: linear-gradient(to right, rgba(103, 80, 164, 0.25) 50%, transparent 50%);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    transform-origin: left center;
}
.connection-line-left {
    top: 222px;
    left: 309px;
    width: 180px;
    transform: rotate(125deg);
}
.connection-line-right {
    top: 222px;
    left: 326px;
    width: 180px;
    transform: rotate(55deg);
}
.connection-line-bottom {
    left: 235px;
    bottom: 147px;
    width: 170px;
}
/* ------------------------ */ 
.roadmap-wrap-pc, .roadmap-wrap-tablet {
	position: relative;
	max-width: 760px;
	margin: 45px auto 0;
}
.roadmap-wrap-tablet{
	display: none;
}
.roadmap-wrap-pc::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	background: var(--custom--color-gard-purple-line);
	transform: translateX(-50%);
}
.roadmap-row {
	display: grid;
	grid-template-columns: 1fr 70px 1fr;
	align-items: center;
	min-height: 135px;
}
.roadmap-cell {
	display: flex;
	align-items: center;
}
.roadmap-row .roadmap-cell:first-child {
	justify-content: flex-end;
}
.roadmap-row .roadmap-cell:last-child {
	justify-content: flex-start;
}
.roadmap-center {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	z-index: 1;
}
.roadmap-dot {
	width: 18px;
	height: 18px;
	background: var(--custom-font-white);
	border: 3px solid var(--custom--color-gard-purple);
	border-radius: 50%;
}
.roadmap-dot.roadmap-dot-full{
	background: var(--custom--color-gard-purple);
}
.roadmap-dot.roadmap-dot-half{
	background: linear-gradient(
		to right,
		#6b4bb1 50%,
		#ffffff 50%
	);
}
.roadmap-card {
	width: 330px;
	padding: 24px 15px 20px 15px;
	background: var(--custom--color-gard-purple-tra);
	border-radius: 16px;
	text-align: center;
}
.roadmap-card img {
	max-width: 190px;
	max-height: 42px;
	margin-bottom: 10px;
}
.roadmap-card p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}
.roadmap-card-text strong {
	display: block;
	margin-bottom: 14px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
}
.roadmap-step {
	min-width: 130px;
}
.roadmap-step.right-align {
	text-align: right;
}
.roadmap-step strong {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}
.step-line {
	width: 80px;
	height: 1px;
	background: var(--custom--color-gard-purple-line);
	margin: 8px 0;
}
.step-line.step-line-left{
	margin-left: auto;
}
.roadmap-step span {
	display: block;
	font-size: 15px;
	color: var(--custom-font-black);
}


/* ================================================================================== Data - Cohort Overview */
.chart-wrap, .participant-summary-row, .participant-age-box, .process-wrap{
	width: 90%;
}
.chart-area{
  	align-items:flex-end;
  	margin-top: 20px;
}
.chart-wrap{
  	height:480px;
  	margin: 0 auto;
}
.chart-labels{
    width: 100%;
    min-width: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.chart-labels p{
	display:grid;
    grid-template-columns: 16px 1fr auto;
    align-items:center;
    column-gap:10px;
    margin:12px 0;
	font-size: 18px;
}
.chart-labels .c{
  	width:10px;
    height:10px;
    border-radius:50%;
}
.chart-labels b{
    text-align:right;
}
.chart-labels .first{ 
	background:#F36E43; 
}
.chart-labels .second{ 
	background:#FFDB6A; 
}
.chart-labels .third{ 
	background:#2660A8; 
}
/* ------------------------ */ 
.chart-other {
    margin-top: 80px;
}
.participant-summary-row {
    display: flex;
    justify-content: center;
    gap: 110px;
    margin: 28px auto 0;
}
.participant-summary-row p{
	font-family: var(--nav-font);
}
.participant-pie-box {
    width: 300px;
    text-align: center;
}
.pie-chart-wrap {
    position: relative;
    width: 100%;
    height: 260px;
}
.pie-labels {
    display: flex;
    justify-content: center;
    gap: 42px;
    margin-top: 18px;
}
.chart-labels .c.male {
    background: var(--custom--color-gard-purple);
}
.chart-labels .c.female {
    background: var(--custom--color-gard-purple-graph3);
}
.chart-labels .c.cn {
    background: var(--custom--color-gard-purple-graph3);
}
.chart-labels .c.amci {
    background: var(--custom--color-gard-purple-graph2);
}
.chart-labels .c.ad {
    background: var(--custom--color-gard-purple);
}
/* ------------------------ */ 
.participant-age-box {
    margin: 50px auto 0;
}
.participant-age-chart-wrap {
    position: relative;
    width: 100%;
    height: 260px;
}
.participant-age-title {
    position: absolute;
    top: -2px;
    left: 50px;
    color: var(--custom--color-gard-purple-graph2);
    font-size: 15px;
    z-index: 1;
    font-family: var(--nav-font);
}
/* ------------------------ */ 
.cohort-process {
    margin-top: 100px;
}
.process-wrap {
    position: relative;
    max-width: 780px;
    height: 380px;
    margin: 30px auto 0;
}
.process-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 420px;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.process-card {
    position: absolute;
    z-index: 1;
    width: 330px;
    min-height: 110px;
    padding: 18px 20px;
    border-radius: 14px;
    background: var(--custom--color-gard-purple-tra);
    text-align: center;
}
.process-card h5 {
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--custom--color-gard-purple);
    color: var(--custom-font-black);
    font-size: 20px;
    font-weight: 600;
}
.process-card p {
    margin: 0;
    color: var(--custom-font-black);
    font-size: 15px;
    line-height: 1.55;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-card-1 {
    top: 0;
    left: 0;
}
.process-card-2 {
    top: 0;
    right: 0;
}
.process-card-3 {
    bottom: 0;
    right: 0;
}
.process-card-4 {
    bottom: 0;
    left: 0;
}
/* ================================================================================== Data - Data Architecture */
.multimodal-card-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 22px;
    padding: 0 20px;
}
.multimodal-card {
    min-height: 225px;
    padding: 28px 26px 24px;
    border: 1px solid var(--custom--color-gard-purple-tra);
    background: var(--custom-font-white);
}
.multimodal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--gard-color-purple-tra);
}
.multimodal-icon img {
    width: 65%;
    height: auto;
    max-height: 65%;
}
.multimodal-card h5 {
    margin-bottom: 18px;
    font-size: 23px;
    font-weight: 600;
    text-align: center;
    font-family: var(--nav-font);
}
.multimodal-card ul {
    margin: 0;
    padding-left: 25px;
}
.multimodal-card li {
    font-size: 17px;
    line-height: 1.45;
    font-family: var(--nav-font);
    color: var(--custom-font-black);
}
/* ------------------------ */ 
.data-framework {
    margin-top: 90px;
}
.framework-box {
    position: relative;
    width: 720px;
    height: 550px;
    margin: 0 auto;
}
.framework-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid #D2CAE2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.circle-outer {
    width: 520px;
    height: 520px;
}
.circle-inner {
    width: 470px;
    height: 470px;
    border-color: var(--custom--color-gard-purple-tra);
}
.framework-center {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
.framework-center-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 132px;
    height: 132px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: var(--custom--color-gard-purple);
}
.framework-center-icon img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}
.framework-center p {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}
.framework-item {
    position: absolute;
    text-align: center;
}
.framework-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--gard-color-purple-tra);
}
.framework-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.framework-item p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.15;
    font-family: var(--nav-font);
}
.framework-neuro {
    left: 150px;
    top: 50px;
}
.framework-bio {
    left: 17px;
    top: 220px;
}
.framework-micro {
    left: 135px;
    bottom: 5px;
}
.framework-genome {
    right: 190px;
    top: 20px;
}
.framework-clinical {
    right: 17px;
    top: 225px;
}
.framework-life {
    right: 125px;
    bottom: 38px;
}
[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
    transition-duration: 900ms;
}
/* ------------------------ */ 
.data-biobank .sub-text-h4{
	margin-top: 90px;
}
.data-biobank .biobank-wrap {
	position: relative;
	height: 470px;
	margin: 35px auto 0;
}
.data-biobank .biobank-main {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 2;
}
.data-biobank .biobank-main-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 135px;
	height: 135px;
	background: var(--custom--color-gard-purple);
	border-radius: 10px;
	margin-bottom: 10px;
}
.data-biobank .biobank-main-icon img {
	width: 70px;
	height: 70px;
}
.data-biobank .biobank-main p {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	font-family: var(--nav-font);
}
.data-biobank .biobank-line {
	position: absolute;
	top: 210px;
	left: 75px;
	right: 75px;
	height: 90px;
	border-top: 2px solid var(--custom--color-gard-purple);
}
.data-biobank .biobank-line::before {
	content: "";
	position: absolute;
	top: -25px;
	left: 50%;
	width: 2px;
	height: 25px;
	background: var(--custom--color-gard-purple);
	transform: translateX(-50%);
	opacity: .6;
}
.data-biobank .biobank-line::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(var(--custom--color-gard-purple), var(--custom--color-gard-purple)) left top / 2px 28px no-repeat,
		linear-gradient(var(--custom--color-gard-purple), var(--custom--color-gard-purple)) 25% top / 2px 78px no-repeat,
		linear-gradient(var(--custom--color-gard-purple), var(--custom--color-gard-purple)) 50% top / 2px 28px no-repeat,
		linear-gradient(var(--custom--color-gard-purple), var(--custom--color-gard-purple)) 75% top / 2px 78px no-repeat,
		linear-gradient(var(--custom--color-gard-purple), var(--custom--color-gard-purple)) right top / 2px 28px no-repeat;
	opacity: .6;
}
.data-biobank .biobank-list {
	position: relative;
	height: 100%;
}
.data-biobank .biobank-item {
	position: absolute;
	width: 150px;
	text-align: center;
}
.data-biobank .biobank-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	margin: 0 auto 8px;
	border: 1px solid var(--custom--color-gard-purple);
	border-radius: 10px;
	background: var(--custom-font-white);
}
.data-biobank .biobank-icon img {
	width: 48px;
	height: 48px;
}
.data-biobank .biobank-item span {
	display: block;
	font-size: 20px;
	font-weight: 700;
	font-family: var(--nav-font);
	line-height: 1.15;
}
.data-biobank .item-plasma {
	left: 0;
	top: 250px;
}
.data-biobank .item-serum {
	left: 25%;
	top: 300px;
	transform: translateX(-25%);
}
.data-biobank .item-dna {
	left: 50%;
	top: 250px;
	transform: translateX(-50%);
}
.data-biobank .item-csf {
	left: 75%;
	top: 300px;
	transform: translateX(-75%);
}
.data-biobank .item-brain {
	right: 0;
	top: 250px;
}

/* ================================================================================== Data - GARD Portal */
.portal-box{
	margin-top: 30px;
}
.portal-screenshot-box{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.portal-screenshot-box img{
	width: 100%;
	position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portal-screenshot-box #img-default {
    position: relative;
    opacity: 1;
}
.portal-screenshot-box img.active {
    opacity: 1 !important;
}
.portal-functions {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: 40px;
}
.portal-function {
    flex: 1;
    cursor: default;
}
.portal-function h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}
.portal-function-line {
    width: 100%;
    height: 3px;
    margin-bottom: 12px;
    background: var(--custom--color-gard-purple-tra);
    border-radius: 999px;
    transition: all 0.3s ease;
}
.portal-function p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--custom-font-black);
    font-family: var(--nav-font);
}
.portal-function.active .portal-function-line {
    background: var(--custom--color-gard-purple);
}

/* ================================================================================== Research - Related Publications */
.publication-top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.publication-total {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--nav-font);
}
.publication-search{
	display: flex;
    gap: 10px;
    align-items: center;
}
.publication-search > a{
	transform: translateY(1.5px);
}
.publication-search > a i{
	color: var(--custom-font-black);
}
.publication-search select{
	height: 30px;
    width: 100px;
    padding-left: 3px;
    transform: translateY(1px);
}
.publication-search input{
	width: 200px;
}
.publication-search button{
	border: 0;
    background: #fff;
    height: 30px;
}
.publication-card-wrap{
    margin-top: 0px;
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    min-height: 349px;
}
.no-result-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: #777;
    font-size: 16px;
}
.publication-card{
	width:100%;
    height:100%;
    box-sizing:border-box;
    min-height:540px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#fff;
    transition:all .3s ease;
    overflow: visible;
}
.publication-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 10px rgba(0,0,0,.08);
}
.publication-img{
    width:100%;
    height:320px;
    overflow:hidden;
    border-bottom:1px solid #eee;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 8px 8px 0 0;
}
.publication-img img{
    width:90%;
    height:90%;
    object-fit:contain;
    padding:10px;
}
.publication-img.logo-img{
    background:#fafafa;
}
.publication-img.logo-img img{
    max-width:52%;
    max-height:22%;
    width:auto;
    height:auto;
    padding:0;
}
.publication-body{
    padding:18px;
}
.publication-date{
    margin-bottom:8px;
    font-size:14px;
    color:#777;
    height: 20px;
    margin-bottom:8px;
}
.publication-title{
    font-size:18px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:10px;
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
    min-height: 100px;
    margin-bottom: 8px;
}
.publication-authors{
	min-height:40px;
    margin-bottom:2px;
    font-size:14px;
    line-height:1.4;
    color:#555;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.publication-journal{
	height:22px;
    margin:0;
    font-size:14px;
    font-weight:600;
    color:#664E9E;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.pagination-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}
.pagination-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 6px;
    color: var(--custom--color-gard-purple);
    text-decoration: none;
    transition: all 0.2s ease;
}
.pagination-box a:hover {
    background-color: rgba(107, 76, 154, 0.1);
}
.pagination-box a.active {
    background-color: var(--custom--color-gard-purple);
    color: #fff;
}