
@charset "UTF-8";

/* ==============================================
   Base: Reset
   ============================================== */

/* --- HTML5 Display Reset --- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block
}

/* --- Universal Reset & Box Sizing --- */
a,
article,
aside,
audio,
blockquote,
body,
canvas,
code,
details,
div,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
iframe,
img,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
ruby,
section,
span,
strong,
summary,
table,
td,
th,
time,
tr,
ul,
video {
    border: 0;
    vertical-align: baseline;
    -webkit-text-size-adjust: none;
    color: #000;
    font-weight: bold;
}

button,
input,
optgroup,
option,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* --- Body & HTML Defaults --- */
body,
html {
    margin: 0;
    font-family: "Source Han Sans", "PingFang TC", "arial", "微軟正黑體", "Microsoft YaHei", "Alibaba PuHuiTi", "Microsoft JhengHei", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

body {
    color: #485155;
    overflow-x: hidden; /* Header 섹션에 있던 것을 이동 */
}

body,
html {
    height: 100%;
}

body {
    padding-top: 67px; /* Header*/
}

@media (max-width:991px) {
    body {
        padding-top: 64.38px;
    }
}

@media (max-width:767px) {
    body {
        padding-top: 50px;
    }
}

/* --- Image & Link Defaults --- */
img {
    max-width: 100%;
    height: auto;
}

a {
    color: #196c87;
}

a:focus,
a:hover {
    text-decoration: none;
}

/* --- Focus & Outline --- */
:focus {
    outline: 0;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: color .2s;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
    -webkit-transition: color .2s;
}

input,
textarea {
    outline: 0;
}

/* --- Headings (h1-h6) --- */
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 /*{
    font-weight: 400;
}*/

@charset "UTF-8";

/* ==============================================
   Utilities: helper
   ============================================== */

/* --- Layout Helpers --- */
.clear {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.ov-hidden {
    overflow: hidden;
    position: relative;
    height: 100%;
}

/* --- Responsive Helpers --- */
@media (max-width:767px) {
    .mb_show {
        display: block !important;
    }
}

/* --- Transition & Animation --- */
.post {
    transition: width 5s;
    -moz-transition: width 5s;
    -webkit-transition: width 5s;
    -o-transition: width 5s;
}

.footer-body a,
.more {
    -o-transition: all .3s ease;
}

@-webkit-keyframes rotate {
    from {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0)
    }
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg)
    };
}

@keyframes rotate {
    from {
        -moz-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    to {
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@charset "UTF-8";

/* ==============================================
   Layout & Grid: Flexbox grid system
   ============================================== */

/* --- Row Base Style --- */
.fx_row,
.mybox.modal .modal-dialog {
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
}

.fx_row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -moz-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px; /* boostrap margin */
    margin-left: -15px; /* boostrap margin */
}

/* --- Column Base Style --- */
[class*=fx_col-] {
/*
    padding-left: 15px;
    padding-right: 15px;
*/
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.fx_col {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
}

/* ==================================
   Extra Small Devices (Mobile: <768px)
   ================================== */
.fx_col-xs-1 {
    -webkit-flex-basis: 8.33333%;
    -ms-flex-preferred-size: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%;
}

.fx_col-xs-2 {
    -webkit-flex-basis: 16.66667%;
    -ms-flex-preferred-size: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%;
}

.fx_col-xs-3 {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.fx_col-xs-4 {
    -webkit-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
}

.fx_col-xs-5 {
    -webkit-flex-basis: 41.66667%;
    -ms-flex-preferred-size: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%;
}

.fx_col-xs-6 {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.fx_col-xs-7 {
    -webkit-flex-basis: 58.33333%;
    -ms-flex-preferred-size: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%;
}

.fx_col-xs-8 {
    -webkit-flex-basis: 66.66667%;
    -ms-flex-preferred-size: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%;
}

.fx_col-xs-9 {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.fx_col-xs-10 {
    -webkit-flex-basis: 83.33333%;
    -ms-flex-preferred-size: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%;
}

.fx_col-xs-11 {
    -webkit-flex-basis: 91.66667%;
    -ms-flex-preferred-size: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%;
}

.fx_col-xs-12 {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

/* ==================================
   Small Devices (Tablet/iPad Portrait: >=768px)
   ================================== */
@media (min-width:768px) {
    .fx_col-sm-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }

    .fx_col-sm-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }

    .fx_col-sm-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .fx_col-sm-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .fx_col-sm-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }

    .fx_col-sm-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .fx_col-sm-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }

    .fx_col-sm-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .fx_col-sm-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .fx_col-sm-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }

    .fx_col-sm-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }

    .fx_col-sm-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* ==================================
   Medium Devices (Laptop/iPad Landscape: >=992px)
   ================================== */
@media (min-width:992px) {
    .fx_col-md-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }

    .fx_col-md-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }

    .fx_col-md-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .fx_col-md-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .fx_col-md-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }

    .fx_col-md-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .fx_col-md-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }

    .fx_col-md-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .fx_col-md-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .fx_col-md-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }

    .fx_col-md-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }

    .fx_col-md-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* ==================================
   Large Devices (Desktop: >=1200px)
   ================================== */
@media (min-width:1200px) {
    .fx_col-lg-1 {
        -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
        flex-basis: 8.33333%;
        max-width: 8.33333%;
    }

    .fx_col-lg-2 {
        -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
        flex-basis: 16.66667%;
        max-width: 16.66667%;
    }

    .fx_col-lg-3 {
        -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .fx_col-lg-4 {
        -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
        max-width: 33.33333%;
    }

    .fx_col-lg-5 {
        -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
        flex-basis: 41.66667%;
        max-width: 41.66667%;
    }

    .fx_col-lg-6 {
        -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .fx_col-lg-7 {
        -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
        flex-basis: 58.33333%;
        max-width: 58.33333%;
    }

    .fx_col-lg-8 {
        -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
        max-width: 66.66667%;
    }

    .fx_col-lg-9 {
        -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .fx_col-lg-10 {
        -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
        flex-basis: 83.33333%;
        max-width: 83.33333%;
    }

    .fx_col-lg-11 {
        -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
        flex-basis: 91.66667%;
        max-width: 91.66667%;
    }

    .fx_col-lg-12 {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@charset "UTF-8";

/* ==============================================
   Components: UI (form, button, pagenation)
   ============================================== */

/* --- Radio Button Style (.main_radio) --- */
.main_radio {
    margin: 0 20px 0 0;
    padding-top: 10px;
}

.main_radio.inp {
    padding-top: 3px;
}

.main_radio.in {
    display: inline-block;
}

.main_radio input[type=radio].css-checkbox {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.main_radio input[type=radio].css-checkbox+label.css-label,
.main_radio input[type=radio].css-checkbox+label.css-label.clr {
    padding-left: 20px;
    height: 15px;
    display: inline-block;
    line-height: 15px;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 15px;
    vertical-align: middle;
    cursor: pointer;
}

.main_radio input[type=radio].css-checkbox+label.css-label.chk,
.main_radio input[type=radio].css-checkbox:checked+label.css-label {
    background-position: 0 -15px;
}

.main_radio label.css-label {
    background-image: url(../images/radio_img.png);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* --- Checkbox Style (.check_style) --- */
.check_style input[type=checkbox].css-checkbox,
.check_style input[type=radio].css-checkbox {
    position: absolute;
    z-index: -1000;
    left: -1000px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.check_style input[type=checkbox].css-checkbox+label.css-label,
.check_style input[type=checkbox].css-checkbox+label.css-label.clr,
.check_style input[type=radio].css-checkbox+label.css-label,
.check_style input[type=radio].css-checkbox+label.css-label.clr {
    padding-left: 30px;
    height: 25px;
    display: inline-block;
    line-height: 25px;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-size: 14px;
    vertical-align: middle;
    cursor: pointer;
}

.check_style input[type=checkbox].css-checkbox:checked+label.css-label,
.check_style input[type=radio].css-checkbox:checked+label.css-label {
    background-position: 0 -25px;
}

.check_style input[type=checkbox].css-checkbox:disabled+label.css-label,
.check_style input[type=radio].css-checkbox:disabled+label.css-label {
    background-position: 0 0;
}

.check_style label.css-label {
    background-image: url(../images/checkbox.png);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.opt {
    margin-bottom: 10px;
}

/* --- Custom Select Style (.select_ui) --- */
.select_ui,
.select_ui select {
    background: #fff;
    font-size: 13px;
    color: #414141;
    vertical-align: middle;
    display: inline-block;
    position: relative;
    text-align: left;
    height: 38px;
    line-height: 38px;
    border: 1px solid #366082;
    padding-left: 10px;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    width: 100%; /* the unity with Datepicker */
}

.select_ui .select_arrow {
    border: 5px solid #fff;
    border-color: #999 transparent;
    position: absolute;
    border-bottom: 0;
    overflow: hidden;
    margin-top: -2px;
    display: block;
    right: 5px;
    top: 50%;
    height: 0;
    width: 0;
}

.select_ui .select_text_ui {
    vertical-align: baseline;
    white-space: nowrap;
    margin-right: 20px;
    overflow: hidden;
    display: block;
    color: inherit;
}

.select_ui .select_poswrap,
.select_ui select {
    position: absolute;
    padding: 0;
    border: 0;
    margin: 0;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
}

.select_ui select {
    filter: alpha(opacity=0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    min-width: 100%;
    color: inherit;
    font: inherit;
    font-weight: bold;
    height: 100%;
    opacity: 0;
}

.select_ui .select_poswrap {
    overflow: hidden;
    height: 0;
    width: 0;
}

.opt .select_text_ui {
    margin-right: 30px;
    font-weight: bold;
}

.opt .select_arrow {
    border: 2px solid #366082;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -6px;
    border-left: 0;
    border-top: 0;
    height: 10px;
    right: 10px;
    width: 10px;
}

.disabled .select_ui {
    background: #ccc;
    color: #fff;
    cursor: not-allowed;
}

.disabled .select_arrow {
    border-color: #fff;
}

/* --- Datepicker Style --- */
.datepicker table {
    width: 100%;
}

.datepicker table tr td {
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.datepicker table tr td:after {
    content: '';
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: 11px;
    right: 11px;
    z-index: -1;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.datepicker.datepicker-inline td,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.dropdown-menu th {
    padding: 12px;
}

/* Datepicker Active/Selected State */
.datepicker table tr td.active.active,
.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted.active.focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active.highlighted:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active:active:hover,
.datepicker table tr td.active:hover {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}

.datepicker table tr td.active.active.focus:after,
.datepicker table tr td.active.active:after,
.datepicker table tr td.active.active:focus:after,
.datepicker table tr td.active.active:hover:after,
.datepicker table tr td.active.highlighted.active.focus:after,
.datepicker table tr td.active.highlighted.active:after,
.datepicker table tr td.active.highlighted.active:focus:after,
.datepicker table tr td.active.highlighted.active:hover:after,
.datepicker table tr td.active.highlighted:active.focus:after,
.datepicker table tr td.active.highlighted:active:after,
.datepicker table tr td.active.highlighted:active:focus:after,
.datepicker table tr td.active.highlighted:active:hover:after,
.datepicker table tr td.active.highlighted:hover:after,
.datepicker table tr td.active:active.focus:after,
.datepicker table tr td.active:active:after,
.datepicker table tr td.active:active:focus:after,
.datepicker table tr td.active:active:hover:after,
.datepicker table tr td.active:hover:after {
    content: '';
    background: #d06776;
}

/* Datepicker Day Style */
.datepicker table tr td.day,
.datepicker.datepicker-inline td {
    color: #fff;
}

.datepicker table tr td.day:after,
.datepicker.datepicker-inline td:after {
    content: '';
    background: #4797d2;
    opacity: 1;
}

/* Datepicker Hover/Focused/Disabled State */
.datepicker table tr td.day:hover,
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover,
.datepicker table tr td.focused {
    cursor: pointer;
    background: 0 0;
    color: #fff;
}

.datepicker table tr td.day:hover:after,
.datepicker table tr td.disabled:after,
.datepicker table tr td.disabled:hover:after,
.datepicker table tr td.focused:after {
    content: '';
    background: #bcbcbc;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
    cursor: pointer;
    color: #286090;
}

.datepicker table tr td.day:hover:after,
.datepicker table tr td.focused:after {
    content: '';
    background: #eee;
    opacity: .8;
}

.datepicker table tr td.disabled-date:hover,
.datepicker table tr td.disabled:hover,
.datepicker table tr td.focused {
    cursor: default;
    color: #fff;
}

.datepicker table tr td.disabled-date:hover:after,
.datepicker table tr td.disabled:hover:after,
.datepicker table tr td.focused:after {
    content: '';
    background: #bcbcbc;
    opacity: 1;
}

/* Datepicker Inline View Specifics */
.datepicker-inline {
    width: 100%;
    background: #ebebeb;
    padding: 6px
};

.datepicker-inline .next,
.datepicker-inline .prev {
    font-size: 18px;
}

.datepicker-inline .next:hover,
.datepicker-inline .prev:hover {
    color: #fff;
    background: #d06776;
}

.datepicker-inline tbody {
    background: #fff;
}

.datepicker-inline thead .dow {
    background: #fff;
    padding: 15px 10px;
}

.datepicker-inline .datepicker-switch:hover {
    background: #d06776;
    color: #fff;
}

.datepicker-inline .datepicker-months .month.focused,
.datepicker-inline .datepicker-months .month:hover {
    background: #d06776;
}

/* --- Pagination Style (.pagination_wp) --- */
.pagination_wp {
    padding: 20px 0;
    text-align: center;
}

.pagination {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin: 0;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 0;
    color: #23527c;
    background-color: #eee;
    border-color: transparent;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    z-index: 0;
}

.pagination .page-item.active .page-link {
    background-color: #53a1c2;
    border-color: #53a1c2;
}

.pagination li {
    display: inline;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li a,
.pagination li span {
    text-decoration: none;
    color: #a1a1a1;
    margin-left: -1px;
}

.pagination li.active a,
.pagination li.active span {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

/* --- Modal/Popup Style (.mybox.modal, Magnific Popup related) --- */

/* Modal Dialog positioning */
.mybox.modal .modal-dialog {
    min-height: -webkit-calc(100vh - 60px);
    min-height: -moz-calc(100vh - 60px);
    min-height: calc(100vh - 60px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
}

@media (max-width:767px) {
    .mybox.modal .modal-dialog {
        min-height: -webkit-calc(100vh - 20px);
        min-height: -moz-calc(100vh - 20px);
        min-height: calc(100vh - 20px);
    }
}

.mybox#mybox .modal-body h3 {
    font-size: 20px;
    text-align: center;
    margin: 15px 0 40px;
}

.mybox#mybox .modal-body p {
    text-align: center;
    font-size: 16px;
}

.mybox#tenderBox .modal-body h3 {
    font-size: 24px;
    text-align: center;
}

@media (max-width:767px) {
    .mybox#tenderBox .modal-body h3 {
        font-size: 20px;
    }
}

.mybox-btn {
    text-align: center;
    padding: 30px 0 20px;
}

.mybox-btn a {
    display: inline-block;
    margin: 0 5px 15px;
    padding: 5px 40px;
    background: #b23875;
    color: #fff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 1px solid #b23875;
}

/* Magnific Popup General Styles */
.mfp-no-margins .mfp-container,
.mfp-no-margins img.mfp-img {
    padding: 0;
}

.mfp-iframe-holder .mfp-close {
    width: 62px !important;
    height: 62px !important;
    top: -72px !important;
    color: #3e3c3c !important;
    font-size: 51px;
    text-indent: 4px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
}

.image-link {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container,
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 1;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.mfp-no-margins .mfp-figure:after {
    top: 0;
    bottom: 0;
}

.mfp-title {
    text-align: center;
    padding: 6px 0;
}

.image-source-link {
    color: #DDD;
}

.mfp-bg,
.mfp-figure:after {
    background: rgba(255, 255, 255, .76);
}

.mfp-close {
    font-size: 42px;
}

.mfp-close,
.mfp-preloader a:hover {
    color: #3e3c3c;
}

/* Modals Image Handling */
html.modals {
    height: 100%;
}

html.modals .mfp-container:before {
    display: none;
}

html.modals .mfp-figure,
html.modals .mfp-figure figure,
html.modals .mfp-image-holder .mfp-content {
    height: 100%;
    width: 100%;
}

img.mfp-img {
    max-width: 80%;
}

.mfp-figure figure {
    margin: 60px;
    padding: 100px 0px;
    border: 10px solid #f3f3f3;
}

html.modals img.mfp-img {
    height: 100% !important;
}

html.modals .mfp-figure figure {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

html.modals .mfp-figure figure img {
    visibility: hidden;
}

/* Modal Video/Iframe Handling */
.mfp-iframe-scaler iframe {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
}

.mfp-figure:after,
.mfp-iframe-scaler iframe {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    position: absolute;
}

.mfp-bottom-bar {
    margin-top: 0;
}

.mfp-counter {
    color: #333;
}

/* --- Table Style --- */
.table-striped.style2 {
    text-align: center;
}

.table-striped.style2 thead tr {
    background: #e7e7e7;
}

.table-striped.style2 tbody tr:nth-of-type(odd) {
    background-color: #fff;
}

.table-striped.style2 tbody tr:nth-of-type(even) {
    background-color: #f7f7f7;
}

@charset "UTF-8";

/* ==============================================
   Sections: Header, Navigation page layout
   ============================================== */

/* --- Header Layout (.header) --- */
.header {
    position: fixed;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .36);
    -moz-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .36);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .36);
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
}

@media (max-width: 768px) {
    .header {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

.header .container,
.header .top img {
    position: relative;
}

/* Header Top Section */
.header .top {
    border-bottom: 1px solid #ececec;
}

.header .top .search_wp {
    padding: 22px 0;
}

/* Header Top Icons */
.header .h_icon {
    width: 18px;
    height: 23px;
    display: inline-block;
    vertical-align: sub;
    margin-right: 5px
};

.header .h_icon1 {
    background-image: url(../images/h_icon1.jpg)
}

.header .h_icon2 {
    background-image: url(../images/h_icon2.jpg);
}

.header .h_icon3 {
    background-image: url(../images/h_icon3.jpg);
}

.header .h_icon4 {
    background-image: url(../images/h_icon4.jpg);
}

.header .top img {
    max-width: 100%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media (max-width:991px) {
    .header .search_wp {
        display: block;
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .header .logo {
        width: 100%;
    }
	    .header {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

/* Header Search Elements */
.header .search_btn {
    color: #fff;
    background-color: #f4ce53;
    border-color: #f4ce53;
    font-size: 14px;
}

.header .search_btn i {
    margin-left: 5px;
}

.header .search_btn,
.header .search_input {
    -webkit-border-radius: 33px;
    -moz-border-radius: 33px;
    border-radius: 33px;
    display: inline-block;
    vertical-align: middle;
}

.header .search_input {
    width: 70%;
}

/* --- Navigation Bar (.header nav) --- */
.nav-link,
.navbar {
    padding: 0 1rem;
}

.header nav .nav li {
    font-size: 18px;
    color: #000;
    position: relative;
    z-index: 1000;
}

.header nav .nav li a {
    font-size: 18px;
    color: #000;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    font-weight: 700;
}

.header nav .nav li a span {
    color: #b23875;
    font-size: 18px;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
}

.header nav .nav li a.active,
.header nav .nav li a.active span,
.header nav .nav li a:hover,
.header nav .nav li a:hover span {
    color: #a36c24;
}

/* Desktop Navigation (>=992px) */
@media (min-width:992px) {
    .header .navbar-expand-lg .navbar-collapse {
        display: block !important;
    }

    .header nav .nav_left {
        float: left;
        display: inline-block;
    }

    .header nav .nav_right {
        float: right;
        display: inline-block;
    }

    .header nav .nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header nav .nav li {
        padding: 0 20px;
    }

    .header nav .nav li a.nav-link {
        padding: 20px 1.5vw;
        white-space: nowrap;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .header nav .nav li {
        padding: 0px;
    }
}

@media (min-width:992px) and (min-width:1600px) {
    .header nav .nav li a.nav-link {
        padding: 20px;
    }
}

@media (min-width:992px) {
    .header nav .nav li:before {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .header nav .nav li:first-child:before {
        content: '';
        display: none;
    }

    .header nav .nav li ul li {
        float: none;
        padding: 0 5px;
    }

    .header nav .nav li ul li:Before {
        display: none;
    }

    .header nav .nav li ul li a {
        margin: 10px 0px;
        padding: 5px 15px 5px 15px;
        display: block;
        font-size: 16px;
    }

    .header nav .nav li:hover ul {
        display: block;
    }
}

/* =========================================================================
   Base & Global Styles
========================================================================= */

@charset "UTF-8";

body {
    padding-top: 67px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 100%;
}

.ov-hidden {
    overflow: hidden;
    position: relative;
    height: 100%;
}

/* Font Face */
@font-face {
    font-family: slick;
    font-weight: 400;
    font-style: normal;
    src: url(fonts/slick.eot);
    src: url(fonts/slick.eot?#iefix) format("embedded-opentype"), url(../fonts/slick.woff) format("woff"), url(fonts/slick.ttf) format("truetype"), url(fonts/slick.svg#slick) format("svg");
}

/* --- Base Media Queries --- */
@media (max-width: 991px) {
    body {
        padding-top: 64.38px;
    }
}

@media (max-width: 767px) {
    body {
        padding-top: 50px;
    }
}

/* =========================================================================
   Header & Navigation
========================================================================= */

.nav-link,
.navbar {
    padding: 0 1rem;
}

.header {
    position: fixed;
    -webkit-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .36);
    -moz-box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .36);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .36);
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
	border-bottom:3px solid #f1f1f1;
}

.header .container,
.header .top img {
    position: relative;
}

.header .top {
    border-bottom: 1px solid #ececec;
}

.header .top .search_wp {
    padding: 22px 0;
}

.header .logo img {
    width: 60%;
    height: auto;
    display: block;
	margin: 0 20px 0 20px;
}

.header .search_btn {
    color: #fff;
    background-color: #f4ce53;
    border-color: #f4ce53;
    font-size: 14px;
}

.header .search_btn i {
    margin-left: 5px;
}

.header .search_btn,
.header .search_input {
    -webkit-border-radius: 33px;
    -moz-border-radius: 33px;
    border-radius: 33px;
    display: inline-block;
    vertical-align: middle;
}

.header .search_input {
    width: 70%;
}

.header .top img {
    max-width: 100%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.header .h_icon {
    width: 18px;
    height: 23px;
    display: inline-block;
    vertical-align: sub;
    margin-right: 5px;
}

.header .h_icon1 { background-image: url(../images/h_icon1.jpg); }
.header .h_icon2 { background-image: url(../images/h_icon2.jpg); }
.header .h_icon3 { background-image: url(../images/h_icon3.jpg); }
.header .h_icon4 { background-image: url(../images/h_icon4.jpg); }

/* Nav Links */
.header nav .nav li {
    font-size: 18px;
    color: #000;
    position: relative;
    z-index: 1000;
}

.header nav .nav li a {
    font-size: 18px;
    color: #000;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    font-weight: 700;
}

.header nav .nav li a span {
    color: #b23875;
    font-size: 18px;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
}

.header nav .nav li a.active,
.header nav .nav li a.active span,
.header nav .nav li a:hover,
.header nav .nav li a:hover span {
    color: #a36c24;
}

.header nav .nav li ul li a {
    font-weight: 600;
}

.header nav .nav .dropdown-menu {
    background: rgba(244, 244, 244, .9);
}

.header nav .nav .dropdown-menu a {
    position: relative;
    padding: .45rem 1.5rem;
}

.header nav .nav .dropdown-menu a:before {
    content: '';
    position: absolute;
    height: 1px;
    background: #bec4c3;
    top: 0;
    width: 80%;
}

.header nav .nav .dropdown-menu a:first-child:before {
    display: none;
}

/* --- Header Media Queries (Desktop) --- */
@media (min-width: 992px) {
    .header .navbar-expand-lg .navbar-collapse {
        display: block !important;
    }

    .header nav .nav_left {
        float: left;
        display: inline-block;
    }

    .header nav .nav_right {
        float: right;
        display: inline-block;
    }

    .header nav .nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header nav .nav li {
        padding: 0 10px;
		border-left: 1px solid #f1f1f1;
    }

    .header nav .nav li a.nav-link {
        padding: 20px 0.5vw;
        white-space: nowrap;
    }

    /* Separators */
    .header nav .nav li:before {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    .header nav .nav li:first-child:before {
        content: '';
        display: none;
    }

    /* Dropdown Menu */
    .header nav .nav li ul {
        position: absolute;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
        width: 235px;
        float: none;
        background-color: #fff;
        border: 1px solid #E4E4E4;
	    box-shadow: 3px 3px 7px rgba(0, 0, 0, .1);
        top: 71px;
        display: none;
		left: 50%;
        transform: translateX(-50%);
		z-index: 9999;
    }
    }

    .header nav .nav li ul li {
        float: none;
        padding: 0 5px;
    }

    .header nav .nav li ul li:before {
        display: none;
    }

    .header nav .nav li ul li a {
        margin: 10px 0px;
        padding: 5px 15px 5px 15px;
        display: block;
        font-size: 16px;
    }

    .header nav .nav li:hover ul {
        display: block;
    }

    /* Left Nav Specific */
    .header nav .nav.nav_left li {
        position: relative;
        margin: 0 10px;
    }

    .header nav .nav.nav_left li:before {
        content: '/';
        position: absolute;
        top: 7px;
        left: -12.5px;
        color: #dedede;
    }

    .header nav .nav.nav_left li:first-child {
        margin-left: 0;
    }

    .header nav .nav.nav_left li:first-child:before {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .header nav .nav li {
        padding: 0px;
    }
}

@media (min-width: 992px) and (min-width: 1600px) {
    .header nav .nav li a.nav-link {
        padding: 22px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .header nav .nav li {
        padding: 0 10px;
    }
}
/* --- Header Media Queries (Tablet/Mobile) --- */
@media (max-width: 991px) {
	.header .search_wp {
        display: block;
        padding: 15px 0;
    }
    .header nav .nav .dropdown-menu a:before {
        display: none;
    }
	.navbar {
        padding-left: 10px;
        padding-right: 10px;
    }
    .navbar-brand {
        margin-right: 0.5rem;
        margin-left: 0;
        flex-shrink: 0;
	}
    .header nav {
        position: relative;
        z-index: 9999;
        padding: 0 1rem;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .header nav .nav .dropdown-menu {
        background: rgba(240, 151, 25, .66);
    }

    .header nav .navbar-toggler {
        background-color: #fff;
        position: absolute;
        top: calc(50% - 19px);
        left: 0vw;
        outline: 0;
        padding: 11px;
    }

    .header nav .navbar-toggler span {
        color: #363636;
        background-color: #363636;
        -o-transition: all .2s ease;
        transition: all .2s ease;
        -moz-transition: all .2s ease;
        -webkit-transition: all .2s ease;
    }

    .header nav .navbar-toggler .icon-bar {
        background: #363636;
        display: block;
        width: 22px;
        height: 2px;
        -webkit-border-radius: 1px;
        -moz-border-radius: 1px;
        border-radius: 1px;
    }

    .header nav .navbar-toggler .icon-bar + .icon-bar {
        margin-top: 4px;
    }

    .header nav .navbar-toggler.yes .icon-bar {
        background: 0 0;
    }

    .header nav .navbar-toggler.yes span.icon-bar:first-child {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        position: relative;
        top: 6px;
        background-color: #363636;
    }

    .header nav .navbar-toggler.yes span.icon-bar:last-child {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        position: relative;
        bottom: 6px;
        background-color: #363636;
    }

    .header nav .navbar-collapse {
        overflow: auto;
        bottom: 0;
        position: fixed;
        top: 98px;
        overflow-y: auto;
        left: 0;
        right: 0;
        background: #ffffff;
        text-align: center;
        padding: 0;
        opacity: 0;
        -webkit-transform: translateX(-150%);
        -moz-transform: translateX(-150%);
        -ms-transform: translateX(-150%);
        -o-transform: translateX(-150%);
        transform: translateX(-150%);
        -webkit-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, -webkit-transform .35s 0s;
        -o-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, -o-transform .35s 0s;
        -moz-transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s, -moz-transform .35s 0s;
        transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s;
        transition: top 0s .35s, left 0s .35s, right 0s .35s, opacity 0s .35s, transform .35s 0s, -webkit-transform .35s 0s, -moz-transform .35s 0s, -o-transform .35s 0s;
        z-index: 888;
    }

    .header nav .navbar-collapse.show {
        top: 64px;
        right: 0;
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        padding-bottom: 30px;
        -webkit-transition: top 0s, left 0s, right 0s, opacity .35s cubic-bezier(0, 1.2, .8, 1.01), -webkit-transform .35s cubic-bezier(0, 1.2, .8, 1.01);
        -o-transition: top 0s, left 0s, right 0s, opacity .35s cubic-bezier(0, 1.2, .8, 1.01), -o-transform .35s cubic-bezier(0, 1.2, .8, 1.01);
        -moz-transition: top 0s, left 0s, right 0s, opacity .35s cubic-bezier(0, 1.2, .8, 1.01), transform .35s cubic-bezier(0, 1.2, .8, 1.01), -moz-transform .35s cubic-bezier(0, 1.2, .8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity .35s cubic-bezier(0, 1.2, .8, 1.01), transform .35s cubic-bezier(0, 1.2, .8, 1.01);
        transition: top 0s, left 0s, right 0s, opacity .35s cubic-bezier(0, 1.2, .8, 1.01), transform .35s cubic-bezier(0, 1.2, .8, 1.01), -webkit-transform .35s cubic-bezier(0, 1.2, .8, 1.01), -moz-transform .35s cubic-bezier(0, 1.2, .8, 1.01), -o-transform .35s cubic-bezier(0, 1.2, .8, 1.01);
    }

    .header nav .nav {
        list-style: none;
        padding-left: 0;
        text-align: left;
    }

    .header nav .nav li {
        border-bottom: 1px solid #f1f1f1;
    }

    .header nav .nav li a {
        text-align: left;
        color: #000000;
        padding: 25px 15px;
    }

    .header nav .nav li.active_top > a {
        background: #317cbc;
        color: #fff;
    }

    .header nav .nav li ul li {
        border-bottom: none;
    }

    .header nav .nav li ul li a {
        display: block;
        padding: 20px;
    }

    .header nav .nav li ul li a:before {
        content: '►';
        font-size: 12px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
    }

    .header nav .nav li ul li a:hover {
        background: #d4e7f8;
        color: #317cbc;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .header .logo img {
		width: 70%;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
    .header .logo img {
        width: 40%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .header .top {
        border: none;
    }

    .header .top-title {
        text-align: center;
    }

    .header .top img {
        width: auto;
        height: 50px;
    }

    .header nav .navbar-collapse {
        height: 93vh;
    }

    .header nav .navbar-collapse.show {
        top: 64.38px;
    }
}

/* =========================================================================
   Slick Slider (Carousel) Styles
========================================================================= */

.slick-loading .slick-list {
    background-image: none;
    overflow: hidden;
}

.slick-dotted.slick-slider {
    overflow-x: hidden;
    margin-bottom: 0;
}

.slick-slide img {
    display: block;
    width: 100%;
}

/* Dots */
.slick-dots {
    list-style: none;
    padding-right: 36px;
    z-index: 5;
    bottom: 25px; /* Corrected semicolon */
}

.slick-dots li,
.slick-dots li button {
    height: 10px;
    width: 10px;
}

.slick-dots li button {
    font-size: 0;
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
    font-size: 0;
    line-height: 20px;
    position: absolute;
    left: 0;
    opacity: 1;
    color: #000;
    text-align: center;
}

.slick-dots li button:before {
    top: 0;
    width: 10px;
    height: 10px;
    content: '•';
    background: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.slick-dots li button:hover:before {
    content: '';
    background: #fff;
}

.slick-dots li.slick-active button:before {
    top: 0;
    width: 10px;
    height: 10px;
    content: '•';
    background: #fff600;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

/* Arrows */
.slick-next:before,
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    content: '';
}

.slick-next,
.slick-next:focus,
.slick-next:hover {
    right: 5vw;
    outline: 0;
    width: 50px;
    height: 80px;
    z-index: 2;
    /*background: url(../images/main_controls.png) -25.5px 0 no-repeat;*/
}

.slick-next:focus:hover,
.slick-next:hover,
.slick-next:hover:hover {
    opacity: none;
}

.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
    left: 5vw;
    outline: 0;
    width: 50px;
    height: 80px;
    z-index: 2;
    /*background: url(../images/main_controls.png) -25.5px 0 no-repeat;*/
}

.slick-prev:focus:hover,
.slick-prev:hover,
.slick-prev:hover:hover {
    opacity: 1;
}

/* Section Arrows */
.slick_next,
.slick_prev {
    outline: 0;
    width: 20px;
    height: 70px;
    z-index: 2;
}

.slick_next {
    right: -15px;
}

.slick_next:before,
.slick_prev:before {
    display: inline-block;
    color: #050505;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
}

.slick_next:before {
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 30px;
    -webkit-font-smoothing: antialiased;
}

.slick_prev {
    left: -15px;
}

.slick_prev:before {
    content: "\f053";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 30px;
    -webkit-font-smoothing: antialiased;
}

/* Key Visual (KV) */
.kv,
.kv img {
    width: 100%;
}

.kv img {
    display: block;
}

.kv .img {
    background-repeat: no-repeat;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

.kv .slider {
    position: relative;
}

.kv .title_text,
.kv .title_text span {
    color: #fff;
    font-size: 30px;
}

.kv .title_text {
    position: absolute;
    top: 0;
    width: 40%;
    background: rgba(0, 0, 0, .67);
    padding: 20px 15px;
    margin-top: 10%;
}

.slide-overlay {
    visibility: hidden;
}

.slide-overlay.active-slide {
    visibility: visible;
}

/* --- Slick Media Queries --- */
@media (max-width: 767px) {
    .slick-list {
        overflow: hidden;
    }

    .slick-dots {
        text-align: center;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .slick-dots {
        bottom: 8px;
    }
}

/* =========================================================================
   Footer & Go-to-Top
========================================================================= */

.footer > img {
    width: 100%;
}
.copy{
	font-weight:normal;
	font-size:15px;
	color:#555;
	padding:0px 0 20px;
}
.copy-logo{
	max-width:10%;
	margin:50px auto 0px;
}
.footer-body {
    padding: 0px 40px 0px;
	text-align: center;
}

.footer-body a {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.footer-body a:hover {
    color: #a36c24;
}

.footer-body a.icon1 { background-image: url(../images/ficon1.png); padding-left: 40px; background-position: 5px center; background-repeat: no-repeat;}
.footer-body a.icon2 { background-image: url(../images/ficon2.png); padding-left: 40px; background-position: 5px center; background-repeat: no-repeat;}
.footer-body a.icon3 { background-image: url(../images/ficon3.png); padding-left: 40px; background-position: 5px center; background-repeat: no-repeat;}
.footer-body a.icon4 { background-image: url(../images/ficon4.png); padding-left: 40px; background-position: 5px center; background-repeat: no-repeat;}

.footer-menu {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
}

.footer-menu a.footer-bottom-btn {
    display: inline-block;
    margin: 0 80px;
    color: #000;
    text-decoration: none;
}

.footer-menu a.footer-bottom-btn:hover {
    color: #a36c24;
}

.cd-top {
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    display: inline-block;
    opacity: 0;
    position: fixed;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    overflow: hidden;
    visibility: hidden;
    color: #fff;
    z-index: 777;
    width: 48px;
    height: 48px;
}

.cd-top.cd-fade-out {
    visibility: visible;
    opacity: .8;
}

.cd-top.cd-fade-out:hover {
    opacity: 1;
}

/* --- Footer Media Queries --- */
@media (max-width: 767px) {
	.footer-body a {
		font-size: 16px;
	}
    .footer-body {
        text-align: center;
        padding: 25px 0;
    }

    .footer-body .row {
        display: inline-block;
        text-align: left;
    }

    .footer-body .row [class^=col] {
        margin-bottom: 15px;
    }

    .footer-body .row [class^=col]:last-child {
        margin-bottom: 0;
    }

    .cd-top {
        bottom: 30px;
    }
}

/* =========================================================================
   Section Titles
========================================================================= */

.section1-title h3,
.section5-title h3 {
    color: #000;
    font-size: 36px;
    position: relative;
    padding-bottom: 12px;
}

.section2-title h3,
.section3-title h3,
.section4-title h3 {
    color: #000;
    font-size: 36px;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
}

/* H3 Underline (Left Aligned) */
.section1-title h3:after,
.section5-title h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    border-bottom: 1px solid #e2e2e2;
}

/* H3 Underline (Center Aligned) */
.section2-title h3:after,
.section3-title h3:after,
.section4-title h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 500px;
    border-bottom: 1px solid #e2e2e2;
    transform: translateX(-50%);
}

.section4-title h3::after,
.section4-title::before {
    right: 0;
    content: '';
}

/* Sub-text */
.section1-title p,
.section5-title p {
    font-size: 18px;
    color: #9b9b9b;
}

.section2-title p,
.section4-title p {
    font-size: 18px;
    color: #ababab;
    text-align: center;
}

.section3-title p {
    font-size: 18px;
    color: #ababab;
    text-align: center;
}

.section3-title p span {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.section4-title p span {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.section4-title h3 span {
    position: relative;
    z-index: 1;
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

/* --- Section Title Media Queries --- */
@media (max-width: 767px) {
    .section1-title h3,
    .section5-title h3 {
        font-size: 30px;
        text-align: center;
    }

    .section2-title h3,
    .section3-title h3,
    .section4-title h3 {
        font-size: 30px;
    }

    /* Underline for small screens */
    .section1-title h3:after,
    .section2-title h3:after,
    .section5-title h3:after {
        width: 100%;
        left: 0;
        right: 0;
    }

    .section2-title h3:after {
        transform: none;
    }

    .section3-title h3:after {
        transform: none;
        left: 0%;
    }

    /* Paragraphs for small screens */
    .section1-title p,
    .section2-title p,
    .section3-title p,
    .section4-title p,
    .section5-title p {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section1-title p,
    .section2-title p,
    .section4-title p,
    .section5-title p {
        font-size: 16px;
        font-weight: 600;
        color: #ababab;
        width: 100%;
        padding-top: 5px;
    }

    .section3-title p {
        padding: 10px 20px 0px;
    }

    .section3-title p span {
        font-size: 16px;
    }
	.footer-menu {border:0}

	.copy{
        font-size: 12px;
        border-top: 1px solid #e2e2e2;
        padding-top: 15px;
}
	.copy-logo{display:none}

	.footer-menu {
        margin-bottom: 0px;
}
	.footer-body a.icon1 {font-size:16px}
	.footer-body a.icon2 {font-size:16px}
	.footer-body a.icon3 {font-size:16px}
	.footer-body a.icon4 {font-size:16px}
	.footer-menu a.footer-bottom-btn {
        margin: 0 30px;
}
}

/* =========================================================================
   Main Content Sections (1, 2, 3, 4, 5)
========================================================================= */

/* --- Section 1 --- */
.section1 {
    background-repeat: no-repeat;
    background-position: center bottom;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.section1-title {
    margin-bottom: 30px;
}

.section1-text {
    line-height: 32px;
    margin-bottom: 2vw;
}

.section1-text p {
    color: #000;
    font-size: 18px;
    font-weight: bold;
}

.section1-text p span {
    color: #196c87;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
}

.section1 h4 {
    font-weight: bold;
    font-size: 40px;
    color: #000;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section1 {
        padding:0;
    }
}

@media (max-width: 767px) {
    .section1 h4 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 24px;
    }

    .section1-text p {
        font-size: 16px;
    }

    .section1-text p span {
        font-size: 18px;
    }

    .section1 img {
        width: 100%;
    }
}

/* =========================================================================
   iPad Air/Pro Tablet Optimization (new add)
========================================================================= */

/* ------------------------------------
   iPad Air / iPad Pro 11inch
   769px ~ 1180px
   ------------------------------------ */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Section 1 Titles */
    .section1-title h3,
    .section5-title h3 {
        font-size: 32px;
    }

    /* Section 1 Sub Title (h4) */
    .section1 h4 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    /* Section 1 Text */
    .section1-text p {
        font-size: 17px;
		padding-right: 20px;
    }
    .section1-text p span {
        font-size: 18px;
    }

    /* Underline width adjustment */
    .section1-title h3:after,
    .section5-title h3:after {
        width: 60%;
    }
}

/* ------------------------------------
   iPad Pro 12.9inch
   1181px ~ 1366px
   ------------------------------------ */
@media (min-width: 1181px) and (max-width: 1366px) {
    /* Section 1 Titles */
    .section1-title h3,
    .section5-title h3 {
        font-size: 34px;
    }

    /* Section 1 Sub Title (h4) */
    .section1 h4 {
        font-size: 38px;
        margin-bottom: 35px;
    }

    /* Underline width adjustment */
    .section1-title h3:after,
    .section5-title h3:after {
        width: 70%;
    }
}

/* =========================================================================
   Main Content Sections (1, 2, 3, 4, 5)
========================================================================= */

/* --- Section 1 --- */
.section1 {
    /*background-image: url(../images/ba1.jpg);*/
    padding: 100px 0 0 85px; /* desktop basic */
    background-repeat: no-repeat;
    background-position: center bottom;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.section1-title {
    margin-bottom: 30px;
}
/* --- Section 2 --- */
.section2 {
    margin-top: 30px;
}

.section2-title {
    margin-top: 80px;
    margin-bottom: 30px;
}

.section2-top ul {
    padding-left: 0;
	padding-top:20px;
    margin-bottom: 0;
    list-style: none;
	background:#f6f6f6;
	border-top: 10px solid #d29c4a;
}

.section2-top ul li {
    display: inline-block;
    position: relative;
    padding: 0 5px;
}

.section2-top ul li:first-child:after {
    display: none;
}

.section2-top ul li a {
    text-decoration: none;
    display: inline-block;
    padding: 6px 8px 3px 8px;
    margin: 4px 0;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    background: #fff;
    color: #000;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.section2-top ul li a:hover,
.section2-top ul li a.active {
    color: #005f84;
    font-weight: bold;
}

.section2-top-more {
    position: absolute;
    right: 15px;
    bottom: 0;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    font-size: 15px;
    color: #005f84;
}

.section2-top-more:hover {
    color: #f09719;
}

.section2-top-more:before {
    content: '';
    background-image: url(../images/i1.png);
    width: 35px;
    display: inline-block;
    height: 85px;
    vertical-align: bottom;
}

.section2-bottom {
    padding: 40px 0;
}

.section2-bottom img {
    width: 100%;
}

@media (max-width: 767px) {
    .section1 {
        padding:50px 0 0;
}
    .section2,
    .section2-title {
        margin-bottom: 0;
        overflow: hidden;
        margin-top: 40px;
    }

    .section2-title {
        margin-top: 30px;
    }

    .section2 .slick-next,
    .section2 .slick-next:focus,
    .section2 .slick-next:hover {
        right: 0;
        background: url(../images/main_controls2.png) -51px 0 no-repeat;
    }

    .section2 .slick-prev,
    .section2 .slick-prev:focus,
    .section2 .slick-prev:hover {
        left: 0;
        z-index: 2;
        background: url(../images/main_controls2.png) no-repeat;
    }

    .section2-top {
        position: relative;
        border-bottom: none;
        padding-right: 0;
        margin-bottom: 18px;
        text-align: right;
    }

    .section2-top-more {
        position: static;
    }

    .section2-bottom {
        padding: 40px 0;
    }

    .section2-bottom img {
        width: 100%;
    }
}

/* --- Section 3 --- */
.section3 {
    position: relative;
    text-align: center;
    margin-top: 0%;
    overflow: hidden;
}

.section3 img {
    width: 100%;
}

.section3-title {
    margin-top: 80px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .section3 {
        overflow: hidden;
    }

    .section3-title {
        margin-top: 30px;
    }
}

/* --- Section 4 (List/News/Items) --- */
.section4 {
    margin-bottom: 85px;
    overflow: hidden;
}

.section4-title {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 80px;
}

.section4 h4 {
    margin-bottom: 45px;
    color: #005f84;
    font-size: 18px;
    text-align: center;
}

.section4-item {
    width: 90%;
    border: 1px solid #ebebeb;
    padding: 14px;
    position: relative;
    background: #fff;
    margin: 6%;
}

.section4-item-text {
    padding: 0px;
    margin: 20px 10px 10px 10px;
}

.section4-item-text h3 {
    font-size: 20px;
    color: #196c87;
    margin-bottom: 30px;
}

.section4-item-text p {
    font-weight: bold;
    color: #000;
    font-size: 16px;
    margin-bottom: 20px;
}

.section4-item-text a {
    width: 110px;
    display: block;
    margin-left: auto;
    text-decoration: none;
    text-align: right;
    padding: 6px 10px 5px 0px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    background: #e2e2e2;
    color: #000;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.section4-item-text a:hover {
    color: #f09719;
}

.section4-item-img {
    background-position: center;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    aspect-ratio: 13/9;
}

.section4-item-date {
    position: absolute;
    right: 78px;
    bottom: 150px;
    width: 60px;
    padding-top: 76%;
}

.section4-item-date span {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    display: block;
    white-space: nowrap;
    color: #999da2;
}

@media (max-width: 767px) {
    .section4 {
        margin-bottom: 50px;
    }

    .section4 .slick-next,
    .section4 .slick-next:focus,
    .section4 .slick-next:hover {
        width: 30px;
        height: 30px;
        right: 0px;
        background: url(../images/main_controls2.png) -51px 0 no-repeat;
        background-size: 40px 40px;
        background-position: -20px 0;
    }

    .section4 .slick-prev,
    .section4 .slick-prev:focus,
    .section4 .slick-prev:hover {
        width: 30px;
        height: 30px;
        left: 10px;
        z-index: 2;
        background: url(../images/main_controls2.png) no-repeat;
        background-size: 40px 40px;
        background-position: 0 0;
    }

    .section4 > .container {
        padding-left: 35px;
        padding-right: 35px;
    }

    .section4-title {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .section4-title::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        border-bottom: none;
        z-index: 1;
    }

    .section4-title h3 {
        padding-bottom: 10px;
    }

    .section4-title h3 span {
        display: inline-block;
    }

    .section4-title h3 span span {
        color: #005f84;
        font-size: 18px;
        padding: 0 5px;
    }

    .section4-item {
        margin: 0% 0% 4% 5%;
    }

    .section4-item-text a {
        padding: 6px 10px 5px 10px;
    }

    .section4-item-date {
        padding-bottom: initial;
        /* bottom: 175px !important; */
    }
}

/* =========================================================================
   Utility & Helper Classes
========================================================================= */

.fx {
    position: fixed;
    right: 0;
    top: 40%;
}

/* 'More' Button */
.more,
.more span {
    position: relative;
    font-size: 18px;
}

/* More Button */
.more {
	width: 180px;
    display: inline-block;
    margin-top: 30px;
    padding: 15px 20px 12px 60px;
	border:1px solid #e2e2e2;
    border-radius: 30px;
    color: #000;
    font-size: 18px;
	font-weight: bold;
	align-items: center;
	border-radius: 30px;
    text-decoration: none;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    position: relative;
}

.more:hover {
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
	color: #196c87;
}

.more:after {
    content: '';
    background-image: url(../images/circle_arrow.svg); /* 화살표 이미지 */
    background-size: contain; /* 이미지가 잘리지 않도록 */
    display: block;
    width: 32px; /* 아이콘 크기 조정 */
    height: 32px; /* 아이콘 크기 조정 */
    position: absolute;
    top: 50%; /* 수직 중앙 */
    left: 20px; /* 왼쪽에서 20px 위치 */
    transform: translateY(-50%); /* 정확한 수직 중앙 정렬 */
}

@media (max-width: 768px) {
 .more {
    width:160px;
}
 .section1-button-wrapper {
     text-align: center;
	 margin: 0px 0px 20px;
    }
 .section1-button-wrapper .more {
	 margin: 0 auto;
    }
}

/* Category List (PC) */
.section2 .container.project .main-category-tabs {
    text-align: center;
    margin: 30px 0px;
    padding-top: 20px;
    background: #f6f4f1;
}
.section2 .container.project .main-category-tabs ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
}
.section2 .container.project .main-category-tabs li {
    padding: 10px 60px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s;
}
.section2 .container.project .main-category-tabs li.active {
    color: #bb8533;
    font-weight: bold;
    margin-bottom: -2px;
}

.section2 .container.project .sub-projects-container ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
}
.section2 .container.project .sub-projects-container li {
    display: inline-block;
    margin: 5px 10px;
}
.section2 .container.project .sub-projects-container a {
    border: 1px solid #ccc;
    padding: 8px 15px;
    display: block;
    border-radius: 4px;
    text-decoration: none;
	position: relative;
	padding-right: 35px;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	text-align: left;
}
.section2 .container.project .sub-projects-container a::after {
    content: '\203A';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #e2e2e2;
    font-weight: bold;
}
.section2 .container.project .sub-projects-container li {
    display: inline-block;
    margin: 5px 10px;
    width: 300px;
}

.section2 .container.project .sub-projects-container a.active,
.section2 .container.project .sub-projects-container a:hover {
    background-color: #d29c4a;
    color: #fff;
    border-color: #d29c4a;
}

/* Category List (Mobile) */
.section2 .container.project .project-category-mobile select {
    width: 100%;
    padding: 10px;
	border: 2px solid #196c87;
    border-radius: 8px;
    background-color: #f9f9f9;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.section2 .container.project .project-category-mobile select:hover,
.section2 .container.project .project-category-mobile select:focus {
    border: 1px solid #d29c4a;
}

/* Project Title Button List */
.section2 .container.project .project-list-box {
    margin-top: 30px;
}
.section2 .container.project .project-title-btn {
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
}

/* Image Box */
.section2 .container.project .project-img {
    margin-top: 20px;
    background: #f6f6f6;
    padding: 30px;
    border-top: 10px solid #196c87;
}
.section2 .container.project .project-img-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.section2 .container.project .project-img img.large-img {
	width: calc(25% - 15px);
    border-radius: 8px;
	height: auto;
}

.company2-body img,
.company5-body-item-img img,
.company5-body-item-text img,
.section1 img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .company5-body-item-img img {
        max-width: 80%;
    }

    .company5-body-item-text {
        padding: 0px 15px 0px 20px;
    }

    .section2 .container.project .main-category-tabs ul {
        /* 가로 배열 해제 */
        display: block;
    }

    .section2 .container.project .main-category-tabs li {
        width: 100%;
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid #ccc;
    }

    .section2 .container.project .main-category-tabs li a {
        display: block;
    }

    .section2 .container.project .main-category-tabs {
        margin: 15px 0px;
        padding-top: 0px;
    }

    .section2 .container.project .main-category-tabs li:last-child {
        border-bottom: none;
    }
}

/* Visibility Classes */

/* Default: Mobile Show, PC Hide */
.pc_show,
.pc_show_in {
    display: none !important;
}

.mb_show,
.mb_show_in {
    display: block !important;
}

.mb_show_in {
    display: inline-block !important;
}

.mb_show_gallery {
    display: none;
}

.pc_show_for_desktop {
    display: none;
}

@media screen and (min-width: 1400px) {
    .section1 .row {
        display: flex !important;
    }

    .section1 .row > .col-md-4 {
        width: 33.333333% !important;
        max-width: 33.333333% !important;
        margin-bottom: 0 !important;
    }

    .section1 .row > .col-md-8 {
        width: 66.666667% !important;
        max-width: 66.666667% !important;
    }

    .pc_show {
        display: block !important;
        width: 100%;
        height: auto;
    }
    .mb_show_gallery {
        display: none !important;
    }

    .section1 { padding: 50px 20px 0 30px; }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section1 .row { display: block !important; }
    .section1 .row > .col-md-4,
    .section1 .row > .col-md-8 {
        width: 100% !important;
        max-width: none !important;
        float: none !important;
    }
	.section1 .row > .col-md-8 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .section1 .row > .col-md-4 {
        margin-bottom: 30px !important;
    }

    .pc_show { display: none !important; }
    .mb_show_gallery {
        display: flex !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }
    .mb_show_gallery img {
        width: calc(33.333% - 7px) !important;
    }

    .pad_show { display: block !important; }
    .section1 { padding: 50px 0 0 30px; }
}

@media screen and (min-width: 1024px) and (max-width: 1399px) {
    .section1 .row { display: block !important; }
    .section1 .row > .col-md-4,
    .section1 .row > .col-md-8 {
        width: 100% !important;
        max-width: none !important;
        float: none !important;
    }
	.section1 .row > .col-md-8 {
        padding-left: 0 !important;
        padding-right: 30px !important;
    }
    .section1 .row > .col-md-4 {
        margin-bottom: 40px !important;
    }

    .pc_show { display: none !important; }
    .mb_show_gallery {
        display: flex !important;
        justify-content: space-between !important;
        gap: 15px !important;
    }
    .mb_show_gallery img {
        width: calc(33.333% - 10px) !important;
    }

    .section1 { padding: 50px 0 0 30px; }
	.copy-logo{max-width:15%;}
}

/* PC (>= 992px) */
@media (min-width: 992px) {
    .pc_show {
        display: block !important;
    }

    .pc_show_in {
        display: inline-block !important;
    }

    .mb_show,
    .mb_show_in,
    .mb_show_gallery {
        display: none !important;
    }
	.pc_show_for_desktop {
        display: block !important;
    }
	.project-category-mobile {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .project-category-mobile {
        display: block !important;
        margin: 15px 0 20px 0;
		position: relative;
    }

    .section2 .container.project .project-category-mobile select {
        width: 100%;
        padding: 12px 20px;
        border: 1px solid #e1e3e4;
        font-size: 16px;
		cursor: pointer;

		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;

		padding-right: 40px;
		}

	.project-category-mobile::after {
		content: '\25BE';
		position: absolute;
		top: calc(50% + 2px);
		right: 20px;
		transform: translateY(-50%);
		font-size: 18px;
		color: #333;
		pointer-events: none;
		z-index: 10;
}
}

@media (max-width: 767px) {
    .mb_show_gallery {
        display: block !important;
    }

    .mb_show_gallery img {
        display: block;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .mb_show_gallery img {
        width: 100% !important;
    }

	.pc_show {
		display: none;
	}
/*project-img-row */
    .section2 .container.project .project-img-row {
        /* 이미지를 한 줄에 배치하고 줄 바꿈을 막음 */
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        padding-bottom: 10px;
        gap: 15px;
    }
	 .section2 .container.project .project-img img.large-img {
        width: 90vw;
        flex-shrink: 0;
		border-radius: 0 !important;
    }
}

/* ====================================
   SECTION 5
   ==================================== */

.section5-title {
    text-align: center;
    margin-bottom: 30px;
}

.section5-title h3:after {
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.section5-item {
    margin-bottom: 50px;
}

.section5-item-img {
    width: 100%;
    padding: 0% 0% 0% 12%;
}

.section5-item-img img {
    width: 100%;
}

.section5-item-text {
    padding: 0% 0% 0% 12%;
}

.section5-item-text h3,
.section5-item-text h3 a {
    font-weight: bold;
    font-size: 20px;
    color: #196c87;
    padding: 15px 0;
    text-align: center;
}

.section5-item-text ul {
    padding-left: 0;
    margin-bottom: 50px;
    list-style: none;
}

.section5-item-text ul li {
    border-bottom: 1px solid #f1f1f1;
}

.section5-item-text ul li a {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    padding: 14px 12px 8px 0;
    display: block;
    position: relative;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.section5-item-text ul li a:hover {
    color: #196c87;
}

.section5-item-text ul li a:after {
    content: '';
    background-image: url(../images/nicon1.png);
    width: 24px;
    height: 24px;
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

/* Section 5 Media Queries */
@media (max-width: 768px) {
	.section3-title {
        margin-top: 80px;
    }
    .section5-item,
    .section5-title {
        margin-bottom: 30px;
    }

    .section5-title {
        text-align: left;
        padding: 0 15px;
    }

    .section5-item-img,
    .section5-item-text {
        padding: 0 !important;
    }

    .section5-item-text {
        padding: 0%;
    }

    .section5-item-text h3,
    .section5-item-text h3 a {
        padding: 5% 0% 0% 0%;
    }

    .section5-item-text ul {
        display: none;
    }
}

/* ====================================
   MAIN LIST
   ==================================== */

.main_list {
    background: #196c87;
    padding: 30px;
    position: relative;
    margin-bottom: 95px;
}

.main_list::after {
    content: '';
    right: 0;
}

/*
.main_list::after {
    background-image: url(../images/list_b.png);
    left: 0;
    position: absolute;
    bottom: -91px;
    height: 94px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
*/

.main_list-body {
    text-align: center;
    position: relative;
}

.main_list-body::after,
.main_list-body::before {
    content: '';
    width: 168px;
    height: 95px;
    position: absolute;
    bottom: -15px;
}

.main_list-body h3 {
    font-weight: bold;
    font-size: 36px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    padding-top: 20px;
}

.main_list-body ul {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.main_list-body ul li {
	color:#fff;
	display: inline-block;
    font-size: 18px;
    padding: 0 35px 0 10px;
    position: relative;
}

.main_list-body ul li:not(:last-child)::after {
    content: "";
    display: block;
    height: 12px;
    width: 1px;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.main_list-body ul li:last-child {
    border-right: none;
}

.main_list-body ul li a {
	padding-right:5px;
    font-size: 18px;
    color: #fff;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease
}

.main_list-body ul li a:hover {
    color: #cca766;
}

/* Main List Media Queries */
@media (min-width: 1024px) and (max-width: 1366px) {
    .main_list {
        margin-bottom: 60px;
    }
    .main_list-body h3 {
        font-size: 30px;
		padding-top:0;
    }
    hr {
        display: none;
    }
}

@media (min-width: 820px) and (max-width: 1180px) {
    .main_list {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .main_list {
        margin-bottom: 40px;
    }
	.main_list-body h3 {
	padding-top:0;
}
}

@media (max-width: 767px) {
    .main_list-body h3 {
        font-size: 30px;
    }
}

/* ====================================
   MAIN PAGE / NAV
   ==================================== */

.main_page {
    margin: 0 auto;
}

.main_list-body ul,
.main_page-left ul {
    padding-left: 0;
    list-style: none;
}

.main_page-left ul li {
    border-bottom: 1px solid #eaeaea
}

.main_page-left ul li a {
    font-size: 18px;
    font-weight: bold;
    padding: 1rem;
    display: block;
    color: #000;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    white-space: normal;
}
.main_page-left ul li.active a,
.main_page-left ul li a.active,
.main_page-left ul li a:hover {
    color: #fff;
    background: #cca766;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 16px;
}

.main_page-left ul li.left_nav ul {
    display: none;
    padding: 10px 0 20px 10px;
}

.main_page-left ul li.left_nav ul li {
    border-bottom: none;
}

/* Main Page / Nav Media Queries */
@media (max-width: 768px) {
    .main_page-left ul li a {
        padding: 0.7rem 1rem 0.45rem;
        font-size: 16px;
    }

    .main_page-left ul li a.active,
    .main_page-left ul li a:hover {
        letter-spacing: 1px;
        padding: 10px;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .main_page-left ul li a {
        padding: 0.7rem 1rem 0.5rem 1rem;
    }
}

@media (min-width: 820px) and (max-width: 1180px) {
    .main_page-left ul li a {
        padding: 0.7rem 1rem 0.5rem 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    body h3,
    body .h3 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
}

/* ====================================
   ABOUT US
   ==================================== */

.aboutus-body {
    margin-left: auto;
    margin-right: auto;
}

.aboutus-body-text {
    background: #f0f5f8;
    padding: 14px 10px;
}

.aboutus-body-text h3 {
    color: #000 !important;
    font-size: 30px;
    font-weight: bold;
    padding: 40px 30px 10px 40px !important;
}

.aboutus-body-text p {
    line-height: 36px;
    font-size: 18px;
    font-weight: bold;
    color: #000 !important;
    padding: 10px 30px 10px 40px !important;
}

/*
.aboutus-body-img img {
    width: 100%;
}
*/

.aboutus-body > .row {
    margin-bottom: 15px;
}

/* Left/Right Text/Image Order */
.aboutus-body > .row.left .aboutus-body-text {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    order: 1;
}

.aboutus-body > .row.left .aboutus-body-img {
    padding-right: 0;
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    order: 2;
}

.aboutus-body > .row.right .aboutus-body-text {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    order: 2;
}

.aboutus-body > .row.right .aboutus-body-img {
    padding-left: 0;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    order: 1;
}

/* About Us Media Queries */
@media (max-width: 768px) {
    .aboutus-body {
        margin-top: 30px;
    }
}

@media (min-width: 820px) and (max-width: 1180px) {
    .aboutus-body-text h3 {
        padding: 20px 30px 10px 20px !important;
    }

    .aboutus-body-text p {
        line-height: 28px;
        padding: 10px 10px 10px 20px !important;
    }

    hr {
        display: none;
    }

    .aboutus-body-img {
        flex: 1 1 50%;
        display: flex;
    }

    .aboutus-body-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 1024px) and (max-width: 1366px) {
    .aboutus-body-text h3 {
        font-size: 28px;
        padding-top: 20px !important;
        padding-left: 8px !important;
        padding-right: 2px !important;
    }

    .aboutus-body-text p {
        font-size: 16px;
        line-height: 28px;
        padding-left: 10px !important;
        padding-right: 5px !important;
    }

    .aboutus-body-text {
        padding: none;
        padding: 8px !important;
    }

    p span {
        font-size: 18px !important;
    }

    .aboutus-body-img {
        flex: 1 1 50%;
        display: flex;
    }

    .aboutus-body-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    span.mobile-size {
        font-size: 18px !important;
        font-weight: bold;
    }

    .aboutus-body-text h3 {
        color: #000 !important;
        font-size: 30px;
        font-weight: bold;
        padding: 16px 0px 0px 15px !important;
    }

    .aboutus-body-text p {
        font-size: 16px;
        line-height: 24px;
        padding-left: 14px !important;
        padding-right: 10px !important;
    }

    .aboutus-body > .row {
        margin-bottom: 0px;
    }

    /* Mobile Order: Image first, Text second */
    .aboutus-body > .row.left .aboutus-body-text,
    .aboutus-body > .row.right .aboutus-body-text {
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        order: 2;
    }

    .aboutus-body > .row.left .aboutus-body-img {
        padding-right: 15px;
        margin-bottom: 15px;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        order: 1;
    }

    .aboutus-body > .row.right .aboutus-body-img {
        padding-left: 15px;
        margin-bottom: 15px;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        order: 1;
    }
}

/* ====================================
   MAIN TABLE
   ==================================== */

.main_tb [class^=col] {
    word-wrap: break-word;
}

.main_tb-title .row {
    background: #907d6c;
    margin-top: 3px;
    padding: 13px;
}

.main_tb-title .row [class^=col] {
    color: #fff;
    font-weight: bold;
    padding: 5px;
    text-align: center;
}

.main_tb-body .row:nth-child(even) {
    background: #f1f1f1;
}

.main_tb-body .row [class^=col] {
    padding: 10px;
}

.main_tb.style2 .main_tb-body .row:nth-child(even) {
    background: #f1f1f1;
}

/* Main Table Media Queries */
@media (max-width: 767px) {
    .main_tb-title {
        display: none;
    }

    .main_tb-body .row [class^=col] {
        position: relative;
    }

    .main_tb-body .row [class^=col]:before {
        content: attr(data-title) " ";
        color: #000;
        font-weight: 700;
    }

    .main_tb-body .row [class^=col]:after {
        content: "";
        position: absolute;
        width: 10px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        height: 2px;
        background-color: #d5d5d5;
        z-index: 10;
    }
}

/* ====================================
   COMPANY 1(timeline & history)
   ==================================== */

.company1-body {
    padding: 58px 0;
    position: relative;
}

/* Vertical Timeline Line */
.company1-body:before {
    content: '';
    height: 100%;
    position: absolute;
    top: 20px;
    bottom: 0;
    width: 1px;
    background: #c40000;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

/* Top Arrow */
.company1-body::after {
    content: '▲';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 1;
    font-size: 21px;
    color: #c40000;
}

.company1-body .row {
    margin-bottom: 25px;
    margin-left: 0;
    margin-right: 0;
}

.company1-body-text {
    padding-right: 35px
}

.company1-body-text-cont {
    background: #f9f9f9;
    padding: 25px 10px 25px 15px;
    position: relative;
}

/* Timeline Dot (Right Side) */
.company1-body-text-cont:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #c40000;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    top: 35px;
    position: absolute;
    right: -41px;
}

/* Timeline Pointer (Right Side) */
.company1-body-text-cont:after {
    content: '►';
    top: 30px;
    font-size: 20px;
    color: #f7fff7;
    position: absolute;
    right: -16px;
}

.company1-body-text-cont h3 {
    font-size: 28px;
    color: #000000;
    position: relative;
    padding-left: 10px;
    padding-bottom: 5px;
    margin-bottom: 15px
}

.company1-body-text-cont h3::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 30px;
    left: 10px;
    bottom: -5px;
    background: #363636;
}

.company1-body-text-cont p,
.company1-body-text-cont ul {
    color: #000;
    font-weight: bold;
    padding-left: 10px;
    height: 50px;
    margin: 0;
    list-style: disc;
}

.company1-body-text-cont p.opened,
.company1-body-text-cont ul.opened {
    height: auto;
    font-size: 16px;
    line-height: 28px;
}

.company1-body-text-cont .toggle {
	width:32%;
    font-weight: bold;
    color: #196c87;
    text-align: center;
    display: block;
	background: #fff;
    border: 1px solid #196c87;
	margin: 0 auto;
    border-radius: 30px;
	padding:10px 0px;
}

.company1-body-img {
    padding-left: 35px;
}

.company1-body-img img {
    margin-right: 10px;
}

/* Right Side Styles (Reversed Order) */
.company1-body .row.right .company1-body-text {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-box-ordinal-group: 3;
    order: 2;
    padding-right: 0;
    padding-left: 35px;
}

/* Timeline Dot (Left Side) */
.company1-body .row.right .company1-body-text .company1-body-text-cont:before {
    content: '';
    left: -41px;
    right: auto;
}

/* Timeline Pointer (Left Side) */
.company1-body .row.right .company1-body-text .company1-body-text-cont:after {
    content: '◄';
    left: -16px;
    right: auto;
}

.company1-body .row.right .company1-body-img {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    order: 1;
    padding-left: 0;
    padding-right: 35px;
    text-align: right;
}

.company1-body .row.right .company1-body-img img {
    margin-right: 0;
    margin-left: 10px;
}

/* Company 1 Media Queries */
@media (max-width: 767px) {
    .company1-body {
        padding: 58px 0 0 29px;
    }

    /* Vertical Timeline Line (Left alignment) */
    .company1-body:before {
        left: 12.35px;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    /* Top Arrow (Left alignment) */
    .company1-body::after {
        left: 2px;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .company1-body .row.left .company1-body-text,
    .company1-body .row.right .company1-body-text {
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        order: 2;
        padding-right: 0;
        padding-left: 10px;
    }

    /* Timeline Dot (Mobile: Left alignment) */
    .company1-body .row.left .company1-body-text .company1-body-text-cont:before,
    .company1-body .row.right .company1-body-text .company1-body-text-cont:before {
        content: '';
        left: -33px;
        right: auto; /* Ensure right is unset */
    }

    /* Timeline Pointer (Mobile: Left alignment) */
    .company1-body .row.left .company1-body-text .company1-body-text-cont:after,
    .company1-body .row.right .company1-body-text .company1-body-text-cont:after {
        content: '◄';
        left: -16px;
        right: auto;
    }

    .company1-body .row.left .company1-body-text .company1-body-text-cont h3,
    .company1-body .row.right .company1-body-text .company1-body-text-cont h3 {
        font-size: 18px;
    }

    .company1-body .row.left .company1-body-text .company1-body-text-cont h3::after,
    .company1-body .row.right .company1-body-text .company1-body-text-cont h3::after {
        width: 35px;
    }

    .company1-body .row.left .company1-body-img,
    .company1-body .row.right .company1-body-img {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        order: 1;
        text-align: left;
        padding-right: 0;
        padding-left: 0;
    }

    .company1-body .row.left .company1-body-img img,
    .company1-body .row.right .company1-body-img img {
        margin-right: 0;
        margin-left: 10px;
    }
	.company1-body-text-cont .toggle {
		width:48%;
		font-size:14px;
	}

}

/* ====================================
   COMPANY 2, 3, 4, 5
   ==================================== */

.company2-body h3,
.company3-body h3,
.company4-body h3, /* NOTE: h3 for company4/5 is commented out in original, but included here for consistency if needed */
.company5-body h3 {
    text-align: center;
    font-size: 24px;
    color: #005f84;
}

/* Company 2 Styles */
.company2-body h3 {
    margin-bottom: 15px;
}

.company2-body-img {
    width: 100%;
    margin-bottom: 80px;
}

/* Company 3 Styles */
.company3-body h3 {
    margin-bottom: 8px;
}

.company3-body .main_tb {
    margin-bottom: 100px;
}

.company3-body .main_tb-body .row [class^=col],
.company3-body .main_tb-title .row [class^=col] {
    text-align: left;
    padding: 5px;
}

/* Company 4 Styles */
.company4-body .tb_style,
.company4-body-img img {
    width: 100%;
}

.company4-body .tb_style tbody tr td:first-child,
.company4-body h3 { /* h3 styles were commented out in the original block */
    text-align: center;
}

/*
.company4-body h3 {
    font-size: 24px;
    color: #005f84;
    margin-bottom: 15px;
}
*/

.company4-body h4 {
    font-size: 18px;
    padding: 15px;
    margin-bottom: 0;
    color: #282828;
}

.company4-body-text {
    background: #f1f1f1;
    padding: 12px;
}

.company4-body .tb_style thead {
    background: #96bc37;
}

.company4-body .tb_style thead th {
    padding: 5px;
    text-align: center;
}

.company4-body .tb_style thead tr th:first-child {
    width: 40%;
}

.company4-body .tb_style tbody tr:nth-child(odd) {
    background: #e6f3c7;
}

.company4-body .tb_style tbody tr:nth-child(even) {
    background: #cce198;
}

.company4-body .tb_style tbody tr td {
    padding: 5px;
}

/* Company 5 Styles */
.company5-body h3 { /* h3 styles were commented out in the original block */
    text-align: center;
}

/*
.company5-body h3 {
    font-size: 24px;
    color: #005f84;
    margin-bottom: 30px;
}
*/

.company5-body-item {
    margin-left: 50px;
    margin-bottom: 110px;
}

.company5-body-img img {
    width: 90%;
}

/* Company 5 Media Queries */
@media (min-width: 820px) and (max-width: 1180px) {
    .company5-body-item {
        margin-left: 0px;
    }
	.company1-body-text-cont .toggle {
	    width:50%;
}
}

@media (max-width: 767px) {
    .company5-body-item {
        margin-left: -15px;
        margin-bottom: 50px;
    }

    .company5-body-item-img {
        text-align: center;
    }
}

/* ====================================
   NEWS / MEDIA news & board
   ==================================== */

.news2-body {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* News List Item */
.news-body-item {
    border: 1px solid #e4e4e4;
    margin-bottom: 30px;
    display: block;
}

.news-body-item-img {
    background-repeat: no-repeat;
    background-position: center;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-top: 70%;
    background-color: #e4e4e4;
}

.news-body-item-text {
    padding: 18px 15px;
}

.news-body-item-text span {
    display: inline-block;
    background-color: #f1f1f1;
    background-position: center;
    color: #000;
    font-weight: bold;
    font-size: 15px;
    padding: 6px 10px 4px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.news-body-item-text h3 {
    margin-bottom: 10px;
    font-size: 18px;
    word-break: break-all;
}

.news-body-item-text p {
    margin-bottom: 35px;
    font-size: 15px;
    word-break: break-all;
}

.news-body-item-text a {
    display: block;
    color: #ac8b53;
    margin-bottom: 20px;
}

/* News Detail (News 2) */
.news2-body-title {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
}

.news2-body-title h3 {
    font-size: 24px;
}

.news2-body-title span {
    font-size: 15px;
}

.news2-body-cont {
    padding: 30px 0;
}

.news2-body-cont img {
    max-width: 100%;
    margin-bottom: 30px;
}

.news2-body-cont p {
    text-align: left;
}

.news2-body-btn {
    text-align: center;
}

.news2-body-btn a {
	margin-bottom: 50px;
    display: inline-block;
    padding: 8px 19px;
    background: #836b56;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.news2-body-btn a:hover {
    color: #fff;
}

/* News/Media Media Queries */
@media (max-width: 768px) {
    .news2 h3 {
        font-size: 20px;
    }

    .news2-body-title span {
        color: #ababab;
        font-size: 15px;
    }
}
/* ====================================
   NEWS / Urban renewal
   ==================================== */
.main-content {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-header {
    border-bottom: 2px solid #005f6b;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.content-header .title {
    font-size: 24px;
    color: #333;
    margin: 0 0 5px 0;
}

.content-header .date {
    font-size: 15px;
    color: #196c87;
}

.content-body {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.info-text {
    flex: 1;
}

.info-text p {
    font-size: 18px;
    line-height: 2.8;
    color: #444;
    margin-bottom: 12px;
}

.info-visual {
    flex: 0 0 450px;
    max-width: 100%;
}

.slider-container {
    border: 1px solid #ddd;
    padding: 10px;
    background: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.image-box {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.preview-img {
    min-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
	object-fit: contain;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.arrow-btn {
    background: #fff;
    border: 1px solid #e2e2e2;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
	outline: none !important;
	box-shadow: none !important;
	-webkit-tap-highlight-color: transparent;
	padding: 0;
    line-height: 1;
	color:#555;
	stroke-width: 1;
}

.arrow-btn:hover {
    background: #c6c6c6;
    color: #fff;
}

.zoom-btn {
    width: 100%;
    padding: 12px 0;
    background-color: #6c757d;
    color: #fff;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
	outline: none !important;
    box-shadow: none !important;
}

.zoom-btn:hover {
    background-color: #005f6b;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content-box{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    height: 96vh;
	padding: 20px;
    border: 0px;
    background: transparent !important;
}

.modal-content-box img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.modal-prev, .modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 50px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
    padding: 20px;
    z-index: 10002;
}

.modal-prev { left: -60px; }
.modal-next { right: -60px; }

.modal-prev:hover, .modal-next:hover {
    color: #333;
}
.close-btn {
    position: absolute;
    top: 0px;
    right: 30px;
    color: #999;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #000;
    transform: rotate(90deg);
}

/* =========================================
   NEWS / Urban renewal mobile
   ========================================= */
@media (max-width: 1024px) {
    .info-visual { flex: 0 0 350px; }
    .content-body { gap: 30px; }
}

@media (max-width: 768px) {
    .main-content { padding: 15px; }
    .content-body {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 20px;
    }
    .info-text, .info-visual {
        width: 100%;
        flex: none;
    }
    .info-text p { font-size: 15px; line-height: 1.8; }
    .zoom-btn { padding: 15px 0; font-size: 16px; }
}

/* ====================================
   MAIN TAB
   ==================================== */

.main_tab {
    margin-bottom: 20px;
}

.main_tab ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.main_tab ul li {
    display: inline-block;
}

.main_tab ul li a {
    color: #000000;
    font-weight: 600;
    font-size: 21px;
    margin-right: 40px;
    padding-bottom: 10px;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

.main_tab ul li.active a,
.main_tab ul li a:hover {
    font-weight: bold;
    color: #a36c24;
    position: relative;
}

.main_tab ul li.active a:before,
.main_tab ul li a:hover:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #a36c24;
    height: 2px;
}

/* Main Tab Media Queries */
@media (min-width: 768px) {
    .main_tab .form-control {
        max-width: 120px;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .main_tab {
        margin-bottom: 30px;
    }

    .main_tab ul li {
        display: inline-block;
        margin-bottom: 20px;
    }

    .main_tab ul li a {
        color: #000;
        font-weight: 600;
        font-size: 16px;
        margin: 0 8px;
    }
}

/* ====================================
   CUP board/list style
   ==================================== */

.cup {
    width: 100%;
    max-width: 96%;
    margin: 0 auto;
}

.cup-body-item {
    margin-bottom: 30px;
    border: 1px solid #e6e6e6;
}

.cup-body-item-img {
    padding-top: 68%;
    display: block;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cup-body-item-d {
    font-size: 15px;
    color: #196c87;
    padding: 12px 10px;
    display: block;
}

.cup-body-item-text {
    padding: 0 10px;
}

.cup-body-item-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.cup-body-item-text p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 70px;
}

/* ====================================
   CASE gallery style
   ==================================== */

.case {
    width: 100%;
    max-width: 96%;
    margin: 0 auto;
}

.case-body-item {
    width: 25%;
    padding: 10px;
}

.case-body-item img {
    width: 100%;
    display: block;
}

.case-body-item a {
    display: block;
    position: relative;
}

.case-body-item span {
    display: block;
    position: absolute;
    bottom: 0;
    border: 1px solid #f3f3f3;
    left: 0;
    right: 0;
    background: #fff;
    text-align: left;
    color: #000;
    font-weight: bold;
    padding: 5px;
    opacity: 0.8;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    -moz-transition: all .6s ease;
    -webkit-transition: all .6s ease;
}

.case-body-item a:hover span {
    opacity: 1;
}

/* Case Media Queries */
@media (max-width: 991px) {
    .case-body-item {
        width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .case-body-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .case-body-item {
        width: 100%;
    }
}

/* ====================================
   MODAL style
   ==================================== */

#myModal .modal-dialog {
    max-width: 1170px;
    margin: 5rem auto 1.75rem;
}

#myModal .modal-header {
    background: #cca766;
    padding: 10px 15px;
}

#myModal .modal-header h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 0;
}

#myModal .modal-body .modal_title {
    padding-bottom: 20px;
}

#myModal .modal-body .modal_title [class^=col] {
    border-left: 1px solid #b5b5b5;
}

#myModal .modal-body .modal_title [class^=col]:first-child {
    border-left: none;
}

#myModal .modal-body .modal_img {
    background: #f3f3f3;
    margin-bottom: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 15px 8px;
}

#myModal .modal-body .modal_img a {
    display: block;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

#myModal .modal-body .modal_img a img {
    width: 100%;
    display: block;
}

/* Modal Media Queries */
@media (max-width: 767px) {
    #myModal .modal-body .modal_title [class^=col] {
        border-left: none;
        border-top: 1px solid #b5b5b5;
        padding: 15px;
    }

    #myModal .modal-body .modal_title [class^=col]:first-child {
        border-top: none;
    }
}

/* ====================================
   IMPORTANT BODY notice & board style
   ==================================== */

.important-body {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.important-body .main_tb-body .row a {
    display: inline-block;
    vertical-align: middle;
}

.important-body h3 {
    text-align: center;
    font-size: 24px;
    color: #005f84;
}

.important-body-title {
    padding-bottom: 10px;
}

.important-body-title a {
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    margin: 5px 0;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Important Body Media Queries */
@media (max-width: 767px) {
    .important-body-title {
        padding-top: 20px;
    }

    .important-body-title [class^=col] {
        margin-bottom: 10px;
    }

    .important-body .main_tb-body > div::before {
        display: inline-block;
    }

    .important-body .main_tb-body .row:last-child [class^=col]::after {
        content: none !important;
        height: 0;
        background-color: transparent;
    }
    /*delete yt last line*/
}

@media (min-width: 768px) {
    .important-body-title .form-control {
        max-width: 120px;
        display: inline-block;
    }
}

/* ====================================
   ADB BOTTOM (bottom ad style)
   ==================================== */

.adb_bottom {
    text-align: center;
    margin-top: 100px;
}

.adb_bottom a {
    display: inline-block;
    vertical-align: middle;
}

.adb_bottom a img {
    max-width: 100%;
}

.adb_bottom span {
    font-size: 14px;
    color: #282828;
}

/* ====================================
   FINANCE ( fianance data style)
   ==================================== */

.finance-body {
    margin-left: auto;
    margin-right: auto;
}

/*
.finance-body h3 {
    text-align: center;
    font-size: 24px;
    color: #005f84;
}
*/

.finance-body-title {
    width: 98%;
    margin-bottom: 12px;
	text-align:center;
}

.finance-body-title p {
    text-align: center;
    color: #434343;
}

.finance-body-title p a {
    color: #000;
    text-decoration: none;
    display: inline-block;
    padding: 10px 15px;
    margin: 5px 0;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.finance-body .main_tb-body img {
    max-width: 56%;
    vertical-align: middle;
}

.finance-body .main_tb-body .pdf_img p {
    margin-bottom: 0;
}

/* List Item Bullet Styling (Applies to main_tb-body > div) */
.main_tb-body > div {
    position: relative;
    padding-left: 1.5em;
}

.main_tb-body > div::before {
    content: "•";
    color: #000;
    position: absolute;
    left: 15px;
    line-height: 2.3;
    top: 0.25em;
    display: none;
}

/* Main Table Responsive Styles (Common Table Styles) */
.main_table_responsive table thead th,
.main_table_responsive2 table thead th {
    color: #fff;
    white-space: nowrap;
    padding: 5px;
}

.main_table_responsive table thead {
    background: #907d6c;
}

.main_table_responsive table tbody tr td {
    white-space: nowrap;
    padding: 5px;
}

.main_table_responsive table tbody tr:nth-child(even) {
    background: #f1f1f1;
}

.main_table_responsive2 table thead {
    background: #907d6c;
}

.main_table_responsive2 table thead th {
    background: #907d6c;
    padding: 16px; /* 'none' was specified, but '16px' was also specified, using 16px as it's more specific/later */
}

.main_table_responsive2 table tbody tr td {
    white-space: nowrap;
    padding: 5px;
}

.main_table_responsive2 table tbody tr:nth-child(even) {
    background: #f1f1f1;
}

/* Finance Media Queries */
@media (min-width: 768px) {
    .finance-body-title p {
        position: relative;
        padding-bottom: 15px;
        display: block;
    }

    .finance-body .col-md-20 {
        max-width: 14.285%;
        flex: 0 0 14.285%;
    }

    .finance-body-title .form-control {
        max-width: 120px;
        display: inline-block;
    }
}

@media (max-width: 768px) {
	.main_page .finance .img {
		width:50% !important;
	}
    .finance-body .main_tb-body img {
        max-width: 32%;
        margin: 10px 0px;
    }

    .main_tb-body > .row:nth-child(even) {
        background-color: #f9f9f9;
    }

    .main_tb-body > .row:nth-child(odd) {
        background-color: #ffffff;
    }

    .main_tb-body .row .col-md-2:nth-of-type(4)::after {
        content: none !important;
    }
    /*delete yt last line*/
	.mr-5 {
        margin-right: 0 !important;
    }

    .ml-5 {
        margin-left: 0 !important;
    }

    .mb-5 {
        margin-bottom: 0 !important;
    }
}
