.s1_6_con{
    margin-bottom: 185px;
}
.tab-nav{
    width: 45%;
}
.tab-link p{
    padding: 17px 25px;
    color: #454545;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500; /* Semi-bold */
}
.tab-link.current p{
    color: #fff;   
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800; /* Bold */
    background-color: #1e7ec2;
    border-radius: 50px;
}
.tab-content{
	display: none;
}
.tab-content.current{
    display: inherit;
    width: 50%;
}
.tab-content li{
    position: relative;
    font-size: 0;
}
.tab-content li img{
    width: 100%;
    height: 100%;
}
.tab-content .txt_box{
    position: absolute;
    left: 4%;
    bottom: 4%;
}

/* mobile */ 
@media screen and (max-width: 767px){ 
    .s1_6_con{
        display: flex;
        flex-direction: column;
        gap: 30px 0;
        margin-bottom: 100px;
    }
    .tab-nav{
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px 0;
    }
    .tab-link{
        width: 49%;
    }
    .tab-link p{
        padding: 10px 0;
        text-align: center;
    }
    .tab-content.current{
        width: 100%;
    }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){
    .tab-content li img{
        object-fit: cover;
        border-radius: 10px;
    }
} 