@font-face {
    font-family: Roboto;
    src: local(Roboto Thin), url(../font/roboto/Roboto-Thin.eot);
    src: url(../font/roboto/Roboto-Thin.ttf) format("truetype");
    font-weight: 200;
}

@font-face {
    font-family: Roboto;
    src: local(Roboto Light), url(../font/roboto/Roboto-Light.eot);
    src: url(../font/roboto/Roboto-Light.ttf) format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: Roboto;
    src: local(Roboto Regular), url(../font/roboto/Roboto-Regular.eot);
    src: url(../font/roboto/Roboto-Regular.ttf) format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: Roboto;
    src: url(../font/roboto/Roboto-Medium.eot);
    src: url(../font/roboto/Roboto-Medium.ttf) format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: Roboto;
    src: url(../font/roboto/Roboto-Bold.eot);
    src: url(../font/roboto/Roboto-Bold.ttf) format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: Montserrat;
    font-weight: normal;
    src: url(../font/Montserrat/Montserrat-Regular.ttf);
}

@font-face {
    font-family: Montserrat;
    font-weight: bold;
    src: url(../font/Montserrat/Montserrat-Bold.ttf);
}


/* root */

:root {
    --main-background: #2A110A;
    --text-color: #2A110A;
    --box-shadow: 0 4px 8px 0 rgb(0 0 0 / 30%);
}

.text-while {
    color: #FFF;
}

.main-skin {
    background: var(--main-background);
}

.flex {
    display: flex;
}

.fixed-list {
    position: fixed;
    top: 56px;
    z-index: 1999;
    background: #fff;
    width: 100%;
}

button {
    outline: none !important;
}

button[type="submit"] {
    cursor: pointer;
}

.background {
    background-size: cover;
    background: no-repeat;
}

.breadcrumb {
    padding: 15px 0px;
    color: #444;
}
.breadcrumb a{
  color: #444;
}
.blue-skin {
    background: #4285f4;
}

.white-skin {
    background: #fff;
}

.algin-center {
    align-items: center;
}


/* end root */


/* header */


/** header mobile **/

#slide-out {
    display: none;
    position: fixed;
    padding: 0px;
    right: 100%;
    z-index: 10000;
    width: 100%;
    top: 46px;
    height: 100%;
}

#slide-out .row {
    height: 100%;
}

#slide-out .slide-left {
    background: #fff;
    height: inherit;
}

#slide-out .slide-left .collapsible,
#slide-out .slide-left .social {
    list-style: none;
    padding-left: 15px;
}

#slide-out .slide-left .social {
    display: flex;
    justify-content: flex-start;
}

#slide-out .slide-left .social li a {
    padding: 0px 10px;
}

#slide-out .slide-left li a {
    color: #000;
    font-size: 18px;
    padding: 15px 0px;
}

#slide-out .slide-right {
    background: rgba(0, 0, 0, 0.5);
    height: inherit;
}

#slide-out .collapsible-body ul {
    list-style: none;
}

#slide-out .collapsible-body ul>li {
    padding: 5px 0px;
}


/** header mobile end **/

.lang-content {
    position: relative;
}

.lang-content a .arrow {
    transform: rotate(0deg);
    transition: 0.5s all;
}

.lang-content a.active .arrow {
    transform: rotate(180deg) translate(-5px);
}

.lang-content .lang-menu {
    position: absolute;
    padding: 2.5px;
    list-style: none;
    margin: 0px;
    display: none;
    z-index: 99;
    background: #fff;
}
.lang-content .lang-menu li a{
    text-decoration: none;
    color: #000;
}
header ul li a {
    font-family: Arial, Helvetica, sans-serif;
}

#navbar .nav-menu {
    border-bottom: 0.5px solid #f2f2f2;
}

#navbar .nav-top {
    background: var(--main-background);
    padding: 5px 0px;
}

#navbar .nav-top span {
    font-size: 13px;
}

#navbar .nav-top .searchAjax .form-group {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

#navbar .nav-top .searchAjax .form-group input[name='title'] {
    padding: 2px 35px 2px 15px;
}

#navbar .nav-top .searchAjax .form-group button[type='submit'] {
    background: transparent;
    border: 0px;
    outline: none;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(10%, -50%);
}

.navbar-nav .nav-link {
    color: #444;
    padding: 0px 15px;
    font-weight: 600;
}

.navbar-nav li a:hover {
    color: #00578a;
}

.navbar-nav>li:hover .menu-child {
    display: block;
}

.navbar-nav .menu-child {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 15px;
    right: -30px;
    display: none;
    background: var(--main-background);
    padding: 10px 0px;
    z-index: 1000;
    box-shadow: 0px 10px 10px -7px #ccc;
    min-width: 150px;
}

.navbar-nav .menu-child.importantwhite {
    background: #fff !important;
}

.navbar-nav .menu-child.importantwhite li a {
    color: var(--text-color);
}

.navbar-nav .menu-child li {
    padding: 5px 5px;
}

.navbar-nav .menu-child li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px;
}

.navbar-nav .menu-child li:hover a {
    color: #fd9308 !important;
    background: #f2f2f2;
}

.button-collapse {
    color: #444 !important;
    font-size: 20px;
}

.navbar-fixed-top {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 10000;
}

.button-close-collapse {
    color: #000 !important;
    position: absolute;
    top: 15px;
    right: 25px;
}


/* header end */


/*body*/


/**home**/

#slideHome .items .content {
    background: rgba(185, 118, 0, 0.6);
    z-index: 1000;
    text-align: center;
}

#slideHome .owl-next,
#slideHome .owl-prev {
    position: absolute;
    top: 30%;
    color: #fff;
    background: rgba(185, 118, 0, 0.6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border: none;
}

#slideHome .owl-next {
    right: 15px;
}

#slideHome .owl-prev {
    left: 15px;
}

#slideHome .items .content h2 {
    text-transform: uppercase;
    color: #fff;
}

#home-about {
    margin: 30px 0px;
}

.title-uppercase {
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: Montserrat;
    font-weight: bold;
    position: relative;
    color: var(--text-color);
}

#doitac .title-uppercase {
    margin-bottom: 10px;
    margin-top: 35px;
}

.detail {
    text-align: center;
}

#slide-about .slide {
    height: 297px;
    overflow: hidden;
}

#news {
    margin-bottom: 25px;
}

#gallery .background {
    background-image: url('../img/background-pic.png');
}

#gallery .owl-carousel .owl-next,
#gallery .owl-carousel .owl-prev,
#home-khachhang .owl-carousel .owl-prev,
#home-khachhang .owl-carousel .owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    background: transparent;
    color: #FFF;
    font-size: 50px;
}

#home-khachhang .owl-carousel .owl-prev,
#home-khachhang .owl-carousel .owl-next {
    color: var(--text-color);
}
.logo img{
    width: 100%;
}
@media (max-width: 900px) {
    #gallery .owl-carousel .owl-prev,
    #home-khachhang .owl-carousel .owl-prev {
        left: 0px;
    }
    #gallery .owl-carousel .owl-next,
    #home-khachhang .owl-carousel .owl-next {
        right: 0px;
    }
}

@media (min-width: 900px) {
    #gallery .owl-carousel .owl-prev,
    #home-khachhang .owl-carousel .owl-prev {
        right: 100%;
    }
    #gallery .owl-carousel .owl-next,
    #home-khachhang .owl-carousel .owl-next {
        left: 100%;
    }
    #home-about .detail {
        margin-top: 15px;
    }
    #slide-about .slide,
    .home-about .content {
        height: 400px;
        overflow: hidden;
    }
    #slide-about .slide img {
        height: 100%;
    }
}

.detail a {
    display: inline-block;
    padding: 10px 15px;
    border: none;
    background: var(--main-background);
    border-radius: 30px;
    margin: 15px 0px;
    text-decoration: none;
    color: #fff;
    outline: none;
    text-transform: uppercase;
    font-weight: bold;
}

.contact-btn {
    display: inline-block;
    background: var(--main-background);
    text-transform: uppercase;
    padding: 2.5px 10px;
    color: #FFF!important;
    text-decoration: none!important;
    margin-top: 15px;
}

#product {
    margin: 15px 0px;
}

.product .item {
    padding: 5px;
    border: 1px dashed #2A110A;
}

.product .item .title {
    padding: 10px 0px;
}

.product .item .title .name-product a {
    color: var(--text-color);
    text-decoration: none;
}

#news .item .img {
    height: 250px;
    overflow: hidden;
}

#news .item .img img {
    height: 100%;
}

.box .item {
    position: relative;
    background: #fff;
    transition: 0.5s all ease;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    border-radius: 20px;
    overflow: hidden;
}

.box .item:hover {
    transform: translateY(-5px);
    box-shadow: 2px 0px 10px #444;
}

.box .item img {
    width: 100%;
}

.box .item .title {
    padding: 10px;
    text-align: left;
    height: 90px;
    overflow: hidden;
}

.box .item .title time {
    color: #ccc;
    font-size: 14px;
}

.box .item .title a {
    color: var(--text-color);
    text-decoration: none;
}

.box .item .img {
    max-height: 250px;
    overflow: hidden;
}

.box .item .content {
    padding: 10px;
}

#about .name-page,
#recruit .name-page {
    width: 100%;
    padding: 100px 0px;
    display: flex;
    justify-content: center;
}

#about .name-page .title,
#recruit .name-page .title {
    text-transform: uppercase;
    padding: 50px;
    background: rgba(0, 64, 128, 0.7);
    color: #fff;
}

#recruit a {
    color: var(--text-color);
}

#recruit .list a.active {
    color: #fff;
}

#recruit .title {
    padding: 10px 0px;
}

#video {
    padding: 30px 0px;
}

.video .item .title a {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: var(--text-color);
    color: #fff;
    text-transform: uppercase;
}

.video .item .title a:hover {
    background: #fd9308;
}

.duan .list ul {
    padding: 20px 0px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 30px;
    width: 100%;
    background: #fff;
    min-width: 60%;
}

.duan .list ul li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    margin: 0px 5px;
    transition: 0.5s;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.duan .list ul li a.active {
    color: #fff;
    background: var(--main-background);
}

.duan .item img {
    width: 100%;
}

.duan .item .title {
    width: 100%;
    background: #fff;
    z-index: 1000;
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 15px 10px;
    box-shadow: 0px 0px 3px #444;
}

#recruit .duan .item .title {
    padding: 10px 15px;
}

.duan .item .title h6 {
    font-weight: bold;
    font-size: 1.2rem;
    height: 46px;
    overflow: hidden;
}

.duan .item .title a {
    color: var(--text-color);
}

.listItem .item {
    margin: 20px 0px;
    box-shadow: 0px 0px 17px #ccc;
    transition: 0.5s all;
}

.listItem .item .img {
    height: 200px;
    overflow: hidden;
}

.listItem .item img {
    width: 100%;
    height: 100%;
}

.listItem .item:first-child {
    margin-top: 0px;
}

.listItem .item:hover {
    transform: translateY(-5px);
}

.listItem .item .content,
.listItem .item .title {
    padding: 15px;
}

.listItem .item .title h6 {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.listItem .item .content time {
    opacity: 0.5;
    font-size: 14px;
}

.listItem .item h6 a {
    color: var(--text-color);
    text-decoration: none;
}

.listItem .item .content h4 a:hover {
    color: #fd9308;
}

.listItem .item .content .des {
    padding: 20px 0px;
}

.listItem .item .content .des a {
    color: #000;
    text-decoration: none;
}

.sidebar {
    position: sticky;
    top: 66px;
    background: #fdebd8;
    padding: 20px;
}

.sidebar h4 {
    color: #fd9308;
}

.sidebar ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.sidebar ul li {
    padding: 5px 0px;
    border-bottom: 1px solid rgba(187, 106, 18, 0.2);
    margin: 10px 0px;
}

.sidebar ul li:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border: none;
}

.sidebar ul li a {
    color: var(--text-color);
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
}

.sidebar ul li a:hover {
    color: #fd9308;
}

.timeline {
    position: relative;
    list-style: none;
    padding: 0px;
}

.timeline::after {
    position: absolute;
    left: 50%;
    top: 0px;
    bottom: 0px;
    width: 3px;
    background-color: var(--text-color);
    content: "";
}

.service-review {
    margin: 10px 30px 30px 30px;
    position: relative;
    z-index: 1000;
}

.service-review-img {
    padding: 0px 70px 0px 70px;
}

.img-circle {
    border-radius: 50%;
    overflow: hidden;
}

#recruit .mobile {
    display: none;
}

.service-review-content {
    padding-left: 15px;
    padding-right: 15px;
    background: #fff;
    color: #000;
    padding-top: 150px;
    z-index: -1;
    line-height: 1.5;
    min-height: 300px;
    overflow: hidden;
    border-radius: 20px;
    margin-top: -175px;
    box-shadow: var(--box-shadow);
}

.service-review-content p.title {
    text-align: center;
    font-size: 1.8em;
    font-weight: bold;
}

#doitac {
    margin-bottom: 20px;
    background: #f7f5f1;
    padding-bottom: 15px;
}

#doitac .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
}

#home-contact {
    background: var(--main-background);
    padding: 20px 0px;
    margin-bottom: 15px;
}

#home-contact button {
    background: #fff;
    border-radius: 30px;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    padding: 5px 15px;
    border: none;
    outline: none;
}

#home-contact .form-control {
    margin-bottom: 15px;
}

#recruit .flex .item img {
    width: 100%;
}

#contact .form-control {
    margin-bottom: 10px;
}

#contact textarea.form-control {
    height: 150px;
    resize: none;
}

#detail-duan,
#detail-news,
#recruit {
    background: #f7f5f1;
}

#recruit {
    padding: 20px 0px;
}

#detail-news,
#duan {
    margin-top: 56px;
}

.detail-content article {
    margin-bottom: 20px;
}

#detail-duan .title {
    background: #fff;
    margin-bottom: 20px;
}

.list_tab {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
}

.list_tab::-webkit-scrollbar-thumb {
    background: #ccc;
}

.list_tab::-webkit-scrollbar {
    height: 2px;
}

.list_tab li {
    flex: none;
}

.list_tab li a {
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
}

.list_tab li a.active {
    color: var(--text-color);
    position: relative;
}

.list_tab li a.active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 2px;
    left: 0px;
    right: 0px;
    background: var(--text-color);
}


/*footer*/

.social {
    margin-top: 20px;
}

.social a {
    margin: 0px 15px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    color: var(--text-color) !important;
}

.page-footer {
    padding-top: 30px;
    color: #FFF;
    background-color: var(--main-background);
    position: relative;
    z-index: 15;
}

.page-footer .title-footer {
    margin-bottom: 20px;
}

.page-footer .form-control {
    margin-bottom: 15px;
}

.page-footer ul {
    list-style: none;
    padding: 0px;
}

.page-footer ul li:first-child a {
    padding-top: 0px !important;
}

.page-footer a {
    color: #FFF;
}

.page-footer .lienket p {
    margin-bottom: 5px !important;
}

.footer-copyright {
    background: #250F07;
    padding: 15px 0px;
}

@media (min-width: 900px) {
    .service-review-content {
        padding-top: 140px;
        margin-top: -165px;
    }
    #slideHome .owl-next,
    #slideHome .owl-prev {
        top: 50%;
    }
    #slideHome .items {
        overflow: hidden;
        position: relative;
    }
    #slideHome .items .content {
        position: absolute;
        left: 30%;
        right: 30%;
        bottom: 0px;
        min-width: 400px;
        min-height: 200px;
        padding: 30px 0px 20px;
    }
    .page-footer .lienket {
        padding: 0px 15px;
    }
    #recruit .flex {
        display: flex;
        align-items: center;
        position: relative;
    }
    #recruit .flex .time {
        position: absolute;
        left: 50%;
        transform: translateX(-47%);
        background: #fd9308;
        color: #fff;
        font-weight: bold;
        z-index: 1000;
        text-align: center;
        padding: 5px;
        border-radius: 5px;
        top: 23px;
    }
    #recruit .flex:nth-child(even) {
        justify-content: flex-end;
    }
    #recruit .flex .item {
        flex: 0 0 46%;
        max-width: 46%;
        padding: 10px;
        box-shadow: 0px 0px 5px #ccc;
        position: relative;
    }
}

@media (max-width: 900px) {
    #slideHome .items .img {
        overflow: hidden;
    }
    #camket .item {
        margin-bottom: 15px;
    }
    #recruit .pc {
        display: none;
    }
    #recruit .mobile {
        display: block;
    }
    #recruit .mobile .item {
        padding: 10px;
        box-shadow: 0px 0px 5px #ccc;
        position: relative;
    }
    #recruit .mobile .item .title a {
        display: block;
        margin-top: 10px;
        color: var(--text-color);
        text-decoration: none;
    }
    #recruit .mobile .item .title a:hover {
        color: #fd9308;
    }
}