body{
    background-size: contain;
    background-position-y: 6%;
}
img{
    border:0;
   
    
}
a{
    text-decoration:none
}
ul,ol{
    list-style:none;
    padding: 0;
    margin: 0;
}
.clr{
    clear:both
}
.container{
    max-width:1200px;
    width: 100%;
    margin:0 auto;
    position:relative;
}

/* back-top */
.back-top{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background-color: #fc6719;
    border-radius: 100px;
    z-index: 102;
}
.back-top a{
    color: white;
    font-size: 25px;
}

/* ******************* header ******************** */

/* navbar */
.header{
    background-color: #fc6719;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: all .4s ease-in-out;
    z-index: 102;
    border-bottom: 2px solid white;
}
.header.sticky{
    position: fixed;
    height: 60px;
    width: 100%;
}

.header .logo{
    width: 160px;
    height: 150px;
    transition: all .4s ease-in-out;
}
.header .logo.sticky{
    width: 110px;
    height: 110px;
}
.header .logo img{
    width: 100%;
    height: 100%;
}

.header .nav-menu{
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 102;
}
.header .nav-menu li{
    padding: 10px;
    list-style: none;
}
.header .nav-menu li a{
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .4s ease-in-out;
}
.header .nav-menu li a:hover{
    color: black;
}
.header .nav-menu i.fa{
    color: white;
}
.language{
    display: flex;
    justify-content: center;
    align-items: center;
}
.language-item span{
    color: white;
    font-size: 14px;
    font-weight: bold;
}
a.language-item{
    width: 90px;
    text-decoration: none;
}
.language-item img{
    width: 25px;
    height: 18px;
}

.btn_toggle{
    display: none;
}
.btn_toggle button{
    border: none;
    outline: 0px;
    background-color: transparent;
    color: white;
    font-size: 25px;
    cursor: pointer;
}

.sub-menu{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 20%;
    top: 14%;
    padding: 10px 10px;
    background-color: #fc6719;
    transition: all .4s ease-in-out;
}
.sub-menu li a{
    display: block;
    padding: 5px 0;
    width: 100%;
    text-transform: inherit !important;
}
.sub-menu li:not(:last-child){
    border-bottom: 1px solid white;
}
.open-twoview:hover .sub-menu{
    opacity: 1;
    visibility: visible;
}

.sub-menu-sub{
    position: absolute;
    top: 50%;
    left: 100%;
    width: 260px;
    padding: 10px 0px;
    height: 0%;
    visibility: hidden;
    background-color: #fc6719;
    transition: all .4s ease-in-out;
}
.open-treeview:hover .sub-menu-sub{
    height: 100%;
    visibility: inherit;
}
/* .open-twoview .sub-menu.active{
    display: block;
}
.open-treeview .sub-menu-sub.active{
    display: block;
} */

.section-banner{
    position: relative;
}
.banner-box{
    display: flex;
    justify-content: space-between;
}
.owl-nav{
    display: flex;
    justify-content: space-between;
}
.owl-nav button.owl-prev{
    position: absolute;
    left: 40px;
    top: 45%;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: #fc6719 !important;
    border: none;
    outline: 0px;
    border-radius: 100px;
    color: white;
}
.owl-nav button.owl-next{
    position: absolute;
    right: 40px;
    top: 45%;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: #fc6719 !important;
    border: none;
    outline: 0px;
    border-radius: 100px;
}
.owl-nav button span{
    color: white;
    font-size: 20px;
}
.owl-carousel .item{
    width: 1300px;
    height: 500px;
}
.section-banner .banner-text{
    width: 100%;
    padding: 50px 10px;
    color: white;
    position: relative;
}
.section-banner .banner-text .banner-title{
    font-size: 60px;
    font-weight: 700;
}
.section-banner .banner-text .banner-paragraph{
    font-size: 20px;
    font-weight: 700;
    padding: 32px 0px;
}
.banner-btn a{
    border: none;
    outline: 0px;
    color: white;
    font-size: 18px;
    padding: 15px 40px;
    border: 2px solid white;
    background-color: rgb(236, 86, 31);
    transition: all .4s ease-in-out;
}
.banner-btn a:hover{
    background-color: black;
}
.section-banner .banner-img{
    width: 100%;
    height: 500px;
}
.section-banner .banner-img img{
    width: 100%;
    height: 100%;
}
.section-banner .banner-text{
    animation: animate 20s linear infinite;
}
@keyframes animate{
    10%{
        background-color: rgb(236, 86, 31);
    }
    50%{
        background-color: rgb(49, 54, 54);
    }
    100%{
        background-color: rgb(221, 16, 67);
    }
}


.section-benner .owl-carousel .item img{
    width: 100%;
    height: 100%;
}
.section-benner .owl-carousel:hover .owl-nav{
    opacity: 1;
}

.about{
    width: 100%;
    padding: 60px 0px;
    background-color: #fc6719;
}
.about .about-us-title{
    font-size: 60px;
    text-align: center;
}
.about .about-us-title p{
    font-size: 20px;
    line-height: 35px;
    font-weight: 400;
}
.about .about-us-title .title-strong{
    font-weight: 700;
}
.about-us{
    padding: 80px 0px;
}
.about-us-title{
    text-align: center;
}
.about-us .title-video{
    font-size: 25px;
    font-weight: 600;
    display: block;
    margin-bottom: 50px;
}
.about-us .title-video a{
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    text-decoration: white;
    background-color: green;
}
.video-card{
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.video-card img{
    width: 100%;
    height: 100%;
}
.video-card .content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    padding-top: 10px;
    text-align: center;
    background-color: #fc6719;
    transition: all .4s ease-in-out;
}
.video-card:hover .content{
    height: 100%;
}
.video-card .content .icon i.fa{
    font-size: 40px;
    color: rgb(221, 16, 67);
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 70px;
    border-radius: 100px;
    border: 5px solid rgb(221, 16, 67);
}
.video-card .content h4{
    margin-bottom: 10px;
    font-size: 30px;
    color: white;
    font-weight: 700;
}

.product-and-service{
    padding-top: 50px;
    background-color: #352626;;
    padding-bottom: 50px;
}
.product-title{
    color: white;
    text-align: center;
    padding: 0px 50px;
}
.product-title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 50px;
}
.product-title img{
    width: 200px;
    height: 100px;
}
.product-title .title{
    font-size: 60px;
    font-weight: 700;
}
.card-product{
    padding: 20px;
    width: 100%;
    height: 520px;
    color: white;
    text-align: center;
}
.card-product.bg-blue{
    background-color: rgb(10, 174, 224);
}
.card-product.bg-green{
    background-color: green;
}
.card-product.bg-yellow{
    background-color: purple;
}
.card-product.bg-red{
    background-color: rgb(221, 16, 67);
}
.card-product .img{
    text-align: center;
    padding: 5px;
}
.card-product .img img{
    width: 200px;
}
.card-product h3{
    padding: 10px 0px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}
.card-product p{
    height: 260px;
    line-height: 24px;
    font-size: 12px;
}
.card-product a{
    display: block;
    padding: 8px 0px;
    color: white;
    text-align: center;
    background-color: #fc6719;
    text-decoration: #fc6719;
}

.product-card .content{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 30px;
    background-color: rgb(10, 174, 224);
    transform: translateX(-100%);
    transition: all .4s ease-in-out;
}
.product-card .content h4{
    font-size: 20px;
    color: #fc6719;
    font-weight: 700;
}
.product-card .content p{
    color: white;
    font-size: 16px;
}
.smart-living-product  .product-card:hover .content{
    transform: translateX(0);
}


.our-partner{
    padding-top: 50px;
    padding-bottom: 50px;
}
.partner-title{
    text-align: center;
    padding: 0px 50px;
}
.partner-title .title{
    font-size: 60px;
    font-weight: 700;
}
.partner{
    margin-top: 100px;
}
.partner-item{
    display: flex;
    align-items: center;
    padding: 30px 10px;
    border-bottom: 1px solid rgba(210, 210, 214, 0.993);
}
.partner-item img{
    width: 140px;
    height: 100px;
}
.partner-item .content{
    padding-left: 20px;
}
.partner-item .content .title{
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    color: #fc6719;
}


.who-we-serve{
    padding-top: 50px;
    padding-bottom: 50px;
}
.who-title{
    color: white;
    text-align: center;
    padding: 0px 50px;
}
.who-title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 50px;
}
.who-title img{
    width: 200px;
    height: 100px;
}
.who-title .title{
    font-size: 60px;
    font-weight: 700;
}
.who-we-card{
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}
.who-we-card img{
    width: 100%;
    height: 100%;
}
.who-we-serve .content{
    position: absolute;
    top: 20%;
    width: 100%;
    height: auto;
    padding: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.63);
    transition: all .4s ease-in-out;
}
.who-we-serve .who-we-card:hover .content{
    background-color: rgb(221, 16, 67);
}
.who-we-serve .content h5{
    font-size: 40px;
    font-weight: 700;
    color: #fc6719;
}
.who-we-serve .content p{
    font-size: 20px;
    color: white;
    font-weight: 600;
}


.new-event{
    padding-top: 50px;
    background-color: #dbd8d8;
    padding-bottom: 50px;
}
.new-event-title{
    color: black;
    text-align: center;
    padding: 0px 50px;
}
.new-event-title .title{
    font-size: 60px;
    font-weight: 700;
}
.new-event-title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 50px;
}
.event-card{
    width: 100%;
    height: auto;
    padding: 40px;
    margin-bottom: 25px;
    background-color: white;
}
.event-card a{
    font-size: 22px;
    color: #fc6719;
    text-decoration: none;
}
.event-card .date{
    font-size: 16px;
    padding: 10px 0px;
}
.event-card p{
    line-height: 20px;
}
.event-card .description{
    margin-bottom: 20px;
    font-size: 14px;
}
.event-card .btnReadMore{
    padding: 8px 15px;
    font-size: 14px;
    color: white;
    background-color: #fc6719;
    transition: all .4s ease-in-out;
}
.event-card .btnReadMore:hover{
    background-color: black;
}

/* footer */
.footer{
    padding-top: 20px;
    border-top: 2px solid white;
    background-color: #fc6719;
}
.footer h5{
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0px;
    border-bottom: 1px solid white;
}
.location{
    display: flex;
}
.location .icon{
    max-width: 40px;
    max-height: 40px;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    line-height: 40px;
    border: 2px solid white;
    border-radius: 100px;
}
.location .icon i.fa{
    font-size: 20px;
}
.location p{
    color: white;
    padding: 10px;
}
.location p a{
    color: white;
    text-decoration: none;
}

.logo-footer{
    text-align: right;
    width: 100%;
    height: 100%;
}
.logo-footer img{
    width: 200px;
    height: 200px;
}
.sub-footer{
    color: white;
    padding: 10px;
    text-align: center;
    background-color: #ec641b;
}
.sub-footer a{
    text-decoration: none;
    color: #352626;
}



/* page product */

.propostion{
    padding-top: 50px;
    padding-bottom: 70px;
}
.propostion-title{
    color: black;
    text-align: center;
    padding: 0px 50px;
}
.propostion-title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 80px;
}
.propostion-title img{
    width: 200px;
    height: 100px;
}
.propostion-title .title{
    font-size: 60px;
    font-weight: 700;
}
.propostion-card{
    width: 100%;
    height: 420px;
}
.propostion-card .img{
    text-align: center;
    margin-bottom: 40px;
}
.propostion-card .img img{
    width: 200px;
    height: 185px;
}
.propostion-card .title{
    font-size: 24px;
    font-weight: 600;
    padding: 20px 0px;
    border-bottom: 2px solid #fc6719;
}
.propostion-card ul{
    list-style: none;
    margin-top: 20px;
}
.propostion-card ul li{
    margin-bottom: 10px;
}
.propostion-card ul li i.fa{
    border: 2px solid black;
}


/* customer page */

.we-support{
    padding-top: 50px;
    padding-bottom: 70px;
}
.we-support-title{
    color: black;
    text-align: center;
    padding: 0px 50px;
}
.we-support-title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 80px;
}
.we-support-title img{
    width: 200px;
    height: 100px;
}
.we-support-title .title{
    font-size: 60px;
    font-weight: 700;
}
.we-support-card{
    color: white;
    width: 100%;
    height: 450px;
    padding: 20px 40px;
}
.we-support-card.bg-red{
    background-color: rgb(221, 16, 67);
}
.we-support-card.bg-gray{
    background-color: #352626;
}
.we-support-card.bg-blue{
    background-color: rgb(10, 174, 224);
}
.we-support-card .title{
    font-size: 35px;
    font-weight: 700;
    text-align: center;
}
.we-support-card ul{
    padding: 20px;
}
.we-support-card ul li{
    margin-bottom: 20px;
}
.we-support-card ul li i.fa{
    padding-right: 15px;
    font-size: 10px;
}
.circle-counter{
    display: flex;
    justify-content: center;
    padding: 30px 0px;
}
.circle-counter .counter{
    width: 180px;
    height: 180px;
    line-height: 180px;
    text-align: center;
    border-radius: 100px;
    border: 2px solid #fc6719;
    position: relative;
}
.circle-counter .counter .number{
    position: absolute;
    top: 13px;
    left: 13px;
    font-size: 50px;
    font-weight: 700;
    width: 150px;
    height: 150px;
    color: white;
    text-align: center;
    line-height: 150px;
    background-color: #fc6719;
    border-radius: 100px;
}
.circle-counter .counter .number span{
    font-size: 25px;
    font-weight: 600;
}
.box-content{
    padding: 20px;
    text-align: center;
    border: 2px dashed #fc6719;
}
.box-content p{
    line-height: 30px;;
}

.desviption{
    padding: 50px 0px;
    background-color: rgb(10, 174, 224);
}
.desviption .desviption-box{
    display: flex;
    align-items: center;
}
.desviption .desviption-box .img{
    width: 300px;
    height: 80px;
}
.desviption .desviption-box .img img{
    width: 100%;
    height: 100%;
}
.desviption .desviption-box p{
    font-weight: 600;
    font-size: 24px;
    line-height: 40px;
    padding: 0px 50px;
    text-align: center;
}


.how-it-work{
    padding-top: 50px;
    padding-bottom: 70px;
}
.how-it-title{
    color: black;
    text-align: center;
    padding: 0px 50px;
}
.how-it-title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 100px;
}
.how-it-title img{
    width: 200px;
    height: 100px;
}
.how-it-title .title{
    font-size: 60px;
    font-weight: 700;
}
.how-it-card{
    width: 100%;
    height: auto;
    padding: 0px 20px;
}
.how-it-card .title{
    font-size: 30px;
    font-weight: 700;
    color: #fc6719;
    border-bottom: 2px dashed #fc6719;
}
.how-it-card p{
    font-size: 20px;
    padding: 10px 0px;
    line-height: 35px;
}


/* news and event page */

.new_and_event{
    padding-top: 50px;
}
.new_and_event_title{
    color: black;
    text-align: center;
    padding: 0px 50px;
}
.new_and_event_title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 60px;
}
.new_and_event_title img{
    width: 200px;
    height: 100px;
}
.new_and_event_title .title{
    font-size: 60px;
    font-weight: 700;
}

.latest_new{
    padding-top: 50px;
    padding-bottom: 70px;
    background-color: #dbd8d8;
}
.latest_new .title{
    font-weight: 600;
    font-size: 20px;
}
.latest_banner_item{
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}
.latest_item{
    display: flex;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(210, 210, 214, 0.993);
    background-color: white;
    margin-bottom: 50px;
}
.latest_item .content{
    padding-right: 20px;
    width: auto;
}
.content-name{
    font-weight: 600;
    font-size: 22px;
    color: #fc6719;
    margin-bottom: 10px;
}
.latest_item .content p{
    line-height: 20px;
    font-size: 16px;
    line-height: 30px;
    color: black;
}
.latest_item .content a.btnSee{
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #fc6719;
    transition: all .4s ease-in-out;
}
.latest_item .content a.btnSee:hover{
    background-color: black;
}
.latest_item .img{
    padding-left: 30px;
    width: 700px;
    /* max-height: 140px; */
}
.latest_item .img img{
    width: 100%;
    height: 100%;
}
.latest_item a:hover{
    color: #fc6719;
    text-decoration: none;
}


/* event_detail page */

.event_detail{
    padding-top: 50px;
    padding-bottom: 50px;
}
.event_detail_box{
    width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(226, 226, 229, 0.993);
}
.event_detail_item{
    overflow: hidden;
    line-height: 30px;
}
.event_detail_item .title{
    font-size: 25px;
    color: #fc6719;
    font-weight: 600;
    line-height: 40px;
}
.event_detail_item .date{
    padding: 20px 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eeeded;
}
.event_detail_item .img{
    width: 100%;
    border: 1px solid #fc6719;
}
.event_detail_item .img img{
    width: 100%;
    /* max-height: 500px; */
}
.event_detail_item .long-description{
    padding-top: 20px;
}



/* about-career page */

.about-career{
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    /*background-color: #fc6719;*/
}
.about-career .content{
    padding-right: 20px;
    color: white;
}
.about-career .content .title{
    font-size: 40px;
    font-weight: 600;
    padding: 10px 0px;
    border-bottom: 2px solid white;
}
.about-career .content p{
    font-size: 16px;
    line-height: 30px;
    padding: 20px 0px;
}

.job{
    padding-top: 50px;
    padding-bottom: 50px;
}
.job-title{
    padding: 20px 0px;
    text-align: center;
}
.job-title .title{
    font-weight: 600;
    font-size: 40px;
}
ul.job-at{
    margin-top: 50px;
    padding: 0px;
}
.job-at-item{
    padding: 10px 0px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(210, 210, 214, 0.993);
}
.job-at-item .job-name{
    padding: 10px 0px;
}
.job-at-item .job-name a{
    font-weight: 600;
    font-size: 25px;
    color: #fc6719;
    text-decoration: none;
}
.description-job p .request-from,
.description-job p .request-date,
.description-job p .job-id{
    font-weight: 600;
    font-size: 18px;
}
.description-job p .date,
.description-job p .id,
.description-job p .name-request{
    font-size: 16px;
    padding: 0px 10px;
}
.description-job p .bar{
    color: #fc6719;
    font-size: 20px;
    padding: 0px 10px;
}

.jobs{
    padding: 50px 0;
}
.jobs-ul{
    padding: 0;
}
.jobs-li{
    padding: 10px 0;
    border-bottom: 1px solid rgba(220, 220, 228, 0.993);
}
.job-name a{
    display: block;
    font-size: 20px;
    color: #fc6719;
    margin-bottom: 20px;
}
.jobs-li .content-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.jobs-li .content-flex span{
    
}
.jobs-li .content-flex a{
    border-radius: 100px;
    padding: 10px 20px;
    color: white;
    background-color:#fc6719;
    text-decoration: none;
    transition: all .4s ease-in-out;
}
.jobs-li .content-flex a:hover{
    background-color: #352626;
}
.footer-jobs{
    padding: 20px 0;
}
.footer-jobs h5{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-jobs ul li{
    margin-top: 20px;
}

.career-detail{
    width: 800px;
    margin: 5% auto;
}
.career-detail .job-detail-name{
    
}
.career-detail .job-detail-name h4{
    font-size: 40px;
    font-weight: bold;
}
.career-detail .job-detail-name h6{
    font-weight: bold;
    font-size: 16px;
    padding: 20px 0;
}
.career-detail .job-detail-name .header-office{
    padding: 15px 0;
}
.career-detail .job-detail-name .date-line{
    color: #ec641b;
}
.career-detail .job-detail-name p{
    line-height: 30px;
    font-size: 16px;
}
.career-detail .job-detail-name p span{
    color: #fc6719;
}
.title-line{
    padding: 10px 0;
}
.title-line h5{
    font-weight: bold;
    font-size: 20px;
}
.title-line ul{
    list-style: outside;
    margin-top: 20px;
    padding-left: 50px;
}
.title-line ul li ul{
    list-style: square;
}
.title-line ul li{
    margin-bottom: 20px;
}
.title-line ul.square{
    list-style: square;
}

/* job-description page */

.banner-job{
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: rgba(166, 166, 185, 0.993);
}
.banner-job .title-job{
    font-size: 40px;
    font-weight: 600;
    color: #fc6719;
}
.banner-job p{
    margin-top: 20px;
    line-height: 30px;
    font-size: 18px;
}

.job-description{
    padding-top: 40px;
    padding-bottom: 40px;
}
.description-box{
    overflow: hidden;
}
.description-box .item{
    padding: 30px;
    border: 1px solid #fc6719;
    margin-bottom: 30px;
}
.description-box .item h4{
    font-size: 30px;
    font-weight: 600;
}
.description-box .item ul{
    margin: 0;
    padding-left: 20px;
}
.description-box .item ul li{
    margin-bottom: 20px;
}
.description-box .item ul li i.fa{
    padding-right: 10px;
    color: #fc6719;
}

.form-submit{
    padding: 30px 30px;
    box-shadow: 0px 0px 10px rgba(210, 210, 214, 0.993);
}
.title-form{
    font-size: 22px;
    font-weight: 600;
    padding: 10px 0px;
}
.title-form i.fa{
    color: #fc6719;
}
.form-group:not(:last-child){
    margin-bottom: 30px;
}
.form-group label{
    margin: 10px;
}
.form-group input[type="email"],
.form-group input[type="file"],
.form-group input[type="text"]{
    padding-left: 10px;
    width: 100%;
    height: 40px;
    outline: 0px;
    border: none;
    border-radius: 2px;
    border: 1px solid rgba(210, 210, 214, 0.993);
}
.form-group .btnSubmit{
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    outline: 0px;
    border: none;
    border-radius: 2px;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #fc6719;
    transition: all .4s ease-in-out;
}
.form-group .btnSubmit:hover{
    background-color: black;
}

/* promotion page */

.promotion{
    padding-top: 40px;
    padding-bottom: 40px;
}
.promotion-title{
    padding: 0px 50px;
    text-align: center;
}
.promotion-title .title{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.promotion-title small{
    font-size: 16px;
    color: gray;
}
.promotion-title small span{
    font-size: 30px;
    color: #fc6719;
}
.promotion-title ul{
    margin-top: 20px;
    text-align: left;
}
.promotion-title ul li{
    margin-bottom: 20px;
}
.promotion-title ul li i.fa{
    color: #fc6719;
    padding-right: 10px;
}

.congradulation{
    padding-top: 40px;
    padding-bottom: 40px;
}
.congradulation-title{
    padding: 0px 170px;
    text-align: center;
}
.congradulation-title .title{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}
.congradulation-title small{
    font-size: 16px;
    color: gray;
}
.congradulation h5{
    margin-top: 50px;
    padding: 10px 0px;
    color: #fc6719;
    font-size: 20px;
}
.congradulation table{
    border-collapse: collapse;
    width: 100%;
}
.congradulation table tr th,
.congradulation table tr td{
    padding: 20px 10px;
    text-align: center;
    border: 1px solid rgba(166, 166, 185, 0.993);
}
.congradulation h6{
    font-size: 18px;
    margin-top: 20px;
}
.congradulation i.fa{
    color: #fc6719;
    font-size: 16px;
    padding-right: 10px;
}

/* login and register page */
.form-login-register{
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: rgba(226, 226, 229, 0.993);
}
.form-login-register form{
    padding: 20px 50px;
    border: 1px solid rgba(210, 210, 214, 0.993);
}
.form-login-register .message{
    padding: 10px 0px;
    color: rgb(221, 16, 67);
}
.form-login-register .form-title{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}
.form-login-register .btnLogin{
    padding: 10px 20px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #fc6719;
    text-decoration: none;
    transition: all .4s ease-in-out;
}
.form-login-register .btnLogin:hover{
    background-color: black;
}
.form-login-register span{
    padding-left: 20px;
}
.form-login-register .d-flex{
    display: flex;
}
.form-login-register .form-group input{
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 2px;
    padding-left: 10px;
    outline: 0px;
    border: 1px solid rgba(210, 210, 214, 0.993);
    background-color: white;
}

/* media page */
.videos{
    padding-top: 40px;
    padding-bottom: 40px;
}
.videos-title{
    text-align: center;
    padding: 0px 50px;
}
.videos-title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 50px;
}
.videos-title img{
    width: 200px;
    height: 100px;
}
.videos-title .title{
    font-size: 60px;
    font-weight: 700;
}
.videos-box{
    display: flex;
    flex-wrap: wrap;
}
.videos-box .videos-item{
    flex: 20%;
    height: 300px;
    margin: 10px;
    overflow: hidden;
    position: relative;
}
.videos-box .videos-item img{
    width: 100%;
    height: 100%;
}
.videos-box .videos-item .content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 10px 20px;
    text-align: left;
    background-color: #fc6719;
}
.videos-box .videos-item .content h5{
    font-weight: 700;
    color: white;
}
.videos-box .videos-item .icon{
    position: absolute;
    top: 30%;
    left: 40%;
    transform: translate(-50% -50%);
}
.videos-box .videos-item .icon i.fa{
    font-size: 30px;
    color: white;
    width: 70px;
    height: 70px;
    cursor: pointer;
    text-align: center;
    line-height: 70px;
    border-radius: 100px;
    background-color: rgb(221, 16, 67);
}

.gellery{
    padding-bottom: 50px;
}
.gellery-title{
    text-align: center;
    padding: 0px 50px;
}
.gellery-title p{
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 50px;
}
.gellery-title img{
    width: 200px;
    height: 100px;
}
.gellery-title .title{
    font-size: 60px;
    font-weight: 700;
}
.gellery-box{
    display: flex;
    flex-wrap: wrap;
}
.gellery-box .gellery-item{
    flex: 20%;
    height: 250px;
    margin: 10px;
    overflow: hidden;
    position: relative;
}
.gellery-box .gellery-item img{
    width: 100%;
    height: 100%;
}
.gellery-box .gellery-item .content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 10px;
    text-align: left;
    background-color: #fc6719;
}
.gellery-box .gellery-item .content h6{
    font-weight: 600;
    font-size: 20px;
    color: #fc6719;
}
.gellery-box .gellery-item .content p{
    color: white;
}
.gellery-box .gellery-item .content .btnView{
    padding: 3px 15px;
    color: black;
    text-decoration: none;
    background-color: white;
    transition: all .4s ease-in-out;
}
.gellery-box .gellery-item .content .btnView:hover{
    color: white;
    background-color: black;
}

.jobSubmitCV,
.jobSubmit-detail-box{
    position: relative;
    margin-top: 20px;
}
.jobSubmit-detail-box table{
    width: 100%;
    border-collapse: collapse;
}
.jobSubmit-detail-box table td,
.jobSubmit-detail-box table th{
    padding: 20px;
    border: 1px solid rgba(166, 166, 185, 0.993);
}
.jobSubmit-detail-box table :first-child .id{
    color: white;
    background-color: rgb(221, 16, 67);
}
.jobSubmit-detail-box table th:hover,
.jobSubmit-detail-box table td:hover{
    color: white;
    background-color: rgb(221, 16, 67);
}
.jobSubmit-detail-box table td.img{
    width: 50px;
    height: 50px;
}
.jobSubmit-detail-box table td.img img{
    width: 100%;
    height: 100%;
}
.jobSubmitCV .img{
    width: auto;
    height: auto;
    padding: 5px;
    border: 2px solid rgb(221, 16, 67);
}
.jobSubmitCV .img img{
    width: 100%;
    height: 100%;
}

.shareholder{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(244, 244, 248, 0.993);
}
.shareholder-title{
    text-align: center;
    padding: 20px 0px;
}
.shareholder-title h4{
    font-size: 40px;
    font-weight: bold;
}
.shareholder-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.shareholder-item{
    width: 400px;
    height: auto;
    margin: 20px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    border: 1px solid rgba(227, 227, 235, 0.993);
}
.shareholder-item .img{
    overflow: hidden;
}
.shareholder-item .img img{
    width: 100%;
    height: 100%;
}
.shareholder-content a{
    text-decoration: none;
    color: #fc6719;
}
.shareholder-content a:hover{
    color: #1961fc;
}
.shareholder-content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    border-radius: 5px;
    background-color: #dbd8d8;
    transform: translateY(-30%);
    overflow: hidden;
    opacity: 0;
    transition: all .5s ease-in-out;
}
.shareholder-item:hover .shareholder-content{
    transform: translateY(0);
    opacity: 1;
}

.small-shareholder{
    padding:0px;
}
.small-shareholder-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.small-shareholder-flex .small-shareholder-item{
    width: 250px;
    margin: 20px;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid rgba(221, 221, 230, 0.993);
}
.small-shareholder-flex .small-shareholder-item img{
    transform-style: preserve-3d;
    transition: all .4s ease-in-out;
}
.small-shareholder-flex .small-shareholder-item:hover img{
    transform: scale(1.2);
}
.small-shareholder-flex .small-shareholder-item .name{
    font-size: 16px;
    color: black;
    margin-top:35px;
}

/* bod */
.bod{
   padding: 0px;
   padding-top: 70px;
   padding-bottom: 70px;
}
.bod-title{
   margin-bottom: 50px;
   font-size: 25px;
   color: #fc6719;
   border-bottom: 2px solid #dbd8d8;
}
.bod-flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.bod-card{
    width: 280px;
    margin: 20px;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px;
    border: 1px solid #f1ebeb;
    transition: all .3s ease-in-out;
}
.bod-card:hover{
    box-shadow: 0 0 10px #eeeded;
    transform: scale(1.1);
}
.bod-card .img{
    width: 100%;
}
.bod-card img{
    width: 150px;
    height: 150px;
    border-radius: 100px;
}
.bod-content{
   padding: 5px 0px;
   text-align: center;
   transition: all .4s ease-in-out;
}
.bod-content h5{
   font-size: 16px;
   color: #fc6719;
   font-weight: 700;
   text-transform: uppercase;
   transition: all .4s ease-in-out;
}
.bod-content p{
   text-transform: uppercase;
}
.bod-content a{
    font-size: 20px;
    color: #ec641b;
}


/* cambodia */
.subsidiary{
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #dbd8d8;
}
.map img{
    width: 100%;
    height: 450px;
}
.logo img{
    width: 200px;
    height: 200px;
}

.current-location h5{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
}
.current-location .header-location{
    margin-bottom: 30px;
}
.current-location .header-location .img{
    width: 100px;
    height: 60px;
    border: 2px solid #fc6719;
}
.current-location .header-location .img img{
    width: 100%;
    height: 100%;
    padding: 2px;
}
.current-location li:not(:last-child){
    margin-bottom: 20px;
}
.current-location .item{
    display: flex;
    align-items: center;
}
.current-location .item .icon{
    color: white;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 100px;
    font-size: 20px;
    background-color: #fc6719;
}
.current-location .item p{
    padding-left: 20px;
    font-size: 16px;
}

/* leasing */
.leasing{
    padding: 50px 0px;
}
.leasing .img{
    padding: 10px;
    width: 100%;
    height: 100%;
}
.leasing .img img{
    width: 100%;
    height: 100%;
    padding: 2px;
}
.leasing .content{
    padding: 0px 30px;
}
.leasing .content p{
    margin-bottom: 30px;
}
.leasing .content p span{
    color: #fc6719;
    font-weight: bold;
    font-size: 16px;
    padding-right: 10px;
}
.leasing .content p a{
    text-decoration: none;
    color: #fc6719;
}
.leasing .content p a:hover{
    color: #1961fc;
}
.leasing .content p i.fa{
    margin-right: 10px;
    font-size: 18px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: white;
    border-radius: 100px;
    background-color: #fc6719;
}

/* ******************** video-page-item ***************************** */
.video-page{
    padding-top: 40px;
    padding-bottom: 40px;
}
.video-page-title{
    margin-bottom: 20px;
}
.video-page-title h2{
    font-weight: bold;
}
.video-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.video-item{
    width: 360px;
}
.video-item .image{
    width: 100%;
    height: 200px;
    position: relative;
}
.video-item img{
    width: 100%;
    height: 100%;
}
.video-item .btnPlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.video-item .btnPlay i.fa{
    font-size: 25px;
    color: white;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border: 3px solid #fc6719;
    border-radius: 100px;
    background-color: #fc6719;
}
.mfp-hide{
    display: none;
}
.mfp-close{
    color: white;
    overflow: visible;
    cursor: pointer;
    background-color: white;
    border: none;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    box-shadow: none;
}
.iframeVideo{
    position: absolute;
    width: 400px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 102;
    padding: 10px;
    background-color: white;
}
video{
    position: absolute;
    width: 400px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 102;
    padding: 10px;
    background-color: white;
}
.video-content{
    position: relative;
}
.video-content h3{
    font-size: 14px;
    font-weight: bold;
    line-height: 25px;
}
.video-content p{
    font-weight: normal;
}

/* **************** Sign Up ************************* */
.background-signup{
    background-image: url(../img/Background-MSForm-08.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.form{
    position: relative;
    width: 100%;
    max-width: 850px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 20px #dbd8d8;
    z-index: 103;
}
.header-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-form{
    padding: 10px 20px;
    background-color: #ec641b;
}
.header-logo{
    max-width: 220px;
    width: 100%;
}
.header-logo img{
    width: 100%;
}
.header-content{
    color: #fff;
}
.header-content h1{
    margin-bottom: 40px;
}

.body-form{
    padding: 30px;
}
.required span{
    color: #fc6719;
}
.body-form .form-item{
    padding: 20px 0;
}
.body-form .form-item label{
    width: 100%;
    margin-bottom: 10px;
}
.body-form .form-item input{
    width: 100%;
    padding: 10px;
    border-radius: 3px;
    border: none;
    outline: 0px;
    border: 1px solid #dbd8d8;
}
.body-form .form-item span{
    color: #fc6719;
}
.body-form .error{
    color: #fc6719;
    margin-top: 10px;
}
.radio-flex{
    display: flex;
    margin: 0;
}
.radio-flex input{
    width: inherit !important;
}
.radio-flex label{
    width: inherit !important;
}
.radio-flex label:not(:last-child){
    margin-right: 30px;
}
.textarea-input{
    width: 100%;
    min-height: 100px;
    padding: 10px;
    border-radius: 3px;
    border: none;
    outline: 0px;
    border: 1px solid #dbd8d8;
}
.body-form .form-btn{
    text-align: center;
}
.body-form .form-btn button{
    color: #fff;
    padding: 15px 20px;
    border-radius: 3px;
    border: none;
    outline: 0px;
    border: 1px solid #dbd8d8;
    background-color: #fc6719;
    transition: .3s;
}
.body-form .form-btn button:hover{
    background-color: #352626;
}

.footer-form{
    position: relative;
    padding: 30px;
    text-align: center;
    border-top: 1px solid #eeeded;
}
.footer-form p{
    font-size: 12px;
    line-height: 35px;
}

.show-page .relative .w-5{
    width: 20px;
    height: 20px;
}
.show-page .py-2{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.show-page .px-4{
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin: 2px;
}
.shadow-sm{
    box-shadow: none !important;
}
.cursor-default{
    color: #fa6119 !important;
}

/* Apply Job */
.apply-job{
    width: 800px;
    margin: 2% auto;
}
.header-apply{
    padding: 20px 0;
}
.header-apply h5{
    font-size: 30px;
    font-weight: bold;
}
.header-apply strong{
    color: #ec641b;
}
.form-apply{
    padding: 50px;
    border: 1px solid #dbd8d8;
}
.form-item{
    margin-bottom: 15px;
}
.form-item .read-only{
    pointer-events: none;
    text-decoration: none;
    background-color: #dbd8d8;
}
.form-item .form-input{
    width: 100%;
    border: 1px solid #dbd8d8;
    outline: 0px;
    border-radius: 2px;
    padding: 8px 10px;
}

/* *************** CV Submit **************************** */
.cv-submit{
    width: 800px;
    margin: auto;
    margin-bottom: 40px;
}
.cv-submit .cvsubmit-title{
    font-size: 25px;
    color: #ec641b;
    padding: 20px 0;
    border-top: 1px solid #eeeded;
}
.cv-submit .form-item.flex{
    display: flex;
}
.cv-submit .form-item span{
    margin: 10px;
}
.cv-submit .form-group{
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
}
.cv-submit .form-item .form-group label{
    width: 100%;
    display: block;
}
.cv-submit .form-item .form-group label span{
    color: #ec641b;
}
.cv-submit .form-group .form-input{
    padding: 30px 10px;
    width: 100%;
}
.cv-submit .form-group .upload-file{
    width: 30%;
    padding: 13px;
    height: 50px;
    cursor: pointer;
    margin-bottom: 20px;
    background-color: #f8f3f3;
}
.cv-submit .form-group input{
    border-radius: 5px;
}
.cv-submit .form-group textarea{
    width: 100%;
    height: 160px;
    border-radius: 5px;
}
.cv-submit .form-group button{
    width: 100%;
    padding: 20px 0;
    border-radius: 100px;
    border: none;
    outline: 0px;
    background-color: #ec641b;
    transition: .4s;
}
.cv-submit .form-group button:hover{
    opacity: .9;
}

/* ******************* banner sticky ******************** */
.sticky-banner .item_0{
    position:fixed;
    left:calc((100% - 1200px)/2 - 88px);
    top: 5vh;
    margin:auto
}
.sticky-banner .item_1{
    position:fixed;
    right:calc((100% - 1200px)/2 - 88px);
    top: 5vh;
    margin:auto
}
.sticky-banner img{
    width: 100%;
    height: 1000%;
}

@media screen and (max-width: 1444px){
    .header-form{
        padding: 10px 20px;
        background-color: #ec641b;
    }
    .header-logo{
        max-width: 160px;
        width: 100%;
    }
    .form{
        width: 100%;
        max-width: 700px;
        margin: 20px auto;
        background-color: #fff;
        box-shadow: 0 0 20px #dbd8d8;
        z-index: 103;
    }
    .header-content h1,
    .header-content h2{
        font-size: 22px;
    }
}

@media screen and (max-width: 400px){
    .header .logo{
        width: 110px;
        height: 110px;
    }
    .btn_toggle{
        display: block;
    }
    .header .nav-menu{
        display: block;
        position: absolute;
        top: 15%;
        width: 100%;
        height: auto;
        padding: 30px 10px;
        background-color: #fc6719;
        transform: translateX(-100%);
        transition: all .4s ease-in-out;
    }
    .open-twoview:hover .sub-menu{
        opacity: 1;
        visibility: visible;
    }
    
    .header .nav-menu.active{
        transform: translateX(0);
    }
    .header .nav-menu.sticky{
        top: 100%;
    }
    .header .nav-menu li{
        padding: 15px 0px;
    }
    .header .nav-menu li:not(:last-child){
        border-bottom: 1px solid white;
    }
    .header .nav-menu li a{
        display: block;
    }
    .language,
    a.language-item{
        margin-top: 3px;
        padding: 0px 2px;
        display: block;
    }
    a.language-item span{
        font-size: 12px;
    }
    .language-item img{
        width: 20px;
        height: 15px;
    }

    .sub-menu{
        opacity: 1;
        visibility: visible;
        position: absolute;
        left: 0;
        top: 40%;
        width: 100%;
        padding: 10px 10px;
        background-color: #fc6719;
        transform: translateX(-100%);
        transition: all .6s ease-in-out;
    }
    
    .sub-menu-sub{
        position: absolute;
        top: 75%;
        left: 0;
        width: 100%;
        padding: 10px 10px;
        background-color: #fc6719;
        display: block;
        display: none;
        transition: all .4s ease-in-out;
    }
    .open-twoview .sub-menu.active{
        transform: translateX(0);
    }
    .open-treeview .sub-menu-sub.active{
        display: block;
    }

    .owl-nav button.owl-prev{
        position: absolute;
        left: 10px;
        top: 30%;
        width: 30px;
        height: 30px;
        text-align: center;
        background-color: #fc6719 !important;
        border: none;
        outline: 0px;
        border-radius: 100px;
        color: white;
    }
    .owl-nav button.owl-next{
        position: absolute;
        right: 10px;
        top: 30%;
        width: 30px;
        height: 30px;
        text-align: center;
        background-color: #fc6719 !important;
        border: none;
        outline: 0px;
        border-radius: 100px;
    }
    .owl-nav button span{
        color: white;
        font-size: 20px;
    }
    .owl-carousel{
        height: 150px;
    }
    .owl-carousel .item{
        width: 100%;
    }
    .section-banner .banner-text{
        padding: 10px 5px;
    }
    .section-banner .banner-text .banner-paragraph{
        font-size: 12px;
        padding: 0px 0px;
        margin-bottom: 10px;
    }
    .banner-btn a{
        margin-top: 5px;
        font-size: 12px;
        padding: 5px 5px;
        border: 1px solid white;
    }
    .section-banner .banner-img{
        width: 100%;
        height: 130px;
    }
    

    /* home page */

    .about{
        padding: 30px 0px;
    }
    .about .about-us-title{
        font-size: 20px;
        padding: 10px;
    }
    .about .about-us-title p{
        font-size: 12px;
        line-height: 25px;
        font-weight: 600;
    }
    .about-us{
        padding: 50px 0px;
    }

    .title-video a{
        font-size: 14px;
    }
    .video-card{
        height: 250px;
        margin-bottom: 20px;
    }

    
    .map img{
        width: 100%;
        height: 150px;
    }

    .product-title{
        padding: 0px;
    }
    .product-title p{
        font-size: 14px;
    }
    .product-title img{
        width: 120px;
        height: 60px;
    }
    .product-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .card-product{
        height: 480px;
        margin-bottom: 20px;
    }
    .card-product .img img{
        width: 150px;
    }
    .card-product h3{
        padding: 5px;
        font-size: 16px;
    }
    .card-product p{
        line-height: 20px;
        font-size: 12px;
    }
    
    
    .who-title{
        padding: 0px;
    }
    .who-title p{
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 50px;
    }
    .who-title img{
        width: 100px;
        height: 60px;
    }
    .who-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .who-title p{
        font-size: 14px;
    }
    .who-we-card{
        width: 100%;
        height: 230px;
        margin-bottom: 20px;
    }
    .who-we-serve .content{
        top: 10%;
    }
    .who-we-serve .content h5{
        font-size: 20px;
        font-weight: 800;
    }
    .who-we-serve .content p{
        font-size: 14px;
    }
    
    .new-event-title{
        padding: 0px;
    }
    .new-event-title img{
        width: 100px;
        height: 60px;
    }
    .new-event-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .new-event-title p{
        font-size: 14px;
        font-weight: 600;
    }
    .event-card{
        padding: 20px 10px;
    }
    .event-card a{
        font-size: 14px;
    }
    .event-card .description{
        font-size: 12px;
    }

    /* media page */
    .videos-title{
        padding: 0px;
    }
    .videos-title p{
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 10px;
    }
    .videos-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .videos-box .videos-item{
        flex: 40%;
        height: 190px;
        margin: 5px;
    }
    .videos-box .videos-item .content{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 5px;
        text-align: center;
    }
    .videos-box .videos-item .content h5{
        font-size: 12px;
    }
    .videos-box .videos-item .icon{
        left: 32%;
        top: 20%;
    }
    .videos-box .videos-item .icon i.fa{
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    
    /*desviptio*/
    .desviption .desviption-box .img{
        display: none;
    }
    .desviption .desviption-box p{
        font-size: 14px;
        padding: 0px;
    }

    /* bod */
    .bod-title{
       font-size: 20px;
    }
    .bod-content h5{
       font-size: 12px;
    }
    .bod{
        padding: 0px;
        padding-top: 70px;
        padding-bottom: 70px;
     }
    .bod-card{
        width: 130px;
        margin: 5px;
        padding: 0;
    }
    .bod-card img{
        width: 80px;
        height: 80px;
        border-radius: 100px;
    }

    .gellery{
        padding-bottom: 50px;
    }
    .gellery-title{
        padding: 0px;
    }
    .gellery-title p{
        font-size: 14px;
        line-height: 25px;
    }
    .gellery-title img{
        width: 200px;
        height: 100px;
    }
    .gellery-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .gellery-box{
        display: flex;
        flex-wrap: wrap;
    }
    .gellery-box .gellery-item{
        flex: 50%;
        margin: 10px;
        overflow: hidden;
        position: relative;
    }
    .gellery-box .gellery-item .content h6{
        font-size: 16px;
    }
    .gellery-box .gellery-item .content p{
        font-size: 12px;
    }

    /* login and register page */
    .form-login-register{
        padding-top: 40px;
        padding-bottom: 40px;
        background-color: rgba(226, 226, 229, 0.993);
    }
    .form-login-register form{
        padding: 10px;
        margin-bottom: 20px;
    }
    .form-login-register .message{
        padding: 10px 0px;
        color: rgb(221, 16, 67);
    }
    .form-login-register .form-title{
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 0px;
    }
    .form-login-register .btnLogin{
        padding: 5px 10px;
        font-size: 12px;
    }
    .form-login-register .d-flex{
        display: block;
    }
    .form-login-register .form-group input{
        width: 100%;
        height: 30px;
        border: none;
        border-radius: 2px;
        padding-left: 5px;
        outline: 0px;
        border: 1px solid rgba(210, 210, 214, 0.993);
        background-color: white;
    }

    /* product */
    .propostion-title{
        padding: 0px;
    }
    .propostion-title p{
        font-size: 14px;
        line-height: 28px;
        margin-bottom: 80px;
    }
    .propostion-title img{
        width: 120px;
        height: 60px;
    }
    .propostion-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .propostion-card{
        width: 100%;
        height: 420px;
        margin-bottom: 20px;
    }
    .propostion-card .img img{
        width: 150px;
        height: 140px;
    }
    .propostion-card .title{
        font-size: 18px;
        padding: 20px 0px;
        font-weight: 800;
        border-bottom: 2px solid #fc6719;
    }

    /* event */
    .new_and_event_title{
        padding: 0px;
    }
    .new_and_event_title img{
        width: 120px;
        height: 60px;
    }
    .new_and_event_title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .new_and_event_title p{
        font-size: 14px;
        line-height: 28px;
    }
    .latest_new{
        padding-bottom: 10px;
    }
    .latest_new .title{
        font-size: 14px;
        font-weight: 800;
    }
    .latest_item{
        display: block;
        padding: 10px;
    }
    .content-name{
        font-size: 14px;
        font-weight: 700;
    }
    .latest_item .content p{
        font-size: 12px;
    }
    .latest_item .content a.btnSee{
        padding: 5px 10px;
    }
    .latest_item .img{
        padding: 0px;
        width: 100%;
        height: auto;
        margin-top: 30px;
    }
    
    /* customer */

    .we-support-title{
        color: black;
        text-align: center;
        padding: 0px;
    }
    .we-support-title img{
        width: 140px;
        height: 70px;
    }
    .we-support-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .we-support-title p{
        font-size: 14px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .we-support-card{
        width: 100%;
        height: auto;
        padding: 20px;
    }
    .we-support-card .title{
        font-size: 20px;
        font-weight: 800;
    }
    .we-support-card ul li{
        margin-bottom: 10px;
    }
    .how-it-work{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .how-it-title{
        padding: 0px;
    }
    .how-it-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .how-it-title p{
        font-size: 14px;
        margin-bottom: 40px;
    }
    .how-it-title img{
        width: 140px;
        height: 70px;
    }
    .how-it-card{
        padding: 0px;
    }
    .how-it-card p{
        font-size: 16px;
    }
    .how-it-card .title{
        font-size: 20px;
        font-weight: 800;
    }
    
    /* event detial */

    .event_detail_box{
        width: 100%;
        padding: 20px;
    }
    .event_detail_item .title{
        font-size: 16px;
        line-height: 25px;
    }
    .event_detail_item .img{
        width: 100%;
        height: 160px;
        overflow: hidden;
    }
    .event_detail_item .date{
        padding: 0px;
    }

    /* career */

    .jobs{
        padding: 50px 0;
    }
    .job-name a{
        font-size: 16px;
    }
    .jobs-li .content-flex a{
        font-size: 12px;
        padding: 6px 16px;
    }
    .jobs-li .content-flex p{
        font-size: 12px;
    }
    .footer-jobs h5{
        font-size: 20px;
    }

    .career-detail .job-detail-name h4{
        font-size: 20px;
    }
    .career-detail .job-detail-name h6{
        font-size: 14px;
        padding: 0px 0;
    }
    .career-detail{
        width: 100%;
    }

    .about-career .content .title{
        font-size: 20px;
        font-weight: 800;
    }
    .intruction .introduct-title{
        text-align: left;
    }
    .intruction .introduct-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .intruction .introduct-title p{
        padding: 0px;
        font-size: 14px;
    }
    .job-title{
        padding: 0px;
    }
    .job-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .job{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .job-at-item .job-name a{
        font-size: 18px;
        font-weight: 800;
    }
    .description-job p .request-from,
    .description-job p .request-date,
    .description-job p .job-id{
        font-size: 14px;
    }
    .description-job p .date,
    .description-job p .id,
    .description-job p .name-request{
        font-size: 12px;
        padding: 0px 10px;
    }
    .description-job p .bar{
        font-size: 12px;
        padding: 0px;
    }

    /* job detail */

    .banner-job .title-job{
        font-size: 20px;
        font-weight: 800;
    }
    .banner-job p{
        font-size: 14px;
    }
    .description-box .item{
        padding: 10px;
    }
    .description-box .item h4{
        font-size: 16px;
        font-weight: 800;
    }
    .title-form{
        font-size: 16px;
        font-weight: 800;
    }
    .form-group:not(:last-child){
        margin-bottom: 10px;
    }
    .form-group label{
        margin: 5px;
    }
    .form-group input[type="file"],
    .form-group input[type="text"]{
        height: 30px;
    }

    .life-to-enjon{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .life-title{
        padding: 0px;
    }
    .life-title .title{
        font-size: 20px;
        font-weight: 800;
    }

    .smart-living-title{
        padding: 0px;;
    }
    .smart-living-title img{
        width: 150px;
        height: 80px;
    }
    .smart-living-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .smart-living-product .product-item{
        height: 250px;
        margin-bottom: 10px;
    }
    .smart-living-product .product-item .content{
        font-size: 30px;
    }
    .smart-living-product .product-item .content p span{
        font-size: 30px;
    }

    .partner-title{
        padding: 0px;
    }
    .partner-title .title{
        font-size: 20px;
        font-weight: 800;
    }
    .partner{
        margin-top: 30px;
    }
    .partner-item{
        display: flex;
        align-items: flex-start;
        padding: 10px;
    }
    .partner-item img{
        width: 50px;
        height: 35px;
    }
    .partner-item .content{
        padding-left: 10px;
    }
    .partner-item .content p{
        font-size: 12px;
    }

    /* promotion page */

    .promotion-title{
        padding: 0px;
    }
    .promotion-title .title{
        font-size: 14px;
        font-weight: 800;
    }
    .promotion-title small span,
    .promotion-title small{
        font-size: 14px;
    }
    .promotion-title ul li{
        font-size: 12px;
    }

    .congradulation{
        padding-top: 0px;
    }
    .congradulation-title{
        padding: 0px;
    }
    .congradulation-title .title{
        font-size: 14px;
        font-weight: 800;
    }
    .congradulation-title small{
        font-size: 14px;
    }
    .congradulation h5{
        margin-top: 20px;
        font-size: 16px;
    }
    .congradulation h6{
        font-size: 14px;
    }
    .congradulation i.fa{
        font-size: 14px;
    }
    
    .shareholder{
        width: 100%;
        padding: 10px;
        
    }
    .shareholder-title{
        text-align: left;
        padding: 0px;
        margin-bottom: 10px;
        border-bottom: 1px solid #dbd8d8;
    }
    .shareholder-title h4{
        font-size: 20px;
    }
    .shareholder-grid{
        display: block;
        margin: 2px;
    }
    .shareholder-item{
        width: 100%;
        margin: 0px;
        margin-bottom: 15px;
    }
    .shareholder-item .img{
        height: 210px;
    }
    .shareholder-content{
        padding: 10px;
        color: black;
        position: relative;
        background-color: rgb(230, 230, 230);
        transform: translateX(0);
        opacity: 1;
        transition: all .5s ease-in-out;
    }
    .shareholder-item:hover .shareholder-content{
        color: white;
        background-color: #fc6719;
    }
    .shareholder-content a{
        font-size: 12px;
    }

    .small-shareholder{
        padding: 40px 0;
    }
    .small-shareholder-flex .small-shareholder-item{
        width: 130px;
        margin: 5px;
        padding: 10px;
    }
    .small-shareholder-flex .small-shareholder-item img{
        width: 100%;
    }

    /* leasing */
    .leasing .content{
        padding: 10px 0px;
    }
    .leasing .content p{
        margin-bottom: 15px;
    }
    .leasing .content p i.fa{
        margin-right: 0px;
        font-size: 12px;
        width: 20px;
        height: 20px;
        line-height: 20px;
    }

    /* ******************** video-page-item ***************************** */
    .video-page-title h2{
        font-size: 18px;
    }
    .video-item{
        width: 100%;
    }
    .video-item:not(:last-child){
        margin-bottom: 20px;
    }
    .iframeVideo{
        position: absolute;
        width: 300px;
        height: 200px;
    }
    video{
        position: absolute;
        width: 300px;
        height: 200px;
    }
    .video-content h3{
        font-size: 14px;
    }

    /* footer */
    .logo-footer{
        display: none;
    }

    /* **************** Sign Up ************************* */
    .form{
        max-width: 1200px;
        margin: 0px auto;
    }
    .header-form{
        padding: 10px 10px;
    }
    .header-logo{
        max-width: 100px;
        width: 100%;
    }
    .header-content{
        color: #fff;
    }
    .header-content h1{
        font-size: 14px;
        margin-bottom: 0px;
    }
    .header-content h2{
        font-size: 14px;
    }
    .body-form{
        padding: 20px;
    }
    .body-form .form-item{
        padding: 10px 0;
        font-size: 12px;
    }
    .body-form .form-item label{
        margin-bottom: 0px;
    }
    .body-form .form-item input{
        padding: 8px;
    }
    .radio-flex{
        display: flex;
        margin: 0;
    }
    .radio-flex input{
        width: inherit !important;
    }
    .radio-flex label{
        width: inherit !important;
    }
    .textarea-input{
        min-height: 70px;
    }
    .body-form .form-btn{
        text-align: center;
    }
    .body-form .form-btn input{
        padding: 10px 10px;
    }
    .footer-form{
        padding: 20px;
    }
    .footer-form p{
        line-height: 25px;
    }

    /* *************** CV Submit **************************** */
    .cv-submit{
        width: 100%;
        margin-bottom: 20px;
    }
    .cv-submit .cvsubmit-title{
        font-size: 18px;
    }
    .cv-submit .form-item span{
        margin: 2px;
    }
    .cv-submit .form-group .form-input{
        padding: 20px 10px;
    }
    .cv-submit .form-group .upload-file{
        width: 100%;
    }
    .cv-submit .form-group textarea{
        height: 80px;
    }
    .cv-submit .form-group button{
        padding: 20px 0;
    }
}
