/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	font-size: 14px;
    min-width: 320px;
}
.clear {
    clear: both;
}
strong { font-weight: bold; }
.uppercase {
    text-transform: uppercase;
}
.bold {
    font-weight: bold;
}
.hidden {
    display: none;
}
.m-color {
	color: #d54733 !important;
}
.m-bg-color {
    background: #d54733 !important;
}
a:hover {
    color: #d54733;
}
.pos-relative {
    position: relative;
}
.mg-bot5 {
    margin-bottom: 5px;
}
.mg-bot10 {
    margin-bottom: 10px;
}
.mg-bot15 {
	margin-bottom: 15px;
}
.mg-bot20 {
    margin-bottom: 20px;
}
.mg-bot25 {
    margin-bottom: 25px;
}
.mg-bot30 {
    margin-bottom: 30px;
}
.mg-bot35 {
    margin-bottom: 35px;
}
.pad15 {
	padding: 15px;
}
.pad10 {
	padding: 10px;
}
.f-left { float: left; }
.f-right { float: right; }
.pos-relative {
	position: relative;
}
a {
    color: #333;
}
a:hover {
	text-decoration: none;
}
#m-header {
    height: 62px;
}
#m-header .m-logo {
    padding: 5px 0px;
}
#m-header .m-h-search {
    margin-top: 14px;
    /* update 30/07/2018 change float left thành float right */
    float: right;
    /* update 30/07/2018 change float left thành float right */
    width: 240px;
    position: relative;
}
#m-header .m-h-search .form-control {
    border: 0px !important;
    box-shadow: initial !important;
    background: #f1f1f1;
    border-radius: initial !important;
    padding: 6px 32px 6px 12px !important;
}
#m-header .m-h-search i.m-pos {
    position: absolute;
    right: 10px;
    top: 10px;
}
#m-header .m-h-languge {
    margin-top: 23px;
    padding-left: 10px;
    border-left: 1px solid #ccc;
    margin-left: 10px; 
    /* update 30/07/2018 change float left thành float right */
    float: right;
    /* update 30/07/2018 change float left thành float right */
}
#m-header .m-h-languge a img.img-lang {
    float: left;
}
#m-header .m-h-languge a .txt-lang {
    float: left;
    margin-left: 5px;
    margin-top: 2px;
    font-weight: bold;
}
#m-menu {
    background: #d54733;
    min-height: 46px;
    font-size: 15px;
}

    #m-menu .i-menu-mini {
        color: #fff;
        line-height: 46px;
    }

    #m-menu .menu {
        margin: 0px auto;
        line-height: 46px;
    }

        #m-menu .menu li {
            margin: 0px;
            list-style: none;
            position: relative;
        }

        #m-menu .menu a {
            transition: all linear 0.15s;
            color: #919191;
            text-decoration: none;
        }

        #m-menu .menu li:hover > a,
        #m-menu .menu .current-item > a {
            text-decoration: none;
            color: #fff;
        }

        #m-menu .menu .arrow {
            font-size: 11px;
            line-height: 0%;
        }

        #m-menu .menu > ul > li {
            float: left;
            display: inline-block;
            position: relative;
        }

            #m-menu .menu > ul > li > a {
                margin-top: 14px;
                display: inline-block;
                color: white;
                padding-left: 15px;
                padding-right: 15px;
                border-left: 1px solid #fff;
                text-transform: uppercase;
                height: 18px;
                line-height: 18px;
            }

            #m-menu .menu > ul > li:first-child > a {
                border-left: none !important;
            }

    /* ✅ FIXED SUB-MENU STYLE */
    #m-menu .sub-menu {
        width: 200%;
        position: absolute;
        top: 100%;
        left: 0px;
        opacity: 0;
        pointer-events: none;
/*        transform: translateY(10px);*/
        transition: all 0.2s ease;
        box-shadow: 0px 2px 3px rgba(0,0,0,0.2);
        background: #d54733;
        z-index: 99;
    }

    /* ✅ SHOW SUB-MENU WHEN HOVER ON <a> */
    #m-menu .menu > ul > li > a:hover + .sub-menu,
    #m-menu .menu > ul > li:hover > .sub-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0px);
    }

    #m-menu .sub-menu li {
        font-size: 16px;
    }

        #m-menu .sub-menu li a {
            padding: 10px 15px;
            display: block;
            color: #fff;
            line-height: initial;
        }

            #m-menu .sub-menu li a:hover,
            #m-menu .sub-menu .current-item a {
                background: #ac3322;
                color: #fff;
            }


#m-sukiennoibat {
    background: url(../img/bg-event.png) no-repeat;
    background-size: contain;
}

#m-sukiennoibat .sub-news .sub-news-line {
    border-top: 1px dashed #333;
    border-bottom: 1px dashed #333;
    padding: 15px 0px;
    margin-bottom: 15px;
}
#m-sukiennoibat .sub-news .sub-news-line .item-sub-news h2 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 18px;
}
#m-sukiennoibat .sub-news .sub-news-line .item-sub-news h2 a {
    color: #d54733;
}
.home-cut-sub-news {
    height: 22px;
    width: 100%;    
}
#m-sukiennoibat .sub-event .sub-event-line img.img-sn {
    width: 100%;
    height: 200px;
}
.title {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
}
#m-sukiennoibat img.img-sknb {
    width: 100%;
    height: 175px;
}
#m-sukiennoibat h3 {
    font-size: 15px;
    margin-top: 10px; 
    font-weight: bold;
}
.home-cut-title-news {
    height: 20px;
    line-height: 20px;
    width: 100%;
}
.btn-md {
    border-radius: 0px !important;
}
#m-tintuc img.img-tt {
    width: 100%;
    height: 220px;
}
#m-tintuc h3 {
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}
#m-video .frame-video {
    color:#fff;
    position: absolute;
    bottom: 5%;
    left: 20%;
    padding: 10px 15px;
}
#m-video .frame-video h3 {
    font-size: 25px;
    margin-bottom: 5px;
}
#m-video img.img-vsk {
    background-size: contain;
}
#m-khachhangnoi .frame-customer {
    margin-bottom: 30px;
    margin-top: 30px;
}
#m-khachhangnoi .customer-name {
    font-weight: bold;font-size: 20px;line-height: 24px;margin-bottom: 15px;
}
#m-khachhangnoi .customer-comment {
    line-height: 22px;
    margin-bottom: 15px;
}
#m-khachhangnoi .comma {
    font-size: 25px;font-family: Arial;
}
#m-khachhangnoi .carousel-indicators .active {
    background: #d54733;
    border: initial !important;
}
#m-khachhangnoi .carousel-indicators {
    bottom: 0px;
}
#m-khachhangnoi .carousel-indicators li {
    border:  1px solid #222;  
}
#m-kinhnghiem .carousel-control .glyphicon-arrow-left,
#m-kinhnghiem .carousel-control .glyphicon-arrow-right, 
#m-kinhnghiem .carousel-control .icon-next, 
#m-kinhnghiem .carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
}
#m-kinhnghiem .frame-experience {
    color: #222;
    position: absolute;
    top: 20%;
    left: 20%;
    padding: 20px;
    background: rgba(255,255,255,0.6);
    width: 600px;
}
#m-kinhnghiem .frame-experience h3 {
    font-size: 25px;
    margin-bottom: 15px;
}
#m-kinhnghiem .frame-experience-descript {
    line-height: 22px;
    text-align: left;
    margin-bottom: 10px;
}
.home-cut-descipt {
    width: 100%;
    height: 65px;
}
#footer {
    background: #f1f1f1;
    padding-top: 20px;
}
#footer ul.footer-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
#footer ul.footer-menu li {
    float: left;    
    border-right: 1px solid #ccc;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 10px;
    padding-left: 10px;
}
#footer ul.footer-menu li:first-child {
    padding-left: 0px;
}
#footer ul.footer-menu li a {
    display: inline-block;
    color: #222;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
}
#footer ul.footer-menu li:last-child {
    border-right: initial;
}
#footer ul.footer-menu li a:hover {
    color: #d54733;
}
#footer .connect-us div:first-child {
    margin-right: 10px;
    padding-top: 10px;
}
#footer .connect-us div:nth-child(2) {
    margin-right:5px;
}
#copyright {
    height: 40px;
    line-height: 40px;
    text-align: center;
}
#m-breadcrumb {
    background: #f5f5f5;
}
#m-breadcrumb .breadcrumb {
    padding: initial;
    border-radius: 0px !important;
    height: 35px;
    line-height: 35px;
    margin-bottom: 0px;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#m-news-detail {
    padding-top: 30px;
    padding-bottom: 30px;
}
#m-news-detail .news-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    /* update 30/07/2018 tăng line-height 24 lên thành 28 */
    line-height: 28px;
    /* update 30/07/2018 tăng line-height 24 lên thành 28 */

}
#m-news-detail .news-descript {
    border-bottom: 1px dashed #ccc;
    border-top: 1px dashed #ccc;
    padding-top: 15px;
    padding-bottom:  15px;
    line-height: 22px;
    text-align: justify;
    margin-bottom: 15px;
}
#m-news-detail .news-date-create {
    margin-bottom: 10px;
}
#m-news-detail .news-content {
    line-height: 22px;
    text-align: justify;
    margin-bottom: 30px;
}
    #m-news-detail .news-content img { max-width:100%; height:auto !important;
    }
    #m-news-detail .news-content h2 { font-weight:bold; clear:both; font-size:16px; padding:10px 0;
    }
#m-news-detail .news-content .news-content-note {
    padding: 5px 10px;
    background: #f5f5f5;
    margin-bottom: 10px;
    border-left: 3px solid #d54733;
}
#m-news-detail .news-content img.img-news-detail {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}
#m-news-detail .news-tag {
    margin-bottom: 30px;
}
#m-news-detail .news-tag .group.tag-sidebar .list ul {
    padding-left: 0;
    margin-bottom: 0;
}
#m-news-detail .news-tag .group.tag-sidebar .list ul li {
    list-style: none;
    float: left;
}
#m-news-detail .news-tag .group.tag-sidebar .list ul li a {
    text-decoration: none;
    padding: 4px 10px;
    display: block;
    border: 1px dotted #c8c8c8;
    margin: 3px;
    transition: all .2s;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
}
#m-news-detail .news-tag .name {
    font-weight: 700;
    float: left;
    padding: 3px 0;
    margin-right: 15px;
}
#m-news-detail .form-contact .title, #m-contact .form-contact .title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}
#m-news-detail .form-contact label, #m-contact .form-contact label {
    margin-bottom: 5px; 
}
#m-news-detail .form-contact .line ,#m-contact .form-contact .line {
    padding-bottom: 3px;border-bottom: 2px solid #d54733;
}
#m-news-detail .form-contact .form-control, #m-contact .form-contact .form-control {
    margin-bottom: 5px; 
    border-radius: 0px !important;
}
#m-news-detail .news-sidebar-right .item-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    color: #d54733;
}
#m-news-detail .news-related .title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
}
#m-news-detail .news-related .line {
    padding-bottom: 3px;border-bottom: 2px solid #d54733;
}
#m-news-detail .news-related ul.list li {
    height: 25px;
    word-wrap: break-word;
}
#m-news-detail .news-related  ul.list li a {
    color: #333;
    margin: 5px 0 10px 0 !important;
    display: block;
    list-style: none;
    background: url(../img/circle.png) no-repeat left top;
    padding-left: 20px;
    line-height: 14px;
}
.detail-cut-title {
    height: 38px;
    line-height: 18px;
}
#m-news-detail .news-sidebar-right .col-lg-8 {
    padding-left: 0px; 
}
#m-news-detail .news-sidebar-right .item-news {
    border-bottom: 1px dashed #ccc; 
    margin-bottom: 10px;
    padding-bottom: 10px;
}
#m-news-detail .news-sidebar-right h3 {
    text-align: justify;
    font-weight: bold;
}
#m-news-detail .news-sidebar-right img.img-st {
    width: 100%;
    height: 50px;
}
#m-news-detail .news-sidebar-right hr {
    margin-top: 15px;
    margin-bottom: 15px;
}
#m-news-detail .news-sidebar-right img.img-stnb {
    width: 100%;
    height: 165px;
    margin-bottom: 10px;
}
img.img-map {
    width: 100%;
    height: 450px;
}
#m-introduce .introduce-content {
    line-height: 20px;
    text-align: center;
}
#m-introduce .introduce-content .p {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 30px;
    font-size: 16px;
}
#m-introduce .introduce-content .p-img {
    margin-bottom: 15px;
}
#m-introduce .introduce-content .p-text {
    padding: 15px;
    color: #000;
    margin: 15px 30px;
    font-size: 15px;
    border-radius: 5px;
    background: linear-gradient(to right, #D9F2FF , #A3B5BF);
}
#m-introduce img { max-width:100%; height:auto
}
/* update 30/07/2018 */
.sub-event-f {
    position: absolute;
    bottom: 0px;
    padding: 0px 10px 10px 10px;
    background: rgba(255,255,255,0.7);
    width: 100%;
    font-weight: bold;
}
/* update 30/07/2018 */

#m-slideshow .frame {
    color:#fff;
    position: absolute;
    top: 20%;
    left: 20%;
    padding: 30px 45px;
    background: rgba(50,50,50,0.6);
}
#m-slideshow .frame h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

#m-slideshow .frame a {
    color:#FFF;
    font-size: 35px;
}

.gioithieu {
    font-size: 16px;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
    padding-top: 10px;
}
.nd-chuongtrinhtour img {
    width: 100% !important;
}

.news-detail .social {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

    .news-detail .social .facebook {
        float: left;
        margin-right: 20px;
    }

    .news-detail .social .google {
        float: left;
        margin-top: 5px;
    }

.tags {
    font-size: 14px;
}

    .tags .name {
        font-weight: 700;
        float: left;
        padding: 3px 0;
        margin-right: 15px;
    }

        .tags .name:before {
            margin-right: 5px;
        }

    .tags .list ul {
        padding-left: 0;
        margin-bottom: 0;
    }

        .tags .list ul li {
            list-style: none;
            float: left;
        }

            .tags .list ul li a {
                color: #111;
                text-decoration: none;
                padding: 0 15px;
                display: block;
                border: 1px solid #c8c8c8;
                margin: 3px;
                transition: all .2s;
                -webkit-transition: all .2s;
                -o-transition: all .2s;
                -moz-transition: all .2s;
            }

.group.tag-sidebar {
    overflow: hidden;
}

.sidebar .group {
    margin-bottom: 20px;
    clear: left;
}

.group.tag-sidebar .list ul {
    padding-left: 0;
    margin-bottom: 0;
}

    .group.tag-sidebar .list ul li a {
        color: #111;
        text-decoration: none;
        padding: 5px 5px;
        display: block;
        border: 1px solid #c8c8c8;
        margin: 3px;
        transition: all .2s;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        -moz-transition: all .2s;
    }

    .group.tag-sidebar .list ul li {
        list-style: none;
        float: left;
    }

.hot-news .list {
    margin-top: 15px;
}

    .hot-news .list .item {
        clear: left;
        overflow: hidden;
        margin-bottom: 15px;
    }

        .hot-news .list .item .thumbnail-s {
            max-width: 90px;
            float: left;
            margin-right: 15px;
        }

        .hot-news .list .item img {
            height: 60px;
            width: 80px;
        }

        .hot-news .list .item .title {
            font-size: 14px;
            margin-bottom: 0;
            line-height: normal;
            text-align: justify;
        }

            .hot-news .list .item .title a {
                color: #111;
                text-decoration: none;
                transition: all .2s;
                -webkit-transition: all .2s;
                -o-transition: all .2s;
                -moz-transition: all .2s;
            }
.sidebar-title {
    font-size: 19px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 2px solid #1d90fd;
    text-transform: uppercase;
}

.similar {
    padding: 20px;
    background: #f3f3f3;
    margin: 30px 0;
}

    .similar .name {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.mg-left30 {
    margin-left: 30px;
}

@media only screen and (max-width : 768px) {
    .mg-left30 {
        margin-left: 0px;
    }
}

.tours img {
    width: 100%;
    height: 240px;
}

@media only screen and (max-width : 1200px) {
    .tours img {
        height: 210px;
    }
}

@media only screen and (max-width : 992px) {
    .tours img {
        height: 170px;
    }
}

@media only screen and (max-width : 768px) {
    .tours img {
        height: 190px;
    }
}

.product-box {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
}

.product-box-frame {
    background: rgba(0, 0, 0, 0.4);
    margin: 0 15px;
    height: 35px;
    line-height: 35px;
    color: #fff;
}

.product-box-left {
    float: left;
    padding-left: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.product-box-right {
    float: right;
    padding-right: 10px;
    padding: 6px;
}

.tab-MediaType{

    display:flex;
    justify-items: flex-start;
}

.tab-MediaType-Item {
    margin-right: 10px;
    font-size: 16px;
}

.tab-MediaType-Item_active {
    border-bottom: 2px solid #d54733;
}


.no-padding-left{
    padding-left:0;
}

.breadcrumb-item .active {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
