@charset "utf-8";
/* CSS Document */

:root {
    --bs-body-font-family:'Pretendard', Dotum, Sans-serif;
    --bs-body-font-size:1rem;
    --bs-body-font-weight:300;
    --bs-body-line-height:1.5;
    --bs-body-color:#000000;

    --bs-primary:#abc907;
    --bs-secondary: #261f44;
    --bs-success: #24a148;
    --bs-info: #17a2b8;
    --bs-warning: #ffc107;
    --bs-danger: #e00000;
    --bs-light: #f5f5f5;
    --bs-dark: #000000;
    --bs-lightblue: #eef2fa;

    --bs-white: #fff;
    --bs-gray: #666666;
    --bs-gray-dark: #222222;
    --bs-gray-100: #f5f5f5; /* 회색배경 */
    --bs-gray-200: #e5e5e5; /* 회색선 */
    --bs-gray-300: #999999; /* form-label */
    --bs-gray-400: #aaaaaa; /* 회색 버튼, 라디오버튼" */
    --bs-gray-500: #888888;  /* bullet color */
    --bs-gray-600: #6c757d;
    --bs-gray-700: #333333; /* 진한 회색 */
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;

    --admin-bg-color:#28344e;
    --admin-login-color:#535d71;
}

body {
    font-family:var(--bs-body-font-family); 
    font-weight:var(--bs-body-font-weight); 
    font-size:var(--bs-body-font-size); 
    line-height:var(--bs-body-line-height);
    color:var(--bs-body-color); 
}

h1, h2, h3 {color: var(--bs-gray-dark);}

.fs-6, .h6 {font-size: 1.125rem !important;}

a {text-decoration:none; color: var(--bs-body-color);}
a:hover {text-decoration:none; color: var(--bs-primary);}

ol, ul {padding-left: 0; margin-bottom: 0;}
ol, ul, li {list-style-type: none;}

ul li:not(:last-child) {margin-bottom: 0.25rem;}

dl {margin-bottom: 0;}
dd {margin-bottom: 0;}

p {margin-bottom: 0;}

@media screen and (min-width: 1200px) {
    p, ul {font-size: 1.125rem;}
}

.fw-medium {font-weight: 500 !important;}

.blind {position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); overflow: hidden; border:0;}


input::placeholder {color: var(--bs-gray-300);}
textarea::placeholder {color: var(--bs-gray-300);}

address {margin-bottom: 0.5rem;}
section {padding-top: 80px; padding-bottom: 80px; word-break: keep-all;}

@media screen and (min-width: 1200px) {
    section {padding-top: 100px; padding-bottom: 100px;}
}

hr {opacity: 1; border-color: var(--bs-gray-200); margin-top: 3.75rem; margin-bottom: 3.75rem;}

@media screen and (min-width: 1200px) {
    hr {margin-top: 5rem; margin-bottom: 5rem;}
}

.sub-tit {margin-top: 3.75rem; margin-bottom: 1.5rem; font-weight: 700;}

@media screen and (min-width: 1200px) {
    .sub-tit {margin-top: 5rem;}
}

/* ********************* */
/* **** user class ***** */
/* ********************* */
.sound-only, .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
}

.menu-open {overflow: hidden;}

/* ********************* */
/* ******* layout ****** */
/* ********************* */
.container {max-width: 1520px; padding-left: 4%; padding-right: 4%;}
.container-fluid {padding-left: 4%; padding-right: 4%;}

@media screen and (min-width: 1200px) {
    .container {padding-left: 20px; padding-right: 20px;}
    .container-fluid {padding-left: 70px; padding-right: 70px;}
}


/* ********************* */
/* ******* banner ****** */
/* ********************* */
.sub-content .banner-section {border-top: 1px solid var(--bs-gray-200);}
.main-banner .swiper-wrapper {transition-timing-function: linear;}
.banner-link {display: block; border: 1px solid var(--bs-gray-200); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden;}



/* ********************* */
/* ******* button ****** */
/* ********************* */
.btn {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-padding-y: 0.625rem;
    --bs-btn-border-radius: 0.5rem;
}

.btn-sm {height: 45px;}
.btn-lg {min-width: 300px; height: 60px; font-size: 1.125rem;}
.btn-sm .bi-arrow-right {margin-left: 8px;}
.btn-lg .bi-arrow-right {margin-left: 24px;}
.btn-xl {min-width: 100%; height: 60px; font-size: 1.25rem; font-weight: 500;}


.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color:  var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-primary);
}

.btn-secondary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-border-color:  var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);
    --bs-btn-active-bg: var(--bs-secondary);
}

.btn-success {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-success);
    --bs-btn-border-color:  var(--bs-success);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-success);
    --bs-btn-hover-border-color: var(--bs-success);
    --bs-btn-active-bg: var(--bs-success);
}

.btn-danger {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-danger);
    --bs-btn-border-color:  var(--bs-danger);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-danger);
    --bs-btn-hover-border-color: var(--bs-danger);
    --bs-btn-active-bg: var(--bs-danger);
}

.btn-warning {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-warning);
    --bs-btn-border-color:  var(--bs-warning);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-warning);
    --bs-btn-hover-border-color: var(--bs-warning);
    --bs-btn-active-bg: var(--bs-warning);
}

.btn-info {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-info);
    --bs-btn-border-color:  var(--bs-info);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-info);
    --bs-btn-hover-border-color: var(--bs-info);
    --bs-btn-active-bg: var(--bs-info);
}

.btn-light {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-bg: var(--bs-light);
    --bs-btn-border-color:  var(--bs-light);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-light);
    --bs-btn-active-bg: var(--bs-light);
}

.btn-lightgreen {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-lightgreen);
    --bs-btn-border-color:  var(--bs-lightgreen);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-lightgreen);
    --bs-btn-hover-border-color: var(--bs-lightgreen);
    --bs-btn-active-bg: var(--bs-lightgreen);
    --bs-btn-active-color: var(--bs-white);
}

.btn-dark {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-border-color:  var(--bs-dark);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-dark);
    --bs-btn-hover-border-color: var(--bs-dark);
    --bs-btn-active-bg: var(--bs-dark);
}

.btn-gray {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-gray-400);
    --bs-btn-border-color:  var(--bs-gray-400);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-gray-400);
    --bs-btn-hover-border-color: var(--bs-gray-400);
    --bs-btn-active-bg: var(--bs-gray-400);
}


.btn-white {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color:  var(--bs-gray-400);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-hover-border-color: var(--bs-gray-400);
    --bs-btn-active-bg: var(--bs-white);
}


.btn-link {
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
}



.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color:  var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-primary);
}

.btn-secondary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-border-color:  var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);
    --bs-btn-active-bg: var(--bs-secondary);
}

.btn-success {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-success);
    --bs-btn-border-color:  var(--bs-success);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-success);
    --bs-btn-hover-border-color: var(--bs-success);
    --bs-btn-active-bg: var(--bs-success);
}

.btn-danger {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-danger);
    --bs-btn-border-color:  var(--bs-danger);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-danger);
    --bs-btn-hover-border-color: var(--bs-danger);
    --bs-btn-active-bg: var(--bs-danger);
}

.btn-warning {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-warning);
    --bs-btn-border-color:  var(--bs-warning);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-warning);
    --bs-btn-hover-border-color: var(--bs-warning);
    --bs-btn-active-bg: var(--bs-warning);
}

.btn-info {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-info);
    --bs-btn-border-color:  var(--bs-info);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-info);
    --bs-btn-hover-border-color: var(--bs-info);
    --bs-btn-active-bg: var(--bs-info);
}

.btn-light {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-bg: var(--bs-light);
    --bs-btn-border-color:  var(--bs-light);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-light);
    --bs-btn-active-bg: var(--bs-light);
}

.btn-lightgreen {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-lightgreen);
    --bs-btn-border-color:  var(--bs-lightgreen);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-lightgreen);
    --bs-btn-hover-border-color: var(--bs-lightgreen);
    --bs-btn-active-bg: var(--bs-lightgreen);
    --bs-btn-active-color: var(--bs-white);
}

.btn-dark {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-border-color:  var(--bs-dark);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-dark);
    --bs-btn-hover-border-color: var(--bs-dark);
    --bs-btn-active-bg: var(--bs-dark);
}


.btn-white {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-bg: var(--bs-white);
    --bs-btn-border-color:  var(--bs-gray-400);
    --bs-btn-hover-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-hover-border-color: var(--bs-gray-400);
    --bs-btn-active-bg: var(--bs-white);
}

.btn-white:hover {box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);}

.btn-link {
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
}


/* buttons - outline */
.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-primary);
}

.btn-outline-secondary {
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);
    --bs-btn-active-bg: var(--bs-secondary);
}

.btn-outline-success {
    --bs-btn-color: var(--bs-success);
    --bs-btn-border-color: var(--bs-success);
    --bs-btn-hover-bg: var(--bs-success);
    --bs-btn-hover-border-color: var(--bs-success);
    --bs-btn-active-bg: var(--bs-success);
}

.btn-outline-danger {
    --bs-btn-color: var(--bs-danger);
    --bs-btn-border-color: var(--bs-danger);
    --bs-btn-hover-bg: var(--bs-danger);
    --bs-btn-hover-border-color: var(--bs-danger);
    --bs-btn-active-bg: var(--bs-danger);
}

.btn-outline-warning {
    --bs-btn-color: var(--bs-warning);
    --bs-btn-border-color: var(--bs-warning);
    --bs-btn-hover-bg: var(--bs-warning);
    --bs-btn-hover-border-color: var(--bs-warning);
    --bs-btn-active-bg: var(--bs-danger);
}

.btn-outline-info {
    --bs-btn-color: var(--bs-info);
    --bs-btn-border-color: var(--bs-info);
    --bs-btn-hover-bg: var(--bs-info);
    --bs-btn-hover-border-color: var(--bs-info);
    --bs-btn-active-bg: var(--bs-info);
}

.btn-outline-light {
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-border-color: var(--bs-gray-300);
    --bs-btn-hover-bg: var(--bs-gray-300);
    --bs-btn-hover-border-color: var(--bs-gray-300);
    --bs-btn-active-bg: var(--bs-gray-300);
}

.btn-outline-dark {
    --bs-btn-color: var(--bs-dark);
    --bs-btn-border-color: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-dark);
    --bs-btn-hover-border-color: var(--bs-dark);
    --bs-btn-active-bg: var(--bs-dark);
}



/* ********************* */
/* **** color & bg ***** */
/* ********************* */
.text-primary {color: var(--bs-primary) !important;}
.text-secondary {color: var(--bs-secondary) !important;}
.text-success {color: var(--bs-success) !important;}
.text-info {color: var(--bs-info) !important;}
.text-warning {color: var(--bs-warning) !important;}
.text-danger {color: var(--bs-danger) !important;}
.text-light {color: var(--bs-light) !important;}
.text-gray {color: var(--bs-gray-300) !important;}
.text-dark {color: var(--bs-dark) !important;}

/* Background color */
.bg-primary {background-color: var(--bs-primary) !important;}
.bg-secondary {background-color: var(--bs-secondary) !important;}
.bg-success {background-color: var(--bs-success) !important;}
.bg-info {background-color: var(--bs-info) !important;}
.bg-warning {background-color: var(--bs-warning) !important;}
.bg-danger {background-color: var(--bs-danger) !important;}
.bg-light {background-color: var(--bs-light) !important;}
.bg-dark {background-color: var(--bs-dark) !important;}
.bg-white {background-color: var(--bs-white) !important;}
.bg-darkgray {background-color: var(--bs-gray-700) !important;}

.bg-admin {background-color: var(--admin-bg-color);}
.bg-admin-login {background-color:var(--admin-login-color);}



/* ********************* */
/* ******** card ******* */
/* ********************* */
.card {
    --bs-card-spacer-y: 1.5rem;
    overflow: hidden;
}

.card-img {width: 100%; height: auto; padding-bottom: 70%; position: relative; overflow: hidden;}
.card-img:hover img {-webkit-transform: scale(1.1); transform: scale(1.1); -webkit-transition: transform 0.3s ease-in-out; transition: transform 0.3s ease-in-out;}
.card-img img {width: 100%; height: 100%; position: absolute; top: 0; left: 0; object-fit: cover;}

.card-title {font-weight: 700; color: var(--bs-gray-dark);}
.card-desc {width: 100%; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}

.card-footer {background-color: transparent;}

@media screen and (min-width: 992px) {
    .card {border-width: 0;}
}



/* ********************* */
/* ******** form ******* */
/* ********************* */
.mem-btns {margin-top: 2.5rem;}

.form-check-group {height: 60px; display: flex; align-items: center; justify-content: flex-start;}
.add-group .add1 {flex: 1 1 100%;}

@media screen and (min-width: 1200px) {
    .add-group .add1 {flex: 0 1 calc(50% + 20px);}
}

.input-group .btn {min-width: 130px;}

.form-label {margin-bottom: 1rem; color: var(--bs-gray-300); font-size: 1.125rem;}

/* input */
.form-control {height: 60px; padding: 0.375rem 1.375rem; font-size: 1.125rem;}
.form-control::placeholder {color: var(--bs-gray-300);}

.form-control[type="file"] {height: auto; padding: 0.375rem 0.75rem;}



/* checkbox[type="radio"] */
.form-check {font-size: 1.125rem;}
.form-check-inline:not(:last-child) {margin-right: 1.875rem;}
.form-check-input {width: 1.125rem; height: 1.125rem; margin-top: 0.375rem; border-color: var(--bs-gray-400); background: var(--bs-gray-400) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e") no-repeat center center; background-size: 12px;}
.form-check-input:checked {background-color: var(--bs-primary); border-color: var(--bs-primary);}


/* checkbox[type="checkbox"] */
.form-check-input[type="checkbox"] {background: var(--bs-gray-400) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") no-repeat center center; background-size: 16px;}
.form-check-input[type="checkbox"]:checked {background-color: var(--bs-primary); border-color: var(--bs-primary);}


/* 회원가입 */
.form-container > .row > * {margin-bottom: 40px;}
.form-container h3 {margin-bottom: 2.5rem;} 

/* 로그인 */
.login-container .row .col {max-width: 400px;}
.login-container .form-control:nth-child(2) {margin: 0.75rem 0;}




/* ********************* */
/* ******** list ******* */
/* ********************* */
.list li {padding-left: 1.25rem; position: relative;}
.list li:not(:last-child) {margin-bottom: 1rem;}
.list li::before {content: ''; width: 3px; height: 3px; background-color: var(--bs-gray-500); position: absolute; top: 0; left: 0;}

.list-style-1 li::before {top: 9px;}
.list-style-1 li strong,
.list-style-1 li em {font-weight: 600;}

@media screen and (min-width: 1200px) {
    .list-style-1 li::before {top: 12px;}
}

/* ********************* */
/* ******* modal ******* */
/* ********************* */
.modal-header .modal-title {color: var(--bs-dark);}





/* ********************* */
/* ******* nav-tab ****** */
/* ********************* */
.nav-tab-list {width: 100%; margin-top: 2.875rem; border-bottom: 1px solid var(--bs-gray-200); display: flex; justify-content: flex-start; align-items: flex-start; overflow-x: auto; font-size: 1.125rem; font-weight: 500;}
.nav-tab-list .nav-tab-item {margin-bottom: 0; margin-right: 3rem;}

.nav-tab-item.active .nav-tab-link {color: var(--bs-dark);}
.nav-tab-item.active .nav-tab-link::after {opacity: 1; visibility: visible;}

.nav-tab-link {padding: 0.875rem 0; color: var(--bs-gray-300); display: block; position: relative; white-space: nowrap;}
.nav-tab-link::after {content: ''; width: 100%; height: 2px; background-color: var(--bs-primary); position: absolute; bottom: 0; left: 0; opacity: 0; visibility: hidden;}
.nav-tab-link:hover {color: var(--bs-dark);}
.nav-tab-link:hover::after {opacity: 1; visibility: visible;}

@media screen and (min-width: 1200px) {
    .nav-tab-list { margin-top: 4.375rem;}
}



/* ********************* */
/* ******* table ****** */
/* ********************* */
.table>:not(caption)>*>* {padding: 1rem 1rem; font-size:1rem; vertical-align: middle;}
.table thead tr {border-bottom: 1px solid var(--bs-gray-200); text-align: center;}
.table thead tr th {border-width: 0; color: var(--bs-dark); }
.table tbody tr th {background-color: var(--snb-bg);}

.table-primary {
    --bs-table-color: var(--bs-white);
    --bs-table-bg: var(--bs-primary);
    --bs-table-border-color: var(--bs-white);
    --bs-table-hover-bg: var(--bs-gray-500);
    font-weight: 400;
}

.table-primary>:not(caption)>*>* {padding: 1rem 1rem;}

.table.table-primary thead th {border-right: 1px solid var(--bs-white); color: var(--bs-white); font-weight: 500; font-size: 1.125rem;}
.table.table-primary thead tr {border-color: var(--bs-primary);}

.table-primary tbody tr {border-bottom: 1px solid var(--bs-body-color);}
.table-primary tbody tr th {color: var(--bs-primary); font-size: 1.125rem; text-align: center;}
.table-primary tbody td {background-color: var(--bs-white); color: var(--bs-dark); text-align: center; border-right: 1px solid var(--bs-gray-200); font-size: 1.125rem;}
.table-primary tbody td:last-child {border-width: 0;}



/* ******************** */
/* ****** visual ****** */
/* ******************** */
/* main-visual */
.main-visual {position: relative;}
.main-visual::after {content: ''; width: 100%; height: 56px; background: url('/images/main/mainvisual_deco.png') no-repeat center center; background-size: cover; position: absolute; bottom: 0px; left: 0; z-index: 1;}

.main-visual .visual {width: 100%; height: auto; padding: 5rem 0;}
.main-visual .visual-01 {background: url('/images/main/mainvisual_01.jpg') no-repeat center center; background-size: cover;}
.main-visual .visual-02 {background: url('/images/main/mainvisual_02.jpg') no-repeat center center; background-size: cover;}
.main-visual .visual-03 {background: url('/images/main/mainvisual_03.jpg') no-repeat center center; background-size: cover;}

.main-visual .visual .container {width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;}


.main-logo {margin-bottom: 3.75rem;}
.main-logo .catch {display: block; margin-top: 1.75rem;}

.visual-quick-menu {display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.875rem}
.visual-quick-menu .quick-item {width: 140px; height: 140px; -webkit-border-radius: 50rem; border-radius: 50rem; overflow: hidden;}
.visual-quick-menu .quick-link {width: 100%; height: 100%; padding: 1rem; color: var(--bs-white); background-color: rgba(255, 255, 255, 0.25); display: flex; justify-content: center; align-items: center; text-align: center; line-height: 1.3;}
.visual-quick-menu .quick-link:hover {background-color: var(--bs-primary);}



@media screen and (min-width: 1200px) {
    .main-visual .visual {height: 908px;}
}


/* sub-visual */
.sub-visual {width: 100%; background: url('/images/sub/subvisual.jpg') no-repeat center center; background-size: cover; position: relative;}
.sub-visual::after {content: ''; width: 100%; height: 56px; background: url('/images/main/mainvisual_deco.png') no-repeat center center; background-size: cover; position: absolute; bottom: 0; left: 0; z-index: 1;}
.sub-visual .container {width: 100%; min-height: 406px; padding-top: 8rem; padding-bottom: 5rem; display: flex; justify-content: flex-end; align-items: flex-end;}
.subvisual-logo {width: calc(100% - 8%); height: auto; position: absolute; top: 25px; left: 4%; z-index: 1003;}

/* ********************* */
/* ***** side-nav ****** */
/* ********************* */
.spy-nav {position: fixed; right: 20px; bottom: 0; z-index: 100; }
.spy-nav-list {position: relative;}
.spy-nav-list::before {content: 'Scroll'; font-size: 0.75rem; font-weight: 700; color: var(--bs-primary); text-transform: uppercase; position: absolute; right: calc(100% + 5px); bottom: 10px; writing-mode: vertical-rl;}
.spy-nav-item a {width: 2px; height: 40px; background-color: var(--bs-gray-500); display: block;}
.spy-nav-item a.on {background-color: var(--bs-primary);}
.spy-nav-item a:hover {background-color: var(--bs-primary);}

@media screen and (min-width: 1440px) {
    .spy-nav {right: 180px;}
}


/* ******************** */
/* ******** snb ******* */
/* ******************** */
/* desktop */
.snb {border-bottom: 1px solid var(--bs-gray-200);}
.snb-list li.active a {color: var(--bs-primary); border-bottom: 4px solid var(--bs-primary);}
.snb-list li a {padding: 1.5rem; color: var(--bs-body-color); display: block;}


/* mobild */
.snb-list {display: flex; justify-content: flex-start; align-items: flex-start;  font-size: 1.125rem; font-weight: 500;}
.snb-list .snb-item {border-right: 1px solid var(--bs-gray-200); position: relative;}
.snb-list .snb-item.home {height: 70px; padding-left: 0.875rem; padding-right: 0.875rem; line-height: 70px;}

.snb-list .dropdown {width: calc(50% - 22.5px);}
.snb-list .dropdown-toggle {width: 100%; height: 70px; padding-left: 0.875rem; padding-right: 1.5rem; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; text-align: left; position: relative; outline: 0; border: none; font-weight: 500;}
.snb-list .dropdown-toggle:focus {outline: 0; border: none;}
.snb-list .dropdown-toggle::after {position: absolute; top: 50%; right: 4%; -webkit-transform: translateY(-50%); transform: translateY(-50%);}
.snb-list .dropdown-toggle.on {color: var(--bs-primary);}
.snb-list .dropdown-toggle.show::after { -webkit-transform: translateY(-40%) rotate(180deg); transform: translateY(-40%)rotate(180deg);}

.snb-list .dropdown-toggle i.bi {position: absolute; right: 0.75rem; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%);}

.snb-list .dropdown-menu {min-width: 0; width: 100%; padding-top: 0; padding-bottom: 0; z-index: 2000;}
.snb-list .dropdown-menu a {display: block; width: 100%; padding: 0.5rem 0.875rem; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.snb-list .dropdown-menu a:hover {color: var(--bs-primary); background-color: var(--bs-gray-300); font-weight: 500;}

@media screen and (min-width: 768px) {
    .snb-list .snb-item.home {font-size: 1.125rem;}
    /* .snb-list .snb-item:last-child {border-width: 1px;} */
}


@media screen and (min-width: 1440px) {
    .snb-list {justify-content: space-between;}
    .snb-list .snb-item {border-width: 0;}
}



/* ******************** */
/* ****** swiper ****** */
/* ******************** */
.swiper-pagination-bullet-active {background-color: var(--bs-primary);}






/* ********************* */
/* ******* header ****** */
/* ********************* */
.header {width: 100%; height: auto; position: absolute; top: 0; left: 0; z-index: 1002;}
.header .container-fluid {max-width: 1920px;}

.header .dropdown-toggle {width: 100%; height: 35px; padding:0.3rem 0.5rem; font-size: 0.875rem; color: var(--bs-white);}
.header .dropdown-toggle.show .fa-angle-down {transform: rotate(180deg);}
.header .dropdown-toggle::after {display: none;}
.header .dropdown-toggle:active {color: var(--bs-white); border-color: var(--bs-white);}

.header .dropdown-menu {min-width: 0; width: 100%; text-align: center;}

/* logo */
.navbar-brand {margin-right: 0; margin-bottom: 0; position: absolute; top: 50%; left: 4%; -webkit-transform: translateY(-50%); transform: translateY(-50%);}

@media screen and (min-width: 1200px) {
    .navbar-brand {position: relative; top: auto; left: auto; -webkit-transform: none; transform: none;}
}


/* nav-top */
.nav-top {padding: 1.5rem 0;}
.nav-top > .container-fluid {display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center;}

@media screen and (min-width: 1200px) {
    .nav-top > .container-fluid {justify-content: space-between;}
}

/* gnb */
.gnb {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0;
    width: 100%; border-top: 1px solid rgba(255, 255, 255, 0.2); display: none;
}

.gnb .nav-list {width: 100%; display: flex; justify-content: space-between; align-items: stretch}

.gnb .nav-item {position: relative; display: inline-flex; align-items: center; justify-content: center;}
.gnb .nav-item:hover .nav-link {color: var(--bs-primary);}
.gnb .nav-item.active::after,
.gnb .nav-item:hover::after {opacity: 1; visibility: visible;}
.gnb .nav-item::after {content: ''; width: 11px; height: 11px; background-color: var(--bs-primary); position: absolute; top: 0px; left: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); -webkit-border-radius: 50rem; border-radius: 50rem; opacity: 0; visibility: hidden;}
.gnb .nav-item:first-child::after {left: calc(50% - 0.5rem);}
.gnb .nav-item:last-child::after {left: calc(50% + 0.5rem);}

.gnb .nav-item.active > a {color: var(--bs-primary);}

.gnb .nav-item .nav-link {padding: 1rem 1rem; font-size: 1.125rem; color: var(--bs-white); font-weight: 500; text-align: center; line-height: 1.2;}
.gnb .nav-item:first-child .nav-link {padding-left: 0;}
.gnb .nav-item:last-child .nav-link {padding-right: 0;}
.gnb .nav-item:hover .submenu {display: block;}

.gnb .nav-item:first-child .submenu {left: -1.25rem;}
.gnb .nav-item:last-child .submenu {left: auto; right: -1.25rem;}

/* submenu */
.submenu {min-width: 120px; padding: 1.25rem; background-color: var(--bs-white); border: 1px solid var(--bs-gray-300); font-weight: 500; -webkit-border-radius: 0.5rem; border-radius: 0.5rem; position: absolute; top: 100%; left: -0.25rem; box-shadow: 1px 0px 3px rgba(0,0,0,0.3); white-space: nowrap; display: none;}

.sub-item:not(:last-child) {margin-bottom: 0.5rem;}
.sub-item.active .sub-link {color: var(--bs-gray);}

.sub-link {color: inherit; position: relative; display: inline-block;}
.sub-link:hover {color: var(--bs-gray);}

.position-x-center {left: 50% !important; -webkit-transform: translateX(-50%); transform: translateX(-50%);}


/* util-menu [PC] */
.util-menu {display: flex; justify-content: flex-start; align-items: center;}

.util-item:not(:last-child) {margin-right: 0.5rem; margin-bottom: 0;}

.util-link {
    width: 88px; height: 30px; color: var(--bs-white);  background-color: var(--bs-primary); font-size: 0.9375rem; font-weight: 500; display: inline-flex; justify-content: center; align-items: center; -webkit-border-radius: 50rem; border-radius: 50rem;
}
.util-link.gray {background-color: rgba(255, 255, 255, 0.25);}
.util-link:hover {color: var(--bs-white);}
.util-link:active {color: var(--bs-dark);}


/* util-menu [mobile] */
.util-menu.mobile .util-link {width: auto; height: auto; background-color: transparent; font-size: 2rem;}

/* 전체메뉴 버튼 */
.btn-trigger {
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-active-color: var(--bs-dark);
    margin-left: 0.5rem; font-size: 2rem; color: var(--bs-white);
}

@media screen and (min-width: 1200px) {
    .gnb {display: flex;}
    .btn-trigger {display: none;}
}



/* 전체 메뉴 */
.all-menu {width: 100%; height: 100%; background-color: var(--bs-white); position: fixed; top: 0; left: 0; z-index: 1100; display: none;}
.all-menu .container {width: 100%; height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;}

.all-menu-header {width: 100%; padding: 1.5rem 0; display: flex; justify-content: flex-end; align-items: center; position: relative;}
.all-menu-header .btn-close {margin-left: 0.5rem; opacity: 1; font-size: 1.5rem;}

.all-menu .home {font-size: 1.375rem; font-weight: 400; color: var(--bs-gray); position: absolute; top: 50%; left: 0; -webkit-transform: translateY(-50%); transform: translateY(-50%);}
.all-menu .home .bi {padding-right: 0.25rem; font-size: 2rem; color: var(--bs-dark);}
.all-menu .home .bi::before {font-weight: 500 !important;}

.all-util-link {font-size: 2rem;}

.all-menu-nav {width: 100%; height: calc(100vh - 300px); margin-bottom: 2rem; padding: 1.5rem 0; flex: 1; overflow-y: auto;}

.all-menu-list {width: 100%;}
.all-menu-list .all-link,
.all-menu-list .btn-allmenu {padding: 0.625rem 0; font-size: 1.25rem; font-weight: 700; color: var(--bs-dark); display: inline-block;}

.all-menu-list .btn-allmenu {border-width: 0; text-align: start;}
.all-menu-list .btn-allmenu .bi {font-size: 1rem; margin-left: 0.5rem;}
.all-menu-list .btn-allmenu.active {color: var(--bs-primary);}
.all-menu-list .btn-allmenu.active .bi::before {-webkit-transform: rotate(180deg); transform: rotate(180deg);}
.all-menu-list .btn-allmenu.active + .all-submenu {display: block;}

.all-submenu {padding: 1rem; margin-bottom: 1rem; font-size: 1rem; font-weight: 500; background-color: var(--bs-gray-100); display: none;}


.all-menu-footer {width: 100%; height: 85px; padding: 1rem 0; border-top: 1px solid var(--bs-gray-300);}

.all-foot-list {font-weight: 400;}
.all-foot-list .all-foot-item:not(:last-child) {margin-bottom: 0.2rem;}
.all-foot-list .all-foot-item b {display: inline-block; color: var(--bs-dark);}
.all-foot-list .dropdown-toggle {max-width: 95px; margin-left: auto; margin-top: 1rem; color: var(--bs-dark); border-color: var(--bs-dark); display: block;}
.all-foot-list .dropdown-menu {max-width: 95px; border-color: var(--bs-dark);}


@media screen and (min-width: 576px) {
    .all-menu-list .all-link,
    .all-menu-list .btn-allmenu {font-size: 1.5rem;}
    .all-submenu {font-size: 1.125rem;}
}


.nav-quick-menu {width: 100%; margin:1rem 0 1.5rem 0;}

.quick-menu-list {display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: stretch; gap: 1rem;}

.quick-menu-list li {flex: 1 1 40%; -webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden;}
.quick-menu-list li:nth-child(odd) {background-color: #f3f3f3;}
.quick-menu-list li:nth-child(even) {background-color: #eef2db;}

.quick-menu-list li a {width: 100%; height: 100%; min-height: 100px; padding: 1rem; display: block; text-align: center; font-weight: bold; display: flex; justify-content: center; align-items: center;}

@media screen and (min-width: 576px) {
    .quick-menu-list li {flex: 1 1 20%;}
}

@media screen and (min-width: 768px) {
    .quick-menu-list {gap: 1.5rem;}
}

@media screen and (min-width: 1200px) {
    .quick-menu-list li {flex: 0 1 160px;}
}


/* ********************** */
/* *** header-isFixed *** */
/* ********************** */
.header.isFixed {/* background-color: var(--bs-dark); */ background-color: rgba(0,0,0,0.8);}

@media screen and (min-width: 1200px) {
    /* .header.isFixed .navbar-brand {display: inline-block;} */
}


/* ********************** */
/* *********quick******** */
/* ********************** */
.quick-menu {position: fixed; top: auto; bottom: 15vh; right: 0px; z-index: 400; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); -webkit-transition: all 200ms linear; transition: all 200ms linear;}
.quick-menu li {width: 70px; height: 60px; padding-left: 10px; position: relative;}
.quick-menu li:hover .quick-nav-text {display: block;}
.quick-menu li:not(:last-child) {margin-bottom: 8px;}
.quick-menu li a {display: block; width: 100%; height: 100%;}
.quick-menu .quick-nav-text {padding: 8px 16px; background-color: var(--bs-white); color: var(--bs-dark); position: absolute; top: 50%; right: 100%; -webkit-transform: translateY(-50%); transform: translateY(-50%); border-radius: 8px; white-space: nowrap; box-shadow: 1px 0px 3px rgba(0,0,0,0.3); display: none;}
.quick-menu .quick-nav-text:hover {color: var(--bs-primary);}
.quick-menu .btn-topScroll {width: 60px; height: 60px; background-color: var(--bs-primary);}
.quick-open .quick-menu {-webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); right: 20px;}
.btn-quick { --bs-btn-border-width: 4px;--bs-btn-border-color: var(--bs-primary);--bs-btn-color: var(--bs-primary);width: 85px; height: 85px; position: fixed; bottom: 20px; right: 20px;
font-weight: 700; z-index: 900; background-color: var(--bs-white);-webkit-border-radius: 50%; border-radius: 50%; padding: 0;}
.btn-quick:hover {border: 4px solid var(--bs-primary); background-color: var(--bs-white); color: var(--bs-primary);}
.btn-quick.is-active {--bs-btn-color: var(--bs-white);background-color: var(--bs-primary);}
.btn-quick.is-active:hover {color: var(--bs-white);}

@media screen and (min-width: 992px) {
    .quick-menu {-webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); right: 20px;}
    .btn-quick {display: none;}
}


/* ******************** */
/* ******* title ****** */
/* ******************** */

/* 타이틀 공통사항 */
.section-header {margin-bottom: 3rem;}
h2.title {font-size: 2.5rem; }

@media screen and (min-width: 1200px) {
    .section-header {margin-bottom: 4.375rem;}
}


/* ******************** */
/* ******** main ****** */
/* ******************** */
/* main-about */
.about-section .container {position: relative;}

@media screen and (min-width: 992px) {
    .about-cards {width: 100%; height: auto; margin-left: 0; margin-right: 0; position: absolute; top: 90%; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); z-index: 1;}
}


/* main-portfolio */
.portfolio-section {width: 100%; height: auto; min-height: 100vh; background: url('/images/main/about_img_01.jpg') no-repeat center center; background-size: cover; background-attachment: fixed; color: var(--bs-white); display: flex; flex-direction: column; justify-content: flex-start; align-items: center;}

.portfolio-list {display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: flex-start;}
.portfolio-list li {flex: 1 0 100%; padding: 1.5rem 0; }
.portfolio-list li:not(:last-child) {border-bottom:1px solid rgba(255, 255, 255, 0.2);}

.portfolio-icon {width: 50px; height: 50px; display: inline-block; background-color: var(--bs-primary); -webkit-border-radius: 50rem; border-radius: 50rem; text-align: center; line-height: 44px;}
.portfolio-icon i {font-size: 1.5rem;}
.portfolio-title {margin-top: 0.875rem; margin-bottom: 1rem;}

@media screen and (min-width: 576px) {
    .portfolio-list li {flex: 1 0 50%; min-height: 250px; padding: 1.5rem 1.5rem; border-bottom:1px solid rgba(255, 255, 255, 0.2);}
    .portfolio-list li:nth-child(odd) {border-right: 1px solid rgba(255, 255, 255, 0.2);}
    .portfolio-list li:nth-last-child(-n+2) {border-bottom: 0;}
}


@media screen and (min-width: 992px) {
    .portfolio-section {padding-top: 320px; justify-content: center;}
}



/* main-project */
.project-section > .container {position: relative; padding-bottom: 40px;}
.project-slide {position: static;}
.project-slide .swiper-slide {border: 1px solid var(--bs-gray-200); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden;}
.project-slide .swiper-slide img {width: 100%;}

.project-info {width: 100%; min-height: 80px; padding: 1rem 1.25rem; background-color: var(--bs-white); color: var(--bs-gray-dark); border-top: 4px solid var(--bs-primary); display: flex; justify-content: flex-start; align-items: flex-start;}
.project-info .form-check-input {min-width: 16px; margin-top: 0.1rem;}

.project-slide .swiper-pagination {bottom: 0px;}



/* main-customer */
.customer-section {width: 100%; height: auto; background-image: linear-gradient(180deg, rgba(30, 24, 53, 0.4) 0%, rgba(30, 24, 53, 0.4) 90.16%), url('/images/main/mainvisual_02.jpg'); background-size: cover; background-repeat: no-repeat; background-position: center center; background-attachment: fixed;}
.customer-section * {color: var(--bs-white);}




/* ******************** */
/* ******** sub ******* */
/* ******************** */

/* Dr.Kim - Meet Sungtae Kim DDS, PhD */
.doctor {-webkit-border-radius: 3.125rem; border-radius: 3.125rem; overflow: hidden; border-top-right-radius: 0;}

.doctor .avatar {border-bottom: 6px solid var(--bs-white);}
.doctor .avatar img {width: 100%; height: auto;}

.doctor .profile {padding: 3rem 2rem 2.5rem; background: #d7dee3 url('/images/common/profile_bg_logo.png') no-repeat -10px -40px; background-size: 100% auto;}

@media screen and (min-width: 576px) {
    .doctor .profile {padding: 3.5rem 2.5rem 3rem;}
}

@media screen and (min-width: 768px) {
    .doctor {display: flex; justify-content: flex-start; align-items: stretch;}
    .doctor .avatar {border-bottom: 0; border-right: 6px solid var(--bs-white);}
    .doctor .profile {flex: 1 1 auto; padding: 3.5rem 2.75rem 3.375rem; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; background-position: -10px -20px;}
}

@media screen and (min-width: 1200px) {
    .doctor .profile {background-position: -15px -150px;}
}

@media screen and (min-width: 1440px) {
    .doctor .profile {background-position: -15px -150px;}
}


/* Dr.Kim - Biography */
.biography .row > .col {display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end;}

.biography-img {margin-top: 3rem; border-bottom-right-radius: 3.125rem; overflow: hidden;}
.biography-img img {width: 100%; height: auto;}

@media screen and (min-width: 767px) {
    .biography-img img {width: auto; max-width: 100%;} 
}

@media screen and (min-width: 1100px) {
    .biography-img {margin-top: 0;}
}



/* Dr.Kim - Presentations */
.presentation .row {gap: 1.5rem 0;}

.number-list {
    counter-reset: number; display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: stretch; gap: 1.5rem;
}

.number-list li {width: 1%; padding:2rem; position: relative; -webkit-border-radius: 0.5rem; border-radius: 0.5rem; flex: 1 1 100%;}
.number-list li:not(:last-child) {margin-bottom: 0;}
.number-list li::before {content: "0" counter(number); counter-increment: number; margin-bottom: 0.875rem; font-size: 1.125rem; font-weight: 700; color: var(--bs-primary); display: block;}
.number-list li:nth-child(odd) {background-color: #eef2db;}
.number-list li:nth-child(even) {background-color: #f3f3f3;}

.bg-light-box {width: 100%; min-height: 120px; background-color: var(--bs-light); display: flex; justify-content: center; align-items: center; text-align: center; -webkit-border-radius: 0.5rem; border-radius: 0.5rem;}

@media screen and (min-width: 576px) {
    .number-list li {flex: 0 1 calc(50% - 0.75rem);}
}

@media screen and (min-width: 768px) {
    .number-list li {flex: 1 1 calc(33.3% - 1.5rem);}
}


@media screen and (min-width: 1200px) {
    .number-list li {padding:2rem 2.5rem; flex: 0 1 calc(20% - 1.5rem);}

    .presentation .row .col {flex: 0 1 300px;}
}



/* Dr.Kim - Publications */
.publication,
.awards {margin-bottom: 3rem;}
.publication dt,
.awards dt {margin-bottom: 1rem;}

@media screen and (min-width: 992px) {
    .publication,
    .awards {display: flex; justify-content: flex-start; align-items: flex-start;}
    .publication dt {min-width: 140px;}
    .awards dt {min-width: 140px; margin-bottom: 0;}
}


@media screen and (min-width: 1200px) {
    .publication,
    .awards {margin-bottom: 5rem;}
}


/* Dr.Kim - About Our Clinical Research Team */
.member-name {margin-bottom: 1.875rem;}


.team ul {margin-top: 0.625rem; margin-bottom: 1.875rem;}





/* Dr.Cho - Meet Dr. Cho in CK institute */
.doctor.skyblue .profile {padding: 3rem 2rem 2.5rem; background: #bddceb url('/images/common/profile_bg_logo.png') no-repeat -10px -40px; background-size: 100% auto;}


/* Dr.Cho - Publications, Patents, and Books */
/* Patents */
.patents-section .bg-light-box {min-height: 150px;}

/* Books */
.books-section .bg-light-box {min-height: 460px; padding: 3rem 1rem 1rem; flex-direction: column; justify-content: flex-start;}
.books-section .bg-light-box .subject {margin-top: -2.5rem;}


@media screen and (min-width: 1200px) {
    .books-section .bg-light-box {padding: 3.75rem 1rem 1rem;}
}


/* Dr.Cho - National Research Grant */
.national-section .bg-light-box {min-height: 100px; padding: 1.875rem 1.875rem; flex-direction: column; align-items: flex-start; text-align: left;}
.national-section .bg-light-box:not(:last-child) {margin-bottom: 1.25rem;}

@media screen and (min-width: 1200px) {
    .national-section .bg-light-box {padding: 1rem 1.875rem; }
}


/* Dr.Cho - About our basic research lab */
.phd .member-name {margin-bottom: 1.625rem;}
.member-introduce {margin-top: 2.5rem;}
.member-introduce p:not(:last-child) {margin-bottom: 1.875rem;}


/* Periodontal Plastic Sugery - Gingival Phenotype Modification */
.img-list {width: 100%; margin-top: 2.125rem; margin-bottom: 2.5rem; display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: stretch; gap:3px 6px; border-top-left-radius: 3.125rem; border-bottom-right-radius: 3.125rem; overflow: hidden;}
.img-list.mt-80 {margin-top: 3rem;}
.img-list li {flex: 1 1 auto;}
.img-list.list-col-4 li {flex: 1 1 100%;}
.img-list.list-col-5 li {flex: 1 1 100%;}
.img-list li img {width: 100%; height: auto;}

@media screen and (min-width: 992px) {
    .img-list.mt-80 {margin-top: 5rem;}
    .img-list li {flex: 1 1 25%;}
    .img-list.list-col-4 li {flex: 1 1 20%;}
    .img-list.list-col-5 li {flex: 1 1 19%;}
}


/* course */
.board-section .course {margin-bottom: 3rem;}
.course {padding: 2rem; background-color: var(--bs-light); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden;}

.course-link {width: 100%; height: 100%; padding: 2rem; padding-bottom: 4.5rem; display: block; background-color: var(--bs-light); position: relative;}
.course-link:hover {background-color: var(--bs-primary);}
.course-link:hover .bi-plus-lg {color: var(--bs-white);}
.course-link .bi-plus-lg {position: absolute; bottom: 1rem; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); color: var(--bs-gray-300);}

.course-title {margin-bottom: 0;}

.course.hover-none:hover {background-color: var(--bs-light);}
.course.hover-none:hover .course-info li b {color: var(--bs-gray-300);}

.course:not(:last-child) {margin-bottom: 1.875rem;}


@media screen and (min-width: 992px) {
    .course-link {padding-bottom: 2rem; padding-right: 6.5rem;}
    .course-link .bi-plus-lg {top: 50%; bottom: auto; left: auto; right: 2rem; -webkit-transform: translateY(-50%); transform: translateY(-50%);}
}

@media screen and (min-width: 1200px) {
    .board-section .course {margin-bottom: 5rem;}
    .course {padding: 3rem;}
    .course-link {padding: 3rem; padding-right: 6.5rem;}
    .course-link .bi-plus-lg {right: 3.125rem;}
}

.course-c {margin-top: 3rem; text-align: center;}

@media screen and (min-width: 1200px) {
    .course-c {margin-top: 5rem;}
}

.course-btns {margin-top: 3rem; text-align: center;}
.course-btns .btn {width: 100%; height: 60px; line-height: 40px; font-weight: 600;}
.course-btns .btn-inquiry {margin-bottom: 0.5rem;}


@media screen and (min-width: 412px) {
    .course-btns .btn-list {width: 100px;}
    .course-btns .btn-inquiry {width: calc(100% - 110px); max-width: 300px; margin-bottom: 0; margin-right: 0.375rem;}
}


@media screen and (min-width: 1200px) {
    .course-btns {margin-top: 5rem;}
    .course-btns .btn {min-width: 100px; font-size: 1.125rem;}
    .course-btns .btn.btn-inquiry {min-width: 300px;}
}



/* contact */
.contact-info {padding: 2rem; margin-bottom: 3rem; background-color: var(--bs-light); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden;}

.contact-list {display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center;}
.contact-list li {flex: 1 1 100%;}
.contact-list li:not(:last-child) {margin-bottom: 0.875rem;}
.contact-list li b {min-width: 85px; color: var(--bs-gray-300); display: block;}

@media screen and (min-width: 768px) {
    .contact-list li b {display: inline-block; margin-right: -5px;}
}

@media screen and (min-width: 1200px) {
    .contact-info {padding: 3rem; margin-bottom: 5rem;}
}






/* ********************* */
/* ******* footer ****** */
/* ********************* */
.footer {padding: 1.625rem 0; background-color: var(--bs-gray-100); font-size: 0.875rem; font-weight: 300; position: relative;}


.footer .container {position: relative;}

.address-list {display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center;}
.address-list li:not(:last-child) {padding-right: 1rem;}

.policy-list {display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center;}
.policy-list li:last-child {width: 100%; margin-top: 0.5rem;}
.policy-list li:not(:last-child) {padding-right: 1rem;}
.policy-list li b {font-weight: bold;}
.policy-list li a:hover {color: inherit; text-decoration: underline;}

.copyright {margin-bottom: 0;}

@media screen and (min-width: 576px) {
    .policy-list li:last-child {width: auto; margin-top: 0rem;}
}

@media screen and (min-width: 1200px) {
    .policy-list {position: absolute; top: 50%; right: 20px; -webkit-transform: translateY(-50%); transform: translateY(-50%);}
    .footer ul,
    .footer p {font-size: inherit;}
}


/* ******************** */
/* ******* Board ****** */
/* ******************** */
/* bbs.top */
.board-title {margin-bottom: 48px; text-align: center; color: var(--dark); display: none;}
.board-title h2 {line-height: 1.5;}
.board-title p {color: var(--bs-body-color);}

.board-category {height: auto; margin: 48px 0; flex-wrap: wrap; justify-content: center;}
.board-category .nav-item {margin: 0.25rem;}
.board-category .nav-item .nav-link {padding: 0.5rem 1rem;  border:1px solid var(--bs-gray-300); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; display: block; color: var(--bs-dark);}
.board-category .nav-item .nav-link.active {border-color: var(--bs-primary); color: var(--bs-white); background-color: var(--bs-primary);}
.board-category .nav-item .nav-link:hover {border-color: var(--bs-primary); color: var(--bs-white); background-color: var(--bs-primary);}



/* list */
/* board-top */
.board-top {display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap;}
.board-top > div {margin-bottom: 16px;}
.board-top form {width: 100%;}
.board-top .total-count .count {color: var(--bs-dark); font-weight: 700;}

.search-wrap {display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center;}
.search-wrap .form-select {margin: 8px 0;}
.search-bar {width: 100%; border-bottom: 2px solid var(--bs-dark);}
.search-bar .form-control {border-width: 0;}
.search-bar .input-group-text {min-width: auto; padding-right: 0; font-size: 1.25rem;}

@media screen and (min-width: 576px) {
    .search-wrap .form-select {flex: 1 1 calc(50% - 4px);}
    .search-wrap .form-select[name="category"] {margin-right: 8px;}
}

@media screen and (min-width: 768px) {
    .board-top form {width: auto;}
    .search-wrap {flex-wrap: nowrap;}
    .search-wrap .form-select {margin-top: 0; margin-bottom: 0; margin-right: 8px; min-width: 150px;}
    .search-bar {min-width: 360px;}
}

/* all-chk */
.all-chk {margin-top: 16px;}
.all-chk .form-check-input {margin-top: 0.2em;}

/* 공지 아이콘 */
.icon-bell {width: 30px; height: 30px; background-color: var(--bs-secondary); display: flex; justify-content: center; align-items: center; margin: 0 auto;}
.icon-bell .bi-bell-fill::before {vertical-align: -0.15em;}
.board-list {word-break: break-all;}
.board-list>.row {margin-top: 48px;}
.board-list .subject {margin-top: 20px;}
.board-list .subject a {color: var(--bs-dark);}

.board-list .badge {padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;}

.board-list table {margin-top: 48px; /* min-width: 800px; */  text-align: center;}
.board-list table thead {border-top: 2px solid var(--bs-dark); border-bottom: 1px solid var(--bs-gray-100);}
.board-list table thead th {color: var(--bs-dark); font-weight: 700;}
.board-list table tbody td {text-align: center;}

.board-list table tbody tr.notice:hover {--bs-table-accent-bg: var(--bs-lightblue);}

.md-hide {display: none;}

@media screen and (min-width: 768px) {
    .md-hide {display:table-cell;}
}

/* pagenation */
.pagination {padding: 0.375rem 0.75rem; margin-top: 40px; display: flex; justify-content: center; align-items: center;}
.page-item-c {color: var(--body-color);}
.page-item-c.active a {color: var(--bs-danger);}
.page-link-c {position: relative; display: block; padding: 0.375rem 0.75rem; font-weight: 700 }
.page-link-c img {min-width: 8px;}

.bi.bi-chevron-bar-right::before {content: ''; width: 14px; height: 13px; background: url('/images/common/btn/btn_paging_next_end.png') no-repeat center center; display: inline-block;}

.bi.bi-chevron-bar-left::before {content: ''; width: 14px; height: 13px; background: url('/images/common/btn/btn_paging_prev_end.png') no-repeat center center; display: inline-block;}

@media screen and (min-width: 1200px) {
    .pagination {font-size: 1.125rem; margin-top: 48px;}
}



/* view */
.board-view {word-break: break-all;}
.board-view .table {table-layout: fixed;}
.board-view .table th,
.board-view .table td {border-bottom: 1px solid var(--bs-gray-300);}
.board-view .table tbody {border-top: 2px solid var(--bs-dark);}
.board-view .table tbody tr.content td{padding: 1.5rem 1rem;}
.board-view .table tbody tr:not(.content) th {background-color: var(--bs-gray-100); color: var(--bs-dark); font-weight: 500;}
.board-view .table tbody tr.img td {min-height: 53px; display: flex; flex-wrap: wrap; justify-content: flex-start; word-break: break-all;}
.board-view .table tbody tr.img td a {width: 100%;}

.board-view .table tbody tr.file td {min-height: 53px; display: flex; flex-wrap: wrap; justify-content: flex-start; word-break: break-all;}
.board-view .table tbody tr.file td a {width: 100%;}

.board-view #DivContents img {max-width: 100%;}

@media screen and (min-width: 768px) {
    .board-view .table tbody tr.file td {gap: 8px;}
    .board-view .table tbody tr.file td a {width: auto;}
}

.view-title {margin-bottom: 8px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;}
.view-title .title {display: flex; flex-wrap: wrap; justify-content: flex-start; align-items: center;}
.view-title .title .badge {padding: 0.5rem 0.75rem; margin-bottom: 0.5rem; margin-right: 8px; font-size: 0.875rem; font-weight: 500;}
.view-title .title h4 {width: 100%; margin-bottom: 0; text-align: left; color: var(--bs-dark); font-weight: 500;}
.view-title .title .date {font-size: 1rem; font-weight: 400;  margin-top: 8px;}

.writer-wrap {margin-top: 8px; font-weight: 400;}
.writer-wrap .writer {color: var(--bs-primary);}
.writer-wrap span:not(.writer) {padding: 0 8px; display: inline-block;}

@media screen and (min-width: 768px) {
    .board-view .table tbody tr.content td{padding: 2rem 1.5rem;}
    .view-title {margin-bottom: 16px;}
    .writer-wrap {margin-top: 0px;}
}

@media screen and (min-width: 1200px){
    .view-title .title .date {margin-top: 0px;}
}



/* comment */
.comment-count {font-size: 1rem;}
.comment-icon {width:22px; height: 22px; display: inline-block; background-color: var(--bs-gray-300); border-radius: 4px; text-align: center; line-height: 22px;}
.comment-date {color: var(--body-color); margin-left: 4px;}

.board-view .btn-gray-2 {width: 120px; height: 100px; margin-left: 8px !important; border-radius: 6px !important;}

.list-group-flush {text-align: left;}
.list-group-flush li {padding: 30px 20px !important; background-color: var(--bs-gray-100); border-top: 1px solid var(--bs-gray-200); color: var(--bs-body-color);}
.list-group-flush>.list-group-item {border-width: 1px 0 0;}
.list-group-flush li span b {color: var(--bs-dark);}

.comment-writer .writer {display: block; line-height: 1; font-weight: 500;}

.comment-options,
.comment-cencel {position: absolute; top: 1.375rem; right: 1.375rem;}
.comment-options .btn,
.comment-cencel .btn {width: 22px; height: 22px; padding: 0; text-align: center; line-height: 22px; background-color: var(--bs-gray-400); font-size: 0.875rem;}

.comment-form textarea.form-control {width: 100%; height: 100px; -webkit-border-radius: 0.5rem !important; border-radius: 0.5rem !important;}
.comment-form .btn {width: 100%; height: 50px; -webkit-border-radius: 0.5rem !important; border-radius: 0.5rem !important;}

@media screen and (min-width: 576px) {

}


@media screen and (min-width: 576px) {
    .comment-writer .writer {display: inline-block; font-size: 1.125rem;}
}

@media screen and (min-width: 768px) {
    .comment-form textarea.form-control {width: calc(100% - 128px);}
    .comment-form .btn {width: 120px; height: 100px;  margin-top: 0; margin-left: 8px !important;}
}



.comment-write-form {padding-top: 24px; border-top: 1px dashed var(--bs-gray-300);}




/* form */
.board-form {border-top: 2px solid var(--bs-dark); padding-left: 0; padding-right: 0;}
.board-form .form-group.row {margin-left: 0; margin-right: 0;}
.board-form .form-group .col-form-label {color: var(--bs-dark); padding: 20px 0 8px 0; font-weight: 500; display: flex; justify-content: flex-start; align-items: center; padding: 1rem;}
.board-form + .board-btns {justify-content: center;}

.board-form .form-group {border-bottom: 0;}


@media screen and (min-width: 576px) {
    .board-form .form-group {border-bottom: 1px solid var(--bs-gray-300);}
    .board-form .form-group .col-form-label {background-color: var(--bs-gray-100);}
    .board-form .col-sm-10 {padding: 1rem;}
}

/* board-btns */
.board-btns {margin-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between;}
.board-btns .btn {min-width: 90px; height: 50px; margin: 8px; margin-left: 0;}
.board-btns .btn-md {min-width: 120px;}
.board-btns .left {display: flex; flex-wrap: wrap; justify-content: flex-start; }

.board-btns .btn-lg {width: 100%; max-width: 300px;}

@media screen and (min-width: 992px) {
    .board-btns {margin-top: 48px;}
}


@media screen and (min-width: 1200px) {
    .board-btns .btn {height: 60px; font-size: 18px;}
}



.empty-list {padding: 48px 0; text-align: center; border-top: 1px solid var(--bs-gray-300); border-bottom: 1px solid var(--bs-gray-300);}



/* ************************* */
/* ** 홍보동영상 (G.video) ** */
/* ************************* */
.video-wrap {position: relative; padding-bottom: 56.25%; margin-bottom: 20px; overflow: hidden;}
.video-wrap iframe,
.video-wrap object,
.video-wrap embed {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}



/* ************************* */
/* ** 제품소개 (G.Product) ** */
/* ************************* */
/* list */
.g-product {margin-bottom: 48px;}
.g-product:last-child {margin-bottom: 0;}
.g-product a {display: block; padding-bottom: 100%; border: 1px solid var(--bs-gray-300);-webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden; text-align: center; position: relative;}
.g-product a img {width: 100%; height: 100%; position: absolute; top: 50%; left: 50%; object-fit: cover; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}
.g-product + div {text-align: left;}
.g-product .form-check-input {min-width: 16px;}
.g-product p {margin-bottom: 0; color: var(--bs-dark); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-weight: 400;}

@media screen and (min-width: 1200px) {
    .g-product p {font-size: 1.125rem;}
}

/* view */
.g-product-img {border: 1px solid var(--bs-gray-300); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden;}
.g-product-btns {display: flex; justify-content: flex-start; align-items: center;}
.g-product-btns .btn {flex:1 1 calc(100% - 5px); height: 50px; line-height: 38px;}

@media screen and (min-width: 1200px) {
    .g-product-btns .btn {height: 60px; line-height: 48px;}
}


/* ************************* */
/* ***** faq (F.basic) ***** */
/* ************************* */
.board-view.faq span:not(.badge) { color: var(--bs-body-color) !important;}
.accordion-wrap {border-top: 2px solid var(--bs-gray-dark);}
.accordion-wrap .card {padding: 0; border-bottom: 1px solid var(--bs-gray-300);}
.accordion-wrap .card .card-body {padding:0;}

/* admin 로그인 시 나타나는 타이틀 */
.accordion-wrap .card .card-title {margin-bottom: 0; font-size: 1rem; font-weight: 500; color: var(--bs-gray-dark); padding: 22px 46px 20px 30px; display: inline-block; position: relative;}
.accordion-wrap .card .card-title::before {content: 'Q.'; font-weight: 800; font-family: 'Montserrat', Sans-serif; position: absolute; top: 20px;  left: -8px;}
.accordion-wrap .card .card-title.collapsed {color: var(--bs-gray-dark);}

/* 로그인 안했을 때 */
.accordion-wrap .card a.btn {min-height: 60px; height: 100%; position: relative; padding: 20px 46px 20px 60px; line-height: 1.5;}
.accordion-wrap .card a.btn:focus {box-shadow: none;}
.accordion-wrap .card a.btn::before {content: 'Q.'; font-weight: 800; font-family: 'Montserrat', Sans-serif; position: absolute; top: 20px;  left: 26px;}
.accordion-wrap .card a.btn::after {content: ''; width: 20px; height: 20px; background: url('/images/icon/icon-arrow.png') no-repeat center center; position: absolute; top: 50%; right: 26px; transform: translateY(-50%);}
.accordion-wrap .card a.btn[aria-expanded="true"]::after {background: url('/images/icon/icon-arrow-on.png') no-repeat center center;}

.accordion-wrap .card a.btn[aria-expanded="true"] {background-color: #eef2fa; color: var(--bs-primary);}
.accordion-wrap .card a[aria-expanded="true"].btn::before {color: var(--bs-gray-dark);}

.accordion-wrap .card .qu {font-family: 'Montserrat', Sans-serif; color: var(--bs-gray-dark); font-weight: 800; margin-right: 10px;}

.accordion-wrap .collapsing .card-body {position:relative; padding: 20px 26px 20px 68px; background-color: var(--bs-gray-100);}
.accordion-wrap .collapsing .card-body::before {content: 'A.'; font-weight: 800; font-family: 'Montserrat', Sans-serif;position: absolute; top: 20px; left: 26px; color: var(--bs-primary);}
.accordion-wrap .collapsing .card-body span {background-color: transparent !important; }

.accordion-wrap .collapse .card-body{ position: relative; padding: 20px 26px 20px 68px;background-color: var(--bs-gray-100);}
.accordion-wrap .collapse .card-body span {background-color: transparent !important;}
.accordion-wrap .card .collapse .card-body::before {content: 'A.'; font-weight: 800;position: absolute; top: 20px; left: 26px; color: var(--bs-primary);}


@media screen and (max-width: 575px) {
    .accordion-wrap .card a.btn {padding: 20px 36px 20px 50px;}
    .accordion-wrap .card a.btn::before {left: 16px;}
    .accordion-wrap .card a.btn::after {right: 16px;}

    .accordion-wrap .collapsing .card-body{padding: 20px 20px 20px 50px;}
    .accordion-wrap .collapsing .card-body::before {left: 16px;}

    .accordion-wrap .collapse .card-body {padding: 20px 20px 20px 50px;}
    .accordion-wrap .card .collapse .card-body::before {left: 16px;}
}



/* ************************* */
/* ** 홍보동영상 (G.video) ** */
/* ************************* */
.board-list.video .subject a {font-size: 1.125rem;}



/* ************************* */
/* *** partner (G,banner) ** */
/* ************************* */
.g-banner .subject {margin-top: 0.875rem; font-size: 1.125rem; color: var(--bs-dark);}
.g-image {padding: 1.5rem; border: 1px solid var(--bs-gray-300); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; display: flex; justify-content: center; align-items: center;}
.g-image img {width: auto; height: auto;}

@media screen and (min-width: 360px) {
    .g-image {padding: 1.5rem;}
}





/* ************************* */
/* *** 프로젝트 (G.layer) ** */
/* ************************* */
/* list */
.board-list .project-info {border-top: 0; padding: 1.111rem 0; margin-bottom: 0.778rem;}
.project-search-bar {padding: 1.5rem 4%; background-color: #f9f9f9;}
.pj-form > * {-webkit-border-radius: 0; border-radius: 0;}
.pj-form .form-select {margin-bottom: 0.4rem; -webkit-appearance: none; appearance: none;   background: var(--bs-white) url('/images/common/icon/icon-select.jpg') calc(100% - 5px) center no-repeat;}
.pj-form .btn {width: 100%; height: 44px; padding: 0; margin-top: 0.4rem;}

.project-link {display: block; width: 100%; height: auto; padding-bottom: 70%; border: 1px solid var(--bs-gray-300); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden; position: relative;}
.project-link:hover .cover {display: flex;}

.project-img {width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 1;}
.noimg-wrap {display: block; width: 100%; height: auto; padding-bottom: 70%; border: 1px solid var(--bs-gray-300); -webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden; position: relative;}

.project-title {font-weight: 400; font-size: 1rem; width: 100%;  display: -webkit-box; word-wrap: break-word; -webkit-line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden;}


.cover {width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); color: var(--bs-white); position: absolute; top: 0; left: 0; display: flex; justify-content: center; align-items: center; z-index: 10; display: none;}
.cover-btn {width: 54px; height: 54px; background-color: var(--bs-white); color: var(--bs-dark); -webkit-border-radius: 50rem; border-radius: 50rem; text-align: center; line-height: 54px;}
.cover-btn i::before {font-weight: 900 !important;}

@media screen and (min-width: 412px) {
    .pj-form {max-width: 620px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; align-items: center;}
    .pj-form .form-select {flex: 1 1 40%; margin-bottom: 0;}
    .pj-form .btn {margin-top: 0rem;}
}

@media screen and (min-width: 576px) {
    .pj-form .form-select {max-width: 140px;}
    .pj-form .form-control {flex: 1 1 30%;}
    .pj-form .btn {max-width: 90px; margin-top: 0;}
}

.project-modal {
    --bs-project-modal-width: 1320px;
    background-color: rgba(0,0,0,0.5);
}

.project-modal .project-modal-header {height: 80px; border-bottom: 0;}
.project-modal .project-modal-title {padding-right: 1rem; font-size: 1.333rem; font-weight: 700; color: var(--bs-dark); text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
.project-modal .btn-close {width: 0.5em; height: 0.5em; margin-right: 0; opacity: 1;}

.project-modal .project-modal-body {position: relative;}

.project-modal .swiper {position: static;}

.project-modal .swiper-slide img {width: 100%; max-height: 680px;}

.project-modal .swiper-pagination {max-width: 296px; padding: 1rem 0; margin: 0 auto;position: relative; display: block;}
.project-modal .swiper-pagination-bullet:only-child {display: inline-block !important;}


.project-modal .swiper-button-next, 
.project-modal .swiper-button-prev {width: 20px; height: 20px; display: flex;}

.project-modal .swiper-button-next {top: auto; left: auto; right: 1rem; bottom: 20px;} 
.project-modal .swiper-button-next::after {opacity: 0.4;}
.project-modal .swiper-button-next:hover::after {opacity: 1;}

.project-modal .swiper-button-prev {left: 1rem; right: auto; top: auto; bottom: 20px;}
.project-modal .swiper-button-prev::after {opacity: 0.4;}
.project-modal .swiper-button-prev:hover::after {opacity: 1;}


.swiper-button-next:after, 
.swiper-button-prev:after {font-size: 1.25rem; font-weight: 900; opacity: 1; color: var(--bs-dark);}


@media screen and (min-width: 412px) {
    .project-modal .swiper-button-next {right: calc(50% - 180px); -webkit-transform: translateX(-50%); transform: translateX(-50%);} 
    .project-modal .swiper-button-prev {left: calc(50% - 151px); -webkit-transform: translateX(-50%); transform: translateX(-50%);}
}

@media screen and (min-width: 576px) {
    .project-modal .project-modal-header {padding: 0.5rem 2.778rem;}
    .project-modal .project-modal-body {padding: 0.5rem 2.778rem;}
}

@media screen and (min-width: 768px) {
    .project-modal .swiper-pagination  {padding: 1.5rem 0;}
    .project-modal .swiper-button-next {bottom: 45px;}
    .project-modal .swiper-button-prev {bottom: 45px;}
}


@media screen and (min-width: 992px) {
    .project-modal .swiper-pagination-bullet {display: inline-block;}
}

@media screen and (min-width: 1200px) {
    .project-title {font-size: 1.125rem;}
}




/* ************************** */
/* **** 연혁 (W.History) **** */
/* ************************** */
.history-year {padding-top: 1rem; color: var(--bs-primary); border-top: 2px solid var(--bs-primary);}

.history-content {padding-top: 1.5rem; padding-bottom: 1.5rem; border-top: 1px solid var(--bs-gray-400); font-weight: 400; color: var(--bs-dark);}

.history-img {max-width: 100%;}


@media screen and (min-width: 768px) {
    .history-img {max-width: 400px; margin-top: 2rem; display: block;}
}




/* *************************** */
/* **** 보도자료 (W.Basic) **** */
/* *************************** */
.board-table.webzine .img-thumbnail-wrap {max-width: 100%; margin-bottom: 1.125rem;}
.board-table.webzine .subject {font-weight: 500; color: var(--bs-gray-dark);}
.webzine-writer {font-size: 0.875rem;}

@media screen and (min-width: 768px) {
    .board-table.webzine .img-thumbnail-wrap {max-width: 120px; margin-bottom: 0;}
    .webzine-writer {font-size: 1rem;}
}



/* 
.board-table.webzine .img-thumbnail-wrap {max-width: 120px;}
.board-table.webzine .img-thumbnail {border: none; border-radius: 6px; background-color: transparent;}

.webzine .comment {vertical-align: middle;}
@media screen and (max-width: 767px) {
    .board-table.webzine .img-thumbnail-wrap {max-width: 100%; margin-bottom: 20px;}
    .board-table.webzine .img-thumbnail-wrap img {width: 100%;}

    .board-table.webzine .download-file {vertical-align: bottom;}
} */



/* 개인정보처리방침 */
.privacy-bag {background-color: var(--bs-gray-100); padding: 1rem; height: 100%; max-height: 200px; overflow-y: auto;}







/* ************************* */
/* 게시판 CSS 20221025 윤주명 (언젠간 지울 것)*/ 
/* ************************* */
.board-form-groups {border-top: 1px solid #000000;}
.board-form-groups .col-form-label {background-color: #f8f9fa; color: var(--bs-dark); font-weight: 500; display: flex; justify-content: flex-start; align-items: center; padding: 1rem;}
.board-form-groups .form-group {border-bottom: 1px solid #ced4da; margin-left: -20px; margin-right: -20px;}

@media screen and (max-width: 575px) {
    .board-form-groups {border-top: 1px solid #000000;}
    .board-form-groups .col-form-label {background-color: transparent; padding: 20px 0 8px 0}
    .board-form-groups .form-group {border-bottom: 0; }

    .input-group>.form-select{width: 100%;}
}


/* 임시 */
/* gallery */

/* background */
.bg-cover {width: 100%; height: 500px; background: no-repeat 50%/cover;}
.bg-shape {position:relative;}
.bg-shape:after {background: url('/images/common/curve-shape.svg');  background-position-x: center; background-repeat: no-repeat; background-size: cover; bottom: -15px; content: ""; height: 62px; position: absolute; width: 100%; left:0;}
.bg_dimmed {background-image: linear-gradient(180deg, rgba(30, 24, 53, 0.4) 0%, rgba(30, 24, 53, 0.4) 90.16%); position:absolute; top: 0;left: 0;right: 0;bottom: 0;}


/* ************************* */
/* ******자료실 게시판******* */
/* ************************* */
.data-list {border-top: 2px solid var(--bs-dark);}
.data-list a {color: var(--bs-dark);}
.data-list .card {border:none; border-bottom: 1px solid var(--bs-border-color); border-radius: 0; }
.data-list .card:hover {background-color: rgba(0, 0, 0, 0.075);}
.download-area {display: flex; justify-content: space-between; align-items: center; font-weight: 400;}
.download-title {display: flex;}



/* ************************* */
/* ******* 지사 게시판******  */
/* ************************* */
.board-list a:hover { color: inherit;}
.store_map {min-width: 62px;}
#search .findWord {border-top-left-radius: 0.5rem; border-bottom-left-radius: 0.5rem;}
.search-button-area input {height: 100%; border-radius: 0;}
.search-button-area input:first-child {margin-right: -5px;}
.search-button-area input:last-child {border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem;}

@media screen and (max-width:768px) {
    #search {flex-direction: column;}
    #search .findWord {width: 100%;}
    .search-button-area {text-align: center; margin-top: 1rem;}
    .search-button-area input {border-radius: 0.5rem; margin: 0 0.5rem;}
}


/* ************************* */
/* ******갤러리 게시판******* */
/* ************************* */
.gallery-area .gallery{max-height: 300px; }
.gallery-area span {display: block; width: 100%; height: 300px; overflow: hidden; }
.gallery-area img{width: 100%; height: 100%; object-fit: cover;}
.gallery-area:hover img {transform: scale(1.1);-webkit-transition: transform 0.3s ease-in-out; transition: transform 0.3s ease-in-out;}




/* ************************* */
/* ********** 연혁 ********** */
/* ************************* */
.history-fixed {max-width: 430px; }
.history-fixed.fixed {position: fixed; z-index: 99; bottom: auto; top: 140px;}
.history-header {margin-bottom: 3rem;}
.history-category {font-size: 1.25rem; font-weight: 700; max-width: 150px;}
.history-category .history-link {padding-top: 0.5rem; padding-bottom: 0.5rem; margin-bottom: 0.5rem; display: block;}
.history-category .history-link.active {color: var(--bs-primary); border-bottom: 2px solid var(--bs-primary);}
.history-category .history-link:hover {color: inherit; }
.history>ul>li{position: relative; padding-left: 3.75rem; padding-bottom: 3rem; }
.history>ul>li::before {content: ""; width: 1px; height: 100%; position: absolute; left: 5px; background-color: var(--bs-gray-300);}
.history>ul>li:first-child:before {top: 10px;} 
.history>ul>li:last-child:before {height: 10px;} 

.history>ul>li::after {content: ""; width: 12px; height: 12px; border-radius: 50%; background-color: var(--bs-primary); position: absolute;top: 0.5rem; left: 0;}
.history .year {font-size: 1.5rem; font-weight: 700; color: var(--bs-dark); margin-bottom: 1rem;} 
.history .content li {display: flex; margin-bottom: 0.5rem;}
.history .content li strong {min-width: 30px;}

@media(max-width:767px) {
    .history-fixed {max-width: 100%; width: 100%;}
    .history-fixed.fixed {bottom: 80px; top: auto;}
    .history-header {max-width: 100%;}
    .history-category {max-width: 100%; display: flex; background-color: var(--bs-primary); border-radius: 0.5rem; padding: 0.5rem 2rem; justify-content: space-between; font-size: 0.875rem;bottom: 130px; z-index: 999; top: auto; /* left: 50%; transform: translateX(-50%);  */  flex-direction: row; white-space: nowrap; overflow-x: auto; margin-bottom: 3rem;}
    .history-fixed.fixed .history-category{width: calc(100% - 8%);}

    .history-category .history-link {padding: 1rem; margin-bottom: 0;color: var(--bs-white); opacity: 0.7; }
    .history>ul>li {padding-left: 1.5rem; padding-bottom: 2rem;}
    .history-category .history-link.active {opacity: 1; color: var(--bs-white); border:none;}
    .history-category .history-link:hover {color: var(--bs-white);}

}
.course-c img {max-width:100%;}