/* 팝업창 */
.br{
    display: block;
}
.br-mo{
    display: none;
}
.popup-bg{
    position: absolute;
    width: 100%;
    height: 575vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999999;
}
.popup-box{
    width: 1030px;
    height: auto;
    background: #fff;
    border-radius: 30px;
    margin: 120px auto;
}
.popup-btn{
    display: flex;
    justify-content: end;
    cursor: pointer;
    
}
.popup-btn img{
    padding: 20px;
   
}

.popup-content{
    display: flex;
    padding: 0 40px 40px 40px;
}
.popup-text{
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}
.popup-text-box{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.popup-text-box h3{
    color: #DE2B3A;
    font-size: 24px;
    font-weight: 600;
}
.popup-text-box p{
    font-size: 20;
    font-weight: 300;
}

.popup-icon-box{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
}
.popup-icon-img{}
.popup-icon-img img{}
.popup-icon-box h3{
    font-weight: 600;
    font-size: 24px;
    color: #DE2B3A;
}

.popup-img-box{}
.popup-img{
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 465px;
}
.popup-img img{
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.popup-img p{
    text-align: center;
    font-weight: 300;
    font-size: 24px;
}


/* 클릭 유도 아이콘 */
.img-box1{
    position: absolute;
    width: 70px;
    height: 70px;
    top: 55px; left: 26%;
    animation-name: clickIcon;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    z-index: 99999;
}
.img-box2{
    position: absolute;
    width: 70px;
    height: 70px;
    top: 59px; left: 80%;
    animation-name: clickIcon;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    z-index: 99999;
}
#header.on .img-box1,
#header.on .img-box2{display: none;}
.img-box3{
    position: absolute;
    width: 70px;
    height: 70px;
    top: 1370px; left: 83.5%;
    animation-name: clickIcon;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    z-index: 99999;
    
}
.img-box4{
    position: absolute;
    width: 70px;
    height: 70px;
    top: 1370px; left: 83%;
    animation-name: clickIcon;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    display: none;
    z-index: 99999;
}

@keyframes clickIcon{
    to{
        transform: translateY(0);
    }
    from{
        transform: translateY(20px);
    }
}
.click{
    animation: click 1s infinite;
}
@keyframes click{
    0%{
        color: #818181;
        font-size: 15px;
        font-weight: 300;
    }
    50%{
        color: #000;
        font-weight: 500;
        font-size: 16px;
    }
    100%{
        color: #DE2B3A;
        font-weight: 600;
        font-size: 17px;
    }
}

/* 로고 */
/* body{background: #000;} */
#header{
    border-bottom: 1px solid #ffffff5e;
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: black; */
    position: relative;
    z-index: 9999;
}
#mainLogo{z-index: 999;}
#header::before{
    content: '';
    width: 100%;
    height: 0;
    background: #fff;
    position: absolute;
    top: 86px; left: 0; right: 0;
    transition: .3s;
    
}
#header.on,
#header.active{
    background: #fff;
    border-bottom: 1px solid #939393;
}
#header.on .trigger >span,
#header.active .trigger > span{
    background: #000;
    z-index: 999;
}
#header.on #main-menu > ul > li > a,
#header.active #main-menu > ul > li > a{
    color: #000;
}
#header.on #main-menu > ul > li > a:hover,
#header.active #main-menu > ul > li > a:hover{
    color: #DE2B3A;
}
#header.on::before,
#header.on::after{
    height: 300px;
    transition: .3s;
    border-bottom: 1px solid #9393939e;
}
#header.on .nav-text::before{
    height: 300px;
    /* opacity: 1; */
    transition: .3s;
}
#header.on .nav-text{
    visibility: visible;
}
#header.on .menu-content{
    display: flex;
    opacity: 1;
    height: 280px;
}

#header::after{
    content: '';
    position: absolute;
    background: url(../images/sub-nav-img.png) no-repeat;
    width: 461px; height: 0;
    background-size: cover;
    top: 86px; right: 0;
    z-index: 999;
    transition: .3s;
}
.nav-text::before{
    content: '';
    position: absolute;
    width: 1px; height: 0;
    background: #939393;
    top: -20px; right: -45px;
    /* opacity: 0; */
    transition: .3s;
}
.nav-text{
    position: absolute;
    top: 105px; left: 233px;
    /* display: none; */
    visibility: hidden;
}
.nav-text div{
    font-size: 18px;
    font-weight: 600;
}
.nav-text .red{
    color: #DE2B3A;
    margin-bottom: 5px;
}
.nav-text .red + div{
    margin-bottom: 10px;
}
.nav-text p{
    color: #A7A7A7;
    font-size: 14px;
    font-weight: 500;
}
.main-logo{
    margin-left: 233px;
    height: inherit;
}
#mainLogo{padding: 15px 0; width: 100px; height: 53px;}

/* 메인 메뉴 */
 #main-menu{
    height: 85px; z-index: 999;
}
#main-menu > ul{
    display: flex;
    /* gap: 80px; */
    height: inherit;
    /* border: 1px solid blue; */
    justify-content: space-between;
}
#main-menu > ul > li{
    /* border: 1px solid #fff; */
    display: inline-block;
    width: 200px;
}
#main-menu > ul > li > a{
    color: #fff;
    height: 100%;
    width: 100%;
    display: block;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    position: relative;
    line-height: 85px;
    transition: .3s;
    /* border: 1px solid red; */
}
#main-menu > ul > li > a:hover{
    color: #DE2B3A;
}
.menu-item a:hover{
    color: #DE2B3A;
    border-bottom: 1px solid #DE2B3A;
}
.menu-content{
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    justify-content: start;
    align-items: center;
    padding-top: 20px;
    opacity: 0;
    transition: .3s;
    /* border: 1px solid black; */
}
.menu-item a{
    color: #818181;
}

/* 아이콘-버튼 */
.header-icons{
    display: flex;
    align-items: center;
    margin-right: 63px;
    gap: 15px;
}
.header-icons a{color: #fff;font-weight: 300;}
.Login-Sign_up{
    display: flex;
    gap: 33px;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    position: relative;
}
.Login-Sign_up::before{
    content: '|';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-200%, -50%);
}.Login-Sign_up > li + li a{
    color: #DE2B3A;
}

.Login-Sign_up li a{color: black; font-size: 16px;}

.sub-menu-gobtn li{
    display: flex;
}
.sub-menu-gobtn a{
    background: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px;
    width: inherit;
    font-size: 16px;
}
#subMenu-gobtn img{object-fit: cover;}
#searchOpenBtn{cursor: pointer;}
#searchOpenBtn img{
    background: #fff;
    padding: 7px;
    border-radius: 50%;
    object-fit: cover;
}

/* 검색창 */
.search-bar{
    width: 100%;
    height: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: .3s;
    position: absolute;
}
.search-bar.on{
    /* display: flex; */
    height: 193px;
}
.search-bar.on #searchInput,
.search-bar.on #searchBtn,
.search-bar.on #closeBtn{
    display: block;
}

#searchInput{
    font-family: 'Escoredream';
    width: 533px;
    height: 65px;
    border: 1px solid #878787;
    border-radius: 50px;
    padding-left: 25px;
    font-size: 24px;
    font-weight: 500;
    color: #919191;
    display: none;

}
#searchInput:focus{
    border-color: #CF202E;
    outline: none;
    color: #000;
}
.search-bar button{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    padding: 20px;
    outline: none;
    border: none;
    cursor: pointer;
    display: none;

}
#searchBtn{
    background: #DE2B3A;
}
#closeBtn{
    background: #000;
}

/* 서브메뉴 */
#subMenu{
    background: #fff;
    width: 1400px;
    max-height: 0;
    margin: auto;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    visibility: hidden;
    transition: .3s;
    overflow: hidden;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.144);
}
#subMenu.on{
    visibility: visible;
    max-height: 1040px;
    transition: .3s;
    z-index: 999;
}

.subMenu-section1{
    display: flex;
    border-bottom: 1px solid #CECECE;
    width: 100%;
    align-items: center;
    padding-bottom: 20px;
    
}
.subMenu-title{
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 30px;
}
.subMenu-title img{
    margin-right: 7px;
    width: 16px;
    height: 16px;
}
.subMenu-title span{
    font-size: 15px;
    font-weight: 500;
}

/* 닫기버튼 */
#subMenu-closeBtn{
    margin-right: 30px;
    cursor: pointer;
}


.subMenu-section2{
    display: flex;
    border-bottom: 1px solid #CECECE;
    margin: 0 30px 0 30px;
    padding: 20px 0 25px 0;
}
.secrion-title{
    color: #DE2B3A;
    font-size: 20px;
    font-weight: 600;
    width: 288px;
    margin-right: 35px;
}
.subitem{
    margin-right: 20px;
    font-size: 16px;
    color: #000;
    font-weight: 300;
}
.subitem:hover{
    color: #DE2B3A;
    border-bottom: 1px solid #DE2B3A;
}

/* 트리거버튼 */
.trigger{
    /* border: 1px solid #fff; */
    width: 30px; height: 26px;
    position: relative;
    cursor: pointer;
    display: none;
}
.trigger span{
    position: absolute;
    width: 35px;
    height: 3px;
    background: #fff;
}
.trigger span:nth-child(1){top: 0;}
.trigger span:nth-child(2){top: 50%;}
.trigger span:nth-child(3){bottom: 0;}

.trigger.on span:nth-child(1){
    top: 50%;
    transform: rotate(45deg);
}
.trigger.on span:nth-child(2){
    display: none;
}
.trigger.on span:nth-child(3){
    top: 50%;
    transform: rotate(-45deg);
}

/* 모바일 메인 메뉴 */
#trigger-main-menu{
    width: 100%;
    max-height: 100vh;
    background: #fff;
    display: none;
    position: absolute;
}
.trigger-menu-container{
    border-bottom: 1px solid #A8A8A8;
}
#trigger-main-menu > ul{
    height: inherit;
    display: flex;
    flex-direction: column;
}
.trigger-menu-title{
    border-bottom: 1px solid #A8A8A8;
}
.trigger-main-menu-title{
    display: block;
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}
.trigger-main-menu-title::before{
    content: '';
    position: absolute;
    background: url(/images/trigger-menu-btn.png) no-repeat;
    width: 19px; height: 19px;
    right: 20px; top: 50%;
    transform: translateY(-50%);
}
.trigger-menu-title.on .trigger-main-menu-title::before{
    background: url(/images/trigger-menu-btn-active.png) no-repeat;
    width: 19px; height: 19px;
}
.trigger-Login-Sign_up{
    margin: 20px auto;
    display: flex;
    gap: 33px;
    background: #fff;
    position: relative;
}
.trigger-Login-Sign_up::before{
    content: '|';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-200%, -50%);
}
.trigger-Login-Sign_up > li + li a{
    color: #DE2B3A;
}

.trigger-Login-Sign_up li a{color: black; font-size: 16px;}

.trigger-menu-content{
    display: none;
    flex-direction: column;
    justify-content: space-around;
    /* gap: 20px; */
}
.trigger-menu-title.on{
    background: #CF202E;
    height: inherit;
    padding-bottom: 20px;
    
}
.trigger-menu-title.on .trigger-main-menu-title{
    color: #fff;
    font-weight: 600;
}
.trigger-menu-title.on .trigger-menu-content{
    display: flex;
    background: #fff;
    margin-left: 20px;
    height: inherit;
    width: 90%;
}
.trigger-menu-item{
    height: 45px;
    display: flex;
    align-items: center;
}
.trigger-menu-content li:not(:last-child){border-bottom: 1px solid #A8A8A8;}
.trigger-menu-item a{
    color: #818181;
    font-size: 16px;
    font-weight: 500;
    padding: 20px;
    /* border: 1px solid ; */
}

/* 메인비주얼 */
#main-visual{
    width: 100%;
    height: 850px;
    background: linear-gradient(to right, #FF4D4D 0%, #EB2833 60%, #FF0016 100%);
    position: absolute;
    top: 0;
    left: 0; right: 0;
    z-index: -1;
}
.main-visual-title{
    font-size: 104px;
    color: #fff;
    font-weight: 600;
    position: absolute;
    top: 355px; left: 230px;
    width: 80%;
}
.main-visual-title::before{
    content: 'DESIGN Driven Innovation';
    position: absolute;
    top: 120%;
    font-weight: 600;
    font-size: 65px;
}

/* 메인비주얼 라인패턴 */
.line-pattern {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.line-pattern span {
  position: absolute;
  width: 240px;
  height: 945px; /* 기본은 타원 */
  border: 1px solid #fff;
  border-radius: 120px; /* 고정 */
  opacity: 1;

  transition:
    transform 2.4s cubic-bezier(.22,1.3,.36,1),
    height 1.4s ease; /*⭐ height만 변화 */
}

@media (max-width: 768px) {
  .line-pattern span {
    width: 87px;
    height: 444px;
    border-radius: 44px;
  }
}

/* 주요소식 */
#main-news{
    margin-top: 860px;
    width: 100%; 
    /* height: 70vh; */
    margin: 860px auto 0 auto;
    /* overflow: hidden; */
    position: relative;
}

.main-news-title{
    display: flex; 
    align-items: center; 
    gap: 15px; 
    width: 1300px;
    margin: 0 auto 40px auto;
    
}
.main-news-title h3{ font-size: 32px; font-weight: 600;}

.main-news-banner{
    height: inherit;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.main-news-banner::before{
    content:'';
    position: absolute;
    top: 0%; left: 0;
    width: 308px;
    height: 295px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;

}
.main-news-banner::after{
    content:'';
    position: absolute;
    top: 0%; right: 0;
    width: 308px;
    height: 295px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;

}
.main-news-banner-Swiper{
    height: inherit;
    width: 100%;
    position: relative;
    margin-bottom: 60px;
}

.swiper-wrapper{
    height: inherit;
    display: flex;
    
}

.swiper-wrapper > .swiper-slide{
    width: 390px; height: 260px;
    flex-shrink: 0;    
}
.swiper-wrapper > .swiper-slide-active{
    width: 390px; height: 260px;
    flex-shrink: 0;
    overflow: hidden;
}
.swiper-slide img{
    transition: .3s;    
}
.swiper-slide img:hover{
    transform: scale(1.1);
}
.swiper-slide > a + a{
    margin-top: 20px; 
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.main-news-banner .swiper-button-next,
.main-news-banner .swiper-button-prev{
    top: 35% !important;
    background: rgba(0, 0, 0, 0.550);
    border-radius: 50%;
    width: 68px; height: 69px;
    transition: .3s;
    
}
.swiper-button-next::after, 
.swiper-button-prev::after{
    font-family: none;
    font-size: 0;
    display: none;
}
.main-news-banner .swiper-button-next:hover,
.main-news-banner .swiper-button-prev:hover{
    background: #CF202E;
}

.main-news-banner .swiper-button-next{
    right: 15% !important;
    
}
.main-news-banner .swiper-button-next::before{
    content: '';
    position: absolute;
    background: url(../images/banner-btn-rigth.png) no-repeat;
    width: 19px; height: 26px;
}
.main-news-banner .swiper-button-prev{
    left: 15% !important;
}
.main-news-banner .swiper-button-prev::before{
    content: '';
    position: absolute;
    background: url(../images/banner-btn-left.png) no-repeat;
    width: 19px; height: 26px;
}
.swiper-navigation-icon{display: none;}

.swiper-pagination{
    margin-top: 20px;
    display: none;
}
.main-news-banner .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
}
.main-news-banner .swiper-pagination-bullet-active{
    background: #DE2B3A;
    width: 50px;
    border-radius: 10px;
}

/* 사업부소식 */
#business-news{
    margin-top: 100px;
    width: 1300px;
    margin: 0 auto;
}
.business-news-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.business-news-title{
    display: flex;
    font-size: 32px;
    font-weight: 600;
    gap: 15px;
}
.business-news-btn{
    width: 27px;
    height: 27px;
}
.business-news-btn a:hover img{
    transform: rotate(360deg);
    filter: invert(18%) sepia(54%) saturate(4062%) hue-rotate(339deg) brightness(112%) contrast(89%);
}
.business-news-btn > a{
    width: 100%;
    height: 100%;
    display: inline-block;
}
.business-news-btn a img{
    width: 100;
    height: 100;
    transition: .5s;
}
.business-news-btn a :hover{
    transform: rotate(360deg);
}

.business-news-content{
    display: flex;
    flex: 1;
}

.business-news-section1,
.business-news-section2{
    display: flex;
    flex-direction: column;
    gap: 70px;
    flex: 1;
    border-bottom: 1px solid #A8A8A8;
    padding-top: 20px;
}
.business-news-section1{
    border-top: 1px solid #000;
}
.business-news-sub{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10PX;
}
.business-news-section1 a,
.business-news-section2 a{
    font-size: 16px;
    font-weight: 600;
}
.business-news-section1 a:hover,
.business-news-section2 a:hover{
    color: #CF202E;
    border-bottom: 1px solid #CF202E;
}
.business-news-date{
    display: flex;
}
.business-news-date img{width: 16px; height: 16px; margin-right: 5px;}
.business-news-date p{
    color: #797979;
    font-size: 15px;
    font-weight: 300;
}
.progress-type{
    
    display: flex;
    gap: 20px;
    margin-right: 20px;
}
.progress-type p{
    background: #F5F5F7;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 300;
}
.progress-type p + p{
    color: #CF202E;
}

/* 유관기관 */
#related-organizations{
    width: 1300px;
    margin: 0 auto;
    margin-top: 100px;
    position: relative;
}
#related-organizations::before{
    content: 'DESIGN Driven lnnovation';
    font-size: 150px;
    font-weight: 600;
    color: #8e8e8e2a;
    position: absolute;
    display: block;
    white-space: nowrap; 
    text-overflow: ellipsis;
    bottom: -20%;
    left: -22%;
    z-index: -1;
}

.RO-title img{margin-bottom: 5px;}
.RO-title h3{
    margin-bottom: 40px; 
    font-family: 'Nanum Myeongjo', serif;
    font-size: 32px;
    font-weight: 300;
}
.RO-title-red{color: #DE2B3A; font-weight: bold;}

.RO-title-content{
    display: flex;
    justify-content: space-between;
    gap: 17px;
}
.RO-title-content-card{
    flex: 1;
    background: #e22a3aea;
    border-radius: 20px;
    box-shadow: 7px 6px 14px rgba(0, 0, 0, 0.25);
    transition: .3s;
}
.RO-title-content-card:hover{
    transform: translateY(-10px);
    background: #CF202E;
}
.RO-title-content-card > img{
    margin-left: 125px;
    margin-bottom: 10px;
}
.RO-title-content-item{
    padding: 45px 25px;
    display: flex;
    gap: 10px;
}
.RO-title-content-item img{width: 24px; height: 17px;}
.RO-title-content-item h4{color: #fff; font-size: 20px; font-weight: 600; line-height: 25px;}

/* 뉴스 */
#news{
    margin-top: 180px;
    height: 875px;
    width: 100%;
    background: url(../images/news-bg.png) no-repeat;
    position: relative;
    /* z-index: -1; */
}
.news-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0; right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 1));
    z-index: 0;
}
.news-wraper{
    width: 1300px;
    margin: 0 auto;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}
.news-header{
    /* margin-top: 120px; */
    z-index: 999;
}
.news-header-text{
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}
.news-header-text img{
    margin-right: 10px;
    z-index: 999;
}
.news-header-text h3{
    font-size: 48px;
    font-weight: 500;
    color: #FF3546;
    flex: 1;
    z-index: 999;    
}
.news-header-text .news-more-btn{
    display: inline-block;
    text-align: center;
    line-height: 45px;
    background: #fff;
    border-radius: 30px;
    padding: 0 5px;
    width: 120px;
    height: 45px;
    font-size: 16px;
    font-weight: 300;
    z-index: 999;
    transition: .3s;
}
.news-more-btn img{transition: .3s;}
.news-more-btn:hover{
    color: #fff;
    background: #DE2B3A;
}
.news-more-btn:hover img{
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(322deg) brightness(102%) contrast(101%);
    transform: translateX(5px);
}
#news-header-sub-text{
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 50px;
    position: absolute;
    top: 70px;
    z-index: 999 !important;
}

.news-content{
    height: 500px;
}
.nesw-swiper{
    height: inherit;
    
}

.nesw-swiper-wrapper > .swiper-slide{
    display: flex;
    height: inherit;
    gap: 40px;
    z-index: 999;
    padding-top: 60px;
    border-top: 1px solid #fff;
}
.news-img{
    width: 720px;
    height: 400px;
    border-radius: 16px;
}
.news-img img{
    width: 720px;
    height: 400px;
    border-radius: 16px;
    object-fit: cover;
    
}
.news-img img:hover{
    transform: scale(1) translateY(-5px);
}
.news-text-content{
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 110px;
}
.news-title a{
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: #fff;
    transition: .2s;
}
.news-title a:hover{
    color: #CF202E;
}
.news-sub-title p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    text-overflow: ellipsis;
    width: 520px;
    line-height: 1.5;
    color: #D2D2D2;
    font-size: 16px;
    font-weight: 500;
}
.nesw-swiper{
    position: relative;
}
#nesw-btn-next{
    position: absolute;
    z-index: 999;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 95%;
    background: url(../images/news-more-right-btn.png) no-repeat;
    object-fit: cover;
    background-position: 10px center;
    transition: .2s;

}
#nesw-btn-prev{
    position: absolute;
    z-index: 999;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 95%;
    left: 84.5%;
    background: url(../images/news-more-left-btn.png) no-repeat;
    object-fit: cover;
    background-position: 7.5px center;
    transition: .2s;
}
#nesw-btn-next:hover{
    background: url(../images/news-more-right-btn-hover.png) no-repeat;
    background-position: 10px center;
}
#nesw-btn-prev:hover{
    background: url(../images/news-more-left-btn-hover.png) no-repeat;
    background-position: 7.5px center;
}
#nesw-btn-next:hover,
#nesw-btn-prev:hover{
    border-color: #CF202E;
}
#nesw-btn-pagination{
    position: absolute;
    z-index: 999;
    width: 145px;
    height: 35px;
    top: 32%;
    left: 58.5%;
    font-size: 26px;
    font-weight: 500;
    display: flex;
    gap: 5px;
}


#nesw-btn-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    padding-bottom: 10px;
    opacity: 1;
    color: #fff;
    background: none;
    border-bottom: 3px solid #fff;
    border-radius: 0;
    transition: .2s;
}
#nesw-btn-pagination .swiper-pagination-bullet:hover{
    color: #CF202E;
    border-bottom: 3px solid #CF202E;
}
#nesw-btn-pagination .swiper-pagination-bullet-active{
    width: 20px;
    height: 20px;
    padding-bottom: 10px;
    color: #FF3546;
    background: none;
    border-bottom: 3px solid #FF3546;
    border-radius: 0;
}

#startBtn{
    position: absolute;
    z-index: 999;
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 91.5%;
    left: 92.5%;
    background: none;
    object-fit: cover;
    cursor: pointer;
    transition: .3s;
}
#stopBtn{
    position: absolute;
    z-index: 999;
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 91.5%;
    left: 88.5%;
    background: none;
    object-fit: cover;
    cursor: pointer;
    transition: .3s;
}
#startBtn:hover,
#stopBtn:hover{
    border-color: #CF202E;
    
}
#startBtn:hover img,
#stopBtn:hover img{
    filter: invert(35%) sepia(79%) saturate(5543%) hue-rotate(340deg) brightness(89%) contrast(95%);
}
#startBtn img,
#stopBtn img{
    object-fit: cover;
    position: absolute;
    top: 8px; left: 11px;
}


/* 입찰 & 사업 정보 */
#info{
    margin-top: 100px;
    position: relative;
    width: 100%;
    padding: 35px 0 0 0;
    
}
#info::before{
    content: '';
    position: absolute;
    background: url(../images/info-bg.png)no-repeat;
    width: 100%;
    height: 980px;
    z-index: -1;
}
.info-inner{
    width: 1300px;
    margin: auto;
    margin-bottom: 100px;
}
.info-tab-buttons{
    background: #fff;
    border: 1px solid #CACACA;
    display: flex;
    width: 636px;
    justify-content: space-between;
    border-radius: 30px;
    margin-bottom: 40px;
    
}

.info-tab-btn{
    font-size: 24px;
    font-weight: 600;
    border: none;
    background: none;
    padding: 15px 110px;
    cursor: pointer;
}
.info-tab-btn.on{
    color: #fff;
    border-radius: 30px;
    background: #DE2B3A;
}

.info-content{
    display: flex;
    gap: 30px;
}
.info-tab-items{
    display: none;
    gap: 30px;
}
.info-tab-items.on{
    display: flex;
}
.info-tab-item{
    background: #fff;
    box-shadow: 0 0 5px -2px;
    border-radius: 15px;
    width: 300px;
}

.info-tab-content-box{
    display: inline-block;
    padding: 40px 0 0 20px;
}
.info-tab-item:hover{
    background-color: rgba(255, 242, 243, .5);
    border: 1px solid #DE2B3A;
}
.info-content-header-text{
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 300;
}
.info-red{
    color: #CF202E;
    font-size: 16px;
    font-weight: 300;
}
.info-content-title{
    width: 79%;
    white-space: normal;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
}
.info-content-subtext{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    text-overflow: ellipsis;
    width: 250px;
    line-height: 1.1;
    margin-bottom: 40px;
    font-size: 14px;
    color: #6D6D6D;
    font-weight: 300;
}
.info-content-date{
    padding-top: 60px;
    position: relative;
    font-size: 14px;
    color: #6D6D6D;
    font-weight: 300;
}
.info-content-date::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #DEDEDE;
    top: 20px; left: -20px;
}

.info-item{
    display: flex;
    /* gap: 70px; */
    background: #fff;
    width: 622px;
    border-radius: 15px;
    box-shadow: 0 0 5px -2px;
    position: relative;
}
.info-item::before{
    content: '';
    display: none;
    position: absolute;
    width: 90%;
    height: 1px;
    top: 50%; left: 5%;
    background: #DEDEDE;

}
.business-info{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 44px;
}
.business-info-title{
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.business-info-card{
    background: #DE2B3A;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 25px 24px;
}
.business-info-card:hover{
    color: #000;
    border: 2px solid #DE2B3A;
    background: #fff;
    
}
.business-info-card:hover h5{
    font-weight: 600;
}
.business-info-card:hover img{
    filter: invert(35%) sepia(79%) saturate(5543%) hue-rotate(340deg) brightness(89%) contrast(95%);
}
.business-info-card h5{
    font-size: 16px;
    font-weight: 300;
}

.info-bg{
    position: absolute;
    z-index: -1;
    top: 0; left: 0; right: 0;
    width: 100%;
    height: 1040px;
    object-fit: cover;
}
.info-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 영상자료 */
#media{
    /* transform: translateY(-115%); */
    width: 100%;
    margin-bottom: 100px;
}
.media-inner{
    width: 1300px;
    margin: auto;
}
.media-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}
.media-title-text{
    display: flex;
    align-items: center;
    gap: 15px;
    
}
.media-title-text h3{
    font-size: 24px;
    font-weight: 600;
}

.media-title-btn{
    background: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 30px;
    object-fit: cover;
    z-index: 999;
    position: relative;
    overflow: hidden;
}
.media-title-btn::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #CF202E;
    border-radius: 30px;
    z-index: -1;
    top: 0; left: -110%;
    transition: .3s;
}
.media-title-btn:hover::before{
    left: 0;
}
.media-title-btn p{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}
.media-title-btn img{
    width: 12px;
    height: 12px;
    object-fit: cover;
}

.media-content{
    display: flex;
    justify-content: space-between;
    gap: 35px;
    position: relative;
}
.media-box{
    width: 100%;
    /* margin-right: auto; */
}
.media-box iframe{
    width: 410px;
    height: 230px;
    margin-bottom: 30px;
    border-radius: 15px;
}
.media-box-text{
    font-size: 16px;
    font-weight: 300;
    width: 329px;
    display: inline-block;
    white-space: normal;
}
.media-box-text:hover{
    color: #DE2B3A;
}
.media-tab-btns{
    position: absolute;
    display: none;
    gap: 13px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);

}
.media-tab-btn{
    width: 19px;
    height: 19px;
    background: #D9D9D9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.media-tab-btn.on{
    background: #DE2B3A;
    width: 60px;
    height: 20px;
    border-radius: 30px;
}

/* 갤러리 */
#gallery{
    /* transform: translateY(-113%); */
    /* overflow: hidden; */
    position: relative;
    margin-bottom: 100px;
}
.gallery-inner{
    width: 100%;
    overflow: hidden;
    overflow-x: hidden;
}
.gallery-wrap{
    width: 1300px;
    margin: auto;
    display: flex;
    gap: 150px;
}
.gallery-header{
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}
.gallery-header h3{
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: #CF202E;
}
.gallery-header-sub-title{
    font-size: 16px;
    font-weight: 500;
    color: #929292;
    text-indent: 4px;
    line-height: 20px;
}
.gallery-header .media-title-btn{
    position: absolute;
    bottom: 0; left: 65%;
    gap: 15px;
}
.gallery-header .media-title-btn p{
    color: #fff;
    width: 62px;
    text-wrap: nowrap;
}
#media-btn-next{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    line-height: 40px;
    text-align: center;
    background: #000;
    z-index: 999;
    bottom: 0;
    left: 353px;
    cursor: pointer;
    transition: .3s;
}
#media-btn-prev{
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    line-height: 40px;
    text-align: center;
    background: #000;
    z-index: 999;
    bottom: 0;
    left: 303px;
    cursor: pointer;
    transition: .3s;
}
#media-btn-next:hover,
#media-btn-prev:hover{
    background: #DE2B3A;
}
.gallery-content{
    width: 2000px;
    position: relative;
}
.gallery-mySwiper{
    /* position: relative; */
    height: 380px;
    width: 1590px;
}
.gallery-swiper-wrapper .swiper-slide{
    height: 100%;
    width: 508px;
}
.gallery-swiper-slide:hover img{
    transform: scale(1.1);
}
.gallery-swiper-slide:hover .gallery-img-box::before{
    background: #000000ad;
    z-index: 10;
    transform: scale(1.1);
    visibility: visible;
    
}

.gallery-img-box{
    width: 100%;
    height: 100%;
    position: relative;
}
.gallery-img-box::before{
    content: '페이지 이동';
    position: absolute;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 337px;
    width: 100%;
    height: 337px;
    background: #000;
    display: inline-block;
    visibility: hidden;
    transition: .3s;
}
.gallery-img-box img{
    width: 508px;
    height: 337px;
    margin-bottom: 20px;
}
.gallery-text{

    display: flex;
    justify-content: space-between;
}
.gallery-text a{
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}
.gallery-text a:hover{
    color: #DE2B3A;
    border-bottom: 1px solid #DE2B3A;
}
.gallery-text p{
    font-size: 15px;
    font-weight: 300;
}

#gallery-pagination{
    display: none;
    position: absolute;
    z-index: 999;
    /* width: 145px; */
    gap: 5px;
    justify-content: center;
}
#gallery-pagination .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    opacity: 1;
    background: #D9D9D9;
    border-radius: 50%;
    transition: .2s;
    z-index: 9999;
}
#gallery-pagination .swiper-pagination-bullet-active{
    width: 60px;
    height: 20px;
    background: #FF3546;
    border-radius: 30px;
    z-index: 9999;
}

/* 협력기관 배너 */
#Partner-organization-banner{
    width: 100%;
    margin-bottom: 100px;
}
.po-banner-inner{
    position: relative;
}
.po-banner-inner::before{
    content: '';
    position: absolute;
    height: 87px;
    width: 50px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 999;
    top: 77px;
    backdrop-filter: blur(10px);

}
.po-banner-inner::after{
    content: '';
    position: absolute;
    height: 87px;
    width: 50px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 999;
    right: 0; top: 77px;
    backdrop-filter: blur(10px);

}
.po-banner-header-text{
    display: flex;
    justify-content: center;
    font-size: 32px;
    font-family: 'Nanum Myeongjo', serif;
    font-weight: bold;
    margin-bottom: 45px;
    text-align: center;
}

.po-banner-header-text .po-banner-red{
    color: #CF202E;
}


#po-banner-swiper-wrapper{
    transition-timing-function: linear;
}
#po-banner-swiper-wrapper .swiper-slide{
    width: 304px;
    height: 87px;
}

.po-banner-img-box{
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.po-banner-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 푸터 */
#footer{
    width: 100%;
    color: #fff;
    background: #222222;
    position: relative;
    padding: 1px 0;
    
}
#footer::before{
    content: '';
    position: absolute;
    width: 90%;
    height: 1px;
    background: #6D6D6D;
    opacity: .8;
    top: 40%;
    left: 5%;
    transform: translateY(-50%);
}
.footer-inner{
    width: 1300px;
    margin: auto;
    /* overflow: hidden; */
}
.footer-top{
    margin-bottom: 70px;
    position: relative;
    
}
.footer-nav{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.footer-nav-items{
    display: flex;
    /* justify-content: space-between; */
    gap: 5px;

}
.footer-nav-info{
    display: flex;
    gap: 20px;
}
.footer-nav-info .footer-point a{
    color: #EBC717;
    border-bottom: 1px solid #EBC717;
}
.footer-hover-point:hover{
    border-bottom: 1px solid #fff;
}
.footer-nav-info li a,
.footer-nav-items li a{
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.footer-nav-item{
    position: relative;
    transition: .3s;
}
.footer-nav-item::before{
    content: '';
    position: absolute;
    width: 14px;
    height: 8px;
    background: url(../images/footer-btn.png);
    top: 4px;
    right: 15px;
}
.footer-nav-item.on::before{
    background: url(../images/footer-btn-on.png);
}
.footer-nav-item.on > a{
    background: #fff;
    color: #000;
    border-radius: 0 0 10px 10px;
    font-weight: 400;
}
.footer-nav-item > a{
    background: #000;
    padding: 15px 75px;
    border-radius: 10px;
    transition: .3s;
}
.footer-contents{
    visibility: hidden;
    background: #000;
    width: 100%;
    max-height: 0;
    position: absolute;
    border-radius: 10px 10px 0 0;
    bottom: 220%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    padding-top: 15px;
    padding-bottom: 15px;
    transition: .3s;
    overflow: hidden;
    z-index: 9999;
}
.footer-nav-item.on .footer-contents{
    visibility: visible;
    max-height: 480px;
    transition: .8s;
    z-index: 9999;
}

.footer-content a{
    padding: 0 15px;
    /* margin: 0 50px; */
    font-size: 14px;
    font-weight: 300;
    transition: .3s;
}
.footer-content a:hover{
    color: #DE2B3A;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-info{
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.footer-info p{
    color: #8A8A8A;
    font-size: 15px;
    font-weight: 300;
}
.footer-info p:nth-child(2){
    color: #fff;
}
.footer-gray{
    color: #6D6D6D;
}
.footer-red{
    color: #CF202E;
}

.sns{
    display: flex;
    gap: 15px;
    align-items: flex-end;
}
