
:root{
    --color-main: #dc2626;
    --color-font: #374151;
    --color-title: #1f2937;
    --color-border: #E9ECEE;
    --color-red: #dc2626;
    --color-yellow: #fbbf24;
    --bg-yellow: #f59e0b;
    --number-px: 80px
}
@keyframes bounce {
    0%,to {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(.8,0,1,1)
    }

    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0,0,.2,1)
    }
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}
a:not(.item):focus,
a:not(.item):focus-visible,
input,
input:focus,
button,
button:focus,
select,
select:focus,
select:focus-visible,
textarea,
textarea:focus,
textarea:focus-visible {
    box-shadow: none !important;
    /* border: none; */
    outline: none;
}

.border-0{
    border: none!important;
}
body,html {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-weight: 400;
}
body{
    font-size: 16px;
    line-height: calc(24 / 16);
    color: var(--color-font);
}
*,
::before,
::after {
    box-sizing: border-box;
}
ul{
    margin: 0;
    list-style: none;
    padding: 0;
}
p {
    margin-bottom: 0;
}

a {
    text-decoration: unset;
    transition: all 0.4s ease 0s;
    display: inline-block;
    color: var(--color-font);
}

a:hover {
    text-decoration: none;
    transition: all 0.4s ease 0s;
}

a:hover * {
    transition: all 0.4s ease 0s;
}

.btn {
    transition: all .4s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: max-content;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: calc(20 / 14);
    font-weight: 700;
}
.btn.btn-color-main{
    background: var(--color-main);
    color: white;
    border: none;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 15.4494px 20.4494px -4.08988px, rgba(0, 0, 0, 0.1) 0px 6.17975px 8.17975px -5.08988px;
}
.btn.btn-color-main:hover{
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.btn.btn-border-main{
    background-color: transparent;
    border: 2px solid var(--color-main);
    color: var(--color-main);
}

.btn.btn-border-main:hover{
    border-color: var(--color-font);
    color: var(--color-font);
}
.btn.btn-color-yellow{
    background: var(--bg-yellow);
    color: white;
    border: none;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 15.4494px 20.4494px -4.08988px, rgba(0, 0, 0, 0.1) 0px 6.17975px 8.17975px -5.08988px;
}
.btn.btn-color-yellow:hover{
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        --tw-bg-opacity: 1;
    background-color: rgb(217 119 6 / var(--tw-bg-opacity, 1));
}
.btn.btn-color-white{
    background: white;
    color: var(--color-main);
    border: none;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 15.4494px 20.4494px -4.08988px, rgba(0, 0, 0, 0.1) 0px 6.17975px 8.17975px -5.08988px;
}
.btn.btn-color-white:hover{
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        --tw-bg-opacity: 1;
    background-color: #f3f4f6;
}
.box-image{
    overflow: hidden;
    transition: all .4s;
}
.box-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s;
}
.box-image:not(.not-scale):hover img{
    /* transform: scale(1.3); */
}

.bg-pink{
    background-color: #F5EDE7;
}
.link-more{
    color: var(--color-main);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all .3s;
}
.color-main{
    color: var(--color-main);
}
.color-main-gradient{
    background: linear-gradient(90deg, #008F51 0%, #47BB71 84.67%);
}
.color-white{
    color: white;
}
@media (min-width: 1200px) {
    .container{
        max-width: 1536px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .row{
        margin-left: -16px;
        margin-right: -16px;
    }
    .row [class*=col-]{
        padding-left: 16px;
        padding-right: 16px;
    }
}
.container-child{
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}
.box-image{
    width: 100%;
    display: inline-block;
}
.box-image img{
    width: 100%;
    height: 100%;
}
.line-ell{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.line-2{
    -webkit-line-clamp: 2;
}
.line-3{
    -webkit-line-clamp: 3;
}
.line-5{
    -webkit-line-clamp: 5;
}
.is-hidden{
    display: none;
}
/* HEADER */
/* HEADER */
/* menu main */
/* menu main */
/* menu main */
.title-page{
    font-family: Pacifico, serif;
        font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    color: var(--color-red);
    text-transform: capitalize;
    margin-bottom: 0;
}
header#header{
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all .3s;
    background-color: #fffffff2;
}
header#header.active{
    box-shadow: 0px 1px 4px 0px #19213D14;
}
header#header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header#header #nav{}
header#header #nav .wrap-menu{
    display: flex;
    align-items: center;
    gap: 30px;
}
header#header #nav .box-action-header.is-mobile{
    display: none;
}
header#header #nav .wrap-menu .item-menu a{
    font-weight: 500;
    font-size: 16px;
    color: var(--color-font);
}
header#header.active #nav .wrap-menu .item-menu a{
    color: var(--color-font);
}
header#header #nav .wrap-menu .item-menu a:hover{
    color: var(--color-red);
}
header#header .box-action-header{
    display: flex;
    align-items: center;
    gap: 16px;
}

header#header .box-action-header .toggle-menu{
    display: none;
}
header#header.active .box-action-header .btn-border-white{
    border-color: var(--color-font);
    color: var(--color-font);
}
header#header .box-action-header .btn-border-white:hover{
    border-color: var(--color-red);
    color: var(--color-red);
}
header#header.active .logo img{
    width: auto;
    height: 80px;
}

/*  */
section{
    padding: 85px 0;
}
#banner-top{

    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}
#banner-top .content-banner{
    text-align: center;
    width: 100%;
    max-width: 896px;
    margin: 0 auto;
}
.content-banner .title-section-page{
    font-size: 60px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}
.content-banner .title-section-page .text-amber{
    color: var(--color-yellow);
}
.content-banner .text-leading{
    color: #e5e7eb;
    font-size: 24px;
    line-height: calc(32 / 24);
    margin-bottom: 32px;
}
.content-banner .box-action-banner{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.content-banner .box-action-banner .btn{
    display: flex;
    align-items: center;
    padding: 16px 32px;
    font-size: 18px;
    line-height: calc(28 / 18);
    font-weight: 600;
}
.content-banner .box-action-banner .btn i{
    margin-right: 8px;
}
.content-banner .box-about-shop{
    margin-top: 48px;
    margin-inline: -12px;
}
.content-banner .box-about-shop [class*="col-"]{
    padding-inline: 12px;
}
.content-banner .box-about-shop .item-shop{
        background-color: #ffffff1a;
        color: white;
        border-radius: 8px;
        padding: 24px;
        --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    text-align: center;
}
.content-banner .box-about-shop .item-shop .number{
    color: var(--color-yellow);
    font-size: 30px;
    line-height: calc(36 / 30);
    font-weight: 700;
}
.content-banner .box-about-shop .item-shop .text{
    font-size: 14px;
    line-height: calc(20 / 14);
}
#banner-top .arrow-down{
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background-color: transparent;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
#banner-top .arrow-down i{
    animation: bounce 1s infinite;
    transition: all .3s;

}
#banner-top .arrow-down:hover{
    color: var(--bg-yellow);
}

#about-us{
    background-color: #f9fafb;
}
.box-title-main{
    text-align: center;
    margin-bottom: 64px;
}
.box-title-main .title-section{
    font-size: 36px;
    line-height: calc(40 / 36);
    font-weight: 700;
    padding-bottom: 24px;
    position: relative;
    margin-bottom: 24px;
}
.box-title-main .title-section:not(.not-br)::before{
    content: "";
    width: 96px;
    height: 4px;
    background-color: var(--color-main);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.box-title-main .title-section.not-br{
    padding-bottom: 0;
    margin-bottom: 0;
}
.box-title-main .des{
    font-size: 20px;
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.625;
}
#about-us .wrap-banner-content-about{
    row-gap: 30px;
    align-items: center;
    margin-bottom: 64px;
}
.wrap-banner-content-about .box-image{
    aspect-ratio: 552 / 320;
    border-radius: 8px;
    margin-right: 24px;
}
.wrap-banner-content-about .box-content-about{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 24px;
}
.item-about{
    display: flex;
    gap: 16px;

}
.item-about .box-icon{
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: var(--color-main);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-about .contents .title{
    font-size: 20px;
    line-height: calc(28 / 20);
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 8px;
}
.item-about .contents .text{
    font-size: 16px;
    font-weight: 500;
    color: #4b5563;
}

.title-customer{
    margin-bottom: 48px;
}
.list-customer{
    row-gap: 20px;
}
.item-about-customer{
    background-color: white;
    padding: 24px;
    border-radius: 8px;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    height: 100%;
}
.item-about-customer .list-rate{
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.item-about-customer .list-rate i{
    color: var(--color-yellow);
    font-size: 18px;
    line-height: calc(28 / 18);
}
.item-about-customer .text-note{
    color: #4b5563;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 16px;
}
.item-about-customer .box-customer{}
.item-about-customer .box-customer .name-author{
    font-weight: 600;
    color: #1f2937;
}
.item-about-customer .box-customer .category{
    font-size: 14px;
    line-height: calc(20 / 14);
}

.tab-control-food{
    justify-content: center;
    margin-bottom: 48px;
    gap: 8px;
    border: none;
}
.tab-control-food .nav-item .nav-link{
    padding: 12px 24px;
    background-color: #f3f4f6;
    border-radius: 100px;
    color: #374151;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
    border: none;
    text-transform: capitalize;
    display: flex;
    gap: 8px;
    align-items: center;
}
.tab-control-food .nav-item .nav-link i{
    font-size: 14px;
}
.tab-control-food .nav-item .nav-link:hover{
    background-color: #e5e7eb;
}
.tab-control-food .nav-item .nav-link.active{
    background-color: var(--color-main);
    color: white;
    font-weight: 600;
}
.item-food{
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    height: 100%;
    transition: all .3s;
}
.item-food:hover{
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.item-food .box-image{
    aspect-ratio: 362 / 192;
    position: relative;
}
.item-food .box-image .number{
    font-weight: 700;
    background-color: var(--color-main);
    color: white;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    border-radius: 50px;
}
.item-food .box-content{
    padding: 24px;
}
.item-food .box-content .title{
    font-size: 20px;
    line-height: calc(28 / 20);
    color: #1f2937;
    margin-bottom: 8px;
    font-weight: 700;
}
.item-food .box-content .des{
    color: #4b5563;
}

.tab-content-food{
    margin-bottom: 48px;
}
.tab-content-food .row{
    row-gap: 20px;
}
.box-down-menu-food{
    text-align: center;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 8px;
}
.box-down-menu-food .title{
    color: #1f2937;
    font-size: 24px;
    line-height: calc(32 / 24);
    font-weight: 700;
    margin-bottom: 16px;
}
.box-down-menu-food .des{
    color: #4b5563;
    margin-bottom: 24px;
}
.box-down-menu-food .btn{
    gap: 8px;
    padding: 14px 32px;
}
#space-view{
    background-color: #f9fafb;
}
.item-space{
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    height: 100%;
    transition: all .3s;
}
.item-space:hover{
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.item-space .box-image{
    aspect-ratio: 560 / 256;
    position: relative;
}
.item-space .box-image .box-icon{
    background-color: var(--color-main);
    padding: 12px;
    border-radius: 100px;
    position: absolute;
    top: 16px;
    left: 16px;
}
.item-space .box-image .box-icon i{
    font-size: 16px;
    line-height: calc(28 / 20);
    color: white;
}
.item-space .box-content{
    padding: 24px;
    color: #4b5563;
}
.item-space .box-content .box-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.item-space .box-content .box-title .title{
    color: #1f2937;
    font-size: 24px;
    line-height: calc(32 / 24);
    font-weight: 700;
    margin: 0;
}
.item-space .box-content .box-title .number-size{
    padding: 4px 12px;
    font-size: 14px;
    line-height: calc(20 / 14);
    font-weight: 600;
    background-color: #fef3c7;
    color: #92400e;
    border-radius: 100px;
}
.item-space .box-content .des{
    margin-bottom: 16px;
}
.item-space .box-content .text-note-hot{
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: inherit;
}
.item-space .box-content .list-note{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}
.item-space .box-content .list-note li{
    flex: 0 0 calc(50% - 4px);
    max-width: calc(50% - 4px);
    font-size: 14px;
    line-height: calc(20 / 14);
    display: flex;
    align-items: center;
}
.item-space .box-content .list-note li i{
    margin-right: 8px;
    font-size: 12px;
    color: #22c55e;
}
.list-space{
    row-gap: 32px;
    margin-bottom: 64px;
}
.box-down-menu-food.bg-red{
    background-color: var(--color-main);
}
.box-down-menu-food.bg-red .title,
.box-down-menu-food.bg-red .des{
    color: white;
}
.box-down-menu-food .box-action{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.form-control{
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}
.wrap-form-booking{
    row-gap: 30px;
}
.wrap-form-booking .wrap-form{
    margin-right: 16px;
    height: 100%;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 8px;
}
.wrap-form-booking .wrap-form .row-form{
    row-gap: 24px;
}
.wrap-form-booking .title-form{
    font-size: 24px;
    line-height: calc(32 / 24);
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 24px;
}
.wrap-form-booking .row-form{
    margin-inline: -8px;
}
.wrap-form-booking [class*="col-"]{
    padding-inline: 8px;
}

.wrap-form-booking .form-control{
    border-color: #d1d5db;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: calc(20 / 14);
    font-weight: 500;
}

.wrap-form-booking label{
    font-size: 14px;
    line-height: calc(20 / 14);
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}
.wrap-form-booking .wrap-form .btn{
    width: 100%;
    margin-top: 40px;
    font-size: 18px;
    line-height: calc(28 / 18);
    font-weight: 600;
    padding: 16px 32px;
    gap: 8px;
    text-transform: capitalize;
}
.wrap-form-booking .wrap-location{
    margin-left: 16px;
}
.list-location li{
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.list-location li .box-icon{
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main);
    color: white;
}
.list-location li .box-icon.fb{
    background-color: #2563eb;
}
.list-location li .box-icon.hotline{
    background-color: #f59e0b;
}
.list-location li .box-icon.clock{
    background-color: #16a34a;
}
.list-location li .contents{
    margin-top: 5px;
}
.list-location li .contents .label{
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 16px;
    line-height: calc(24 / 16);
}
.list-location li .contents .text{
    color: #4b5563;
    font-weight: 500;
}
.list-location li .contents .map{
    font-size: 14px;
    line-height: calc(20 / 14);
    font-weight: 400;
    margin-top: 4px;
}
.list-location li .contents .map i{
    font-size: 12px;
    margin-right: 4px;
}
.list-location li .contents .tel{
    font-weight: 700;
    font-size: 18px;
}
.list-location li .contents .tel:hover{
    color: var(--color-main);
}
.list-location li .contents .hotline{
    color: #d97706;
    font-weight: 700;
    font-size: 18px;
}
.list-location li .contents .hotline:hover{
    color: #c26a05;
}
.list-location li .contents .fb{
    line-height: calc(20 / 14);
    display: flex;
    align-items: center;
    gap: 4px;
    color: #2563eb;
    font-weight: 500;
}
.list-location li .contents .fb i{
    font-size: 12px;
}
.wrap-location .title-map{
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: calc(24 / 16);
}
.wrap-frame-map{
    width: 100%;
}
.wrap-frame-map iframe{
    width: 100%;
}
#faq{
    background-color: #f9fafb;
}
.wrap-faq{
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin-bottom: 64px;
}
.item-faq{
        --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    background-color: white;
    border-radius: 8px;
}
.item-faq .box-title{
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s;
    cursor: pointer;
}
.item-faq .box-title:hover{
    background-color: #f9fafb;
}
.item-faq .box-title .title{
    color: #1f2937;
    font-size: 18px;
    line-height: calc(28 / 18);
    padding-right: 16px;
    font-weight: 700;
    margin: 0;
}
.item-faq .box-title .box-icon-toggle-faq{
    color: var(--color-main);
    font-size: 18px;
}
.item-faq .box-content{
    padding: 0 24px 16px;
    display: none;
}
.item-faq .box-content .des{
    color: #4b5563;
    line-height: 1.625;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

footer#footer{
    background-color: #1f2937;
    padding-block: 48px;
    color: #d1d5db;
    font-weight: 500;
}
footer#footer a{
    color: #d1d5db;
}
footer#footer a:hover{
    color: white;
}
footer#footer .title-page{
    margin-bottom: 16px;
}
footer#footer .list-social{
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}
footer#footer .list-social a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main);
    border-radius: 100%;
}
footer#footer .list-social a.phone{
    background-color: #16a34a;
}
footer#footer .list-social a.fb{
    background-color: #2563eb;
}
footer#footer .list-social a i{
    font-size: 14px;
}
footer#footer .title-footer{
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 16px;
    color: white;
    text-transform: capitalize;
    font-weight: 700;
}
footer#footer .list-menu-footer{
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}
footer#footer .list-menu-footer li{
    display: flex;
    gap: 8px;
}
footer#footer .list-menu-footer a:hover{
    color: white;
}
footer#footer .list-menu-footer .box-icon{
    min-width: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer#footer .list-menu-footer .box-icon.calendar i{
    color: #fbbf24;
}
footer#footer .list-menu-footer .box-icon i{
    color: #f87171;
}

footer#footer .box-booking .box-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer#footer .box-booking .btn{
    width: 100%;
    margin-top: 8px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: calc(20 / 14);
    justify-content: flex-start;
    color: white;
    gap: 8px;
}
footer#footer .row{
    row-gap: 30px;
}
footer#footer .footer-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    line-height: calc(20 / 14);
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #374151;
    padding-top: 32px;
    margin-top: 32px;
}
.wrap-contact-fixed{
    position: fixed;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}
.wrap-contact-fixed .item-contact{
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main);
    color: white;
    border-radius: 100%;
}
.wrap-contact-fixed .item-contact.phone{
    background-color: #16a34a;
}
.wrap-contact-fixed .item-contact.facebook{
    background-color: white;
}
.wrap-contact-fixed .item-contact.facebook img{
    width: 63px;
}
.hide{
    display: none!important;
}

.toast{
    position: fixed;
    bottom: 10px;
    left: 10px;
    width: 250px;
    background-color: white;
    border-radius: 12px;
    z-index: 99;
    padding: 12px;
    border: none;
    display: flex;
    gap: 12px;

}
/* .toast.show{
    display: flex!important;
} */
.toast .box-icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #16a34a3e;
}
.toast .box-icon i{
    color: #16a34a;
}
.toast .text-big{
    position: relative;
    font-weight: 600;
    color: #16a34a;
    /* padding-left: 20px; */
    display: flex;
    align-items: flex-start;
    font-size: 14px;
}
.toast .text-big::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #16a34a;
    display: flex;
    margin-top: 8px;
    margin-right: 6px;
}
.toast .name{
    font-weight: 700;
    margin-top: 5px;
}
.toast .list-toast{}
.toast .list-toast li{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-top: 2px;
}
.toast .list-toast .icon{}
.toast .list-toast .icon i{
    font-size: 10px;
}
.toast .list-toast .text{}

.help-block{
    font-size: 10px;
    color: red;
}











