@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    line-height: normal;
    word-break: keep-all;
}
* {
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
    text-decoration: none;
}

img.error {
    width: 100%;
}

.wrap {
    /* max-width: 1920px; */
    width: 100%;
    overflow: auto; /* 스크롤을 허용 */
    transform-origin: 0 0;
    margin: 0 auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3 {
    color: #1c2a75;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}
p, a {
    font-family: 'Pretendard-Regular';
}

.wrap h1 {
    font-size: 80px;
}

.wrap h2 {
    font-size: 60px;
}

.wrap h3 {
    font-size: 40px;
}

.blue {
    background-color: #1c2a75 !important;
}

body::-webkit-scrollbar {
    width: 0;
    height: 10px;
}
body::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 12px 12px 12px 12px;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

#header {
    position: fixed;
    width: 100%;
    /* max-width: 1920px; */
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    background-color: white;
    padding: 23px 60px;
    left: 50%;
    transform: translate(-50%, 0);
}

#header .nav {
    display: flex;
    width: 80%;
    justify-content: space-between;
}

#header .nav .gnb {
    display: flex;
    align-items: center;
    font-size: 20px;
}

#header .nav .gnb li {
    margin: 0 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header .nav .gnb>li>a {
    color: black;
    display: block;
    height: 46px;
    line-height: 46px;
}

#header .nav .sns {
    width: 288px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* #header .nav .sns img {
    margin-right: 50px;
} */

#header .nav .sns_w {
    display: none;
}

/* #header .nav .sns_w img {
    margin-right: 50px;
} */

#header .nav .lang {
    display: flex;
    align-items: center;
    font-size: 20px;
}

#header .nav .lang a {
    /* color: rgb(255, 255, 255, 0.4); */
    color: #c8c8c8;
}

#header .nav .lang a.slct {
    /* color: white; */
    color: black;
}

#header .nav .lang a:first-child {
    margin-right: 20px;
}

.hamburger {
    display: none;
}

.sns.mobile {
    display: none;
}

.sns_w.mobile {
    display: none;
}

.side-panel {
    display: none;
}

.lnb li a {
    color: #1c2a75 !important;
}

/* 기본 스타일 설정 */
.gnb > li {
    position: relative;
}

.lnb {
    position: absolute;
    top: 100%;
    left: -60px;
    background: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    transform: translateY(-20px);
    z-index: 10;
    pointer-events: none; /* 마우스 이벤트를 차단하여 display:none과 유사한 효과 */
    padding: 10px 0; /* 서브 메뉴 전체에 여유 공간 추가 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 그림자 효과 추가 */
    width: 200px;
}

.gnb > li:hover .lnb,
.gnb > li:focus-within .lnb {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lnb li {
    text-align: center; /* 텍스트 가운데 정렬 */
    padding: 15px 20px; /* 각 메뉴 항목에 여유 공간 추가 */
    list-style: none; /* 리스트 스타일 제거 */
    line-height: 1.5; /* 텍스트 간 간격 늘리기 */
    padding: 0;
}

.lnb li a {
    display: block; /* 링크를 블록 요소로 설정 */
    padding: 15px 20px; /* 각 메뉴 항목에 여유 공간 추가 */
    text-decoration: none; /* 링크 밑줄 제거 */
    color: black; /* 텍스트 색상 설정 */
}

.lnb li a:hover {
    background-color: #f0f0f0; /* 마우스 오버 시 배경색 변경 */
}

.gnb li:nth-child(4) .lnb {
    left: -90px;
}

.gnb li:nth-child(5) .lnb {
    left: -45px;
}

.wrap .sub_nav.en ul li {
    width: 250px !important;
}

.wrap .sub_nav.en ul li.slct:after {
    width: 250px !important;
}

.main .section1, .section2, .section3, .section4, .section5, .section6 {
    width: 100%;
}

.main .section1 {
    position: relative;
    margin-top: 160px;
}

.main .section1 .banner {
    position: relative;
    overflow: hidden;
    padding: 60px 250px 313px;
}

.main .section1 .banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/main_img01.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    animation: zoomOut 3s ease-in-out 1;
    animation-fill-mode: forwards;
}

.main .section1 .banner h2 {
    color: white;
    font-size: 52px;
}

.main .section1 h1 {
    margin-left: 250px;
    margin-bottom: 50px;
}

.main .section1 a img {
    position: absolute;
    right: 125px;
    top: 95px;
}

.main .section2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 130px 0;
}

.main .section2 .left {
    padding-left: 250px;
}

.main .section2 .left h2 {
    line-height: normal;
}

.main .section2 .left p:nth-child(2) {
    font-size: 24px;
    margin: 55px 0 70px;
}

.main .section2 .left p:nth-child(3) {
    font-size: 18px;
    line-height: 28px;
    color: #b0b0b0;
    margin-bottom: 60px;
}

.main .section2 .left button {
    background-color: black;
    color: white;
    font-size: 18px;
    line-height: 28px;
    padding: 15px 0;
    width: 198px;
    border-radius: 31.5px;
    border: none;
    cursor: pointer;
}

.main .section3 {
    padding: 164px 0 173px 977px;
    float: right;
    position: relative;
    overflow: hidden;
}

.main .section3:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/main_img5.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.2);
    transition: transform 3s ease-in-out;
}

.section3.animate::before {
    transform: scale(1);
}


.main .section3 h2 {
    color: white;
    line-height: normal;
}

.main .section3 p {
    font-size: 24px;
    line-height: 28px;
    color: white;
    margin: 45px 0;
}

.main .section3 button {
    background-color: black;
    font-size: 18px;
    line-height: 28px;
    color: white;
    padding: 15px 0;
    width: 198px;
    border-radius: 31.5px;
    border: none;
    cursor: pointer;
}

.main .section4 {
    background-color: #f1f2f8;
}

.main .section4 .top {
    display: flex;
    padding: 0 250px;
    justify-content: space-between;
}

.main .section4 .top .buttons {
    margin-top: 208px;
}

.main .section4 .top .title {
    margin-top: 130px;
}

.main .section4 .top .title h2 {
    line-height: normal;
    margin-bottom: 20px;
}

.main .section4 .top .title p {
    font-size: 24px;
    line-height: normal;
}

.main .section4 .buttons button {
    width: 150px;
    font-size: 18px;
    line-height: normal;
    background-color: transparent;
    border: none;
    padding: 16px 0;
    cursor: pointer;
}

.main .section4 .buttons button:first-child {
    margin-right: 20px;
}

.main .section4 .buttons button.slct {
    color: white;
    background-color: black;
}

.main .section4 .icevan {
    height: 580px;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.main .section4 .icevan-c {
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .section4 .icevan-c .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
}

.main .section4 .icevan-c .item:first-child {
    margin-right: 300px;
}

.main .section4 .icevan-c .item img {
    width: 100%;
}

.main .section4 .icevan-c .item p {
    color: #1c2a75;
    margin-bottom: 15px;
}
.main .section4 .icevan-c .item b {
    font-weight: bold;
}

.main .section5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 255px;
    margin-top: 135px;
}

.main .section5 h3 {
    line-height: normal;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 40px;
    color: #1c2a75;
}

.main .section5 p {
    font-size: 24px;
    line-height: normal;
    color: #cecece;
    /* margin: 15px 0 65px; */
}

.main .section5 .imgs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 65px;
}

.main .section5 .imgs p:first-child img {
    margin-bottom: 50px;
}

.main .section5 .imgs p:nth-child(3) img {
    margin-bottom: 50px;
}

.main .section5 .imgs p:first-child span {
    bottom: 45px;
}

.main .section5 .imgs p:nth-child(3) span {
    bottom: 45px;
}

.main .section5 .imgs p:nth-child(2) {
    padding-top: 35px;
}

.main .section5 .imgs p:nth-child(2) img {
    margin-top: 50px;
}

.main .section5 .imgs p:nth-child(2) span {
    top: 5px;
}

.main .section5 .imgs p:first-child span.en {
    bottom: 70px;
}

.main .section5 .imgs p:nth-child(3) span.en {
    bottom: 70px;
}


.main .section5 .imgs p {
    display: flex;
    flex-direction: column;
    color: black;
    position: relative;
}

.main .section5 .imgs p span {
    font-size: 40px;
    line-height: normal;
    color: #b5b7bf;
    font-family: "Montserrat", sans-serif;
    position: absolute
}

.main .section6 {
    display: flex;
    justify-content: space-between;
    padding: 0 255px;
    margin: 215px 0 155px;
}

.main .section6 h2 {
    line-height: normal;
}

.main .section6 .buttons button {
    width: 270px;
    background-color: transparent;
    border: none;
    border-top: 4px solid #dbdee7;
    font-size: 17px;
    line-height: normal;
    text-align: left;
    padding: 0 20px;
    cursor: pointer;
}

.main .section6 .buttons button .icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.main .section6 .buttons a:first-child button {
    margin-right: 30px;
}

.sub01 #header {
    background-color: rgb(0, 0, 0, 0.2);
}

.sub01 #header .gnb>li>a {
    color: white !important;
}

.sub01 #hedaer .lnb>li>a {
    color: #1c2a75 !important;
}

.sub01 #header .sns {
    display: none;
}

.sub01 #header .sns_w {
    width: 288px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub01 #header .nav .lang a {
    color: rgb(255, 255, 255, 0.4);
}

.sub01 #header .nav .lang a.slct {
    color: white;
}

.sub01 .container .top {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 300px;
}

.sub01 .container .top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/sub01_top.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    animation: zoomOut 3s ease-in-out 1;
    animation-fill-mode: forwards;
}

.sub01 .container .top h1 {
    font-family: 'Pretendard-Regular';
    font-size: 55px;
    line-height: 43px;
    letter-spacing: -0.01em;
    color: white;
    margin-left: 250px;
}

.sub01 .container .top .sub_nav {
    width: 100%;
    margin-top: 40px;
}

.sub01 .container .top .sub_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 250px;
    border-top: 4px solid rgb(255, 255, 255 , 0.4);
}

.sub01 .container .top .sub_nav ul li {
    padding: 40px 0;
    width: 240px;
    text-align: center;
}

.sub01 .container .top .sub_nav ul li.slct {
    position: relative;
}

.sub01 .container .top .sub_nav ul li.slct:after {
    position: absolute;
    content: '';
    display: block;
    width: 240px;
    height: 4px;
    background-color: white;
    top: -4px;
}


.sub01 .container .top .sub_nav ul li a {
    color: white;
    font-size: 21px;
}

.sub01 .container .section1 {
    margin-top: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 250px;
}

.sub01 .container .section1 .title {
    font-family: 'Pretendard-Regular';
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub01 .container .section1 .title:before {
    content: '';
    display: block;
    width: 74px;
    height: 31px;
    background-image: url('/img/sub_title_icon.png');
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

#sub0101 .container .section1:after {
    content: '';
    display: block;
    width: 551px;
    height: 371px;
    background-image: url('/img/sub0101_img01.png');
    position: absolute;
    right: 15%;
    top: 55%;
    z-index: -1;
}

#sub0101 .container .section1 p:nth-child(2) {
    font-size: 46px;
    line-height: 55px;
    font-weight: bold;
    margin: 185px 0 45px;
}

#sub0101 .container .section1 p:nth-child(3) {
    font-size: 23px;
    color: #585858;
}

#sub0101 .container .section2 {
    background-image: url('/img/sub0101_img02.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 55px;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 145px 250px 215px;
}

#sub0101 .container .section2 h1 {
    font-family: 'Pretendard-Regular';
    font-size: 60px;
    font-weight: bold;
    color: white;
}

#sub0101 .container .section2 p:nth-child(2) {
    font-size: 29px;
    color: white;
    font-weight: bold;
    margin: 35px 0 25px;
}

#sub0101 .container .section2 p:nth-child(3) {
    font-size: 21px;
    line-height: 31px;
    color: white;
}

#sub0101 .container .section3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 135px 250px 150px;
}

#sub0101 .container .section3 h1 {
    color: black;
    font-size: 40px;
}

#sub0101 .container .section3 .buttons {
    display: flex;
    margin-top: 60px;
}

#sub0101 .container .section3 .buttons p {
    color: #747474;
    font-size: 26px;
    margin-right: 45px;
    cursor: pointer;
}

#sub0101 .container .section3 .buttons p.slct {
    color: #3a369d;
}

#sub0101 .container .section3 .area {
    display: flex;
    margin-top: 95px;
    width: 100%;
}

#sub0101 .container .section3 .area .left {
    margin-right: 150px;
}

#sub0101 .container .section3 .area .left .title {
    font-family: 'Pretendard-Regular';
    font-weight: 600;
    font-size: 75px;
    color: #06008b;
    margin-bottom: 45px;
}

#sub0101 .container .section3 .area .right {
    display: flex;
}

#sub0101 .container .section3 .area .right .year {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    font-weight: bold;
    margin-right: 75px;
}

#sub0101 .container .section3 .area .right .year b {
    margin-bottom: 90px;
}

#sub0101 .container .section3 .area .right .year b:last-child {
    margin-bottom: 0;
}

#sub0101 .container .section3 .area .right .content {
    display: flex;
    flex-direction: column;
    font-size: 17px;
    color: #585858;
}

#sub0101 .container .section3 .area.y00 .right .content p {
    line-height: 31px;
    margin-bottom: 95px;
    white-space: nowrap;
}

#sub0101 .container .section3 .area.y00 .right .content p:first-child {
    margin-bottom: 65px;
}

#sub0101 .container .section3 .area.y00 .right .content p:last-child {
    margin-bottom: 0;
}

#sub0101 .container .section3 .area.y10 .right .content p {
    line-height: 31px;
    margin-bottom: 65px;
    white-space: nowrap;
}

#sub0101 .container .section3 .area.y10 .right .content p:nth-child(5) {
    margin-bottom: 95px;
}

#sub0101 .container .section3 .area.y20 .right .content p {
    line-height: 31px;
    margin-bottom: 95px;
    white-space: nowrap;
}

#sub0101 .container .section3 .area.y20 .right .content p:nth-child(2) {
    margin-bottom: 65px;
}
#sub0101 .container .section3 .area.y20 .right .content p:nth-child(8) {
    margin-bottom: 65px;
}
#sub0101 .container .section3 .area.y20 .right .content p:nth-child(9) {
    margin-bottom: 0;
}

#sub0102 .section2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    width: 100%;
}

#sub0102 .section3 {
    display: flex;
    padding: 0 255px;
    justify-content: space-between;
    margin: 75px 0 180px;
}

#sub0102 .section3 .left {
    display: flex;
    flex-direction: column;
    padding-left: 25px;
}

#sub0102 .section3 .left p:first-child {
    font-size: 28px;
    color: #2641df;
    font-weight: bold;
}

#sub0102 .section3 .left p:last-child {
    font-size: 18px;
    color: #747474;
}

#sub0102 .section3 .right {
    display: flex;
    justify-content: space-between;
    padding-right: 25px;
}

#sub0102 .section3 .right .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    margin-left: 25px;
}

#sub0102 .section3 .right .content p {
    padding: 12px 0;
}

#sub0102 .section3 .right .content p:first-child {
    background-color: #f8f8f8;
    width: 223px;
    text-align: center;
}

#sub0103 .section2 {
    display: flex;
    align-items: center;
    padding: 0 250px;
    margin: 100px 0 95px;
}

#sub0103 .section2 .right {
    margin-left: 70px;
}

#sub0103 .section2 .right p:first-child {
    font-size: 26px;
    background-color: #2d3a7e;
    color: white;
    width: 480px;
    padding: 15px 30px;
    margin-bottom: 35px;
}

#sub0103 .section2 .right p:first-child:before {
    display: none;
}

#sub0103 .section2 .right p {
    font-size: 22px;
    line-height: 37px;
    color: #585858;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

#sub0103 .section2 .right p:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #2d3a7e;
    border-radius: 50%;
    margin-right: 15px;
}

#sub0103 .section3 {
    padding: 0 250px;
    margin-bottom: 200px;
    display: flex;
}

#sub0103 .section3 p {
    font-size: 25px;
    font-weight: bold;
    color: white;
    vertical-align: baseline;
    margin: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#sub0103 .section3 .slide1 {
    display: flex;
    /* width: 2000px; */
    width: 2000px;
    height: 790px;
    background-image: url('/img/sub0103_slide011.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    transition: all 0.5s ease;
    z-index: 10;
    align-items: flex-end;
    margin-right: 5px;
    overflow: hidden;
}
#sub0103 .section3 .slide2 {
    display: flex;
    width: 20%;
    height: 790px;
    background-image: url('/img/sub0103_slide0222.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease;
    z-index: 20;
    align-items: flex-end;
    margin-right: 5px;
    overflow: hidden;
}
#sub0103 .section3 .slide3 {
    display: flex;
    width: 20%;
    height: 790px;
    background-image: url('/img/sub0103_slide033.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease;
    z-index: 30;
    align-items: flex-end;
    margin-right: 5px;
    overflow: hidden;
}
#sub0103 .section3 .slide4 {
    display: flex;
    width: 20%;
    height: 790px;
    background-image: url('/img/sub0103_slide044.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease;
    z-index: 40;
    align-items: flex-end;
    margin-right: 5px;
    overflow: hidden;
}
#sub0103 .section3 .slide5 {
    display: flex;
    width: 20%;
    height: 790px;
    background-image: url('/img/sub0103_slide055.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease;
    z-index: 50;
    align-items: flex-end;
    overflow: hidden;
}
#sub0103 .section3 .slide6 {
    display: flex;
    width: 20%;
    height: 790px;
    background-image: url('/img/sub0103_slide0666.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease;
    z-index: 60;
    align-items: flex-end;
    margin-right: 5px;
    overflow: hidden;
}

#sub0103 .section3 .slide2:hover {
    width: 5000px;
}
#sub0103 .section3 .slide3:hover {
    width: 5000px;
}
#sub0103 .section3 .slide4:hover {
    width: 5000px;
}
#sub0103 .section3 .slide5:hover {
    width: 5000px;
}
#sub0103 .section3 .slide6:hover {
    width: 5000px;
}

#sub0104 .section2 {
    padding: 0 250px;
    margin: 70px 0 100px;
}

#sub0104 .section2 .buttons {
    display: flex;
    align-items: center;
}

#sub0104 .section2 .buttons .bar {
    display: block;
    width: 4px;
    height: 29px;
    margin: 0 65px;
    background-color: #dbdee7;
}

#sub0104 .section2 .buttons p {
    font-size: 22px;
    color: #747474;
}

#sub0104 .section2 .buttons p.on {
    color: #3a369d;
}

#sub0104 .section2 .cert {
    display:  flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

#sub0104 .section2 .cert .c_box {
    width: 330px;
    height: 400px;
    border: 1px solid #cfcfcf;
    display:  flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 30px 0;
}

#sub0104 .section2 .cert .c_box:last-child {
    border: none;
}

#sub0104 .section2 .cert .c_box .img {
    display: flex;
    align-items: center;
    height: 100%;
}

#sub0104 .section2 .cert .c_box p {
    font-size: 18px;
}

#sub0104 .section2 .patent {
    display:  flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

#sub0104 .section2 .patent .p_box {
    width: 330px;
    height: 400px;
    border: 1px solid #cfcfcf;
    display:  flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 30px 0;
}

#sub0104 .section2 .patent .p_box:last-child {
    border: none;
}

#sub0104 .section2 .patent .p_box:nth-last-child(2) {
    border: none;
}

#sub0104 .section2 .patent .p_box p {
    font-size: 18px;
    text-align: center;
}

#sub0105 .section2 {
    padding: 0 250px;
    display: flex;
    margin: 95px 0 165px;
}

#sub0105 .section2 .map {
    margin-right: 120px;
}

#sub0105 .section2 .right .title {
    font-size: 32px;
    font-weight: bold;
}

#sub0105 .section2 .right .title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: #dbdee7;
    margin: 30px 0 65px;
}

#sub0105 .section2 .right .content {
    margin-bottom: 40px;
}

#sub0105 .section2 .right .content:last-child {
    margin-bottom: 0;
}

#sub0105 .section2 .right .content p:first-child {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 13px;
}
#sub0105 .section2 .map.mobile {
    display: none;
}

#sub0105 .section2 .right .content p:last-child {
    color: #747474;
}

#sub0105 .section2 .right .content:nth-child(2) p:first-child:before {
    content: '';
    display: block;
    width: 12px;
    height: 17px;
    background-image: url('/img/sub0105_icon01.png');
    background-repeat: no-repeat;
    margin-right: 14px;
}
#sub0105 .section2 .right .content:nth-child(3) p:first-child:before {
    content: '';
    display: block;
    width: 13px;
    height: 15px;
    background-image: url('/img/sub0105_icon02.png');
    background-repeat: no-repeat;
    margin-right: 13px;
}
#sub0105 .section2 .right .content:nth-child(4) p:first-child:before {
    content: '';
    display: block;
    width: 14px;
    height: 15px;
    background-image: url('/img/sub0105_icon03.png');
    background-repeat: no-repeat;
    margin-right: 12px;
}
#sub0105 .section2 .right .content:nth-child(5) p:first-child:before {
    content: '';
    display: block;
    width: 15px;
    height: 12px;
    background-image: url('/img/sub0105_icon04.png');
    background-repeat: no-repeat;
    margin-right: 12px;
}

.sub02 #header {
    background-color: rgb(0, 0, 0, 0.2);
}

.sub02 #header .gnb>li>a {
    color: white !important;
}

.sub02 #hedaer .lnb>li>a {
    color: #1c2a75 !important;
}

.sub02 #header .sns {
    display: none;
}

.sub02 #header .sns_w {
    width: 288px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub02 #header .nav .lang a {
    color: rgb(255, 255, 255, 0.4);
}

.sub02 #header .nav .lang a.slct {
    color: white;
}

.sub02 .container .top {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 300px;
}

.sub02 .container .top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/sub02_top.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    animation: zoomOut 3s ease-in-out 1;
    animation-fill-mode: forwards;
}

.sub02 .container .top h1 {
    font-family: 'Pretendard-Regular';
    font-size: 55px;
    line-height: 43px;
    letter-spacing: -0.01em;
    color: white;
    margin-left: 250px;
}

.sub02 .container .top .sub_nav {
    width: 100%;
    margin-top: 40px;
}

.sub02 .container .top .sub_nav ul {
    display: flex;
    justify-content: space-between;
    padding: 0 250px;
    border-top: 4px solid rgb(255, 255, 255 , 0.4);
}

.sub02 .container .top .sub_nav ul li {
    padding: 40px 0;
    width: 240px;
    text-align: center;
}

.sub02 .container .top .sub_nav ul li.slct {
    position: relative;
}

.sub02 .container .top .sub_nav ul li.slct:after {
    position: absolute;
    content: '';
    display: block;
    width: 240px;
    height: 4px;
    background-color: white;
    top: -4px;
}


.sub02 .container .top .sub_nav ul li a {
    color: white;
    font-size: 21px;
}

.sub02 .container .section1 {
    margin-top: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 250px;
}

.sub02 .container .section1 .title {
    font-family: 'Pretendard-Regular';
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub02 .container .section1 .title:before {
    content: '';
    display: block;
    width: 74px;
    height: 31px;
    background-image: url('/img/sub_title_icon.png');
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.sub02 .container .section1 p {
    font-size: 23px;
    line-height: 28px;
    color: #585858;
    margin-top: 25px;
}

.sub02 .container .section1 .prod_nav {
    width: 80%;
    margin-top: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #d4d4d4;
}

.sub02 .container .section1 .prod_nav ul {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.sub02 .container .section1 .prod_nav ul li {
    /* width: 175px; */
    width: 100px;
    text-align: center;
    /* padding-bottom: 30px;
    border-bottom: 2px solid #1c2a75; */
}

.sub02 .container .section1 .prod_nav ul li a {
    color: #747474;
}

.sub02 .container .section1 .prod_nav ul li.slct a {
    color: #1c2a75;
}

.sub02 .container .section1 .prod_nav ul li.slct {
    position: relative;
}

.sub02 .container .section1 .prod_nav ul li.slct:after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: #1c2a75;
    bottom: -32px;
    position: absolute
}

.sub02#sub0202A .container .section1 .prod_nav {
    width: 55%;
}

.sub02#sub0202A .container .section1 .prod_nav ul li {
    width: 135px;
}

.sub02#sub0202A .container .section1 .prod_nav ul li.slct:after {
    width: 135px;
}

#sub0201 .container .section2 {
    margin-top: 70px;
    background-image: url('/img/sub0201_img01.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 130px 250px 115px;
}

#sub0201 .container .section2 h1, h3 {
    color: white;
}

#sub0201 .container .section2 h1 {
    margin-bottom: 80px;
}

#sub0201 .container .section2 p {
    font-size: 24px;
    color: #d6d6d6;
}

#sub0201 .container .section2 p {
    margin-bottom: 20px;
}

#sub0201 .container .section2 p:last-child {
    margin-bottom: 0;
}


#sub0201 .container .section3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    padding: 120px 250px 65px;
    gap: 30px;
}

#sub0201 .container .section3 .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 330px;
    margin-bottom: 70px;
}

#sub0201 .container .section3 .item.shift_left {
    margin-right: auto;
    margin-left: 33px;
}

#sub0201 .container .section3 .item.shift_left.right {
    margin-right: 0;
}

#sub0201 .container .section3 .item .color {
    display: flex;
    margin-top: 17px;
}

#sub0201 .container .section3 .item .color div {
    display: block;
    width: 20px;
    height: 20px;
}

#sub0201 .container .section3 .item .color div:first-child {
    background-color: #020202;
    margin-right: 4px;
}

#sub0201 .container .section3 .item .color div:nth-child(2) {
    background-color: #862627;
    margin-right: 4px;
}

#sub0201 .container .section3 .item .color div:nth-child(3) {
    background-color: #2c7ba8;
    margin-right: 4px;
}

#sub0201 .container .section3 .item .color div:last-child {
    background-color: #ecb06b;
}

#sub0201 .container .section3 .item .color div.white {
    background-color: white;
    border: 1px solid #221e98;
}

#sub0201 .container .section3 .item > p {
    font-size: 22px;
    margin: 12px 0 17px;
    color: black;
}

#sub0201 .container .section3 .item .tags {
    display: flex;
}

#sub0201 .container .section3 .item .tags.en {
    display: flex;
    flex-wrap: wrap;
}

#sub0201 .container .section3 .item .tags.en p:last-child {
    margin-right: 0;
    margin-top: 10px;
}

#sub0201 .container .section3 .item .tags p {
    font-size: 16px;
    color: #747474;
    border: 1px solid #e2e2f0;
    padding: 4px 9px;
    margin-right: 10px;
}

#sub0201 .container .section3 .item .tags p:first-child {
    padding: 4px 13px;
}

#sub0201 .container .section3 .item .tags p:last-child {
    margin-right: 0;
}

#sub0201A .container .section2 {
    display: flex;
    align-items: center;
    padding: 0 250px;
    margin-top: 95px;
}

#sub0201A .container .section2 .content {
    margin-right: 135px;
}

#sub0201A .container .section2 .content h3 {
    font-size: 48px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
    white-space: nowrap;
}

#sub0201A .container .section2 .content h3:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 35px;
}

#sub0201A .container .section2 .content > p {
    font-size: 26px;
    color: #181818;
    margin-bottom: 20px;
}

#sub0201A .container .section2 .content .color {
    display: flex;
}

#sub0201A .container .section2 .content .color div {
    display: block;
    width: 25px;
    height: 25px;
}

#sub0201A .container .section2 .content .color div.white {
    background-color: white !important;
    border: 1px solid #2e44bb;
}

#sub0201A .container .section2 .content .color div:first-child {
    background-color: #020202;
    margin-right: 5px;
}

#sub0201A .container .section2 .content .color div:nth-child(2) {
    background-color: #862627;
    margin-right: 5px;
}
#sub0201A .container .section2 .content .color div:nth-child(3) {
    background-color: #2c7ba8;
    margin-right: 5px;
}
#sub0201A .container .section2 .content .color div:last-child {
    background-color: #ecb06b;
}

#sub0201A .container .section2 .content .text {
    margin-top: 45px;
    font-size: 18px;
    line-height: 35px;
    color: #333333;
    white-space: nowrap;
}

#sub0201A .container .section2 .content .text > p {
    margin-bottom: 10px;
}

#sub0201A .container .section2 .imgs {
    display: flex;
}

#sub0201A .container .section2 .imgs .sub_img {
    margin-left: 35px;
}

#sub0201A .container .section2 .imgs .sub_img img:first-child {
    margin-bottom: 10px;
}

#sub0201A .container .section3 {
    display: flex;
    padding: 105px 250px 85px;
    background-color: #f0f4fc;
    justify-content: space-between;
    margin-top: 80px;
}

#sub0201A .container .section3 .content {
    position: relative;
}

#sub0201A .container .section3 .content h3 {
    color: #88a4b4;
    position: absolute;
    bottom: 80px;
    font-weight: 500;
}

#sub0201A .container .section3 .content p:nth-child(3) {
    color: #221e98;
    font-weight: bold;
    font-size: 28px;
    margin: 60px 0 15px;
}

#sub0201A .container .section3 .content p:last-child {
    font-size: 20px;
    color: #808080;
}

#sub0201A .container .section4 {
    padding: 0 250px;
    margin-top: 85px;
}

#sub0201A .container .section4 p {
    font-size: 35px;
    font-weight: 500;
    color: #1c2a75;
    margin-bottom: 40px;
}


#sub0201A .container .section4 p:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 15px;
}

#sub0201A .container .section5 {
    margin-top: 125px;
    padding: 0 250px 190px;
    display: flex;
    justify-content: space-between;
}

#sub0201A .container .section5 p {
    font-size: 35px;
    font-weight: 500;
    color: #1c2a75;
    margin-bottom: 40px;
}


#sub0201A .container .section5 p:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 15px;
}

#sub0201A .container .section5 .imgs img {
    margin-left: 30px;
}

#sub0202 .container .section2 {
    margin-top: 70px;
    background-image: url('/img/sub0202_img01.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 250px 85px;
}

#sub0202 .container .section2 h1, h3 {
    color: white;
}

#sub0202 .container .section2 h1 {
    margin-bottom: 45px;
}

#sub0202 .container .section2 p {
    font-size: 24px;
    color: #d6d6d6;
}

#sub0202 .container .section2 p {
    margin-bottom: 20px;
}

#sub0202 .container .section2 p:last-child {
    margin-bottom: 0;
}

#sub0202 .container .section3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 120px 250px 65px;
    gap: 30px;
}

#sub0202 .container .section3 .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 330px;
    margin-bottom: 70px;
}

#sub0202 .container .section3 .item p {
    font-size: 14px;
    color: #747474;
}

#sub0202 .container .section3 .item > p:nth-child(2) {
    margin: 25px 0 10px;
}

#sub0202 .container .section3 .item > p:nth-child(3) {
    font-size: 22px;
    color: black;
    margin-bottom: 20px;
}

#sub0202 .container .section3 .item .tags {
    display: flex;
}

#sub0202 .container .section3 .item .tags.en {
    flex-wrap: wrap;
}

#sub0202 .container .section3 .item .tags p {
    font-size: 16px;
    color: #747474;
    border: 1px solid #e2e2f0;
    padding: 4px 9px;
    margin-right: 10px;
}

#sub0202 .container .section3 .item .tags p:first-child {
    padding: 4px 18px;
}

#sub0202 .container .section3 .item .tags p:last-child {
    margin-right: 0;
}

#sub0202 .container .section3 .item .tags.en p:last-child {
    margin-right: 0;
    margin-top: 10px;
}

#sub0202A .container .section2 {
    display: flex;
    justify-content: space-between;
    padding: 0 250px;
    margin-top: 60px;
}

#sub0202A .container .section2 .content h3 {
    font-size: 48px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

#sub0202A .container .section2 .content h3:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 35px;
}

#sub0202A .container .section2 .content p {
    font-size: 24px;
    color: #333333;
    white-space: nowrap;
}

#sub0202A .container .section4 {
    padding: 0 250px;
    margin-top: 85px;
}

#sub0202A .container .section4 p {
    font-size: 35px;
    font-weight: 500;
    color: #1c2a75;
    margin-bottom: 40px;
}


#sub0202A .container .section4 p:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 15px;
}

#sub0202A .container .section5 {
    margin-top: 125px;
    padding: 0 250px 190px;
    display: flex;
}

#sub0202A .container .section5 p {
    font-size: 35px;
    font-weight: 500;
    color: #1c2a75;
    margin-bottom: 40px;
    margin-right: 150px;
}


#sub0202A .container .section5 p:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 15px;
}

#sub0203 .container .section2 {
    margin-top: 70px;
    background-image: url('/img/sub0203_banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 160px 250px 97px;
}

#sub0203 .container .section2 h1, h3 {
    color: white;
}

#sub0203 .container .section2 h1 {
    margin-bottom: 70px;
}

#sub0203 .container .section2 p {
    font-size: 24px;
    color: white;
}

#sub0203 .container .section2 p {
    margin-bottom: 20px;
}

#sub0203 .container .section2 p:last-child {
    margin-bottom: 0;
}

#sub0203 .container .section3 {
    display: flex;
    flex-wrap: wrap;
    padding: 120px 250px 65px;
}

#sub0203 .container .section3 .item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 330px;
    margin-bottom: 70px;
    margin-right: 30px;
}

#sub0203 .container .section3 .item p {
    font-size: 14px;
    color: #747474;
}

#sub0203 .container .section3 .item > p:nth-child(2) {
    margin: 25px 0 10px;
}

#sub0203 .container .section3 .item > p:nth-child(3) {
    font-size: 22px;
    color: black;
    margin-bottom: 20px;
}

#sub0203 .container .section3 .item .tags {
    display: flex;
}

#sub0203 .container .section3 .item .tags.en {
    flex-wrap: wrap;
}

#sub0203 .container .section3 .item .tags p {
    font-size: 16px;
    color: #747474;
    border: 1px solid #e2e2f0;
    padding: 4px 9px;
    margin-right: 10px;
}

#sub0203 .container .section3 .item .tags p:first-child {
    padding: 4px 18px;
}

#sub0203 .container .section3 .item .tags p:last-child {
    margin-right: 0;
}

#sub0203 .container .section3 .item .tags.en p:last-child {
    margin-right: 0;
    margin-top: 10px;
}

.sub02#sub0203A .container .section1 .prod_nav {
    width: 15%;
    margin-top: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #d4d4d4;
}

#sub0203A .container .section2 {
    display: flex;
    align-items: center;
    padding: 0 250px;
    margin-top: 60px;
}


#sub0203A .container .section2 .content {
    margin-right: 135px;
}

#sub0203A .container .section2 .content h3 {
    font-size: 48px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

#sub0203A .container .section2 .content h3:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 35px;
}

#sub0203A .container .section2 .content p {
    font-size: 26px;
    color: #181818;
    margin-bottom: 20px;
    white-space: nowrap;
}

#sub0203A .container .section2 .content .color {
    display: flex;
}

#sub0203A .container .section2 .content .color div {
    display: block;
    width: 25px;
    height: 25px;
}

#sub0203A .container .section2 .content .color div:first-child {
    background-color: #b6b4b9;
    margin-right: 4px;
}

#sub0203A .container .section2 .content .color div:nth-child(2) {
    background-color: #e7e6ea;
    margin-right: 4px;
}

#sub0203A .container .section2 .content .color div:last-child {
    background-color: #70747d;
}

#sub0203A .container .section2 .imgs {
    display: flex;
}

#sub0203A .container .section2 .imgs .sub_img {
    margin-left: 40px;
}

#sub0203A .container .section2 .imgs .sub_img img:first-child {
    margin-bottom: 20px;
}

#sub0203A .container .section3 {
    display: flex;
    padding: 105px 250px 85px;
    background-color: #f0f4fc;
    justify-content: space-between;
    margin-top: 80px;
}

#sub0203A .container .section3 .content {
    position: relative;
}

#sub0203A .container .section3 .content h3 {
    color: #88a4b4;
    position: absolute;
    bottom: 80px;
    font-weight: 500;
}

#sub0203A .container .section3 .content p:nth-child(3) {
    color: #221e98;
    font-weight: bold;
    font-size: 28px;
    margin: 60px 0 15px;
}

#sub0203A .container .section3 .content p:last-child {
    font-size: 20px;
    color: #808080;
}

#sub0203A .container .section4 {
    padding: 0 250px;
    margin-top: 85px;
}

#sub0203A .container .section4 p {
    font-size: 35px;
    font-weight: 500;
    color: #1c2a75;
    margin-bottom: 40px;
}


#sub0203A .container .section4 p:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 15px;
}

#sub0203A .container .section5 {
    margin-top: 125px;
    padding: 0 250px 190px;
    display: flex;
    justify-content: space-between;
}

#sub0203A .container .section5 p {
    font-size: 35px;
    font-weight: 500;
    color: #1c2a75;
    margin-bottom: 40px;
}


#sub0203A .container .section5 p:before {
    content: '';
    display: block;
    width: 90px;
    height: 10px;
    background-color: #2d43b3;
    margin-bottom: 15px;
}

#sub0203A .container .section5 .imgs img {
    margin-left: 30px;
}

.sub03 #header {
    background-color: rgb(0, 0, 0, 0.2);
}

.sub03 #header .gnb>li>a {
    color: white !important;
}

.sub03 #hedaer .lnb>li>a {
    color: #1c2a75 !important;
}

.sub03 #header .sns {
    display: none;
}

.sub03 #header .sns_w {
    width: 288px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub03 #header .nav .lang a {
    color: rgb(255, 255, 255, 0.4);
}

.sub03 #header .nav .lang a.slct {
    color: white;
}

.sub03 .container .top {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 300px;
}

.sub03 .container .top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/sub03_top.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    animation: zoomOut 3s ease-in-out 1;
    animation-fill-mode: forwards;
}

.sub03 .container .top h1 {
    font-family: 'Pretendard-Regular';
    font-size: 55px;
    line-height: 43px;
    letter-spacing: -0.01em;
    color: white;
    margin-left: 250px;
}

.sub03 .container .top .sub_nav {
    width: 100%;
    margin-top: 40px;
}

.sub03 .container .top .sub_nav ul {
    display: flex;
    justify-content: space-between;
    padding: 0 250px;
    border-top: 4px solid rgb(255, 255, 255 , 0.4);
}

.sub03 .container .top .sub_nav ul li {
    padding: 40px 0;
    width: 240px;
    text-align: center;
}

.sub03 .container .top .sub_nav ul li.slct {
    position: relative;
}

.sub03 .container .top .sub_nav ul li.slct:after {
    position: absolute;
    content: '';
    display: block;
    width: 240px;
    height: 4px;
    background-color: white;
    top: -4px;
}


.sub03 .container .top .sub_nav ul li a {
    color: white;
    font-size: 21px;
}

.sub03 .container .section1 {
    margin-top: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 250px;
}

.sub03 .container .section1 .title {
    font-family: 'Pretendard-Regular';
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub03 .container .section1 .title:before {
    content: '';
    display: block;
    width: 74px;
    height: 31px;
    background-image: url('/img/sub_title_icon.png');
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.sub03 .sub_nav.en ul li {
    width: 280px !important;
}

.sub03 .sub_nav.en ul li.slct:after {
    width: 280px !important;
}

#sub0301 .container .section2 {
    padding: 0 250px 120px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#sub0301 .container .section2 .progress-bar {
    margin-top: 110px;
}

#sub0301 .container .section2 .progress-step {
    display: none;
}

#sub0301 .container .section2 .progress-step.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sub0301 .container .section2 .progress-step .number {
    font-size: 20px;
    color: white;
    background-color: #1c2a75;
    padding: 10px 23px;
    width: 160px;
    white-space: nowrap;
}

#sub0301 .container .section2 .progress-step .stepper {
    display: flex;
    font-size: 17px;
    font-weight: bold;
    color: #221e98;
    position: relative;
}

#sub0301 .container .section2 .progress-step .stepper .line {
    position: absolute;
    display: block;
    width: 53px;
    height: 3px;
    top: 46px;
    right: 0;
    background-color: #d2d2d2;
}

#sub0301 .container .section2 .progress-step .stepper .line:nth-child(2) {
    left: 67px;
}

#sub0301 .container .section2 .progress-step .stepper .line:nth-child(3) {
    left: 120px;
}

#sub0301 .container .section2 .progress-step .stepper .line:nth-child(5) {
    left: 187px;
}

#sub0301 .container .section2 .progress-step .stepper .line:nth-child(6) {
    right: 187px;
}

#sub0301 .container .section2 .progress-step .stepper .line:nth-child(8) {
    right: 120px;
}

#sub0301 .container .section2 .progress-step .stepper .line:nth-child(9) {
    right: 67px;
}

#sub0301 .container .section2 .progress-step.active .stepper .line.on {
    background-color: #221e98;
}

#sub0301 .container .section2 .progress-step.active .stepper p {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

#sub0301 .container .section2 .progress-step.active .stepper p:after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    margin-top: 20px;
    background-color: #d2d2d2;
}

#sub0301 .container .section2 .progress-step.active .stepper p.on:after {
    
    background-color: #221e98;

}

#sub0301 .container .section2 .progress-step .name {
    font-size: 24px;
    font-weight: bold;
    color: #1c2a75;
    width: 160px;
    text-align: right;
}

#sub0301 .container .section2 .steps .step, .recommendation {
        display: none;
}


#sub0301 .container .section2 .steps .title {
    display: flex;
    align-items: baseline;
    width: 100%;
    margin-bottom: 50px;
}

#sub0301 .container .section2 .steps .title b {
    font-size: 70px;
    font-weight: bold;
    line-height: 43px;
    color: #dadae6;
    font-family: 'Pretendard-Regular';
}

#sub0301 .container .section2 .steps .title p {
    font-size: 28px;
    margin-left: 5px;
}

#sub0301 .container .section2 .steps {
    margin-top: 105px;
    position: relative;
}

#sub0301 .container .section2 .steps .step.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#sub0301 .container .section2 .steps .step .choice {
    width: 450px;
    border: 1px solid #e3e3e3;
    color: #bbbbbb;
    padding: 30px 33px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
}

#sub0301 .container .section2 .steps .step .empty {
    width: 450px;
}

#sub0301 .container .section2 .steps .step .choice.selected {
    background-color: #1c2a75;
    border: 1px solid #1c2a75;
    color: white;
}

#sub0301 .container .section2 .steps .step .choice.selected p:before {
    background-color: white;
}

#sub0301 .container .section2 .steps .step .choice.selected .bar {
    background-color: white;
}

#sub0301 .container .section2 .steps .step .choice.selected .bar:after {
    background: white;
    content: "";
    width: 4px;
    height: 32px;
    left: 14px;
    position: absolute;
    top: -14px;
}

#sub0301 .container .section2 .steps .step .choice.selected img.on {
    display: block;
}

#sub0301 .container .section2 .steps .step .choice.selected img.off {
    display: none;
}

#sub0301 .container .section2 .steps .step .choice .bar {
    position: absolute;
    display: block;
    width: 32px;
    height: 4px;
    background-color: #e3e3e3;
    right: 33px;
    top: 45px;
}

#sub0301 .container .section2 .steps .step .choice b {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 25px;
}

#sub0301 .container .section2 .steps .step .choice p {
    font-size: 19px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#sub0301 .container .section2 .steps .step .choice p:last-child {
    margin-bottom: 0;
}

#sub0301 .container .section2 .steps .step .choice p:before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background-color: #bbbbbb;
    margin-right: 10px;
}

#sub0301 .container .section2 .steps .step .choice img {
    margin-bottom: 24px;
}

#sub0301 .container .section2 .steps .step .choice img.on {
    display: none;
}

#sub0301 .container .section2 .steps .step .buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
}

#sub0301 .container .section2 .steps .step .buttons .prev-btn {
    background-color: #cacbd0;
    font-size: 22px;
    color: white;
    padding: 20px 40px;
    width: 280px;
    text-align: left;
    border-radius: 35px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

#sub0301 .container .section2 .steps .step .buttons .prev-btn:before {
    content: '';
    display: block;
    width: 45px;
    height: 21px;
    background-image: url('/img/arrow.png');
    transform: rotate(180deg);
}

#sub0301 .container .section2 .steps .step .buttons .next-btn {
    background-color: #1c2a75;
    font-size: 22px;
    color: white;
    padding: 20px 40px;
    width: 280px;
    text-align: left;
    border-radius: 35px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    /* margin-left: auto; */
}

#sub0301 .container .section2 .steps .step .buttons .next-btn:after {
    content: '';
    display: block;
    width: 45px;
    height: 21px;
    background-image: url('/img/arrow.png');
}

#sub0301 .container .section2 .steps #step4 {
    flex-direction: column;
}

#sub0301 .container .section2 .steps #step4 p:first-child {
    font-size: 28px;
    font-weight: bold;
    color: black;
}

#sub0301 .container .section2 .steps #step4 .result {
    border: 6px solid #cbceda;
    display: flex;
    align-items: center;
    padding: 30px 60px 30px 30px;
    margin-top: 40px;
}

#sub0301 .container .section2 .steps #step4 .result img {
    margin-right: 60px;
}

#sub0301 .container .section2 .steps #step4 .result p {
    font-size: 24px;
    color: #1c2a75;
}

#sub0301 .container .section2 .steps #step4 .result b {
    font-size: 32px;
    font-weight: bold;
    color: black;
}

#sub0301 .container .section2 .steps #step4 .result a {
    margin-left: auto;
}

#sub0301 .container .section2 .steps #step4 .result a p {
    width: 280px;
    font-size: 22px;
    color: white;
    padding: 22px 0;
    background-color: #1c2a75;
    border-radius: 35px;
    text-align: center;
}

#sub0301 .container .section2 .steps #step4 .match {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

#sub0301 .container .section2 .steps #step4 .match div a {
    display: flex;
    height: 85px;
    align-items: center;
    justify-content: center;
}

#sub0301 .container .section2 .steps #step4 .match div a p {
    font-size: 22px;
    display: flex;
    align-items: center;
}


#sub0301 .container .section2 .steps #step4 .match #best-text a {
    box-shadow: 0 0 0 3px #1c2a75 inset;
    width: 705px;
}

#sub0301 .container .section2 .steps #step4 .match #best-text a p {
    color: #1c2a75;
}

#sub0301 .container .section2 .steps #step4 .match #best-text a p:after {
    content: '';
    display: block;
    width: 45px;
    height: 21px;
    background-image: url('/img/finder_arrow01.png');
    margin-left: 50px;
}

#sub0301 .container .section2 .steps #step4 .match #alt-text a {
    background-color: #1c2a75;
    width: 705px;
}

#sub0301 .container .section2 .steps #step4 .match #alt-text a p {
    color: white;
}

#sub0301 .container .section2 .steps #step4 .match #alt-text a p:after {
    content: '';
    display: block;
    width: 45px;
    height: 21px;
    background-image: url('/img/finder_arrow02.png');
    margin-left: 110px;
}








#sub0301 .container .section2 .steps #step4_4 {
    flex-direction: column;
}

#sub0301 .container .section2 .steps #step4_4 p:first-child {
    font-size: 28px;
    font-weight: bold;
    color: black;
}

#sub0301 .container .section2 .steps #step4_4 .result {
    border: 6px solid #cbceda;
    display: flex;
    align-items: center;
    padding: 30px 60px 30px 30px;
    margin-top: 40px;
}

#sub0301 .container .section2 .steps #step4_4 .result img {
    margin-right: 60px;
}

#sub0301 .container .section2 .steps #step4_4 .result p {
    font-size: 24px;
    color: #1c2a75;
}

#sub0301 .container .section2 .steps #step4_4 .result b {
    font-size: 32px;
    font-weight: bold;
    color: black;
}

#sub0301 .container .section2 .steps #step4_4 .result a {
    margin-left: auto;
}

#sub0301 .container .section2 .steps #step4_4 .result a p {
    width: 280px;
    font-size: 22px;
    color: white;
    padding: 22px 0;
    background-color: #1c2a75;
    border-radius: 35px;
    text-align: center;
}

#sub0301 .container .section2 .steps #step4_4 .match {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

#sub0301 .container .section2 .steps #step4_4 .match div {
    width: 705px;
}

#sub0301 .container .section2 .steps #step4_4 .match div a {
    display: flex;
    height: 85px;
    align-items: center;
    justify-content: center;
}

#sub0301 .container .section2 .steps #step4_4 .match div a p {
    font-size: 22px;
    display: flex;
    align-items: center;
}

#sub0301 .container .section2 .steps #step4_4 .match #best-text-step4_4 {
    box-shadow: 0 0 0 3px #1c2a75 inset;
}

#sub0301 .container .section2 .steps #step4_4 .match #best-text-step4_4 a p {
    color: #1c2a75;
}

#sub0301 .container .section2 .steps #step4_4 .match #best-text-step4_4 a p:after {
    content: '';
    display: block;
    width: 45px;
    height: 21px;
    background-image: url('/img/finder_arrow01.png');
    margin-left: 50px;
}









#sub0302 .container .section2 {
    padding: 0 250px;
    margin-top: 105px;
    display: flex;
}


#sub0302 .container .section2 .text {
    margin-left: 65px;
    padding-top: 115px;
}
#sub0302 .container .section2 .text p:first-child {
    font-size: 40px;
    font-weight: 700;
    color: #1c2a75;
}


#sub0302 .container .section2 .text p:nth-child(2) {
    font-size: 20px;
    line-height: 32px;
    color: #282828;
    margin: 60px 0 30px;
}

#sub0302 .container .section2 .text p:last-child {
    font-size: 18px;
    line-height: 30px;
    color: #585858;
}

#sub0302 .container .section3 {
    margin-top: 160px;
    padding: 0 250px 215px;
}

#sub0302 .container .section3 img:first-child {
    margin-bottom: 40px;
}

#sub0302 .container.hygiene {
    padding-bottom: 150px;
}

#sub0302 .container.hygiene .section2 {
    align-items: center;
    padding: 0 30px;
    max-width: 1440px;
}

#sub0302 .container.hygiene .section2 .text {
    padding-top: 0;
    margin-left: 50px;
}

#sub0302 .container.hygiene .section2 .text p:nth-child(2) {
    margin: 40px 0 30px;
}

#sub0302 .container.hygiene .section2.hygiene .text h1 {
    font-size: 35px;
    color: black;
}

#sub0302 .container.hygiene .section2.hygiene .text h1:before {
    content: '';
    display: block;
    width: 29px;
    height: 5px;
    background-color: #23459c;
    margin-bottom: 5px;
}

#sub0302 .container.hygiene .section2.hygiene .text {
    width: 100%;
}

#sub0302 .container.hygiene .section2.hygiene .text p {
    font-size: 18px;
    line-height: 32px;
    color: #585858;
    margin: 30px 0 0;
}

#sub0302 .container.hygiene .section2.hygiene .text p:nth-child(2):before {
    content: '01';
    color: black;
    display: block;
    font-size: 27px;
    color: #8bb4ec;
}

#sub0302 .container.hygiene .section2.hygiene .text p:nth-child(3):before {
    content: '02';
    color: black;
    display: block;
    font-size: 27px;
    color: #8bb4ec;
}

#sub0302 .container.hygiene .section2.hygiene.swiper .text {
    margin-left: 0;
}

#sub0302 .container.hygiene .section2.hygiene.swiper .swiper-container {
    overflow: hidden;
    order: 1;
    text-align: right;
}





.sub04 #header {
    background-color: rgb(0, 0, 0, 0.2);
}

.sub04 #header .gnb>li>a {
    color: white !important;
}

.sub04 #hedaer .lnb>li>a {
    color: #1c2a75 !important;
}

.sub04 #header .sns {
    display: none;
}

.sub04 #header .sns_w {
    width: 288px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub04 #header .nav .lang a {
    color: rgb(255, 255, 255, 0.4);
}

.sub04 #header .nav .lang a.slct {
    color: white;
}

.sub04 .container .top {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 300px;
}

.sub04 .container .top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/sub04_top.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    animation: zoomOut 3s ease-in-out 1;
    animation-fill-mode: forwards;
}

.sub04 .container .top h1 {
    font-family: 'Pretendard-Regular';
    font-size: 55px;
    line-height: 43px;
    letter-spacing: -0.01em;
    color: white;
    margin-left: 250px;
}

.sub04 .container .top .sub_nav {
    width: 100%;
    margin-top: 40px;
}

.sub04 .container .top .sub_nav ul {
    display: flex;
    justify-content: space-between;
    padding: 0 250px;
    border-top: 4px solid rgb(255, 255, 255 , 0.4);
}

.sub04 .container .top .sub_nav ul li {
    padding: 40px 0;
    width: 240px;
    text-align: center;
}

.sub04 .container .top .sub_nav ul li.slct {
    position: relative;
}

.sub04 .container .top .sub_nav ul li.slct:after {
    position: absolute;
    content: '';
    display: block;
    width: 240px;
    height: 4px;
    background-color: white;
    top: -4px;
}


.sub04 .container .top .sub_nav ul li a {
    color: white;
    font-size: 21px;
}

.sub04 .container .section1 {
    margin-top: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 250px 50px;
}

.sub04 .container .section1 #bo_w {
    width: 100%;
}

#bo_w  {
    width: 100%;
}

.sub04 .container .section1 .title {
    font-family: 'Pretendard-Regular';
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sub04 .container .section1 .title:before {
    content: '';
    display: block;
    width: 74px;
    height: 31px;
    background-image: url('/img/sub_title_icon.png');
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.sub05 #header {
    background-color: rgb(0, 0, 0, 0.2);
}

.sub05 #header .gnb>li>a {
    color: white !important;
}

.sub05 #hedaer .lnb>li>a {
    color: #1c2a75 !important;
}

.sub05 #header .sns {
    display: none;
}

.sub05 #header .sns_w {
    width: 288px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub05 #header .nav .lang a {
    color: rgb(255, 255, 255, 0.4);
}

.sub05 #header .nav .lang a.slct {
    color: white;
}

.sub05 .container .top {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 300px;
}

.sub05 .container .top:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/sub05_top.png');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    animation: zoomOut 3s ease-in-out 1;
    animation-fill-mode: forwards;
}

.sub05 .container .top h1 {
    font-family: 'Pretendard-Regular';
    font-size: 55px;
    line-height: 43px;
    letter-spacing: -0.01em;
    color: white;
    margin-left: 250px;
}

.sub05 .container .top .sub_nav {
    width: 100%;
    margin-top: 40px;
}

.sub05 .container .top .sub_nav ul {
    display: flex;
    justify-content: space-between;
    padding: 0 250px;
    border-top: 4px solid rgb(255, 255, 255 , 0.4);
}

.sub05 .container .top .sub_nav ul li {
    padding: 40px 0;
    width: 240px;
    text-align: center;
}

.sub05 .container .top .sub_nav ul li.slct {
    position: relative;
}

.sub05 .container .top .sub_nav ul li.slct:after {
    position: absolute;
    content: '';
    display: block;
    width: 240px;
    height: 4px;
    background-color: white;
    top: -4px;
}


.sub05 .container .top .sub_nav ul li a {
    color: white;
    font-size: 21px;
}

.sub05 .container .section1 {
    margin-top: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 250px 50px;
}

.sub05 .container .section1 .title {
    font-family: 'Pretendard-Regular';
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.sub05 .container .section1 .title:before {
    content: '';
    display: block;
    width: 74px;
    height: 31px;
    background-image: url('/img/sub_title_icon.png');
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.sub05 .container .section1 #map .title {
    font-size: 20px;
    margin: 0;
    display: block;
}

.sub05 .container .section1 #map .title:before {
    display: none;
}

#footer {
    background-color: #2d3a7e;
    width: 100%;
}

#footer .top {
    padding: 30px 255px 25px;
    display: flex;
    justify-content: space-between;
}

#footer .top .left img {
    margin-bottom: 18px;
}

#footer .top .left p {
    font-size: 16px;
    color: #7986cc;
    line-height: 30px;
}

#footer .top .left p span {
    text-decoration: underline;
    text-underline-position : under;
    text-decoration-thickness: 2px;
}

#footer .top .right p {
    text-align: right;
    text-align: right;
    font-size: 16px;
    color: white;
    cursor: pointer;
    margin-bottom: 10px;
}

#footer .top .right p:first-child {
    margin-bottom: 10px;
}

#footer .top .right .marks {
    width: 700px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 75px;
}

#footer .bottom {
    background-color: #1c2a75;
    padding: 18px 255px;
}

#footer .bottom p {
    font-size: 16px;
    color: white;
}

.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 559px;
    height: 794px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    z-index: 1000;
    overflow: auto;  /* 내용이 길어지면 스크롤 생성 */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.popup.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}



.popup h1 {
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
    color: black;
}

.popup h2 {
    font-size: 20px;
    color: black;
    margin-bottom: 10px;
}

.popup p {
    font-size: 15px;
    color: black;
    margin-bottom: 40px;
}

.popup p b {
    font-weight: bold;
    font-size: 17px;
}

.overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.open {
    display: block;
    opacity: 1;
}

body.no-scroll {
    overflow: hidden;
}








.main .swiper-container.slider1{width: 100%; position: relative; display: flex; justify-content: center; align-items: center; position: relative;}
.main .swiper-container.slider1 .swiper-slide {display: flex; flex-direction: column; align-items: center; -webkit-user-drag: none; font-size: 18px; cursor: pointer;}

.main .swiper-container.slider1 .wall {
    display: block;
    background-color: #f1f2f8;
    opacity: 0.7;
    width: 300px;
    height: 400px;
    position: absolute;
    z-index: 998;
}

.main .swiper-container.slider1 .wall:nth-child(2) {
    right: 0;
}

.main .swiper-container.slider1 .wall:nth-child(3) {
    left: 0;
}

.main .swiper-container.slider1 .swiper-slide p {
    color: #1c2a75;
    margin-bottom: 15px;
}

.main .swiper-container.slider1 .swiper-slide b {
    font-weight: bold;
}
.main .swiper-container.slider1 img{width: 100%; -webkit-user-drag: none;}

.main  .slider1 .swiper-button-next {
    width: 91px;
    height: 49px;
    right: 2%;
    background-image: url('/img/main_arrow.png') !important;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 999;
}
.main  .slider1 .swiper-button-next:after {
    display: none;
}
.main  .slider1 .swiper-button-prev {
    width: 91px;
    height: 49px;
    left: 2%;
    transform: rotate(180deg);
    background-image: url('/img/main_arrow.png') !important;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 999;
}
.main  .slider1 .swiper-button-prev:after {
    display: none;
}

.as {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.as img {
    width: 100%;
}

.as .txt_area {
    margin: 75px 0;
}

.as .txt_area h3 {
    font-size: 26px;
    color: black;
    text-align: center;
    margin-bottom: 25px;
}

.as .txt_area p {
    color: #555555;
    font-size: 20px;
    border-bottom: 1px solid #e4e4e4;
    padding: 25px;
}

.as .txt_area p:last-child {
    border: none;
}

@media (max-width: 1023px) {
    .wrap {
        width: 100%;
    }

    #header.pc{
        display: none;
    }

    .sub01 .sns_w.mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 15px;
        right: 10px;
        width: 190px;
        z-index: 999;
    }
    .sub02 .sns_w.mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 15px;
        right: 10px;
        width: 190px;
        z-index: 999;
    }
    .sub03 .sns_w.mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 15px;
        right: 10px;
        width: 190px;
        z-index: 999;
    }
    .sub04 .sns_w.mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 15px;
        right: 10px;
        width: 190px;
        z-index: 999;
    }
    .sub05 .sns_w.mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 15px;
        right: 10px;
        width: 190px;
        z-index: 999;
    }

    .main .sns.mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 15px;
        right: 10px;
        width: 190px;
    }
    
    .hamburger {
        display: block;
        font-size: 30px;
        cursor: pointer;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 9990;
    }
    
    .side-panel {
        display: block;
        z-index: 9991;
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: -100%;
        background-color: #333;
        color: white;
        overflow-x: hidden;
        overflow-y: auto;
        transition: 0.5s;
        padding-top: 60px;
    }
    
    .side-panel h2 {
        padding-left: 20px;
        color: white;
        font-size: 35px;
    }
    
    .side-panel p {
        padding: 20px;
    }

    .side-panel a {
        color: white;
    }

    .side-panel>ul>li>a {
        display: block;
        font-size: 35px;
        margin-bottom: 20px;
    }

    .side-panel>ul>li {
        margin-bottom: 50px;
    }

    .side-panel>ul {
        padding: 30px;
    }

    .side-panel>ul>li>ul>li>a {
        margin: 0 30px 30px 0;
        font-size: 20px;
    }

    .side-panel .logo {
        margin-left: 30px;
    }

    .side-panel .lang {
        margin-left: 30px;
        margin-top: 30px;
    }
    
    #side-panel .close-btn {
        position: absolute;
        top: 20px;
        right: 25px;
        font-size: 36px;
        cursor: pointer;
    }

    .no-scroll {
        overflow: hidden;
    }

    .sub01 .hamburger {
        color: white;
    }

    .sub02 .hamburger {
        color: white;
    }

    .sub03 .hamburger {
        color: white;
    }

    .sub04 .hamburger {
        color: white;
    }

    .sub05 .hamburger {
        color: white;
    }
    

    .main .section1 {
        margin-top: 70px;
    }

    .main .section1 h1 {
        margin-left: 100px;
        font-size: 60px;
    }

    .main .section1 a img {
        right: 50px
    }

    .main .section1 .banner {
        padding: 60px 100px;
    }

    .main .section1 .banner:before {
        background-position: center
    }

    .main .section2 {
        flex-direction: column;
        align-items: normal;
    }

    .main .section2 .left {
        padding-left: 100px;
        margin-bottom: 50px;
    }

    .main .section2 .right {
        margin-left: auto;
    }

    .main .section2 .right img {
        width: 100%;
    }

    .main .section3 {
        padding: 60px 100px;
    }

    .main .section4 .top {
        padding: 0 100px;
    }

    .main .section4 .icevan {
        height: 375px;
    }

    .main .section4 .icevan-c {
        height: 375px;
    }

    .main .section4 .icevan-c .item:first-child {
        margin-right: 150px;
    }

    .main .section4 .top .buttons {
        display: flex;
        flex-direction: column;
    }

    .main .section4 .buttons button:first-child {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .main .swiper-container.slider1 .wall {
        width: 150px;
        height: 360px;
    }

    .main .slider1 .swiper-button-next {
        width: 41px;
        height: 22px;
        right: 4%;
    }

    .main .slider1 .swiper-button-prev {
        width: 41px;
        height: 22px;
        right: 4%;
    }

    .main .section5 {
        padding: 0 100px;
    }

    .main .section5 h3 br {
        display: none;
    }

    .main .section5 p {
        text-align: center;
    }

    .main .section5 .imgs {
        flex-direction: column;
        align-items: center;
    }
    
    .main .section5 .imgs p {
        text-align: left;
        padding-top: 35px;
        flex-direction: row;
    }

    .main .section5 .imgs p span {
        position: static;
    }

    .main .section5 .imgs p br {
        display: none
    }

    .main .section5 .imgs p:nth-child(2) img {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .main .section6 {
        padding: 0 100px;
        flex-direction: column;
    }

    .main .section6 h2 {
        margin-bottom: 30px;
    }

    .main .section6 .buttons {
        display: flex;
    }

    .sub01 .container .top {
        padding-top: 100px;
    }

    .sub01 .container .top h1 {
        margin-left: 100px;
    }

    .sub01 .container .top .sub_nav ul {
        padding: 0 50px;
    }

    .sub01 .container .top .sub_nav ul li.slct:after {
        width: 100%;
    }

    .sub01 .container .section1 {
        padding: 0 100px;
    }

    #sub0101 .container .section1 p:nth-child(2) {
        margin: 100px 0 250px;
    }
    
    #sub0101 .container .section1 p:nth-child(2) br {
        display: none;
    }

    #sub0101 .container .section2 p:nth-child(3) br {
        display: none;
    }

    #sub0101 .container .section2 {
        margin-top: 0;
        padding: 60px 100px;
        background-position: center;
    }

    #sub0101 .container .section3 {
        padding: 135px 100px 100px;
    }

    #sub0101 .container .section3 .area {
        flex-direction: column;
    }

    #sub0101 .container .section3 .area .left {
        margin-right: 0;
    }

    #sub0101 .container .section3 .area .left img {
        width: 100%;
    }

    #sub0101 .container .section3 .area .right {
        margin-top: 30px;
    }

    #sub0102 .section2 {
        padding: 0 100px;
    }

    #sub0102 .section2 img {
        width: 100%;
    }

    #sub0102 .section3 {
        padding: 0 100px;
        flex-direction: column;
    }

    #sub0102 .section3 .left {
        padding-left: 0;
        margin-bottom: 30px;
    }

    #sub0102 .section3 .right {
        flex-wrap: wrap;
        padding-right: 0;
    }

    #sub0102 .section3 .right .content {
        margin-left: 0;
    }

    #sub0103 .section2 {
        padding: 0 100px;
        flex-direction: column;
        align-items: normal;
        margin-bottom: 150px;
    }

    #sub0103 .section2 img {
        width: 100%;
        margin-bottom: 50px;
    }

    #sub0103 .section2 .right {
        margin-left: 0;
    }

    #sub0103 .section3 {
        padding: 0 100px;
        flex-direction: column;
    }

    #sub0103 .section3 .slide1 {
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
        margin-right: 0;
    }

    #sub0103 .section3 .slide1:hover {
        width: 100%;
    }

    #sub0103 .section3 .slide2 {
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
        margin-right: 0;
    }

    #sub0103 .section3 .slide2:hover {
        width: 100%;
    }

    #sub0103 .section3 .slide3 {
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
        margin-right: 0;
    }

    #sub0103 .section3 .slide3:hover {
        width: 100%;
    }

    #sub0103 .section3 .slide4 {
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
        margin-right: 0;
    }

    #sub0103 .section3 .slide4:hover {
        width: 100%;
    }

    #sub0103 .section3 .slide5 {
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
        margin-right: 0;
    }

    #sub0103 .section3 .slide5:hover {
        width: 100%;
    }

    #sub0103 .section3 .slide6 {
        width: 100%;
        height: 500px;
        margin-bottom: 30px;
        margin-right: 0;
    }

    #sub0103 .section3 .slide6:hover {
        width: 100%;
    }

    #sub0104 .section2 {
        padding: 0 100px;
    }

    #sub0104 .section2 .cert {
        align-items: center;
    }

    #sub0104 .section2 .cert .c_box {
        margin: 0 auto 50px;
    }

    #sub0104 .section2 .patent {
        align-items: center;
    }

    #sub0104 .section2 .patent .p_box {
        margin: 0 auto 50px;
    }

    #sub0105 .section2 {
        padding: 0 100px;
        flex-direction: column;
    }

    #sub0105 .section2 .right {
        margin-top: 50px
    }

    #sub0105 .section2 .map.pc {
        display: block;
    }

    #sub0105 .section2 .map.mobile {
        display: none;
    }

    .sub02 .container .top {
        padding-top: 100px;
    }

    .sub02 .container .top h1 {
        margin-left: 100px;
    }

    .sub02 .container .top .sub_nav ul {
        padding: 0 50px;
    }

    .sub02 .container .top .sub_nav ul li:last-child {
        display: none;
    }

    .sub02 .container .top .sub_nav ul li.slct:after {
        width: 100%;
    }

    .sub02 .container .section1 .prod_nav {
        width: 100%;
        border: none;
    }
    .sub02#sub0201A .container .section1 .prod_nav ul li {
        margin-bottom: 20px;
    }

    .sub02#sub0201A .container .section1 .prod_nav ul {
        flex-wrap: wrap;
    }

    .sub02#sub0201A .container .section1 .prod_nav ul li.slct:after {
        bottom: -10px;
        width: 100%;
    }

    .sub02 .container .section1 {
        padding: 0 100px;
    }

    #sub0201 .container .section2 {
        padding: 60px 30px;
        background-position: center;
    }

    #sub0201 .container .section3 {
        padding: 120px 100px 65px;
    }

    #sub0201 .container .section3 .item {
        width: 45%;
    }

    #sub0201 .container .section3 .item img {
        width: 100%;
    }

    #sub0201 .container .section3 .item .tags p {
        font-size: 10px;
    }

    #sub0201A .container .section2 {
        padding: 0 100px;
        flex-direction: column;
        align-items: normal;
    }

    #sub0201A .container .section2 .imgs {
        flex-direction: column;
    }

    #sub0201A .container .section2 .imgs>img {
        width: 100%;
    }

    #sub0201A .container .section2 .imgs .sub_img {
        margin: 30px 0 0 0;
    }
    
    #sub0201A .container .section2 .imgs .sub_img img:first-child {
        margin: 0 20px 0 0;
    }

    #sub0201A .container .section3 {
        padding: 105px 100px 85px;
        flex-direction: column;
        align-items: center;
    }

    #sub0201A .container .section3 .content {
        margin-bottom: 70px;
    }

    #sub0201A .container .section3 .content:first-child h3 {
        bottom: 60px;
    }

    #sub0201A .container .section4 {
        padding: 0 100px;
        overflow-x: auto;
    }

    #sub0201A .container .section5 {
        padding: 0 100px 190px;
    }

    #sub0202 .container .section2 {
        padding: 60px 30px;
    }

    #sub0202 .container .section3 {
        padding: 120px 100px 65px;
    }

    #sub0202 .container .section3 .item {
        width: 45%;
    }

    #sub0202 .container .section3 .item img {
        width: 100%;
    }

    #sub0202 .container .section3 .item .tags p {
        font-size: 11px;
    }

    .sub02#sub0202A .container .section1 .prod_nav {
        width: 100%;
    }

    .sub02#sub0202A .container .section1 .prod_nav ul li.slct:after {
        width: 100%;
    }

    #sub0202A .container .section2 {
        padding: 0 100px;
        flex-direction: column;
    }

    #sub0202A .container .section4 {
        padding: 0 100px;
        overflow-x: auto;
    }

    #sub0202A .container .section5 {
        padding: 0 100px 190px;
    }

    #sub0202A .container .section5 p {
        margin-right: 70px;
    }

    #sub0203 .container .section2 {
        padding: 60px 30px;
    }

    #sub0203 .container .section3 {
        padding: 120px 100px 65px;
        justify-content: space-between;
    }

    #sub0203 .container .section3 .item {
        width: 45%;
        margin-right: 0;
    }
    
    #sub0203 .container .section3 .item img {
        width: 100%;
    }

    #sub0203 .container .section3 .item .tags p {
        font-size: 11px;
    }

    .sub02#sub0203A .container .section1 .prod_nav {
        width: 50%;
    }

    #sub0203A .container .section2 {
        padding: 0 100px;
        flex-direction: column;
        align-items: normal;
    }

    #sub0203A .container .section2 .content {
        margin-bottom: 50px;
    }

    #sub0203A .container .section2 .imgs {
        flex-direction: column;
    }

    #sub0203A .container .section2 .imgs>img {
        width: 100%;
    }

    #sub0203A .container .section2 .imgs .sub_img {
        margin: 30px 0 0 0;
    }

    #sub0203A .container .section2 .imgs .sub_img img:first-child {
        margin: 0 20px 0 0;
    }

    #sub0203A .container .section3 {
        padding: 105px 100px 85px;
        flex-direction: column;
        align-items: center;
    }

    #sub0203A .container .section3 .content:first-child h3 {
        bottom: 60px;
    }

    #sub0203A .container .section4 {
        padding: 0 100px;
        overflow-x: auto;
    }

    #sub0203A .container .section5 {
        padding: 0 100px 190px;
    }

    .sub03 .container .top {
        padding-top: 100px;
    }

    .sub03 .container .top:before {
        background-position: center;
    }

    .sub03 .container .top h1 {
        margin-left: 100px;
    }

    .sub03 .container .top .sub_nav ul {
        padding: 0 50px;
        align-items: center;
    }

    .sub03 .container .top .sub_nav ul li:last-child {
        display: none;
    }

    .sub03 .container .top .sub_nav ul li.slct:after {
        width: 100%;
    }

    .sub03 .container .section1 {
        padding: 0 100px;
    }

    #sub0301 .container .section2 {
        padding: 0 100px 120px;
    }

    #sub0301 .container .section2 .progress-step.active {
        flex-direction: column;
    }

    #sub0301 .container .section2 .progress-step .name {
        text-align: center;
    }

    #sub0301 .container .section2 .progress-step .stepper {
        margin: 50px 0;
    }

    #sub0301 .container .section2 .steps .step {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
    }

    #sub0301 .container .section2 .steps .step .choice {
        margin-bottom: 30px;
    }

    #sub0301 .container .section2 .steps #step4 .result {
        flex-direction: column;
        padding: 60px;
    }

    #sub0301 .container .section2 .steps #step4 .result img {
        margin-right: 0;
    }

    #sub0301 .container .section2 .steps #step4 .result a {
        margin: 0;
    }

    #sub0301 .container .section2 .steps #step4 .result p:nth-child(2) {
        margin: 30px 0;
    }

    #sub0301 .container .section2 .steps #step4 .match {
        flex-direction: column;
    }

    #sub0301 .container .section2 .steps #step4 .match #best-text a {
        width: 100%;
        margin-bottom: 30px;
    }

    #sub0301 .container .section2 .steps #step4 .match #alt-text a {
        width: 100%;
    }

    #sub0301 .container .section2 .steps #step4_4 .result {
        flex-direction: column;
        padding: 60px;
    }

    #sub0301 .container .section2 .steps #step4_4 .result a {
        margin: 30px 0 0 0;
    }

    #sub0301 .container .section2 .steps #step4_4 .result img {
        margin-right: 0;
        width: 100% !important;
    }

    #sub0302 .container .section2 {
        padding: 0 100px;
        flex-direction: column;
    }

    #sub0302 .container .section2 .text {
        margin-left: 0;
        padding-top: 70px;
    }

    #sub0302 .container .section3 {
        padding: 0 100px 100px;
    }

    #sub0302 .container .section3 img {
        width: 100%;
    }

    .sub03 .container .top .sub_nav ul li.slct:after {
        width: 100% !important;
    }

    .sub04 .container .top {
        padding-top: 100px;
    }

    .sub04 .container .top h1 {
        margin-left: 100px;
    }

    .sub04 .container .top .sub_nav ul {
        padding: 0 50px;
    }

    .sub04 .container .top .sub_nav ul li:last-child {
        display: none;
    }

    .sub04 .container .top .sub_nav ul li:nth-child(4) {
        display: none;
    }

    .sub04 .container .section1 {
        padding: 0 100px 50px;
    }

    .sub05 .container .top {
        padding-top: 100px;
    }

    .sub05 .container .top h1 {
        margin-left: 100px;
    }

    .sub05 .container .top .sub_nav ul {
        padding: 0 50px;
    }

    .sub05 .container .top .sub_nav ul li:last-child {
        display: none;
    }

    .sub05 .container .top .sub_nav ul li:nth-child(4) {
        display: none;
    }

    .sub05 .container .section1 {
        padding: 0 100px 50px;
    }

    #footer .top {
        padding: 30px 100px 25px;
        flex-direction: column;
    }

    #footer .top .left {
        margin-bottom: 50px;
    }

    #footer .top .right .marks {
        width: 300px;
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    #footer .top .right .marks img {
        margin-bottom: 30px;
    }

    #footer .bottom {
        padding: 18px 100px;
    }
    
    .wrap .sub_nav.en ul li.slct:after {
        width: 100% !important;
    }

    .sub01 .container .top .sub_nav.en ul {
        padding: 0;
        align-items: normal;
    }

    .sub03 .container .top .sub_nav.en ul {
        padding: 0;
        align-items: normal;
    }

    #sub0201 .container .section3 .item.shift_left {
        margin: 0;
    }


    #sub0302 .container.hygiene .section2 img {
        width: 100%;
    }

    #sub0302 .container.hygiene .section2 .text {
        margin-top: 30px;
        margin-left: 0;
    }

    #sub0302 .container.hygiene .section2.hygiene.swiper .swiper-container {
        width: 100%;
        order: 0;
        text-align: unset;
    }

}

@media (max-width: 767px) {
    .main .section1 h1 {
        margin-left: 30px;
        margin-bottom: 25px;
        font-size: 46px;
    }

    .main .section1 a img {
        width: 60px;
        height: 60px;
        top: 110px;
    }

    .main .section1 .banner {
        padding: 30px 30px;
    }

    .main .section1 .banner h2 {
        font-size: 24px;
    }

    .main .section2 {
        padding: 70px 0;
    }

    .main .section2 .left {
        padding-left: 30px;
    }

    .main .section2 .left h2 {
        font-size: 35px;
    }

    .main .section2 .left p:nth-child(2) {
        margin: 30px 0;
    }

    .main .section2 .left p:nth-child(3) {
        margin-bottom: 30px;
    }

    .main .section3 {
        padding: 30px;
    }

    .main .section3 h2 {
        font-size: 35px;
    }

    .main .section4 .top {
        padding: 0 30px;
        flex-direction: column;
    }

    .main .section4 .top .title {
        margin-top: 70px;
    }

    .main .section4 .top .title h2 {
        font-size: 35px;
    }

    .main .section4 .top .buttons {
        margin-top: 50px;
        flex-direction: row;
    }

    .main .section4 .buttons button:first-child {
        margin-bottom: 0;
    }

    .main .section4 .icevan-c .item:first-child {
        margin-right: 0;
    }

    .main .swiper-container.slider1 .wall:nth-child(2) {
        display: none;
    }

    .main .swiper-container.slider1 .wall:nth-child(3) {
        display: none;
    }

    .main .swiper-container.slider1 .swiper-slide {
        font-size: 12px;
    }

    .swiper-button-next, .swiper-button-prev {
        top: var(--swiper-navigation-top-offset,140%)
    }

    .main .swiper-container.slider1 .swiper-slide b {
        text-align: center;
    }

    .main .section4 .icevan {
        height: 300px;
    }

    .main .section4 .icevan-c {
        height: 300px;
    }

    .main .section5 {
        padding: 0 30px;
        margin-top: 70px;
    }

    .main .section5 h3 {
        font-size: 25px;
    }

    .main .section5 p {
        font-size: 20px;
    }

    .main .section5 .imgs p {
        flex-direction: column;
    }

    .main .section5 .imgs p img {
        width: 100%;
    }

    .main .section5 .imgs p:first-child img {
        margin-bottom: 0;
    }

    .main .section5 .imgs p:nth-child(3) img {
        margin-bottom: 0;
    }

    .main .section5 .imgs p:nth-child(2) img {
        margin-top: 10px;
    }

    .main .section6 {
        padding: 0 30px;
    }

    .main .section6 h2 {
        font-size: 35px;
    }

    .main .section6 .buttons {
        flex-direction: column;
    }

    .main .section6 .buttons a:first-child button {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .sub01 .container .top:before {
        background-position: center;
    }

    .sub01 .container .top h1 {
        margin-left: 30px;
        font-size: 35px;
    }
    .sub01 .container .top .sub_nav ul {
        flex-direction: column;
        padding: 0;
        border: none;
    }

    .sub01 .container .top .sub_nav ul li {
        width: 100%;
    }

    .sub01 .container .section1 {
        padding: 0 30px;
    }

    #sub0101 .container .section1 p:nth-child(2) {
        font-size: 35px;
        line-height: 40px;
    }

    #sub0101 .container .section1:after {
        right: 0;
    }

    #sub0101 .container .section2 {
        padding: 30px;
    }

    #sub0101 .container .section2 h1 {
        font-size: 40px;
    }

    #sub0101 .container .section2 p:nth-child(2) {
        font-size: 25px;
    }

    #sub0101 .container .section2 p:nth-child(3) {
        font-size: 18px;
        line-height: 26px;
    }

    #sub0101 .container .section3 {
        padding: 70px 30px 50px;
    }

    #sub0101 .container .section3 .buttons {
        flex-direction: column;
        margin-top: 30px;
    }

    #sub0101 .container .section3 .buttons p {
        margin-bottom: 30px;
    }

    #sub0101 .container .section3 .area .right .year {
        margin-right: 10px;
    }

    #sub0102 .section2 {
        padding: 0 30px;
    }

    #sub0102 .section3 {
        padding: 0 30px;
    }

    #sub0102 .section3 .right {
        justify-content: center;
    }

    #sub0103 .section2 {
        padding: 0 30px;
    }

    #sub0103 .section2 .right p:first-child {
        width: 100%;
    }

    #sub0103 .section3 {
        padding: 0 30px;
    }

    #sub0104 .section2 {
        padding: 0 30px;
    }

    #sub0105 .section2 {
        padding: 0 30px;
    }

    #sub0105 .section2 .map {
        margin-right: 0;
        display: flex;
        justify-content: center;
    }

    #sub0105 .section2 .map.pc {
        display: none;
    }

    #sub0105 .section2 .map.mobile {
        display: flex;
    }

    .sub02 .container .top h1 {
        margin-left: 30px;
        font-size: 35px;
    }

    .sub02 .container .top .sub_nav ul {
        flex-direction: column;
        padding: 0;
        border: none;
    }

    .sub02 .container .top .sub_nav ul li {
        width: 100%;
    }

    .sub02 .container .top .sub_nav ul li:nth-child(4) {
        display: none;
    }

    .sub02 .container .section1 {
        padding: 0 30px;
    }

    .sub02 .container .section1 p {
        text-align: center;
    }
    
    #sub0201 .container .section2 {
        padding: 30px;
    }

    #sub0201 .container .section2 h3 {
        font-size: 32px;
    }

    #sub0201 .container .section2 h1 {
        font-size: 60px;
    }

    #sub0201 .container .section3 {
        padding: 60px 30px 65px;
    }

    #sub0201 .container .section3 .item > p {
        font-size: 16px;
    }

    #sub0201 .container .section3 .item .tags {
        flex-wrap: wrap;
    }

    #sub0201 .container .section3 .item .tags p {
        margin-bottom: 10px;
    }

    #sub0201 .container .section3 .item.shift_left {
        margin: 0;
    }
    

    #sub0201A .container .section2 {
        padding: 0 30px;
    }

    #sub0201A .container .section2 .content {
        margin: 0 0 20px 0;
    }

    #sub0201A .container .section2 .content .text {
        margin-top: 25px;
        font-size: 13px;
    }

    #sub0201A .container .section2 .imgs .sub_img img {
        width: 45%;
    }

    #sub0201A .container .section3 {
        padding: 80px 30px 85px;
    }

    #sub0201A .container .section3 .content:nth-child(2) h3 {
        bottom: 105px;
    }

    #sub0201A .container .section3 .content img {
        width: 100%;
    }

    #sub0201A .container .section3 .content p br {
        display: none;
    }

    #sub0201A .container .section4 {
        padding: 0 30px;
    }

    #sub0201A .container .section5 {
        padding: 0 30px 190px;
        flex-direction: column;
    }

    #sub0201A .container .section5 .imgs img {
        margin: 0;
        width: 100%;
    }

    #sub0202 .container .section2 {
        padding: 30px;
        background-position: center;
    }

    #sub0202 .container .section2 h3 {
        font-size: 32px;
    }

    #sub0202 .container .section2 h1 {
        font-size: 60px;
    }

    #sub0202 .container .section3 {
        padding: 60px 30px 65px;
    }

    #sub0202 .container .section3 .item > p:nth-child(3) {
        font-size: 16px;
    }

    #sub0202 .container .section3 .item .tags {
        flex-wrap: wrap;
    }

    #sub0202 .container .section3 .item .tags p {
        margin-bottom: 10px;
    }

    .sub02#sub0202A .container .section1 .prod_nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sub02#sub0202A .container .section1 .prod_nav ul li {
        margin-bottom: 20px;
    }

    .sub02#sub0202A .container .section1 .prod_nav ul li.slct:after {
        bottom: -10px;
    }

    #sub0202A .container .section2 {
        padding: 0 30px;
    }

    #sub0202A .container .section4 {
        padding: 0 30px;
    }

    #sub0202A .container .section5 {
        padding: 0 30px 190px;
        flex-direction: column;
    }

    #sub0203 .container .section2 {
        padding: 30px;
        background-position: center;
    }

    #sub0203 .container .section2 h3 {
        font-size: 32px;
    }

    #sub0203 .container .section2 h1 {
        font-size: 60px;
    }

    #sub0203 .container .section3 {
        padding: 60px 30px 65px;
    }

    #sub0203 .container .section3 .item > p:nth-child(3) {
        font-size: 16px;
    }

    #sub0203 .container .section3 .item .tags {
        flex-wrap: wrap;
    }

    #sub0203 .container .section3 .item .tags p:first-child {
        margin-bottom: 10px;
    }

    .sub02#sub0203A .container .section1 .prod_nav {
        width: 100%;
    }

    #sub0203A .container .section2 {
        padding: 0 30px;
    }

    #sub0203A .container .section2 .content {
        margin: 0 0 20px 0;
    }

    #sub0203A .container .section2 .imgs .sub_img img {
        width: 45%;
    }

    #sub0203A .container .section3 {
        padding: 80px 30px 85px;
    }

    #sub0203A .container .section3 .content img {
        width: 100%;
    }

    #sub0203A .container .section3 .content:nth-child(2) h3 {
        bottom: 105px;
    }

    #sub0203A .container .section3 .content:last-child h3 {
        bottom: 60px;
    }

    #sub0203A .container .section4 {
        padding: 0 30px;
    }

    #sub0203A .container .section5 {
        padding: 0 60px 190px;
        flex-direction: column;
    }

    #sub0203A .container .section5 .imgs img {
        margin: 0;
        width: 100%;
    }

    .sub03 .container .top h1 {
        margin-left: 30px;
        font-size: 35px;
    }

    .sub03 .container .top .sub_nav ul {
        flex-direction: column;
        padding: 0;
        border: none;
    }

    .sub03 .container .top .sub_nav ul li {
        width: 100%;
    }

    /* .sub03 .container .top .sub_nav ul li:nth-child(4) {
        display: none;
    } */

    .sub03 .container .section1 {
        padding: 0 30px;
    }

    #sub0301 .container .section2 {
        padding: 0 30px 120px;
    }

    #sub0301 .container .section2 .steps .step .choice {
        width: 100%;
        padding: 30px;
    }

    #sub0301 .container .section2 .steps .step .buttons {
        flex-direction: column-reverse;
    }

    #sub0301 .container .section2 .steps .step .buttons .next-btn {
        margin-bottom: 20px;
        width: 100%;
    }

    #sub0301 .container .section2 .steps .step .buttons .prev-btn {
        width: 100%;
    }

    #sub0301 .container .section2 .steps .step.active {
        align-content: center;
    }

    #sub0301 .container .section2 .steps #step4 .result {
        width: 100%;
    }

    #sub0301 .container .section2 .steps #step4 .result a {
        width: 100%;
    }

    #sub0301 .container .section2 .steps #step4 .result a p {
        width: 100%;
    }

    #sub0301 .container .section2 .steps #step4 .result {
        padding: 30px;
    }

    #sub0301 .container .section2 .progress-step .stepper {
        width: 100%;
    }

    #sub0301 .container .section2 .steps #step4_4 .result {
        width: 100%;
    }

    #sub0301 .container .section2 .steps #step4_4 .result {
        padding: 30px;
    }

    #sub0301 .container .section2 .steps #step4_4 .result a {
        width: 100%;
    }

    #sub0301 .container .section2 .steps #step4_4 .result a p {
        width: 100%;
    }

    #sub0301 .container .section2 .progress-step .stepper .line {
        display: none;
    }

    #sub0302 .container .section2 {
        padding: 0 30px;
    }

    #sub0302 .container .section3 {
        padding: 0 30px 100px;
    }

    .sub03 .container .top .sub_nav ul li {
        width: 100% !important;
    }

    .sub03 .container .top .sub_nav ul li.slct:after {
        width: 100% !important;
    }

    .sub04 .container .top h1 {
        margin-left: 30px;
        font-size: 35px;
    }

    .sub04 .container .top .sub_nav ul {
        flex-direction: column;
        padding: 0;
        border: none;
    }

    .sub04 .container .top .sub_nav ul li {
        width: 100% !important;
    }

    .sub04 .container .top .sub_nav ul li.slct:after {
        width: 100% !important;
    }

    .sub04 .container .top .sub_nav ul li:nth-child(3) {
        display: none;
    }

    .sub04 .container .section1 {
        padding: 0 30px 50px;
    }

    .sub05 .container .top h1 {
        margin-left: 30px;
        font-size: 35px;
    }

    .sub05 .container .top .sub_nav ul {
        flex-direction: column;
        padding: 0;
        border: none;
    }

    .sub05 .container .top .sub_nav ul li {
        width: 100% !important;
    }

    .sub05 .container .top .sub_nav ul li:nth-child(3) {
        display: none;
    }

    .sub05 .container .top .sub_nav ul li.slct:after {
        width: 100% !important;
    }

    .sub05 .container .section1 {
        padding: 0 30px;
    }

    #bo_list {
        margin-top: 50px;
    }

    #footer .top {
        padding: 30px 30px 25px;
    }
    
    #footer .top .right .marks {
        width: 225px;
        margin-bottom: 30px;
    }

    #footer .top .right .marks img {
        margin-bottom: 10px;
    }

    #footer .bottom {
        padding: 18px 30px;
    }

    .wrap .sub_nav.en ul li {
        width: 100% !important;
    }
}