@charset "UTF-8";
@import url(font.css);

/* //// 비주얼 //// */
#visual {
    padding-top: 60px;
    background: linear-gradient(180deg, #DDF0FF 0%, rgba(234, 246, 255, 0.00) 100%);
}

@media screen and (max-width: 1380px) {
    #visual {
        padding-top: 40px;
    }
}

/* // 비주얼 - pc - 카드 형식 */
#visual .visual_card .visual_ul {
    width: 100%;
    gap: 1em;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

#visual .visual_card .visual_ul li {
    width: calc((100% - 3em) / 4);
    border-radius: 20px;
    height: 460px;
    overflow: hidden;
    padding: 2em;
    transition: cubic-bezier(0.77, 0.02, 0.18, 1) 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 35px;
    box-sizing: border-box;
}

#visual .visual_card .visual_ul li.overLi {
    width: calc((65% - 3em) / 3);
}

#visual .visual_card .visual_ul li.over {
    width: 35%;
}

/* 비주얼 수정 컬러 s */
#visual .visual_card .visual_ul li:nth-child(1) {
    background-image: 
        url(../images/main/visual_bg01.png), 
        linear-gradient(154deg, #D8FFFF -1.66%, #98E4FF 101.04%);
    background-repeat: no-repeat;
    background-position: -200px 90px, center;
}

#visual .visual_card .visual_ul li:nth-child(2) {
    background-image: 
        url(../images/main/visual_bg02.png), 
        linear-gradient(170deg, #DAFFEF 0.32%, #83EAF1 92.22%);
    background-repeat: no-repeat;
    background-position: -200px 90px, center;
}

#visual .visual_card .visual_ul li:nth-child(3) {
    background-image: 
        url(../images/main/visual_bg03.png), 
        linear-gradient(180deg, #F5F6D7 0%, #CFFCA8 100%);
    background-repeat: no-repeat;
    background-position: -200px 90px, center;
}

#visual .visual_card .visual_ul li:nth-child(4) {
    background-image: 
        url(../images/main/visual_bg04.png), 
        linear-gradient(170deg, #DEEDFF 0.32%, #78A7FF 92.22%);
    background-repeat: no-repeat;
    background-position: -200px 90px, center;
}
/* 비주얼 수정 컬러 e */

#visual .visual_card .visual_ul li .base {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#visual .visual_card .visual_ul li.over .base {
    height: auto;
}

#visual .visual_card .visual_ul li .base .tit {
    color: #ffffff;
    font-size: 2.125rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.0425rem;
}

#visual .visual_card .visual_ul li .base .tit span.num {
    display: block;
    color: #ffffff;
    font-family: Pretendard;
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    width: auto;
    margin-bottom: 5px;
}

#visual .visual_card .visual_ul li .base .tit span.num:after {
    content: '';
    position: absolute;
    left: 44px;
    bottom: 14px;
    background: url(../images/main/visual_after01.png) no-repeat;
    width: 36px;
    height: 30px;
}

#visual .visual_card .visual_ul li:nth-child(2) .base .tit span.num:after {
    left: 50px;
    background: url(../images/main/visual_after02.png) no-repeat;
}

#visual .visual_card .visual_ul li:nth-child(3) .base .tit span.num:after {
    left: 50px;
    background: url(../images/main/visual_after03.png) no-repeat;
}

#visual .visual_card .visual_ul li:nth-child(4) .base .tit span.num:after {
    left: 55px;
    background: url(../images/main/visual_after04.png) no-repeat;
}

#visual .visual_card .visual_ul li .base .img {
    text-align: center;
}

#visual .visual_card .visual_ul li.over .base .img {
    display: none;
}

/* 비주얼 수정 컬러 s */
#visual .visual_card .visual_ul li:nth-child(1) .base .tit {
    color: #1668A1;
}

#visual .visual_card .visual_ul li:nth-child(2) .base .tit {
    color: #006E76;
}

#visual .visual_card .visual_ul li:nth-child(3) .base .tit {
    color: #127822;
}

#visual .visual_card .visual_ul li:nth-child(4) .base .tit {
    color: #0F42A8;
}

#visual .visual_card .visual_ul li:nth-child(1) .base .tit span.num {
    color: rgba(22, 104, 161, 0.8);
}

#visual .visual_card .visual_ul li:nth-child(2) .base .tit span.num {
    color: rgba(0, 110, 118, 0.8);
}

#visual .visual_card .visual_ul li:nth-child(3) .base .tit span.num {
    color: rgba(18, 120, 34, 0.8);
}

#visual .visual_card .visual_ul li:nth-child(4) .base .tit span.num {
    color: rgba(15, 66, 168, 0.8);
}
/* 비주얼 수정 컬러 e */

/* 비주얼 - pc - 카드 형식 - hover 후 나타나는 텍스트 및 버튼(.clear) */
#visual .visual_card .visual_ul li .clear {
    display: none;
    transition: all 0.3s;
}

#visual .visual_card .visual_ul li .clear.on {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#visual .visual_card .visual_ul li.over .clear .txt {
    color: #FFF; 
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.0275rem;
    word-break: keep-all !important;
}

/* 비주얼 수정 컬러 s */
#visual .visual_card .visual_ul li:nth-child(1).over .clear .txt {
    color: #1668A1;
}

#visual .visual_card .visual_ul li:nth-child(2).over .clear .txt {
    color: #006E76;
}

#visual .visual_card .visual_ul li:nth-child(3).over .clear .txt {
    color: #127822;
}

#visual .visual_card .visual_ul li:nth-child(4).over .clear .txt {
    color: #0F42A8;
}
/* 비주얼 수정 컬러 e */

#visual .visual_card .visual_ul li.over .clear .btnSet {
    width: 100%;
    display: flex;
    gap: 1em;
}

#visual .visual_card .visual_ul li.over .clear .btnSet a {
    border: none; /* 비주얼 수정 컬러 */
    padding: 1em 1em; 
    height: 54px;
    box-sizing: border-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #ffffff;
    gap: 1.5em;
}

/* 비주얼 수정 컬러 s */
#visual .visual_card .visual_ul li:nth-child(1).over .clear .btnSet a {
    background: #1668A1;
}

#visual .visual_card .visual_ul li:nth-child(2).over .clear .btnSet a {
    background: #006E76;
}

#visual .visual_card .visual_ul li:nth-child(3).over .clear .btnSet a {
    background: #127822;
}

#visual .visual_card .visual_ul li:nth-child(4).over .clear .btnSet a {
    background: #0F42A8;
}

#visual .visual_card .visual_ul li.over .clear .btnSet a:hover {
    opacity: 0.9;
}
/* 비주얼 수정 컬러 e */

/* // 비주얼 - 모바일 - 슬라이드 형식 */
#visual .visual_card_slide {
    position: relative;
}

#visual .visual_card_slide .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
    padding: 2em;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
}

#visual .visual_card_slide .card01 {
    background-image: 
        url(../images/main/visual_bg01_slide.png), 
        linear-gradient(154deg, #D8FFFF -1.66%, #98E4FF 101.04%);
    background-repeat: no-repeat;
    background-position: 0 20px, center;
    background-size: cover;
}

#visual .visual_card_slide .card02 {
    background-image: 
        url(../images/main/visual_bg02_slide.png), 
        linear-gradient(170deg, #DAFFEF 0.32%, #83EAF1 92.22%);
    background-repeat: no-repeat;
    background-position: 0 20px, center;
    background-size: cover;
}

#visual .visual_card_slide .card03 {
    background-image: 
        url(../images/main/visual_bg03_slide.png), 
        linear-gradient(180deg, #F5F6D7 0%, #CFFCA8 100%);
    background-repeat: no-repeat;
    background-position: 0 20px, center;
    background-size: cover;
}

#visual .visual_card_slide .card04 {
    background-image: 
        url(../images/main/visual_bg04_slide.png), 
        linear-gradient(170deg, #DEEDFF 0.32%, #78A7FF 92.22%);
    background-repeat: no-repeat;
    background-position: 0 20px, center;
    background-size: cover;
}

#visual .visual_card_slide .swiper-slide .base {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

#visual .visual_card_slide .swiper-slide .base .tit {
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.0425rem;
}

#visual .visual_card_slide .swiper-slide .base .tit span.num {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-family: Pretendard;
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    width: auto;
    margin-bottom: 5px;
}

/* 비주얼 수정 컬러 s */
#visual .visual_card_slide .swiper-slide.card01 .base .tit {
    color: #1668A1;
}

#visual .visual_card_slide .swiper-slide.card02 .base .tit {
    color: #006E76;
}

#visual .visual_card_slide .swiper-slide.card03 .base .tit {
    color: #127822;
}

#visual .visual_card_slide .swiper-slide.card04 .base .tit {
    color: #0F42A8;
}

#visual .visual_card_slide .swiper-slide.card01 .base .tit span.num {
    color: rgba(22, 104, 161, 0.8);
}

#visual .visual_card_slide .swiper-slide.card02 .base .tit span.num {
    color: rgba(0, 110, 118, 0.8);
}

#visual .visual_card_slide .swiper-slide.card03 .base .tit span.num {
    color: rgba(18, 120, 34, 0.8);
}

#visual .visual_card_slide .swiper-slide.card04 .base .tit span.num {
    color: rgba(15, 66, 168, 0.8);
}
/* 비주얼 수정 컬러 e */

#visual .visual_card_slide .swiper-slide .base .tit span.num:after {
    content: '';
    position: absolute;
    left: 34px;
    bottom: 14px;
    background: url(../images/main/visual_after01.png) no-repeat;
    width: 36px;
    height: 30px;
}

#visual .visual_card_slide .card02 .base .tit span.num:after {
    left: 45px;
    bottom: 10px;
    background: url(../images/main/visual_after02.png) no-repeat;
}

#visual .visual_card_slide .card03 .base .tit span.num:after {
    left: 45px;
    bottom: 10px;
    background: url(../images/main/visual_after03.png) no-repeat;
}

#visual .visual_card_slide .card04 .base .tit span.num:after {
    left: 45px;
    bottom: 10px;
    background: url(../images/main/visual_after04.png) no-repeat;
}

#visual .visual_card_slide .swiper-slide .base .img {
    text-align: center;
    position: absolute;
    right: 2.5em;
    top: 50%;
    transform: translateY(-50%);
}

#visual .visual_card_slide .swiper-slide .clear {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#visual .visual_card_slide .swiper-slide .clear .txt {
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.0275rem;
    word-break: keep-all !important;
    margin-top: 10px;
}

/* 비주얼 수정 컬러 s */
#visual .visual_card_slide .swiper-slide.card01 .clear .txt {
    color: #1668A1;
}

#visual .visual_card_slide .swiper-slide.card02 .clear .txt {
    color: #006E76;
}

#visual .visual_card_slide .swiper-slide.card03 .clear .txt {
    color: #127822;
}

#visual .visual_card_slide .swiper-slide.card04 .clear .txt {
    color: #0F42A8;
}
/* 비주얼 수정 컬러 e */

#visual .visual_card_slide .swiper-slide .clear .txt span.br {
    display: block;
}

#visual .visual_card_slide .swiper-slide .clear .btnSet {
    width: 100%;
    display: flex;
    gap: 1em;
    margin-top: 15px;
}

#visual .visual_card_slide .swiper-slide .clear .btnSet a {
    border: none; /* 비주얼 수정 컬러 */
    padding: 0.7em 1.2em;
    box-sizing: border-box;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #ffffff; /* 비주얼 수정 컬러 */
}

/* 비주얼 수정 컬러 s */
#visual .visual_card_slide .swiper-slide.card01 .clear .btnSet a {
    background: #1668A1;
    border-color: #1668A1;
}

#visual .visual_card_slide .swiper-slide.card02 .clear .btnSet a {
    background: #006E76;
    border-color: #006E76;
}

#visual .visual_card_slide .swiper-slide.card03 .clear .btnSet a {
    background: #127822;
    border-color: #127822;
}

#visual .visual_card_slide .swiper-slide.card04 .clear .btnSet a {
    background: #0F42A8;
    border-color: #0F42A8;
}
/* 비주얼 수정 컬러 e */


/* 비주얼 - 모바일 - 슬라이드 형식 - 페이지네이션 */
#visual .visual_card_slide .swiper-pagination {
    position: absolute;
    left: 0;
    padding: 10px;
    display: flex;
    gap: 10px;
}

#visual .visual_card_slide span.swiper-pagination-bullet {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #ebebeb;
}

#visual .visual_card_slide span.swiper-pagination-bullet-active {
    background-color: #126BDA;
}

@media screen and (max-width: 1080px) {
    #visual .visual_card_slide .swiper-slide .base .tit span.num:after {
        left: 26px;
        bottom: 8px;
    }

    #visual .visual_card_slide .card02 .base .tit span.num:after {
        left: 35px;
        bottom: 6px;
    }

    #visual .visual_card_slide .card03 .base .tit span.num:after {
        left: 35px;
        bottom: 6px;
    }

    #visual .visual_card_slide .card04 .base .tit span.num:after {
        left: 35px;
        bottom: 6px;
    }
}

@media screen and (max-width: 860px) {
    /* 비주얼 수정 s */
    #visual .visual_card_slide .card01 {
        background-position: -70px 0, center;
    }

    #visual .visual_card_slide .card02 {
        background-position: -70px 0, center;
    }

    #visual .visual_card_slide .card03 {
        background-position: -70px 0, center;
    }

    #visual .visual_card_slide .card04 {
        background-position: -70px 0, center;
    }
    /* 비주얼 수정 e */
}

@media screen and (max-width: 720px) {
    #visual .visual_card_slide .swiper-slide .base .img {
        position: absolute;
        right: 1.3em;
        top: 30%;
        width: 150px;
        height: 100px;
    }

    #visual .visual_card_slide .swiper-slide .base .img img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media screen and (max-width: 640px) {
    /* 비주얼 수정 s */
    #visual .visual_card_slide .card01 {
        background-position: -200px 0, center;
    }

    #visual .visual_card_slide .card02 {
        background-position: -200px 0, center;
    }

    #visual .visual_card_slide .card03 {
        background-position: -200px 0, center;
    }

    #visual .visual_card_slide .card04 {
        background-position: -200px 0, center;
    }
    /* 비주얼 수정 e */
}

@media screen and (max-width: 480px) {
    #visual .visual_card_slide .swiper-slide .clear .btnSet a {
        padding: 0.7em 1.1em;
        gap: 1.5em;
        font-size: 0.95rem;
    }

    #visual .visual_card_slide .swiper-slide .base .tit span.num:after {
        left: 20px;
    }

    #visual .visual_card_slide .card02 .base .tit span.num:after {
        left: 26px;
    }

    #visual .visual_card_slide .card03 .base .tit span.num:after {
        left: 24px;
    }

    #visual .visual_card_slide .card04 .base .tit span.num:after {
        left: 27px;
    }
}

@media screen and (max-width: 430px) {
    #visual .visual_card_slide .swiper-slide .base .img {
        width: 100px;
        height: 80px;
        top: 23%;
    }

    #visual .visual_card_slide .swiper-slide.card02 .base .img,
    #visual .visual_card_slide .swiper-slide.card03 .base .img,
    #visual .visual_card_slide .swiper-slide.card04 .base .img  {
        width: 90px;
        top: 25%;
    }

    #visual .visual_card_slide .swiper-slide .clear .txt span.br {
        display: inline;
    }

    #visual .visual_card_slide .card02 .base .tit span.br {
        display: block;
    }

    /* 비주얼 수정 s */
    #visual .visual_card_slide .card01 {
        background-position: -300px 0, center;
    }

    #visual .visual_card_slide .card02 {
        background-position: -300px 0, center;
    }

    #visual .visual_card_slide .card03 {
        background-position: -300px 0, center;
    }

    #visual .visual_card_slide .card04 {
        background-position: -300px 0, center;
    }
    /* 비주얼 수정 e */
}




/* //// 메인 컨텐츠 공통 //// */
/* 컨텐츠 타이틀 */
.cts_tit {
    color: #121212;
    font-size: 2.5rem;
    font-weight: 600;
}

.cts_tit h4 span {
    color: #126BDA;
}

.cts_tit.small {
    font-size: 2rem;
}

.cts_tit p {
    color: #56585a;
    font-size: 1.1875rem;
    font-weight: 400;
    margin-top: 10px;
}

.cts_tit h4 {
    line-height: normal;
}

@media screen and (max-width: 1380px) {
    .cts_tit {
        font-size: 2rem;
    }
}


/* //// cts01 스마트팜 소식, 스마트팜 지원사업 //// */
/* // 스마트팜 소식 */
#cts01 {
    gap: 2em;
}

#cts01 .wrap {
    width: 90.5% !important;
}

#cts01 .board {
    width: calc(100% - 360px - 3em);
}

/* 스마트팜 소식 - 타이틀 / 탭 / 더보기 버튼 */
#cts01 .board .top {
    position: relative;
}

#cts01 .board .top .tabTit {
    margin-left: 60px;
}

#cts01 .board .top .tabTit ul {
    gap: 2em;
}

#cts01 .board .top .tabTit li {
    color: #5a5a5a;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.03rem;
    position: relative;
}

#cts01 .board .top .tabTit li.on {
    color: #121212;
    font-weight: 700;
    padding-left: 38px;
}

#cts01 .board .top .tabTit li.on:before {
    content: '';
    width: 32px;
    height: 32px;
    background: url(../images/main/tab_after.png) no-repeat;
    position: absolute;
    left: 0;
    top: -1px;
}

#cts01 .board .top .tabTit li:first-child:after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #b0b0b0;
    position: absolute;
    right: -20px;
    top: 13px;
}

#cts01 .board .board_cts .board_btn .btn_more a {
    position: absolute;
    top: -61px;
    right: 0px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: #e8e8e8;
    transition: all 0.3s;
}

#cts01 .board .board_btn .btn_more:hover a {
    background: #c9c9c9;
}

#cts01 .board .board_btn .btn_more a .xi-plus {
    transition: all 0.3s;
}

#cts01 .board .board_btn .btn_more:hover a .xi-plus {
    transform: rotate(90deg);
}

/* 스마트팜 소식 - 탭 컨텐츠 */
.board_cts {
	position: relative;
    height: 360px;
    margin-top: 20px;
}

.board_cts .tab_cts {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 0.5em 2em;
    box-sizing: border-box;
}

.board_cts .tab_cts .collect {
    height: 100%;
}

.board_cts .tab_cts .board_list {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.board_cts .tab_cts .board_list li {
    height: calc((100% / 5));
    border-bottom: 1px solid #D4D4D4;
    padding: 1.25em 0;
    box-sizing: border-box;
}

.board_cts .tab_cts .board_list li:last-child {
    border-bottom: none;
}

.board_cts .tab_cts .board_list li a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.board_cts .tab_cts .board_list li .section span {
    width: auto;
    border-radius: 30px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.4em 0.9em;
    box-sizing: border-box;
    margin-right: 10px;
}

.board_cts .tab_cts .board_list li .section.gray span {
    background: #515C72;
}

.board_cts .tab_cts .board_list li .section.green span {
    background: #3C8C6E;
}

.board_cts .tab_cts .board_list li .tx {
    color: #121212;
    font-size: 1.375rem;
    font-weight: 500;
    width: calc(75% - 20px);
    text-align: left;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.board_cts .tab_cts .board_list li .date {
    width: 15%;
    color: #acacac;
    font-size: 1rem;
    font-weight: 500;
    text-align: right;
}


@media screen and (max-width: 1380px) {
    #cts01 .board .top .tabTit {
        margin-left: 30px;
    }
}

@media screen and (max-width: 1080px) {
    .board_cts {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    .board_cts {
        height: 210px;
    }

    .board_cts .tab_cts {
        padding: 0.5em 1.3em;
        border-radius: 20px;
    }

    .board_cts .tab_cts .board_list li {
        padding: 1em 0;
    }

    .board_cts .tab_cts .board_list li a {
        gap: 5px;
    }

    .board_cts .tab_cts .board_list li .tx {
        font-size: 1rem;
    }

    .board_cts .tab_cts .board_list li .section span {
        margin-right: 0;
        padding: 0.2em 0.5em;
        font-size: 0.925rem;
    }

    .board_cts .tab_cts .board_list li .date {
        width: 22%;
        font-size: 0.875rem;
        font-weight: 400;
    }
}


/* // 스마트팜 지원사업 */
#cts01 .business {
    width: 360px;
}

#cts01 .business > .top{
    align-items: flex-end;
}

/* 스마트팜 지원사업 - 타이틀 / 페이지네이션 / 컨트롤러 */
.business_btn {
    align-items: center;
}

.business_btn .pagination {
    margin-right: 10px;
}

.business_btn .pagination {
    color: #979797;
    font-size: 0.8rem;
    font-weight: 600;
}

.business_btn .pagination b {
    color: #2E2E2E;
}

.business_btn .btns {
    gap: 10px;
    align-items: center;
}

.business_btn .btns .btn button {
    font-size: 1em !important;
}

.business_btn .btns .btn.btn_pause .xi-play {
    display: none;
}

.business_btn .btns .btn.btn_pause .xi-pause {
    display: block;
}

.business_btn .btns .btn.btn_pause.active .xi-play {
    display: block;
}

.business_btn .btns .btn.btn_pause.active .xi-pause {
    display: none;
}

/* 스마트팜 지원사업 - 슬라이드 */
.business_cts {
    height: 360px;
    margin-top: 20px;
}

.business_cts .swiper-container {
    height: 100%;
}

.business_cts .lineBox {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 1px solid #d4d4d4;
    box-sizing: border-box;
}

.business_cts .lineBox > a > img {
    width: 100%;
    height: 100%;
}

.business_cts .lineBox .top {
    height: 160px;
    padding: 1.3em 2em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.business_cts .lineBox .top .info {
    width: calc(100% - 80px);
}

.business_cts .lineBox .top .info .navi {
    color: #3C475C;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 0.5em;
}

.business_cts .lineBox .top .info .navi .xi-play {
    font-size: 0.7em;
}

.business_cts .lineBox .top .info .state {
    width: auto;
    border-radius: 30px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.3em 1.2em;
    box-sizing: border-box;
    background: #126BDA;
    position: absolute;
    right: 2rem;
    top: 1.3rem;
    line-height: normal;
}

.business_cts .lineBox .top .info .state.blue {
    background: #126BDA;
}

.business_cts .lineBox .top .name .img {
    width: 75px;
    height: 75px;
    border-radius: 26px;
    background: #DCEFE8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business_cts .lineBox .top .name h4 {
    color: #121212;
    font-size: 1.5625rem;
    font-weight: 600;
    line-height: 2.125rem;
    /* 136% */
    margin-left: 14px;
}

.business_cts .lineBox .bottom {
    height: 200px;
    background: #F7F7F7;
    padding: 1.3em 2em;
    box-sizing: border-box;
}

.business_cts .lineBox .bottom .infoList {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.business_cts .lineBox .bottom .infoList li {
    color: #3f3f3f;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.business_cts .lineBox .bottom .infoList li span.tit {
    display: inline-block;
    width: 95px;
    height: 33px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #2B845F;
    text-align: center;
    line-height: 33px;
    color: #2B845F;
    font-size: 1rem;
    font-weight: 500;
    margin-right: 10px;
}

.business_cts .lineBox .bottom .infoList li span.txt {
    width: calc(100% - 105px);
}

@media screen and (max-width: 1380px) {
    #cts01>.wrap {
        gap: 60px;
    }

    #cts01 .board,
    #cts01 .business {
        width: 100%;
    }
}

@media screen and (max-width: 1080px) {
    .business_cts {
        height: 300px;
    }

    .business_cts .lineBox .top {
        height: 140px;
    }

    .business_cts .lineBox .bottom {
        height: 160px;
    }

    .business_cts .lineBox .bottom .infoList li span.tit {
        width: 85px;
        height: 26px;
        line-height: 26px;
    }

    .business_cts .lineBox .top .name .img {
        width: 65px;
        height: 65px;
        border-radius: 20px;
    }

    #cts01 .board .top .tabTit li.on:before {
        width: 26px;
        height: 26px;
        background-size: cover;
        left: 7px;
        top: 0;
    }

    .business_btn .btns .btn button {
        font-size: 1.5em !important;
    }

    .business_btn .btns .btn.btn_pause button {
        font-size: 1.2em !important;
    }
}

@media screen and (max-width: 991px) {
    #cts01 {
        margin-top: 80px !important;
    }

    #cts01 .board .top .tabTit li:first-child:after {
        width: 4px;
        height: 4px;
        right: -16px;
        top: 10px;
    }
}

@media screen and (max-width: 768px) {
    #cts01 .board .top .left {
        width: 100%;
        flex-wrap: wrap;
    }

    #cts01 .board .top .tabTit li.on:before {
        top: -1px;
    }

    #cts01 .board .top .left>div {
        width: 100%;
    }

    #cts01 .board .top .tabTit {
        margin-left: 0;
        margin-top: 20px;
    }

    #cts01 .board .top .tabTit ul {
        justify-content: flex-start;
    }

    #cts01 .board .top .board_btn {
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .business_cts {
        height: 280px;
        margin-top: 10px;
    }

    .business_cts .lineBox .top {
        height: 130px;
        padding: 1.3em;
    }

    .business_cts .lineBox .bottom {
        height: 150px;
        padding: 1.3em;
    }

    .business_cts .lineBox .bottom .infoList li span.tit {
        width: 70px;
        height: 24px;
        line-height: 25px;
    }

    .business_cts .lineBox .bottom .infoList li span.txt {
        width: calc(100% - 80px);
    }

    .business_cts .lineBox .top .info .state {
        right: 1.3rem;
        top: 1rem;
    }

    .business_cts .lineBox .top .name h4 {
        font-size: 1.4rem;
    }

    .business_cts .lineBox .top .name .img {
        width: 55px;
        height: 55px;
    }
}

@media screen and (max-width: 380px) {
    .business>.top {
        justify-content: flex-end;
        gap: 10px;
    }

    .business .cts_tit.small {
        width: 100%;
    }
}

@media screen and (max-width: 360px) {
    .business_cts .lineBox .top .name .img {
        width: 45px;
        height: 45px;
        border-radius: 15px;
    }

    .business_cts .lineBox .bottom .infoList li span.tit {
        width: 60px;
        height: 20px;
        line-height: 21px;
    }
}

/* //// cts02 - 스마트팜 데이터셋 //// */
#cts02 {
    background: #F3FAFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cts02:before {
    content: '';
    position: absolute;
    width: 700px;
    height: 110%;
    background: url(../images/main/cts02_before.png) no-repeat;
    left: -200px;
    bottom: 0px;
}

#cts02>div {
    padding: 80px 0;
    position: relative;
}

#cts02>div::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 110%;
    background: url(../images/main/cts02_after.png) no-repeat;
    right: -10px;
    bottom: -400px;
}

@media screen and (max-width: 768px) {
    #cts02:before {
        width: 500px;
        height: 90%;
        background-size: 100%;
        left: -300px;
    }

    #cts02>div::before {
        width: 400px;
        height: 90%;
        background-size: 100%;
        right: -50px;
    }
}


/* 스마트팜 데이터셋 - pc - 데이터셋 리스트 */
.dataSet_list {
    width: 100%;
    margin-top: 35px;
    box-sizing: border-box;
}

.dataSet_list>ul {
    gap: 1.8em;
}

.dataSet_list .dataSet_li {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    width: calc((100% - 3.6em) / 3);
    height: 420px;
    border: 1px solid #126BDA;
    text-align: left;
    box-sizing: border-box;
    position: relative;
}

.dataSet_list .dataSet_li .top {
    height: 200px;
    padding: 0 2em 1.3em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1em;
}

.dataSet_list .dataSet_li .top .info {
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 500;
}

.dataSet_list .dataSet_li .top .info .year,
.dataSet_list .dataSet_li .top .info .type {
    border-radius: 5px;
    background: #fff;
    border: 1px solid #126BDA;
    color: #126BDA;
    padding: 0.2em 0.5em;
}

.dataSet_list .dataSet_li .top .info .typeSet {
    display: flex;
    gap: 0.5em;
}

.dataSet_list .dataSet_li .top .info .type.red {
    border-color: #CF0034;
    background: #CF0034;
    color: #fff !important;
}

.dataSet_list .dataSet_li .top .info .type.blue {
    border-color: #3841E8;
    background: #3841E8;
    color: #fff !important;
}

.dataSet_list .dataSet_li .top .info .type.green {
    border-color: #028488;
    background: #028488;
    color: #fff !important;
}

.dataSet_list .dataSet_li .top .name {
    gap: 1em;
    width: 100%;
}

.dataSet_list .dataSet_li .top .name .txt {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dataSet_list .dataSet_li:before {
    content: '';
    position: absolute;
    width: 100px;
    height: 89px;
    right: 20px;
    top: 32%;
    transform: translateY(-50%);
}

.dataSet_list .dataSet_li.strawberry:before {
    background: url(../images/main/dataSet_strawberry.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.cherryTomato:before {
    background: url(../images/main/dataSet_cherryTomato.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.paprika:before {
    background: url(../images/main/dataSet_paprika.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.melon:before {
    background: url(../images/main/dataSet_melon.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.tomato:before {
    background: url(../images/main/dataSet_tomato.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.cucumber:before {
    background: url(../images/main/dataSet_cucumber.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.hanrabong:before {
    background: url(../images/main/dataSet_hanrabong.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.mandarin:before {
    background: url(../images/main/dataSet_mandarin.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.lemon:before {
    background: url(../images/main/dataSet_lemon.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.eggplant:before {
    background: url(../images/main/dataSet_eggplant.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.lettuce:before {
    background: url(../images/main/dataSet_lettuce.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.chives:before {
    background: url(../images/main/dataSet_chives.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li.etc:before {
    background: url(../images/main/dataSet_etc.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
}

.dataSet_list .dataSet_li .top .name h4 {
    color: #121212;
    font-size: 1.875rem;
    font-weight: 600;
}

.dataSet_list .dataSet_li .top .name .keyword {
    width: calc(100% - 100px);
    overflow: hidden;
    /* 두 줄 아래로 떨어지면 안 보이게 설정*/
}

.dataSet_list .dataSet_li .top .name .keyword ul {
    justify-content: flex-start;
    gap: 0.5em;
    position: relative;
}

.dataSet_list .dataSet_li .top .name .keyword ul li {
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 0.3em 0.8em;
    color: #a0a0a0;
    font-size: 0.875rem;
    font-weight: 500;
    background: #ffffffc0;
}

.dataSet_list .dataSet_li .bottom {
    height: 220px;
    background: #F2F8FD;
    padding: 1.3em 2em;
    box-sizing: border-box;
}

.dataSet_list .dataSet_li .bottom .infoList {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dataSet_list .dataSet_li .bottom .infoList li {
    color: #3f3f3f;
    font-size: 1rem;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E3E6E9;
    padding: 0.5em 0;
}

.dataSet_list .dataSet_li .bottom .infoList li:first-child {
    padding-top: 0;
}

.dataSet_list .dataSet_li .bottom .infoList li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dataSet_list .dataSet_li .bottom .infoList li span.tit {
    color: #6c6e70;
    font-size: 1rem;
    font-weight: 500;
}

.dataSet_list .dataSet_li .bottom .infoList li span.tit .imgWr {
    display: inline-block;
    width: 20px;
}

.dataSet_list .dataSet_li .bottom .infoList li span.outcome1 {
    text-align: center;
    color: #121212;
    font-size: 1.0625rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.2em;
}

.dataSet_list .dataSet_li .bottom .infoList li span.outcome1 .box {
    padding: 0.2em 0.4em;
    background: #274071;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
}

.dataSet_list .dataSet_li .bottom .infoList li span.outcome2 {
    text-align: right;
    width: 30%;
    color: #126BDA;
    font-size: 1.375rem;
    font-weight: 600;
}

/* 데이터셋 - 자세히 보기 버튼 */
.dataSetWr .btn_more {
    width: 200px;
    height: 50px;
    margin: 0 auto;
    margin-top: 35px;
}

.dataSetWr .btn_more a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    color: #fff;
    background: #333333;
    padding: 1em 2.5em;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-size: 1.0625rem;
    font-weight: 500;
}

.dataSetWr .btn_more:hover a {
    padding: 1em 2em;
}

/* 스마트팜 데이터셋 - 모바일 - 데이터셋 슬라이드 - 페이지네이션 */
.dataSet_slide .swiper-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.dataSet_slide span.swiper-pagination-bullet {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #ebebeb;
}

.dataSet_slide span.swiper-pagination-bullet-active {
    background-color: #126BDA;
}

.dataSet_slide .dataSet_list .dataSet_li {
    height: 390px;
}

.dataSet_slide .dataSet_list .dataSet_li .top {
    height: 180px;
    gap: 0.5em;
}

.dataSet_slide .dataSet_list .dataSet_li .bottom {
    height: 210px;
}


@media screen and (max-width: 1480px) {
    .dataSet_list .dataSet_li:before {
        width: 80px;
        height: 80px;
        top: 33%;
    }

    .dataSet_list .dataSet_li .top .name .keyword {
        width: calc(100% - 60px);
    }
}

@media screen and (max-width: 1380px) {
    .dataSetWr .btn_more {
        margin-top: 70px;
    }
}

@media screen and (max-width: 1280px) {
    .dataSet_list .dataSet_li:before {
        top: 30%;
    }

    .dataSet_list .dataSet_li .top .name .keyword {
        width: calc(100% - 60px);
    }
}

@media screen and (max-width: 991px) {
    #cts02>div {
        padding: 60px 0;
    }
}

@media screen and (max-width: 860px) {
    .dataSet_slide .dataSet_list .dataSet_li {
        height: 360px;
    }

    .dataSet_slide .dataSet_list .dataSet_li .top {
        height: 160px;
    }

    .dataSet_slide .dataSet_list .dataSet_li .bottom {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .dataSet_slide .dataSet_list .dataSet_li {
        height: 310px;
    }

    .dataSet_slide .dataSet_list .dataSet_li .top {
        height: 140px;
        padding: 1.3em;
    }

    .dataSet_slide .dataSet_list .dataSet_li .bottom {
        height: 170px;
        padding: 1.3em;
    }

    .dataSet_list .dataSet_li:before {
        width: 70px;
        height: 70px;
    }

    .dataSet_list .dataSet_li .top .name .keyword {
        width: calc(100% - 70px);
    }

    .dataSet_list .dataSet_li .top .name .keyword ul li {
        padding: 0.2em 0.4em;
    }

    .dataSet_list .dataSet_li .bottom .infoList li span.outcome2 {
        font-size: 1.2rem;
    }

    .dataSet_list .dataSet_li .top .name h4 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 430px) {
    #cts02>div {
        display: block;
        padding: 50px 0;
    }
}

@media screen and (max-width: 320px) {
    .dataSet_list .dataSet_li .top .name .keyword {
        max-height: 46px;
    }
}

/* //// cts03 스마트팜 기술을 배우고 싶으신가요? //// */
.smartTech .top {
    align-items: flex-end;
}

.smartTech .top .cts_tit span.br {
    display: block;
}

.smartTech .top .btn_more a {
    display: block;
    padding: 0.7em 1.5em;
    color: #5a5a5a;
    font-size: 1.0625rem;
    font-weight: 500;
    border: 1px solid #E3E3E3;
    background: #fff;
    border-radius: 50px;
    transition: all 0.3s;
}

.smartTech .top .btn_more a .xi-plus {
    color: #717171;
    margin-left: 16px;
    transition: all 0.3s;
}

.smartTech .top .btn_more:hover a {
    background: #f8f8f8;
}

.smartTech .top .btn_more:hover a .xi-plus {
    transform: rotate(90deg);
}

/* 스마트팜 기술을 배우고 싶으신가요? - 카드 컨텐츠 */
.smartTech .techCard {
    width: 100%;
    gap: 1.5em;
}

.smartTech .techCardLi {
    width: calc((100% - 1.5em) / 2);
    height: 440px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s;
}

.smartTech .techCardLi:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 30, 49, 0.2);
}

.smartTech .techCardLi.blue {
    background: url(../images/main/smartTech_before.png) no-repeat #0554D3;
    background-position: left -120px bottom -200px;
    background-size: cover;
}

.smartTech .techCardLi.navy {
    background: url(../images/main/smartTech_before.png) no-repeat #0C15BB;
    background-position: left -120px bottom -200px;
    background-size: cover;
}

.smartTech .techCardLi a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 2em;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.smartTech .techCardLi .top_txt .left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.smartTech .techCardLi .top_txt .tag {
    font-size: 1rem;
    font-weight: 500;
}

.smartTech .techCardLi .top_txt h4 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 2.625rem;
    /* 131.25% */
}

.smartTech .techCardLi .top_txt .date {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.375rem;
    font-weight: 500;
}

.smartTech .techCardLi .bottom_list ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(100% - 100px);
}

.smartTech .techCardLi .bottom_list li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.125rem;
    font-weight: 600;
}

.smartTech .techCardLi .bottom_list li span.img {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 36px;
}

.smartTech .techCardLi .bottom_list li span.txt {
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
}

.smartTech .techCardLi.blue .bottom_list li span.img {
    background: #0554D3;
}

.smartTech .techCardLi.navy .bottom_list li span.img {
    background: #0C15BB;
}

.smartTech .techCardLi .bottom_list .btn_go {
    width: 74px;
    height: 74px;
    border-radius: 74px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3.524px 13.214px 0px rgba(0, 0, 0, 0.20);
}

.smartTech .techCardLi .bottom_list .btn_go img {
    transition: all 0.3s;
}

.smartTech .techCardLi:hover .bottom_list .btn_go img {
    padding-left: 10px;
}

@media screen and (max-width: 1380px) {
    .smartTech .techCardLi {
        height: 380px;
    }

    .smartTech .techCardLi .top_txt h4 {
        font-size: 1.875rem;
        line-height: 2.2rem;
    }

    .smartTech .techCardLi .top_txt .img {
        width: 120px;
        height: 110px;
    }
}

@media screen and (max-width: 1280px) {
    .smartTech .techCardLi {
        width: 100%;
        height: 350px;
    }

    .smartTech .techCardLi.blue {
        background-position: left 0px bottom -230px;
    }

    .smartTech .techCardLi.navy {
        background-position: left 0px bottom -230px;
    }

    .smartTech .techCardLi .bottom_list ul {
        gap: 5px;
    }

    .smartTech .techCardLi .bottom_list li span.img {
        width: 30px;
        height: 30px;
    }

    .smartTech .techCardLi .bottom_list li span.img img {
        width: 15px;
    }

    .smartTech .techCardLi .top_txt .date img {
        width: 20px;
    }
}

@media screen and (max-width: 1080px) {
    .smartTech .techCardLi {
        height: 310px;
    }
}

@media screen and (max-width: 991px) {
    .smartTech .techCardLi {
        height: 290px;
    }

    .smartTech .techCardLi .bottom_list .btn_go {
        width: 65px;
        height: 65px;
    }

    .smartTech .techCardLi.blue {
        background-position: left 0px bottom -170px;
    }

    .smartTech .techCardLi.navy {
        background-position: left 0px bottom -170px;
    }
}

@media screen and (max-width: 740px) {
    .smartTech .btn_more {
        width: 100%;
        margin-top: 20px;
        text-align: right;
    }
}

@media screen and (max-width: 640px) {
    .smartTech .top .cts_tit span.br {
        display: inline;
    }

    .smartTech .top .btn_more {
        width: 100%;
    }

    .smartTech .top .btn_more a {
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .smartTech .techCardLi .top_txt .img {
        width: 90px;
        height: 80px;
    }

    .smartTech .techCardLi .top_txt .img img {
        max-width: 100% !important;
        max-height: 100% !important;
    }

    .smartTech .techCardLi.blue {
        background-position: left -50px bottom -150px;
    }

    .smartTech .techCardLi.navy {
        background-position: left -50px bottom -150px;
    }
}

@media screen and (max-width: 480px) {
    .smartTech .techCardLi {
        height: 270px;
    }

    .smartTech .techCardLi a {
        padding: 1.8em;
    }

    .smartTech .techCardLi .top_txt .img {
        width: 65px;
        height: 70px;
    }

    .smartTech .techCardLi .bottom_list .btn_go {
        width: 45px;
        height: 45px;
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .smartTech .techCardLi .bottom_list .btn_go img {
        width: 50%;
    }

    .smartTech .techCardLi:hover .bottom_list .btn_go img {
        padding-left: 0;
    }

    .smartTech .techCardLi .bottom_list ul {
        width: 100%;
    }

    .smartTech .techCardLi .top_txt h4 {
        font-size: 1.5rem;
    }

    .smartTech .techCardLi .top_txt .date {
        font-size: 1rem;
    }

    .smartTech .techCardLi .top_txt .date img {
        width: 15px;
    }

    .smartTech .techCardLi.blue {
        background-position: left -70px bottom -50px;
        background-size: 500px;
    }

    .smartTech .techCardLi.navy {
        background-position: left -70px bottom -50px;
        background-size: 500px;
    }
}

@media screen and (max-width: 400px) {
    .smartTech .techCardLi .top_txt .img {
        width: 50px;
        height: 40px;
    }
}

@media screen and (max-width: 320px) {
    .smartTech .techCardLi .top_txt .img {
        position: absolute;
        top: 1.7em;
        right: 1em;
    }
}




/* //// cts04 스마트팜 분석서비스 //// */
#cts04 {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(336deg, #2AC9A4 11.97%, #11479F 90.72%);
    position: relative;
    overflow: hidden;
}

#cts04:before {
    content: '';
    background: url(../images/main/cts04_beforeL.png) no-repeat;
    position: absolute;
    width: 600px;
    height: 300px;
    left: 0;
    bottom: 0;
}

#cts04>div {
    position: relative;
    padding-bottom: 40px;
    height: 100%;
}

#cts04>div:before {
    content: '';
    background: url(../images/main/cts04_beforeR.png) no-repeat;
    position: absolute;
    width: 800px;
    height: 400px;
    right: 0;
    bottom: -150px;
}

#cts04 .cts_tit,
#cts04 .cts_tit p {
    color: #fff;
}



/* 스마트팜 분석서비스 - 컨텐츠 슬라이드 컨트롤러  */
.analysis_cts {
    position: relative;
}

.analysis_cts .analysis_swiper_ctrl {
    width: 110%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.analysis_cts .analysis_swiper_ctrl button {
    width: 44px;
    height: 44px;
    border-radius: 44px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.analysis_cts .analysis_swiper_ctrl button:hover {
    opacity: 0.8;
}

@media screen and (max-width: 1640px) {
    .analysis_cts .analysis_swiper_ctrl {
        width: 70%;
        top: -14%;
    }
}

@media screen and (max-width: 860px) {
    .analysis_cts .analysis_swiper_ctrl {
        width: 130px;
        top: 113%;
    }
}


/* 스마트팜 분석서비스 - 컨텐츠 슬라이드  */
.analysis_cts .analysis_swiper .shadowBox {
    width: 100%;
    height: 320px;
    border-radius: 30px;
    background: #fff;
    padding: 1em 2em;
}

.analysis_cts .analysis_swiper .shadowBox a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analysis_cts .analysis_swiper .shadowBox .section {
    width: 100%;
    background: #EDEDED;
    border-radius: 24px;
    padding: 0.5em;
    font-size: 1rem;
    font-weight: 600;
}

.analysis_cts .analysis_swiper .shadowBox .imgWr {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analysis_cts .analysis_swiper .shadowBox .imgWr img {
    transition: all 0.3s;
}

.analysis_cts .analysis_swiper .shadowBox .tit {
    color: #121212;
    font-size: 1.1875rem;
    font-weight: 600;
    line-height: 130%;
    /* 1.54375rem */
}

.analysis_cts .analysis_swiper .shadowBox .company {
    width: 100%;
    border: 1px solid #D9D9D9;
    padding: 0.7em 1em;
    color: #5a5a5a;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
}

.analysis_cts .analysis_swiper .swiper-slide:hover .shadowBox {
    box-shadow: 7px 7px 20px 0px rgba(0, 0, 0, 0.10);
}

.analysis_cts .analysis_swiper .swiper-slide:hover .shadowBox .imgWr img {
    transform: scale(0.9);
}


@media screen and (max-width: 991px) {
    .analysis_cts .analysis_swiper .shadowBox {
        padding: 1.3em;
    }
}