@charset "utf-8";

/* Import main fonts for the site (Montserrat, UTM-BanqueR, Judson) */

:root {
    --white: #fff;
    --black: #000;
    --cl-text: #0e3746;
    --cl-primary: #0021f5;
    --cl-second: #00228e;
    --fs-color-primary: #0021f5;
    --fs-color-secondary: #f67c38;
    --fs-color-success: #7a9c59;
    --fs-color-alert: #b20000;
    --fs-experimental-link-color: #0a0a0a;
    --fs-experimental-link-color-hover: #0021f5;
    --font-family: "Vuta IVLF", sans-serif;
    --flatsome-scroll-padding-top: calc(80px + 0)
}

@font-face {
    font-family: "Vuta IVLF";
    src: url(../css/fonts/HELVETICA-NEUE-REGULAR.TTF) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Vuta IVLF";
    src: url(../css/fonts/HELVETICANEUE-MEDIUM.OTF) format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Vuta IVLF";
    src: url(../css/fonts/HELVETICA-NEUE-BOLD.TTF) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --primary: #c78a34;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--font-family);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: black;
    transition: 0.3s;
}

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    transition: 0.3s;
}

header {
    background-color: #fff;
    color: white;
    min-height: 70px;
    border-bottom: 1px solid #e1e1e1;
}

.logo {
    padding: 4px 0;
}

.logo img {
    max-width: 100%;
    max-height: 60px;
}

ul {
    list-style: none;
}

.ml-auto {
    margin-left: auto !important;
}

.main-header {
    align-items: center;
    display: flex;
    float: left;
    width: 150px;
    margin-right: 15px;
}

.right-action ul {
    display: inline-flex;
    margin-bottom: 0;
}

.right-action ul li {
    margin-right: 20px;
}

.right-action ul li:last-child {
    margin-right: 0;
}

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-weight: 500;
    color: #433f39;
    text-transform: uppercase;
    transition: 0.3s;
    font-size: 15px;
}

.navbar a i {
    font-size: 20px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
    color: var(--primary);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 10px;
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #433f39;
    text-transform: none;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: var(--primary);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

.parallax {
    position: relative;
    max-height: 680px;
    width: 100%;
}

.right-action {
    border-left: 1px #333 solid;
    border-right: 1px #333 solid;
}

.right-action .m-action {
    padding: 20px;
}

.right-action .m-action img {
    height: 24px;
    width: 24px;
}

.right-action .chart_info_wrapper {
    padding-top: 10px;
    text-align: center;
}

.r-action {
    justify-content: space-between;
    padding-top: 15px;
}


/********** banner****** */

.parallax-window {
    min-height: 680px;
    background: transparent;
}

.parallax::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46.63%, rgba(0, 0, 0, 0.5) 100%);
}

.parallax img {
    max-height: 100%;
    width: 100%;
    margin-bottom: -100px;
}

.parallax section {
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: #fff;
    position: absolute;
    text-align: center;
    bottom: 50px;
}

.parallax section h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 47px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    font-family: 'GaramondPremrPro';
    margin-bottom: 10px;
}

.search-banner {
    position: absolute;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 945px;
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 3px;
    bottom: 0;
}

.seacrch-banner .btn-seacrch {
    border: none;
    width: 200px;
}

.btn-seacrch {
    height: 50px;
    width: 100px;
    background: yellow;
}

.seacrch-banner .location {
    width: 25%;
}

.seacrch-banner .number-room {
    width: 25%;
}

.seacrch-banner .cost {
    width: 25%;
}

.seacrch-banner .search {
    width: 25%;
}

.pug-1,
.pug-2,
.pug-3,
.pug-4,
.pug-5 {
    /* padding-top: 20px; */
}

.pug-1:hover {
    color: #ffb03b;
    background-image: url(/assets/image/secton1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pug-2:hover {
    color: #ffb03b;
    background-image: url(/assets/image/secton2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pug-3:hover {
    color: #ffb03b;
    background-image: url(/assets/image/secton3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pug-4:hover {
    color: #ffb03b;
    background-image: url(/assets/image/secton4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pug-5:hover {
    color: #ffb03b;
    background-image: url(/assets/image/secton1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.introduce-out .medal {
    float: left;
}

.introduce-out .title {
    text-transform: uppercase;
}


/**********************introduce****************** */

.introduce {
    background: #F5F1E6;
    width: 100%;
    min-height: 470px;
}

.introduce #block {
    padding-top: 100px;
    max-width: 950px;
    margin: auto;
    padding-bottom: 35px;
}

.introduce #block h3 {
    text-align: center;
    font-weight: 700;
    color: var(--primary);
}

.introduce .introduce-out {
    background: white;
    border: yellow 1px solid;
    height: 100px;
    overflow: hidden;
}

.introduce .desc {
    margin: auto;
    width: 800px;
    padding: 35px 0;
}


/* ***************project***************** */

.project {
    background: rgb(208 147 47 / 20%);
    padding: 0px 0 35px;
}

.project .project-text {
    padding-top: 20px;
}

.project .project-text h2 {
    padding-top: 30px;
    font-weight: 700;
    font-size: 40px;
    color: var(--primary);
}

.project .detail-project {
    background: #fff;
    padding: 25px 20px;
}

.project .img-project {
    padding: 0;
}

.project .detail-project h3 {
    color: var(--primary);
}

.project .detail-project p {
    font-size: 14px;
}

.project .detail-project a {
    position: absolute;
    bottom: 40px;
    left: 30px;
    font-weight: 600;
    font-size: 15px;
    line-height: 150%;
    color: var(--primary);
    text-transform: uppercase;
}

.project .project-btn {
    width: 200px;
    border: 1px solid black;
    height: 40px;
    background: #f1b0ce;
}

.project .single-item-rtl {
    padding-top: 40px;
}

.project .single-item-rtl .img-project {
    width: 70%;
}

.project .single-item-rtl .img-project img {
    height: 100%;
    width: 100%;
}

.project .single-item-rtl .detail-project {
    width: 30%;
}


/* *************Community************** */

.community h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
}

.comunity-title {
    padding: 30px;
}

.community .out {
    background: white;
}

.community .out .comunity-text {
    padding: 25px;
}

.community .see-more {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

.community .see-more #see-more {
    height: 40px;
    width: 200px;
    border: none;
    background-color: #f1b0ce;
}

.community .see-more #see-more:hover {
    opacity: 0.9;
}


/* **********bottom********** */

.bottom .detail-bottom h3 {
    color: var(--primary);
}

.bottom .detail-bottom p {
    font-weight: 600;
}

.info_vh_logo {
    margin-right: 30px;
    align-self: center;
}

.info_vh_logo img {
    max-width: 225px;
    height: auto;
    width: 100%;
}

.hotline_wrapper {
    width: 270px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.hotline {
    width: 285px;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    border-radius: 3px;
    height: 45px;
    margin-bottom: 20px;
    border: 1px solid;
    border-color: #ed9c28 #ed9c28 #d18211;
    font-weight: 700;
}

.hotline a {
    color: #fff !important;
    padding: 0 25px;
}

.footer hr {
    width: calc(100% - 265px);
    margin-right: auto;
    border-color: rgb(255 255 255 / 0.7);
    border-width: 0.5px;
}

.hr-text h6 {
    padding-right: 20px;
    padding-top: 5px;
    color: #b6b9bb !important;
}

.hr-text a {
    margin-top: -3px;
    color: #fff !important;
}

.vertical_division_line {
    width: 1px;
    background: rgb(255 255 255 / 0.5);
    height: 30px;
}

.community {
    background-image: url(/assets/image/Secton1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background: rgb(206, 204, 201, 0.5);
    padding: 20px 0 35px;
}

#slide-utility {
    background: linear-gradient(180deg, var(--primary) 33.45%, #9e5018 100%);
}

#slide-utility .slick-slide img {
    max-width: 100%;
}

#slide-utility .row {
    display: flex;
}

#slide-utility .col-md-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#slide-utility .slogan {
    font-weight: 600;
    font-size: 13px;
    line-height: 150%;
    text-transform: uppercase;
    color: #FFFFFF;
}

#slide-utility h3.pj-title {
    font-family: GaramondPremrPro;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 120%;
    color: #fff;
    margin: 0;
    margin-top: 20px;
}

#slide-utility .desc {
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
    color: #FFFFFF;
    margin-top: 20px;
}


/* **********footer************** */

.footer {
    background: #000;
}

.footer .top {
    padding-top: 35px;
}

.footer h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.footer a {
    color: rgb(255 255 255 / 0.7);
    font-size: 14px;
    line-height: 35px;
}

.footer a:hover {
    color: #fff;
}

.footer .bot .info .address {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
}

.footer .bot .info .address h2 {
    color: #fff;
    font-size: 15px;
}

.footer .bot .info .address a {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
}

.footer h6 {
    color: var(--primary);
}

#bot {
    color: white;
    font-weight: 700;
}

.copy-right {
    color: #fff;
    padding: 8px 0;
    background: #01081f;
    font-size: 13px;
}

.copy-right a,
.copy-right strong {
    color: var(--primary);
}


/* *****************list */

.header .header-row {
    margin-left: 0;
    margin-right: 0;
}

.header-right {
    border-bottom: 1px solid #333;
}

.header-bot {
    padding: 10px;
    border-bottom: 1px solid #333;
}

.header-bot-left .form-select {
    border: none;
}

.header-bot-right {
    margin-left: auto;
}

.main-main {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.main-main-right {
    padding-left: 10px;
}

.detail-icon .detail-icon-1 {
    padding-right: 10px;
}

.detail-icon .detail-icon-3 {
    padding-right: 10px;
}

.detail-icon .detail-icon-4 {
    padding-right: 10px;
}

.detail-icon .detail-icon-2 {
    padding-right: 10px;
}

.right .right-top {
    width: 100%;
    height: 200px;
    padding-bottom: 15px;
}

.right .right-top img {
    width: 100%;
    height: 100%;
    border-radius: 2%;
}

.right .right-bot-title {
    background: #333;
    color: white;
    height: 40px;
}

.right .right-bot {
    border: 1px solid #333;
    border-radius: 2%;
    min-height: 300px;
}

.right .right-bot .right-bot-img {
    height: 200px;
    width: 100%;
}

.right .right-bot .right-bot-img img {
    width: 100%;
    height: 100%;
}

.right .right-bot input {
    height: 40px;
    width: 100%;
    padding-left: 10px;
    padding-bottom: 5px;
}

.right .right-bot .right-bot-btn {
    background: var(--primary);
    width: 100%;
}

.pagination {
    padding: 20px;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
}


/* thiết lập style cho class active */

.pagination a.active {
    background-color: dodgerblue;
    color: white;
}


/* thêm màu nền khi người dùng hover vào class không active */

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.footer-list {
    background-image: url(/assets/image/background-footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 800px;
}

.footer-top .footer-top-text {
    height: 100%;
}

.footer-top .footer-top-text p {
    color: #fff;
    padding-top: 8px;
}

.footer-top .logo-footer {
    border-right: 1px solid #333;
}

.footer-top {
    background: var(--primary);
}

.footer-list h4 {
    color: var(--primary)
}

.footer-list a {
    color: white;
}

.footer-list a:hover {
    color: var(--primary);
}

.row-footer-list-top {
    border-bottom: 1px white solid;
    padding-top: 20px;
}

.footer-list-bot p {
    color: white;
    font-size: 15px;
}

.footer-list-bot h4 {
    font-size: 20px;
}

.call {
    border: none;
    background: var(--primary);
    border-radius: 2%;
    width: 80%;
    color: white;
    height: 40px;
}

.btn-submit {
    border: none;
    background: var(--primary);
    border-radius: 2%;
    width: 100%;
    color: white;
    height: 40px;
}

.footer-list-bot input {
    width: 100%;
    padding-left: 10px;
}


/* ********detail */

#detail .slider-nav {
    margin-top: 5px;
    margin-bottom: 10px;
}

#detail .slider-nav .slick-list {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#detail .slider-nav .slick-list .ioverlay {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 5px;
    height: 125px;
}

#detail .slider-nav .slick-list img {
    width: 100%;
    height: auto;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-title {
    padding-top: 10px;
    padding-left: 10px;
    height: 70px;
    background: #ededed;
}

.main-title h5 {
    color: var(--primary);
}

.product-description--tap {
    flex: 0 0 50%;
}

.product-description-line {
    border-bottom: 1px solid black;
    padding-top: 10px;
}

.detail-bonus-btn {
    background: #ffb03b;
}

.detail-bonus {
    background: #ededed;
}

.detail-bonus-i {
    border-bottom: 1px #333 solid;
}

.form input {
    height: 40px;
    width: 300px;
}

.detail-bonus-btn {
    width: 200px;
    height: 40px;
    border-radius: 3%;
    background: #ffb03b;
    border: none;
}

.hot-line a {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hot-line a i {
    font-size: 13px;
    margin-right: 6px;
}

.hot-line a:hover {
    background: var(--primary);
    color: #fff;
}

.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: calc(1.5em + .75rem + 2px) !important;
    padding: .375rem .75rem !important;
}

h5.label-filter {
    font-size: 15px;
}

.select2-results {
    display: block;
    max-height: 200px;
    overflow-y: scroll;
}

.search-banner .btn {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 45px;
    letter-spacing: 2px;
    background: var(--primary);
    border: 1px solid;
    border-color: #ed9c28 #ed9c28 #d18211;
    width: 195px;
}

#home-usp .usp {
    background: #fff;
    border-radius: 3px;
    padding: 5px;
}

#home-usp .usp>.row {
    border: 1px solid var(--primary)4d;
    border-radius: 3px;
    margin: 0;
    padding: 25px 0px;
    display: flex;
}

#home-usp .usp .item {
    display: flex;
    align-items: center;
    padding: 0;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

#home-usp .usp .item:not(:last-child) {
    border-right: 1px #E4E4E4 solid;
    padding-right: 20px;
    padding-left: 20px;
}

#home-usp .usp .item:not(:first-child) {
    padding-left: 20px;
    padding-right: 20px;
}

#home-usp .usp .item img {
    max-width: 40px;
    margin-right: 20px;
    position: relative;
}

#home-usp .usp .item .title {
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 150%;
    color: #222222;
    position: relative;
}

#home-usp .usp .item::before {
    content: '';
    position: absolute;
    width: calc(100% + 15px);
    height: calc(100% + 60px);
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 1;
    transition: 0.3s;
    border-radius: 3px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#home-usp .usp .item::after {
    content: '';
    width: calc(100% + 20px);
    height: calc(100% + 40px);
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 3;
    transition: 0.3s;
    border-radius: 3px;
    border: 1px #fff solid;
    position: absolute;
}

#home-usp .usp .item .bg {
    width: calc(100% + 15px);
    height: calc(100% + 60px);
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    visibility: hidden;
    z-index: 2;
    transition: 0.3s;
    border-radius: 3px;
    background-color: rgb(220 164 71 / 85%);
    position: absolute;
}

#home-usp .usp .item:hover .bg {
    opacity: 1;
    visibility: visible;
    width: calc(100% + 15px);
    height: calc(100% + 60px);
}

#home-usp .usp .item:hover::before {
    /* background-color:  var(--primary); */
    opacity: 1;
    visibility: visible;
    width: calc(100% + 15px);
    height: calc(100% + 60px);
}

#home-usp .usp .item:hover::after {
    opacity: 1;
    visibility: visible;
    width: calc(100% + 15px);
    height: calc(100% + 60px);
}

#home-usp .usp .item:hover .title {
    color: #fff;
    z-index: 3;
}

#home-usp .usp .item:hover img {
    filter: brightness(0) invert(1);
    z-index: 3;
}

#home-usp .usp .item:nth-child(1)::before {
    background-image: url(../image/bg-usp-1.png);
}

#home-usp .usp .item:nth-child(2)::before {
    background-image: url(../image/bg-usp-2.png);
}

#home-usp .usp .item:nth-child(3)::before {
    background-image: url(../image/bg-usp-3.png);
}

#home-usp .usp .item:nth-child(4)::before {
    background-image: url(../image/bg-usp-4.png);
}

#home-usp .usp .item:nth-child(5)::before {
    background-image: url(../image/bg-usp-5.png);
}

.slick-slide {
    margin: 0 15px;
}

#community .item-body {
    background: #fff;
    padding: 40px;
    transition: 0.3s;
    text-align: left;
}

#community .slogan {
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 150%;
    color: #979797;
    transition: 0.3s;
    margin-bottom: 5px;
    text-transform: uppercase;
}

#community h1.item-title {
    font-family: GaramondPremrPro;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 120%;
    color: #222222;
    margin: auto;
    transition: 0.3s;
}

#community .item-body .desc {
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
    color: #222222;
    margin-top: 10px;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

#community .swiper-slide:hover .item-body {
    background: #F4E7C8;
}

#community .swiper-slide:hover .slogan {
    color: #222222;
}

#community .swiper-slide:hover h1.item-title {
    color: var(--primary);
}

#community .swiper-slide:hover .desc {
    height: 80px;
    opacity: 1;
    visibility: visible;
}

#community .img {
    height: 240px;
    transition: 0.3s;
}

#community .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#community .swiper-slide:hover .img {
    height: 160px;
}

#community .container>a {
    display: block;
    margin: auto;
    margin-top: 40px;
    text-align: center;
}

#community .btn.btn-outline-primary {
    background: var(--primary);
    border-radius: 3px;
    width: 200px;
    font-weight: 600;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 35px;
    border-color: #ed9c28 #ed9c28 #d18211;
}

.main-right {
    margin-top: 70px;
}

.breadcrumbs-wrap {
    padding: 15px 0;
}

.breadcrumbs-wrap ul {
    display: flex;
}

.breadcrumbs-wrap ul li::after {
    content: "/";
    color: #e1e1e1;
    padding: 0 10px;
}

.breadcrumbs-wrap ul li:last-child:after {
    display: none;
}

.breadcrumbs-wrap ul li a {
    font-size: 13px;
    font-weight: 500;
    color: #8e8e8e;
}

.breadcrumbs-wrap ul li:last-child a,
.breadcrumbs-wrap ul li a:hover {
    color: #333;
}

.item-product {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #dedede;
    font-size: 14px;
}

.item-product:last-child {
    border-bottom: none;
}

.item-product .img-box {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    max-height: 185px;
}

.item-product .img-box img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-product h2 {
    font-size: 19px;
    line-height: 25px;
}

.item-product .hometext {
    margin-top: 5px;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #495057;
}

.block_search_horziontal {
    margin-bottom: 25px;
}

.block_search_horziontal h5 {
    font-size: 16px;
    color: #bf7700;
}

.block_search_horziontal button {
    background: var(--primary);
    border-radius: 3px;
    width: 200px;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    border-color: #ed9c28 #ed9c28 #d18211;
}

.block_search_horziontal button:hover {
    background: #d08200;
    border-color: #ed9c28 #ed9c28 #d18211;
}

.form-control,
.select2-container .select2-selection--single,
.form-control:focus {
    border-color: var(--primary) !important;
    color: #ab7e33;
}

.select2-search--dropdown .select2-search__field {
    outline: none;
    border: 1px solid var(--primary);
    border-radius: 4px;
}

.select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below {
    border: 1px solid var(--primary);
}

#detail h1 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 32px;
    border-bottom: 1px solid #ebedf0;
    padding-bottom: 20px;
}

#detail .contact-box {
    border: 1px solid #ebedf0;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 16px;
    text-align: center;
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
}

#detail .contact-box .avatar {
    background: #fffdf8;
    width: 100px;
    height: 100px;
    font-size: 35px;
    text-align: center;
    line-height: 100px;
    border-radius: 50%;
    color: var(--primary);
    border: 1px solid var(--primary);
    margin: 15px auto;
}

#detail .contact-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 20px;
}

#detail .contact-box a {
    display: block;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    color: #004e7f;
    border: 1px solid #ccd3d9;
    box-sizing: border-box;
    border-radius: 4px;
}

#detail .contact-box a:hover {
    border: 1px solid #95c4e6;
    background: #edf7ff;
}

#detail .contact-box a.call-now {
    background: #008f3d;
    border-color: #008f3d;
    color: #fff;
}

#detail .contact-box a.call-now:hover {
    background-color: #2ca853;
}

#detail .contact-box a i {
    font-size: 14px;
    margin-right: 3px;
}

#detail .contact-box p {
    margin-bottom: 0;
    font-size: 15px;
}

#detail .slick-slide {
    margin: unset;
}

#detail .slider-for {
    border-radius: 10px;
    overflow: hidden;
}

#detail .slider-for .slick-track {
    height: 392px;
}

#detail .slider-for .ioverlay {
    background: rgba(10, 13, 20, .4) !important;
    -webkit-backdrop-filter: blur(64px) !important;
    backdrop-filter: blur(64px) !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#detail .slider-for .ioverlay img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
}

.box-common {
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0 16px;
    width: 100%;
    margin-bottom: 16px;
    background: #f5f6f7;
}

.box-common .box-title {
    padding: 15px 0 10px;
    box-shadow: inset 0 -1px 0 #ebedf0;
    font-weight: 700;
    color: #2c2f36;
    font-size: 20px;
}

.box-common .box-content {
    padding: 0 0 12px;
    position: relative;
}

.box-common .box-content li {
    color: #474d57;
}

.box-common .box-content li h3 {
    margin-bottom: 0;
    line-height: 25px;
}

.box-common .box-content li a {
    color: #474d57;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.box-common li a:hover {
    color: #004e7f;
}

#detail .short-detail {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #747c87;
    padding-bottom: 16px
}

#detail .short-detail-wrap {
    position: relative;
    border-bottom: 1px solid #ebedf0;
    margin-bottom: 15px;
}

#detail ul.short-detail-2 {
    width: 100%;
    display: block
}

#detail .short-detail-2 .repost {
    font-weight: 500
}

#detail ul.short-detail-2 li {
    float: left;
    margin-right: 64px
}

#detail ul.short-detail-2 li:last-child {
    margin-right: 0
}

#detail .short-detail-2 .sp1 {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #747c87;
    width: auto;
    display: block;
    margin-bottom: 4px
}

#detail .short-detail-2 .sp2 {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #2c2f36;
    width: auto;
    display: block;
    margin-top: 4px
}

.product-share {
    display: inline-block;
    cursor: pointer
}

#detail .box-share {
    z-index: 1
}

#detail .box-share ul li {
    line-height: 40px;
    padding: 0
}

#detail .box-share ul li a {
    display: block;
    padding: 0 16px;
    cursor: pointer
}

#detail .box-share ul li div {
    padding: 0 18px;
    cursor: pointer
}

#detail .repost {
    position: absolute;
    right: 0;
    color: #2c2f36;
    line-height: 24px
}

#detail .short-detail-wrap .repost {
    top: 20px
}

#detail .product-config .repost {
    top: 20px
}

#detail .repost .repost-fb a,
#detail .repost .product-share,
#detail .repost .repost-fb a,
#detail .repost .product-save {
    font-weight: 500;
    color: #2c2f36;
    background: none
}

#detail .repost .repost-fb a,
#detail .repost .product-save {
    margin-left: 16px
}

#detail .repost .product-save {
    cursor: pointer
}

#detail .repost .product-save.iconSave {
    width: auto;
    margin: 0 0 0 16px
}

#detail .short-detail-wrap .repost .product-share a,
#detail .short-detail-wrap .repost .product-share span,
#detail .short-detail-wrap .repost .product-save a,
#detail .short-detail-wrap .repost .product-save span {
    line-height: 40px;
    color: #2c2f36
}

#detail .box-share {
    background: #fff;
    box-shadow: 0 16px 64px rgb(3 44 71 / 12%);
    border-radius: 8px;
    padding: 8px 0;
    width: 195px;
    position: absolute;
    right: -16px;
}

#detail .box-share ul {
    margin-bottom: 0;
}

#detail .box-share ul li {
    line-height: 40px
}

#detail .box-share ul li:hover,
#detail .box-share ul li:active {
    background: #edf7ff;
    color: #004e7f
}

#detail .box-share ul li:hover a,
#detail .box-share ul li:active a {
    color: #004e7f
}

#detail .zalo-share-button {
    height: 40px !important;
    cursor: pointer
}

#detail .box-share ul li a {
    line-height: 40px;
    color: #2c2f36;
    font-weight: normal
}

#detail .box-share ul li img {
    vertical-align: middle;
    margin-right: 8px
}

#detail .detail-product {
    padding: 16px 0;
}

#detail .detail-product .title-detail {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #2c2f36;
    margin-bottom: 16px;
    display: inline-block;
    width: 100%;
}

#detail .detail-product .box-content {
    overflow: hidden;
    position: relative;
    font-size: 15px;
}

#detail .detail-product .read_more {
    text-align: center;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    bottom: 0;
    width: 100%;
    background: #fff;
}

#detail .detail-product .read_more:before {
    height: 55px;
    margin-top: -45px;
    content: "";
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff00', endColorstr='#ffffff', GradientType=0);
    display: block;
}

#detail .detail-product .read_more a {
    color: #004e7f;
    display: block;
    font-size: 14px;
    font-weight: 700;
}

#detail .detail-product .read_more a:after {
    content: "";
    width: 0;
    right: 0;
    border-top: 6px solid #004e7f;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 5px;
}

#detail .detail-product .read_less {
    text-align: center;
}

#detail .detail-product .read_less a {
    position: relative;
    color: #004e7f;
    font-size: 14px;
    font-weight: 700;
}

#detail .detail-product .read_less a:after {
    content: "";
    width: 0;
    right: 0;
    border-bottom: 6px solid #004e7f;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 5px;
}

#detail .detail-product .box-round-grey3 {
    border: 1px solid #ebedf0;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 12px 16px;
    width: 100%;
}

#detail .detail-product .row-1 {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px
}

#detail .detail-product .row-1:last-child {
    margin-bottom: 0
}

#detail .detail-product .row-1 .r1 {
    width: 145px;
    float: left;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: #2c2f36;
    margin-right: 8px
}

#detail .detail-product .row-1 .r2 {
    float: left;
    width: calc(100% - 153px);
    color: #2c2f36;
    font-size: 15px;
    line-height: 20px;
}

#detail .detail-product .row-1 .r2 a {
    color: #1f648f;
}

.product-seo-tag {
    padding: 16px 0 4px 0
}

.product-seo-tag ul li {
    float: left;
    padding: 0;
    margin-bottom: 8px
}

.product-seo-tag .seo-tag-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #2c2f36;
    margin-bottom: 16px;
    font-family: 'Roboto', sans-serif;
}

.product-seo-text * {
    color: #747c87 !important;
    line-height: 24px !important;
    font-family: Roboto, Arial !important
}

.product-seo-text {
    padding: 16px 0 8px 0
}

.product-seo-text strong,
.product-seo-text strong * {
    font-weight: bold;
    color: #747c87
}

.product-seo-text a {
    color: #474d57
}

.product-seo-text a:hover,
.product-seo-text a:hover * {
    color: #004e7f !important;
    text-decoration: none
}

.product-seo-text a:hover {
    border-bottom: 1px solid #004e7f
}

.product-seo-text div:last-child {
    padding-bottom: 0
}

.product-seo-text ul li {
    list-style: outside none disc;
    margin-left: 25px
}

.product-seo-text ol {
    margin-left: 25px
}

@media only screen and (max-width:1024px) {
    .product-seo-tag {
        padding: 16px 0 8px 0
    }
}

.ul-round li a {
    padding: 6px 12px;
    margin: 0 8px 0 0;
    vertical-align: middle;
    background: #f5f6f7;
    border-radius: 20px;
    color: #2c2f36;
    line-height: 20px;
    position: relative;
    display: inline-block;
    font-size: 14px;
}

.ul-round li a:hover {
    background: #ebedf0;
}

.fa-pointer {
    cursor: pointer;
}

.btn-submit {
    background: var(--primary);
    border-radius: 3px;
    width: 200px;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #FFFFFF;
    text-transform: uppercase;
    border: 1px solid;
    border-color: #ed9c28 #ed9c28 #d18211;
    margin-top: 15px;
}

.btn-submit:hover {
    background: #d08200;
    border-color: #ed9c28 #ed9c28 #d18211;
}

.loadContactForm .nv-fullbg {
    padding: 15px 80px;
}

.list-news .item-news {
    border-bottom: 1px solid #ebedf0;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.list-news .item-news:last-child {
    border-bottom: none;
}

.list-news .item-news figure img {
    width: 100%;
}

.list-news .item-news .title-news {
    font-size: 24px;
}

.list-news .item-news .desc-news {
    font-size: 15px;
}

.list-news .item-news .text-muted {
    font-size: 14px;
    margin-bottom: 8px;
}

.block_tophits li {
    border-bottom: 1px solid #ebedf0;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.block_tophits li:last-child {
    border-bottom: none;
}

.block_tophits img {
    width: 100%;
}

.detail-news figure .detail-new-img {
    width: 100%;
    border-radius: 10px;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none;
}

.collapse.navbar-collapse:not(.show) {
    top: -100%;
}

.choose-contact {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.choose-contact .messanger {
    padding: 6px 0;
    text-decoration: none;
    transition: 0.5s;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.choose-contact .messanger svg {
    width: 20px;
    height: 20px;
}

.choose-contact .messanger span {
    line-height: 45px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg, #c78a34 0%, #f4b11a 100%);
}

.choose-contact .messanger p {
    margin: 0;
    color: #fffe03;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    right: 58px;
    background: rgb(0 0 0 / 60%);
    min-width: 95px;
    padding: 2px 10px 1px;
    border-radius: 5px;
    display: none;
}

.choose-contact .messanger p::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0px 8px 8px;
    border-color: transparent transparent transparent rgb(0 0 0 / 60%);
    position: absolute;
    right: -8px;
    top: 4px;
}

.choose-contact .messanger:hover p {
    display: block;
    transition: all 300ms ease;
}

.scroll-to-top {
    position: fixed;
    right: 22px;
    bottom: 200px;
    width: 44px;
    height: 44px;
    color: #fff;
    font-size: 14px;
    line-height: 44px;
    border-radius: 50%;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: linear-gradient(180deg, #c78a34 0%, #f4b11a 100%);
    display: none;
    transition: all .3s ease;
}

.scroll-to-top:hover {
    background: #fff;
    color: #cc8e32;
    border: 1px solid #c78a34;
}

.img-box img {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .project .detail-project a {
        position: unset;
    }
    .main-menu .navbar ul {
        align-items: baseline;
        padding-left: 10px;
    }
    .main-menu .navbar ul.dropdown-menu {
        box-shadow: none;
        border: none;
        position: absolute;
    }
    .navbar .dropdown:hover>ul {
        opacity: 1;
        visibility: visible;
        position: relative;
    }
    .introduce .desc,
    .search-banner {
        width: 95%;
    }
    .search-banner .btn {
        margin-top: 20px;
        width: 100%;
        padding: 13px 20px;
    }
    h5.label-filter {
        margin-top: 15px;
    }
    .introduce #block {
        padding-top: 165px;
    }
    .parallax section {
        left: 0;
        transform: none;
        width: 100%;
        bottom: 145px;
    }
    .parallax section h2 {
        font-size: 30px;
    }
    #slide-utility .desc {
        margin-bottom: 15px;
    }
    #home-usp .usp .item {
        border-right: none !important;
        padding: 15px;
        overflow: hidden;
    }
    #home-usp .usp>.row {
        padding: 5px;
    }
    .swiper-container {
        padding: 0 15px;
    }
    .collapse.navbar-collapse {
        position: fixed;
        top: 70px;
        left: 0;
        background: #fff;
        width: 100%;
        box-shadow: 0 5px 5px rgb(165 165 165 / 35%);
    }
    #header>div.container {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
    .main-header {
        order: 1;
        width: 33%;
        margin: unset;
        justify-content: center;
    }
    .main-menu {
        order: 0;
        width: 33%;
        margin: unset;
    }
    .hot-line {
        order: 2;
        width: 33%;
        margin-left: unset !important;
    }
    .hot-line a {
        display: none;
    }
    .select2-container .select2-selection--single {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .introduce #block {
        padding-top: 100px;
    }
}

.home-bds .box-item .box-img {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.home-bds .box-item .box-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: all ease 700ms;
}

.home-bds {
    background: #F5F1E6;
}

.home-bds .box-item .box-content h4 a {
    font-size: 16px;
    min-height: 56px;
    line-height: 28px;
    overflow: hidden;
    transition: all ease 0.4s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-family: 'Roboto', sans-serif;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.home-bds .box-item:hover .box-content h4 a {
    color: var(--primary);
}

.home-bds .box-item:hover img {
    transform: scale(1.1);
}

.home-bds .box-item .box-img {
    margin-bottom: 0;
}

.home-bds .box-item .box-content {
    padding: 10px 15px;
    background: #fff;
}

.home-bds .box-item {
    margin-bottom: 15px;
}