@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');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
/* font-family: 'Oswald', sans-serif; */

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

    --bs-primary:#8ebd45;
    --bs-secondary: #1264a2;
    --bs-success: #24a148;
    --bs-info: #17a2b8;
    --bs-warning: #ffc107;
    --bs-danger: #ff5938;
    --bs-light: #f5f5f5;
    --bs-dark: #222222;
    --bs-lightblue: #eef2fa;

    --bs-white: #fff;
    --bs-gray: #666666;
    --bs-gray-dark: #222222;
    --bs-gray-100: #f5f5f5;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dfdfdf;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #999999; 
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #363636;
    --bs-gray-900: #212529;

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

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

h1, h2, h3 {color: var(--bs-gray-dark); font-weight: 700;}
h6 {font-size: 1.125rem; margin-bottom: 0;}

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

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

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

/* font */
.font-16 {font-size: 1rem;}
.text-gray {color: var(--bs-gray);}
/* .display-3 {font-size: calc(1.525rem + 3.3vw) !important;}
.display-5 {font-size: calc(1.425rem + 2.1vw) !important;}

@media screen and (min-width:1200px) {
    .display-3 {font-size: 3.75rem !important;}
    .display-5 {font-size: 2.875rem !important;}
} */

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

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

@media screen and (min-width: 1200px) {
    p {font-size: 1.125rem;}
    .img-fluid {width: fit-content;}
}

.bi::before {vertical-align: middle;}

address {margin-bottom: 0.5rem; margin-top: 0.5rem;}
.privacy-link {color: var(--bs-gray-500); font-size: 1rem;}
.privacy-link:hover {color: var(--bs-primary);}
section {padding-top: 6rem; padding-bottom: 6rem; font-size: var(--bs-section-font-size); overflow: hidden;}
.sub-page-section {padding-top: 6rem; padding-bottom: 6rem; word-break: keep-all;}
@media screen and (min-width: 1200px) {
    .sub-page-section {padding-top: 7.5rem; padding-bottom: 7.5rem;}
}



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

.menu-open {overflow: hidden;}


/* ********************* */
/* ******* layout ****** */
/* ********************* */
.container {max-width: 1360px; 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: 0rem;
}
/* .btn-link {width: 160px;padding: 15px 20px; height: 48px;} */

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

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

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

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

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

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

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



/* ********************* */
/* **** color & bg ***** */
/* ********************* */
.text-primary {color: var(--bs-primary) !important;}
.text-secondary {color: var(--bs-secondary) !important;}
.text-success {color: var(--bs-success) !important;}
.text-info {color: var(--bs-info) !important;}
.text-warning {color: var(--bs-warning) !important;}
.text-danger {color: var(--bs-danger) !important;}
.text-light {color: var(--bs-light) !important;}
.text-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;}
.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 ****** */
/* ******************** */
/* main-visual */
.main-visual * {color: var(--bs-white);}
.main-visual .swiper-slide {width: 100%; height: 100vh;}

.main-visual .visual {background-position: center center; background-repeat: no-repeat; background-size: cover; text-align: center;}
.main-visual .visual h3 {font-weight: 500;}
.main-visual .visual h1 {font-weight: 400; margin: 0; word-break: keep-all;}
.main-visual .visual h2 {font-weight: 400; margin: 0; word-break: keep-all;}
.main-visual .visual strong {display: block;}

.main-visual .visual-01 {background-image: url("/images/main/mainvisual-01.jpg");}
.main-visual .visual-02 {background-image: url("/images/main/mainvisual-02.jpg");}
.main-visual .visual-03 {background-image: url("/images/main/mainvisual-03.jpg");}
.main-visual .visual-04 {background-image: url("/images/main/mainvisual-04.jpg");}
.main-visual .visual-05 {background-image: url("/images/main/mainvisual-05.jpg");}
.main-visual .visual-06 {background-image: url("/images/main/mainvisual-06.jpg");}






.visual-title-top {font-size: 1.375rem; font-weight: 400;}
/* .main-visual .visual-01 {width: 100%; height: 100vh; background-image: linear-gradient(180deg, rgba(30, 24, 53, 0.4) 0%, rgba(30, 24, 53, 0.4) 90.16%), url('/images/main/mainvisual_01.jpg'); background-size: cover; background-repeat: no-repeat; background-position: center center;}
.main-visual .visual-02 {width: 100%; height: 100vh; 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;}
.main-visual .visual-03 {width: 100%; height: 100vh; background-image: linear-gradient(180deg, rgba(30, 24, 53, 0.4) 0%, rgba(30, 24, 53, 0.4) 90.16%), url('/images/main/mainvisual_03.jpg'); background-size: cover; background-repeat: no-repeat; background-position: center center;} */

.main-visual .container {width: 100%;/*  height: 100%; */ display: flex; flex-direction: column; justify-content: center; align-items: center; color: var(--bs-white); margin-top: 250px;}

@media screen and (min-width: 1200px) {
    .main-visual .swiper-slide {max-height: 765px;}
}

.swiper-controls {width: 100%; height: 3px; max-width: 490px; padding-left: 4%; padding-right: 4%; position: absolute; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); display: flex; justify-content: flex-start; z-index: 1; bottom: 100px; }
.swiper-controls .progress {width: 100%; max-width: 270px; height: 2px; background-color: rgba(255, 255, 255, 0.5); -webkit-border-radius: 0; border-radius: 0; overflow: hidden; margin-right: 0.5rem; margin-top: 2px;}
.swiper-controls .progress .progress-bar {width: 0%; background-color: var(--bs-white);   animation-name: progress; animation-duration: 5s; animation-timing-function: linear; animation-iteration-count: 1;}


.main-visual .swiper-pagination-fraction {min-width: 62px; position: relative; margin-right: 0.5rem; width: auto;}

@-webkit-keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


.main-visual .swiper-button-next, 
.main-visual .swiper-button-prev {top: auto; bottom: auto; left: auto; right: auto; position: relative;}
.main-visual .swiper-button-prev, 
.main-visual .swiper-rtl .swiper-button-next {margin-left: 10px;}
.main-visual .swiper-button-next, 
.main-visual .swiper-rtl .swiper-button-prev {margin-left: 16px;}

.main-visual .swiper-button-next:after, 
.main-visual .swiper-button-prev:after {font-size: 1rem; font-weight: 900; color: var(--bs-white); margin-top: 4px;}
.button-area button {padding: 0;  font-size: 1.5rem; margin-top: -26px;} 

/* .main-visual .swiper-button-next::before {content: ""; width: 2px; height: 16px; background-color: var(--bs-white); opacity: 0.5; position: relative; left: -12px;} */
.main-visual .bar {position: absolute;width: 2px; height: 16px; background-color: var(--bs-white); opacity: 0.5; left: -9px; top: 16.5px;}

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

}

@media screen and (min-width: 1200px) {
    .swiper-controls {padding-left: 20px; padding-right: 20px;bottom: 30%;}
    .main-visual .swiper-button-next::before {left: -1rem;}

}

/* sub-visual */
.sub-visual {width: 100%; height: 200px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; background-image:url('/images/sub/subvisual.jpg'); background-size: cover; margin-top: 100px; font-weight: 600; }

.sub-visual.visual-01 { background-image: url('/images/sub/subvisual-01.jpg');}
/* .sub-visual.visual-02 { background-image: url('/images/sub/subvisual-02.jpg');} */
.sub-visual.visual-03 { background-image: url('/images/sub/subvisual-03.jpg');}
.sub-visual.visual-04 { background-image: url('/images/sub/subvisual-04.jpg');}


.sub-visual.business-visual-01 {background-image: url('/images/sub/business/business-visual-01.jpg');}
.sub-visual.business-visual-02 {background-image: url('/images/sub/business/business-visual-02.jpg');}
.sub-visual.business-visual-03 {background-image: url('/images/sub/business/business-visual-03.jpg');}
.sub-visual.business-visual-04 {background-image: url('/images/sub/business/business-visual-04.jpg');}
.sub-visual.business-visual-05 {background-image: url('/images/sub/business/business-visual-05.jpg');}



.sub-visual h1 {font-weight: 500; margin-bottom: 0;}

@media screen and (min-width: 576px) {
    .sub-visual {height: 300px;}
}


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

    .sub-visual {height: 360px;}
}



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

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


/* ******************** */
/* ******** snb ******* */
/* ******************** */
/* desktop */
.snb {border-bottom: 1px solid var(--bs-gray-300); height: 55px; }
.snb-list li.active a {color: var(--bs-primary); border-bottom: 4px solid var(--bs-primary);}
.snb-list li a {padding: 1rem; color: var(--bs-gray); display: block;}
.snb .snb-list {max-width: 550px;}

/* mobild */
.text-muted {color: var(--bs-gray) !important;}
.text-muted:hover {color: var(--bs-primary) !important;}
.snb-list {display: flex; justify-content: flex-start; align-items: flex-start;  font-size: 1rem; font-weight: 500;}
.snb-list .snb-item {border-right: 1px solid var(--bs-gray-300); position: relative;}
.snb-list .snb-item.home {height: 55px; padding-left: 10px; padding-right: 10px; line-height: 55px;border-left: 1px solid var(--bs-gray-300);}
.snb-list .bi-house-door::before {font-size: 1.5rem;}

.snb-list .dropdown {width: calc(50% - 22.5px); height: 55px;}
.snb-list .dropdown-toggle {width: 100%; padding-left: 1.5rem; padding-right: 2.5rem; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; text-align: left; position: relative; outline: 0; border: none; font-weight: 500; font-size: 1rem; box-sizing: border-box;}
.snb-list .dropdown-toggle:focus {outline: 0; border: none;}
.snb-list .dropdown-toggle.show {background-color: var(--bs-primary); color: var(--bs-white);}


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

    .snb-list .snb-item.home {padding-left: 20px; padding-right: 20px;}
}




/* 
.snb-list .dropdown-toggle::after {position: absolute; top: 50%; right: 4%; -webkit-transform: translateY(-50%); transform: translateY(-50%); } */
.snb-list .dropdown-toggle::after {display: none;}
.snb-list .dropdown-toggle::before {content: "\F285"; font-family: 'bootstrap-icons'; position: absolute; top: 50%; right: 24px; transform: rotate(90deg) translateX(-70%); font-size: 0.875rem;}

.snb-list .dropdown-toggle.show::before {transform: rotate(270deg) translateX(80%);}

.snb-list .dropdown-toggle.on {color: var(--bs-primary);}

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

.snb-list .dropdown-menu {min-width: 0; width: 100%; padding-top: 0; padding-bottom: 0; z-index: 2000;}
.snb-list .dropdown-menu.show {transform: translate3d(0px, 55px, 0px) !important; border-radius: 0; border-color: var(--bs-gray-300);}

.snb-list .dropdown-menu a {display: block; width: 100%; padding: 16px 1.5rem; height: 55px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; font-size: 1rem;}

.snb-list .dropdown-menu a.text-muted:hover {color: var(--bs-primary);}
.snb-list .dropdown-menu a:hover {color: var(--bs-primary); background-color: transparent; font-weight: 500;}

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

@media screen and (max-width:575px) {

    /* .snb-list .snb-item.home {padding-left: 10px; padding-right: 10px;} */
    /* .snb-list .bi-house-door::before {font-size: 1.25rem;} */
    .snb-list .dropdown-toggle {padding-left: 1rem; padding-right: 1.75rem;}
    .snb-list .dropdown-toggle::before {right: 12px;}
    .snb-list .dropdown-toggle{font-size: 1rem;}
    .snb-list .dropdown-menu a {padding: 0.5rem 1rem; height: auto;}

/*     .snb .snb-list {position: relative;}
    .snb-list .snb-item {position: initial;}
    .snb-list .dropdown-menu {border-radius: 0;} */
}

@media screen and (max-width:767px) {

    .snb .container {padding: 0;}
}








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






/* ********************* */
/* ******* header ****** */
/* ********************* */
.header {width: 100%; height: auto; position: fixed; top: 0; left: 0; /* border-bottom: 1px solid rgba(255, 255, 255, 0.5);  */z-index: 999999;}

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


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

/* logo */
.navbar-brand {position: absolute; top: 50%; left: 4%; -webkit-transform: translateY(-50%); transform: translateY(-50%); width: 200px; height: auto; }
.navbar-brand .logo-dark {display: none;}
.navbar-brand .logo-mark {display: none;}


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

.header.header-collapse {border-bottom: 1px solid var(--bs-gray-300);}




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

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

/* .gnb .nav-list:hover .nav-item::before{content: ""; width: 100%; height: 1px; background-color: var(--bs-gray-300); position: absolute; bottom: -1; left: 50%; transform: translateX(-50%); z-index: 999999999;} */

.gnb .nav-item {position: relative;}

.gnb .nav-item:hover .nav-link {color: var(--bs-white); background-color: var(--bs-primary);}
/* .gnb .nav-item.active::after, */
.gnb .nav-item:hover::after {opacity: 1; visibility: visible; width: 85%;}
/* .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::after {content: ""; width: 0; height: 2px; background-color: var(--bs-white); position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); opacity: 0; transition: all linear 0.3s;}



.gnb .nav-item.active > a {color: var(--bs-primary);}
.gnb .nav-link {padding: 35px 30px;  color: var(--bs-white); font-weight: 500; font-size: 1.375rem; width: 170px; height: 100px; text-align: center;}

.gnb .nav-item:hover .submenu {display: block; background-color: var(--bs-primary); border-color: transparent;transition: all linear 0.3s;}



.header .menu-bag {width: 100%; height: 350px; background-color: var(--bs-white); display: none; transition: all linear 0.5s;position: relative; /* z-index: -1; */  background-image: url("/images/common/menu-bag.jpg"); background-repeat: no-repeat; background-size: contain; background-position: 400px center; border-top: 1px solid var(--bs-gray-300);}




/* submenu */
.submenu {width: 100%; padding: 2rem 1.125rem; background-color: var(--bs-white);  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);  white-space: nowrap; display: none; text-align: center; height: 350px;border-top: 1px solid var(--bs-gray-300); border-left: 1px solid var(--bs-gray-300);}

.gnb .nav-item:last-child .submenu {border-right: 1px solid var(--bs-gray-300);}

.sub-item:not(:last-child) {margin-bottom: 1.5rem;}
.sub-item.active {color: var(--bs-primary);}
.sub-item.active .sub-link::after {opacity: 1; visibility: visible;}
.sub-item:hover {color: var(--bs-primary);}

.gnb .nav-item .submenu .sub-link {padding-bottom: 2px; position: relative; }

.gnb .nav-item .submenu .sub-link::after {content: ""; width: 100%; height: 2px; background-color: var(--bs-white); bottom: 0; left: 50%; transform: translateX(-50%); position: absolute; width: 0px; transition: all linear 0.2s;}


.gnb .nav-item .submenu .sub-link:hover::after {opacity: 1; width: 100%;}
.gnb .nav-item .submenu .sub-item.active .sub-link::after {opacity: 1; width: 100%;}
.gnb .nav-item:hover .submenu .sub-link {color: var(--bs-white); opacity: 0.7;}
.gnb .nav-item .submenu .sub-link:hover {opacity: 1;}
.gnb .nav-item .submenu .sub-item.active .sub-link {opacity: 1;}
.sub-link {color: inherit; position: relative; display: inline-block;}
.gnb .nav-list:hover .submenu {display: block;}

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


@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; background-image: url("/images/common/menu-bag.jpg"); background-repeat: no-repeat; background-position: 90% bottom;}
.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: 90px; border-bottom: 1px solid var(--bs-gray-300); display: flex; justify-content: space-between; align-items: center; background-size: cover;}

.all-menu-header .logo {max-width: 200px; height: auto;}

.all-menu-header .btn-close {opacity: 1; font-size: 1.5rem;}

.all-menu-nav {width: 100%; max-height: 100vh; 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;}
/* .all-menu-list .btn-allmenu>.bi-chevron-down {margin-top: -10px;} */
.all-menu-list .btn-allmenu {border-width: 0;}
.all-menu-list .btn-allmenu .bi {font-size: 1rem; margin-left: 0.5rem; margin-top: -10px;}
.all-menu-list .btn-allmenu .bi::before {vertical-align: text-top;}
.all-menu-list .btn-allmenu.active {color: var(--bs-primary);}
.all-menu-list .btn-allmenu.active .bi::before {-webkit-transform: rotate(180deg); transform: rotate(180deg);}
.all-menu-list .btn-allmenu.active + .all-submenu {display: block;}

.all-submenu {padding: 1rem; margin-bottom: 1rem; font-size: 1.125rem; font-weight: 500; background-color: var(--bs-gray-100); display: none; /* border: 1px solid var(--bs-primary);  */padding-top: 1.5rem; padding-bottom: 1.5rem;}


.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);}





/* ********************** */
/* *** header-isFixed *** */
/* ********************** */
.header.isFixed {background-color: var(--bs-white); border-color: var(--bs-gray-300); border-bottom: 1px solid var(--bs-gray-300);}
.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;}


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


/* ********************** */
/* *** 서브페이지 header *** */
/* ********************** */

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







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

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


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

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



/* ******************** */
/* ******** main ****** */
/* ******************** */


/* 메인 메뉴 */

.main-menu {max-width: 1310px; margin: 0 auto; text-align: center; position: relative; z-index: 99; top: -3.5rem;}

.main-menu .menu-list {width: calc(100% - 8%); display: flex; flex-wrap: wrap; margin: 0 4%; justify-content: center;}
.main-menu .menu-item {width: 33.333%; background-color: var(--bs-white);box-shadow: 3px 12px 12px 0px rgba(0, 0, 0, 0.09); }

.main-menu .img-area {width: 55px; height: 55px; background-color: var(--bs-gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center;}
.main-menu .menu-link {display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 1rem 0.5rem;border-right: 1px solid var(--bs-gray-300); border-top: 1px solid var(--bs-gray-300); }
.main-menu .menu-item:last-child {border-right: none;}
.main-menu .img-area img {height: 25px; width: auto; vertical-align: middle;}
.main-menu .img-area img:last-child {display: none;}
.main-menu h6 {margin-top: 0.75rem; margin-bottom: 0; font-size: 1rem; color: var(--bs-dark); font-weight: 400;}

.main-menu .menu-link:hover .img-area img:last-child {display: block;}
.main-menu .menu-link:hover .img-area img:first-child {display: none;}

.main-menu .menu-link:hover h6 {color: var(--bs-secondary);}
.main-menu .menu-link:hover .img-area {background-color: var(--bs-secondary);}

@media screen and (min-width:576px) {
    .main-menu .menu-item {width: 140px;}
}

@media screen and (min-width:768px){
    .main-menu .menu-item {width: 200px;}
    .main-menu .menu-link {padding: 30px; }
    .main-menu .img-area {width: 65px; height: 65px; }
    .main-menu .img-area img {height: 30px;}
    .main-menu h6 {font-size: 1.125rem;}
    .main-menu .menu-item {border: none;}

}


/* 사업영역 */


.business-section {display: flex; justify-content: flex-end;}
.business-section .content {max-width: 540px; padding: 3rem; padding-right: 5rem; height: 500px; position: relative;  background-color: var(--bs-white);}
.business-swiper-slide {position: relative; max-width: 1620px; margin-left: auto; display: flex;}
.business-section .content b{font-size: 1rem; font-weight: 300;}
.business-slide-left {max-width: 760px;}
.business-slide-right {max-width: 860px;}
/* .business-section {margin-top: -60px;} */
.business-swiper-slide .business-slide-left .swiper-slide {display: flex; justify-content: flex-end; align-items: flex-start; background-color: var(--bs-white);}

.business-section .business-slide-left .swiper {/*max-width: 860px; */ margin-left: auto; margin-right: 0; position: static;}
.business-section .business-slide-left .swiper-pagination {height: 100%; width: 220px; background-color: var(--bs-white);bottom: 0; text-align: left;}
.business-section .swiper-pagination-bullet {background-color: transparent; width: 100%; height: 20%; opacity: 1; font-size: 1.375rem;  border-radius: 0; line-height: 3.2; border-right: 1px solid var(--bs-gray-300); font-weight: 400;}
.business-section .swiper-pagination-bullet span {display: block; padding: 1rem; box-sizing: border-box;}
.business-section .swiper-pagination-bullet span:hover {color: var(--bs-primary);}
.business-section  .swiper-pagination-bullet-active {border-right: 1px solid var(--bs-dark);}
.business-section  .swiper-pagination-bullet-active span {color: var(--bs-primary);}

.business-section .swiper-button-next, .business-section .swiper-button-prev {right: auto; left: 680px; top: auto; bottom: 0; transform: rotate(90deg);  width: 80px; height: 80px; background-color: var(--bs-primary);}
.business-section .swiper-button-prev.swiper-button-disabled {opacity: 1;}
.business-section .swiper-button-prev {bottom: 80px;background-color: var(--bs-gray-500);}
.business-section .swiper-button-next {background-color: var(--bs-gray-500);}
.business-section .swiper-button-next.swiper-button-disabled {opacity: 1;}

.business-section .swiper-button-next::after , .business-section .swiper-button-prev::after {font-size: 2rem; color: var(--bs-white);}

.business-section .swiper-button-next.active {background-color: var(--bs-primary);}
.business-section .swiper-button-prev.active {background-color: var(--bs-primary);}
.business-section .swiper-button-prev:hover {background-color: var(--bs-primary);}
.business-section .swiper-button-next:hover {background-color: var(--bs-primary);}


.business-btn {width: 160px; padding: 15px 20px; border: 1px solid var(--bs-dark); font-size: 0.875rem; position: absolute; bottom: 3rem; height: 48px;}
.business-btn:hover {background-color: var(--bs-primary); color: var(--bs-white); border-color: var(--bs-white);}

.business-section .content .title {font-weight: 500; margin-bottom: 3rem; }
.business-section .content p {font-weight: 300;}

@media screen and (max-width:1600px) {
    .business-swiper-slide {justify-content: flex-end;}
    .business-section {justify-content: center; overflow: hidden;}
    .business-slide-left {max-width: 50%;}
    .business-slide-right {max-width: 40%;}
    .business-section .business-slide-left .swiper-pagination {left: 14%;}
    .business-section .content {padding-right: 2rem;margin-left: 300px; max-width: fit-content;}
    .business-section .swiper-button-next, .business-section .swiper-button-prev {left: calc(60% - 80px);}
    .business-slide-right .swiper-slide img{max-width: 100%; height: 500px; object-fit: cover;}

    
}

/*  @media screen and (max-width:1450px) {

   .business-swiper-slide {} */
/*     .business-slide-left {max-width: 100%;}
    .business-slide-right {max-width: 100%;} */
   /*  .business-section {margin-right: 20px; margin-left: 20px;}
    .business-swiper-slide {padding-top: 100px; }
    .business-section .business-slide-left .swiper-pagination {width: 100% ;bottom: auto; top: 0; display: flex; height: 100px; border-bottom: 1px solid var(--bs-gray-300); max-width: 1450px; margin-left: 4%; margin-right: 4%;}
    .business-section .swiper-pagination-bullet {height: 100%; margin: 0;border-top: 1px solid var(--bs-gray-300); }
    .business-section .swiper-pagination-bullet-active {border-bottom: 1px solid var(--bs-dark); border-right-color: var(--bs-gray-300); }

    .business-section .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .business-section .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {margin: 0; width: 20%;}
    .business-section .swiper-pagination-bullet:last-child {border-right: none;}
 
}*/
/* @media screen and (max-width:1199px) {
    .business-slide-left .swiper-pagination {position: relative;}
    .business-section .content {margin-left: 0;}
    .business-section .business-slide-left .swiper {display: flex; flex-direction: column;}
    .business-swiper-slide {margin-left: 4%; margin-right: 4%;}
    .business-section .business-slide-left .swiper-pagination {width: 100%; display: flex;}
    .business-section .business-slide-left .swiper-pagination {min-width: 220px;}
    .business-slide-left {padding: 4%;}
    .business-section .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .business-section .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {margin: 0; width: 20%;}
    .business-section .business-slide-left .swiper-pagination {left: 4%;}
}
 */

@media screen and (max-width:1199px) {

    .business-section .content {margin-left: 400px;}
    .business-section .business-slide-left .swiper-pagination {left: 21%;}
    .business-section .swiper-button-next, .business-section .swiper-button-prev {width: 50px; height: 50px;}
    .business-section .swiper-button-next::after, .business-section .swiper-button-prev::after {font-size: 1rem;}
    .business-section .swiper-button-prev {bottom: 50px;}
    .business-section .swiper-button-next, .business-section .swiper-button-prev {left: calc(60% - 50px);}
    .business-btn {bottom: 0;}
}

@media screen and (max-width:991px) {
    .business-swiper-slide {flex-direction: column; width: 100%;}
    .business-section .business-slide-left .swiper-pagination {display: none;}
    .business-section .content {margin-left: 0; height: auto; padding-left: 4%; padding-right: 4%;}
    .business-slide-left {max-width: 100%;}
    .business-slide-right {max-width: 100%;}
    .business-slide-right .swiper-slide img {width: 100%;}
    .business-btn {position: relative; bottom:0;}
    .business-swiper-slide .business-slide-left .swiper-slide {justify-content: flex-start; background-color: var(--bs-white); padding-bottom: 50px;}

    .business-slide-right .swiper-slide img {height: auto;}
    .business-section .business-slide-left .swiper {position: relative;}

    .business-section .swiper-button-next, .business-section .swiper-button-prev {left: auto; right: 0; }
    
}
@media screen and (max-width:768px) {
    .business-section {padding-top: 0rem;}

}

/* 공사실적 */
.performance-section {background-color: var(--bs-gray-100);}
.section-header {margin-bottom: 3rem;}
.section-header .title b{ font-weight: 500;}
.performance-list {margin-right: -12px; margin-left: -12px; display: flex;}
.performance-list  .card {border-radius: 0; border: 0px solid transparent;}
.performance-list  .card-img-top {border-radius: 0;max-width: 100%; height: 228px; object-fit: cover;}
.performance-list  .card .date {margin-bottom: 2px; font-size: 1rem;}
.performance-list  .card .date:hover {color: inherit;}
.performance-list  .card h6 {font-size: 1.125rem; font-weight: 500; height: 65px; margin-bottom: 2rem;overflow: hidden;text-overflow: ellipsis;display: -webkit-box !important;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}
.performance-list .card-body {padding: 1.5rem;border: none;}
.performance-list .link-btn {padding: 0; font-size: 0.875rem;  text-align: left;}
.performance-list .link-btn i {font-size: 0.875rem; vertical-align: baseline;}
.performance-list .link-btn:hover {color: var(--bs-primary);}
.performance-list li a {display: block; background-color: var(--bs-white);}
.performance-list .card:hover {box-shadow: 3px 12px 32px 0px rgba(0, 0, 0, 0.09);}



@media screen and (max-width:1199px) {
    .performance-list  {margin-bottom: -24px;}
    .performance-list li {margin-bottom: 24px;}
}


@media screen and (max-width:575px) {

    .performance-list .card h6 {height: auto;}
}

/* 질문과 답변,온라인문의,카타로그신청 */
.service-section {text-align: center; padding-top: 0; padding-bottom: 0;}
.service-section  ul {display: flex; }
.service-section .row>* {margin-left: 0; margin-right: 0; padding-right: 0; padding-left: 0;}
.service-section .row {margin-top: 0; margin-left: 0; margin-right: 0;}
.service-section .con {height: 260px ; background-position: center center; background-repeat: no-repeat; background-size: cover; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative;}

.service-section .con::after {background-color: var(--bs-primary); opacity: .2; position: absolute; top: 0; left: 0; width: 100%; height: 100%;padding: 0;}
.service-section .con-01 {background-image: url("/images/main/qna.jpg");}
.service-section .con-01:hover {background-image: url("/images/main/qna-hover.jpg");}
.service-section .con-02 {background-image: url("/images/main/inquiry.jpg");}
.service-section .con-02:hover {background-image: url("/images/main/inquiry-hover.jpg");}
.service-section .con-03 {background-image: url("/images/main/catalog.jpg");}
.service-section .con-03:hover {background-image: url("/images/main/catalog-hover.jpg");}
.service-section h3 {color: var(--bs-white); margin-bottom: 1.5rem; font-weight: 500;}
.view-btn {width: 160px; height: 48px; border: 1px solid var(--bs-primary); color: var(--bs-primary); padding: 15px 20px; font-size: 0.875rem;}
.view-btn:hover {background-color: var(--bs-primary); color: var(--bs-white);}
.view-btn:active {border-color: var(--bs-primary) !important; background-color: var(--bs-primary) !important; color: var(--bs-white) !important;} 

@media screen and (min-width:1200px) {
    .service-section .container {padding-left: 0; padding-right: 0;}
    .service-section .row {margin:0; margin-right: 20px; margin-left: 20px;}
}

@media screen and (max-width:1200px) {
    .service-section .container {padding-left: 0; padding-right: 0;}
    
}





/* ******************** */
/* ******** sub  ******* */
/* ******************** */
.section-header>b {font-weight: 300; font-size: 1rem;}
.section-header p {font-size: 1.125rem;}
h2.title {margin-bottom: 0;} 
h3.title {margin-bottom: 0;} 
h3.dot b {font-weight: 500;}
h3.mt {margin-top: 6rem;}
article.pt {padding-top: 6rem;}
article.pb {padding-bottom: 6rem;}
.table-responsive {overflow-y: hidden;}

@media screen and (min-width:992px) {
    .img-title {min-width: 280px;}
    
}


/* 회사소개 */

/* ceo 인사말 */
/* .section-greeting {font-size: 1.125rem;} */
.section-greeting .bag-gray {background-color: var(--bs-gray-100);}
.section-greeting .section-header {padding-top: 2.5rem; padding-bottom: 2.5rem; margin-bottom: 0;}
.section-greeting .title b {color: var(--bs-primary); display: block;}
.section-greeting .section-header p  {width: 100%; margin-bottom: 0; }
.section-greeting .name {font-size: 1.125rem; text-align: right;}
.section-greeting .name strong {font-size: 1.375rem;}
.section-greeting .text-area p {font-size: 1rem;}

@media screen and (min-width:992px) {
    .section-greeting .text-area {width: 69%;}
    .section-greeting .bag-gray {margin-top:3rem;}
    .section-greeting .img-area{margin-top: -3rem;/*  margin-left: 14px; */}
    .section-greeting .section-header p  {width: 85%;}

    
}

/* 조직도 */

.section-staff .img-area {width: fit-content; margin-top: 6rem; margin-left: auto; margin-right: auto;}

/* 회사연혁 */
/* .section-history {font-size: 1.125rem;} */


.history_slide{width: 100%;height: 100%; margin-bottom: -1rem;}

/* .history_slide .swiper-slide {display: flex;flex-direction: column;} */
.history_slide .swiper-slide .hidtory-con {display: flex;}
.history_slide .swiper-slide h3 {margin-bottom: 40px;}
.hidtory-con strong {font-weight: 600; color: var(--bs-gray); min-width: 70px; position: relative;}
.hidtory-con strong::after {content: ""; background-color: var(--bs-primary); width: 4px; height: 4px; position: absolute; top: 12px; right: 12px;}
.hidtory-con b {font-weight: 600; color: var(--bs-gray);}
.hidtory-con li {display: flex; margin-bottom: 1rem;}
.hidtory-con li b{ min-width: 30px;}
.hidtory-con li p {margin-bottom: 0;}
.hidtory-con li span {font-size: 1rem; color: var(--bs-gray); display: block;}

.history_slide .swiper-horizontal>.swiper-pagination-progressbar, .history_slide .swiper-pagination-progressbar.swiper-pagination-horizontal {height: 1px; background-color: var(--bs-gray-300); top: 3rem;}

.history_slide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {background-color: var(--bs-gray-500);}
.section-history article {padding-bottom: 6rem;}
.section-history .bag-gray {background-color: var(--bs-gray-100); padding-top: 6rem; }

/* .section-history .swiper-backface-hidden .swiper-slide {width: 550px !important;} */


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

    .section-history .swiper-backface-hidden .swiper-slide {width: 550px !important;}
}

/* 면허/특허 */

.section-certifi .section-header{padding-bottom: 2rem; border-bottom: 1px solid var(--bs-gray-300);}
.section-certifi .patent {margin-top: 6rem;}
.section-certifi img {margin-bottom: 1.5rem;}
.section-certifi article {margin-bottom: -1.5rem;}


/* 화성공장 */
/* .section_location {font-size: 1.125rem;} */
.sub-page-section .title-area {display: flex; flex-direction: column; justify-content: center; padding-left: 12px;}
.dot {position: relative; padding-left: 12px; margin-bottom: 4px;}
.dot::before {content: "";background-color: var(--bs-primary);width: 4px; height: 4px;position: absolute; left: 0; top: 10px; }
.dot:last-child { margin-bottom: 0;}
.section_location .map-area {padding-top: 6rem; }
.section_location .map {max-width: 100%; width: 100%;}
.map-con-area {background-color: var(--bs-gray-100); padding: 1.5rem; display: flex; justify-content: space-between; background-image: url("/images/sub/company/location_bag.png"); background-repeat: no-repeat; background-position: 87% center; background-size: cover; flex-direction: column;} 

.map-con li {font-weight: 500; color: var(--bs-gray); margin-bottom: 0.5rem;display: flex;}
.map-con h3 {margin-bottom: 1.5rem;}
.map-con i::before{color: var(--bs-secondary); margin-right: 0.5rem; font-size: 1.375rem; vertical-align: sub;}
.map-con i {display: block;}
.map-btn {width: 160px;padding: 15px 20px; height: 48px;border: 1px solid var(--bs-gray);font-size: 0.875rem;  bottom: 3rem; color: var(--bs-gray); margin-top: 1rem;}
.map-btn:hover {background-color: var(--bs-primary); color: var(--bs-white); border-color: var(--bs-primary);}

@media screen and (min-width:768px)  {
    .map-con-area {flex-direction: row; background-size: contain; padding:3rem;} 
}

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

    .sub-page-section .title-area { padding-left: 2.25rem;}
    .map-btn {margin-top: 0;}
}

/* LNG/LPG TANK */
.working-list li {display: flex; align-items: flex-start;}
/* .number {width: 20px; height: 20px; background-color: var(--bs-primary); display: flex; justify-content: center; align-items: center; border-radius: 50%; text-align: center; color: var(--bs-white); font-weight: 700; font-size: 0.875rem; margin-right: 0.5rem; margin-top: 2px; min-width: 20px;} */
.number-list {counter-reset: number;}
.number-list p {margin: 0;position: relative; padding-left: 26px;}
.number-list p::before {counter-increment: number; content: "" counter(number);width: 20px; height: 20px; background-color: var(--bs-primary);text-align: center; color: var(--bs-white); font-weight: 700; font-size: 0.875rem; margin-right: 6px;  min-width: 20px; display: inline-block;border-radius: 50%;position: absolute; left: 0;top: 2px;}


















/* 싸이로 */
.bag-gray {background-color: var(--bs-gray-100);}
.content-area .content {padding: 1.5rem; border: 1px solid var(--bs-gray-300); height: 100%;}
.content-area h3 {font-weight: 500; display: flex; align-items: center; margin: 0;}
.content-area .icon-area {width: 60px; height: 60px; background-color: var(--bs-gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 1rem;}
.content-area .icon-area img {height: 30px;}
.content-area.row {margin-bottom: -1.5rem;}
.content-area.row>* {padding-bottom: 1.5rem;}
/* .section_cyro .bag-gray .section-header {min-width: 300px;} */

@media screen and (min-width:768px) {
    .content-area .content {padding: 3rem;}

    .content-area.row {margin-left: -24px; margin-right: -24px; margin-bottom: -3rem;}
    .content-area.row>* {padding-right:calc(var(--bs-gutter-x) * 1); padding-left: calc(var(--bs-gutter-x) * 1); padding-bottom: 3rem;}
    .title-wrap.row {margin-left: -24px; margin-right: -24px;}
    .title-wrap.row>* {padding-right:calc(var(--bs-gutter-x) * 1); padding-left: calc(var(--bs-gutter-x) * 1);}
}

/* NPR/UNPR */
/* .section_nprunpr {font-size: 1.125rem;} */
.section_nprunpr .section-header {margin-bottom: 1rem;}
h3.dot { font-weight: 300; margin-bottom: 1.5rem;}
h3.dot::before {top: 14px;}
.img-wrap .img-area.row>div {margin-bottom: 1.5rem;}
.img-wrap .img-area.row {margin-bottom: -1.5rem;}
.border-gray {border:1px solid var(--bs-gray-300); padding: 1rem;}
.icon-tltie {display: flex;}
.icon-tltie h3{font-weight: 400;}
.nprunpr-icon {width: 32px; height: 30px; border-radius: 50%; background-color: var(--bs-primary); display: flex; justify-content: center; align-items: center;}
.nprunpr-icon img {width: 1.125rem;}
.bar-icon {position: relative; padding-left: 12px; padding-bottom: 4px;}
.bar-icon::after {position: absolute; content: "-"; left: 0; top: -2px;}

.primary-table {/* border-bottom: 1px solid var(--bs-gray); */ background-color: var(--bs-white);  color: var(--bs-dark);/* table-layout: fixed; */}
.primary-table thead {background-color: var(--bs-primary); }
.primary-table thead tr th {color: var(--bs-white); font-size: 1.25rem; font-weight: 500;}
.primary-table tbody tr th {font-weight: 300; border-right: 1px solid var(--bs-gray-300);}
.primary-table tbody tr:last-child {border-bottom: 1px solid var(--bs-gray);}



.yeongdong_slide-area {position: relative;}
.yeongdong_slide {max-width: 1064px; height: auto;}
.yeongdong_slide .swiper-button-next , .yeongdong_slide .swiper-button-prev{background-color: var(--bs-gray-500); width: 50px; height: 50px;}
.yeongdong_slide .swiper-button-next::after, .yeongdong_slide .swiper-button-prev::after {font-size: 1rem; color: var(--bs-white);}
.yeongdong_slide {position: static;}
.yeongdong_slide .swiper-button-next {right: 0;}
.yeongdong_slide .swiper-button-prev {left: 0;}
.yeongdong_slide .swiper-button-next.swiper-button-disabled, .yeongdong_slide .swiper-button-prev.swiper-button-disabled {opacity: 1;}
.yeongdong_slide .swiper-button-prev:hover {background-color: var(--bs-primary);}
.yeongdong_slide .swiper-button-next:hover {background-color: var(--bs-primary);}



.content-area-02 .content {padding: 0; border: 0;}
.content-area-02 {padding-bottom: 1.5rem;}
.content-area-02 .list-01 {border: 1px solid var(--bs-dark);padding: 1rem;} 
.content-area-02 .list-01 span {position: relative; letter-spacing: -0.9px;}
.content-area-02 .list-01 span::after {content:"\F231"; font-family: 'bootstrap-icons'; font-size: 10px;padding: 0 4px;}
.content-area-02 .list-01 span:last-child::after {display: none;}
/* .content-area-02 .bar-icon {padding-bottom: 0;} */
.content-area-02 li {line-height: 1.3;}
.content-area-02:last-child li{padding-bottom: 0;}
.content-area-02:last-child{padding-bottom: 0;}
/* .content-area-02.row>* {padding-bottom: 1.5rem;} */
.content-area-02.row>li {padding-bottom: 1.5rem;}
.content-area-02.row {margin-bottom: 1.5rem;}
.content-area-02.row:last-child>li {padding-bottom: 0;}
.content-area-02.row:last-child {margin-bottom: 0;}
.content-area-02 strong {font-weight: 500;}



@media screen and (min-width:768px) {
    .border-gray {padding: 30px;}

}

@media screen and (min-width:992px) {
    .img-wrap .img-area.row{margin-right: calc(-1 * var(--bs-gutter-x));
        margin-left: calc(-1 * var(--bs-gutter-x));}
    .img-wrap .img-area.row>*{padding-right: calc(var(--bs-gutter-x) * 1);
        padding-left: calc(var(--bs-gutter-x) * 1);}
    .img-wrap .img-area.row>div {margin-bottom: 0;}
    .content-area-02 {padding-bottom: 6rem;}
    .content-area-02:nth-child(odd) {flex-direction: row-reverse;}
    .content-area-02:nth-child(odd)>li:last-child {padding-left: 4.5rem;}
    .content-area-02.row>li {padding-bottom: 0;}
    .content-area-02.row {margin-bottom: 0;}
    .primary-table thead tr th {font-size: 1.375rem;}
    .yeongdong_slide .swiper-button-next , .yeongdong_slide .swiper-button-prev{width: 80px; height: 80px;}
    .yeongdong_slide .swiper-button-next::after, .yeongdong_slide .swiper-button-prev::after {font-size: 2rem;}
}

@media screen and (max-width:767px) {
    .yeongdong_slide .swiper-button-next {top: -40px; right: 0; left: auto; bottom: auto;}
    .yeongdong_slide .swiper-button-prev {top: -40px; right: 50px; left: auto; bottom:auto;}
}


/* 기계식 압입 */
.img-area02 {margin-bottom: -3rem;}
.img-area02>div {margin-bottom: 3rem;}
.section_pressfit {overflow: hidden;}
.primary-table-03 thead tr th:not(:last-child) {border-right: 1px solid var(--bs-gray-300);}
.primary-table-03 tbody tr td:not(:last-child) {border-right: 1px solid var(--bs-gray-300);}

.catalog-download {line-height: 1;}
/* .catalog-download  .img-area.row {margin-bottom: 1.5rem;} */
.catalog-download  .img-area.row {margin-right: calc(0.75rem * var(--bs-gutter-x)); margin-left: calc(0.75rem * var(--bs-gutter-x));}
.catalog-download  .img-area.row li {margin-bottom: 1.5rem;}
.catalog-download a {border: 1px solid var(--bs-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; padding: 1rem 2rem; }
.catalog-download a:hover {background-color: var(--bs-dark); color: var(--bs-white);}
.catalog-download .bi-plus::before {font-size: 3rem; margin-top: -0.5rem;}

.pressfit-video {width: 100%; max-height: 742px}
.video-area {position: relative; width: 100%; height: auto; padding-bottom: 56.25%;}
.video-area iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}





/* 가시설/토공 */
/* .primary-table-02 tbody tr th{border-right: 0;} */
.primary-table-02 tbody tr td:first-child {border-right: 1px solid var(--bs-gray-300);}
.primary-table-02 tbody .sub-title {background-color: var(--bs-gray-100);}
.primary-table-02 tbody .sub-title th { color: var(--bs-gray); font-size: 1.25rem; font-weight: 500;}
.primary-table-02 tbody .sub-title th:last-child {border-right: 0;}
/* .primary-table-02 .sub-title tr th:first-child {border-right: 1px solid var(--bs-gray-300);} */

@media screen and (min-width:992px) {
    .primary-table-02 tbody .sub-title th {font-size: 1.375rem;}
}















/* ********************* */
/* ******* footer ****** */
/* ********************* */
.footer {padding: 3rem 0; color: var(--bs-gray-500); background-color: var(--bs-gray-800); font-size: 0.875rem; font-weight: 400; text-align: center;}

/* .footer .container {position: relative;} */

.footer ul {display: flex; flex-wrap: wrap; justify-content: center; align-items: center; flex-direction: column;}
.footer ul li:not(:last-child) {padding-right: 0.875rem; margin-right: 0.875rem; position: relative;}
.copyright {font-size: 0.875rem; color: var(--bs-gray);}
.footer-brand {width: 65px; margin: 0 auto; margin-bottom: 1rem; display: block;}
.footer-logo {width:100%; height: auto;}
.copyright a {color: var(--bs-gray);}
.copyright a:hover {color: var(--bs-primary);}

@media screen and (min-width:768px) {
    .footer ul {flex-direction: row;}
    .footer ul li:not(:last-child)::after {content: ''; width: 1px; height: 10px; background-color: var(--bs-gray-500); position: absolute; top: 50%; right: 0; -webkit-transform: translateY(-50%);  transform: translateY(-50%);}
}


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

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



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

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

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

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

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

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

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

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

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

.md-hide {display: none;}

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

/* pagenation */
.pagination {padding: 0.375rem 0.75rem; margin-top: 40px; display: flex; justify-content: center; align-items: center;}
.page-item-c {color: var(--body-color);}
.page-item-c.active a {color: var(--bs-secondary);}
.page-link-c {position: relative; display: block; padding: 0.375rem; 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; word-break: break-all;}
.view-title .title .badge {padding: 0.5rem 0.75rem; margin-bottom: 0.5rem; margin-right: 8px; font-size: 0.875rem; font-weight: 500;}
.view-title .title h4 {width: 100%; margin-bottom: 0; text-align: left; color: var(--bs-dark); font-weight: 500;}
.view-title .title .date {font-size: 1rem; font-weight: 400;  margin-top: 8px;}

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

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

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



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

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

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

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

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

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

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

}


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

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



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




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

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


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

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

@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: 1.5rem 1rem; border: 1px solid var(--bs-gray-300);-webkit-border-radius: 0.5rem; border-radius: 0.5rem; overflow: hidden; text-align: center;}
.g-product a div {text-align: left;}
.g-product a .form-check-input {min-width: 16px;}
.g-product a p {margin-bottom: 0; color: var(--bs-dark); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;}

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

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

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


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

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

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

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

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

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

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


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

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

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



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



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

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





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

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

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

.project-desc p{width: 100%;  display: -webkit-box; word-wrap: break-word; -webkit-line-clamp: 2; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden;}

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

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

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

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

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

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

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

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

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


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

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

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


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


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

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

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


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










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







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

}


/* 공사실적 게시판 */

.board-img-box { width: 100%; height: auto; object-fit: cover;}
/* .subject-area {} */
table thead th {word-break: keep-all;}
.table-performance {table-layout: fixed;}


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

    .board-img-box { width: 170px; height: 120px;}
    /* .word-break {word-break: keep-all;} */
}

@media screen and (max-width: 991px) {
    .aa {display: none;}
}