:root{
    --mainColor: #C89E4A;
}
html {
    scroll-behavior: smooth;
}
body{
    position: relative;
    font-family: 'Noto Serif';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
ul{
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
a{
    color: #333;
    text-decoration: none;
}
main{
    flex: 1;
    margin-top: 75px;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.mx-15{
    margin: 0 -15px;
}
.px-15{
    padding: 0 15px;
}
#scrollToTop{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--mainColor);
    color: #fff;
    border-radius: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    display: none;
    cursor: pointer;
    text-align: center;
}
#header{
    position: fixed;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 40px 0px rgba(22, 107, 165, 0.2);
    z-index: 99;
    transition: ease-in-out 0.2s all;
}
.item-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}
.item-logo-mobile img,
.item-logo img{
    height: 45px;
}
.item-nav{
    display: flex;
    align-items: center;
}
.item-nav li{
    padding-right: 30px;
}
.item-nav li a{
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}
.item-nav li a::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #333;
    transform: translateX(-50%);
    transition: ease-in-out 0.2s all;
}
.item-nav li a.active::after,
.item-nav li a:hover::after{
    width: 40px;
    transition: ease-in-out 0.2s all;
}
.item-header-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.item-header-right img{
    cursor: pointer;
}
.item-show-menu,
.item-show-search{
    background: var(--mainColor);
    color: #fff;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
}
.image-lang{
    opacity: 0.4;
}
.item-show-menu{
    display: none;
}
.show-search .wrapper-search{
    transform: scale(1);
}
.wrapper-search{
    position: fixed;
    z-index: 999;
    background-color: #fff;
    display: flex;
    height: 100vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: all 0.2s;
}
.form-search{
    width: 100%;
    max-width: 500px;
    position: relative;
}
.form-search input{
    border: none;
    border-bottom: 1px solid var(--mainColor);
    border-radius: 0;
    padding: 10px 50px 10px 0;
    height: 50px;
    background-color: transparent;
    width: 100%;
}
.form-search button{
    width: 50px;
    height: 50px;
    border-radius: 0px;
    font-size: 25px;
    color: var(--mainColor);
    padding: 5px 10px;
    text-align: center;
    line-height: 30px;
    position: absolute;
    right: 0;
    top: 0;
}
.btn-close-search{
    position: fixed;
    z-index: 1000;
    top: 15px;
    right: 30px;
    font-size: 30px;
    border-radius: 0;
    line-height: 30px;
    padding: 6px 10px;
    border: none;
    color: var(--mainColor);
}
.menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    z-index: 9999;
    text-align: center;
    padding: 50px 20px 0;
    transition: ease-in-out 0.4s;
    opacity: 0;
}
.show-menu .menu-mobile{
    width: 100%;
    opacity: 1;
}
.menu-mobile .item-hide-menu{
    position: absolute;
    font-size: 30px;
    color: var(--mainColor);
    top: 15px;
    right: 30px;
}
.menu-mobile ul li{
    margin-bottom: 15px;
    font-size: 14px;
}
.item-logo-mobile{
    margin: auto;
    padding-bottom: 30px;
}
.my-slider{
    position: relative;
}
.item-slider{
    width: 100%;
    height: 850px;
}
.slick-arrow{
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    font-size: 18px;
    line-height: 45px;
    text-align: center;
    background-color: var(--mainColor);
    color: #fff;
    z-index: 2;
    cursor: pointer;
}
.slick-prev{
    left: 15px;
}
.slick-next{
    right: 15px;
}
.my-slider .slick-arrow{
    top: 50%;
}
.section-index{
    position: relative;
    padding: 40px 0;
}
.section-index .container{
    max-width: 1600px;
}
.item-index{
    position: relative;
    transition: all 0.2s ease-in-out;
}
.item-index img{
    transform: scale(1, 1);
    transition: all 0.8s ease-in-out;
    height: 280px;
}
.item-index-image{
    position: relative;
    overflow: hidden;
}
.icon-hover{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 2;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.item-index-title{
    padding: 15px 20px;
    border: 1px solid #EFEFEF;
    background-color: #fff;
    line-height: 1.6;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mainColor);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.btn-read-more{
    color: var(--mainColor);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    border-color: var(--mainColor);
    padding: 10px 20px;
    border-radius: 0;
    overflow: hidden;
}
.btn-read-more span{
    position: relative;
    z-index: 1;
}
.btn-read-more::before {
    width: 100%;
    height: 50%;
    left: 0px;
    top: -50%;
    position: absolute;
    content: "";
    background-color: var(--mainColor);
    z-index: 0;
    transition: 0.2s ease-in-out;
}
.btn-read-more::after {
    width: 100%;
    height: 50%;
    left: 0px;
    bottom: -50%;
    position: absolute;
    content: "";
    background-color: var(--mainColor);
    z-index: 0;
    transition: 0.2s ease-in-out;
}
.item-breadcrumb{
    position: relative;
    padding: 60px 0;
    text-align: center;
}
.item-breadcrumb h2{
    position: relative;
    color: var(--mainColor);
    font-weight: 400;
    text-transform: uppercase;
}
.item-breadcrumb h2::after{
    position: absolute;
    content: '';
    width: 50px;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    height: 2px;
    background: var(--mainColor);
}
.footer{
    position: relative;
    padding: 40px 0 0;
    color: #333;
    background: #FFF8E1;
}
.footer-title{
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.list-contact li{
    position: relative;
    margin-bottom: 5px;
    padding-left: 25px;
}
.list-contact li i{
    position: absolute;
    left: 0;
    top: 5px;
}
.list-contact li a{
    color: #333;
}
.footer-copyright{
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}
.video-wrapper{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.item-content{
    overflow: hidden;
}
.item-content img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
}
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    font-size: 14px;
    font-weight: bold;
}
.pagination a {
    color: black;
    padding: 8px 15px;
}
.pagination a.active {
    background-color: var(--mainColor);
    color: white;
    border-radius: 5px;
}
.pagination a:hover:not(.active) {
    background-color: #ddd;
    border-radius: 5px;
}
#submitFormContact .form-control{
    color: #333;
    background-color: transparent;
    border-radius: 0;
    border-color: #333;
    font-size: 14px;
}
#submitFormContact .form-control::placeholder{
    color: #333;
}
#submitFormContact label{
    font-size: 12px;
}
.btn-submit{
    border-radius: 0;
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
    padding: 10px 25px;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    background-color: transparent;
    transition: all 0.2s ease-in-out;
    font-weight: 700;
}
.btn-submit:hover{
    background-color: var(--mainColor);
    color: #fff;
}
.item-index-content{
    position: relative;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    border: 1px solid #EFEFEF;
    background-color: #fff;
    border-top: 0;
}
.tag-blog{
    display: block;
    margin-bottom: 10px;
    color: #ca9f5c;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}
.title-blog{
    line-height: 1.6;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mainColor);
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.title-blog a{
    color: var(--mainColor);
}
.title_break{
    width: 40px;
    margin: 15px auto;
    border-top: 2px solid var(--mainColor);
}
.desc-blog{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
}
.rating {
    display: flex;
}
.rating input {
    display: none;
}
.rating label {
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
}
.rating input:checked ~ label i {
    color: #ccc;
}
.rating-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 10px;
    border: 1px solid #555;
    justify-content: center;
    padding: 15px 0;
}
.rating-bars {
    width: 250px;
}
.bar-item {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    font-size: 14px;
}
.bar-item span {
    width: 15px;
}
.bar {
    flex: 1;
    height: 10px;
    background: #eee;
    margin-left: 8px;
    border-radius: 3px;
    overflow: hidden;
}
.fill {
    height: 100%;
    background: #f5b301;
}
.rating-info {
    text-align: center;
}
.avg {
    font-size: 30px;
    font-weight: bold;
    color: #f5b301;
}
.stars {
    color: #f5b301;
    margin: 5px 0;
}
.reviews {
    font-size: 13px;
    color: #777;
}
.feedback-card{
    position: relative;
    background: #fff;
    box-shadow: -3px 2px 40px 0px rgba(128, 144, 174, 0.2);
    border-radius: 10px;
    padding: 20px;
}
.title-feedback,
.name-feedback{
    font-weight: 700;
    font-size: 18px;
    color: #333;
}
.image-feedback{
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    justify-content: start;
}
.image-feedback img{
    width: 100px;
    height: 100px;
    border-radius: 10px;
}
.select_feedback{
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: red;
    line-height: 35px;
}
.select_feedback a{
    padding: 2px 5px;
    border-radius: 10px;
    color: #fff;
    white-space: nowrap;
}
.link-google{
    background: #4285F4;
}
.link-google:hover{
    background: #3367D6;
}
.no-link-google{
    background: #888;
}
.no-link-google:hover{
    background: #666;
}
.social-share{
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}
.social-share a{
    border-radius: 50%;
    height: 30px;
    width: 30px;
    color: #fff;
    line-height: 30px;
}
.social-share .facebook{
    background: #1877F2;
}
.social-share .twitter{
    background: #1DA1F2;
}
.social-share .pinterest{
    background: #E60023;
}
@media (min-width: 1025px) {
    .image-lang:hover{
        opacity: 1;
    }
    .item-index:hover img{
        transform: scale(1.2, 1.2);
        transition: all 0.8s ease-in-out;
    }
    .item-index:hover{
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        transition: all 0.2s ease-in-out;
    }
    .item-index:hover .icon-hover{
        opacity: 1;
        transition: all 0.4s ease-in-out;
    }
    .btn-read-more:hover {
        color: #fff;
    }
    .btn-read-more:hover::before {
        top: 0px;
    }
    .btn-read-more:hover::after {
        bottom: 0px;
    }
    .list-contact li a:hover{
        text-decoration: underline;
    }
}
@media (max-width: 992px) {
    .item-show-menu{
        display: inline-block;
    }
    .item-nav{
        display: none;
    }
    .item-slider{
        height: auto;
    }
    .item-breadcrumb{
        padding: 40px 0;
    }
}
@media (max-width: 600px) {
    .slick-arrow{
        width: 35px;
        height: 35px;
        font-size: 12px;
        line-height: 35px;
    }
    .form-search{
        max-width: 350px;
    }
    .rating-summary {
        gap: 20px;
    }
    .rating-bars{
        width: 200px;
    }
}