body {
    padding: 0;
    margin: 0;
    /* font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; */
    font-family: 'Segoe UI', sans-serif;
    width: 100%;
    height: 100%;
    position: relative;
  }
  
a {
    color: inherit;
    text-decoration: none;
}

.bolder {
  font-weight: 600;
}

.container {
    padding-top: 11vh;
}

.container > .sub_title{
    width: 100%;
    background-image: url("/images/background/sub_back.png");
    background-size: cover;
    background-position: center;
    height: 15vh;
    display: grid;
    align-items: center;
    justify-content: center;
    color: #333333;
}

.container > .main_contents{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 60vh;
    padding: 2rem 0 2rem 0; 
}

.main_contents > .partners_board {
    background-image: url("/images/pages/korea.png");
    background-size: cover;
    background-position: center;
    display: grid;
    gap: 1rem;
}

.main_contents > .partners_board > .items{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.main_contents > .partners_board > .items > img{
    border: 1px solid #AAAAAA;
    background-color: rgba(255, 255, 255, 0.7);
}

.main_contents > .partners_board > .items > div{
    border: 1px solid #AAAAAA;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 1rem 0 1rem;
}

table > thead > tr > td{
    background-color: #CCC;
    padding: 0.5rem 0 0.5rem 0;
}

table > tbody > tr > td{
    padding: 0.5rem 0 0.5rem 0;
    border: 1px solid #CCCCCC;
}

.total_value{
    font-weight: 600;
}

.slider_main {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 1rem;
    position: relative;
}

.slider_main > .slider_item {
    display: flex;
    transition: transform 0.5s ease;
}

.slider_main > .slider_item > .slide{
    width: 20%;
    background-color: #FFFFFF;
    border-radius: 2rem;
    box-shadow: 0px 8px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin: 1rem;
    flex: 0 0 auto;
    transition: all 0.5s ease;
}

.slider_main > .slider_item > .slide:hover {
    transform: translateY(-5px);
}

.slider_main > .slider_item > .slide > div {
    width: 100%;
    height: 16rem;
    border: 1px solid #DDDDDD;
}

.slider_main > .slider_item > .slide > div > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_main > .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.arrow.left{ left: 0; }
.arrow.right{ right: 0; }

.facility_name{
    margin-top: 5rem;
    padding-left: 1rem;
}

.menu_name{
    max-height: 15rem;
    overflow: hidden;
    transition: max-height 0.7s ease;
    margin-bottom: 1rem;
    border-bottom: 1px solid #AAAAAA;
}

.menu_name > .title{
    display: grid;
    grid-template-columns: 20% auto;
    margin-bottom: 1rem;
    gap: 1rem;
}

.title_des > h1 {
    margin-top: 0;
    font-size: 2rem;
}

.menu_name > .title > .title_img {
    min-height: 15rem;
    width: 100%;
    background-color: #AAAAAA;
}

.menu_name > .title > .title_des {
    display: grid;
    grid-template-rows: 2rem auto 3rem;
}

.menu_name > .title > .title_des > .title_button {
    width: 10rem;
    justify-self: end;
    border-radius: 1.5rem;
    font-size: 1rem;
    background-color: transparent;
    border: 1px solid #AAAAAA;
    transition: all 0.5s ease;
}

.menu_name > .title > .title_des > .title_button:hover{
    background-color: #ff960d;
    color: #FFFFFF;
    border: 1px solid #ff960d;
    cursor: pointer;
}

.menu_name > .title > h2{
    margin: 0;
    padding-left: 2rem;
    color: #FFFFFF;
}

.menu_name > .title > .end_point{
    display: grid;
    align-items: center;
    justify-content: right;
    padding-right: 2rem;
    width: 10rem;
    height: 100%;
    background: linear-gradient(319deg,rgba(109, 229, 242, 0.6) 10%, rgba(109, 229, 242, 0) 9%, rgba(109, 229, 242, 0) 22%, rgba(109, 229, 242, 0.6) 21%, rgba(109, 229, 242, 0.6) 34%, rgba(109, 229, 242, 0) 33%, rgba(109, 229, 242, 0) 45%, rgba(109, 229, 242, 0.6) 44%, rgba(109, 229, 242, 0.6) 58%, rgba(109, 229, 242, 0) 57%);
}

.menu_name > .title > .end_point > .arrow {
    /* top: 2pt; Uncomment this to lower the icons as requested in comments*/
    width: 1rem;
    height: 1rem;
    border-right: 0.4rem solid white;
    border-top: 0.4rem solid white;
    transform: rotate(135deg);
}

.process_board{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.process_board > .pro_box{
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.process_board > .pro_box > .box_main{
    border: 1px solid #333333;
}

.process_board > .pro_box > .box_main > h2{
    justify-self: center;
    color: #ff960d;
}

.process_board > .pro_box > .box_des{
    border: 1px solid #333333;
}

.process_board > .pro_box > .box_des > .description{
    padding-left: 1rem;
}

.process_board > .pro_box > .box_des > h2{
    justify-self: center;
}

.process_board > .pro_box > .box_main > .sub_img{
    min-height: 3rem;
    max-height: 3rem;
    display: table;
    text-align: center;
}

.process_board > .pro_box > .box_main > .sub_img > .sub_cell{
    padding: 0.2rem;
    display: table-cell;
    vertical-align: middle;
}

.process_board > .pro_box > .box_main > .sub_img > .sub_cell > img{
    max-width: 3rem;
    max-height: 3rem;
}

/* .business_board {
    display: grid;
    gap: 2rem;
} */

.business_board > .title_area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    text-align: center;
    gap: 2rem;
    max-width: 60%;
    margin: 0 auto;
}

.business_board > .title_area > .title {
    color: #333333;
    padding: 0.5rem 1rem 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 300;
    border: 1px solid #AAAAAA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business_board > .title_area > .title:hover{
    color: #ff960d;
    cursor: pointer;
}

.business_board > .des_area > .des_container {
    /* width: 100%; */
    text-align: center;
}

/* .business_board > .des_area > .des_container > .description {
    width: 100%;
} */

.business_board > .des_area > .des_container > .description > .contents{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.arrow_btn {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 1) 100%);
}

.arrow_btn i:hover{
    cursor: pointer;
}

.active{
    background-color: #ff960d;
    color: white !important;
    border: none !important;
}

.arrow_btn i{
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.sampleimg{
    background-color: #AAAAAA;
    color: #FFFFFF;
    min-height: 20rem;
    text-align: center;
    border-radius: 2rem;
    display: grid;
    align-items: center;
    font-size: 3rem;
}

.business_board > .des_area > .des_container > .description > .contents > .business_msg{
    display: flex;
    width: auto;
    /* gap: 1rem; */
    transition: transform 0.5s ease;
}

.business_msg:first-child{
    margin-left: 16%;
}

/* .msg_title {
    grid-column: 1/5;
    margin-top: 0;
    border-bottom: 3px solid #AAAAAA;
} */

.msg_box {
    flex: 0 0 74%;
    /* display: grid;
    align-items: center;
    justify-content: center; */
    opacity: 0.5;
    transition: all 0.3s;
    margin: 0 3%;
}

.msg_box table{
    
}

.msg_box > .msg_box_image{
    width: 100%;
    height: 40vh;
    padding-top: 2vh;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.msg_box_image img{
    width: 80%;
    margin-left: 10%;
    height: 30vh;
    object-fit: contain;
    display: block;
    border-radius: 1rem;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.msg_box > .msg_box_title{
    color: #666;
}

.msg_box p, .msg_box h2{
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.hide{
    display: none;
}

.business_board > .map_adress > .map_title {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2rem;
    margin-bottom: 2rem;
}

.business_board > .map_adress > .map_title div {
    border: 1px solid #ff960d;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    border-radius: 2rem;
    color: #333333;
    transition: all 0.5s ease;
}

.business_board > .map_adress > .map_title div:hover {
    background-color: #ff960d;
    color: #FFFFFF;
    cursor: pointer;
}

.map_on {
    background-color: #ff960d;
    color: #FFFFFF !important;
}

.business_board > .map_adress > .map_field > .map_local > .map_detail {
    display: grid;
    grid-template-columns: 20rem auto;
    overflow: hidden;
    gap: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #AAAAAA;
    max-height: 15rem;
    transition: max-height 0.5s ease;
}

.business_board > .map_adress > .map_field > .map_local > .map_detail > .map_img {
    min-height: 15rem;
    width: 100%;
}

.map_img > img {
    border-radius: 1rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business_board > .map_adress > .map_field > .map_local > .map_detail > iframe {
    grid-column: 1/3;
}

.business_board > .map_adress > .map_field > .map_local > .map_detail > .map_des > .title{
    font-size: 2rem;
    font-weight: 400;
}

.business_board > .map_adress > .map_field > .map_local > .map_detail > .map_des > .map_information > .map_data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.business_board > .map_adress > .map_field > .map_local > .map_detail > .map_des > .map_information > .map_data > .subTitle{
    font-weight: 500;
}

.business_board > .map_adress > .map_field > .map_local > .map_detail > .map_des > .map_btn {
    border: 1px solid #AAAAAA;
    border-radius: 10rem;
    justify-self: right;
    padding: 0.5rem 2rem 0.5rem 2rem;
    transition: all 0.5s ease;
}

.business_board > .map_adress > .map_field > .map_local > .map_detail > .map_des > .map_btn:hover {
    background-color: #ff960d;
    color: #FFFFFF;
    cursor: pointer;
}

.ceo_board{
    margin: 0 auto;
}

.ceo_description{
    font-size: 1.2rem;
    line-height: 2;
    color: #666;
}

.ceo_finish{
    display: grid;
    font-size: 1.5rem;
    grid-template-columns: auto max-content;
    justify-content: right;
}

.ceo_finish img{
    width: 5rem;
    height: auto;
}

@media(max-width:768px){
    .container {
        padding-top: 5.5vh;
    }
    .ceo_board{
        margin: 0 auto;
        padding: 0 5vw;
    }
    .business_board {
        margin: 0 auto;
        display: grid;
        gap: 2rem;
    }
    .asia_map{
        width: 90vw;
        padding: 0 5vw;
    }
    .asia_map img{
        object-fit: cover;
    }
    .map_adress{
        width: 90vw;
        padding: 0 5vw;
    }
    .business_board > .map_adress > .map_field > .map_local > .map_detail {
        display: block;
        grid-template-columns: unset;
        overflow: hidden;
        gap: 2rem;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #AAAAAA;
        max-height: 60vh;
        transition: max-height 0.5s ease;
    }
    .business_board > .map_adress > .map_field > .map_local > .map_detail > .map_img {
        min-height: unset;
        width: 100%;
    }
    .map_des{
        margin-bottom: 3vh;
    }
    .business_board > .title_area {
        gap: 1vw;
        max-width: 80%;
    }
}