/* 사업안내 메뉴 시작 */
.table-back-blue{
    background: #f0f7fb !important;
}
.table-back-green{
    background: #d8ebf4 !important;
}

.test2 {
    padding: 20px;
    background-color: #f5fafd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.test2 .title {
    font-size: 1.5rem;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.test3 {
    display: flex;
    align-items: center;
}

.test2 .icon img {
    width: 70px;
    height: 70px;
}

.test2 .text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
    margin-left: 20px;
}

/* 네비게이션 바 높이에 맞춘 여유 공간 추가 */
.content {
    padding: 5px 250px 0px 250px;
}

.qwer {
    margin-top: 70px; /* 네비게이션 바의 높이에 맞게 조절 */
    padding-bottom: 50px;
}

.main-t{
    font-size: 26px;
    font-weight: 700;
    padding-top: 100px !important;
    text-align: center !important;
}


.sub-t {
    text-align: left;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    padding-top: 50px;
    position: relative; /* ::before 요소 위치 설정을 위해 추가 */
    padding-left: 20px; /* 본문 텍스트와 아이콘 사이의 간격 추가 */
}
.sub-t::before {
    content: url(/static/img/sub-title-img.png);
    display: inline-block;
    position: relative; /* 변경 */
    left: 0px;
    top: -5px;
    transform: translateY(0); /* 변경 */
    margin-right: 10px; /* 텍스트와 아이콘 사이에 여백 추가 */
    vertical-align: middle; /* 텍스트의 중간에 아이콘 고정 */
    margin-left: -15px;
}
.section {
    background-color: #f6f6f6;
    position: fixed;
    left: 0;
    width: 100%;
    top: 75px;
    z-index: 140;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 그림자 추가 */
}

.test11 {
    font-size: 18px; /* 글꼴 크기 조정 */
    color: #333; /* 글꼴 색상 변경 */
    font-weight: 600; /* 글꼴 두께 조정 */
    text-align: left; /* 텍스트 정렬 */
    letter-spacing: 1px; /* 글자 간격 조정 */
    background: linear-gradient(to right, #6a11cb, #2575fc); /* 그라데이션 배경 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 5px 250px 0px 250px;
    border-radius: 5px; /* 모서리 둥글게 */
}

/* 기존 스타일 유지 */
.tabs-st1 {
    display: flex;
    flex-wrap: wrap; /* 반응형을 위해 flex-wrap 사용 */
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
}

.tabs-st1 li {
    flex: 1 1 calc(33.33% - 10px); /* 각 항목이 3등분되도록 설정하고 여백 추가 */
    background-color: white; /* 기본 배경은 흰색 */
    margin: 5px; /* 항목 간의 여백 */
    border-radius: 5px; /* 모서리 둥글게 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 그림자 추가 */
    transition: transform 0.2s, background-color 0.3s; /* Hover 및 배경색 전환 효과 추가 */
}

.tabs-st1 li:hover {
    transform: scale(1.05); /* Hover 시 확대 효과 */
    background-color: #f2f7fa; /* Hover 시 배경색 */
    transition: width 0.3s ease, width 0.3s ease;
}

.tabs-st1 li a {
    display: block;
    padding: 9px 20px;
    color: #333;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px; /* 링크의 모서리도 둥글게 */
    position: relative; /* ::after 가상 요소를 위해 position: relative 추가 */
}

.tabs-st1 li a:hover::after,
.tabs-st1 li.active a::after {
    width: 100%;
    left: 0;
    transform: none;
}

.tabs-st1 li a:hover::after,
.tabs-st1 li.active a::after {
    width: 100%;
    left: 0;
    transform: none;
}

.tabs-st1 li a:hover::after {
    width: 100%;
    left: 0;
    transform: none;
}

.tabs-st1 li a:hover {
    color: #027cb5; /* Hover 시 글자색 */
    font-weight: 700; /* Hover 시 글자 굵기 */
}

.tabs-st1 li.active {
    background-color: #f2f7fa; /* 활성화된 탭의 배경색 */
}

.tabs-st1 li.active a {
    color: #027cb5; /* 활성화된 탭의 글자색 */
    font-weight: 700; /* 활성화된 탭의 글자 굵기 */
}

.tabs-st1 li {
    flex: 0 1 calc(50% - 10px); /* 기본적으로 2개씩 나란히 배치 */
}/* 마지막 요소가 홀수일 때 꽉 차도록 설정 */
.tabs-st1 li:nth-last-child(1):nth-child(odd) {
    flex: 0 1 100%; /* 마지막 요소가 한 줄을 꽉 채우도록 */
}
@media (max-width: 768px) {

    .tabs-st1 li a{
        display: block;
        padding: 9px 20px;
        color: #333;
        text-decoration: none;
        text-align: center;
        font-size: 13px;
        font-weight: 500;
        border-radius: 5px;
        position: relative;
    }

    .qwer {
        margin-top: 70px; /* 네비게이션 바의 높이에 맞게 조절 */
    }

    .test {
        width: 100%; /* 가로 크기 100% */
        background-color: #f6f6f6;
        border-radius: 5px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 그림자 추가 */
        padding-top: 50px;
    }

    /*.tabs-st1 li {*/
    /*    flex: 1 1 100%; !* 작은 화면에서는 각 항목이 전체 너비를 차지 *!*/
    /*}*/
}

.test {
    width: 100%; /* 가로 크기 100% */
    background-color: #f6f6f6;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 그림자 추가 */
}

.test-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 요소들 사이에 공간을 균등하게 배치 */
    height: 300px; /* 고정된 높이 값 */
    padding: 0 250px; /* .content의 마진과 맞춤 */
}

.test-inner img {
    max-height: 100%; /* 부모 요소의 높이에 맞춤 */
    height: auto; /* 이미지의 비율 유지 */
    width: auto; /* 이미지의 비율 유지 */
    max-width: 40%; /* 이미지를 부모의 너비의 40%로 제한 */
}
.test img {
    height: 100%; /* 높이를 부모 요소에 맞춤 */
    width: auto; /* 가로 크기는 비율에 맞게 자동 조정 */
    border-radius: 5px;
}


.test .text-content h2 {
    margin-right: 100px;
    font-size: 24px;
    font-weight: 500;
    color: #111;
    line-height: 1.32;
    margin-bottom: 10px;
}

.test .text-content p {
    margin-right: 100px;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.test .text-content .highlight {
    display: inline-block;
    width: 40px;
    height: 4px;
    background-color: #027cb5;
    margin-top: 10px;
    margin-bottom: 10px;
}

.features {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    border: 1px solid #ddd;
    border-top: 3px solid #027cb5;
    border-radius: 5px;
}


.feature-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 1px dashed #ddd; /* 끊긴 선으로 변경 */
}

.feature-item:last-child {
    border-right: none;
}

.feature-item img {
    max-width: 100px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 16px;
    color: #333;
}

.feature-item span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.info-section {
    /*margin-top: 50px;*/
}

.info-box {
    display: flex;
    border: 1px solid #027cb5;
    border-radius: 5px;
    margin-bottom: 20px;
}

.info-box .info-title {
    background-color: #027cb5;
    color: white;
    padding: 20px;
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.info-box .info-content {
    padding: 20px;
    flex: 1;
}

.info-box .info-content p {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
}

.info-box .info-content p::before {
    content: '\2713';
    color: #027cb5;
    font-weight: bold;
    margin-right: 10px;
}

.info-box-green {
    display: flex;
    border: 1px solid #2a9d8f; /* 연두색 보더 */
    border-radius: 5px;
    margin-bottom: 20px;
}

.info-box-green .info-title {
    background-color: #2a9d8f; /* 연두색 배경 */
    color: white;
    padding: 20px;
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.info-box-green .info-content {
    padding: 20px;
    flex: 1;
}

.info-box-green .info-content p {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
}



.info-box-green .info-content p::before {
    content: '\2713';
    color: #2a9d8f;
    font-weight: bold;
    margin-right: 10px;
}

/* 새로운 수행 업무 섹션 스타일 */
.info-section .task-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

.info-section .task-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.info-section .task-item {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    flex: 1;
    margin: 5px;


    width: 48%; /* 두 개씩 배치 시 너비 조정 */
    box-sizing: border-box;
}

.info-section .task-icon {
    background-color: #027cb5;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0; /* 텍스트 길어져도 크기 고정 */
}

.info-section .task-text {
    font-size: 16px;
    color: #333;
}

/* 업무 수행 절차 섹션 스타일 */
/* 업무 수행 절차 섹션 스타일 */
.process-box {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.process-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd; /* 기본 보더 색상 */
    border-top: 3px solid #027cb5; /* 상단 보더 색상 */
    border-radius: 5px;
    background-color: #fff;
    margin: 0 10px;
    position: relative;
}

.process-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
}

.process-item p {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.process-item img {
    max-width: 60px;
    margin-bottom: 10px;
}

.process-item::after {
    content: '    >';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ddd;
}

.process-item:last-child::after {
    display: none;
}
/* 기본 스타일 */
.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    padding: 15px;
    background-color: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700 !important; /* font-weight 강제 적용 */
}

.accordion-header:hover {
    background-color: #f1f1f1;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: #fff;
    overflow: hidden; /* 슬라이드 효과를 위해 추가 */
    transition: max-height 0.3s ease-out; /* 슬라이드 효과 */
}

.accordion-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.accordion-content table,
.accordion-content th,
.accordion-content td {
    border: 1px solid #ddd;
    padding: 8px;
}

.accordion-content th {
    background-color: #f2f2f2;
    text-align: center;
    border-top: 3px solid black; /* 헤더 상단 테두리 진하게 */
    border-bottom: 1px solid black; /* 헤더 하단 테두리 */
}

.accordion-content td {
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #ddd; /* 바디 상단 테두리 회색 */
    color: #666; /* 바디 글씨 색 회색 */
}

.active .accordion-header {
    background-color: #e0f7fa;
}

.active .accordion-content {
    display: block;
}

.accordion-header span {
    transition: transform 0.3s;
}

.active .accordion-header span {
    transform: rotate(180deg);
}

.highlighted-row {
    background-color: #e0f7fa;
}

.violation-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.violation-table th,
.violation-table td {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    font-weight: normal;
    color: #333; /* 기본 글씨 색상 */
}

.violation-table thead th {
    background-color: #f0f7fb; /* 헤더 배경 색 */
    font-weight: bold; /* 헤더 폰트 두껍게 */
    border-top: 1px solid #333; /* 상단 두꺼운 보더 */
    /*border-bottom: 1px solid #333; !* 하단 검정색 보더 *!*/
}

.ab1{
    border-top: 1px solid #333; /* 상단 두꺼운 보더 */
}
.ab2{
    border-bottom: 1px solid #333; /* 하단 검정색 보더 */
}



.violation-table tbody td {
    border-bottom: 1px solid #ddd; /* 바디 회색 보더 */
}

.violation-table tbody tr:nth-child(even) td {
    background-color: #ffffff; /* 짝수 행의 배경 색상 */
}
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-address {
    text-align: center;
    margin-bottom: 20px;
}

.footer-address p {
    color: white;
    margin: 5px 0;
}

.footer-social {
    text-align: center;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    margin: 0 5px;
}

.footer-social img {
    max-width: 30px;
}

.footer-partners {
    text-align: center;
    margin-top: 20px;
}

.partners-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.partners-logos img {
    max-width: 50px;
    margin: 0 10px;
}
.info-box-yeollow {
    display: flex;
    border: 1px solid #d3a239; /* 연두색 보더 */
    border-radius: 5px;
    margin-bottom: 20px;
}
.info-box-yeollow .info-title {
    background-color: #d3a239; /* 연두색 배경 */
    color: white;
    padding: 20px;
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.info-box-yeollow .info-content {
    padding: 20px;
    flex: 1;
}

.info-box-yeollow .info-content p::before {
    content: '\2713';
    color: #d3a239;
    font-weight: bold;
    margin-right: 10px;
}

.info-box-yeollow .info-content p {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
}

body {
    margin: 0;
    font-family: 'Noto Sans KR', 'Malgun Gothic', 'Dotum', sans-serif;
    font-size: 16px;
    background-color: #ffffff;
}

.procedure-container {
    margin: 0 auto;
    padding: 20px;
    background-color: #f5fafd;
    border-radius: 8px;
}

.procedure-container h2 {
    font-size: 24px;
    color: #2b6cb0;
    margin-bottom: 10px;
}

.procedure-container .description {
    font-size: 14px;
    color: #666666;
    margin-bottom: 30px;
}

.procedure-steps {
    display: flex;
    flex-wrap: wrap; /* 너비를 넘어가면 아래로 배치 */
    justify-content: center; /* 동그라미와 화살표를 가운데 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
    gap: 20px; /* 동그라미와 화살표 사이의 간격 */
    padding: 20px; /* 전체적인 여백 추가 */
}

.step {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid #0070a0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    color: #0070a0;
    background-color: #ffffff;
}

.step-active {
    background-color: #0070a0;
    color: #ffffff;
}

.step-completed {
    border: 2px solid #398541;
    background-color: #00ab4e;
    color: #ffffff;
}

.arrow {
    font-size: 24px;
    color: #999999;
}
.procedure-steps > div > span {
    font-size: 13px;
}






.info-container-1 {
    padding: 40px;
    background: #f6f6f6;
    margin: 0 auto;
    border-radius: 8px;
}

.info-section-1 {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #00ab4e;
    border-radius: 8px;
    overflow: hidden;
}

.info-section-left-1 {
    background-color: #00ab4e;
    padding: 20px;
    color: #fff;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.info-section-right-1 {
    background: white;
    flex: 2;
    padding: 20px;
}

.info-section-right-1 p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #00ab4e;
}

.info-section-right-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section-right-1 ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.info-section-right-1 ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00ab4e;
}

.info-gallery-1 {
    display: flex;
    justify-content: space-between;
}

.info-gallery-item-1 {
    flex: 1;
    text-align: center;
    margin: 0 10px;
}

.info-gallery-item-1 img {
    height: 90%;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.info-gallery-item-1 p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}




.info-container-2 {
    padding: 40px;
    background: #f6f6f6;
    margin: 0 auto;
    border-radius: 8px;
}

.info-section-2 {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #1d95a5;
    border-radius: 8px;
    overflow: hidden;
}

.info-section-left-2 {
    background-color: #1d95a5;
    padding: 20px;
    color: #fff;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.info-section-right-2 {
    background: white;
    flex: 2;
    padding: 20px;
}

.info-section-right-2 p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #1d95a5;
}

.info-section-right-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section-right-2 ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.info-section-right-2 ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1d95a5;
}

.info-gallery-2 {
    display: flex;
    justify-content: space-between;
}

.info-gallery-item-2 {
    flex: 1;
    text-align: center;
    margin: 0 10px;
}

.info-gallery-item-2 img {
    height: 90%;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.info-gallery-item-2 p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}



.info-container-3 {
    padding: 40px;
    background: #f6f6f6;
    margin: 0 auto;
    border-radius: 8px;
}

.info-section-3 {
    display: flex;
    margin-bottom: 30px;
    border: 1px solid #027cb5;
    border-radius: 8px;
    overflow: hidden;
}

.info-section-left-3 {
    background-color: #027cb5;
    padding: 20px;
    color: #fff;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.info-section-right-3 {
    background: white;
    flex: 2;
    padding: 20px;
}

.info-section-right-3 p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #027cb5;
}

.info-section-right-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-section-right-3 ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.info-section-right-3 ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #027cb5;
}

.info-gallery-3 {
    display: flex;
    justify-content: space-between;
}

.info-gallery-item-3 {
    flex: 1;
    text-align: center;
    margin: 0 10px;
}

.info-gallery-item-3 img {
    height: 90%;
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.info-gallery-item-3 p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: bold;
}
.container-4 {
    margin: 0 auto;
    background-color: #fff;
    padding-bottom: 20px;
}

.tabs-4 {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #000; /* 전체 탭 아래 검정 보더 */
}

.tab-item-4 {
    flex: 1;
    text-align: center;
    border-top: 1px solid #ddd; /* 상단 회색 보더 */
    border-bottom: 1px solid #000; /* 하단 검정 보더 */
    background-color: #f9f9f9;
    margin-bottom: -1px; /* 선택된 탭 아래 검정 보더와의 간격 제거 */
}

.tab-item-4.active-4 {
    border-bottom: none; /* 선택된 탭의 하단 보더 제거 */
    background-color: #fff; /* 선택된 탭의 배경색 변경 */
    border-bottom: 3px solid #fff; /* 하단에 배경색으로 강조 */
    border-top: 1px solid #027cb5;
}

.tab-link-4 {
    display: block;
    width: 100%;
    padding: 15px 0;
    color: #333;
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
}

.tab-item-4.active-4 .tab-link-4 {
    color: #2b6cb0;
}

.content-4 {
    margin-top: 20px;
}

.content-4 h3 {
    font-size: 18px;
    color: #2b6cb0;
    margin-bottom: 10px;
}

.content-4 p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-4 p strong {
    font-weight: bold;
    color: #2b6cb0;
}


.custom-h3 {
    font-size: 20px;
    font-weight: bold;
    color: #111;
    margin-bottom: 15px;
}

.custom-p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.custom-ab1 {
    background-color: #f0f7fb;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #333;
}

.custom-row {
    background-color: #ffffff;
}

.custom-td {
    padding: 15px;
    border: 1px solid #ddd;
    vertical-align: top;
    text-align: left;
    font-weight: normal;
    color: #333;
    line-height: 1.6;

    text-align: center;
    align-content: center;
}



.custom-ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    list-style-position: inside; /* 추가된 부분 */
}


.custom-ul li {
    position: relative;
    padding-left: 13px; /* 텍스트와 동그라미 사이의 간격 */
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 수정된 부분 */
    text-align: left; /* 수정된 부분 */
    list-style-position: inside; /* 추가된 부분 */
}


.custom-ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 7px;
    transform: translateY(-55%); /* 동그라미를 텍스트의 중앙에 맞추기 */
    font-size: 15px;
    color: #0070c0;
}

.violation-table {
    font-size: 12px; /* 원하는 크기로 설정 */
}

.violation-table th,
.violation-table td,
.violation-table ul,
.violation-table li,
.violation-table .blue-dot,
.violation-table .dash-list {
    font-size: inherit; /* 부모 요소의 폰트 크기를 따름 */
}

/*.custom-ul {*/
/*    list-style-type: none;*/
/*    padding-left: 0;*/
/*    margin: 0;*/
/*    list-style-position: inside; !* 추가된 부분 *!*/
/*}*/


/*.custom-ul li {*/
/*    position: relative;*/
/*    padding-left: 17px; !* 텍스트와 동그라미 사이의 간격 *!*/
/*    font-size: 15px;*/
/*    color: #666;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: flex-start; !* 수정된 부분 *!*/
/*    text-align: left; !* 수정된 부분 *!*/
/*    list-style-position: inside; !* 추가된 부분 *!*/
/*}*/


/*.custom-ul li::before {*/
/*    content: "•";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    transform: translateY(-55%); !* 동그라미를 텍스트의 중앙에 맞추기 *!*/
/*    font-size: 20px;*/
/*    color: #0070c0;*/
/*}*/


/*.custom-ul {*/
/*    list-style: none; !* 기본 리스트 스타일 제거 *!*/
/*    padding: 0; !* 기본 패딩 제거 *!*/
/*}*/

/*.custom-ul li {*/
/*    position: relative; !* li 요소에 상대 위치 지정 *!*/
/*    padding-left: 25px; !* 원과 텍스트 사이의 간격 *!*/
/*}*/

/*.custom-ul li::before {*/
/*    content: "•";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0; !* 텍스트의 첫 번째 줄에 고정 *!*/
/*    font-size: 20px;*/
/*    color: #0070c0;*/
/*    line-height: 1; !* 줄 높이를 1로 설정하여 원의 위치 고정 *!*/
/*}*/

.custom-ul .blue-dot {
    position: relative;
    padding-left: 15px; /* 텍스트와 동그라미 사이의 간격 */
    margin-bottom: 10px;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* 수정된 부분 */
    text-align: left; /* 수정된 부분 */
    list-style-position: inside; /* 추가된 부분 */
}
/* 파란색 동그라미를 원하는 리스트에만 적용 */
.custom-ul .blue-dot::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-55%); /* 동그라미를 텍스트의 중앙에 맞추기 */
    font-size: 15px;
    color: #0070c0;
}

/* - 로 시작하는 리스트 */
/* - 로 시작하는 리스트 */
.custom-ul .dash-list::before {
    content: "   - "; /* 공백 3개 추가 */
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
}


.custom-table {
    width: 100%; /* 테이블 전체 너비 */
    border-collapse: collapse;
}

.custom-table th, .custom-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.custom-table th {
    background-color: #f0f7fb;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #333;
}


.custom-table .col1-1 { width: 10%; } /* 첫 번째 열의 너비 */
.custom-table .col1-2 { width: 80%; } /* 두 번째 열의 너비 */

/* 또는 픽셀 단위로 지정 */
.custom-table .col1-1 { width: 50px; } /* 첫 번째 열의 너비를 100px로 지정 */
.custom-table .col1-2 { width: 300px; } /* 두 번째 열의 너비를 200px로 지정 */

.custom-table .col1-1, .custom-table .col1-2 {
    text-align: center;
}





/* 각 열의 너비를 비율로 지정 */
.custom-table .col1 { width: 10%; } /* 첫 번째 열의 너비 */
.custom-table .col2 { width: 20%; } /* 두 번째 열의 너비 */
.custom-table .col3 { width: 30%; } /* 세 번째 열의 너비 */
.custom-table .col4 { width: 20%; } /* 네 번째 열의 너비 */
.custom-table .col5 { width: 20%; } /* 다섯 번째 열의 너비 */

/* 또는 픽셀 단위로 지정 */
.custom-table .col1 { width: 50px; } /* 첫 번째 열의 너비를 100px로 지정 */
.custom-table .col2 { width: 80px; } /* 두 번째 열의 너비를 200px로 지정 */
.custom-table .col3 { width: 300px; } /* 세 번째 열의 너비를 300px로 지정 */
.custom-table .col4 { width: 300px; } /* 네 번째 열의 너비를 200px로 지정 */
.custom-table .col5 { width: 300px; } /* 다섯 번째 열의 너비를 200px로 지정 */

.custom-table .col2, .custom-table .col1 {
    text-align: center;
}


/* 각 열의 너비를 비율로 지정 */
.custom-table .col3-1 { width: 10%; } /* 첫 번째 열의 너비 */
.custom-table .col3-2 { width: 20%; } /* 두 번째 열의 너비 */
.custom-table .col3-3 { width: 30%; } /* 세 번째 열의 너비 */
.custom-table .col3-4 { width: 20%; } /* 네 번째 열의 너비 */
.custom-table .col3-5 { width: 20%; } /* 다섯 번째 열의 너비 */

/* 또는 픽셀 단위로 지정 */
.custom-table .col3-1 { width: 50px; } /* 첫 번째 열의 너비를 100px로 지정 */
.custom-table .col3-2 { width: 200px; } /* 두 번째 열의 너비를 200px로 지정 */
.custom-table .col3-3 { width: 300px; } /* 세 번째 열의 너비를 300px로 지정 */
.custom-table .col3-4 { width: 300px; } /* 네 번째 열의 너비를 200px로 지정 */
.custom-table .col3-5 { width: 300px; } /* 다섯 번째 열의 너비를 200px로 지정 */

.custom-table .col3-1, .custom-table .col3-2 {
    text-align: center;
}

.width100{
    width: 100%;
}

.container-2 {
    width: 100%;
    margin: 0 auto 20px auto; /* 상단 여백 제거 */
    background-color: white;
    border: 1px solid #aad9e4;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container-2 .title {
    text-align: center;
    font-size: 1.375rem  !important;
    color: #027cb5;
    background-color: #daf1f4;
    padding: 10px;
    border-radius: 8px;
    margin: 0; /* 모든 여백 제거 */
    border-bottom: 1px solid #aad9e4;
}

.construction-list {
    color: #444444;
    font-size: 15px;
    padding-left: 40px;
    counter-reset: item;
}

.construction-list > li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    list-style: none;
}

.construction-list > li:before {
    content: counter(item);
    counter-increment: item;
    color: white;
    background-color: #0096b1;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px
}

ol[type="a"] {
    list-style-type: lower-alpha;
}

.border-1{
    border: 1px solid #ddd;
}



.container-5 {
    width: 100%;
    border: 1px solid #ddd;
    border-top: 2px solid #0071c1;
    font-family: 'Arial', sans-serif;
}

.content-2 {
    padding: 10px;
    display: flex;
    align-items: center;
}

.icon-2 {
    flex-shrink: 0;
    margin-right: 15px;
}

.icon-2 img {
    margin: 20px;
    width: 50px;
    height: 50px;
}

p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.clear-back{
    border: 0 !important;
    background: #f9f9f9 !important;
}
/* 사업안내 메뉴 끝 */

/* 소개 메뉴 시작 */
.ceo-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
}

.image-section {
    flex: 0 0 30%;
    margin-right: 20px;
    position: relative;
    box-sizing: border-box;
}

.image-section-img {
    width: 100%;
    /*height: auto;*/
    height: 100%;
    border-radius: 5px;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: #f5f6f8;
    padding: 10px 0;
    font-size: 18px;
    color: #333;
}

.image-caption strong {
    font-weight: bold;
    font-size: 22px;
    color: #000;
}

.text-section {
    flex: 1;
}

.text-section h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.text-section h2 {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.text-section p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 15px;
    color: #555;
}

.text-section strong {
    color: #0078d4;
    font-weight: bold;
}














/*------------------------------kmong-----------------------------*/

.dis_box .box.eme2.r,
.dis_box .box.eme.r {
    margin-bottom: 0;
}
.dis_box .dev.half li {
    width: calc(50% - 35px);
    margin: 0;
}
.dis_box.mt20 ul.clearfix:after {
    display: none;
}
.dis_box.mt20 ul.clearfix {
    padding-left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: space-between;
    margin: 0;
}
.dis_box.mt20 ul.clearfix li.flex {
    width: 100%;
}
.dis_box .dev.r ul.clearfix li.box.green {
    width: calc(30% - 10px);
    margin: 0 0px 15px 0;
}
@media (max-width: 1650px) {
    .content {
        padding: 5px 150px 0px 150px;
        padding: 0;
        padding-top: 5px;
        max-width: 90%;
        margin: 0 auto;
    }
    .content.main {
        margin: 0;
        width: 100%;
        padding: 0;
        max-width: 100%;
    }
    .content.qwer {
        margin-top: 45px;
        padding-bottom:50px;
    }
    .test-inner {
        max-width: 80vw;
        margin: 0 auto;
        padding: 0;
    }
    .vision-dia .mid {
        max-width: 100%;
    }
}

@media (max-width: 1400px) {

    .com-top .t:after {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 38px;
        height: 3px;
        background: #027cb5;
        content: '';
    }

    .test .text-content .highlight {
        margin-left: 45%;
        display: block;
        width: 40px;
        height: 3px;
        background-color: #027cb5;
        margin-bottom: 30px;
    }


    .procedure-container .procedure-steps {
        margin: 0 auto;
        width: 90%;
    }

    /* .text-overlay {
      position: absolute;
 @     z-index: 1;
      transform: none;
      width: 100%;
      left: 0;
      padding-left: 66px;
    } */
}

@media (max-width: 1250px) {
    .level.level-4 {
        width: 100%;
    }
    .dis_box.mt20 {
        padding: 60px 15px;
    }
    .dis_box.mt20 ul.clearfix {
        padding-left: 5px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        align-content: space-between;
    }
    .clearfix:after {
        display: none;
    }
    .dis_box .dev ul {
        margin: 0;
        padding-left: 0;
    }
    .dis_box .dev.r ul.clearfix li.box.green {
        width: calc(30% - 10px);
        margin: 0 0px 15px 0;
    }
    .dis_box .dev.r:first-child {
        margin-top: -15px;
    }

    .dis_box .dev.r ul.clearfix li.box.green:nth-child(7),
    .dis_box .dev.r ul.clearfix li.box.green:nth-child(8),
    .dis_box .dev.r ul.clearfix li.box.green:nth-child(9) {
        margin-bottom: 0;
    }
}
@media (max-width: 1050px) {


    .test .text-content h2 {
        margin-right: 0;
        font-size: 24px;
        font-weight: 500;
        color: #111;
        line-height: 1.32;
        margin-bottom: 10px;
        text-align: center;
    }
    .test .text-content p {
        margin-right: 0;

        text-align: center;
        font-size: 16px;
        color: #666;
        line-height: 1.5;
    }


    .dis_box .dev.half li {
        width: 100%;
        margin: 0px 0px 15px 0;
    }
    .dis_box .dev.half li:last-child {
        margin: 0;
    }
    .vision-dia .mid li:nth-child(2) {
        margin: 0 10px;
    }
    .vision-dia .mid ul{
        padding-left:10px;
    }

}
@media (max-width: 800px) {

    .violation-table td  {
        font-size: 11px;
    }
    .violation-table th  {
        font-size: 12px;
    }
    .sub-t {
        text-align: left;
        font-size: 1.625rem;
        font-weight: 700;
        color: #111;
        line-height: 1.15;
        padding-top: 50px;
        position: relative;
        padding-left: 20px;
    }

    body {
        margin: 0;
        font-family: 'Noto Sans KR', 'Malgun Gothic', 'Dotum', sans-serif;
        font-size: 14px;
        background-color: #ffffff;
    }

    .info-section-2,
    .info-section-1,
    .info-section-3,
    .info-box-yeollow,
    .info-box-green,
    .info-box {
        display: block;
    }
    .test-inner {
        max-width: 90vw;
        flex-flow: wrap;
        height: fit-content;
    }
    .test-inner img {
        max-width: 100%;
    }
    ul.menu-padding {
        display: none;
    }
    .navbar.navbar-basic,
    .navbar.navbar-white,
    .navbar.navbar-black {
        justify-content: space-between;
        box-sizing: border-box;
    }
    .navbar.navbar-basic .view-all-btn,
    .navbar.navbar-black .view-all-btn,
    .navbar.navbar-white .view-all-btn {
        margin-left: 0;
    }
    .navbar.navbar-basic .view-all-btn img,
    .navbar.navbar-white .view-all-btn img,
    .navbar.navbar-black .view-all-btn img {
        margin-right: 0;
    }
    .view-all-btn::after {
        display: none;
    }
    #locW .inner {
        padding-right: 0;
    }
    .info-section .task-row {
        display: block;
    }
    .info-section .task-item {
        width: 100%;
    }
    .process-box {
        overflow-x: auto;
    }
    .ceo-container .content-wrapper {
        display: block;
    }
    .ceo-container .content-wrapper img.background-image,
    .ceo-container .content-wrapper .image-caption {
        display: none;
    }
    .ceo-container .content-wrapper .image-section .image-wrapper img.main-image.image-section-img {
        max-width: 100%;
    }

    .content .contents.info-section .container .box {
        display: block;
    }
    .content .dis_box.mt20 .border.green.l {
        position: relative;
        display: block;
    }
    .content .dis_box.mt20 .border.green.l .v {
        position: sticky;
        top: 150px;
        display: block;
        margin-top: 50px;
    }
    /*     .dis_box.mt20 ul.clearfix li.flex:first-child {
      position: sticky;
      top: 127px;
      z-index: 5;
  } */
    .vision-dia .mid {
        margin-bottom: 30px;
    }
    .vision-dia .mid ul.clearfix {
        display: block;
        padding: 0;
    }
    .vision-dia .mid ul.clearfix li {
        margin: 10px auto;
    }
    .vision-mid.inner {
        width: 95%;
        margin: 0 auto;
    }
    .vision-mid .exp {
        text-align: left;
    }

    .procedure-container {
        padding: 0;
    }
    .procedure-container .procedure-steps {
        margin: 0 auto;
        width: 100%;
        overflow-x: auto;
        padding: 40px 0;
        /*flex-direction: column-reverse;*/
    }
    .procedure-steps .arrow {
        display: flex;
        align-items: center; /* 세로 중앙 정렬 */
        font-size: 24px; /* 화살표 크기 */
        color: #999999;
    }

    /*.procedure-container .procedure-steps .arrow {*/
    /*    transform: rotate(90deg) scaleY(2);*/
    /*}*/
    .procedure-steps .step {
        flex: 0 1 auto;
        width: 20vw;
        height: 20vw;
        min-width: 100px;
        min-height: 100px;
        max-width: 7rem;
        max-height: 7rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .box-line .box {
        padding: 50px 10px;
    }

    /* .text-overlay {
      top: 90px;
      transform: none;
      left: 0;
      font-size: 45px;
    }*/

    /*
    .text-overlay p strong.strong-size {
      font-size: 44px;
    } */

    .dis_box .dev.r ul.clearfix li.box.green {
        width: calc(50% - 30px);
    }
    .dis_box .dev.r ul.clearfix li.box.green:nth-child(7),
    .dis_box .dev.r ul.clearfix li.box.green:nth-child(8) {
        margin-bottom: 15px;
    }
    .dis_box .dev.r ul.clearfix li.box.green:last-child {
        margin-bottom: 0;
    }
    .box-line .bg ol{
        padding-left:0;
    }
    .vision-dia .mid li:nth-child(2) {
        margin: 0 10px;
    }
    .content.info-section .process-box {
        display: block;
    }

    .content.info-section .process-box .process-item {
        display: block;
        margin-bottom: 30px;
    }
    .content.info-section .process-box .process-item::after {
        bottom: 0;
        right: 0px;
        transform: rotate(90deg) scaleY(2);
        height: 1px;
        width: 1px;
        top: 105%;
        left: calc(50% - -35px);
    }
}

@media (max-width: 600px) {
    #loc > li > a {
        padding: 0;
    }
    .info-container-3 {
        padding: 15px;
        padding-bottom: 40px;
    }
    .construction-list {
        padding-left: 10px;
        padding-right: 10px;
    }
    .content {
        max-width: 95%;
    }

    .test .text-content h2 {
        margin: 5px auto;
        width: 95%;
    }
    .box-line .bg ol {
        padding: 0;
    }
    #loc > li > a span {
        padding-left: 10px;
        font-size: 14px;
    }
    ul#loc li.rel {
        padding-left: 5px;
    }
    .tit-vision dd {
        margin-left: 0;
        padding: 1px;
        font-size: 26px;
    }

    .level.level-4 .box {
        padding: 10px;
    }
    .dis_box .dev.r ul.clearfix li.box.green {
        width: 100%;
        margin: 0 0 15px 0;
    }
}
@media (max-width: 500px) {
    h2.sub-t {
        font-size: 25px;
    }

    .info-container-1,
    .info-container-2,
    .info-container-3 {
        padding: 40px 0;
    }
    .test .test-inner .text-content p {
        margin: 10px 0;
    }
    .vision-dia .mid ul {
        margin: 0;
    }
    .dis_box {
        padding: 60px 0;
    }

    .dis_box.mt20 ul.clearfix {
        padding: 5px;
    }
    .dis_box.mt20 ul.clearfix .dev.r ul.clearfix {
        padding-left: 0px;
    }
    .dis_box .dev li {
        width: calc(38% - 15px);
    }
    .title span {
        font-size: 1.1em;
    }

    /* .text-overlay p strong {
      font-size: 28px;
    }
    .text-overlay p strong.strong-size {
      font-size: 33px;
    } */
    .level.level-4 .box {
        padding: 5px;
    }
}

@media (max-width: 400px) {
    .dis_box .r {
        padding-left: 0px;
        margin-left: 10px;
    }
    .dis_box.mt20 ul.clearfix .dev.r ul.clearfix {
        margin: 0;
        padding: 0;
        width: 100%;
        display: block;
    }

    .dis_box.mt20 ul.clearfix .dev.r ul.clearfix li.box.green,
    .dis_box.mt20 ul.clearfix .dev.r ul.clearfix li.box.navy {
        width: calc(100% - 10px);
        margin: 10px 0;
        padding: 0 5px;
    }
    .navbar.navbar-basic,
    .navbar.navbar-white,
    .navbar.navbar-black {
        padding: 10px;
    }

    /* .text-overlay p strong {
      font-size: 20px;
    }
    .text-overlay p strong.strong-size {
      font-size: 30px;
    } */

    .navbar img {
        margin-right: 0;
    }
    #loc > li > a span {
        padding-left: 10px;
        font-size: 12px;
    }
    ul#loc li.rel {
        padding-left: 0px;
    }
    .info-section .task-box {
        padding: 5px;
    }
    .content.info-section {
        overflow-x: auto;
    }
}


/* mobile navbar */
ol,
ul {
    list-style: none;
    padding: 0;
}
a {
    text-decoration: none;
}

ul.m-nav-x {
    background-color: #027cb5;
    color: white;
    line-height: 1;
    font-size: 15px;
    position: relative;
    height: calc(100%);
    /* top: 5rem; */
    margin: 0;
    display:block;
}
ul.m-nav-x.active {
    background-color: white;
}
ul.m-nav-x > li > a {
    font-size: 1.18em;
    font-weight: 400;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
}
ul.m-nav-x > li > a > span {
    width: 140px;
    display: block;
    padding: 1.3rem 0 1.3rem 1.3rem;
    font-weight: 700;
    color: white;
    font-size: 17px;
}
ul.m-nav-x,
ul.m-nav-x ul {
    list-style: none;
}
ul.m-nav-x.opend::before {
    position: absolute;
    left: 135px;
    width: calc(100% - 135px);
    height: 100%;
    background: #fff;
    content: "";
    z-index: 1;
    margin: 0;
}

ul.m-nav-x .depth {
    position: absolute;
    left: 140px;
    top: 0;
    width: calc(100% - 140px);
    background: #fff;
    display: none;
    z-index: 3;
    color: #333;
    font-weight: 400;
    display: none;
    height: 100%;
    overflow-y: auto;
}
ul.m-nav-x li ul.depth li {
    position: relative;
    border-bottom: 1px solid #ddd;
    margin: 0 1em;
}
ul.m-nav-x li ul.depth li > a {
    font-size: 1rem;
    padding: 1em 0;
    font-weight: 700;
    color: #027cb5 !important;
    position: relative;
    box-sizing: border-box;
    display: block;
}

ul.m-nav-x ul.depth li a:after {
    position: absolute;
    right: 10px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #666;
    border-left: 2px solid #666;
    vertical-align: middle;
    position: absolute;
    top: 50%;
    content: "";
    transform: rotate(-135deg);
    margin-top: -10px;
    background: none;
    left: auto;
}
ul.m-nav-x ul.depth li a.active:after{
    transform: rotate(45deg);
    margin-top: -5px;
    border-color: #027cb5;
}
div.full {
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    position: absolute;
}
div.logo-box {
    position: relative;
    width: 100%;
    height: 70px;
    background:white;
    border-bottom: 1px solid #ddd;
}

div.logo-box .logo {
    position: absolute;
    left: 0.63rem;
    top: 50%;
    transform: translateY(-50%);
    width: 201px;
    height: 50px;
    background: url("/static/img/logo_final.png")
    center center no-repeat;
    background-size: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-indent: -999px;
}
div.logo-box .logo a {
    width: 100%;
    height: 100%;
}
div.full .close {
    position: absolute;
    right: 0.938rem;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    overflow: hidden;
    text-indent: -999px;
    display: block;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
}
div.full .close:before,
div.full .close:after {
    position: absolute;
    left: 50%;
    content: " ";
    height: 100%;
    width: 2px;
    background-color: #333;
    top: 0;
}
div.full .close:before {
    transform: rotate(45deg);
}
div.full .close:after {
    transform: rotate(-45deg);
}
ul.m-nav-x .depth2 > li:before {
    position: absolute;
    left: -15px;
    top: 5px;
    width: 3px;
    height: 3px;
    content: "";
    background: #027cb5;
}
ul.m-nav-x li ul.depth2 {
    font-size: 15px;
    color: #999;
    margin-bottom: 15px;
    line-height: 1;
    display: none;
}
ul.m-nav-x li ul.depth2 li {
    border: none;
    position: relative;
    padding-left: 0.53em;
    margin-top: 15px;
}
ul.m-nav-x li ul.depth2 li a {
    margin-left: -15px;
    font-size: 13px;
    color: #999 !important;
    margin-bottom: 0px;
    line-height: 1;
    padding: 0;
    font-weight: 400;
}
ul.m-nav-x li ul.depth2 li:first-child {
    margin-top: 0;
}
ul.m-nav-x .depth2 li a:after {
    display: none;
}

/*ul.m-nav-x li a::after{*/
/*    display: none;*/
/*}*/
ul.m-nav-x li a {
    padding: 0;
}
ul.m-nav-x li.active {
    background: white;
}
ul.m-nav-x  li.active > a > span{
    color: black;
}