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

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* @font-face { 
    font-family: 'Pretendard'; 
    src: url('/woff/Pretendard-Regular.woff') format('woff'); 
    font-weight: normal; 
    font-style: normal;
  }
 */


:root {
    /* --bs-body-font-family:'Montserrat', 'Noto Sans KR', Dotum, Sans-serif; */
    --bs-body-font-family:'Pretendard', Dotum, Sans-serif;
    --bs-body-font-size:1rem;
    --bs-body-font-weight:400;
    --bs-body-line-height:1.5;
    --bs-body-color:#222222;

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

    --bs-white: #fff;
    --bs-gray: #666666;
    --bs-gray-dark: #222222;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd; 
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;

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

* {margin:0; padding:0;}
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); 
        -webkit-font-smoothing: antialiased;
    }

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

.fw-100 {font-weight: 100;}
.fw-200 {font-weight: 200;}
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}
.fw-800 {font-weight: 800;}

a {text-decoration:none; color: inherit;}
a:hover {text-decoration:none; color: inherit;}

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

p { margin-bottom: 0;}
/* p:not(:last-child) {margin-bottom: 1rem;} */

.border-top-dark {border-top: 2px solid var(--bs-dark) !important;}

/* 체크박스 커스텀 */
.form-check-input:checked {background-color: var(--bs-primary); border-color: var(--bs-primary);}

.text-muted {color: var(--bs-gray) !important;}

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

body,
button,
input,
select,
table,
textarea {
  font-size: 16px;
  color: #222;
  font-weight: 400;
}

button,
input {
  -webkit-border-radius: 0;
  border-radius: 0;
  border: 0;
  outline: none;
  background: none;
}


/* 부트아이콘 사파리에서 마음대로 색상변경을해서 생상 지정해놓음. */
.bi {color: var(--bs-dark);}


/* ********************* */
/* **** 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: 1480px; 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 ****** */
/* ********************* */
.main-banner .swiper-wrapper {transition-timing-function: linear;}
.banner-logo {width: 100%;}



/* ********************* */
/* ******* 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 {--bs-btn-padding-x: 2rem; height: 65px;}
.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-600);
    --bs-btn-border-color:  var(--bs-gray-600);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-gray-600);
    --bs-btn-hover-border-color: var(--bs-gray-600);
    --bs-btn-active-bg: var(--bs-gray-600);
}


.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-gray {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-gray-600);
    --bs-btn-border-color:  var(--bs-gray-600);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-gray-600);
    --bs-btn-hover-border-color: var(--bs-gray-600);
    --bs-btn-active-bg: var(--bs-gray-600);
}


.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-primary:hover {color: var(--bs-white) !important;}

.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);
}
.btn-outline-dark:hover {color: var(--bs-white) !important;}


/* ********************* */
/* **** 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-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-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;}
}




/* ********************* */
/* ******** list ******* */
/* ********************* */




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









/* ********************* */
/* ******* 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 ****** */
/* ******************** */
#visual {
  position: relative;
  width: 100%;
  background: url(/images/main/main_01.svg) no-repeat;
  background-position: right 34px;
  border: 1px solid #ffffff;
}


.visualWrap {
  height: 600px;
  margin: 140px auto 60px auto;
  overflow: hidden;
  box-shadow: 4px 8px 20px 0 rgba(0, 0, 0, 0.14);
  border-radius: 30px;
}

.visualWrap ul {
  display: flex;
  width: 1000%;
}

.visualContent {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px 0;
  height: 600px;
  color: #ffffff;
  padding: 0 0 60px 60px;
  box-sizing: border-box;
  word-break:keep-all;
}

.visualContent h2 {
  margin-bottom:0;
  font-weight:700;
}

.visualContent p {
  font-size: 20px;
}

.visualScroll {
  position: absolute;
  top: 81%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 120px;
  color: #ffffff;
  background-color: #014df9;
  padding: 14px 14px 24px 14px;
  box-sizing: border-box;
  transform: translateX(-50%);
}

.visualScroll p span {
  display: none;
}

.visualScroll > p {
  font-size: 14px;
}

.visualAni {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visualAni p:last-child {
  width: 1px;
  height: 50px;
  background-color: #ffffff;
  margin-top: 10px;
}

.upDown {
  position: absolute;
  top: 0;
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-top: 10px;
  animation: move 1.3s ease-in 0s infinite alternate;
}

@keyframes move {
  0% {
    margin-top: 10px;
  }
  100% {
    margin-top: 55px;
  }
}

.visualNum {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 20px;
}

.visualNum ul {
  display: flex;
  justify-content: center;
  gap: 0 2px;
  width:100%;
  max-width: 418px;
  margin: 40px auto 0 auto;
}

.visualNum ul li {
  position: relative;
  width: 40px;
  height: 4px;
  background-color: #cecece;
  overflow: hidden;
  cursor: pointer;
}

.gauge {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #222222;
  transition: width 3s linear;
}

.visualNum span {
  display: none;
}

@media screen and (max-width:768px) {
	.visualImg > p {
		position:relative;
	}
	.visualImg > p img {
		position:absolute;
		transform:translateX(-50%);
	}
	.visualContent {
		z-index:2;
	}

	.visualWrap .visualTxt ul,.visualWrap,.visualContent {
		height:600px;
	}
}



#mainUrl {
  position: relative;
  margin: 70px auto 150px auto;
}

.mainInfo {
  display: flex;
  align-items: center;
}

.mainInfo p {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.mainInfo p span b{
  color: #014df9;
  font-weight:600;
}

.mainInfo p:first-child img {
  margin-right: 8px;
}

.mainInfo p:last-child img {
  margin-left: 60px;
}

.mainQuick ul {
  margin-top:20px;
  display: flex;
  gap: 0 10px;
}

.mainQuick ul li,
.mainQuick ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainQuick ul li img {
  transition: transform 0.4s;
  width:100%;
}

.mainQuick ul li:hover img {
  transform: translate(0, -10px);
}

@media screen and (max-width: 1200px) {
    #visual {background:none;}
	.visualWrap {margin-top:4%;}
	.visualContent {padding:0 60px 90px 60px;}
	.mainInfo {flex-direction:column; align-items:flex-start;}

	.mainInfo p:last-child {margin-left:auto; margin-top:20px;}
}
@media screen and (max-width: 992px) {
    .mainInfo p:first-child { word-break:keep-all; align-items:flex-start;}
	.mainInfo p span {margin-left:0;}
}
@media screen and (max-width: 768px) {
    .visualContent p {font-size:18px;}
	.visualContent {padding:0 20px 90px 20px;}
	.mainQuick ul {flex-wrap:wrap; gap:20px 10px;}
	.mainQuick ul li {width:calc( 50% - 5px);}
}
@media screen and (max-width: 576px) {
    .visualNum ul li {width:30px;}
}
@media screen and (max-width: 360px) {
    .visualNum ul li {width:20px;}
}




/* sub-visual */
.subVisual {
  position: relative;
  width: 100%;
  height: 240px;
  background: url("/images/sub/sub_visual.png") no-repeat center/cover;
}


/* ********************* */
/* ***** 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 */
/* sub header */
.subHeader {
  position: absolute;
  top: 340px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 50;
  width:100%;
}

.subMenu {
  position: relative;
  display: flex;
  align-items: center;
  width:100%;
  max-width: 1480px;
  height: 64px;
  border-radius: 800px;
  background-color: #ffffff;
  box-shadow: 2px 2px 24px 0 rgba(0, 0, 0, 0.08);
  margin:0 auto;
}

.subMenu > li {
  border-right: 1px solid #f5f5f5;
}

.subMenu > li:first-child img:hover {
  content: url(/images/common/home_ico2.svg);
}

.subNavMain,
.smSubNavMain,
.subMenu > li:nth-child(2) > a {
  position: absolute;
  top: -10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  height: 84px;
  padding-left: 24px;
  font-size: 16px;
}

.subMenu > li button:hover,
.subMenu > li:nth-child(2) button:hover {
  color: #014df9;
  font-weight: 700;
}

.subMenu > li button:hover img {
  content: url(/images/common/arrow_down_hover.svg);
}

.subMenu > li:hover .subNav,
.subMenu > li:hover .smSubNav {
  display: block;
}

.subMenu > li:first-child {
  width: 74px;
  line-height: 64px;
  text-align: center;
}

.subMenu > li:nth-child(2) button {
  color: #999999;
}

.subArrow {
  height: 64px;
  line-height: 64px;
  border-right: 1px solid #f5f5f5;
}

.subArrow img {
  padding-right: 20px;
  box-sizing: border-box;
}

.subNav,
.smSubNav {
  display: none;
  position: absolute;
  top: 70px;
  width: 260px;
  text-align: center;
  color: #666666;
  font-size: 16px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.subNav li a:hover,
.smSubNav li a:hover {
  color: #222222;
  font-weight: 600;
}

.subNav li:not(:first-child),
.smSubNav li:not(:first-child) {
  padding-top: 16px;
}

.smSubNavMain,
.smSubNav {
  margin-left: 260px;
}

@media screen and (max-width: 1500px) {
    .subMenu {border-radius:0;}
}

@media screen and (max-width: 768px) {
	.subMenu > li:first-child {width:60px;}
    .subNavMain, .smSubNavMain, .subMenu > li:nth-child(2) > a {position:static; width:100%; height:64px;}
	.subMenu > li:not(:first-child) {width: calc(50% - 30px);}
	.smSubNavMain, .smSubNav {margin-left:0;}
	.subNav, .smSubNav {width: calc(50% - 30px); top: 68px;}
}
@media screen and (max-width: 480px) {
	.subNavMain, .smSubNavMain, .subMenu > li:nth-child(2) > a {
		font-size:14px;
	}
}

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






/* ********************* */
/* ******* header ****** */
/* ********************* */
#header {
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  border-top: 4px solid #014df9;
  border-bottom: 1px solid #e6e6e6;
  z-index: 100;
  background:var(--bs-white);
}
.headerWrap {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 1480px;
  height: 130px;
  margin: 0 auto;
}
nav {
  width:100%;
  max-width: 1040px;
  margin: 0 auto;
}
.menu {
  display: flex;
  gap: 60px;
}

.menu > li {
  width:25%;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 160px;
  height: 38px;
  color: #666666;
  font-size: 20px;
  cursor: pointer;
}

/* hover 효과 */
.menu > li > a:hover {
  color: #014df9;
  font-weight: 600;
}

.menu > li a img {
  margin-left: 10px;
}

.menu > li a:hover img {
  content: url(/images/common/arrow_down_hover.svg);
}

.menu > li:hover .smMenu {
  display: block;
}


@media screen and (max-width: 1200px) {
    nav {display:none;}
	.headerWrap {justify-content:space-between;}
}
@media screen and (max-width: 480px) {
    .headerWrap h1 a img {
		width:130px;
	}
}

/* ****************************************************************** */

.smMenu {
  display: none;
  position: absolute;
  top: 30px;
  width: 160px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 20px 10px;
  box-sizing: border-box;
  z-index: 150;
}

.smMenu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px 0;
}

.smMenu li a {
  text-align: center;
  color: #666666;
  font-size: 16px;
  word-break: keep-all;
  display:block;
}

.smMenu li a:hover {
  color: #222222;
  font-weight: 600;
}

.smMenu li:nth-child(2),
.smMenu li:nth-child(4) {
  line-height: 26px;
}


#content {margin-top: 135px;}

@media screen and (min-width: 1200px) {
    .navbar-brand {left: 20px;}
}


/* gnb */
.gnb {width: 100%; height: 90px;}
.gnb > .container {width: 100%; height: 100%; display: flex; justify-content: space-between; align-items: center; position: relative;}

.gnb .nav-list {margin-right: 1.5rem; display: flex; justify-content: flex-start; align-items: center; display: none;}

.gnb .nav-item {position: relative;}
.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: 8px; height: 8px; background-color: var(--bs-primary); position: absolute; top: 4px; left: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); -webkit-border-radius: 50rem; border-radius: 50rem; opacity: 0; visibility: hidden;}

.gnb .nav-item.active > a {color: var(--bs-primary);}
.gnb .nav-link {padding: 0.5rem 1.5rem; font-size: 1.125rem; color: var(--bs-white); font-weight: 500;}

.gnb .nav-item:hover .submenu {display: block;}



/* submenu */
.submenu {min-width: 120px; padding: 1rem 1.125rem; background-color: var(--bs-white); border: 1px solid var(--bs-gray-300);  -webkit-border-radius: 0.5rem; border-radius: 0.5rem; position: absolute; top: 100%; left: 0; 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 {color: var(--bs-primary);}
.sub-item.active .sub-link::after {opacity: 1; visibility: visible;}

.sub-link {color: inherit; position: relative; display: inline-block; width: 100%;}
.sub-link:hover {color: var(--bs-primary);}
.sub-link:hover::after {opacity: 1; visibility: visible;}
/* .sub-link::after {content: ''; width: 100%; height: 2px; background-color: var(--bs-primary); position: absolute; left: 50%; bottom: 0; -webkit-transform: translateX(-50%); transform: translateX(-50%); opacity: 0; visibility: hidden;} */



/* util-menu */
.util-list {display: flex; justify-content: flex-start; align-items: center; display: none;}

.util-item {position: relative;}
.util-item:not(:last-child) {margin-right: 0.5rem;}
.util-item.bar::after {content: '';  width: 1px;  height: 15px; background-color: var(--bs-gray-300); position: absolute; top: 50%; right: -5px; -webkit-transform: translateY(-50%); transform: translateY(-50%);}

.util-link {
    padding: 0.5rem; font-weight: 400; color: var(--bs-white);
}


/* 로그인 했을 때 뜨는 마이페이지 버튼 */
.btn-util {
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-border-width: 0;
    --bs-btn-hover-color: var(--bs-white);
    font-size: 1.75rem; color: var(--bs-white);
}
.btn-util .bi {color: var(--bs-white);}
.header.isFixed .bi {color: var(--bs-dark);}

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

.btn-trigger .isFixed .bi {color: var(--bs-dark);}

@media screen and (min-width: 1200px) {
    .util-list {display: flex;}
    .gnb .nav-list {display: flex;}

    .btn-util {display: none;}
    .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%; height: 135px; border-bottom: 1px solid var(--bs-gray-300); display: flex; justify-content: space-between; align-items: center;}
.all-menu-header .btn-close {opacity: 1; font-size: 1.5rem;}

.all-menu-nav {width: 100%; max-height: calc(100vh - 255px); 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.5rem; font-weight: 700; color: var(--bs-dark); display: inline-block; width: 100%; text-align: left;}

.all-menu-list .btn-allmenu {border-width: 0;}
.all-menu-list .btn-allmenu .bi {font-size: 1rem; margin-left: 5px; }
.all-menu-list .btn-allmenu .bi::before { font-size: 0.875rem;}
.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) ; color: var(--bs-primary);}
.all-menu-list .btn-allmenu.active + .all-submenu {display: block;}

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


.all-menu-footer {width: 100%; height: 165px; 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 (max-width: 480px) {
    .all-menu-header img {
		width:130px;
	}
}



/* ********************** */
/* *** header-isFixed *** */
/* ********************** */
.header.isFixed {background-color: var(--bs-white); border-color: var(--bs-gray-200);}
.isFixed .nav-link,
.isFixed .util-link,
.isFixed .btn {color: var(--bs-dark);}
.isFixed.header .dropdown-toggle {color: var(--bs-dark);}
.isFixed .navbar-brand .logo-dark {display: block;}
.isFixed .navbar-brand .logo-wh {display: none;}



/* ********************** */
/* *********quick******** */
/* ********************** */
.top {
  position: fixed;
  right: 40px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px 0;
  width: 48px;
  height: 48px;
  background-color: #222222;
  border-radius: 50%;
  cursor: pointer;
}

.top p {
  color: #ffffff;
  font-size: 14px;
}

.top p:first-child {
  width: 4px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 50%;
}

.top span {
  display: none;
}

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

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



/* ******************** */
/* ******** 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;color: var(--bs-white);}
.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 ******* */
/* ******************** */



/* ********************* */
/* ******* footer ****** */
/* ********************* */
#footer {
  width: 100%;
}
.footerWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background-color: #f5f5f5;
  border-top: 1px solid #e6e6e6;
  padding: 40px 0 50px 0;
  box-sizing: border-box;
}
.footerWrap .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.terms {
  display: flex;
  gap: 0 10px;
  margin-top: 20px;
}
.terms li {
  width:200px;
  height: 48px;
  line-height: 48px;
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 800px;
  box-sizing: border-box;
}

.terms li:last-child {
  color: #999999;
}

.terms li a {
  text-align: center;
  font-size: 18px;
  display:block;
}


address {
  line-height: 26px;
  text-align: center;
  color: #999999;
  font-size: 16px;
  margin-top: 20px;
  word-break:keep-all;
}

address p:last-child {
  margin-top: 6px;
}



.snsUrl {
  display: flex;
  gap: 0 20px;
  margin-top: 36px;
}

.snsUrl li:first-child img:hover {
  content: url(/images/common/youtube_ico2.svg);
}

.snsUrl li:last-child img:hover {
  content: url(/images/common/blog_ico2.svg);
}

.snsUrl a {display:block;}

.copyright {
  padding:12px 0;
  text-align: center;
  color: #e6e6e6;
  font-size: 16px;
  font-weight: 300;
  background-color: #014df9;
}

.btn-top {position: absolute; top: -30px; right: 10px; width: 60px; height: 60px; padding: 0; font-size: 1.5rem; z-index: 9;}
.btn-top .bi {color: var(--bs-white);}

@media screen and (min-width: 412px) {
    .btn-top { right: 20px;}
}

@media screen and (max-width: 576px) {
    .terms {flex-direction:column;}
	.terms li:first-child {margin-bottom:10px;}
	.copyright {font-size:14px;}
	.terms li a {font-size:16px;}
}

/* ******************** */
/* ******* 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 {margin-bottom: 3rem; 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 {padding-right: 0; font-size: 1.25rem;}
.search-wrap .form-select[name="category"] { border: none;padding: 0.375rem 0.75rem;border-bottom: 2px solid;border-radius: 0;height: 54px;}
.search-bar input {border-radius: 0 !important; padding: 0.375rem 0.75rem !important;}
@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; margin-bottom: 16px;}
.all-chk .form-check-input {margin-top: 0.2em;}

/* 공지 아이콘 */
.icon-bell {width: 30px; height: 30px; background-color: var(--bs-primary); 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; white-space: nowrap;}
.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-primary);}
.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);}

.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); margin-right: 4px;}

.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 #000000; 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: #000000; 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 #dddddd;}
    /* .board-form .form-group .col-form-label {background-color: var(--bs-gray-100);} */
    .board-form .col-sm-10 {padding: 1rem;}
}

@media screen and (max-width: 575px) {
    .board-form .form-group .col-form-label {padding-left: 0;}
} 

/* 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; }

@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-img img{width: 100%;}
.g-product-btns {display: flex; justify-content: flex-start; align-items: center; gap: 10px;}
.g-product-btns .btn {min-height: 50px; display: flex; align-items: center; justify-content: center; width: 100%;}
.g-product-btns .btn i {margin-right: 5px;}

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

@media screen and (max-width: 360px) {
    .g-product-btns {flex-direction: column;}
    .g-product-btns .btn {width: 100%;}
}


/* ************************* */
/* ***** 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-color: var(--bs-gray-300);}
.accordion-wrap .card .card-body {padding:0;border-bottom: 1px solid var(--bs-gray-300);}

/* .accordion-wrap .collapse.show {border-bottom: 1px solid var(--bs-gray-300);} */

/* 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;}
    .accordion-wrap .card .card-title::before {left: 0;}
}

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




/* ************************* */
/* ** 홍보동영상 (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;}


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

.project-modal .swiper-pagination {bottom: 0 !important;}




@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; 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);margin-top: 4rem;}
.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-wrap {margin-bottom: -3rem;}
.gallery-wrap .subject {font-size: 20px;  color: var(--bs-dark);}
.gallery-area .gallery{max-height: 300px; overflow: hidden;}
.gallery-area .gallery:hover img {transform: scale(1.1);-webkit-transition: transform 0.3s ease-in-out; transition: transform 0.3s ease-in-out;}
.gallery-area > span {display: block; width: 100%; height: 300px; overflow: hidden; }
.gallery-area .gallery-img {width: 100%; height: 100%; object-fit: cover;}

@media screen and (max-width:1200px){
	.gallery-wrap .subject {font-size:18px;}
}

@media screen and (max-width:768px) {
    .gallery-area .gallery {max-height: fit-content;}
    .gallery-area > span {height: auto; max-height: auto;}
}


/* ************************* */
/* ********** 연혁 ********** */
/* ************************* */
.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);}

}


/* ************************* */
/* ********* 로그인 ******** */
/* ************************* */
@media(max-width:575px) {
    .mem-group {flex-direction: column;}
    .mem-group input[type="text"] {width: 100%; margin-top: 0.5rem; border-radius: 0.5rem !important;}
    .mem-group input[type="button"] {border-radius: 0.5rem !important;}
    .my-form .form-group {border-bottom: 1px solid var(--bs-gray-300); padding-bottom: 2rem; padding-top: 1rem;}
}

/* ************************* */
/* ******** 회원가입 ******** */
/* ************************* */
.bag-gray-h-300 {background-color: var(--bs-gray-100);padding: 1rem;max-height: 300px;overflow-y: auto;}

@media(max-width:767px) {

    .join-area {display: block;}
    .join-area span {display: none;}
    .join-area .form-control {width: 100%;margin-bottom: 1rem;}
    .join-area .btn {border-radius: 0.5rem;border-top-left-radius:0.5rem !important;border-bottom-left-radius:0.5rem !important;}
}


/* 메인 게시판 연동 */

.main-board {display: flex; width: calc(100% + 30px); margin-left: -15px; margin-right: -15px; margin-bottom: -30px;}
.main-board-item {width: calc(33.333% - 30px); margin-left: 15px; margin-right: 15px; margin-bottom: 30px;background-color: var(--bs-white); padding: 30px; border-radius: 20px;}

/* 프로덕트 스킨 */

.cate-area {white-space: nowrap;}

@media(min-width:1200px)  {
    .cate-area {font-size: 1.125rem;}
}


/* 부트스트랩 아이콘 */

.bi::before {font-family: 'bootstrap-icons';}

/* 댓글 수정 */
#com_li_write .input-group-text {background-color: var(--bs-gray-100);}


/* 메인에 텍스트형 공지사항 연동 */

.main-notice {flex-wrap: wrap;}
/* .main-notice .main-board-item {width: calc(33.3333% - 20px);} */

@media screen and (max-width:991px) {
    .main-notice .main-board-item {width: calc(50% - 30px);}
}

@media screen and (max-width:767px) {
    .main-notice .main-board-item {width: calc(100% - 30px);}
}


/* 메인에 공지사항 갤러리카드형 연동 */
.main-gallery-notice {width: calc(100% + 30px); margin-left: -15px; margin-right: -15px; flex-wrap: wrap; align-items: stretch;}
.main-gallery-notice .main-board-item {border: 1px solid var(--bs-gray-300);  width: calc(25% - 30px); margin-left: 15px; margin-right: 15px; margin-bottom: 30px;  padding: 0;}
.main-gallery-notice .main-board-item a { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; height: 100%;}
.main-gallery-notice .main-board-item:hover {box-shadow: 3px 3px 10px var(--bs-gray-300);}
.main-gallery-notice .main-board-item a:hover {color: inherit; }


.main-gallery-notice .img-area {max-height: 150px; overflow: hidden; }
.main-gallery-notice .img-area img {object-fit: cover; height: 100%;}

.main-gallery-notice .title-area {display: flex; align-items: center; margin-top: 1rem;}
.main-gallery-notice .title {overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; width: auto;}
.main-gallery-notice .new img {vertical-align: middle; margin-left: 5px;}
.main-gallery-notice .content {display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; word-break: break-all;}


@media screen and (max-width:1199px) {
    .main-gallery-notice .main-board-item {width: calc(33.3333% - 30px);}
}

@media screen and (max-width:767px){
    .main-gallery-notice .main-board-item {width: calc(50% - 30px);}
    .main-gallery-notice .img-area {max-height: max-content;}
}
@media screen and (max-width:575px) {
    .main-gallery-notice .main-board-item {width: calc(100% - 30px);}
}


/* 메인에 갤러리 연동 */
.main-gallery {flex-wrap: wrap;}
.main-gallery .main-board-item {padding: 0; width: calc(25% - 30px);}

.main-gallery .title-area {margin-top: 1rem; display: flex; align-items: center;}

.main-gallery .title {overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: inline-block; width: auto;}
.main-gallery .new img{vertical-align: middle; margin-left: 5px;}

.main-gallery .img-area {overflow: hidden;border-radius: 15px; max-height: 200px;}
.main-gallery .img-area img {height: 100%; object-fit: cover; min-height: 200px;}
.main-gallery .img-area:hover img {transform: scale(1.1); transition: all 0.5s;}

@media screen and (max-width:1199px) {
    .main-gallery .main-board-item {width: calc(33.3333% - 30px);}
}

@media screen and (max-width:767px){
    .main-gallery .main-board-item {width: calc(50% - 30px);}
}
@media screen and (max-width:575px) {
    .main-gallery .main-board-item {width: calc(100% - 30px);}
    
    .main-gallery .img-area {max-height: max-content;}
    .main-gallery .img-area img {min-height: auto;}
}

/* 메인 갤러리 연동 */
/* .mainProductSlide {margin-bottom: 50px;} */
.mainProductSlide .main-product {padding-bottom: 100px;}
.mainProductSlide img {max-width: 100%;}
.mainProductSlide .main-board-item {padding: 0; }

.mainProductSlide .title-area {margin-top: 1rem;}

.mainProductSlide .swiper-pagination { left: 50%; top: auto; bottom: 1.125rem; transform: translateX(-50%);  width: calc(100% - 100px); height: 4px;}


.mainProductSlide .swiper-button-next , 
.mainProductSlide .swiper-button-prev {color: var(--bs-primary); top: auto; bottom: 0; }

.mainProductSlide .swiper-button-prev:after, .mainProductSlide .swiper-button-next:after {font-size: 1.5rem;}

.mainProductSlide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {background: var(--bs-primary);}


/* 메인 문의하기 연동 */

.main-contact { background-image: linear-gradient(180deg, rgba(30, 24, 53, 0.4) 0%, rgba(30, 24, 53, 0.4) 90.16%), url("/images/main/about_img_01.jpg");background-size: cover; background-repeat: no-repeat; background-position: center center;background-attachment: fixed; }

.main-contact .section-header i {color: var(--bs-white);}

.main-contact .form-check-input:checked {background-color: var(--bs-primary); border-color: var(--bs-primary);}

.main-contact .form-list  {display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px;}
.main-contact .form-list .form-item  {width: calc(50% - 5px);}

.main-contact textarea {border-radius: var(--bs-border-radius);    padding: .375rem .75rem;}
.checked_wrap .btn-primary {min-width: 150px; }

.main-contact .checked_wrap>div {display: flex; justify-content: space-between; align-items: center;}


@media screen and (max-width:767px) {
    .main-contact .form-list .form-item {width: 100%;}
    .checked_wrap .btn-primary {min-width: 100px;}
}

@media screen and (max-width:360px) {
    .main-contact .checked_wrap>div {flex-direction: column; gap: 10px;}
    .checked_wrap .btn-primary {min-width: 150px;}
}

/* 일정 수정 */
.schedule-text {line-height: normal;}
.schedule-text:not(:last-child) {margin-bottom: 5px;}

/* 메인 하단 배너 */
.main-banner .swiper-wrapper {align-items: center;}
.main-banner .swiper-slide {width: fit-content !important;}
.main-banner .banner-link {display: block; width: fit-content;}

/* sub */

.subContentH2 {
  font-size: calc(1.3rem + 2.1vw);
  font-weight: 700;
  margin-bottom: 60px;
}

.subTitle {
  font-size: calc(1.4rem + .3vw);
  word-break:keep-all;
}

.subTitle span {
  color: #014df9;
}

.center {
  width: 1480px;
  margin: 0 auto;
}

#subContent {
  width: 100%;
  padding: 112px 0 160px;
}

/* txt color */
.txtBlue {
  color: #014df9;
}

.txtBlack {
  color: #222 !important;
}

.txtBold {
  font-weight: 600;
}

.txtgray {
  line-height: 38px;
  color: #666666;
  font-size: 20px;
  word-break:keep-all;
}

@media screen and (min-width:1200px) {
	.subContentH2 {
		font-size:46px;
	}
	.subTitle {
		font-size:26px;
	}

}
@media screen and (max-width:1200px) {
	.txtgray {
		font-size:18px;
	}
}

/* txt color */

/* margin type */
p.marginType {
  clear: both;
  width: 100%;
}

p.marginType1 {
  height: 60px;
}

p.marginType2 {
  height: 120px;
}

p.marginType3 {
  height: 80px;
}

/* margin type */



/* company */

/* 레이아웃 따로 가야 하는 클래스 */
.company {

}
.company,
.business {
  position: relative;
  margin: 112px auto 0 auto;
}

.company .blueLabel {
  width: 162px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  color: #ffffff;
  font-size: calc(1.275rem + .3vw);
  background-color: #014df9;
  border-radius: 800px;
  margin-bottom: 20px;
}

.companyH3 {
  font-weight: 700;
  margin-bottom: 30px;
  word-break:keep-all;
}

.companyH3 span {
  color: #014df9;
}

.companySubMain {
  margin-bottom:-40px;
  margin-top:55px;
  width: fit-content;
  color: #999999;
  font-size: 2.1667vw;
  padding: 25px 40px;
  background-color: #ffffff;
  border-radius: 800px;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.06);
}

.companySubMain p {
  display: flex;
  align-items: center;
  word-break:keep-all;
}

.companySubMain p span {
  margin-left: 10px;
}

.companySubMain p img:first-child {
  margin-right: 20px;
}
.companySubMain p img:last-child {
  margin-left: 20px;
}

.companyContent {
  background: url("/images/sub/company/company_02.png") no-repeat center/cover;

  padding-bottom: 160px;
}

.companyContentWrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 100px;
}

.compantTxt {
  width: 880px;
  padding-top: 20px;
  word-break:keep-all;
}

.compantTxt p {
  line-height: 38px;
  font-size: 20px;
}

.compantTxt p:not(:last-child) {
  margin-bottom: 14px;
}

.compantTxt p:nth-child(2) {
  word-break: keep-all;
}

.compantTxt p:last-child {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.compantTxt p:last-child img {
  margin-left: 20px;
}

.companyContentWrap > p {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
}

.companyContentWrap > p {
  box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.14);
  margin-left:24px;
}

@media screen and (min-width:1200px) {
	.company .blueLabel  {
		font-size:24px;
	}
	.companySubMain {
		font-size:26px;
	}
}
@media screen and (max-width:1200px) {
	.compantTxt p {
		font-size:18px;
	}
}
@media screen and (max-width:992px) {
	.companyContentWrap {
		flex-direction:column;
	}
	.companyContentWrap > p  {
		margin-left:0;
		margin-top:40px;
	}
	.companyContentWrap > p img {
		width:100%;
	}
	.compantTxt {
		width:100%;
	}
}
@media screen and (max-width:768px){
	.companySubMain {
		font-size:16px;
	}
	.companySubMain {
		position:relative;
		padding:25px 80px;
	}
	.companySubMain p img:first-child {
		position:absolute;
		left:40px;
	}
	.companySubMain p img:last-child {
		position:absolute;
		right:40px;
	}
	.companySubMain p span {
		display: block;
		margin-left:0;
	}
	.companySubMain p {
		flex-direction:column;
	}
}
@media screen and (max-width:480px){
	.companySubMain {
		padding: 25px 40px;
		width:100%;
	}
	.companySubMain p img:first-child {
		left:10px;
	}
	.companySubMain p img:last-child {
		right:10px;
	}
}

/* 오시는 길 */

.company_01 .whiteLabel {
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #014df9;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #014df9;
  border-radius: 800px;
  padding: 0 40px;
  box-sizing:content-box;
}

.companyMap .iframe iframe {
  width: 100%;
  height: 360px;
  border-radius: 20px;
  margin-top: 30px;
}

.companyAddress,
.address {
  display: flex;
  align-items: center;
}
.companyAddress {
  gap: 40px;
}

.address {
  gap: 0 24px;
  font-size: 20px;
}

.companyMapFlex {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px dashed #d9d9d9;
}

.companyMapFlex .companyAddress,
.companyMapFlex .address {
  flex-direction: column;
  align-items: flex-start;
}
.companyMapFlex .companyAddress {
  gap: 20px 0;
}

.companyMapFlex .address {
  gap: 4px 0;
}

.companyMapFlex .companyMap {
  flex: 1;
}

@media screen and (max-width:1200px) {
	.companyAddress01 {
		flex-direction:column;
		align-items:flex-start;
		gap:20px;
	}
	.companyAddress01 .address {
		flex-direction:column;
		align-items:flex-start;
		gap:4px;
	}
	.company_01 .whiteLabel {
		font-size:18px;
	}
}

@media screen and (max-width:992px) {
	.companyMapFlex {
		flex-direction:column;
	}
}

/* business */

.business {
  margin-bottom: 40px;
}

.businessContentBg {
  background-color: #f5f5f5;
}

.businessContentFlex,
.businessContent {
  display: flex;
  margin: 0 auto;
  padding: 80px 0;
}

.businessContentFlex {
  gap: 0 40px;
}

.businessContent {
  align-items: center;
  justify-content: space-between;
}



.businessContentColumn {
  flex-direction: column;
  align-items: flex-start;
}

.whiteLabel_02 {
  width: 129px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #014df9;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #014df9;
  border-radius: 800px;
  background-color: #ffffff;
  margin-bottom: 28px;
}

.businessTxtWhith {
  width:45%;
  max-width: 640px;
  word-break:keep-all;
}



.businessH3 {
  font-size: calc(1.325rem + .9vw);
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width:1200px) {
	.businessH3 {
		font-size:2rem;
	}
}

.businessContentFlex .businessSlide {
  margin-top: 40px;
}

.businessSlide {
  position: relative;
  width:50%;
  max-width: 720px;
  overflow: hidden;
}

.slideImg {
  display: flex;
}

.slideImg li {
  width: 100%;
}

.businessSlide img {
  width:100%;
  border-radius: 20px;
}

.slideBtn {
  position: absolute;
  top: 42%;
  display: flex;
  justify-content: space-between;
  width: calc(100%);
  padding: 0 20px;
}

.slideBtn button:first-child:hover img {
  content: url("/images/sub/business/left_02.svg");
}

.slideBtn button:last-child:hover img {
  content: url("/images/sub/business/right_02.svg");
}

.slidePage {
  display: flex;
  justify-content: center;
  gap: 0 10px;
  margin-top: 14px;
}

.slidePage button {
  width: 12px;
  height: 12px;
  border: 1px solid #014df9;
  border-radius: 50%;
  background-color: #fff;
}

.slidePage span {
  display: none;
}






.businessUl {
  display: flex;
  gap: 0 20px;
  margin-top: 40px;
}

.businessUlMb {
  margin-bottom: 80px;
}

.businessContent_02 {
	width:calc(50% - 20px);
}

.businessContent_02 .businessTxtWhith, 
.businessContent_02 .businessSlide{
	width:100%;
	max-width:none;
}

#businessSection4 .businessUl {
	display:grid;
	grid-template-columns:repeat(6, 1fr);
	gap:20px;
}

@media screen and (max-width:992px) {
	.businessContent {
		flex-direction:column;
	}
	.businessTxtWhith,.businessSlide {
		width: 100%;
		max-width:none;
	}
	.businessSlide {
		margin-top:40px;
	}
	#businessSection4 .businessUl {
		grid-template-columns:repeat(3, 1fr);
	}
}
@media screen and (max-width:768px) {
	#businessSection3 .businessContentFlex {
		flex-direction: column;
		gap:40px;
	}
	.businessContent_02 {
		width:100%;
	}
}
@media screen and (max-width:576px){
	#businessSection4 .businessUl {
		grid-template-columns:repeat(2, 1fr);
	}
}


.board-section {padding:112px 0 160px;}

.productDetailContent {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px 0;
}

.pdDetailTitle {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px 0;
}

.productListContent {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 40px 0;
}

h2.listTitle {
  font-size: calc(1.3rem + 2.1vw);
  font-family: "Pretendard-ExtraBold";
  font-weight: 700;
  line-height: 56px;
}

@media screen and (min-width:1200px) {
	h2.listTitle {font-size: 46px;}
}

.listContent {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px 0;
}

.listHeader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total {
  color: #666;
}

.total span {
  font-weight: 600;
}

.liseSearch {
  display: flex;
  align-items: center;
  gap: 0 6px;
}

.listSelectBox {
  width: 160px;
  position: relative;
}

.listSelectBtn {
  width: 100%;
  height: 48px;
  border-radius: 50px;
  border: 1px solid #e6e6e6;
  box-sizing: border-box;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  transition: border 0.3s;
}

.listSelectBtn:hover {
  border: 1px solid #222;
}

.listSelectBtn span {
  color: #999;
}

.listSelectBoxInner {
  width: 100%;
  position: absolute;
  z-index: 5;
  padding: 20px 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px 0;
  top: 58px;
  left: 0;
}

.listSelectBoxInner button {
  width: 100%;
  color: #666;
  line-height: 26px;
  text-align: center;
}

.listSearchBox {
  width: 360px;
  height: 48px;
  border: 1px solid #e6e6e6;
  background-color: #f5f5f5;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 0 30px;
  box-sizing: border-box;
  transition: border 0.3s;
}

.listSearchBox:hover {
  border: 1px solid #222;
}

.listSearchBox input {
  width: calc(100% - 46px);
  height: 100%;
}

.listSearchBox input::placeholder {
  color: #999;
}

.productList {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 117px 0;
}

.productList ul {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px;
}

.productList ul li {
  width: 100%;
  padding: 29px 29px 20px;
  box-sizing: border-box;
  background-color: #f5f5f5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.5s;
}

.productList ul li:hover {
  background-color: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.14);
}

.productList ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px 0;
}

.productList ul li a img {
  max-width: 100%;
}

.productList ul li a p {
  font-size: 20px;
  line-height: 38px;
  color: #222;
  transition: color 0.5s;
}

.productList ul li:hover p {
  color: #014df9;
  font-weight: 600;
}

.pageBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
}

.pageBtn a {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #999;
  transition: background-color 0.3s, color 0.3s;
}

.pageBtn a:hover {
  background-color: #014df9;
  color: #fff;
}

.pageBtn a:hover img {
  filter: brightness(0) invert(1);
}

.productDetailContent {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px 0;
}

.pdDetailTitle {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px 0;
}

.writeDate {
  color: #999;
  line-height: 26px;
}

.pdDetailContent {
  width: 100%;
  padding: 60px 0 80px;
  text-align: center;
}

.pdDetailContent > img {
  max-width: 100%;
}

.pdDetailContent video {
  max-width: 740px;
}

img.widthHalf {
  width: 50%;
  float: left;
}
@media screen and (max-width:768px){
    img.widthHalf {width:100%;}
}

.backBtn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.backBtn a {
  height: 52px;
  padding: 0 60px;
  border-radius: 50px;
  background-color: #014df9;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: background-color 0.5s;
}

.backBtn a:hover {
  background-color: #002fdb;
}

.detailText1 {
  font-size: 20px;
  line-height: 38px;
  word-break:keep-all;
}

.detailTextContent {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  word-break:keep-all;
}

.detailTextContent-2 {
  max-width: 342px;
  width:100%;
}
.detailTextContent-3 {
  max-width: 315px;
}
.detailTextContent-4 {
  max-width: 423px;
}
.detailTextContent-5 {
  width: 262px;
}
.detailTextContent-6 {
  max-width: 488px;
}

.sectionTitle {
  font-size: 24px;
  line-height: 42px;
  font-weight: 600;
  padding-top: 10px;
  position: relative;
  margin-bottom: 25px;
}

.sectionTitle:after {
  content: "";
  width: 30px;
  height: 4px;
  background-color: #014df9;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.detailTextContent ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px 0;
}

.detailTextContent ul li {
  width: 100%;
  padding-left: 14px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 28px;
  position: relative;
  text-align: left;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px 0;
}

.detailTextContent ul li:after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #222;
  border-radius: 20px;
  position: absolute;
  top: 10px;
  left: 0;
}

.detailTextContent ul li span {
  position: relative;
  display: block;
  padding-left: 12px;
}

.detailTextContent ul li span:after {
  content: "-";
  font-size: 18px;
  color: #222;
  position: absolute;
  top: 0;
  left: 0;
}

.detailTextContent p.rightTxt {
  text-align: left;
  margin-top: 20px;
}

.detailText2 {
  font-size: 24px;
  line-height: 42px;
  font-weight: 500;
  word-break:keep-all;
}

.detailText1 span,
.detailText2 span {
  font-weight: 600;
}

.detailText2 p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 14px;
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.detailTextContent table {
  width: 100%;
  margin-top: 20px;
}

@media(max-width:768px) {
	.table-responsive {width:100%;}
	.detailTextContent table {align-self:flex-start; width:740px;}
}

.detailTextContent table tr {
  background-color: #fff;
  display: grid;
}

table.gridType1 tr {
  grid-template-columns: 110px 1fr 1fr 1fr 72px 1fr 1fr 1fr;
}

.detailTextContent table tr:nth-child(2n-1) {
  background-color: #f5f5f5;
}

tr.thTr th:first-child {
  border-radius: 5px 0 0 5px;
}

tr.thTr th:last-child {
  border-radius: 0 5px 5px 0;
}

.detailTextContent table th {
  padding: 12px 0;
  font-size: 18px;
  line-height: 28px;
  color: #fff!important;
  font-family: "Pretendard-Medium";
  font-weight: 500!important;
  background-color: #999!important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detailTextContent table td {
  padding: 12px 0;
  text-align: center;
  line-height: 26px;
}

.pdAdvantage {
  width: 100%;
  height: 54px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.detailTextContent2 ul {
  gap: 12px 0;
}

.detailTextContent2 ul li {
  flex-direction: row;
  align-items: center;
}
@media(max-width:768px) {
	.detailTextContent2 ul li {
		flex-direction:column;
		align-items:flex-start;
	}
}

.detailTextContent2 ul li p {
  width: 230px;
  font-weight: 700;
}

.detailTextContent2 ul li span {
  color: #666;
  padding: 0;
}

.detailTextContent2 ul li span:after {
  content: none;
}

.detailTextContent2 ul li:after {
  border-radius: 0;
  background-color: #014df9;
}

table.gridType2 tr {
  grid-template-columns: 1fr 100px 1fr 1fr 1fr 1fr;
}

.detailTextContent3 .sectionTitle:after {
  background-color: #d9d9d9;
}

.detailTextContent3 p.rightTxt {
  margin-top: 60px !important;
}

.contextInner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 15px;
}

.contextInner div {
  max-width: 360px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px 0;
}

.contextInner p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.detailTextContent4 {
  max-width: 640px;
  margin: 0 auto;
}

.detailTextContent4 ul {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 0;
}

@media(max-width:576px) {
	.detailTextContent4 ul {
		grid-template-columns: 1fr 1fr;
	}
}

.detailTextContent4 ul li {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px 0;
}

.detailTextContent4 ul li img {
  width: 100%;
}

.detailTextContent4 ul li p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
}

.detailTextContent5 {
  max-width: 756px;
}

.detailTextContent5 ul {
  gap: 30px 0;
}

.detailTextContent5 li {
  align-items: flex-start !important;
  flex-direction: column !important;
}

.detailTextContent5 li p {
  font-size: 20px;
}

p.rightTxt,
p.centerTxt {
  width: 100%;
  color: #999;
  line-height: 26px;
}

p.rightTxt {
  text-align: right !important;
}

p.centerTxt {
  margin-top: 60px;
}

.detailTextContent5 p.rightTxt {
  margin-top: 20px;
}

.detailTextContent-6 ul {
  max-width: 342px;
}

table.gridType3 tr {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.detailTextContent > img {
  max-width: 100%;
  margin-top: 40px;
}

.pdDetailContent > p.rightTxt {
  max-width: 740px;
  margin: 20px auto 0;
}

.contentImg {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 25px 0;
}

.detailTextContent > span {
  width: 100%;
  text-align: left;
  font-size: 18px;
  line-height: 28px;
  margin-top: 30px;
}

table.gridType4 {
  margin-top: 12px;
}

table.gridType4 tr {
  grid-template-columns: 130px 1fr 1fr 1fr 1fr;
}

.shortVideo {
  width: 100%;
  display: block;
}



@media(max-width:768px) {
	.shortVideo {
		aspect-ratio: 430 / 764;
	}
	.shortVideo.ratio16x9 {
		aspect-ratio: 16 / 9;
	}
	.shortVideo iframe {
		width:100%;
		height:100%;
	}
}


.contentImgVideo {
  max-width: 740px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
  margin: 0 auto;
}

img.videoImg {
  width: 299px;
}

@media(max-width:768px) {
	.contentImgVideo {
		flex-direction:column;
		gap:20px;
	}
	img.videoImg {
		width:100%;
	}
}

/* 이용약관 및 개인정보처리방침 */
.termsContent {
  text-align: left;
  line-height: 26px;
  color: #666;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  word-break:keep-all;
}
/* 이용약관 및 개인정보처리방침 */

.detailTextContent table tbody {border-top:0!important;}
.detailTextContent table th, .detailTextContent table td {border-bottom:0!important;}

/* 인트로 */

.section-intro {background-image: url("/images/intro/intro-bag.png"); background-repeat: no-repeat; background-size: cover; background-position: center center; width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: fixed; top: 0; left: 0; z-index: 999999999; }
/* 
.section-intro .container {overflow-y: auto;} */

.intro {padding-top: 80px; padding-bottom: 80px;}

.intro-link {display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; margin-top: 48px;}
.intro-link a {min-width: 380px; background-color: var(--bs-white); border-radius: 10px; padding: 32px; display: flex; align-items: center; justify-content: center; flex-direction: column; border: 3px solid var(--bs-white);}
.intro-link a p {font-weight: 700; color: var(--bs-dark);}
.intro-link a:hover {border :  3px solid  var(--bs-primary);}
.intro-link a:hover p { color: var(--bs-primary);}

@media screen and (min-width:1200px){
    .section-intro  .fs-1 {font-size:36px !important;}
    .section-intro .fs-4 {font-size:26px !important;}
} 
@media screen and (max-width:1199px) {
.intro-link {flex-direction: column;align-items: center}
.intro-link a {max-width: 380px; }
}

@media screen and (max-width:767px) {
    .intro-link {gap: 20px; margin-top: 20px;}
    .intro-link a {min-width: auto; width: 100%; padding: 20px 30px;}
    .intro-logo-01 {width: 100px; height: auto;}
}

.open-intro {overflow: hidden;}



/* 새로운 퀵 메뉴 */

.new-quick {position: fixed; right: 40px; top: 15%; border-radius: 15px; overflow: hidden; z-index: 99;}
.new-quick a {text-align: center; display: flex; align-items: center; justify-content: center; flex-direction: column; line-height: 1.2; padding: 20px 15px;}

.new-quick a p {font-weight: 700; font-size: 1rem; color: var(--bs-white); margin-top: 10px;}

.new-quick  .quick-01 {background-color: #66BD59;}
.new-quick  .quick-01 img{width: 40px; height: auto;}
.new-quick  .quick-02 {background-color: var(--bs-primary);}

@media screen and (max-width:1199px) {
.new-quick {top: 30%;}
}

@media screen and (max-width:767px) {
    .new-quick  {top: auto; bottom:0px;  right: 0; display: flex; width: 100%;}
    .new-quick a {flex-direction: row; width: 50%; gap: 15px; justify-content: center; padding: 10px;}
    .new-quick a br {display: none;}
    .new-quick .quick-01 img {width: 20px;}
    .new-quick .quick-02 img {width: 45px;}
    .new-quick a p {font-size: 0.875rem; margin-top: 0;}
    .copyright {margin-bottom: 50px;}
}


