body {
    background: #121217;
}

.btn-main {
    background: var(--color-main);
    border-radius: 45px;
    color: var(--white);
    font-weight: 600;
    padding: 10px 30px;
    text-transform: uppercase;
}

.btn-main:hover {
    background: var(--white);
    color: var(--black);
}

.btn-view-more {
    font-size: 16px;
    display: inline-block;
    border-bottom: 2px solid var(--color-main);
    color: var(--white);
    font-weight: 500;
}

/*tieng viet*/
.language-section, .currency-section {
    position: relative;
    font-size: 12px;
}

.language-section::before, .currency-section::before {
    /*content: '';*/
    background: #a6a6a6;
    height: 10px;
    width: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.language-section ul, .currency-section ul {
    position: absolute;
    background: var(--white);
    min-width: 50px;
    top: 100%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000;
    border-top: 1px solid #e3e3e3;
    margin-bottom: 0;
    -webkit-animation: nav_menu_anim_close 0.3s both;
    -o-animation: nav_menu_anim_close 0.3s both;
    animation: nav_menu_anim_close 0.3s both;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    opacity: 0;
    filter: opacity(0);
    visibility: hidden;
    -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
}

.language-section ul a, .currency-section ul a {
    padding: 0 10px;
    line-height: 30px;
    height: 30px;
    display: block;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.language-section ul a:hover, .currency-section ul a:hover {
    background: #f4f4f4;
}

.language-section:hover ul, .currency-section:hover ul {
    -webkit-animation: nav_menu_anim_open 0.3s both;
    -o-animation: nav_menu_anim_open 0.3s both;
    animation: nav_menu_anim_open 0.3s both;
    opacity: 1;
    filter: opacity(1);
    visibility: visible;
    pointer-events: unset;
}

a.language-picker, a.currency-picker {
    text-transform: uppercase;
    font-weight: 600;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    padding: 0 20px;
    color: var(--white);
    font-size: 13px;
}

/*a.language-picker::after, a.currency-picker::after {*/
/*	content: "\f107";*/
/*	margin-left: 2px;*/
/*	font-family: "Line Awesome Free";*/
/*	vertical-align: bottom;*/
/*	font-weight: 600;*/
/*}*/
a.language-picker:hover, a.currency-picker:hover {
    color: var(--color-main);
}

/*end tieng viet*/
/*Title*/
.box-head {
    margin-bottom: 30px;
}

.box-head__title {
    font-size: 24px;
    letter-spacing: 10px;
    margin-bottom: 10px;
    color: #eceff3;
    font-weight: 400;
    text-transform: uppercase;
}

.box-head__desc {
    font-size: 18px;
    font-style: italic;
    color: var(--color-main);
    padding-bottom: 15px;
    
}

.box-head__dir {
    width: 50px;
    height: 2px;
    background: var(--color-main);
    margin: 0 auto;
}

/*End Title*/
/*Header*/
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0,0,0,0.5);
}

.logo-section img {
    max-height: 46px;
}

.header-menu {
    float: right;
}

.is-mobile .header-menu {
    float: left;
}

/*End Header*/
/*Slider Main*/
.box-slider {
    position: relative;
}

.box-slider__item {
    position: relative;
}

.box-slider__item-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.box-slider__item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.box-slider__item-title {
    font-size: 54px;
    color: var(--white);
    letter-spacing: 20px;
    font-weight: 300;
}

.box-slider__item-desc {
    font-size: 16px;
    color: var(--color-main);
    margin-bottom: 30px;
    
}

/*End Slider Main*/
/*Box Gallery*/
.slider-gallery__item-image {
    position: relative;
    /*padding-top: 56.25%;*/
    overflow: hidden;
}

.slider-gallery__item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.slider-gallery__item-image:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.slider-gallery__item-overlay {
    background: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}

.slider-gallery__item-image:hover .slider-gallery__item-overlay {
    display: flex;
}

.slider-gallery__item-overlay i {
    font-size: 30px;
    color: var(--white);
    width: 60px;
    height: 60px;
    border: solid 2px rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-gallery__item-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 10px;
}

.slider-gallery__item-title a {
    color: var(--white);
}

.slider-gallery__item-desc {
    font-size: 13px;
    margin-bottom: 10px;
}

/*End Box Gallery*/
/*Product Home*/
.product-home {
    background-attachment: fixed;
    padding-top: 60px;
    padding-bottom: 60px;
}

/*End Product Home*/
/*Box Intro*/
.box-intro {
    position: relative;
}

.box-intro__image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.box-intro__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.box-intro__title {
    font-size: 24px;
    letter-spacing: 10px;
    margin-bottom: 10px;
    color: #eceff3;
    font-weight: 400;
    text-transform: uppercase;
}

.box-intro__sub-title {
    font-size: 18px;
    font-style: italic;
    color: var(--color-main);
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.7;
    
}

.box-intro__sub-title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--color-main);
}

.box-intro__desc {
    margin-bottom: 20px;
}

/*End Box Intro*/
/*Product Menu*/
.product-menu img {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    position: absolute;
    border-radius: 60px;
}

.product-menu__meta {
    display: flex;
    font-size: 14px;
    width: 100%;
    margin-bottom: 5px;
}

.product-menu__meta, .product-menu__desc {
    padding-left: 80px;
}

.product-menu__meta .c1 {
    max-width: 66%;
}

.product-menu__meta .c1 a {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.product-menu__meta .c2 {
    border-top: dashed 1px #aaa;
    flex: 1;
    margin-top: 20px;
}

.product-menu__meta .c3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-main);
}

.product-menu__desc p {
    margin-bottom: 0;
    font-size: 13px;
}

/*zoom-anh sp*/
.product-item {
    overflow: hidden;
}

.product-item img {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    overflow: hidden;
}

.product-item:hover img {
    overflow: hidden;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/*zoom-anh sp*/
/*zoom-anh bai viet*/
.article-item {
    overflow: hidden;
}

.article-item img {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    overflow: hidden;
}

.article-item:hover img {
    overflow: hidden;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/*zoom-anh bai viet*/
.bg-content {
      background-position: center;
      background-size: cover;
      background-attachment: fixed;
      padding: 3rem 0;
}

/*End Product Menu*/
/*Book Table*/
.book-table {
    background-attachment: fixed;
    padding: 60px 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.book-table__form {
    box-shadow: 3px 3px 20px 0px rgb(0 0 0 / 30%);
    background: #18181d;
    padding: 60px 40px;
    margin-top: -100px;
    margin-bottom: -100px;
}

.book-table__form input {
    background: rgba(0, 0, 0, .2);
    border: none;
    color: var(--white);
}

.book-table__form input[type=time]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

/*End Book Table*/
/*Box Counter*/
.box-counter {
    background: var(--color-main);
    padding: 60px 0;
    color: #eceff3;
}

.box-counter__item {
    text-align: center;
}

.box-counter__item-number {
    font-size: 40px;
}

.box-counter__item-title {
    font-size: 13px;
}

/*End Box Counter*/
/*Footer*/
.coppyright {
    font-size: 12px;
    color: var(--white);
}

footer .logo-section {
    text-align: center;
}

/*End Footer*/
/*Page*/
.page-contact .nav-tabs {
    background: #111;
    border: 0;
}

.page-contact .tab-content {
    background: #27282b;
    padding: 30px;
}

.page-contact .nav-tabs .nav-item {
    margin-bottom: -2px;
}

.page-contact .nav-tabs .nav-link {
    background: #000;
    border: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 30px;
}

.page-contact .nav-tabs .nav-item.show .nav-link, .page-contact .nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--color-main);
}

.page-contact input, .page-contact textarea {
    background: rgba(0, 0, 0, .2);
    border: none;
    color: var(--white);
}

.address__wrap {
    display: flex;
}

.address__item {
    width: 33.3333333333%;
    text-align: center;
}

.address__item i {
    font-size: 50px;
    color: var(--color-main);
    margin-bottom: 10px;
}

.address__item-title {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
}

/*End Page*/
/*Responsive*/
.is-mobile .header-logo {
    float: left;
}

.is-mobile a.language-picker {
    height: 40px;
    line-height: 40px;
    padding: 0 4px;
}

@media (max-width: 1199px) {
    .address__wrap {
        flex-wrap: wrap;
    }

    .address__item {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 550px) {
    .box-intro__content-main {
        padding: 30px;
        background: #00000085;
    }

    .page-title-section.page-categories {
        padding: 100px 0 80px 0 !important;
    }

    .page-title-section .inner-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .box-intro__image img {
        height: 680px;
    }

    .page-contact .tab-content {
        padding: 10px;
    }

    .page-contact .nav-tabs .nav-link {
        padding: 6px 26px;
    }
}

/*End Responsive*/

/*san pham*/
span.product-item__border {
    border: solid 1px rgba(255,255,255,.5);
    position: absolute;
    width: 95%;
    height: 95%;
    margin: 2.5% 0 0 2.5%;
    z-index: 1;
    top: 0;
}

/*end san pham*/
/*tap san pham*/
.tap-product {
    padding: 60px 0;
    margin-bottom: 60px;
}

/*end tap san pham*/

/*bai viet*/
.news-cool {
    padding: 60px 0;
    margin-top: 60px;
}

.post-date i {
    color: var(--color-main);
    font-size: 20px;
    margin-right: 4px;
}

.article-entry-info {
    font-size: 12px;
    margin-bottom: 9px;
}

.post-date i {
    color: var(--color-main);
    font-size: 15px;
    margin-right: 4px;
}

/*end bai viet*/
/*banner trang con*/
.page-title-section.page-categories {
    padding: 160px 0 80px 0;
}

.bg-breadcrums {
    background-color: #2c2c2c;
}

.breadcrumbs-section a {
    margin-right: 6px;
    line-height: 24px;
    color: #eceff3;
}

.breadcrumbs-section span {
    font-weight: 600;
    color: var(--color-main);
}

/*bai viet*/
.article-title-detail {
    color: var(--color-main);
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 10px;
}

/*end banner trang con*/
/*lien he*/
i.fa-light.fa-phone-volume {
    transform: rotate(-50deg);
}

/*end lien he*/
