
/* main */

/* visual */
.visual {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.visual .swiper {
    height: 100%;
}

.visual .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual .swiper-slide .img-sect {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.visual .swiper-slide .img-sect img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: visual-2 2s;
}

.visual .swiper-slide-active .img-sect img {
    animation: visual 4s;
}

.visual .swiper-slide .inner {
    height: 100%;
    width: 1520px;
}

.visual .swiper-slide .text-sect {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.visual .swiper-slide .text-sect p {
    color: white;
    font-size: 80px;
    font-weight: bold;
    line-height: 1.2;
}

.visual .pagination {
    width: 1520px;
    height: fit-content;
    top: 65%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    gap: 20px;
}

.visual .pagination .swiper-pagination {
    position: relative;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
}

.visual .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 22px;
    height: 22px;
    background: url(../img/visual-pagination-current-ico.svg);
}

.visual .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: url(../img/visual-pagination-other-ico.svg);
    background-position: center;
    background-repeat: no-repeat;

}

.visual .slide-btn {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.visual .slide-btn.pause {
    background: url(../img/visual-pagination-stop-ico.svg);
}

.visual .slide-btn.play {
    background: url(../img/visual-pagination-play-ico.svg);
}

.visual .contactus {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: rotate(90deg) translateY(-50%);
    z-index: 5;
}

.visual .contactus a {
    color: white;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 4px;
    padding-left: 30px;
    position: relative;
}

.visual .contactus a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: white;
}

.visual .scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;

}

.visual .scroll p {
    color: white;
    position: relative;
    padding-bottom: 84px;
}

.visual .scroll p::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 2px;
    height: 30px;
    background-color: white;
    z-index: 20;
    animation: scroll 1s infinite alternate linear;
}

.visual .scroll p::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 2px;
    height: 74px;
    background-color: white;
    opacity: .6;
}

/* visual */


/* solution */
.solution {
    padding: 200px 0;
    overflow: hidden;
}

.solution .inner {
    position: relative;
    overflow: visible;
}

.solution .inner::after {
    position: absolute;
    content: url(../img/solution-bg-ico.svg);
    top: 50%;
    right: -50%;
    z-index: -1;
    transform: translateY(-50%);
}

.solution .wrap {
    position: relative;
    margin-top: 60px;
}

.solution .swiper {
    overflow: hidden;
    width: 100%;
}

.solution .slide-pagination {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.solution .swiper-pagination-bullet {
    width: 260px;
    height: 66px;
    position: relative;
    background: transparent;
    opacity: 1;
}

.solution .swiper-pagination-bullet.swiper-pagination-bullet-active .txt {
    color: var(--color-brand-primary);
    border-bottom: 1px solid var(--color-brand-primary);
    width: 368px;
    transition: .3s;
}

.solution .swiper-pagination-bullet .txt {
    display: flex;
    align-items: center;
    font-size: var(--default-font2-size);
    font-weight: 600;
    color: var(--color-gray-600);
    width: 260px;
    height: 100%;
    border-bottom: 1px solid var(--color-gray-200);
}

.solution .swiper-slide {
    display: flex;
    justify-content: flex-end;
}

.solution .text-sect {
    opacity: 0;
    width: 368px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.solution .swiper-slide.swiper-slide-active .text-sect {
    opacity: 1;
}

.solution .sol-cate {
    color: var(--color-brand-primary);
    font-size: var(--default-font2-size);
    font-weight: 600;
    margin-bottom: 10px;
}

.solution .sol-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 34px;
}

.solution .sol-list {
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.solution .sol-list li {
    position: relative;
    color: var(--color-gray-800);
    font-size: var(--default-font2-size);
    letter-spacing: -1px;
}

.solution .sol-list li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: -14px;
    width: 4px;
    height: 4px;
    background-color: #d9d9d9;
    border-radius: 50%;
}

/* solution */


/* client */
.client {
    padding: 100px 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client .inner::after {
    position: absolute;
    top: -100px;
    transform: translateX(-80%);
    content: url(../img/client-bg-ico.svg);
    z-index: -1;
}

.client .flow-sect {
    width: 100%;
    overflow: hidden;
    margin: 60px 0;
}

.client .flow-sect div {
    width: max-content;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.client .flow-sect .top {
    animation: flow 8s infinite alternate linear;
}

.client .flow-sect .middle {
    animation: flow 5s infinite alternate-reverse linear;
}

.client .flow-sect .bottom {
    animation: flow 5s infinite alternate linear;
}

/* client */


/* tech */
.tech {
    display: flex;
    height: 100vh;
    align-items: center;
    background: url(../img/technology-img.jpg);
    background-size: cover;
}

.tech .title-text {
    text-align: left;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    width: 40vw;
    align-items: center;
    
}
.tech .wrap{
    width: max-content;
    margin-left: auto;
}

.tech .sect-cate {
    color: var(--color-gray-600);
}

.tech .sect-title {
    color: white;
}

.tech .count-sect {
    width: 60vw;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
}

.tech .count-sect>div {
    padding: 5.2083vw 2.6042vw;
    height: 50vh;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid rgba(255, 255, 255, 0.2);

    background-repeat: no-repeat;
    background-position: bottom 5.2083vw right 2.6042vw;;
}

.tech .count-sect>div:nth-of-type(1),
.tech .count-sect>div:nth-of-type(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.tech .count-sect .count-1 {background-image: url('../img/technology-01-ico.svg');}
.tech .count-sect .count-2 {background-image: url('../img/technology-02-ico.svg');}
.tech .count-sect .count-3 {background-image: url('../img/technology-03-ico.svg');}
.tech .count-sect .count-4 {background-image: url('../img/technology-04-ico.svg');}

.tech .count-title {
    color: white;
    font-size: var(--default-font1-size);
    font-weight: 600;
}

.tech .count-3 .number {
    position: relative;
}

.tech .count-3 .number::after {
    position: a;
    right: 0;
    content: '+';
    color: white;
}

.tech .num {
    display: flex;
    align-items: baseline;
}

.tech .num p {
    color: white;
}

.tech .number {
    font-size: 5.2083vw;
    font-weight: 800;
}

.tech .tag {
    font-size: var(--default-font3-size);
}

.tech .count-sect>div img {
    margin-left: auto;
    display: block;
}

/* tech */


/* review */
.review {
    padding: 200px 0;
}

.review .wrap {
    overflow: hidden;

    margin: 60px 0;
}

.review .swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    height: 340px;
}

.review .swiper .swiper-slide {
    width: 410px;
    height: 300px;
    border: 1px solid var(--color-gray-200);
    border-radius: 25px;
}

.review .swiper .swiper-slide a {
    padding: 40px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review .swiper .swiper-slide.swiper-slide-active {
    
    width: 500px;
    height: 340px;
    background-color: var(--color-brand-primary);
}
.review .swiper .swiper-slide.swiper-slide-active a {padding: 40px 50px;}

.review .swiper .swiper-slide.swiper-slide-active .info {
    
    opacity: 1;
}


.review .swiper .swiper-slide.swiper-slide-active .cate {
    color: white;
    border: 1px solid white;
}

.review .cate {
    display: inline-block;
    border: 1px solid #009C9C;
    color: #009C9C;
    padding: 6px 25px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.review .card-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}


body.eng .review .card-title {
    font-size: 24px;
}

.review .card-txt {
    font-size: 20px;
    color: var(--color-gray-900);
}

.review .date {
    font-size: var(--default-font1-size);
    color: var(--color-gray-600);
    font-size: 18px;
}

.review .swiper .swiper-slide.swiper-slide-active .card-title,
.review .swiper .swiper-slide.swiper-slide-active .card-txt,
.review .swiper .swiper-slide.swiper-slide-active .date {
    color: white;
}

.review .scroll-btn {
    width: 100%;
    margin: 60px auto 0;
    position: relative;
    height: 3px;

}

.review .swiper-scrollbar {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1400px;
    height: 3px;
    background: rgba(0, 0, 0, 0.2);
}

.review .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: black;

}

.review .btn {
    display: flex;
    justify-content: center;
}

/* review */


/* news */
.news {
    overflow: hidden;
    padding: 200px 0;
    position: relative;
    background: linear-gradient(#f6f6f6, rgba(255, 255, 255, 0));
}

.news::after {
    content: url(../img/news-bg-img.jpg);
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.news .btn {
    display: flex;
    justify-content: center;
}

.news .news-list {
    /* display: none; */
    margin: 60px 0;
}
.news .news-list li {
    /* max-width: 440px; */
    width: calc((100% - 80px) / 3);
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 60px;
}
.news .news-list li .img-sect {
    display: block;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
}
.news .news-list li img {
    display: block;
    width: 100%;
    object-fit: cover;
    transition: .5s;
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%); */
}
.news .news-list li img:hover {
    transform: scale(1.1);
    transition: .5s;
}


.news .txt-sect {
    margin-top: 20px;
}

.news .news-cate {
    color: var(--color-gray-600);
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}

.news .news-title {
    font-size: var(--default-font1-size);
    font-weight: bold;
    color: black;
}

.news .news-date {
    font-size: var(--default-font3-size);
    color: var(--color-gray-400);
    margin-top: 25px;
}

/* news */

/* main */


/* 반응??*/
@media screen and (max-width:1560px) {
    .visual .swiper-slide .inner {
        width: 100%;
        padding: 0 20px;
    }
    .visual .pagination{
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width:1460px) {
    .visual .contactus{
        right: -20px;
    }
    .solution .swiper-pagination-bullet .txt{
        width: 200px;
    }
    .solution .swiper-pagination-bullet.swiper-pagination-bullet-active .txt{
        width: 300px;
    }
    .solution .img-sect{
        width: 45vw;
    }
    .solution .img-sect img{
        width: 100%;
    }
    .solution .swiper-slide.swiper-slide-active .text-sect{
        padding-left: 30px;
    }
}

@media screen and (max-width:1350px){
    .solution .img-sect{
        width: 40vw;
    }
    .visual .swiper-slide .text-sect p{
        font-size: 70px;
    }
    .solution .sol-title{
        font-size: 28px;
    }
    .solution .sol-list li{
        font-size: var(--default-font3-size);
    }
    .solution .swiper-slide.swiper-slide-active .text-sect{
        padding-left: 20px;
    }
}

@media screen and (max-width:1200px) {
    .solution .swiper-pagination-bullet .txt{
        width: 130px;
        font-size: var(--default-font3-size);
    }
    .solution .swiper-pagination-bullet.swiper-pagination-bullet-active .txt{
        width: 180px;
    }
    .solution .text-sect{
        width: 300px;
    }
    .tech .count-sect{
        width: 55vw;
    }
    .tech .title-text{
        width:45vw;
        padding-right: 20px;
    }
    .tech .wrap{
        margin-left: 20px;
    }
}

@media screen and (max-width:1024px) {
    .visual .swiper-slide .text-sect p{
        font-size: 58px;
    }

    .solution{
        padding: 100px 0;
    }

    .solution .wrap{
        padding-bottom: 60px;
    }
    .solution .slide-pagination{
        flex-direction: row;
        top: auto;
        bottom: 0;
        align-items: center;
        gap: 13px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .solution .swiper-slide{
        justify-content: center;
    }
    .solution .swiper-pagination-bullet.swiper-pagination-bullet-active{
        width: 22px;
        height: 22px;
        background: url(../img/solution-paging-ico.svg);
    }
    .solution .swiper-pagination-bullet{
        width: 22px;
        height: 22px;
        background: url(../img/solution-pagination-ico.svg);
    }
    .solution .swiper-pagination-bullet .txt{
        display: none;
    }
    .client{
        padding: 50px 0 100px;
    }
    .tech .count-sect{
        width: 50vw;
    }
    .tech .title-text{
        width:50vw;
    }
    .tech .count-title{
        font-size: 16px;
    }
    .tech .tag{
        font-size: 14px;
    }
    .tech .count-sect>div .icon img{
        width: 68px;
    }
    .tech .count-sect > div {background-size: 68px !important;}
    .review{
        padding: 100px 0;
    }
    .news{
        padding: 100px 0;
    }

    .news .news-list li{
        width: calc((100% - 40px) / 2);
    }
    .news .news-list li:nth-child(n + 5) {display: none;}
}

@media screen and (max-width:768px) {
    .review br,
    .client br{
        display: none;
    }
    .review .mob-br,
    .client .mob-br,
    .solution .mob-br,
    .solution br{
        display: block;
    }

    .visual .contactus{
        display: none;
    }

    .visual .swiper-slide .text-sect p{
        font-size: 36px;
        text-align: center;
    }
    .visual .pagination{
        justify-content: center;
    }
    .visual .scroll p{
        font-size: 14px;
    }

    .solution{
        padding: 60px 0;
    }

    .solution .swiper-slide{
        flex-direction: column;
    }
    .solution .img-sect{
        width: 100%;
    }
    .solution .text-sect{
        width: 100%;
        height: 281px;
        justify-content: space-between;
    }
    .solution .pagination{
        position: relative;
        margin: 40px 0 20px;
        height: 22px;
    }
    .solution .swiper-slide.swiper-slide-active .text-sect{
        padding-left: 0;
    }
    .solution .inner::after{
        display: none;
    }
    .solution .sol-cate{
        font-size: 14px;
    }
    .solution .sol-title{
        font-size: var(--default-font2-size);
        margin-bottom: 10px;
    }
    .solution .sol-list{
        margin-bottom: 20px;
    }
    .solution .wrap{
        padding-bottom: 0px;
    }
    .client{
        padding: 0px 0 60px;
    }
    .client .flow-sect div{
        gap: 10px;
    }
    .client .flow-sect div img{
        width: 104px;
    }
    .client .flow-sect{
        margin: 40px 0 20px;
    }
    .client .inner::after{
        display: none;
    }
    .tech{
        flex-direction: column;
        height: 657px;
        background-position: center;
    }
    .tech .title-text{
        width: 100%;
        text-align: center;
        padding: 60px 0 40px;
    }
    .tech .wrap{
        margin-left: 0;
    }

    .tech .count-sect{
        width: 100%;
    }
    .tech .count-sect>div{
        height: 200px;
    }
    .tech .count-sect>div:nth-of-type(1), 
    .tech .count-sect>div:nth-of-type(2){
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    .tech .count-sect>div:nth-of-type(1),
    .tech .count-sect>div:nth-of-type(3){
        border-left:none;
    }
    .tech .count-sect>div .icon img{
        width: 46px;
    }
    .tech .count-sect > div {background-size: 46px !important;}
    .tech .number{
        font-size: 36px;
    }
    .review{
        padding: 60px 0;
    }
    section.review .sect-title{
        padding: 0 20px;
    }
    
    .review .swiper .swiper-slide{
        width: 350px;
        height: 200px;
    }
    .review .swiper .swiper-slide >a {padding: 20px;}
    .review .cate {
        font-size: 12px;
        padding: 5px 15px;
        margin-bottom: 10px;

    }
    .review .card-title{
        font-size: var(--default-font2-size);
        
    }

    body.eng .review .card-title {
        font-size: 18px;
    }

    .review .card-txt{
        font-size: 16px;
    }

    body.eng .review .card-txt{
        font-size: 15px;
    }

    .review .date{
        font-size: 14px;
    }
    .review .swiper .swiper-slide.swiper-slide-active{
        width: 350px;
        height: 200px;
    }
    .review .swiper .swiper-slide.swiper-slide-active a {padding: 20px;}

    .review .swiper .swiper-wrapper{
        height: 200px;
    }
    .review .wrap{
        margin: 40px 0;
    }
    .review .scroll-btn{
        margin: 40px auto 0;
    }
    .review .swiper-scrollbar{
        width: calc(100% - 40px);
    }

    .news{
        padding: 60px 0;
    }

    .news .news-list{
        margin: 40px 0;
    }
    .news .news-list li{
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .news .news-list li img{
        height: 200px;
    }
    .news .news-list li:nth-child(n + 4) {display: none;}


    .news .news-cate{
        font-size: 12px;
    }
    .news .news-title{
        font-size: var(--default-font2-size);
    }
    .news .news-date{
        font-size: 14px;
        margin-top: 10px;
    }
    .news::after{
        height: 79px;
        width: 100%;
        content: '';
        background: url(../img/news-bg-mob-img.svg);
        background-size: cover;
        bottom: 0;
    }

}

/* 반응??*/



/*eng*/
body.eng .visual .swiper-slide .text-sect p {
    font-size: 70px;
}


body.eng .solution .sol-title {
    font-size: 34px;
    letter-spacing: -0.01em;
}

body.eng .solution .sol-list li {
    font-size: var(--default-font3-size);
}

body.eng .review .card-txt {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 400;
}



@media screen and (max-width:1350px){

    body.eng .solution .sol-list li{
        font-size: 16px;
        letter-spacing: -0.01em;
    }
}


@media screen and (max-width:1024px){

    body.eng .tech .count-title{
        font-size: 15px;
    }
}


@media screen and (max-width:768px) {
	
	    body.eng .visual .swiper-slide .text-sect p{
        font-size: 30px;
        word-spacing: -0.05em;
    }
    
        body.eng .solution .text-sect{
        height: 360px;
    }
    
        body.eng .solution .sol-title{
        font-size: var(--default-font2-size);
        letter-spacing: normal;
    }

}


