/******************** sec_banner */

#sec_banner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 380px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.product_banner{
    background-image: url(/img/sub2/sub2_banner.jpg);
}

.skill_banner{
    background-image: url(/img/sub2/sub2_banner2.jpg);
}

#sec_banner>div:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

#sec_banner>p {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    z-index: 1;
    opacity: 0;
    animation: intro 0.8s forwards;
}

@keyframes intro{
    0%{
        top: 100%;
        opacity: 0;
    }
    100%{
        top: 50%;
        opacity: 1;
    }
}

#banner_select {
    display: flex;
    align-items: center;
    margin-right: 188px;
    width: 214px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 25px;
    background-color: transparent;
    background-image: url(/img/select_guide.png);
    background-repeat: no-repeat;
    background-position: 90% 50%;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
    position: relative;
    cursor: pointer;
}

#banner_select p{
    margin-left: 16px;
}

#banner_select:hover{
    color: #111111;
    background-color: #fff;
    background-image: url(/img/select_guide_b.png);
}

#banner_select option {
    color: #111111;
}

.banner_list{
    display: none;
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 56px;
    left: -60px;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 10px;
}

.banner_list.lang_active {
    display: block;
    animation: active_lang 0.4s forwards;
}

@keyframes active_lang {
    0% {
        opacity: 0;
        left: -60px;
    }

    100% {
        opacity: 1;
        left: 0px;
    }
}


.banner_list li{
    padding: 10px 16px;
    transition: 0.4s;
}

.banner_list li:nth-child(1){
    border-radius: 10px 10px 0 0;
}
  
.banner_list li:nth-child(2){
    border-radius: 0 0 10px 10px;
}

.banner_list li a{
    font-size: 16px;
    color: #111111;
}

.banner_list li:hover{
    background-color: #122a88;
}

.banner_list li:hover a{
    color: #fff;
}

/******************** sec_banner */

/******************** product */

#product_main{
    width: 100%;
    padding: 100px 188px 160px;
    display: flex;
    justify-content: space-between;
}

.product_table1{
    width: 66.6%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-top: 2px solid #122a88;
    border-right: 1px solid #cccccc;
}

.product_table1 > p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    width: 100%;
    padding: 20px 0;
    background-color: #f6f6f6;
}

.product_table1_wrap{
    display: flex;
    justify-content: space-between;
    border: 1px solid #cccccc;
    border-left: 0;
    border-right: 0;
}

.product_table1_wrap .product_table_cell:nth-child(1){
    border-right: 1px solid #cccccc;
}

.product_table_cell{
    width: 50%;
}

.table_cell_img{
    padding: 40px 20px;
}

.table_cell_txt{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
    border-top: 1px solid #cccccc;
    padding: 20px 62px;
}

.table_cell_txt > p{
    text-align: start;
    font-size: 22px;
    font-weight: 600;
}

.table_cell_txt > ul li{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #727272;
}

.product_table2{
    width: 33.4%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-bottom: 1px solid #cccccc;
    border-top: 2px solid #122a88;
}

.product_table2 > p{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 24px;
    width: 100%;
    padding: 20px 0;
    background-color: #f6f6f6;
    border-bottom: 1px solid #cccccc;
    /* border-left: 1px solid #cccccc; */
}

.product_table2 .product_table_cell{
    width: 100%;
    /* border-left: 1px solid #cccccc; */
}


/******************** product */


/******************** skill */

#skill_main{
    padding: 80px 188px 180px;
}

.skill_title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.skill_title p{
    font-weight: 700;
    font-size: 30px;
    text-align: center;
}

.skill_con{
    width: 100%;
    display: flex;
    justify-content: center;
}

/******************** skill */

@media screen and (max-width: 1440px){

    #banner_select  {
        margin-right: 100px;
        width: 190px;
        height: 50px;
    }

    /* product */

    #product_main {
        padding: 100px 100px 200px;
        width: 100%;
    }

    /* skill */

    #skill_main {
        width: 100%;
    }

}

@media screen and (max-width: 1260px){

    /* skill */

    .skill_list_wrap{
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        width: 100%;
    }

    .skill_list{
        width: 100%;
    }
    
}

@media screen and (max-width: 1024px) {

    #sec_banner {
        height: 300px;
    }

    #sec_banner>p {
        font-size: 36px;
    }

    #banner_select  {
        display: none;
    }

    /* product*/

    .table_cell_txt > p{
        font-size: 20px;
    }
    .table_cell_txt > ul li{
        font-size: 15px;
    }

    .table_cell_txt{
        padding: 16px;
    }

    /* skill */

    .mems_contents > div img:nth-child(1){
        width: 100%;
        margin-bottom: 30px
    }

    .mems_contents > div img:nth-child(2){
        width: 50%;
    }

}


@media screen and (max-width: 768px) {

    #sec_banner {
        height: 240px;
    }

    /* product*/

    #product_main{
        padding: 80px 54px 160px;
        flex-direction: column;
    }

    .product_table1{
        width: 100%;
        margin-bottom: 60px;
        border-right: 0;
    }

    .product_table2{
        width: 100%;
        border-bottom: 0;
    }

    .product_table_cell{
        width: 100%;
    }

    .product_table1_wrap{
        flex-direction: column;
    }

    .product_table1_wrap .product_table_cell:nth-child(1){
        border-right: 0;
    }

    .product_table2 .product_table_cell{
        border-left: 0;
        border-bottom: 0;
    }

    .table_cell_txt{
        align-items: center;
        border-bottom: 1px solid #cccccc;
    }

    .table_cell_txt > p{
        font-size: 26px;
    }
    .table_cell_txt > ul li{
        font-size: 20px;
    }

    .table_cell_txt{
        padding: 30px 0;
    }

    .product_table1_wrap{
        border-bottom: 0;
    }

    .product_table2 > p{
        border-left: 0;
    }

    /* skill */

    #skill_main {
        padding: 80px 54px 160px;
        width: 100%;
    }

    .skill_title p{
        font-size: 26px;
    }

}

@media screen and (max-width: 540px) {

    #sec_banner {
        height: 200px;
    }

    /* product */

    #product_main {
        padding: 60px 30px 100px;
    }

    .table_cell_txt > p{
        font-size: 20px;
    }
    .table_cell_txt > ul li{
        font-size: 16px;
    }

    .table_cell_txt{
        padding: 20px 0;
    }

    .table_cell_img {
        padding: 30px 10px;
    }

    .table_cell_img img{
        max-width: 80%;
    }

    .product_table1 > p{
        font-size: 22px;
    }

    /* skill */

    #skill_main {
        padding: 60px 30px 100px;
        width: 100%;
    }

    .skill_title p{
        font-size: 18px;
    }

}

@media screen and (max-width: 414px) {

    #sec_banner {
        height: 160px;
    }

    #sec_banner>p {
        font-size: 24px;
    }

    .mems_title{
        width: 220px;
        height: 50px;
    }

    .mems_title p{
        font-size: 18px;
    }
    
    .mems_contents p .hidden_br{
        display: block;
    }

}

@media screen and (min-width: 5000px) {

    #product_main{
        padding: 300px 32% 794px;
    }

    #skill_main {
        padding: 300px 188px 470px;
    }

}