@charset "utf-8";
/* 메인PC -한글 */
/*레이아웃*/
#wrap{
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* gnb */
.header {
    z-index: 5;
    width: calc(100% - 20px);
    max-width: 1400px;
    position: fixed;
    display: block;
    background-color: #ffffff;
    top: 5px;
    margin: 10px;
    border-radius: 20px;
    box-shadow: 0 -5px 28px rgba(0, 0, 0, 0.10), 0 10px 10px rgba(0, 0, 0, 0.15);
}
.gnbWrap {
    width: calc(100% - 40px);
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}
.gnbWrap .logo {
    width: 100px;
}
.gnbWrap .logo img {
    width: 100%;
}
.gnbWrap .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.gnbWrap .menu .pcOnly {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.gnbWrap .menu .pcOnly a {
   margin-right: 30px;
    font-weight: 600;
    color: #333333;
}
.gnbWrap .menu .pcOnly a:last-child {
    margin-right: 10px;
}
.menuIcon{
    z-index: 1003;
    cursor: pointer;
    width: 40px;
}
.menuIcon img {
    width: 100%;
}
.main_content, .card_content, .text_content, .partner_content {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
}
.main_content {
    align-items: end;
    background-image: linear-gradient(150deg, #96D2B7 0%, #00BAB4 33%, #4381C7 65%, #0F257B 100%);
}
.main_page {
    width: 1440px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.main_page .main_desc {
    display: flex;
    flex-direction: column;
}
.main_page .main_desc {
    margin-left: 60px;
}
.main_page .main_img {
    margin-right: 60px;
}
.main_page .main_desc span{
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 36px;
}
.main_page .main_desc > span:nth-child(2){
    text-align: right;
    margin-left: 50px;
}
.main_page .main_desc > span:last-child{
    padding: 10px 20px;
    background-color:#FFFFFF;
    font-size: 20px;
    font-weight: 800;
    width: fit-content;
    border-radius: 40px;
    margin-bottom: 0;
    margin-left: 60px;
    margin-top: 20px;
    cursor: pointer;
}
.main_page .main_desc > span:last-child a {
    color: #000000;
}
.main_page .main_img img{
    width: 100%;
    max-width: 700px;
}
.card_content {
    align-items: center;
    background-color: #FFFFFF;
    height: 600px;
}
.card_list {
    width: 1440px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.card {
    width: 380px;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-radius: 20px;
}
.card.card01 {
    background-image: url("../images/cardback01.png");
    background-size: cover;
}
.card.card02 {
    background-image: url("../images/cardback02.png");
    background-size: cover;
}
.card.card03 {
    background-image: url("../images/cardback03.png");
    background-size: cover;
}
.card > span {
    margin: 20px 30px;
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 600;
}
.card:nth-child(2) > span {
    color: #10394A;
    font-weight: 700;
}
.text_content {
    align-items: center;
    background-image: url("../images/textback01.png");
    background-size: cover;
    height: 400px;
    display: flex;
    flex-direction: column;
}
.text_content span {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 500;
    text-align: center;
}
.text_content span:first-child {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
}
.partner_content {
    align-items: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
}
.partner_content > span {
    color: #10394A;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 50px;
}
.partner_content .partnerList {
    width: 1440px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.partner_content .partnerList span {
    width: 150px;
    margin: 0 15px;
}
.partner_content .partnerList span img {
    width: 100%;
}
footer {
    width: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.footerWrap {
    width: 1440px;
    padding: 40px;
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
}
.footerWrap .logoWrap, .footerWrap .addrWrap {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
}
.footerWrap .logoWrap span {
    width: 150px;
    text-align: right;
}
.footerWrap .logoWrap span img {
    width: 100%;
}
.footerWrap .addrWrap {
    margin-left: 150px;
}
.footerWrap .addrWrap span:nth-child(2) {
    margin-bottom: 10px;
}
.mbOnly {
    display: none;
}
.menu_wrap_mb{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #000000;
    z-index: 1003;
}
.menu_wrap_mb .infoArea a{
    color: #ffffff;
}
.menu_wrap_mb #gnb{
    height: 50px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.menu_wrap_mb #gnb .logo{
    width: 100px;
}
.menu_wrap_mb #gnb .logo img {
    width: 100%;
}
.menu_wrap_mb .infoArea ul{
    width: 100%;
    text-align: center;
}
.menu_wrap_mb .infoArea ul li{
    width: 100%;
    padding: 30px 0;
    font-weight: bold;
    font-size: 1.5em;
}
.menu_wrap_mb .infoArea ul li:first-child{
    margin-top: 150px;
}

.sub_content {
    background-color: #EFEEED;
    width: 100%;
    height: 100%;
    min-height: calc(100dvh - 166px);
    display: flex;
    justify-content: center;
}
.sub_page {
    margin-top: 150px;
    margin-bottom: 100px;
    width: 1400px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.aboutus {
    flex-direction: row;
}
.about_desc {
    margin: 0 50px;
}
.about_desc ul{
    display: flex;
    flex-direction: column;
}
.about_desc ul li{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.about_desc ul li span{
    font-size: 18px;
    line-height: 26px;
}
.aboutus .itroduce_image img{
    width: 100%;
    max-width: 700px;
}
.tech {
    flex-direction: row;
}
.tech_desc {
    margin: 0 50px;
}
.tech_desc ul{
    display: flex;
    flex-direction: column;
}
.tech_desc ul li{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.tech_desc ul li span{
    font-size: 18px;
    line-height: 26px;
}
.tech .itroduce_image img{
    width: 100%;
    max-width: 700px;
}
.contact {
    flex-direction: row;
}
.contact .sub_page {
    justify-content: space-around;
}
.contact_desc {
    margin: 0 50px;
}
.contact_desc ul{
    display: flex;
    flex-direction: column;
}
.contact_desc ul li{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.contact_desc ul li span{
    font-size: 18px;
    line-height: 26px;
}
.contact_desc ul li .mailImg{
    width: 80px;
}
.contact_desc ul li .mailImg img{
    width: 100%;
}
.contact_img .itroduce_image img{
    width: 100%;
    max-width: 550px;
}

.sub_content:has(.process) {
    background-color: #000000;
}
.process {
    flex-direction: column;
    color: #ffffff;
    align-items: stretch;
}
.process_intro div ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-left: 30px;
}
.process_intro div li {
    display: flex;
    flex-direction: column;
    margin: 0 30px;
}
.process_intro div li:nth-child(2) span{
    line-height: 30px;
}
.process_intro div li:first-child{
    font-size: 3em;
    font-weight: 800;
}
.process_intro div li:last-child{
    font-size: 18px;
    font-weight: 500;
}
.process_intro .div_border_line{
    border: 1px #777777 solid;
    width: 100%;
    margin: 70px 0;
}
.process_main  {
    padding: 40px;
}
.process_main .content {
    position: relative;
    height: 200px;
    margin-bottom: 50px;
}
.process_main .content .process_main_title{
    position: absolute;
    top: 0;
    left: 0;
    color: #414141;
    font-size: 80px;
    font-weight: 800;
}
.process_main .content .process_main_m_title{
    position: absolute;
    top: 50px;
    left: 10px;
    font-size: 60px;
    z-index: 1;
    font-weight: 700;
}
.process_main .content .process_main_cont{
    position: absolute;
    top: 130px;
    left: 10px;
    z-index: 1;
}
.process_main .content .process_tile{
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1;
}
.process_tile {
    width: 700px;
    background-color: #EFEEED;
    border-radius: 20px;
    padding: 14px;
    color: #000000;
}
.process_tile .sub {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
}
.process_tile .sub:last-child {
    margin-bottom: 0;
}
.process_tile li {
    display: flex;
    flex-direction: column;
}
.process_tile .tile_name {
    text-align: center;
    border-radius: 20px;
    padding: 5px 20px;
    min-width: 60px;
    background-color: #000000;
    color: #FFFFFF;
    margin-right: 20px;
}
.process_tile .backPoint {
    text-align: center;
    background-color: #ffdb08;
    font-weight: 700;
}

.process_tile {
    background-repeat: no-repeat;
    background-position: right;
    background-position-x: 90%;
    background-size: 20%;
}
.process_tile.no1 {
    background-image: url("../images/process_icon_05.png");
}
.process_tile.no2 {
    background-image: url("../images/process_icon_07.png");
}
.process_tile.no3 {
    background-image: url("../images/process_icon_01.png");
}

.port {
    flex-direction: column;
}
.portfolio_intro{
    margin-top: 50px;
    width: 100%;
}
.port .div_border_line{
    border: 1px #333333 solid;
    width: 96%;
    margin: 40px 0;
}
.portfolio_intro ul{
    text-align: left;
    padding-left: 40px;
}
.portfolio_intro ul li:nth-child(1) span{
    font-weight: 900;
    font-size: 82px;
}
.portfolio_intro ul li:nth-child(2) span{
    color: #F8CE2F;
    font-weight: 900;
    font-size: 42px;
}
.portfolio_intro ul li:nth-child(3){
    margin-top: 20px;
}
.portfolio_intro ul li:nth-child(3) span{
    padding: 8px;
    font-size: 14px;
    border: #333333 1px solid;
    border-radius: 16px;
}
.port_tile_list {
    width: calc(100% - 40px);
    padding-left: 40px;
    display: flex;
}
.port_tile{
    flex: 1;
    height: 200px;
    float: left;
    text-align: left;
    margin-left: 10px;
}
.port_tile > span {
    width: 100%;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 900;
}
.port_tile > div {
    float: left;
}
.port_tile .borderLine{
    width: 3px;
    height: 170px;
    background-color: #c9c9c9;
}
.port_tile .partner_co {
    width: calc(100% - 3px);
    display: flex;
    flex-direction: column;
}
.port_tile .partner_co span {
    padding: 6px 15px;
    font-size: 15px;
    font-weight: 500;
}
.portfolio_tile_list .portfolio_tile {
    display: flex;
    flex-direction: row;
    width: 90%;
    margin: 120px 0px 120px 40px;
}
.portfolio_tile_list .portfolio_tile .portfolio_name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 500px;
}
.portfolio_tile_list .portfolio_tile .portfolio_name .projectNm {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
}
.portfolio_tile_list .portfolio_tile .portfolio_name .projectSkil {
    font-size: 18px;
    font-weight: 900;
    margin-top: 15px;
    color: #ffc800;
    background-color: #000000;
    padding: 0 8px;
}
.portfolio_tile_list .portfolio_tile .portfolio_img {
    width: calc(100% - 500px);
}
.portfolio_tile_list .portfolio_tile .portfolio_img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 -5px 28px rgba(0, 0, 0, 0.10), 0 10px 10px rgba(0, 0, 0, 0.15);
}
.mainTxt {
    display: inline-block;
    font-size: 24px !important;
    font-weight: 800;
    padding: 0 6px;
    color: #ffd018;
    background-color: #464646;
}
@media all and (max-width:1250px) {
    .sub_content {
        overflow-x: hidden;
    }
    .main_page {
        position: relative;
    }
    .main_page .main_desc {
        position: absolute;
        left: 0;
        bottom: 10px;
        z-index: 1;
    }
    .main_page .main_img {
        position: absolute;
        right: 0;
        bottom: 0;
    }
    .main_page .main_desc span{
        color: #000000;
    }
    .main_page .main_desc > span:last-child{
        margin-top: 100px;
    }
    .card_content {
        overflow-x: auto;
        justify-content: flex-start;
    }
    .card {
        margin-left: 30px;
    }
    .card:last-child {
        margin-right: 30px;
    }
    .partner_content .partnerList {
        width: 100%;
    }
    .footerWrap {
        width: 100%;
    }
    .sub_page {
        width: 100%;
        padding: 0 20px;
    }
    .process_main .content .process_tile{
        top: 180px;
        left: 10px;
        width: calc(100% - 40px);
    }
    .process_main .content .process_main_cont{
        top: 140px;
        left: 10px;
        z-index: 1;
    }
    .process_main .content {
        height: auto;
        min-height: 300px;
    }
    .portfolio_tile_list .portfolio_tile .portfolio_name, .portfolio_tile_list .portfolio_tile .portfolio_img {
        width: 50%;
    }
}
@media all and (max-width:780px) {
    .header {
        border-radius: 0;
        margin: 0;
        top: 0;
        width: 100%;
    }
    .gnbWrap .menu .pcOnly {
        display: none;
    }
    .mbOnly {
        display: block;
    }
    .main_content {
        height: fit-content;
    }
    .main_page {
        flex-direction: column;
    }
    .main_page .main_desc {
        position: relative;
        margin-top: 150px;
        margin-left: 0;
    }
    .main_page .main_desc span{
        color: #ffffff;
        font-size: 1.2em;
    }
    .main_page .main_desc > span:last-child{
        margin-top: 20px;
        margin-left: calc((100% - 260px) / 2);
    }
    .main_page .main_img {
        position: relative;
        margin-top: 30px;
    }
    .text_content span {
        font-size: 1.4em;
    }
    .footerWrap {
        padding: 40px 0;
    }
    .footerWrap .logoWrap, .footerWrap .addrWrap {
        margin-left: 20px;
    }
    .card_content {
        height: 500px;
    }
    .card {
        width: 320px;
        height: 300px;
    }
    .footerWrap {
        flex-direction: column;
    }
    .footerWrap .addrWrap {
        margin-top: 30px;
    }
    .aboutus {
        flex-direction: column;
    }
    .about_desc {
        margin: 0 10px 50px 10px;
    }
    .about_desc ul li span{
        font-size: 1em;
    }
    .tech {
        flex-direction: column;
    }
    .tech_desc {
        margin: 0 10px 50px 10px;
    }
    .contact {
        flex-direction: column;
    }
    .contact_desc {
        margin: 0 10px 50px 10px;
    }
    .process_main {
        padding: 5px;
    }
    .process_main .content {
        min-height: 450px;
    }
    .process_intro div ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }
    .process_intro div li {
        margin: 0 10px;
    }
    .process_intro div li:last-child{
        font-size: 1em;
    }
    .process_main .content .process_main_title {
        font-size: 60px;
    }
    .process_main .content .process_main_m_title {
        font-size: 40px;
    }
    .process_main .content .process_main_cont {
        top: 120px;
    }
    .process_main .content .process_tile {
        top: 180px;
    }
    .port_tile_list {
        flex-direction: column;
        padding-left: 20px;
    }
    .port_tile {
        height: fit-content;
        min-height: 160px;
        margin-bottom: 20px;
    }
    .port_tile .borderLine {
        height: fit-content;
        min-height: 140px;
    }
    .portfolio_tile_list .portfolio_tile {
        flex-direction: column;
        margin: 120px 20px ;
    }
    .portfolio_tile_list .portfolio_tile .portfolio_name, .portfolio_tile_list .portfolio_tile .portfolio_img {
        width: 100%;
    }
    .portfolio_tile_list .portfolio_tile .portfolio_name {
        margin-bottom: 30px;
    }
    .inline {
        display: none;
    }
    .portfolio_intro ul li:nth-child(1) span {
        font-size: 3em;
    }
    .portfolio_intro ul li:nth-child(2) span {
        font-size: 2em;
    }
}
