@charset "utf-8";
/* 헤더 */
html.no-scroll{
    overflow:hidden;
}
h2,
p{
    word-break: keep-all;
}
img{
    width: 100%;
}
#header .lnb-line{
    display: none;
}
#bannerVideo{
    position: relative;
    width: 100%;
    height: 100vh;
}
#bannerVideo video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#firSec{
    width: 100%;
    background-color: #f2f2f2;

    position: relative;
}
#firSec .inner{
    max-width: none;
    width: 100%;
    display: flex;
    padding: 0;
}
#firSec .fir_left{
    width: 50%;
    padding: 90px 120px ;

}
#firSec, #firSec .inner, #firSec .fir_left{
    overflow: visible;
}
#firSec .fir_left .heading{
    position: sticky;
    top: 200px;
}
#firSec .fir_left p{
    margin-top: 20px;
    font-weight: 500;
    font-size: 20px;
}
#firSec .fir_left .head_tit{
    font-size: 50px;
    font-weight: 700;
}
#firSec .fir_right{
    width: 50%;
    display: flex;
    flex-direction: column;
}
#firSec .fir_right video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
#firSec .fir_right .fir_vid{
    position: relative;

}
#firSec .fir_right .fir_vid:first-child::before{
    content: '서초 유스센터';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    color: #fff;
    transition: 0.5s all;
    display: flex;
    align-items: end;
    padding: 40px;
    font-size: 18px;
}
#firSec .fir_right .fir_vid:last-child::before{
    content: '소대헌 · 호연재 고택';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    color: #fff;
    transition: 0.5s all;
    display: flex;
    align-items: end;
    padding: 40px;
    font-size: 18px;
}
#firSec .fir_right .fir_vid:hover::before{
    opacity: 1;
}
@media screen and (max-width:1300px) {
    #firSec .fir_left .head_tit{
        font-size: 40px;
    }
    #firSec .fir_left p{
        font-size: 18px;
    }
    #firSec .fir_left p br{
        display: none;
    }
}
@media screen and (max-width:1024px) {
    #firSec .fir_left .head_tit{
        font-size: 32px;
    }
    #firSec .fir_left{
        padding: 50px ;
    }
    #firSec .fir_left p{
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    #firSec .fir_left{
        padding: 30px;
        position: static;
        width: 80%;
    }
    #firSec .fir_left .head_tit{
        font-size: 24px;
        margin-top: 0;
    }
    #firSec .fir_left p{
        font-size: 14px;
    }
}
@media screen and (max-width: 600px) {
    #firSec .inner{
        display: block;
    }
    #firSec .fir_right{
        width: 100%;
    }
    #firSec .fir_right .fir_vid:first-child::before,
    #firSec .fir_right .fir_vid:last-child::before{
        background: rgba(0, 0, 0, 0);
        opacity: 1;
        padding: 12px;
        font-size: 14px;
    }
}
@media screen and (max-width: 425px) {
    #firSec .fir_left .head_tit{
        font-size: 22px;
        margin-top: 0;
    }
    #firSec .fir_left p{
        font-size: 13px;
        margin-top: 14px;
    }
    #firSec .fir_right .fir_vid:first-child::before{
        font-size: 12px;
    }
}
.main-carousel, .section02{
    display: none !important;
}

#playIntro{
    display: none;
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    padding: 10px 0;
    z-index: 11;
    cursor: pointer;
    transition: 0.5s all;
}
#playIntro p{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
#playIntro:hover{
    /* transform: translateX(-50%) scale(1.05); */
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(255,255,255,.7);
}
#playIntro:hover p{
    color: #1C1B1F;
}
.intro_icon{
    width: 24px;
    height: 24px;
}
.intro_icon svg{
    width: 100%;
}
.intro_icon .pathicon{
    transition: 0.5s all;
}
#playIntro:hover .intro_icon .pathicon{
    fill: #1C1B1F;
}

#introVid{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    transition: 0.5s all;
    /* display: none; */
    opacity: 0;
    visibility: hidden;
}
#introVid video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#introVid.active{
    z-index: 1111;
    opacity: 1;
    visibility: visible;
}
#introClose{
    position: fixed;
    bottom: 10%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 150px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    padding: 10px 0;
    z-index: 11;
    cursor: pointer;
    transition: 0.5s all;
}
#introClose p{
    color: #1C1B1F;
    font-weight: 500;
    font-size: 16px;
}
#introClose .icon{
    width: 24px;
}
#introClose img{width: 100%;}
.bg_iframe{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: -40px;
    left: 0;
}
.bg_iframe iframe{
    width: 100%;
    height: 100%;
    display: none;
}
.bg_video{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0px;
    left: 0;
}
.bg_video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-carousel .li .cover{
    top: 0;
    opacity: .4;
}
/* .main-carousel{
    display: none !important;
} */
.section01 h2.head_tt{
    font-weight: 700;
    font-size: 48px;
}
#spaceModal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 1111;
    background: rgba(0, 0, 0, 0.8);
}
#spaceModal.active{
    display: block;
}
#spaceModal .space_wrapper{
    position: absolute;
    z-index: 11;
    top: 50%;
    left: 50%;
    max-width: 800px;
    width: 100%;
    transform: translate(-50%, -50%);
}
#spaceModal .modal_cont{
    width: 100%;
    margin: 0 auto;
}
#spaceModal .modal_cont#space-modal_03{
    width: 50%;
}
#spaceModalClose {
    position: absolute;
	top: calc(100vh - 60px);
    left: 50%;
	transform: translateX(-50%);
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    z-index: 9999;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
	transition: 0.5s all;
	box-shadow: 0px 0px 20px 0 rgba(255,255,255,0.65);
}
#spaceModalClose:hover{
	background-color: #ffffff73;
}
.section02 .inner{
    flex-wrap: nowrap;
    gap: 20px;
}
.section02 .head_sub{
    font-weight: 500;
    font-size: 24px;
    color: #000;
    text-align: center;
    margin-bottom: 8px;
}
.section02 .head_sub b{
    color: #fa9510;
}
.section02 .head_tit{
    font-weight: 700;
    font-size: 48px;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}
@media (max-width:1400px) {
    .section02 .inner{
        flex-wrap: wrap;
    }
    .section02 .inner .li dl dd{
        height: 220px;
    }
    .section02 .head_tit{
        font-size: 32px;
    }
}
@media (max-width:1040px) {
    .section02 .inner .li{
        width: 100%;
    }
}
@media (max-width:768px) {
    /* #playIntro{
        display: none;
    } */
    #playIntro{
        bottom: 20%;
    }
    #introVid{
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
    }
    #introVid video{
        height: auto;
    }
    .section02 .head_sub{
        font-size: 16px;
    }
    .section02 .head_tit{
        font-size: 22px;
    }
    .section02 .inner .li dl dd span{
        font-size: 18px;
    }
    .section02 .inner .li dl dd {
        height: 160px;
    }
    .section03 .video_area .txt_banner p{
        font-size: 20px;
    }
    .section03 .video_area .txt_banner .logo_w{
        width: 150px;
    }
    .section01{
        padding: 60px 0;
    }
    .section01 h2.head_tt{
        font-size: 32px;
        padding-left: 0;
    }
    .section01 p{
        font-size: 15px;
        line-height: 1.25;
        padding: 10px 0;
        padding-left: 0;
    }
    .section01 .drag_slider .swiper-slide .img_box{
        border-radius: 8px;
    }
    .section01 .drag_slider .txt_box{
        padding: 0;
        padding-top: 10px;
    }
    .section01 .drag_slider .txt_box p{
        font-size: 15px;
        line-height: 1.25;
    }
    #spaceModal .modal_cont#space-modal_03{
        width: 85%;
    }
}
@media (max-width:600px) {
    .section03 .video_area {
        padding: 75px 0;
    }
    .bg_video{height: 100%;}
    #spaceModalClose{
        top: calc(100vh - 100px);
    }
}
@media (max-width:500px) {
    .section01 h2.head_tt{
        font-size: 28px;
    }
    .section01 p{
        font-size: 14px;
    }
    .section01 p br{
        display: none;
    }
    .section01 .drag_slider .txt_box h2{
        font-size: 20px;
    }
    .section01 .drag_slider .txt_box p{
        font-size: 13px;
    }
    .section03 .video_area .txt_banner p{
        font-size: 26px;
    }
}
@media (max-width:375px) {
    .section01 h2.head_tt{
        font-size: 24px;
    }
    .section01 p{
        font-size: 13px;
    }
    .section01 .drag_slider .txt_box h2{
        font-size: 18px;
    }
}








#secUrl{
    position: relative;
    width: 100%;
    height: 900px;
    background: url(../images/url_bg.png) no-repeat center center/cover;
    padding: 120px 0;
}
#secUrl::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
#secUrl .inner{
    max-width: 900px;
    margin: 0 auto;
}
#secUrl .heading .tit{
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.2;
    text-align: center;
    color: #121212;
}
#secUrl .process_url{
    display: flex;
    justify-content: space-around;
    margin-top: 12%;
    position: relative;
}
#secUrl .process_url::before{
    content: '';
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000000 38%, #000000 62%, rgba(0, 0, 0, 0) 100%);
    ;
}

#secUrl .process_con .icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
#secUrl .process_con span{
    display: block;
    width: 9px;
    height: 9px;
    background-color: #000;
    border-radius: 100%;
}
#secUrl .process_con .icon p{
    font-weight: 700;
    font-size: 1.35rem;
    color: #000;
    text-align: center;
}
#urlTocontact{
    background: #333;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    width: 250px;
    height: 65px;
    line-height: 65px;
    display: block;
    margin-top: 10%;
    transition: 0.5s all;
}
#urlTocontact a{
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}
#urlTocontact:hover{
    background-color: #000;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}
@media (max-width:1400px) {
    #secUrl .heading .tit{
        font-size: 32px;
    }   
}
@media (max-width:768px) {
    #secUrl .heading .tit{
        font-size: 26px;
    }   
    #secUrl{
        padding: 90px 0;
        height: 680px;
    }
}

@media (max-width:500px) {
    #secUrl .heading .tit{
        font-size: 22px;
    }   
    #urlTocontact{
        width: 100%;
    }
}
@media (max-width:375px) {
    #secUrl .heading .tit{
        font-size: 20px;
    }   
}












.section03 .video_area .txt_banner p{
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}
.section03 .video_area .txt_banner .logo_w{
    margin: 0 auto;
    width: 180px;
}
.section03 .video_area .txt_banner .logo_w img{
    width: 100%;
}

.section04 .inner .head_sub{
    font-weight: 500;
    font-size: 24px;
}
.section04 .inner .head_tit{
    font-weight: 700;
    font-size: 48px;
}
@media (max-width:768px) {
    .section04{
        padding: 90px 0 60px;
    }
    .section04 .inner .head_sub{
        font-size: 20px;
      }
      .section04 .inner .head_tit{
        font-size: 32px;
      }
}
@media (max-width:500px) {
    .section03 .video_area .txt_banner p{
        font-size: 24px;
    }
    .section03 .video_area .txt_banner .logo_w{
        width: 100px;
    }
    .section04 .inner .head_sub{
        font-size: 14px;
    }
    .section04 .inner .head_tit{
    font-size: 26px;
    }
    .section04 .s04_item_wrap li{
        margin-bottom: 40px;
    }
}
@media (max-width:425px) {
    .section04 .s04_item_wrap li{
        margin-bottom: 16px;
    }
}
@media (max-width:375px) {
    .section04 .s04_item_wrap li{
        margin-bottom: 10px;
    }
}

#field{
    background: #252424;
}
#field .inner{
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 0;
}
#field .heading{}
#field .heading p.ss{
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 8px;
    color: #dbdbdb;
}
#field .heading p.tt{
    font-weight: 500;
    font-size: 40px;
    color: #fff;
    margin-bottom: 70px;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}
#field .heading p br{
    display: none;
}
#field .heading p.tt b {
    /* background: linear-gradient(129deg, #ffffff 0%, #000000 54%, #c3a8ff 80%, #ffffff 0%); */
    background: linear-gradient(129deg, #d27f7f 14%, #7d55a1 26%, #6d84ed 54%, #78be99 64%, #d27f7f 83%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 10s linear infinite;
}
#field .field_list{}
#field ul{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
#field .item{
    /* padding: 10px 20px; */
    padding: 16px 40px;
    background-color: #1C1B1F;
    border: 1px solid #1C1B1F;
    border-radius: 99px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s all;
}
#field .item.active{
    /* background-color: #1C1B1F; */
    border: 1px solid #BCE527;
}
#field .icon{
    width: 24px;
}
#field .name{
    color: #999;
    font-size: 20px;
}
#field .item.active .name{
    color: #BCE527;
}
@media screen and (max-width: 1540px) {
    #field .inner{
        max-width: 90%;
    }
}
@media screen and (max-width: 1024px) {
    #field ul{
        justify-content: center;
    }
    #field .item{
        padding: 10px 20px;
    }
    #field .name{
        font-size: 18px;
    }
    #field .heading p.ss,
    #field .heading p.tt{
        text-align: center;
    }
    #field .heading p.ss{
        font-size: 18px;
        
    }
    #field .heading p.tt{
        font-size: 32px;
    }
}
@media screen and (max-width: 768px) {
    #field ul{
        gap: 10px;
    }
    #field .name{
        font-size: 16px;
    }
    #field .heading p.tt{
        font-size: 28px;
    }
    #field .heading p br{
        display: block;
    }
    #field .inner{
        padding: 60px 0;
    }
}
@media screen and (max-width: 600px) {
    #field .item{
        padding: 8px 16px;
    }
    #field .heading p.tt{
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 500px) {
    #field ul{ gap: 8px;}
    #field .item{
        padding: 4px 12px;
        gap: 4px;
    }
    #field .icon{width: 20px;}
    #field .name{font-size: 14px;}
    #field .heading p.tt{font-size: 24px;}
    #field .heading p.ss{font-size: 16px;}
}
@media screen and (max-width: 400px) {
    #field ul{ gap: 4px;}
    #field .item{
        padding: 4px 8px;
        gap: 4px;
    }
    #field .icon{width: 20px;}
    #field .name{font-size: 12px;}
    #field .heading p.tt{font-size: 20px;}
    #field .heading p.ss{font-size: 14px;}
}
.section06{
    background: linear-gradient( rgba(0, 0, 0), rgba(0, 0, 0, 0.5) ),url(../images/sec6-bg.png);
    background-attachment: fixed;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.section06 .s06_left h3{
    
}
.section06 .s06_left p.tit{
    font-weight: 700;
    font-size: 48px;
    line-height: 1.25;
    letter-spacing: -0.03em;
    opacity: 1;
}
.section06 .s06_left p.sub{
    margin-top: 10px;

}

.section06 .s06_right ul li{
    height: 380px;
    background: #ffffffb0;
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid #fff;
    transition: 0.5s all;
    margin-right: 32px;
    margin-bottom: 0;
    padding: 32px 24px ;
    display: flex;
    flex-direction: column;
}
.section06 .s06_right ul li:hover{
    background-color: #fff;
    transform: scale(1.05);
}

.section06 .s06_right h4{
    font-size: 16px;
    color: #666;
    padding:0;
    /* margin-bottom: 8px; */
    margin-top: auto;
}
.section06 .s06_right h2{
    font-size: 24px;
    font-weight: 700;
    padding:0;
    margin-bottom: 8px;
    word-break: keep-all;
}
.section06 .s06_right h3{
    padding-bottom: 40%;
}
.section06 .s06_right h3 span{
    display: block;
    width: auto;
    height: auto;
    background-color: #666;
    border-radius: 100%;
    padding: 8px;
    color: #fff;
    transition: 0.5s all;
}
.section06 .s06_right ul li:hover span{
    background-color: #000;
}
.section06 .s06_right p{
    font-size: 15px;
    font-weight: 400;
    color: #000;
    line-height: 1.3;
    letter-spacing: -0.03em;
}
@media (max-width:768px) {
    .section06 .s06_left p.tit{
        font-size: 32px;
    }
    .section06 .s06_left p{
        font-size: 14px;
        line-height: 1.25;
        margin-top: 8px;
    }
    .section06 .s06_left h3{
        padding-bottom: 16px;
    }
    .section06 .s06_right ul li{
        margin: 0;
        height: auto;
    }
    .section06 .s06_right h3{
        padding-bottom: 14%;
    }
    .section06{
        background-attachment: unset;
        background-size: cover;
    }
    .section06 .s06_right h2{
        font-size: 20px;
    }
    .section06 .s06_right p{
        font-size: 13px;
    }
}
@media (max-width:500px) {
    .section06 .s06_right h3 {
        padding-bottom: 100px;
    }
}
#separateSec{
    width: 100%;
}
#separateSec .tab_wrapper{
    width: 100%;
    height: 80px;
    background-color: #000;
}
#separateSec .tab_wrapper ul{
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 20px; */
    max-width: 1440px;
}
#separateSec .tab_wrapper ul li{
    padding: 0 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: calc(100%/8);
    text-align: center;
    height: 100%;
    line-height: 80px;
    transition: 0.5s all;
    word-break: keep-all;
}
#separateSec .tab_wrapper ul li.active,
#separateSec .tab_wrapper ul li:hover{
    background-color: #2b2b2b;
}
#separateSec .inner{
    padding: 90px 0;
    max-width: 1400px;
    margin: 0 auto;
}

#tab_contents .tab_con{
    display: none;
    justify-content: space-between;
}
#tab_contents .tab_con.active{
    display: flex;
}
#tab_contents .tab_con .tab_img{
    border-radius: 30px;
    overflow: hidden;
    width: 70%;
}
#tab_contents .tab_con .tab_img video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#tab_contents .tab_head{
    width: 25%;
}
#tab_contents .tab_head span{
    font-weight: 700;
    font-size: 20px;
    color: #666;
}
#tab_contents .tab_head .tit{
    font-weight: 700;
    font-size: 50px;
    color: #000;
    margin: 4px 0 18px;
}
#tab_contents .tab_head .desc{
    font-weight: 500;
    font-size: 22px;
    color: #1c1c1c;
}
@media (max-width:1440px) {
    #separateSec{
        display: flex;
        flex-direction: row-reverse;
    }
    #separateSec .tab_wrapper{
        width: auto;
        height: auto;
    }
    #separateSec .tab_wrapper ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    #separateSec .tab_wrapper ul li{
        width: 220px;
        height: auto;   
    }
    #separateSec .inner{
        width: 70%;
        height: 900px;
        position: relative;   
    }
    #tab_contents .tab_con{
        flex-direction: column;
    }
    #tab_contents .tab_head{
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
    }
    #tab_contents .tab_con .tab_img{
        margin-top: 140px;
        width: 100%;
    }
    #tab_contents .tab_con .tab_img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #tab_contents .tab_head .desc br{
        display: none;
    }
}
@media (max-width:1024px) {
    #separateSec .tab_wrapper ul li{
        width: 170px;
    }
    #tab_contents .tab_head .tit{
        font-size: 40px;
        margin: 4px 0;
    }
    #tab_contents .tab_head .desc{
        font-size: 20px;
    }
    #tab_contents .tab_con .tab_img{
        border-radius: 20px;
    }
}
@media (max-width: 768px) {
    #separateSec{
        flex-direction: column;
    }
    #separateSec .tab_wrapper{
        width: 100%;
    }
    #separateSec .tab_wrapper ul{
        display: flex;
        flex-direction: row;
        justify-content: baseline;
        flex-wrap: wrap;
    }
    #separateSec .tab_wrapper ul li{
        width: 25%;
        font-size: 14px;
    }
    #separateSec .inner{
        width: 95%;
        height: 760px;
        position: static;
        padding: 60px 0;
    }
    #tab_contents .tab_head{
        position: static;
    }
    #tab_contents .tab_con .tab_img{
        margin-top: 30px;
    }
    #tab_contents .tab_con .tab_img{
        border-radius: 10px;
    }
    #tab_contents .tab_head .tit{
        font-size: 32px;
    }
    #tab_contents .tab_head .desc {
        font-size: 16px;
    }
    #tab_contents .tab_head span{
        font-size: 16px;
    }
}
@media (max-width: 600px) {
    #separateSec .inner{
        height: 570px;
    }
}
@media (max-width: 500px) {
    #separateSec .tab_wrapper ul li{
        height: 45px;
        line-height: normal;
        padding: 6px 10px;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #tab_contents .tab_head .tit{
        font-size: 26px;
    }
    #separateSec .inner{
        height: 470px;
    }
}
@media (max-width: 375px) {
    #tab_contents .tab_head .tit{
        font-size: 22px;
    }
    #tab_contents .tab_head .desc{
        font-size: 14px;
    }
}

/* 가격 */
#secPrice .capt{
    margin-top: 10px;
    color: #999;
    font-size: 16px;
    font-weight: 700;
}
#secPrice .heading .ss{
    font-size: 20px;
    color: #666;
    font-weight: 500;
    /* margin-bottom: 8px; */
}
#secPrice .heading .tt{
    font-size: 48px;
    color: #000;
    font-weight: 700;
    margin-bottom: 40px;
}
#plan-tab{
    display: none;
}
.lease-price {
    padding: 120px 0;
}
.lease-price .inner{
    max-width: 1400px;
    width: 100%;
}
.price-row{
    display: flex;
    gap: 20px;
}
.grid-price{
    width: 100%;
}
.lease-price .grid-price .price-card {
    /* height: 790px; */
    padding: 24px; border: 1px solid #eaeaea; border-radius: 16px; background-color: #fff; box-shadow: 6px 6px 30px -4px rgba(0,0,0,.04); transition: .2s}
.lease-price .grid-price .price-card .price-card-header {margin-bottom:20px; padding-bottom: 16px; border-bottom: 1px solid #d9d9d9}
.lease-price .grid-price .price-card .price-card-header span {display: block; font-size: 14px; font-weight: 700; color: #888; margin-bottom: 8px}
.lease-price .grid-price .price-card .price-card-header span b {font-weight: 700; color: #495057}
.lease-price .grid-price .price-card .price-card-header h3 {font-size: 32px; font-weight: 700; color: #000; letter-spacing: -0.02em; margin-bottom: 8px}
.lease-price .grid-price .price-card .price-card-header .price-text h4 {font-size: 26px; font-weight: 700; /* color: #ef852d;  */color: #5039c7; letter-spacing: -0.025em}
.lease-price .grid-price .price-card .price-card-header .price-text h4 small {font-size: 17px; color: #868e96; margin-left: 10px}
.lease-price .grid-price .price-card .price-card-body .service-group + .service-group {margin-top: 20px}
.lease-price .grid-price .price-card .price-card-body .service-group h5 {font-size: 17px; font-weight: 700; color: #212529; margin-bottom: 4px}
/* .lease-price .grid-price .price-card .price-card-body .service-group h5::after {content: ''; display: inline-block; width: 5px; height: 5px; margin-left: 6px; border-radius: 50%; background-color: #e8590c;vertical-align: super} */
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li {    font-size: 0;
    padding: 0px 6px;
    border-radius: 10px;}


.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li + li {margin-top: 6px}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li b, .lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li p {display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.75; vertical-align: top}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li b {width: 120px; color: #999}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li p {width: calc(100% - 120px); color: #343a40; text-align: right}



/* 추가 디자인 */
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li.long{display: flex;justify-content: space-between;align-items: center}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li.str{
    background: #efebff;
}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li.str p,.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li.str b{color: #5039c7;}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li.long p,.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li.long b{
    width: auto;
}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list.list_grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    /* justify-items: center; */
}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list.list_grid li + li{
    margin-top: 0;
}
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list.list_grid li p{
    width: auto;
}
/* tooltip */
.lease-price .grid-price .price-card .price-card-body .service-group .service-detail-list li b.noti{
    display: flex; 
    gap: 4px; 
    align-items: center;
}
#ques{
    width: 20px;
    height: 20px;
    display: block;
    background: url(../images/ques.png) no-repeat center center/cover;
    cursor: pointer;
    position: relative;
}
#ques::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 600px;
    height: 230px;
    background-image: url(../images/tooltip.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: default;
    transition: 0.5s all;
    opacity: 0;
    visibility: hidden;
}
#ques:hover::before{
    opacity: 1;
    visibility: visible;
}
.lease-price .grid-price .price-card .price-card-body .service-group .small-text {font-size: 12px; font-weight: 500; color: #868e96; margin-top: 6px}
.lease-price .grid-price .price-card .price-card-body .service-group .badge {font-size: 12px; padding: 4px 8px}
.lease-price .grid-price .price-card .price-card-body .service-group .button-tooltip {font-size: 18px; color: #d9d9d9; margin-left: 4px; padding: 0; border: 0; background-color: transparent; outline: 0}
/* .lease-price .grid-price .price-card .price-card-body .button-select {display: block; font-size: 17px; font-weight: 700; color: #ef852d; text-align: center; margin-top: 28px; padding: 16px 10px; border: 1px solid #ef852d; border-radius: 10px; transition: color .2s, background-color .2s} */
.lease-price .grid-price .price-card .price-card-body .button-select {
    display: block; 
    font-size: 17px; 
    font-weight: 700; 
    color: #251743; 
    text-align: center; 
    margin-top: 28px; 
    padding: 16px 10px; 
    border: 1px solid #251743; 
    border-radius: 10px; 
    cursor: pointer;
    transition: color .2s, background-color .2s}
/* .lease-price .grid-price .price-card.popular {border-color: #ef852d; background-image: linear-gradient(to top left, #e6530d, #ef852d)} */
.lease-price .grid-price .price-card.popular {border-color: #292827;
     /* background-image:linear-gradient(to top left, #252423, #3d396f) */
     background: linear-gradient(165.01deg, #021C41 1.91%, #000000 53.9%, #251743 100%);
    }
.lease-price .grid-price .price-card.popular .price-card-header span {color: rgba(255,255,255,.6)}
.lease-price .grid-price .price-card.popular .price-card-header span b {color: rgba(255,255,255,.9)}
.lease-price .grid-price .price-card.popular .price-card-header h3 {color: #fff}
.lease-price .grid-price .price-card.popular .price-card-header .price-text h4 {color: #fff}
.lease-price .grid-price .price-card.popular .price-card-header .price-text h4 small {color: rgba(255,255,255,.6)}
.lease-price .grid-price .price-card.popular .price-card-body .service-group h5 {color: #fff}
.lease-price .grid-price .price-card.popular .price-card-body .service-group .service-detail-list li.str{
    background: #332373;
}
.lease-price .grid-price .price-card.popular .price-card-body .service-group .service-detail-list li b {color: rgba(255,255,255,.7)}
.lease-price .grid-price .price-card.popular .price-card-body .service-group .service-detail-list li p {color: #fff}
.lease-price .grid-price .price-card.popular .price-card-body .service-group .small-text {color: rgba(255,255,255,.5)}
.lease-price .grid-price .price-card.popular .price-card-body .service-group .button-tooltip {color: rgba(255,255,255,.7)}
/* .lease-price .grid-price .price-card.popular .price-card-body .button-select {color: #ef852d; border-color: #ffecdc; background-color: #ffecdc} */
.lease-price .grid-price .price-card.popular .price-card-body .button-select {
    color: #ffffff; 
    border-color: #ffffff8a; 
    background-color: #ffffff2e
}
/* .lease-price .grid-price .price-card .price-card-body .button-select:hover {color: #fff; background-color: #ef852d} */
.lease-price .grid-price .price-card .price-card-body .button-select:hover {
    color: #fff; 
    background-color: #28115f
}
.etc_wrapper{
    position: relative;
    background: #f3f3f3;
    box-shadow: 6px 6px 30px -4px rgba(0,0,0,.04);
    border:1px solid #eaeaea;
    border-radius: 16px;
    padding: 50px 40px;
    margin-top: 40px;
}
.etc_wrapper .option_tt{
    
 }
.etc_wrapper > .icon{ 
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
}
.etc_wrapper > .icon img{
    width: 100%;
 }
.etc_wrapper .option_tt p{ 
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}
.etc_wrapper ul li{ }
.etc_wrapper ul li b{ 
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.75;
    vertical-align: top;
    color: #666; 
}
.etc_wrapper ul li p{ 
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.75;
    vertical-align: top;
    color: #6e7072;
}
@media (max-width: 1190px) {
    .price-row{
        display: block;
    }
}
@media (max-width: 991px) {
    #secPrice .heading .tt{
        font-size: 32px;
    }
    #secPrice .heading .ss{
        font-size: 18px;
    }
    .lease-price .grid-price .price-card {padding: 28px}
    .lease-price .grid-price .price-card .price-card-header {margin-bottom: 26px; padding-bottom: 26px}
    .lease-price .grid-price .price-card .price-card-header span {font-size: 16px}
    .lease-price .grid-price .price-card .price-card-header h3 {font-size: 26px}
    .lease-price .grid-price .price-card .price-card-header .price-text h4 {font-size: 24px}
    .lease-price .grid-price .price-card .price-card-header .price-text h4 small {font-size: 15px}
    .lease-price .inner{
        max-width: 960px;
    }
}
@media (max-width: 767px) {
    #plan-tab{
        display: flex;
        align-items: center;
        width: 100%;
        gap: 8px;
    }
    #plan-tab li{
        width: 25%;
        /* background-color: #000; */
        height: 45px;
        padding: 6px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f1f1f1;
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        transition: 0.5s all;
    }
    #plan-tab li.pop{
        position: relative;
    }
    #plan-tab li.pop:before{
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
        width: 105%;
        height: 105%;
        transform: rotate(-5deg);
        background-color: #000;
        border-radius: 10px;
    }
    #plan-tab li p{
        font-weight: 600;
        color: #666;
        text-transform: uppercase;
    }
    #plan-tab li.on{
        background-color: #2b2b2b;
    }
    #plan-tab li.on p{
        color: #fff;
    }
    #plan-list .grid-price{
        display: none;
    }
    #plan-list .grid-price.on{
        display: block;
    }
    #plan-list .grid-price .service-group.basic ul{
        display: flex;
        align-items: center;
    }
    #plan-list .grid-price .service-group.basic li{
        margin-top: 0;
    }
    #plan-list .grid-price .service-group.basic li p{
        display: none;
    }
    #plan-list .grid-price .service-group.basic li b{
        width: auto;
    }
    #secPrice .heading .tt{
        font-size: 26px;
    }
    .lease-price{
        padding: 60px 0;
    }
    .lease-price .grid-price {margin-top: 16px}
    .lease-price .inner{
        max-width: 720px;
    }
    #ques::before{
        background-image: url(../images/tooltip_mo1.png);
        width: 87vw;
        height: 19vh;
        top: 20px;
        left: -637%;
        transform: translate(0);
    }
    #secPrice .heading .ss{
        font-size: 16px;
    }
    .lease-price .grid-price .price-card .price-card-header span{
        margin-bottom: 4px;
    }
    .lease-price .grid-price .price-card .price-card-header h3{
        margin-bottom: 0;
    }
    .lease-price .grid-price .price-card .price-card-header {
        margin-bottom: 16px; 
        padding-bottom: 16px;
    }
}
@media (max-width: 576px) {
    #secPrice .heading .tt{
        font-size: 22px;
        margin-bottom: 20px;
    }
    .lease-price .inner{
        max-width: 540px;
        padding: 0;
        width: 95%;
    }
    .lease-price .grid-price .price-card {
        padding: 20px;
    }
    #secPrice .heading .ss{
        font-size: 14px;
    }
    .etc_wrapper{
        padding: 50px 16px;
    }
    .etc_wrapper ul li p{
        font-size: 14px;
    }
    #secUrl .process_con .icon p{
        font-size: 16px;
    }
    #secUrl .process_url::before{
        top: 61%;
    }
}
@media (max-width: 425px) {
    .etc_wrapper ul li p{
        font-size: 13px;
    }
}