.bg-main {
    background: var(--color-main) !important;
}
.fs-12{
    font-size: 1.2rem !important;
}
.fs-13{
    font-size: 1.3rem !important;
}
.fs-14{
    font-size: 1.4rem !important;
}
.fs-15{
    font-size: 1.5rem !important;
}
.fs-16{
    font-size: 1.6rem !important;
}
.fs-18{
    font-size: 1.8rem !important;
}
.fs-20{
    font-size: 2rem !important;
}
.fs-22{
    font-size: 2.2rem !important;
}
.fs-35{
    font-size: 3.5rem !important;
}
.text-underline{
    text-decoration: underline;
}
.font-weight-500{
    font-weight: 500;
}
.font-weight-600{
    font-weight: 600;
}
.color-text {
    color: var(--color-text);
}
.font-lora{
    font-family: "Lora", serif;
}
.object-cover {
    object-fit: cover !important;
}
.hover .hover-img a:after {
    position: absolute;
    display: block;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51,49,50,.55);
    opacity: 0;
    -webkit-transition: opacity .23s;
    -o-transition: opacity .23s;
    transition: opacity .23s;
}
.hover:hover .hover-img a:after {
    opacity: 1;
}

header {
    -moz-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.09);
    -webkit-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.09);
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.1);
    position: relative;
}
.top-header>.container>.row>div, .setting-menu>.container>.row>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.setting-menu.fixed {
    margin: auto;
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: stuckMoveDown .6s;
    -moz-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.09);
    -webkit-box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.09);
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@keyframes stuckMoveDown {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(0)
    }
}
.setting-menu.fixed .menu-section > ul > li > a {
    height: 6.5rem;
    line-height: 6.5rem;
}

.setting-menu.fixed .logo-section img {
    height: 3rem;
}
.menu-left .menu-section > ul > li:first-child {
    margin-left: 0;
}

.menu-right .menu-section > ul > li:last-child {
    margin-right: 0;
}

.menu-left .menu-section > ul > li:last-child {
    margin-right: 2.5rem;
}
.swiper-button-prev, .swiper-button-next {
    background: var(--color-highlight);
    width: 4rem;
    height: 4rem;
    color: white;
}
.swiper:not(.swiper-slider-main) .swiper-button-prev, .swiper:not(.swiper-slider-main) .swiper-button-next {
    font-size: 1.4rem;
}
.swiper-slider-main .swiper-button-prev, .swiper-slider-main .swiper-button-next {
    background: rgba(0,0,0,0.5);
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    background: black;
    color: white;
    
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--color-highlight);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
.swiper-slider-main .btn {
    min-width: 18rem;
    max-width: 100%;
}
.swiper-slider-main .btn-submit-1:hover{
    background: var(--color-highlight) !important;
    color: white !important;
    border-color: var(--color-highlight) !important;
    
}

.swiper-slider-main .swiper-slide-active .swiper-slide--tile {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.4s;
}
.swiper-slider-main .swiper-slide-active .swiper-slide--description {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.4s;
}
.swiper-slider-main .swiper-slide-active .desc_short {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.4s;
}

.swiper-slider-main .swiper-slide-active .btn-slide {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.4s;
}
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}
.form-booking-home .title-box {
    border-right: 1px solid #53535D;
}
.form-booking-home .title-box i {
    color: #7fc142;
    position: absolute;
    top: 35%;
    right: -9%;
    border: 1px solid #53535D;
    border-radius: 50%;
    width: 30px;
    text-align: center;
    height: 30px;
    background: #282834;
    line-height: 28px;
}
.datepicker table {
    text-align: center;
}
.datetime-group i {
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    color: #848484;
}
.datepicker tbody tr > td.day {
    cursor: pointer;
}

.form-booking-home .form-control {
    height: calc(1.5em + 1.7rem + 4px);
}

.swiper-left .swiper-button-next {
    right: 0;
}

.swiper-left .swiper-button-prev {
    right: 5rem;
    left: inherit;
}
.swiper-left .swiper-button-prev, .swiper-left .swiper-button-next {
    top: unset;
    bottom: 0;
    transform: unset;
}
.item-album .swiper-slide a{
    cursor: pointer;
}
.item-album .swiper-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-highlight);
    z-index: 1;
    opacity: 0;
	visibility: hidden;
	transition: all .4s ease;
}
.item-album .swiper-slide:hover .overlay{
    opacity: 1;
	visibility: visible;
    opacity:0.9
}

.item-album .swiper-slide i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    width: 4.5rem;
	height: 4.5rem;
	border: 2px solid white;
	color: white;
	line-height: 4.1rem;
	border-radius: 50%;
}
.service-section .item {
    transition: all .4s ease;
}

.service-section .item img {
    height: 5.3rem;
    width: 5.3rem;
    object-fit: scale-down;
}
.service-section .item:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed white;
}
.service-section .item:hover {
	background: var(--color-highlight);
	border-color: var(--color-highlight) !important;
}
.service-section .item:hover img{
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.service-section .item:hover h4 {
	color: white;
}
.service-section .img-right{
    height: calc(100% - 3rem);
}
.testimonial-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.7;
}
.testimonial-section .swiper-slide img {
    width: 9rem;
    height: 9rem;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
}
.right>.row>div:last-child .article-item {
    border: none !important;
    padding-bottom: 0 !important;
}
.swiper .swiper-slide{
    height: auto;
}
footer{
    background: var(--color-main);
    margin-top: 3rem;
}
html {
    scroll-behavior: smooth;
}
.entire-info-website, .footer-menu-section li a {
    color: var(--gray-bold);
}
.footer-menu-section li {
    margin-bottom: 1.5rem;
}
.footer-menu-section li a:hover {
    color: var(--color-highlight);
}
.copyright-border {
    border-top:1px solid #3E3E49;
}
.social-section ul li {
    float: left;
    margin-right: 2rem;
}
.social-section ul li a {
    color: var(--gray-bold);
}
.social-section ul li a:hover{
    color: var(--color-highlight);
}
.breadcrumbs-section-bg {
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10% 0;
}
.breadcrumbs-section-bg:before {
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: black;
    opacity: 0.3;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.form-control {
    height: 5rem;
    border-color: #dedede;
    font-size: 1.5rem;
}
.contact-page .form-group {
    margin-bottom: 2.5rem;
}
.contact-page .title-description {
    line-height: 1.7;
}
.contact-page p {
    color: var(--color-text);
}
.title-article-detail {
    font-size: 3.5rem;
    font-family: "Lora", serif;
}
.product-image-detail .inner-image {
    padding-top: 75%;
}
.bootstrap-select>.dropdown-toggle {
    height: 5rem;
    padding: 0 1.25rem;
    line-height: 5rem;
}
.btn-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: center;
    color: white;
    font-size: 3rem;
    width: 6rem;
    height: 6rem;
    background: rgb(0 0 0 / 30%);
    line-height: 6rem;
    border-radius: 50%;
}
body {
  counter-reset: section;
}

.file-number::before {
  counter-increment: section;
  content: counter(section);
}
.list-file .article-title a{
    color: var(--color-main);
}

.box-category-content .category-content {
    max-height: 300px;
    overflow: hidden;
}

.box-category-content.transform-active .category-content {
    max-height: inherit;
}

.box-category-content .load-more {
    margin-top: 15px;
}

.box-category-content .load-more a {
    border: 1px solid var(--color-highlight);
    padding: 0.8rem 3rem;
    font-size: 16px;
    color: var(--color-highlight);
    font-weight: 600;
    display: inline-block;
}
.box-category-content .load-more a:hover{
    color: white;
    background: var(--color-highlight);
}
.box-category-content .load-more .btn-hide, .box-category-content.transform-active .load-more .btn-show {
    display: none;
}

.box-category-content.transform-active .load-more .btn-hide {
    display: inline-block;
}

.comment-section .list-comment:empty{
    margin: 0;
    padding: 0;
    border: 0;
}
.comment-section .list-comment:empty+.total-comment{
    display: none;
}

@media (min-width:992px) {
    .col-lg-3-custom {
        flex: 0 0 20%;
        max-width: 20%;
    }
    html {
        scroll-padding-top: 150px;
    }
}

@media (min-width:1000px) {
    .setting-menu-1 {
        display: none;
    }
}
@media (max-width:1200px) {
    .form-booking-home .title-box {
        border: none;
    }
    
    .form-booking-home .title-box i {
        display: none;
    }
}
@media (max-width:1000px) {
    .nh-admin-bar {
        display: none;
    }
    .setting-menu-2 {
        display: none;
    }
    .menu-section > ul li ul li a {
        padding-left: 3rem !important;
    }
    
}


@media (max-width:992px) {
    .swiper-slider-main, .swiper-slider-main .swiper-slide img {
        height: 45vh;
    }
    .swiper-slide--tile {
        font-size: 3rem;
    }
    .logo-section img {
        height: 3rem;
    }

}

@media (max-width:768px) {
    .footer-mb >.container>.row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width:767px) {
    .breadcrumbs-section-bg {
        padding:7% 0;
    }
    table {
        display: block;
        overflow-x: scroll;
		width: 100% !important;
    }
    .swiper-left .swiper-button-prev, .swiper-left .swiper-button-next {
        bottom: -1rem;
    }
}


