@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900;6..12,1000&display=swap');

html,
body,
button,
select,
input[type=text] {
    font-family: 'SUIT', sans-serif;
}

.nu {
    font-family: 'Nunito Sans', sans-serif;
}

body {
    background: #C4C2C5;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

* {
    font-weight: 400 !important;
}


html {
    height: 100%;
}

* {
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
}

.blind {
    position: absolute;
    text-indent: -99999999999px
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.flex-a {
    align-items: center;
}

.flex-j {
    justify-content: space-between;
}

.flex-c {
    flex-direction: column;
}


/*******************************************************************************
        디폴트 변경
    *******************************************************************************/

/* 스크롤바 */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background: white;
    /* border-radius: 0 1rem 1rem 0; */
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: block;
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff00;
}

::-webkit-scrollbar-thumb {
    background: #5b5b5b;
    border-radius: 10px;
}

/* 셀렉트 */

select {
    -webkit-appearance: none;
    /* for chrome */
    -moz-appearance: none;
    /*for firefox*/
    appearance: none;
    cursor: pointer;
    transition: .3s;
}

select {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 0 15px;
    outline: none;
}

select {
    background: url(../img/select.png) no-repeat 95% 50%/8px auto, transparent;
    transition: .3s;
}

select:after {
    content: '▼';
    display: block;
    position: absolute;
}

.selectCont.on svg path {
    fill: #3768f3;
}

.spaceBetween {
    justify-content: space-between;
}

.selectCont.on .inputBadgeCont {
    border: .5px solid #3768f3;
}

/* for select bropdown */

.texts,
.options,
.inputBadgeCont,
.removeSearch {
    cursor: pointer;
}

.options {
    display: block;
}

.options.selected {
    background-color: #f4f4f4;
    color: #3768f3;
    font-weight: 600;
}

.dropdownsSelect {
    border: .5px solid #DADCE0;
    visibility: hidden;
}

.dropdownsSelect span {
    border-bottom: solid .5px #e0e0e0;
    padding: 10px 15px;
}

.dropdownsSelect span:hover {
    background-color: #eff3ff;
}

.dropdownsSelect span:last-child {
    margin-bottom: 0;
}

.dropdownsSelect.selectOpen {
    height: 294px;
    overflow: auto;
    border: .5px solid #DADCE0;
    visibility: visible;
}

.selectOpen::-webkit-scrollbar-thumb {
    background: #888;
}

.dropdownsSelect {
    height: 0;
    overflow: hidden;
    transition: 0.3s;
    background-color: #ffff;
    box-shadow: 0px 1px 10px 0 rgb(155 155 155 / 30%);
    position: absolute;
    width: 100%;
    top: 42px;
    z-index: 99;
    border-radius: 20px;
}

.itemCenter {
    align-items: center;
}

.input-default {
    padding-left: 14px;
}

.aeroIcon {
    transition: 0.4s;
}

.aeroIcon img {
    width: 18px;
    height: 10px;
}

.aeroIcon.rotate {
    transform: rotate(-180deg);
}

.inputBadgeCont,
.options {
    padding: 13px 14px;
}

.inputBadgeCont {
    border: .5px solid #e0e0e0;
    background: white;
    border-radius: 20px;
    width: 160px;
}

.selectCont {
    /* margin: 40px 0px; */
    position: relative;
}

.main_cont select {
    width: 100%;
    height: 52px;
    background-color: unset;
}

.main-right-search-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}


/*******************************************************************************
        헤더
    *******************************************************************************/


/* 메뉴 : 슬라이드 메뉴 */
.btnMenu_m {
    display: none;
}

#menuArea {
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    transition: 0s;
}

#menuArea .mlogo {
    background: #C4C2C5;
    overflow: hidden;
    clear: both;
    padding: 20px;
    /* border-bottom: 1px solid #ddd; */
    margin: 0 auto;
    text-align: center;
}

#menuArea .mlogo img {
    width: 160px;
}

#menuArea .menuList {
    width: 100%;
    /* max-width: 500px; */
    /* min-width: 220px; */
    max-width: 100%;
    min-height: 100%;
    background: #C4C2C5;
    position: absolute;
    right: -528px;
    box-sizing: border-box;
    overflow-y: auto;
    /* box-shadow: -2px 0 2px rgba(0, 0, 0, 0.8); */
}

#menuArea .menuList > .list {
    /* background-color: #fff; */
}

#menuArea .menuList > .list > li {
    /* background: #fff; */
    overflow: hidden;
}

#menuArea .menuList > .list > li.active > a {
    background: url(../../resources/img/mallcate_up.png) no-repeat right 18px center, #333 !important;
    color: #fff !important;
    font-family: 'Nunito Sans';
    border-bottom: .5px solid #ddd;
}

#menuArea .menuList > .list > li > a {
    padding: 0 0 0 18px;
    background: #C4C2C5;
    padding: 13px 0;
    display: block;
    font-size: 18px;
    line-height: 100%;
    /* border-bottom: .5px solid #000; */
    color: #333;
    letter-spacing: -0.5pt;
    font-family: 'Nunito Sans';
    font-weight: 500 !important;
    text-align: center;
}

#menuArea .menuList > .list > li.icon02 > a {
    background: #fff;
}

#menuArea .menuList > .list .sMenu {
    background-color: #ffffff;
    position: relative;
    width: 100%;
    padding: 10px 0;
    display: none;
    border-bottom: .5px solid #ddd;
    transition: 0s;
}

#menuArea .menuList > .list .sMenu > li {}

#menuArea .menuList > .list .sMenu > li > a {
    display: block;
    background: url('../../resources/img/menudot2.gif') left center no-repeat;
    padding: 5px 0;
    border: none;
    font-size: 18px;
    /* letter-spacing: -0.5pt; */
    color: #666;
    text-align: center;
    font-weight: 400 !important;
}

#menuArea .menuList .btnMenu_mClose {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 13px;
    background: #434343;
    color: #fff;
    /* letter-spacing: -0.75pt; */
    margin: 10px auto;
    border: none;
    content: none;
    border-radius: 100%;
    font-size: 24px;
}

#menuArea .menuList > .list > li.icon05 img {
    width: 60px;
}

#grayLayer {
    width: 100%;
    height: 100% !important;
    background: rgba(30, 30, 30, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}

#grayLayer > a {
    display: block;
    width: 100%;
    height: 100%
}

.sMeun_in {
    position: relative;
    margin-left: 13px
}

.sMeun_in a {
    color: #888
}

#menuArea * {
    box-sizing: unset;
}




header {
    position: fixed;
    padding: 40px 70px;
    width: 100%;
    z-index: 9;
    justify-content: center;
}

.header-left > a img {
    width: 160px;
}

button.btnMenu_mClose:after {
    content: "\e921";
    display: block;
    color: white;
    font-family: 'xeicon';
}


header,
header * {
    transition: .3s
}

.header-right > ul {
    gap: 70px;
    position: relative;
    right: 100px;
    top: 5px;
}

.header-right > ul > li {
    width: 110px;
}

.header-right > ul a span {
    font-weight: 300;
    transition: noe;
}

.header-right > ul > li:hover a span {
    font-weight: 700 !important;
    border-bottom: 2px solid #333;
}

.header-right > ul > li.on a span {
    font-weight: 700 !important;
    border-bottom: 2px solid #333;
}

header .header-right {
    position: relative;
}

.header-right .menu-sub > ul li:hover a {
    font-weight: 400 !important;
}

.header-right .menu-sub > ul li a {
    transition: none;
    font-weight: 200 !important;
    color: white;
}

.header-right .menu-sub-area {
    width: 730px;
    background: noe;
    height: 65px;
    position: absolute;
    top: 10px;
    left: -135px;
    z-index: -1;
}

.header-right .menu-sub {
    gap: 70px;
    width: 730px;
    /* height: 325px; */
    background: rgb(0 0 0 / 80%);
    display: flex;
    /* align-items: baseline; */
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    position: absolute;
    left: -150px;
    top: 65px;
    padding-left: 25px;
    opacity: 0;
    visibility: hidden;
}

.menu-sub-area {
    opacity: 0;
    visibility: hidden;
}

.header-right .menu-sub-area:hover + .menu-sub,
.header-right .menu-sub:hover,
.header-right > ul:hover + .menu-sub-area,
.header-right > ul:hover ~ .menu-sub {
    opacity: 1;
    visibility: visible;
}


.header-right .menu-sub > ul {
    width: 110px;
}

.header-right .menu-sub > ul li {
    margin-bottom: 15px;
}

.header-right .menu-sub > ul li:last-child {
    margin-bottom: 0;
}

.header-right .geo-btn {
    position: absolute;
    right: 0;
    display: block;
    top: 0;
}

.header-right .geo-btn img {
    width: 30px;
}


/*******************************************************************************
        메인
    *******************************************************************************/


#pp-nav > div i {
    opacity: .85;
    transition: .3s;
    font-weight: bolder !important;
}

#pp-nav > div:hover i {
    opacity: 1;
}

#pp-nav span,
.pp-slidesNav span {
    display: none;
}

#pp-nav li a {
    color: #666;
    font-size: 15px;
    width: 80px;
    transition: .3s;
}

#pp-nav li a:hover {
    color: #333;
    font-weight: 700 !important;
}

#pp-nav li:nth-child(1) a:after {
    content: 'Main';
    display: block;
}

#pp-nav li:nth-child(2) a:after {
    content: 'Function1';
    display: block;
}

#pp-nav li:nth-child(3) a:after {
    content: 'Function2';
    display: block;
}

#pp-nav li:nth-child(4) a:after {
    content: 'Function3';
    display: block;
}

#pp-nav li:nth-child(5) a:after {
    content: 'Reference';
    display: block;
}

#pp-nav li:nth-child(6) {
    display: none;
}

#pp-nav {
    right: 25px;
}

#pp-nav > ul {
    position: relative;
    right: 70px;
    text-align: right;
}

#pp-nav li {
    margin-bottom: 20px;
}

#pp-nav li a.active {
    color: #333;
    font-weight: 700 !important;
}

#pp-nav > div {
    cursor: pointer;
}

.section {
    /* opacity: 0 !important; */
    /* visibility: hidden; */
    display: none !important;
    left: 0;
    top: 0;
}

.section.active {
    /* opacity: 1 !important; */
    /* visibility: visible; */
    display: table !important;
}

.scroll-btn {
    position: fixed;
    bottom: 35px;
    justify-content: center;
    transform: translateX(-50%);
    left: 50%;
    line-height: 3;
    transition: .5s;
    opacity: 1;
    visibility: visible;
    z-index: 7;
}

.scroll-btn.on {
    opacity: 0;
    visibility: hidden;
}

.scroll-btn span {
    font-size: 15px;
    margin-bottom: 20px;
}

.scroll-btn * {
    width: 100%;
}

.scroll-btn i {
    font-size: 20px;
    animation: scrollAni 2.0s ease-in-out reverse;
    animation-iteration-count: infinite;
    -webkit-animation: scrollAni 2.0s ease-in-out reverse;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: scrollAni 2.0s ease-in-out reverse;
    -moz-animation-iteration-count: infinite;
    position: absolute;
    /* bottom: 45px; */
    /* bottom: 0; */
    font-size: 24px;
}

.contact-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #000;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    justify-content: center;
    z-index: 7;
    /* font-weight: 600 !important; */
    transition: .5s;
}

.contact-btn a span {
    color: #fff;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    font-weight: 600 !important;
}


.bro-btn a {
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bro-btn {
    position: fixed;
    right: 30px;
    bottom: 120px;
    background: #333;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    justify-content: center;
    z-index: 7;
    /* font-weight: 600 !important; */
    transition: .5s;
}

.bro-btn a span {
    color: #fff;
    font-size: 17px;
    text-align: center;
    font-weight: 600;
    font-weight: 600 !important;
}

.bro-btn:hover {
    border: 1px solid #333;
    background: transparent;
}

.bro-btn:hover span {
    color: #333;
}

.contact-btn a {
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-btn:hover {
    border: 1px solid #00000080;
    background: transparent;
}

.contact-btn:hover span {
    color: #000;
}

.contact-btn span {
    transition: .3s;
}

.home-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    justify-content: center;
    z-index: 7;
}

.home-btn a span {
    color: #000;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}


.home-btn a {
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-btn.on {
    position: fixed;
    right: 30px;
    bottom: 212px;
    background: none;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    justify-content: center;
    z-index: 7;
    visibility: visible;
    opacity: 1;
    transition: .5s;
    border: 1px solid #ffffff;
    /* color: white; */
    cursor: pointer;
    background: white;
}

.top-btn:hover {
    background: black;
    /* color: #000; */
    border: #000;
}

.top-btn:hover span i {
    color: white;
}

.top-btn * {
    transition: .3s;
}

.top-btn {
    transition: .5s;
    opacity: 0;
    visibility: hidden;
    bottom: 120px;
}

.top-btn span a {
    /* color: #000; */
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    color: white;
}

.top-btn span {
    font-weight: 600 !important;
}

.top-btn a {
    width: 100%;
    height: 100%;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600 !important;
}

.table_wrap {
    width: 100%;
}

table {
    width: 100%;
    border-top: 1px solid rgb(51 51 51 / 50%);
    border-bottom: 1px solid rgb(51 51 51 / 50%);
    text-align: center;
}

table th {
    border-bottom: 1px solid rgb(51 51 51 / 50%);
    padding: 20px 0;
}

table ul {
    line-height: 60px;
    height: 100%;
    /* display: flex; */
    /* align-items: center; */
    /* flex-direction: column; */
    /* margin-top: auto; */
    /* margin: 30px 0 !important; */
}

table td {
    vertical-align: baseline;
    /* height: 85px; */
    /* display: flex; */
}

table ul li {
    font-size: 22px;
}

table th img {
    width: auto;
}

.img_wrap {
    overflow: hidden;
    height: 100%;
}

/*******************************************************************************
     home
    *******************************************************************************/


.section .inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section .inner.on {
    background: red;
}

.section:nth-of-type(6) .inner {}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    /* opacity: .45; */
    min-height: 100%;
}



.section .bg-video video {
    /* opacity: 0; */
    visibility: hidden;
    /* transition: 2s; */
}

.section.active .bg-video video {
    /* opacity:0.4; */
    visibility: visible
}

.bg-video__content {
    /* height: 100%; */
    width: 100%;
    object-fit: cover;
    min-height: 100%;
}

.section .section_wrap {
    max-width: 1600px;
    max-height: 800px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.section .section_wrap h3 {
    font-size: 50px;
    font-weight: 200;
}



.section_con {
    height: calc(100% - 62px);
    display: flex;
    align-items: center;
    width: 100%;
}

.section .section_wrap h3 {
    margin-right: auto;
    flex: none;
    display: none;
}

.section:nth-child(1) .section_wrap h4 {
    margin-right: auto;
}

/* home - section1 */

.section:nth-child(1) .section_wrap {
    max-width: 1920px;
    width: 80%;
    max-height: unset;
    height: auto;
}

.section:nth-child(1) .section_wrap h3 {
    font-size: 65px;
    margin-bottom: 15px;
    /* margin-left: 15px; */
    display: block;
    font-weight: 700 !important;
}

.section:nth-child(1) .section_wrap h4 span {
    font-size: 14vh;
    font-style: italic;
    line-height: .9;
}

.section:nth-child(1) .section_wrap h4 span * {
    font-size: 14vh;
}



.section:nth-child(1) .section_wrap h4 span i {
    display: block;
    font-weight: 700 !important;
}


/* home - section2 */

.home .section:nth-child(2) ul.style-1 li > div {
    border-radius: 100%;
    /* border: 1px solid #ffffff80; */
    width: 475px;
    height: 250px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 2;
    font-size: 20px;
    /* font-size: 20px; */
    color: white;
}

.home .section:nth-child(2) ul.style-1:nth-child(1) li > div {
    background: rgb(0 0 0 / 50%);
}

.home .section:nth-child(2) ul:nth-of-type(1) li {
    display: flex;
    align-items: center;
    position: relative;
}

.home .section:nth-child(2) ul:nth-of-type(1) li span {
    font-size: 60px;
    font-weight: 200;
    position: absolute;
    width: 470px;
    left: 500px;
    display: flex;
    align-items: center;
}

.home .section:nth-child(2) ul:nth-of-type(1) li span small {
    font-size: 22px;
    font-family: 'Nunito Sans';
    margin-left: 10px;
}

.home .section:nth-child(2) ul.style-1 li h4 {
    font-size: 30px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 600 !important;
}

.home .section:nth-child(2) .section_con {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 40px;
    /* position: relative; */
    /* left: 330px; */
    /* margin-left: 25%; */
    /* margin-right: auto; */
    justify-content: end;
}

.home .section:nth-child(2) .section_con li {
    /* margin-bottom: 25px; */
}

.home .section:nth-child(2) .section_con li:nth-child(1) {
    /* margin-bottom: 0; */
}

.home .section:nth-child(2) .section_con li:last-child {
    margin: 0;
}

.home .section:nth-child(2) .section_con ul:nth-child(1) {
    /* margin-left: 200px; */
}

/* home - section3 */


.section:nth-child(3) ul div {
    border-radius: 100%;
    border: 1px solid #ffffff26;
    width: 725px;
    height: 250px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* line-height: 65px; */
    font-size: 40px;
    color: white;
    font-weight: 200 !important;
}



.section:nth-child(3) ul {
    gap: 2.3438vw;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.section:nth-child(3) ul li:nth-child(1) div {
    background: #000000B3;
    /* overflow: hidden; */
}

.section:nth-child(3) ul li:nth-child(2) div {
    background: #000000B3;
}

.section:nth-child(3) ul li:nth-child(3) div {
    background: #000000B3;
}

/* home - section4 */

.section:nth-child(4) img {
    /* width: 100%; */
    /* width: auto !important; */
    /* object-fit: unset; */
    /* height: auto !important; */
}


.section:nth-child(4) .img_wrap {
    /* position: fixed; */
    /* width: 100%; */
    /* height: 100%; */
    /* top: 0; */
    /* left: 50%; */
    /* width: 75%; */
    /* bottom: 0; */
    /* height: auto; */
    /* max-width: 2090px; */
    /* margin: 0 auto; */
    /* transform: translateX(-50%); */
    /* max-width: 1800px; */
    /* overflow: visible; */
}

.section:nth-child(4) .section_con {
    /* position: relative; */
    /* overflow: auto; */
}


/* home - section6 */

.section:nth-child(6) .section_con {
    flex-direction: column;
    /* display: flex; */
    align-items: end;
    justify-content: center;
}

.section:nth-child(6) .section_con p {
    margin-top: 60px;
    /* margin-bottom: 175px; */
    font-size: 60px;
    text-align: right;
    word-break: keep-all;
    font-weight: 500 !important;
    line-height: 1.4;
}

.section:nth-child(6) .section_con button a {
    font-size: 32px;
    width: 100%;
    height: 100%;
    display: block;
    padding: 20px;
    font-weight: 600 !important;
    color: #333;
    font-family: 'Nunito Sans';
}

.section:nth-child(6) .section_con button i {
    font-size: 30px;
    margin-left: 20px;
}

.section:nth-child(6) .section_con button:hover i {
    left: 10px;
    position: relative;
}

.section:nth-child(6) .section_con button i {
    transition: .3s;
    left: 0;
    position: relative;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgb(51 51 51 / 50%);
}

.footer-left {
    width: 30%;
    text-align: right;
    padding-right: 70px;
    border-right: 1px solid rgb(51 51 51 / 50%);
}

.footer > div {
    height: 100%;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-right {
    padding-left: 150px;
}

.footer-right ul {
    gap: 55px;
}

.footer-right li {
    font-size: 20px;
    font-family: 'Nunito Sans';
    display: flex;
    align-items: center;
}

.footer-left p {
    font-family: 'Nunito Sans';
    margin-top: 30px;
    font-size: 14px;
}

/*******************************************************************************
     contact
    *******************************************************************************/


main.contact {
    height: 100%;
    position: relative;
    z-index: 1;
}

main.contact .section_wrap {
    height: 100%;
}

.contact .section {
    height: 100%;
    opacity: 1 !important;
    visibility: visible;
}

.contact .section .section_wrap h3 {
    font-family: 'Nunito Sans';
}

.form_wrap {
    width: 100%;
    /* font-size: 20px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.li_wrap {
    /* width: 100%; */
}

.li_wrap {
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    border-right: .5px solid #707070;
}

.li_tit {
    width: 150px;
    text-align: center;
    border-right: .5px solid #707070;
    flex: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form_wrap * {
    font-size: 20px;
}

.form_wrap li {
    border-bottom: .5px solid #707070;
}

input[type="text"] {
    background: none;
    width: 100%;
    height: 100%;
    padding: 0 15px;
}

.li_con {
    width: 100%;
    height: 100%;
}

.form_wrap ul {
    border-top: .5px solid #707070;
    /* border-bottom: 1px solid #707070; */
    width: 100%;
}

.li_wrap:last-child {
    border: none;
}

input,
textarea {
    outline: none;
    font-size: 20px !important;
    font-family: 'SUIT';
}

textarea {
    background: none;
    width: 100%;
    border: none;
    height: 100%;
    border-bottom: .5px solid #707070;
    /* font-size: 20px; */
    padding: 15px;
    resize: none;
}

.contact button.btn-style {
    width: 160px;
    height: 45px;
    border: .5px solid white;
    border-radius: 35px;
    margin-top: 4.7059vw;
    font-size: 14px;
    transition: .3s;
}

button.btn-style:hover {
    background: white;
    color: #000;
}

.contact .section_con {
    /* justify-content: center; */
    /* align-items: center; */
    margin-top: 85px;
    width: 80%;
}

/*******************************************************************************
     sub
    *******************************************************************************/



main.sub {
    /*    height: 100%;*/
}

.sub table td {
    height: 70px;
    vertical-align: middle;
}

.sub tbody tr {
    border-bottom: 1px solid rgb(51 51 51 / 50%);
}


/* intro */
.intro h4 {
    font-size: 34px;
    margin-bottom: 60px;
    margin-top: 60px;
}

.intro .wrap_right img {
    width: 328px;
}

.sub_conetent {
    height: 100%;
    width: 100%;
    /* padding-top: 240px; */
}

.sub_header {
    width: 20%;
    border-right: 1px solid rgb(51 51 51 / 50%);
    /* margin-right: 60px; */
    padding-top: 200px;
    flex: none;
    position: fixed;
    top: 0;
    height: 100%;
}

.sub_header h3 {
    font-size: 50px;
    text-align: right;
    margin-right: 60px;
}

ul.side_menu a:hover {
    font-weight: 500 !important;
}

.sub_body {
    padding-top: 200px;
    width: calc(100% - 20%);
    padding-left: 200px;
    padding-right: 200px;
    margin-left: 20%;
}

.intro .text_wrap p {
    font-size: 18px;
    line-height: 30px;
    word-break: keep-all;
    /* font-weight: 500 !important; */
}

.intro h4 {
    /* font-family: 'Nunito Sans'; */
    /* font-size: 74px; */
    /* font-weight: 600 !important; */
}

.intro .text_wrap > b {
    font-size: 18px;
    margin-top: 140px;
    font-weight: 600 !important;
    display: block;
}

.intro .text_wrap p b {
    background: white;
    color: #000;
    padding: 5px;
    font-weight: 700 !important;
    font-size: 18px;
}

.intro .wrap_left .img_wrap img {
    /* max-width: 810px; */
    /* height: 965px; */
    /* overflow: hidden; */
    /* margin-left: 70px; */
    /* width: 100%; */
    /* flex: none; */
}

.intro .wrap_right {
    /* margin-left: 90px; */
}

/* tech */

.tech h4 {
    font-size: 34px;
    margin-bottom: 45px;
}

.sub table td,
.sub table th {
    font-size: 18px;
    word-break: keep-all;
    line-height: 1.4;
    padding: 15px 0;
}

.sub .wrap {
    margin-bottom: 80px;
}

/* product */

.product ul {
    line-height: 50px;
    /* vertical-align: middle; */
    height: auto;
}

.product ul li {
    font-size: 18px;
}

.product h4 {
    font-size: 34px;
    /* font-family: 'Nunito Sans'; */
    margin-bottom: 60px;
    /* margin-top: 60px; */
}


.product .wrap_left .img_wrap {
    max-width: 800px;
    /* height: 474px; */
    overflow: hidden;
}

.product .wrap_right {
    margin-left: 55px;
}

.product .wrap:nth-of-type(1) .wrap:nth-of-type(2) .img_wrap {
    /* height: 341px; */
    overflow: hidden;
    width: 100%;
}

.product .wrap:nth-of-type(3) .wrap .img_wrap {
    height: 655px;
    overflow: hidden;
}



.product .wrap:nth-of-type(2) .wrap .img_wrap {
    /* height: 650px; */
    overflow: hidden;
}

img {
    /* width: 100%; */
    object-fit: contain;
}

.sub img {
    width: 100%;
}

.product table ul {
    line-height: 30px;
    padding: 15px 0;
}

/* award */

.award h4 {
    font-size: 34px;
    margin-bottom: 60px;
}

/* how */

.sub_header ul {
    text-align: end;
    margin-right: 60px;
    margin-top: 120px;
}

.sub_header ul * {
    font-size: 22px;
    line-height: 40px;
}

.video_wrap {
    width: 100%;
    /* object-fit: contain; */
    max-width: 1800px;
}

.video_wrap video {
    width: 100%;
    display: block;
    object-fit: contain;
}

/* commu */

.commu h4 {
    font-size: 34px;
    padding-bottom: 60px;
    padding-left: 60px;
    /* border-bottom: 1px solid white; */
}

.commu .sub_body {
    padding-left: 0;
    padding-right: 200px;
}

.commu .wrap .img_wrap {
    /* width: 100%; */
    /* height: 100%; */
    /* display: flex; */
    /* flex-wrap: wrap; */
    display: flex;
    margin-bottom: 25px;
}

.commu h5 {
    /* font-size: 22px; */
    position: relative;
    /* background: black; */
    text-align: right;
    margin-bottom: 100px;
}

.commu h5:before {
    content: '';
    display: block;
    /* width: 100%; */
    height: .5px;
    width: 100%;
    background: rgb(51 51 51 / 50%);
    position: absolute;
    top: 50%;
}

.commu h5 span {
    font-size: 22px;
    background: #C4C2C5;
    z-index: 1;
    position: relative;
    padding-left: 20px;
}

.g40 {
    gap: 40px;
}

.commu .wrap {
    padding: 0 20vw;
    margin-bottom: 100px;
    padding-right: 0;
    flex-direction: column;
}

.sub.commu img {
    /* object-fit: cover; */
    /* height: 100%; */
    width: 100%;
}


.section table ul {
    margin: 25px 0 !important;
}

.section table th {
    padding: 35px 0;
}

.img_wrap.img_app {
    height: auto !important;
}

.img_wrap.img_app img {
    width: auto !important;
    margin-left: auto;
    display: flex;
    max-width: 100%;
}


ul.des_wrap li {
    /* position: absolute; */
    /* bottom: 0; */
    /* font-size: 1.3VW; */
    /* position: relative; */
    /* height: 100%; */
    width: 33.3%;
}

ul.des_wrap li:nth-of-type(1) .text_wrap {
    /* left: 11.5VW; */
    /* top: 31VW; */
}

ul.des_wrap li:nth-of-type(2) {
    /* left: 25VW; */
    /* top: 31VW; */
}

ul.des_wrap li:nth-of-type(3) {
    /* left: 46VW; */
    /* top: 31VW; */
}

span.dot {
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 100%;
    display: block;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    /* top: -85px; */
}



span.line {
    width: 1px;
    display: block;
    height: 70px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    /* top: -81px; */
    background: #333;
}




.mobile {
    display: none;
}

.pmobile {
    /* display: none; */
    width: 100%;
}

.wrap_right.img_size {
    /* margin: 0 !important; */
}

.wrap_right.img_size img {
    max-width: 760px;
}

.section:nth-child(1) .section_con {
    transition: none;
    opacity: 0;
    visibility: hidden;
    top: 100px;
    position: relative;
}

.section:nth-child(3) .section_con {
    transition: none;
    opacity: 0;
    visibility: hidden;
    top: 100px;
    position: relative;
}

.section:nth-child(4) .section_con li {
    transition: none;
    opacity: 0;
    visibility: hidden;
    top: 100px;
    position: relative;
}

.section:nth-child(5) .section_con {
    transition: none;
    opacity: 0;
    visibility: hidden;
    top: 100px;
    position: relative;
}


.section:nth-child(6) .section_con {
    transition: none;
    opacity: 0;
    visibility: hidden;
    top: 100px;
    position: relative;
}


.section:nth-child(2).active .section_con .ul-sub {
    transition: none;
    opacity: 0;
    visibility: hidden;
    top: 100px;
    position: relative;
}

.section:nth-child(1).active .section_con {
    opacity: 1;
    visibility: visible;
    top: 0;
    animation: fadeInUpSmall 0.7s .8s both;
    -webkit-animation: fadeInUpSmall 0.7s .8s both;
    -moz-animation: fadeInUpSmall 0.7s .8s both;
}

.section:nth-child(2).active .section_con li:nth-child(1) .ul-sub {

    opacity: 1;
    visibility: visible;
    top: 0;

    animation: fadeInUpSmall 0.7s .8s both;
    -webkit-animation: fadeInUpSmall 0.7s .8s both;
    -moz-animation: fadeInUpSmall 0.7s .8s both;

}

.section:nth-child(2).active .section_con li:nth-child(2) .ul-sub {

    opacity: 1;
    visibility: visible;
    top: 0;

    animation: fadeInUpSmall 0.7s 1.1s both;
    -webkit-animation: fadeInUpSmall 0.7s 1.1s both;
    -moz-animation: fadeInUpSmall 0.7s 1.1s both;

}

.section:nth-child(2).active .section_con li:nth-child(3) .ul-sub {

    opacity: 1;
    visibility: visible;
    top: 0;

    animation: fadeInUpSmall 0.7s 1.4s both;
    -webkit-animation: fadeInUpSmall 0.7s 1.4s both;
    -moz-animation: fadeInUpSmall 0.7s 1.4s both;

}

.section:nth-child(3).active .section_con {
    opacity: 1;
    visibility: visible;
    top: 0;
    animation: fadeInUpSmall 0.7s .8s both;
    -webkit-animation: fadeInUpSmall 0.7s .8s both;
    -moz-animation: fadeInUpSmall 0.7s .8s both;
}


.section:nth-child(4).active .section_con li:nth-child(1) {

    opacity: 1;
    visibility: visible;
    top: 0;

    animation: fadeInUpSmall 0.7s .8s both;
    -webkit-animation: fadeInUpSmall 0.7s .8s both;
    -moz-animation: fadeInUpSmall 0.7s .8s both;

}

.section:nth-child(4).active .section_con li:nth-child(2) {

    opacity: 1;
    visibility: visible;
    top: 0;

    animation: fadeInUpSmall 0.7s 1.1s both;
    -webkit-animation: fadeInUpSmall 0.7s 1.1s both;
    -moz-animation: fadeInUpSmall 0.7s 1.1s both;

}

.section:nth-child(4).active .section_con li:nth-child(3) {

    opacity: 1;
    visibility: visible;
    top: 0;

    animation: fadeInUpSmall 0.7s 1.4s both;
    -webkit-animation: fadeInUpSmall 0.7s 1.4s both;
    -moz-animation: fadeInUpSmall 0.7s 1.4s both;

}

.section:nth-child(5).active .section_con {
    opacity: 1;
    visibility: visible;
    top: 0;
    animation: fadeInUpSmall 0.7s .8s both;
    -webkit-animation: fadeInUpSmall 0.7s .8s both;
    -moz-animation: fadeInUpSmall 0.7s .8s both;
}


.section:last-of-type.active .section_con {
    opacity: 1;
    visibility: visible;
    top: 0;
    animation: fadeInUpSmall 0.7s .3s both;
    -webkit-animation: fadeInUpSmall 0.7s .3s both;
    -moz-animation: fadeInUpSmall 0.7s .3s both;
}

.pp-easing {
    /* transition: .3s !Important; */
    transition: none;
}


@keyframes fadeInUpSmall {
    from {
        opacity: 0;
        top: 100px;
    }

    to {
        opacity: 1;
        top: 0;
    }
}


@-webkit-keyframes fadeInUpSmall {
    from {
        opacity: 0;
        top: 100px;
    }

    to {
        opacity: 1;
        top: 0;
    }
}

@-moz-keyframes fadeInUpSmall {
    from {
        opacity: 0;
        top: 100px;
    }

    to {
        opacity: 1;
        top: 0;
    }
}



.section:nth-of-type(1) .section_wrap {
    transition: .9s;
    opacity: 0;
    visibility: hidden;
    top: 100px;
    position: relative;
}


.section:nth-of-type(1).active .section_wrap {
    opacity: 1;
    visibility: visible;
    top: 0;
    animation: fadeInUpSmall 0.7s .3s both;
}

.section:nth-child(1) .section_wrap h4 span:nth-of-type(2) * {
    font-size: 50px;
    font-weight: 300 !important;
}

.section:nth-of-type(4) .img_wrap {
    /* transition: .9s; */
    /* opacity: 0; */
    /* visibility: hidden; */
    /* top: 100px; */
    /* position: fixed; */
    /* height: 100%; */
    /* transform: translateY(100%); */
}

.section:nth-of-type(4).active .img_wrap {
    /* opacity: 1; */
    /* visibility: visible; */
    /* top: 0; */
    /* animation: fadeInUpSmall 0.7s .3s both; */
    /* height: 100%; */
    /* transform: translateY(33%); */
    /* top: 50%; */
}

.menuList .geo-btn {
    margin: 15px auto 20px;
    width: 100%;
    display: block;
    text-align: center;
}


.fpmobile img {
    max-height: 940px !important;
    width: auto !important;
}

.section:nth-child(4) .fpmobile img {
    opacity: 0;
    visibility: hidden;
    top: 100px;
    position: relative;
    /* width: 80%; */
}

.section:nth-child(4).active .fpmobile img:first-child {
    animation: fadeInUpSmall 0.7s .3s both;
}

.section:nth-child(4).active .fpmobile img:nth-child(2) {
    animation: fadeInUpSmall 0.7s .7s both;
}

.section:nth-child(4).active .fpmobile img:last-child {
    max-height: 750px !important;
    animation: fadeInUpSmall 0.7s 1s both;
    transform: translateY(-110px);
}

.section:nth-child(4).active .fpmobile img {
    visibility: visible;
}

.fpmobile.flex {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    justify-content: center;
    transform: translateY(50px);
    gap: 5%;
}

.bg-img {
    /* display: none; */
}

.ef_slide {
    gap: 100px;
    justify-content: center;
}

.ef_slide * {
    font-size: 20px;
}

.ef_slide li {
    width: 100px;
    text-align: center;
    /* border: 1px solid red; */
}

.ef_slide li a:hover {
    font-weight: 300 !important;
}

.img_text_wrap {
    justify-content: space-between;
}


.tech .img_wrap img {
    max-width: 470px;
    width: 100%;
}

.tech .img_wrap {
    /* flex: none; */
    margin-left: 0;
    height: auto;
}

.home .section:nth-child(2) ul.style-1 li > div {
    background: rgb(255 255 255 / 15%);
}

.product table ul li {
    font-size: 18px;
}

ul.ul-sub * {
    font-size: 20px;
}

ul.ul-sub li:before {
    width: 5px;
    height: 5px;
    background: #333;
    display: block;
    /* content: ''; */
    border-radius: 100%;
    margin-right: 10px;
    flex: none;
}

ul.ul-sub {
    /* margin-left: 100px; */
    line-height: 1.8;
}

.section:nth-of-type(5) .bg-video:before {
    background: #C4C2C5;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: block;
    content: '';
    opacity: .7;
}

.box_wrap {
    height: 580px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    width: 100%;
    border-top: 1px solid rgb(51 51 51 / 50%);
    border-bottom: 1px solid rgb(51 51 51 / 50%);
}

.box_wrap ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.footer-left img {
    width: 110px;
}

.sub * {
    color: #333;
    font-weight: 400 !important;
}

.intro .sub_body > .wrap:nth-of-type(2) .img_wrap img {
    max-width: 1260px;
}

.intro .sub_body > .wrap:nth-of-type(2) .img_wrap {
    margin: 0 auto;
    text-align: center;
}


.sub_body > .wrap:nth-of-type(3) .img_wrap img {
    max-width: 1560px;
    /* width: 1000px; */
}

.sub_body > .wrap:nth-of-type(3) .img_wrap {
    margin: 0 auto;
    text-align: center;
    overflow-x: auto;
}

.tech .wrap ul {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1500px;
}

.tech .wrap ul li:nth-of-type(odd) {
    margin-right: 120px;
}

.tech .text_wrap {
    text-align: left;
    margin-top: 30px;
}

.tech .text_wrap h5 {
    font-size: 23px;
    font-weight: 700 !important;
    margin-bottom: 15px;
}

.tech .text_wrap p {
    font-size: 18px;
}

.tech .wrap ul li {
    margin-bottom: 75px;
    width: 40%;
    /* text-align: center; */
    /* flex: none; */
}


.product .img_wrap img {
    max-width: 700px;
    /* flex: none; */
}

.product .img_wrap {
    flex: none;
    margin-left: 130px;
}

ul.des_wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 100%;
}

.arrow {
    position: relative;
    top: -85px;
}

.des_wrap h4 {
    font-size: 32px;
    font-weight: 700 !important;
    text-align: center;
    margin-bottom: 10px;
}

.section:nth-child(4) .section_con li .img_wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    /* margin-bottom: 81px; */
}

.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    /* padding-top: 30px; */
    height: 0;
    overflow: hidden;
}

.video-wrap iframe,
.video-wrap object,
.video-wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.menuList .geo-btn img {
    height: 30px !important;
}

.intro .wrap_left {
    max-width: 810px;
    margin-left: 70px;
    flex: none;
    width: 100%;
    /* display: flex; */
    /* align-items: end; */
}


.award td {
    line-height: 1.4;
}

ul.ul-sub li {
    word-break: keep-all;
}

.section:nth-of-type(4) video.bg-video__content {
    /* object-fit: contain; */
}

.section .section_wrap h3:first-child {
    margin: 0 auto;
}

.section:nth-of-type(1) .section_wrap p {
    width: 100%;
    font-size: 28px;
    margin-bottom: 15px;
}

li.h4:before {
    content: none !important;
}

.ul-sub li.h4,
.ul-sub li * {
    font-size: 32px;
    font-weight: bold !important;
}

.ul-sub li i {
    margin-left: 20px;
}

ul.style-1 > li {
    /* margin-bottom: 80px; */
    margin: 0 auto;
}

.section:nth-of-type(2) .bg-video:before {
    background: #C4C2C5;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: block;
    content: '';
    opacity: .7;
}

.section:nth-of-type(3) .bg-video:before {
    background: #C4C2C5;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: block;
    content: '';
    opacity: .7;
}

.section:nth-of-type(4) .bg-video:before {
    background: #C4C2C5;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    display: block;
    content: '';
    opacity: .7;
}

.section:nth-child(3) ul div i {
    color: white;
    font-size: 22px;
    margin-top: 15px;
}

.section:nth-child(3) ul div {
    display: flex;
    flex-direction: column;
}

ul.omly {
    /* display: none; */
}

.omly li {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 2vh;
}



ul.omly .text_wrap {
    width: 100%;
}

.omly li:last-child {
    margin-bottom: 0;
}



ul.omly h4 {
    font-weight: 700 !important;
    margin-bottom: 5px;
}



ul.omly h4 {
    font-weight: 700 !important;
    margin-bottom: 5px;
}

.box_wrap h4 {
    text-align: center;
    font-size: 18px;
    /* margin-top: 100px; */
}

.box_wrap li {
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section:nth-child(6) .section_con p + span {
    margin-bottom: 175px;
    font-size: 30px;
    margin-top: 15px;
}

.home .section:nth-child(2) .section_con > ul > li {
    margin-bottom: 80px;
}

.sub h4 i {
    font-size: 34px;
    margin-left: 10px;
}


.tech .text_wrap h5:nth-of-type(2) {
    margin-top: 30px;
}

.sub.tech .wrap {
    justify-content: center;
}

ul.ul-sub {
    /* text-align: center; */
    /* width: 100%; */
}

ul.ul-sub li {
    justify-content: center;
    /* text-align: center; */
    display: block !important;
}

.dott {
    width: 5px;
    height: 5px;
    background: #333;
    display: inline-block;
    border-radius: 100%;
    margin-right: 10px;
    flex: none;
    margin-bottom: 2px;
}


.sub.intro .sub_body .wrap:nth-of-type(2) {
    margin-bottom: 300px;
}

.commu .wrap .img_wrap img {
    width: 50%;
}

.gap25 {
    gap: 25px;
}

.commu .wrap .img_wrap:last-child {
    margin-bottom: 0;
}

.section:nth-child(4) .section_con .des_wrap .img_wrap {
    margin-bottom: 81px;
}

.des_wrap p {
    font-size: 22px;
    text-align: center;
}

.intro .text_wrap p.nu {
    font-weight: 500 !important;
}

/*******************************************************************************
     반응형 (1920px)  여기부터
    *******************************************************************************/


@media all and (max-width:2200px) {
    .fpmobile img {
        max-height: 41vw !important;
    }


    .section:nth-child(4).active .fpmobile img:last-child {
        max-height: 32vw !important;
    }


    .tech .img_wrap {}

    .tech .img_wrap img {
        height: 100%;
        max-width: 26vw;
    }

    .intro .wrap_left {
        max-width: 600px;
        margin-left: 30px;
        flex: none;
        width: 100%;
    }

    .product .img_wrap {
        flex: none;
        margin-left: 5%;
    }

    .product .img_wrap img {
        max-width: 630px;
        /* flex: none; */
    }

}


@media all and (max-width:1920px) {
    .sub h4 i {
        font-size: 1.7708vw;
    }

    .section:nth-child(6) .section_con p + span {
        font-size: 2.125vw;
    }

    .section:nth-child(3) ul div i {
        font-size: 1.2vw;
    }

    .section:nth-of-type(1) .section_wrap p {
        font-size: 1.4583vw;
    }

    .intro .wrap_left {
        max-width: 600px;
        margin-left: 30px;
        flex: auto;
        width: 100%;
    }


    .box_wrap img {
        width: 90%;
    }

    .section:nth-child(1) .section_wrap h4 span:nth-of-type(2) * {
        font-size: 2.5vw;
    }

    .tech .img_wrap img {
        max-width: 30vw;
    }

    .section table th {
        padding: 25px 0;
    }

    .section table ul {
        line-height: 40px;
        margin: 15px 0 !important;
    }

    .product .text_wrap br {
        /* display: none; */
    }

    .wrap_right.img_size {
        flex: none;
    }


    .wrap_right.img_size img {
        max-width: 800px;
        /* float: none; */
        /* flex: none; */
    }

    .table_wrap {
        width: 100%;
    }

    table {
        width: 100%;
        border-top: 1px solid rgb(51 51 51 / 50%);
        border-bottom: 1px solid rgb(51 51 51 / 50%);
        text-align: center;
    }

    table th {
        border-bottom: 1px solid rgb(51 51 51 / 50%);
        padding: 1.5625vw 0;
        word-break: keep-all;
    }

    table ul {
        line-height: 3.1250vw;
        height: 100%;
        /* display: flex; */
        /* align-items: center; */
        /* flex-direction: column; */
        /* margin-top: auto; */
        margin: 0.0000vw 0;
    }

    table td {
        vertical-align: baseline;
        /* height: 4.4271vw; */
        /* display: flex; */
    }

    table ul li {
        font-size: 1.1458vw;
    }

    table th img {
        width: 70%;
        max-width: 100%;
    }

    .img_wrap {
        overflow: hidden;
        height: 100%;
    }

    /*******************************************************************************
     home
    *******************************************************************************/


    .section .inner {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bg-video {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: -1;
    }

    .bg-video__content {
        /* height: 100%; */
        width: 100%;
        object-fit: cover; //
    }

    .section .section_wrap {
        max-width: 83.3333vw;
        max-height: 41.6667vw;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .section .section_wrap h3 {
        font-size: 2.6042vw;
        font-weight: 200;
    }



    .section_con {
        height: calc(100% - 3.2292vw);
        display: flex;
        align-items: center;
        width: 100%;
    }

    .section .section_wrap h3 {
        margin-right: auto;
        flex: none;
    }

    .section:nth-child(1) .section_wrap h4 {
        margin-right: auto;
    }

    /* home - section1 */

    .section:nth-child(1) .section_wrap {
        max-width: 100.0000vw;
        width: 80%;
        max-height: unset;
        height: auto;
    }

    .section:nth-child(1) .section_wrap h3 {
        font-size: 3.3854vw;
        margin-bottom: 0.7813vw;
        /* margin-left: 0.7813vw; */
    }

    .section:nth-child(1) .section_wrap h4 span {
        font-size: 9vw;
        font-style: italic;
        line-height: .9;
    }

    .section:nth-child(1) .section_wrap h4 span * {
        font-size: 8vw;
    }

    /* home - section2 */

    .home .section:nth-child(2) ul.style-1 li > div {
        border-radius: 100%;
        /* border: 1px solid #ffffff80; */
        width: 21.9792vw;
        height: 11.9792vw;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
        line-height: 2;
        font-size: 1.0417vw;
        /* font-size: 1.0417vw; */
    }

    .home .section:nth-child(2) ul:nth-of-type(2) li {
        display: flex;
        align-items: center;
        position: relative;
    }

    .home .section:nth-child(2) ul:nth-of-type(2) li span {
        font-size: 3.1250vw;
        font-weight: 200;
        position: absolute;
        width: 24.4792vw;
        left: 26.0417vw;
        display: flex;
        align-items: center;
    }

    .home .section:nth-child(2) ul:nth-of-type(2) li span small {
        font-size: 1.1458vw;
        font-family: 'Nunito Sans';
        margin-left: 0.5208vw;
    }

    .home .section:nth-child(2) ul.style-1 li h4 {
        font-size: 1.5625vw;
        text-align: center;
        width: 100%;
        margin-bottom: 1.0417vw;
    }

    .home .section:nth-child(2) .section_con {
        display: flex;
        align-items: center;
        /* justify-content: center; */
        gap: 2.0833vw;
        /* position: relative; */
        /* left: 17.1875vw; */
        /* margin-left: 25%; */
        /* margin-right: auto; */
    }

    .home .section:nth-child(2) .section_con li {
        /* margin-bottom: 1.3021vw; */
        font-size: 1.0417vw;
    }

    .home .section:nth-child(2) .section_con li .h4,
    .home .section:nth-child(2) .section_con li .h4 * {
        /* margin-bottom: 0; */
        font-size: 1.5vw;
    }

    .home .section:nth-child(2) .section_con li:last-child {
        margin: 0;
    }

    .home .section:nth-child(2) .section_con ul:nth-child(1) {
        margin-left: 10.4167vw;
    }

    /* home - section3 */


    .section:nth-child(3) ul div {
        border-radius: 100%;
        /* border: 1px solid #ffffff80; */
        width: 36.6162vw;
        height: 12.6263vw;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* line-height: 2; */
        font-size: 1.8vw;
    }



    .section:nth-child(3) ul {
        /* gap: 2.8646vw; */
    }

    .section:nth-child(3) ul li:nth-child(1) div {
        /* background: #000000BF; */
    }

    .section:nth-child(3) ul li:nth-child(2) div {
        /* background: #00000080; */
    }

    .section:nth-child(3) ul li:nth-child(3) div {
        /* background: #0000004D; */
    }

    /* home - section4 */

    .section:nth-child(4) img {
        /* width: 100%; */
    }

    .section:nth-child(4) .img_wrap {
        /* width: 100%; */
    }

    /* home - section6 */

    .section:nth-child(6) .section_con {
        flex-direction: column;
        /* display: flex; */
        align-items: end;
        justify-content: center;
    }

    .section:nth-child(6) .section_con p {
        margin-top: 3.1250vw;
        margin-bottom: 5.1146vw;
        font-size: 3.1250vw;
        text-align: right;
    }

    .section:nth-child(6) .section_con button a {
        font-size: 1.6667vw;
    }

    .section:nth-child(6) .section_con button i {
        font-size: 1.5625vw;
        margin-left: 1.0417vw;
    }

    .footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 9.8958vw;
        display: flex;
        align-items: center;
        border-top: 1px solid rgb(51 51 51 / 50%);
    }

    .footer-left {
        width: 30%;
        text-align: right;
        padding-right: 3.6458vw;
        border-right: 1px solid rgb(51 51 51 / 50%);
    }

    .footer > div {
        height: 100%;
        align-items: flex-end;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-right {
        padding-left: 7.8125vw;
    }

    .footer-right ul {
        gap: 2.8646vw;
    }

    .footer-right li {
        font-size: 1.0417vw;
        font-family: 'Nunito Sans';
    }

    .footer-left p {
        font-family: 'Nunito Sans';
        margin-top: 1.5625vw;
    }

    /*******************************************************************************
     contact
    *******************************************************************************/


    main.contact {
        height: 100%;
        position: relative;
        z-index: 1;
    }

    main.contact .section_wrap {
        height: 100%;
    }

    .contact .section {
        height: 100%;
        opacity: 1 !important;
        visibility: visible;
    }

    .contact .section .section_wrap h3 {
        font-family: 'Nunito Sans';
    }

    .form_wrap {
        width: 100%;
        /* font-size: 1.0417vw; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .li_wrap {
        /* width: 100%; */
    }

    .li_wrap {
        display: flex;
        width: 100%;
        height: 3.1250vw;
        align-items: center;
        border-right: .5px solid #707070;
    }

    .li_tit {
        width: 7.8125vw;
        text-align: center;
        border-right: .5px solid #707070;
        flex: none;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form_wrap * {
        font-size: 1.0417vw;
    }

    .form_wrap li {
        border-bottom: .5px solid #707070;
    }

    input[type="text"] {
        background: none;
        width: 100%;
        height: 100%;
        padding: 0 0.7813vw;
    }

    .li_con {
        width: 100%;
        height: 100%;
    }

    .form_wrap ul {
        border-top: .5px solid #707070;
        /* border-bottom: .5px solid #707070; */
        width: 100%;
    }

    .li_wrap:last-child {
        border: none;
    }

    input,
    textarea {
        outline: none;
        font-size: 1.0417vw !important;
        font-family: 'SUIT';
    }

    textarea {
        background: none;
        width: 100%;
        border: none;
        height: 100%;
        border-bottom: .5px solid #707070;
        /* font-size: 1.0417vw; */
        padding: 0.7813vw;
        resize: none;
    }

    .contact button.btn-style {
        width: 8.5938vw;
        height: 2.6042vw;
        border: .5px solid white;
        border-radius: 1.8229vw;
        margin-top: 4.1667vw;
    }

    .contact .section_con {
        /* justify-content: center; */
        /* align-items: center; */
        margin-top: 4.4271vw;
        width: 80%;
    }

    /*******************************************************************************
     sub
    *******************************************************************************/



    main.sub {
        /*        height: 100%;*/
    }

    .sub table td {
        height: 3.4271vw;
        vertical-align: middle;
    }

    .sub tbody tr {
        border-bottom: 1px solid rgb(51 51 51 / 50%);
    }


    /* intro */

    .sub_conetent {
        height: 100%;
        width: 100%;
        /* padding-top: 12.5000vw; */
    }

    .sub_header {
        width: 20%;
        border-right: 1px solid rgb(51 51 51 / 50%);
        /* margin-right: 3.1250vw; */
        padding-top: 10.4167vw;
        flex: none;
        position: fixed;
        top: 0;
        height: 100%;
    }

    .sub_header h3 {
        font-size: 2vw;
        text-align: right;
        margin-right: 3.1250vw;
    }

    .sub_body {
        padding-top: 10.4167vw;
        width: calc(100% - 20%);
        padding-left: 3.1250vw;
        padding-right: 3.1250vw;
        margin-left: 20%;
    }

    .intro .text_wrap p {
        font-size: 0.9375vw;
        line-height: 1.6vw;
    }

    .intro h4 {
        /* font-family: 'Nunito Sans'; */
        /* font-size: 3.8542vw; */
        font-weight: 600;
        font-size: 1.7708vw;
    }

    .intro .text_wrap > b {
        font-size: 0.9375vw;
        margin-top: 6.2917vw;
        display: block;
    }

    .intro .text_wrap p b {
        font-size: 0.9375vw;
        background: white;
        color: #000;
        padding: 0.2604vw;
    }

    .intro .wrap_left .img_wrap {
        /* width: 33.3333vw; */
        /* height: 50.2604vw; */
        overflow: hidden;
    }

    .intro .wrap_right {
        /* margin-left: 4.6875vw; */
    }

    /* tech */

    .tech h4 {
        font-size: 1.7708vw;
        margin-bottom: 2.3438vw;
    }

    .sub table td,
    .sub table th {
        font-size: 18px;
    }

    .sub .wrap {
        /* margin-bottom: 4.1667vw; */
    }

    /* product */

    .product ul {
        line-height: 2.6042vw;
        /* vertical-align: middle; */
        height: auto;
    }

    .product ul li {
        font-size: 0.9375vw;
    }

    .product h4 {
        font-size: 1.7708vw;
        /* font-family: 'Nunito Sans'; */
        margin-bottom: 3.1250vw;
        /* margin-top: 3.1250vw; */
    }


    .product .wrap_left .img_wrap {
        width: 44.1146vw;
        /* height: 24.6875vw; */
        overflow: hidden;
    }

    .product .wrap_right {
        margin-left: 2.8646vw;
    }

    .product .wrap:nth-of-type(1) .wrap:nth-of-type(2) .img_wrap {
        /* height: 17.7604vw; */
        overflow: hidden;
        width: 100%;
    }

    .product .wrap:nth-of-type(3) .wrap .img_wrap {
        height: 34.1146vw;
        overflow: hidden;
    }



    .product .wrap:nth-of-type(2) .wrap .img_wrap {
        /* height: 33.8542vw; */
        overflow: hidden;
    }

    img {
        /* width: 100%; */
        object-fit: contain;
    }

    .sub img {
        width: 100%;
    }

    .product table ul {
        line-height: 1.5625vw;
        padding: 0.7813vw 0;
    }

    /* award */

    .award h4 {
        font-size: 1.7708vw;
        margin-bottom: 3.1250vw;
    }

    /* how */

    .sub_header ul {
        text-align: end;
        margin-right: 3.1250vw;
        margin-top: 6.2500vw;
    }

    .sub_header ul * {
        font-size: 1.1458vw;
        line-height: 2.0833vw;
    }

    .video_wrap {
        width: 100%;
        /* object-fit: contain; */
    }

    .video_wrap video {
        width: 100%;
        display: block;
        object-fit: contain;
    }

    /* commu */

    .commu h4 {
        font-size: 1.7708vw;
        padding-bottom: 3.1250vw;
        padding-left: 3.1250vw;
        /* border-bottom: .5px solid white; */
    }

    .commu .sub_body {
        padding-left: 0;
        padding-right: 10.4167vw;
    }

    .commu h5 {
        /* font-size: 1.1458vw; */
        position: relative;
        /* background: black; */
        text-align: right;
        /* margin-bottom: 3.1250vw; */
    }

    .commu h5:before {
        content: '';
        display: block;
        /* width: 100%; */
        height: .5px;
        width: 100%;
        /* background: rgb(255 255 255 / 50%); */
        position: absolute;
        top: 50%;
    }

    .commu h5 span {
        font-size: 1.1458vw;
        /* background: black; */
        z-index: 1;
        position: relative;
        padding-left: 2.6042vw;
    }

    .g40 {
        gap: 2.0833vw;
    }

    .commu .wrap {
        /* padding: 0 10.1563vw; */
        /* margin-bottom: 2.0833vw; */
    }
}

@media all and (max-width:1915px) {
    .des_wrap h4 {
        font-size: 28px;
    }

    .des_wrap p {
        font-size: 18px;
    }
}

@media all and (max-width:1700px) {

    .tech .text_wrap h5 {
        font-size: 21px;
    }

    .product .img_wrap img {
        max-width: 36vw;
    }

}

@media all and (max-width:1600px) {

    ul.des_wrap li {
        width: auto;
    }

    .box_wrap h4 {
        font-size: 16px;
    }

    .intro h4 {
        margin-bottom: 30px;
    }

    .intro .wrap_right img {
        width: 20vw;
    }

    .wrap_right.img_size img {
        max-width: 700px;
    }

    .des_wrap h4 {
        /* font-size: 24px; */
    }

    .fpmobile.flex {
        transform: none;
        position: relative;
    }

    .fpmobile.flex {
        /* position: relative; */
    }

    .section:nth-child(4).active .fpmobile img:last-child {
        transform: translateY(-80px);
    }

    .fpmobile img {
        max-height: 36vw !important;
    }

    .section:nth-child(4) img {

        height: 280px;
    }


    .box_wrap {
        height: 300px;
    }

}

/*******************************************************************************
     반응형 (1350px)
    *******************************************************************************/


@media all and (max-width:1350px) {
    .des_wrap h4 {
        font-size: 25px;
    }

    .des_wrap p {
        font-size: 16px;
    }

    .sub.intro .sub_body .wrap:nth-of-type(2) {
        margin-bottom: 200px;
    }

    .section:nth-child(6) .section_con p + span {
        margin-bottom: 0;
        font-size: 3vw;
    }


    ul.style-1 > li {
        margin-bottom: 20px;
    }

    .home .section:nth-child(2) .section_con li {
        font-size: 18px
    }

    .section:nth-of-type(1) .section_wrap p {
        font-size: 2vw;
    }

    .product .img_wrap img {
        max-width: 45vw;
    }

    .des_wrap h4 {
        font-size: 20px;
    }

    .product table ul li {
        font-size: 14px;
    }

    .tech .img_wrap img {
        max-width: 36vw;
    }

    .ef_slide {
        margin-bottom: 3.7647vw;
    }

    .ef_slide * {
        font-size: 18px;
    }


    .fpmobile.flex {
        position: relative;
    }

    .section table ul {
        line-height: 15px;
        /* margin: 2px 0 !important; */
    }

    .section:nth-child(1) .bg-video__content {
        /* object-fit: contain; */
    }

    header {
        padding: 20px 30px;
    }

    .table_wrap {
        width: 100%;
    }

    table {
        width: 100%;
        border-top: 1px solid rgb(51 51 51 / 50%);
        border-bottom: 1px solid rgb(51 51 51 / 50%);
    }

    table th {
        border-bottom: 1px solid rgb(51 51 51 / 50%);
        padding: 1.7647vw 0;
    }

    table ul {
        line-height: normal;
        height: 100%;
        /*  */
        /* align-items: center; */
        /* flex-direction: column; */
        /* margin-top: auto; */
        margin: 0.0000vw 0;
    }

    table td {

        /* height: 5.0000vw; */
        /*  */
    }

    table ul li {
        font-size: 14px;
        margin: 20px 0;
        word-break: keep-all;
    }

    table th img {
        width: 80%;
    }

    .img_wrap {

        height: 100%;
    }

    /*******************************************************************************
     home
    *******************************************************************************/


    .section .inner {
        width: 100%;
        height: 100%;

        align-items: center;
        justify-
    }

    .bg-video {

        top: 0;

        left: 0;

        height: 100%;

        width: 100%;
    }

    .bg-video__content {
        /* height: 100%; */
        width: 100%;
        object-fit: cover; //
    }

    .section .section_wrap {
        max-width: 94.1176vw;
        max-height: 680px;
        width: 100%;
        height: 100%;
        align-items: center;
        justify- flex-direction: column;
    }

    .section .section_wrap h3 {
        font-size: 28px;
    }



    .section_con {
        height: calc(100% - 3.6471vw);
        align-items: center;
        width: 100%;
        height: auto;
        max-height: 600px;
        height: 100%;
    }

    .section .section_wrap h3 {
        margin-right: auto;
        flex: none;
        align-items: center;
        /* display: flex; */
        /* text-align: center; */
        /* justify-content: center; */
        /* margin: 0 auto; */
        display: block;
        margin-bottom: 30px;
    }

    .section:nth-child(1) .section_wrap h4 {
        margin-right: auto;
    }

    /* home - section1 */

    .section:nth-child(1) .section_wrap {
        max-width: 112.9412vw;
        width: 80%;
        max-height: unset;
        height: auto;
    }

    .section:nth-child(1) .section_wrap h3 {
        font-size: 3.3854vw;
        margin-bottom: 0.8824vw;
        /* margin-left: 0.8824vw; */
    }

    .section:nth-child(1) .section_wrap h4 span {
        font-size: 9vw;
        font-style: italic;
        line-height: .9;
    }


    /* home - section2 */

    .home .section:nth-child(2) ul.style-1 li > div {
        border-radius: 100%;
        /* border: 1px solid #ffffff80; */
        width: 170px;
        height: 170px;
        align- justify- align-items: center;
        line-height: normal;
        font-size: 17px;
        /* font-size: 1.1765vw; */
        background: #000000B3 !important;
    }

    .home .section:nth-child(2) ul:nth-of-type(2) li {

        align-items: center;

    }

    .home .section:nth-child(2) ul:nth-of-type(2) li span {
        font-size: 3.5294vw;
        width: 20vw;
        left: 300px;
        align-items: center;
        display: block;
    }

    .home .section:nth-child(2) ul:nth-of-type(2) li span small {
        font-size: 14px;
        margin-left: 0.5882vw;
        display: block;
    }

    .home .section:nth-child(2) ul.style-1 li h4 {
        font-size: 18px;
        width: 100%;
        margin-bottom: 1.1765vw;
    }

    .home .section:nth-child(2) .section_con {

        align-items: center;
        /* justify- */

        gap: 2.3529vw;
        /*  */

        /* left: 19.4118vw; */

        /* margin-left: 25%; */

        /* margin-right: auto; */

        /* min-height: 600px; */

        justify-content: center;

    }

    .home .section:nth-child(2) .section_con li .h4,
    .home .section:nth-child(2) .section_con li .h4 * {
        /* margin-bottom: 1.4706vw; */
        font-size: 20px;
    }

    .home .section:nth-child(2) .section_con li:nth-child(1) {
        /* margin-bottom: 0; */
    }

    .home .section:nth-child(2) .section_con li:last-child {
        margin: 0;
    }

    .home .section:nth-child(2) .section_con ul:nth-child(1) {
        margin-left: 0;
    }

    /* home - section3 */


    .section:nth-child(3) ul div {
        border-radius: 100%;
        align-items: center;
        line-height: normal;
        font-size: 2vw;
    }



    .section:nth-child(3) ul {
        gap: 1vw;
    }

    .section:nth-child(3) ul li:nth-child(1) {
        /* background: #000000BF; */
    }

    .section:nth-child(3) ul li:nth-child(2) {
        /* background: #00000080; */
    }

    .section:nth-child(3) ul li:nth-child(3) {
        /* background: #0000004D; */
    }

    /* home - section4 */

    .section:nth-child(4) img {
        height: 20vw;
    }

    .section:nth-child(4) .img_wrap {
        /* width: 100%; */
        /* bottom: 50%; */
        /* transform: translateX(-50%) translateY(-50%); */
        /* top: 50%; */
    }

    /* home - section6 */

    .section:nth-child(6) .section_con {
        flex-direction: column;
        align-items: center;
    }

    .section:nth-child(6) .section_con p {
        margin-top: 3.5294vw;
        margin-bottom: 2.2941vw;
        font-size: 3.5294vw;
        text-align: center;
    }

    .section:nth-child(6) .section_con button a {
        font-size: 20px;
        display: flex;
        align-items: center;
    }

    .section:nth-child(6) .section_con button i {
        font-size: 25px;
        margin-left: 1.1765vw;
    }

    .footer {

        flex-direction: column;

        bottom: 0;

        width: 100%;

        height: 110px;

        align-items: center;

        flex-direction: column;
    }

    .footer-left {
        width: 100%;
        padding-right: 4.1176vw;
        border-right: .5px solid white;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        /* margin: 0 !important; */
    }

    .footer > div {
        height: 100%;
        align-items: center;
        flex-direction: column;
        border-right: 0;
        padding: 0;
    }

    .footer-right {
        padding-left: 8.8235vw;
    }

    .footer-right ul {
        gap: 3.2353vw;
    }

    .footer-right li {
        font-size: 12px;
    }

    .footer-left p {

        margin-top: 1.7647vw;

        font-size: 12px;

        margin: 0;

        margin-left: 20px;
    }

    /*******************************************************************************
     contact
    *******************************************************************************/


    main.contact {
        height: 100%;
        z-index: 0;
    }

    main.contact .section_wrap {
        height: 100%;
    }

    .contact .section {
        height: 100%;
        opacity: 1 !important;
        visibility: visible;
    }

    .contact .section .section_wrap h3 {}

    .form_wrap {
        width: 100%;
        /* font-size: 1.1765vw; */

        flex-direction: column;
        align-items: center;
    }

    .li_wrap {
        /* width: 100%; */
    }

    .li_wrap {

        width: 100%;

        height: 40px;

        align-items: center;

        border-right: .5px solid #707070;

    }

    .li_tit {
        width: 100px;
        border-right: .5px solid #707070;
        flex: none;
        height: 100%;
        align-items: center;
    }

    .form_wrap * {
        font-size: 14px;
    }

    .form_wrap li {
        border-bottom: .5px solid #707070;
    }

    input[type="text"] {
        background: none;
        width: 100%;
        height: 100%;
        padding: 0 10px;
    }

    .li_con {
        width: 100%;
        height: 100%;
    }

    .form_wrap ul {
        border-top: .5px solid #707070;
        /* border-bottom: .5px solid #707070; */
        width: 100%;
    }

    .li_wrap:last-child {
        /* border-bottom: 1px solid #707070; */
    }

    input,
    textarea {
        outline: none;
        font-size: 14px !important;
    }

    textarea {
        background: none;
        width: 100%;
        border: none;
        height: 200px;
        border-bottom: .5px solid #707070;
        /* font-size: 1.1765vw; */
        padding: 15px;
        resize: none;
    }

    .contact button.btn-style {
        width: 120px;
        height: 40px;
        border: .5px solid white;
        border-radius: 35px;
        margin-top: 4.7059vw;
        font-size: 14px;
    }

    .contact .section_con {
        /* justify- */
        /* align-items: center; */
        /* margin-top: 0; */
        width: 100%;
        height: auto;
    }

    /*******************************************************************************
     sub
    *******************************************************************************/



    main.sub {
        /*        height: 100%;*/
    }

    .sub table td {
        height: 5.0000vw;

    }

    .sub tbody tr {
        border-bottom: 1px solid rgb(51 51 51 / 50%);
    }


    /* intro */

    .sub_conetent {
        height: 100%;
        width: 100%;
        /* padding-top: 14.1176vw; */
        flex-direction: column;
    }

    .sub_header {
        width: 100%;
        /* border-right: .5px solid white; */
        /* margin-right: 3.5294vw; */
        padding-top: 13.7647vw;
        flex: none;
        top: 0;
        height: 100%;
        position: static;
        height: auto;
        border-bottom: 1px solid rgb(51 51 51 / 50%);
        border-right: none;
        padding-bottom: 3vw;
    }

    .sub_header h3 {
        font-size: 2.9412vw;
        margin-right: 3.5294vw;
        text-align: center;
        margin: 0;
    }

    .sub_body {
        padding-top: 3.7647vw;
        width: auto;
        padding-left: 3.5294vw;
        padding-right: 3.5294vw;
        margin-left: 0;
    }

    .intro .text_wrap p {
        font-size: 14px;
        line-height: 25px;
    }

    .intro h4 {

        /* font-size: 4.3529vw; */

        font-size: 22px;

    }

    .intro .text_wrap > b {
        font-size: 14px;
        margin-top: 8.2353vw;
    }

    .intro .text_wrap p b {
        background: white;
        padding: 0.2941vw;
        font-size: 14px;
    }

    .intro .wrap_left .img_wrap {
        width: 37.6471vw;
        /* height: 56.7647vw; */

    }

    .intro .wrap_right {
        /* margin-left: 5.2941vw; */
    }

    /* tech */

    .tech h4 {
        font-size: 22px;
        margin-bottom: 2.6471vw;
    }

    .sub table td,
    .sub table th {
        font-size: 14px;
    }

    .sub .wrap {
        /* margin-bottom: 4.7059vw; */
    }

    /* product */

    .product ul {
        line-height: 25px;
        /*  */
        height: auto;
    }

    .product ul li {
        font-size: 14px;
    }

    .product h4 {
        font-size: 22px;
        margin-bottom: 3.5294vw;
    }


    .product .wrap_left .img_wrap {
        width: 49.8235vw;
        /* height: 27.8824vw; */

    }

    .product .wrap_right {
        margin-left: 3.2353vw;
    }

    .product .wrap:nth-of-type(1) .wrap:nth-of-type(2) .img_wrap {
        /* height: 2.5px; */

        width: 100%;
    }

    .product .wrap:nth-of-type(3) .wrap .img_wrap {
        height: 38.5294vw;

    }



    .product .wrap:nth-of-type(2) .wrap .img_wrap {
        /* height: 38.2353vw; */

    }

    img {
        /* width: 100%; */
        object-fit: contain;
    }

    .sub img {
        width: 100%;
    }

    .product table ul {
        line-height: 1.7647vw;
        padding: 0.8824vw 0;
    }

    /* award */

    .award h4 {
        font-size: 18px;
        margin-bottom: 3.5294vw;
    }

    /* how */

    .sub_header ul {
        margin-right: 3.5294vw;
        margin-top: 3.0588vw;
        display: flex;
        gap: 50px;
        justify-content: center;
        margin-right: 0;
        position: relative;
        display: none;
    }

    .sub_header ul * {
        font-size: 18px;
        line-height: 25px;
    }

    .video_wrap {
        width: 100%;
        /* object-fit: contain; */
    }

    .video_wrap video {
        width: 100%;
        object-fit: contain;
    }

    /* commu */

    .commu h4 {
        font-size: 2.9412vw;
        padding-bottom: 3.5294vw;
        padding-left: 3.5294vw;
        /* border-bottom: .5px solid white; */
    }

    .commu .sub_body {
        padding-left: 0;
        padding-right: 2.7647vw;
    }

    .commu h5 {
        /* font-size: 1.2941vw; */
        /* background: black; */
        /* margin-bottom: 3.5294vw; */
    }

    .commu h5:before {

        /* width: 100%; */

        height: .5px;

        width: 100%;

        /* background: rgb(255 255 255 / 50%); */

        top: 50%;

    }

    .commu h5 span {
        font-size: 18px;
        /* background: black; */
        padding-left: 2.9412vw;
    }

    .g40 {
        gap: 2.3529vw;
    }

    .commu .wrap {
        padding: 0 11.4706vw;
        /* margin-bottom: 2.3529vw; */
    }



    #pp-nav li a:after {
        content: '' !important;
        width: 5px;
        height: 5px;
        background: white;

    }

    #pp-nav > ul {
        right: 1px;
    }

    #pp-nav li {
        margin-bottom: 0;
    }

    #pp-nav li a.active:after {
        background: #333 !important;
    }

    #pp-nav li a:after {
        background: #3333337d !important;
    }

    .footer img {
        height: 25px;
    }


    .sub_header br {
        display: none;
    }

}


/*


@media all and (min-width:1350px) and (max-height:960px) {

    .fpmobile {
        position: fixed !important
    }

    .fpmobile img {
        max-height: 75vh !important;
    }

    .section:nth-child(4).active .fpmobile img:last-child {
        max-height: 58vh !important;
    }
}
*/

/*******************************************************************************
     태블릿 모바일
    *******************************************************************************/

.omly {
    display: none;
}

@media all and (max-width:1200px) {


    .section:nth-child(4) img {
        height: 17vw;
    }

    .section:nth-child(4) .section_con .img_wrap {
        width: 80%;
    }

    .omly {
        display: block;
        width: 100%;
    }

    .pmobile {
        display: none;
    }


    .tech .text_wrap h5 {
        font-size: 20px;
    }



    .tech .text_wrap p {
        font-size: 16px;
    }

    .sub_body > .wrap:nth-of-type(3) .img_wrap img {
        width: 1200px;
    }

    .section:nth-of-type(4).active .img_wrap {
        transform: none;
    }

    .fpmobile {
        display: none;
    }

    .pmobile {
        /* display: block; */
    }

    header {
        justify-content: center !important;
        /* background: #00000040; */
    }

    header .header-left img {
        width: 160px
    }

    header .header-left {
        /* margin-left: -20px; */
    }

    .header-right .geo-btn {
        display: none;
    }

    .img_text_wrap {
        display: block;
    }

    .img_text_wrap img {
        max-width: 100% !important;
    }

    ul.des_wrap li:nth-of-type(1) {
        top: 36vw;
        left: 12.4VW;
    }

    ul.des_wrap li:nth-of-type(2) .line {
        /* height: 11vw; */
        /* top: -12vw; */
    }

    ul.de ul.des_wrap li:nth-of-type(2) .line {
        height: 11vw;
        top: -12vw;
    }

    ul.des_wrap li:nth-of-type(2) .dot {
        /* top: -12.5vw; */
    }

    .home .section:nth-child(2) ul:nth-of-type(2) li span {
        /* top: 42VW; */
        left: 29vw;
    }

    ul.des_wrap li:nth-of-type(2) {
        top: 40VW;
        left: 27vw;
    }

    .section:nth-child(1) .section_wrap h3 {
        font-size: 3.3854vw;
    }

    .header-right ul,
    .header-right div {
        display: none;
    }

    .btnMenu_m {
        display: block;
        display: flex;
        align-items: center;
        position: absolute;
        right: 15px;
    }

    .btnMenu_m i {
        font-size: 30px;
    }

    header .header-right {
        /* margin-left: auto; */
        margin-right: 30px;
        display: none;
    }


    ul.des_wrap li {
        font-size: 2vw
    }

    .section:nth-child(4) .img_wrap {
        width: 95%;
        position: relative;
    }
}




@media (max-width: 1024px) {
    .sub_header h3 {
        text-align: -webkit-auto;
        margin-left: 3.5294vw;
    }

    .section:nth-child(3).active .section_con {
        opacity: 1;
        visibility: visible;
        top: 0;
        animation: fadeInUpSmall 0.7s .3s both;
        -webkit-animation: fadeInUpSmall 0.7s .3s both;
        -moz-animation: fadeInUpSmall 0.7s .3s both;
    }

    .section:nth-child(5).active .section_con {
        opacity: 1;
        visibility: visible;
        top: 0;
        animation: fadeInUpSmall 0.7s .3s both;
        -webkit-animation: fadeInUpSmall 0.7s .3s both;
        -moz-animation: fadeInUpSmall 0.7s .3s both;
    }

    .section:nth-child(4).active .section_con li:nth-child(1) {

        opacity: 1;
        visibility: visible;
        top: 0;

        animation: fadeInUpSmall 0.7s .3s both;
        -webkit-animation: fadeInUpSmall 0.7s .3s both;
        -moz-animation: fadeInUpSmall 0.7s .3s both;

    }

    .section:nth-child(4).active .section_con li:nth-child(2) {

        opacity: 1;
        visibility: visible;
        top: 0;

        animation: fadeInUpSmall 0.7s .6s both;
        -webkit-animation: fadeInUpSmall 0.7s .6s both;
        -moz-animation: fadeInUpSmall 0.7s .6s both;

    }

    .section:nth-child(4).active .section_con li:nth-child(3) {

        opacity: 1;
        visibility: visible;
        top: 0;

        animation: fadeInUpSmall 0.7s .9s both;
        -webkit-animation: fadeInUpSmall 0.7s .9s both;
        -moz-animation: fadeInUpSmall 0.7s .9s both;

    }


    .section:nth-child(2).active .section_con li:nth-child(1) .ul-sub {

        opacity: 1;
        visibility: visible;
        top: 0;

        animation: fadeInUpSmall 0.7s .3s both;
        -webkit-animation: fadeInUpSmall 0.7s .3s both;
        -moz-animation: fadeInUpSmall 0.7s .3s both;

    }

    .section:nth-child(2).active .section_con li:nth-child(2) .ul-sub {

        opacity: 1;
        visibility: visible;
        top: 0;

        animation: fadeInUpSmall 0.7s .6s both;
        -webkit-animation: fadeInUpSmall 0.7s .6s both;
        -moz-animation: fadeInUpSmall 0.7s .6s both;

    }

    .section:nth-child(2).active .section_con li:nth-child(3) .ul-sub {

        opacity: 1;
        visibility: visible;
        top: 0;

        animation: fadeInUpSmall 0.7s .9s both;
        -webkit-animation: fadeInUpSmall 0.7s .9s both;
        -moz-animation: fadeInUpSmall 0.7s .9s both;
    }

    .section:nth-child(4) img {
        height: 20vw;
    }

    .commu .wrap {
        margin-bottom: 50px;
    }

    .commu h5 {
        margin-bottom: 50px;
    }

    .commu .wrap .img_wrap:last-child {
        /* margin-bottom: 100px; */
    }

    .commu .wrap .img_wrap:last-child img:last-child {
        margin-bottom: 0px;
    }

    .commu .wrap .img_wrap {
        display: block;
        margin-bottom: 0;
    }

    .commu .wrap .img_wrap img {
        width: 100%;
        margin-bottom: 25px;
    }


    ul.ul-sub li {
        text-align: center;
    }

    ul.ul-sub {
        width: 100%;
    }

    .sub h4 i {
        font-size: 18px;
    }

    .box_wrap li {
        height: auto;
    }

    .box_wrap h4 {
        font-size: 14px;
    }

    ul.omly {
        display: block;
        width: 100%;
    }

    .section:nth-child(3) ul div {
        font-size: 20px;
    }

    .section:nth-child(3) ul div i {
        font-size: 12px;
    }

    .section:nth-child(3) ul div i {
        margin-top: 5px;
    }

    .home .section:nth-child(2) .section_con li {
        font-size: 16px
    }

    .intro .wrap_right img {
        width: 200px;
    }

    .box_wrap {
        height: auto;
    }

    .box_wrap ul li {
        margin: 20px 0;
    }

    .box_wrap ul {
        justify-content: space-between;
        flex-direction: column;
    }

    .bg-video {
        display: none;
    }

    .bg-img {
        /*        display: block;*/
    }

    .section.active .section_con {

        animation: fadeInUpSmall 0.7s .3s both;
        -webkit-animation: fadeInUpSmall 0.7s .3s both;
        -moz-animation: fadeInUpSmall 0.7s .3s both;
    }

    .home .section:nth-child(1) .bg-img {
        background: url(../img/mob_01.png) no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: .3;
    }

    .home .section:nth-child(2) .bg-img {
        background: url(../img/mob_02.png) no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: .3;
    }

    .home .section:nth-child(3) .bg-img {
        background: url(../img/mob_03.png) no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: .3;
    }

    .home .section:nth-child(4) .bg-img {
        background: url(../img/mob_04.png) no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: .3;
    }

    .home .section:nth-child(5) .bg-img {
        background: url(../img/mob_05.png) no-repeat;
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: .3;
    }

}

.a_980 {
    display: none;
}

@media all and (max-width:980px) {
    .section:nth-child(3) ul div {
        width: 350px;
        height: 120px;
    }

    .product.sub .wrap {
        display: block !important;
    }

    .product .img_wrap {
        margin: 0;
    }

    .product .img_wrap img {
        width: 100%;
        max-width: none;
        margin-top: 30px;
    }

    .d_980 {
        display: none;
    }

    .a_980 {
        display: block;
    }

    ul.ul-sub {
        margin-left: 30px;
    }

    .section:nth-child(4) img {
        /* height: 215px; */
    }

    .des_wrap h4 {
        font-size: 16px;
    }

    .tech .text_wrap h5 {
        font-size: 18px;
    }



    .tech .text_wrap p {
        font-size: 14px;
    }


    .tech .wrap ul li {
        width: 45%;
        margin-right: auto;
        margin-left: auto;
    }


    .tech .wrap ul li:nth-of-type(odd) {
        margin-right: 0;
    }

}

.b_980 {
    display: none;
}

@media all and (max-width:768px) {
    .bro-btn {

        /* bottom: 80px !important; */

    }

    .box_wrap ul li {
        margin: 10px 0;
    }

    .home .section:nth-child(2) ul:nth-of-type(1) li br {
        display: none;
    }

    .home .section:nth-child(2) .section_con > ul > li {
        margin-bottom: 20px;
    }

    ul.style-1 > li {
        margin-bottom: 10px;
    }

    .section:nth-child(3) ul div {
        width: 320px;
        height: 100px;
    }

    .home .section:nth-child(2) .section_con li .h4 {
        display: block;
    }

    .home .section:nth-child(2) .section_con li .h4 * {
        font-size: 14px;
        margin-left: 5px;
    }

    .home .section:nth-child(2) .section_con li .h4,
    .home .section:nth-child(2) .section_con li .h4 * {
        /* margin-bottom: 1.4706vw; */
        font-size: 16px;
    }


    .home .section:nth-child(2) .section_con li {
        font-size: 14px
    }

    .section:nth-of-type(1) .section_wrap p {
        font-size: 18px;
    }

    .tech .wrap ul li {
        margin-bottom: 50px;
    }

    .intro .wrap_left {
        margin: 0;
    }

    #menuArea .mlogo img {
        width: 110px;
    }

    .section:last-of-type .section_con img {
        width: 200px;
    }

    header .header-left img {
        width: 110px;
    }

    .box_wrap img {
        max-width: 250px;
        margin: 0 auto;
    }

    .des_wrap h4 {
        word-break: keep-all;
        max-width: 145px;
        margin: 0 auto;
    }

    .section:nth-child(4) img {
        height: 20vw;
    }

    ul.ul-sub {
        margin-left: 15px;
        margin-right: 15px;
    }

    .section:nth-child(1) .section_wrap h4 span * {
        font-size: 75px;
    }

    .section:nth-child(1) .section_wrap h4 span:nth-of-type(2) * {
        font-size: 24px;
    }

    .tech .img_wrap img {
        width: 100%;
        max-width: none;
    }

    .home .section:nth-child(2) ul.style-1 li > div {
        background: none;
    }

    .home .section:nth-child(2) ul.style-1 li > div .tech .img_wrap img {
        max-width: 100%;
    }

    .tech .img_wrap {
        margin-left: 0;
        margin-top: 0;
    }

    .ef_slide {
        gap: 30px;
    }

    .ef_slide * {
        font-size: 16px;
    }

    .how .sub_header ul {
        gap: 10px;
        flex-wrap: wrap;
    }

    .section:nth-of-type(4).active .img_wrap {
        /* transform: translateY(17%); */
    }

    .box_wrap.mobile img {
        height: 30px;
        max-width: 100%;
        padding-right: 15px;
    }

    .box_wrap.mobile {
        width: 100%;
        border-top: 1px solid #ffffff80;
        border-bottom: 1px solid #ffffff80;
        /* padding: 20px 0; */
    }

    .box_wrap.mobile > ul > li {
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid rgb(255 255 255 / 50%);
        padding: 5px;
        align-items: center;
        font-size: 14px;
    }

    .box_wrap.mobile ul > li div {
        width: 50%;
        /* padding: 8px; */
    }

    .box_wrap.mobile li {
        font-size: 14px;
    }

    .box_wrap.mobile ul > li div ul {
        line-height: 21px;
    }

    .sub_header ul * {
        font-size: 16px;
    }

    header.on {
        background: #c4c2c58a;
    }

    #menuArea .mlogo {
        padding: 20px;
    }

    .home .section:nth-child(2) ul.style-1:nth-child(1) li > div {
        /* background: none; */
    }

    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    ul.des_wrap li:nth-of-type(1) {
        left: 12vw;
    }

    ul.des_wrap li:nth-of-type(2) {
        left: 26.5vw;
    }

    .section:nth-child(4) .img_wrap {
        /* position: relative; */
    }

    .product .wrap_right .text_wrap {
        margin-top: 4.7059vw;
    }

    .product .wrap_left .text_wrap {
        margin-bottom: 4.7059vw;
    }


    .product .wrap_right {
        margin-left: 0;
    }

    .product .wrap_left .img_wrap {
        width: 100%;
    }

    .tech h4,
    .product h4 {
        font-size: 18px
    }

    .commu h5 span {
        font-size: 16px;
    }

    .commu h4 {
        font-size: 3.2vw;
    }

    .section:nth-child(1) .section_wrap h3 {
        font-size: 25px;
    }

    .intro .wrap_right {
        margin-left: 0vw;
    }

    header {
        padding: 20px;
    }

    .sub_header h3 {
        /* text-align: center; */
        font-size: 3.5vw;
    }

    .sub_header {
        padding-bottom: 25px;
        padding-top: 80px;
    }

    .section .section_wrap h3 {
        font-size: 24px;
    }

    .section:nth-child(3) ul div,
    .section:nth-child(6) .section_con button i {
        font-size: 16px;
    }

    .section:nth-child(6) .section_con button a {
        font-size: 18px;
    }

    .section .section_wrap {
        max-height: 100%;
        padding: 20px 0;
    }

    #pp-nav {
        right: 5px;
    }

    .section table ul {
        margin: 15px 0 !important;
    }

    .section table th {
        padding: 15px 0;
    }

    main > button:not(.scroll-btn) {
        /* width: 60px; */
        /* height: 60px; */
        /* right: 15px; */
        /* bottom: 15px; */
    }

    main > button:not(.scroll-btn) * {
        font-size: 13px;
    }

    .top-btn {
        /* bottom: 147px !important; */
    }


    .pp-section.pp-table {
        transform: none;
    }

    .home .section:nth-child(2) ul.style-1 li > div {
        width: 155px;
        height: 100px;
        border-radius: 10px;
        border: none;
        /* border-bottom: 1px solid #ffffff80; */
        border-radius: unset;
        flex: none;
        background: rgb(0 0 0 / 50%);
        font-size: 16px;
    }

    .home .section:nth-child(2) ul:nth-of-type(2) li span {
        /* position: fixed; */
        display: none;
    }

    .home .section:nth-child(2) .section_con ul:nth-child(1) {
        margin: 0;
    }

    .home .section:nth-child(2) .section_con {
        justify-content: center;
    }

    .home .section:nth-child(2) .section_con ul ul li {
        /* border-bottom: 1px solid #ffffff80; */
        font-size: 14px;
        line-height: normal;
        margin-bottom: 7px;
    }

    .section:nth-child(3) ul div {
        word-break: keep-all;
    }

    .home .section .section_con {
        height: 100%;
        max-height: 445px;
    }

    .section .section_wrap h3 {
        margin-bottom: 30px;
    }

    .product ul li {
        margin: 0;
        /* line-height: normal; */
    }

    .product table ul li {
        line-height: normal;
    }


    .contact .section .section_wrap h3 {
        margin-bottom: 0;
    }

    .sub .wrap {
        display: block;
        /* margin: 0; */
    }

    .intro .wrap_left .img_wrap {
        width: 100%;
    }

    .intro h4 {}


    .sub.commu .wrap_left {
        gap: 0;
    }

    .sub.commu .wrap {
        /* margin: 0; */
    }

    .commu h5:nth-of-type(2) {
        /* margin-top: 2.8vw; */
    }

    .commu .wrap:last-child > div {
        width: 100%;
    }




}

.c_980 {
    display: none;
}

@media all and (max-width:600px) {
    .a_980 {
        display: none;
    }

    ul.omly p {
        font-size: 14px;
    }

    .section:nth-child(4) img {
        height: 125px;
    }

    .tech .text_wrap h5 {
        font-size: 16px;
        word-break: keep-all;
    }



    .tech .text_wrap p {
        font-size: 14px;
        word-break: keep-all;
    }


    .tech .wrap ul li {
        margin-bottom: 20px;
    }


    .b_980 {
        display: none;
    }

    .b_980 {
        display: block;
        max-width: 300px !important;
        margin: 0 auto;
    }


    .tech .text_wrap {
        margin-top: 20px;
    }
}

@media all and (max-width:500px) {
    .commu h4 {
        padding-bottom: 1.8vw;
    }

    .section:nth-child(6) .section_con p + span {
        font-size: 14px;
        text-align: center;
    }

    .box_wrap h4 {
        font-size: 12px;
    }

    .section:nth-child(4) img {
        height: 110px;
    }

    .section:nth-child(4) .section_con .img_wrap {
        width: 60%;
    }

    .home .section:nth-child(2) .section_con li .h4,
    .home .section:nth-child(2) .section_con li .h4 * {
        /* margin-bottom: 1.4706vw; */
        font-size: 14px;
    }

    .section:nth-of-type(1) .section_wrap p {
        font-size: 16px;
    }

    .award td br {
        display: none;
    }

    #menuArea .mlogo {
        padding: 15px;
    }

    .box_wrap ul li {
        margin: 10px 0;
    }

    .section:nth-child(3) ul div {
        font-size: 14px;
    }

    .home .section:nth-child(2) ul.style-1 li > div {
        width: 110px;
        font-size: 14px;
    }

    .home .section:nth-child(2) .section_con ul ul li {
        font-size: 14px;
    }

    .product table ul li {
        font-size: 12px;
    }

    .ef_slide li {
        width: 70px;
    }

    .product ul li {
        font-size: 12px;
    }

    .how .sub_header ul li {
        margin: 0 20px;
    }

    header .header-left {
        /* margin-left: 25px; */
    }

    .sub_header ul {
        /* left: 1vw; */
        margin-bottom: 20px;
        /* padding-left: 13px; */
    }

    ul.des_wrap li:nth-of-type(2) .line {
        /* height: 14vw; */
        /* top: -15vw; */
    }

    ul.des_wrap li:nth-of-type(2) .dot {
        /* top: -17vw; */
    }

    ul.des_wrap li:nth-of-type(1) {
        left: 6.5vw;
    }

    ul.des_wrap li:nth-of-type(2) {
        left: 17vw;
        top: 45vw;
    }

    ul.des_wrap li:nth-of-type(3) {
        top: -8vw;
    }

    ul.des_wrap li:nth-of-type(3) .dot {
        /* top: 5vw; */
    }

    ul.des_wrap li:nth-of-type(3) .line {
        top: 2vw !important;
    }

    ul.des_wrap li {
        font-size: 3.5vw;
    }

    .section:nth-child(1) .section_wrap {
        width: 90%
    }

    .section:nth-child(1) .section_wrap h4 span {
        font-size: 12vw;
    }

    .section:nth-child(1) .section_wrap h4 span * {
        /* font-size: 12vw; */
    }

    table th img {
        width: 90%;
    }

    table ul li {
        font-size: 12px;
        margin: 10px 0;
    }

    .section:nth-child(6) .section_con p,
    .tech h4,
    .award h4,
    .commu h4,
    .product h4 {
        font-size: 16px;
    }

    .footer img {
        height: 15px;
    }

    .footer {
        height: auto;
    }

    .footer > div {
        margin: 10px 0;
        display: flex;
        flex-direction: column !important;
    }

    .footer-right ul {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .section .section_wrap h3 {
        font-size: 22px;
    }

    .scroll-btn span {
        font-size: 12px;
        margin-bottom: 15px;
    }


    header {
        padding: 15px;
    }

    .btnMenu_m i {
        font-size: 25px;
    }

    .scroll-btn {
        bottom: 15px;
    }

    .header-left img {
        width: 80%;
    }

    header .header-right {
        /* margin-right: 20px; */
    }

    #pp-nav > div {
        display: none;
    }

    #pp-nav > ul {
        right: -5px;
    }

    .sub .wrap {
        flex-direction: column;
    }

    .sub_header h3 {
        font-size: 20px;
        /* text-align: center; */
        /* margin: 0; */
        margin-bottom: 20px;
    }

    .sub_header {
        padding-bottom: 0px;
        padding-top: 75px;
    }

    .wrap_right {
        margin-left: 0 !important;
    }


    .product .wrap_right {
        width: 100%;

    }

    .form_wrap li {
        display: block;
    }

    .li_wrap {
        border-right: none;
    }

    li.flex .li_wrap:nth-child(1) {
        border-bottom: .5px solid #707070;
    }

    .product .wrap_left .img_wrap,
    .intro .wrap_left .img_wrap {
        width: auto;
    }


    .sub table td,
    .sub table th {
        font-size: 12px;
    }

    .des_wrap h4 {
        font-size: 14px;
    }

}

@media all and (max-width:400px) {

    .home .section:nth-child(2) .section_con ul ul li {
        /* border-bottom: 1px solid #ffffff80; */
        margin-bottom: 3px;
    }

    .tech .text_wrap {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .tech .wrap ul li {
        width: 100%;
        margin: 0;
    }

    .box_wrap.mobile img {
        height: 20px;
    }

    .box_wrap.mobile li {
        font-size: 12px;
    }

    .section .section_wrap h3 {
        font-size: 20px;
    }

    .sub_header h3 {
        font-size: 18px;
    }

    .sub_header ul {
        margin-top: 10px;
    }

}

@media all and (max-width:350px) {
    ul.omly h4 {
        font-size: 14px;
    }

    ul.omly p {
        font-size: 12px;
    }

    .section:nth-of-type(1) .section_wrap p {
        font-size: 12px;
    }

    .section:nth-child(1) .section_wrap h3 {
        font-size: 20px;
    }

    .section:nth-child(1) .section_wrap h4 span i {
        font-size: 50px
    }

    .section:nth-child(1) .section_wrap h4 span:nth-of-type(2) * {
        font-size: 18px;
    }

    .section:nth-child(3) ul div {
        width: 250px;
        height: 100px;
    }

    .section:nth-child(4) .section_con .img_wrap {
        width: 70%;
    }


}

@media all and (max-width:300px) {
    .section:nth-child(4) .section_con .img_wrap {
        width: 80%;
    }

    .home .section:nth-child(2) .section_con ul * {
        font-size: 13px !important;
    }

    .home .section .section_con {
        max-height: 470px;
    }

    .ef_slide * {
        font-size: 14px;
    }
}

@keyframes scrollAni {
    0% {
        bottom: -10px;
    }

    25% {
        bottom: 0px;
    }

    50% {
        bottom: -10px;
    }

    75% {
        bottom: 0px;
    }

    100% {
        bottom: -10px;
    }
}

@-webkit-keyframes scrollAni {
    0% {
        bottom: -10px;
    }

    25% {
        bottom: 0px;
    }

    50% {
        bottom: -10px;
    }

    75% {
        bottom: 0px;
    }

    100% {
        bottom: -10px;
    }
}

@-moz-keyframes scrollAni {
    0% {
        bottom: -10px;
    }

    25% {
        bottom: 0px;
    }

    50% {
        bottom: -10px;
    }

    75% {
        bottom: 0px;
    }

    100% {
        bottom: -10px;
    }
}


100% {
    bottom: -10px;
}
}

@-webkit-keyframes scrollAni {
    0% {
        bottom: -10px;
    }

    25% {
        bottom: 0px;
    }

    50% {
        bottom: -10px;
    }

    75% {
        bottom: 0px;
    }

    100% {
        bottom: -10px;
    }
}

@-moz-keyframes scrollAni {
    0% {
        bottom: -10px;
    }

    25% {
        bottom: 0px;
    }

    50% {
        bottom: -10px;
    }

    75% {
        bottom: 0px;
    }

    100% {
        bottom: -10px;
    }
}

.home .top-btn {
    bottom: 0;
    opacity: 0;
    position: absolute;
    width: 80px;
    height: 80px;
}

.home .top-btn.on {
    bottom: 30px;
    opacity: 1;
}

.home .contact-btn.on {
    bottom: 120px
}

.home .bro-btn {
    background: #666666;
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
}

.home .bro-btn:hover {
    background: none;
}

.home .bro-btn.on {}

.home .bro-wrap {
    position: absolute;
    /* border: 1px solid red; */
    bottom: 120px;
    right: 30px;
    z-index: 999;
    transition: .5s;
}

.home .bro-wrap.on {
    bottom: 212px;
}

.bro-wrap .bro-wrap-sub {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border-radius: 100%; */
}

.bro-wrap .bro-wrap-sub button {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 100%;
    margin-top: 8px;
}

.bro-wrap .bro-wrap-sub button span {
    font-weight: bold !important;
    font-size: 15px;
}

.bro-wrap .bro-wrap-sub {
    opacity: 0;
    transition: .3s;
}

.bro-wrap.active .bro-wrap-sub {
    opacity: 1
}

.bro-wrap .bro-wrap-sub a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bro-wrap .bro-wrap-sub button span {
    transition: .3s;
}

.bro-wrap .bro-wrap-sub button:hover span {
    opacity: .5;
}


.sub .bro-btn {
    background: #666666;
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
}

.sub .bro-wrap {
    position: fixed;
    /* border: 1px solid red; */
    bottom: 120px;
    right: 30px;
    z-index: 99;
    transition: .5s;
}

.sub .bro-btn:hover {
    background: none;
}

.sub .bro-wrap.on {
    bottom: 212px;
}

.top-btn span i {
    font-size: 35px;
}

@media all and (max-width:768px) {
    .btn-wrap {
        right: 15px !important;
    }


    .top-btn,
    .contact-btn,
    .bro-btn {
        width: 60px !important;
        height: 60px !important;
    }

    .bro-btn a span {
        font-size: 13px;
    }

    .home .contact-btn.on {
        bottom: 100px;
    }

    .home .bro-wrap {
        bottom: 100px;
    }

    .home .bro-wrap.on {
        bottom: 170px;
    }

    .home .bro-btn {
        margin-top: 10px;
    }

    .bro-wrap .bro-wrap-sub button span {
        font-size: 13px;
    }

    .bro-wrap .bro-wrap-sub button {
        width: 50px;
        height: 50px;
    }

    .sub .contact-btn.on {
        bottom: 100px;
    }

    .sub .bro-wrap {
        bottom: 100px;
    }

    .sub .bro-wrap.on {
        bottom: 170px;
    }

    .sub .bro-btn {
        margin-top: 10px;
    }

    .sub .contact-btn {
        right: 15px;
    }

    .top-btn span i {
        font-size: 28px;
    }

}
