﻿@charset "UTF-8";
@import "base.css";

@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lexend:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Play:wght@400;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    --deep-red: #7c1a1a;
    --dark-brown: #32211c;
    --gold-dim: #ffbd19;
    --paper-color: #f4ece1;
    --text-main: #2c2c2c;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
    font-size: 16px;
    -webkit-text-size-adjust: none;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure {
    display: block;
}

img {
    vertical-align: bottom;
}

a {
    color: var(--mcolor);
    transition: all 0.3s;
}

    a:hover,
    a:active {
        text-decoration: none;
    }

table {
    width: 100%;
}

p {
    margin: 0 0 1.5em;
}

.section {
    padding: 0 0 30px;
}

p,
dd,
td,
th,
li {
    line-height: 1.9em;
}

#totop {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 10;
    margin-bottom: 0;
    width: 50px;
}

    #totop a {
        display: block;
        transition: all 0.5s;
    }

        #totop a:hover {
            opacity: 0.7;
        }

.btn_fixed {
    position: fixed;
    right: 20px;
    bottom: 250px;
    z-index: 10;
    margin: 0;
}

    .btn_fixed a {
        display: block;
        margin-bottom: 33px;
    }

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.bold {
    font-weight: bold;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
html {
    background: #f6f4e9;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: var(--paper-color);
    color: var(--text-main);
    line-height: 1.8;
}

#wrapper {
    min-width: 1200px;
    overflow: hidden;
}

.container {
    width: 1200px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}

img {
    max-width: 100%;
}

.sp {
    display: none;
}

h1 {
    display: none;
}

#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    background: transparent;
    color: white;
    -webkit-animation: remove-fixed 0.3s linear;
    -moz-animation: remove-fixed 0.3s linear;
    -ms-animation: remove-fixed 0.3s linear;
    animation: remove-fixed 0.3s linear;
}

    #header.fixed {
        background: var(--deep-red);
        -webkit-animation: header-fixed 0.6s;
        -moz-animation: header-fixed 0.6s;
        -ms-animation: header-fixed 0.6s;
        animation: header-fixed 0.6s;
    }

@keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

.h_main {
    padding: 10px 0;
    background: var(--deep-red);
}

    .h_main .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

#logo {
    margin: 0;
}

    #logo img {
        width: 80px;
    }

.h_phone {
    font-size: 19px;
    color: #006b84;
    margin: 0;
}

.h_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}

#gnavi {
    position: relative;
}

/*#gnavi::before {
        content: "";
        position: absolute;
        background: url(/assets/images/idx_bg.png) no-repeat center center / 100% auto;
        width: 22px;
        height: 22px;
        left: 0;
        top: calc(50% - 10px);
    }*/

.gnavi {
    display: flex;
    gap: 40px;
    /* padding-left: 70px; */
    align-items: center;
}

    .gnavi > li > a {
        background: none;
        border: none;
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        font-weight: 400;
        cursor: pointer;
        transition: color 0.3s;
        text-decoration: none;
        white-space: nowrap;
        padding: 0;
		font-weight: bold;
    }
    /* .gnavi > li > a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #000;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
} */
    .gnavi > li.active > a:after {
        width: 100%;
    }

    .gnavi > li.active > a, .gnavi > li:hover > a {
        color: var(--gold-dim);
    }

    .gnavi > li {
        position: relative;
        /* margin-right: 40px; */
        padding: 10px 0;
    }

        .gnavi > li:nth-child(3) {
            /* margin-right: 260px; */
        }

.submenu {
    position: absolute;
    background: #fff;
    padding: 20px 38px;
    border-radius: 30px;
    width: 320px;
    left: calc(50% - 160px);
    top: 100%;
    filter: drop-shadow(2px -2px 4px rgba(0, 0, 0, 0.2));
    display: none;
}

    .submenu:before {
        content: "";
        position: absolute;
        width: 16px;
        height: 15px;
        left: calc(50% - 8px);
        background: #fff;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        top: -14px;
    }

    .submenu a {
        display: block;
        font-size: 18px;
        border-bottom: 1px solid #f6f6f6;
        padding: 14px 0;
    }

    .submenu li:last-child a {
        border-bottom: none;
    }

#header.fixed #logo {
    margin: 0;
    padding: 0;
}

#header.fixed .h_main {
    background: var(--deep-red);
}

.h_lang {
    padding: 5px 5px;
    background: #006b84;
    border: none;
    border-radius: 7px;
    color: white;
    font-family: "Kanit", Helvetica;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

    .h_lang:hover {
        background: var(--mcolor);
    }

    .h_lang::-ms-expand {
        display: none;
    }

.h_btn {
    display: flex;
    margin-right: 15px;
}

    .h_btn li {
        width: 40px;
        height: 40px;
        border: 1px solid #9d9d9d;
        border-radius: 50%;
        position: relative;
    }

        .h_btn li.btn_search {
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s;
            margin-right: 30px;
        }

            .h_btn li.btn_search:after {
                content: "";
                position: absolute;
                width: 1px;
                height: 30px;
                left: calc(100% + 15px);
                top: 5px;
                background: #9d9d9d;
            }

        .h_btn li.btn_cart a {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #fff;
            border-radius: 50%;
        }

.mainvisual {
    border-bottom: 10px solid var(--deep-red);
}

.main_item {
    height: 99vh !important;
}

    .main_item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        flex-shrink: 0;
    }

.main_des {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    width: 100%;
    flex-direction: column;
}

.main_ttl {
    font-family: "Roboto", sans-serif;
    color: var(--gold-dim);
    font-size: 4.5rem;
    margin-bottom: 15px;
}

.main_txt {
    color: #fff;
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
}

.main_slide .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

    .main_slide .slick-dots li {
        margin: 0 8px;
        line-height: 0;
    }

        .main_slide .slick-dots li button {
            width: 14px;
            height: 14px;
            background: var(--gold-dim);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-indent: -5000000px;
        }

.main_slide li.slick-active button, .main_slide li:hover button {
    background: var(--deep-red);
}

.mainvisual {
    position: relative;
}

.main_ab {
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: 0;
}

    .main_ab .container {
        height: 100%;
    }

/*.main_slide .slick-arrow {
    position: absolute;
    z-index: 3;
    background: url("/assets/images/ic_next.svg") no-repeat center center;
    width: 20px;
    height: 20px;
    text-indent: -500000px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    bottom: 0;
}

.main_slide .slick-next {
    left: calc(50% + 571px);
}

.main_slide .slick-prev {
    left: calc(50% + 417px);
    background-image: url("/assets/images/ic_prev.svg");
}*/

.main_txt {
    font-size: 24px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 18px;
    line-height: 45px;
}

.btn {
    padding: 10px 12px;
    border: none;
    border-radius: 0 20px 20px 20px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    white-space: nowrap;
    background: var(--deep-red);
    color: white;
}

.section-padding {
    padding: 60px 0;
}
/* Style cho nút Xem thêm (Outline) */
.btn-rm {
    text-align: center;
    margin-top: 30px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid var(--deep-red); /* Viền màu đỏ bã trầu */
    color: var(--deep-red);
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    background: transparent;
}

    /* Hiệu ứng khi di chuột vào nút */
    .btn-outline:hover {
        background-color: var(--deep-red);
        color: var(--paper-color); /* Chữ chuyển sang màu giấy cổ */
        box-shadow: 0 5px 15px rgba(124, 26, 26, 0.2);
    }

    /* Thêm icon mũi tên và hiệu ứng cho nó */
    .btn-outline i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .btn-outline:hover i {
        transform: translateX(5px);
    }

/* Một biến thể khác của nút (nếu muốn dùng màu vàng đồng) */
.btn-gold {
    border-color: var(--gold-dim);
    color: var(--gold-dim);
}

    .btn-gold:hover {
        background-color: var(--gold-dim);
        color: var(--dark-brown);
    }
/* About Section */
.section-title {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 2.5rem;
    color: var(--deep-red);
    margin-bottom: 40px;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-brown);
}

.about-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 20px 20px 0 var(--deep-red);
}

/* Gallery Section */
.gallery {
    background-color: #e9e0d2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

    .gallery-grid p {
        height: 300px;
        overflow: hidden;
        margin: 0;
        border: 2px solid var(--dark-brown);
    }

        .gallery-grid p img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: 0.5s;
        }

        .gallery-grid p:hover img {
            transform: scale(1.1);
        }
/* Section Services */
.services {
    /* background-image: linear-gradient(
      rgba(244, 236, 225, 0.9),
      rgba(244, 236, 225, 0.9)
    ),
    url("https://www.transparenttextures.com/patterns/dark-wood.png"); */ /* Thêm texture gỗ nhẹ */
}

.section-subtitle {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 50px;
    font-style: italic;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #e0d5c5;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

    /* Hiệu ứng khung giả cổ */
    .service-card::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        border: 1px solid #f0e6d6;
        z-index: -1;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--gold-dim);
        box-shadow: 0 10px 30px rgba(124, 26, 26, 0.1);
    }

.service-icon {
    font-size: 3rem;
    color: var(--deep-red);
    margin-bottom: 20px;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    color: var(--gold-dim);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: "Playfair Display", serif;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Thêm hiệu ứng cho icon trong CSS nếu cần */
.service-icon i {
    display: inline-block;
    padding: 10px;
}
/* News Section */
.news {
    background-color: #f9f3e8;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.news-card {
    background: white;
    border: 1px solid #ddd;
    transition: 0.3s;
}

    .news-card:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.news-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-info {
    padding: 20px;
}

    .news-info span {
        font-size: 0.8rem;
        color: #888;
    }

    .news-info h4 {
        margin: 10px 0;
        color: var(--deep-red);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
        font-size: 18px;
    }

    .news-info a {
        text-decoration: none;
        color: var(--dark-brown);
        font-weight: bold;
        font-size: 0.9rem;
    }

    .news-info p {
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
    }

.news-grid {
    position: relative;
}

.news-grid {
    position: relative;
}

    .news-grid .slick-prev,
    .news-grid .slick-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        z-index: 20;
        font-size: 0;
        background: transparent;
        color: var(--deep-red);
        border: 2px solid;
        transition: all 0.4s ease;
        border-radius: 20px;
    }

        .news-grid .slick-prev:hover,
        .news-grid .slick-next:hover {
            background: var(--deep-red);
        }
    /* vị trí */
    .news-grid .slick-prev {
        left: -60px;
    }

    .news-grid .slick-next {
        right: -60px;
    }

        /* icon FA */
        .news-grid .slick-prev:before,
        .news-grid .slick-next:before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 28px;
            color: var(--deep-red);
            opacity: 1;
            transition: all 0.4s ease;
        }

        .news-grid .slick-prev:hover::before,
        .news-grid .slick-next:hover::before {
            color: #fff;
        }

    .news-grid .slick-prev:before {
        content: "\f30a"; /* long-arrow-left */
    }

    .news-grid .slick-next:before {
        content: "\f30b"; /* long-arrow-right */
    }
/* Footer */
#footer {
    background: var(--dark-brown);
    color: #bbb;
    padding: 60px 0 30px;
    border-top: 5px solid var(--gold-dim);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h3 {
    color: var(--gold-dim);
    margin-bottom: 25px;
    font-size: 1.3rem;
    border-left: 4px solid var(--deep-red);
    padding-left: 15px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details i {
    color: var(--gold-dim);
    margin-right: 10px;
}

.map-container iframe, .fb-mockup .fb-page, .fb-mockup .fb-page iframe {
    width: 100%;
    height: 200px !important;
}

.fb-link {
    color: #3b5998;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.copyright {
    margin: 0;
}

@media screen and (min-width: 769px) {
    .h_btn li.btn_search:hover,
    .h_btn li.btn_cart a:hover {
        background-color: #f0f0f0;
    }

    .gnavi > li:hover > a:after {
        width: 100%;
    }

    .submenu a:hover,
    .ft_link a:hover {
        color: #000;
    }

    .main_slide .slick-dots li:hover button,
    .idx_btn a:hover {
        background-color: #000;
        color: #fff;
    }

    .main_slide .slick-dots li:hover {
        border-color: #000;
    }

    .idx_btn a:hover:after {
        background-image: url("/assets/images/ic_arr_sm_hover.svg");
    }

    .sec06_btn a:hover {
        background-color: #ccc;
    }

    .sec06_item_img a:hover img,
    .sec03_item a:hover .img img {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 768px) {
    #wrapper {
        min-width: 100%;
        margin: 0;
        padding-top: 80px;
    }

    #main,
    #footer {
        min-width: 100%;
    }

    .container {
        padding: 0 15px;
        width: 100%;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
    /* MENU-ICON */
    .menu-icon {
        width: 40px;
        height: 40px;
        box-sizing: border-box;
        text-align: center;
        text-transform: uppercase;
        line-height: 1em;
        cursor: pointer;
        color: #fff;
        font-size: 14px;
        padding: 8px 0;
        z-index: 10;
        background: var(--mcolor);
        /* border-radius: 50%; */
        margin-left: 5px;
    }

        .menu-icon span {
            display: block;
            margin: 0 auto 15px;
            width: 20px;
            height: 2px;
            background-color: #fff;
            -webkit-transition-duration: 0;
            -moz-transition-duration: 0;
            -ms-transition-duration: 0;
            -o-transition-duration: 0;
            transition-duration: 0;
            -webkit-transition-delay: 0.2s;
            -moz-transition-delay: 0.2s;
            -ms-transition-delay: 0.2s;
            -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
            top: 12px;
            left: 0;
            position: relative;
        }

            .menu-icon span::after,
            .menu-icon span::before {
                display: block;
                content: "";
                position: absolute;
                width: 20px;
                height: 2px;
                background-color: #fff;
                -webkit-transition-property: margin, -webkit-transform;
                -webkit-transition-duration: 0.2s;
                -moz-transition-duration: 0.2s;
                -ms-transition-duration: 0.2s;
                -o-transition-duration: 0.2s;
                transition-duration: 0.2s;
                -webkit-transition-delay: 0.2s, 0;
                -moz-transition-delay: 0.2s, 0;
                -ms-transition-delay: 0.2s, 0;
                -o-transition-delay: 0.2s, 0;
                transition-delay: 0.2s, 0;
            }

            .menu-icon span::before {
                margin-top: -8px;
            }

            .menu-icon span::after {
                margin-top: 8px;
            }

        .menu-icon.active span {
            background-color: transparent;
        }

            .menu-icon.active span::before,
            .menu-icon.active span::after {
                margin-top: 0px;
                -webkit-transition-delay: 0, 0.2s;
                -moz-transition-delay: 0, 0.2s;
                -ms-transition-delay: 0, 0.2s;
                -o-transition-delay: 0, 0.2s;
                transition-delay: 0, 0.2s;
            }

            .menu-icon.active span::before {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            .menu-icon.active span::after {
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

    .gnv-ico {
        width: 50px;
        height: 51px;
        position: absolute;
        background: var(--mcolor);
        right: 0;
        top: 0 !important;
        transform: none !important;
        border: none !important;
    }

        .gnv-ico:before {
            content: "";
            position: absolute;
            border: solid #fff;
            border-width: 0 1px 1px 0;
            display: inline-block;
            padding: 3px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            left: calc(50% - 3px);
            top: calc(50% - 3px);
            transition: all 0.5s ease;
        }

    .gnavi li.active > .gnv-ico:before {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    #totop {
        width: 40px;
        right: 3%;
        bottom: 50px;
        line-height: 0;
    }

    .form_search input {
        width: calc(100vw - 80px);
        font-size: 16px;
        padding: 15px 10px;
    }

    .form_search_close {
        background-size: 14px auto;
        width: 30px;
        height: 30px;
        top: calc(50% - 40px);
        right: 15px;
    }

    #gnavi {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 100%;
        z-index: 99;
        background: rgba(0, 0, 0, 0.7);
        top: 0;
        transition: all 0.3s;
    }

        #gnavi.show {
            left: 0;
        }

    .gnavi {
        display: block;
        background: #fff;
        width: calc(100% - 60px);
        max-width: 300px;
        margin: 0 0 0 auto;
        height: 100%;
        overflow: auto;
        padding: 30px 20px;
    }

        .gnavi > li {
            padding: 13px 0;
            margin: 0;
            border-bottom: 1px solid #ddd;
            color: #000;
        }

            .gnavi > li > a {
                /* padding: 15px 0; */
                /* border-bottom: 1px solid #ddd; */
                position: relative;
            }

                .gnavi > li > a:after,
                .submenu:before {
                    display: none;
                }

    .submenu {
        position: relative;
        filter: none;
        left: 0;
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
    }

        .submenu a {
            font-size: 15px;
            padding: 15px 0 15px 15px;
            position: relative;
        }

            .submenu a:before {
                content: "";
                position: absolute;
                border: solid #666;
                border-width: 0 1px 1px 0;
                display: inline-block;
                padding: 2px;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                left: 0;
                top: 21px;
            }

    .gnavi > li.active > a {
        color: var(--gold-dim);
        font-weight: 500;
    }

    .gnv_close {
        margin: 0;
        position: absolute;
        background: url(/assets/images/ic_close.svg) no-repeat center center / 14px auto var(--gold-dim);
        width: 36px;
        height: 36px;
        top: 20px;
        border-radius: 50%;
        right: 320px;
    }

    #logo img {
        width: 60px;
    }

    #logo {
        margin: 0;
        padding: 0;
        background: none;
        width: auto;
    }

    .h_main {
        padding: 10px 0;
        background: var(--deep-red);
    }

    .mainvisual {
        margin: 0;
    }

    .h_lang {
        width: 80px;
        padding: 0 10px;
        background-position: right 3px center;
    }

    .h_btn {
        margin-right: 5px;
    }

        .h_btn li.btn_search {
            margin-right: 5px;
        }

            .h_btn li.btn_search:after {
                display: none;
            }

    .main_slide.slick-initialized .slick-slide {
        height: auto !important;
    }

    .main_slide:after {
        border-bottom-left-radius: 6vw;
        border-bottom-right-radius: 6vw;
    }

    .main_ttl {
        font-size: 24px;
        bottom: 16vw;
        width: 60%;
        left: 0;
        transform: none;
        text-align: center;
    }

    .main_slide .slick-dots {
        /* width: 180px; */
        /* left: calc(50% - 90px); */
        /* height: 32px; */
        bottom: 20px;
    }

    .main_slide .slick-next {
        left: calc(50% + 45px);
    }

    .main_slide .slick-prev {
        left: calc(50% - 65px);
    }

    .form_search input {
        width: calc(100vw - 80px);
        font-size: 16px;
        padding: 15px 10px;
    }

    .form_search_close {
        background-size: 14px auto;
        width: 30px;
        height: 30px;
        top: calc(50% - 40px);
        right: 15px;
    }

    .main_des {
        /* width: 60%; */
        /* left: 20%; */
    }

    .main_txt {
        line-height: 1.4;
        font-size: 16px;
        width: 60%;
    }

    .sec01 {
        padding: 0 0 30px;
    }

        .sec01 .container {
            flex-wrap: wrap;
            gap: 30px;
        }

    .idx_ttl .small {
        font-size: 24px;
    }

    .idx_ttl {
        font-size: 30px;
    }

    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
    }
    /* Có thể làm menu mobile ẩn hiện */
    .about-img {
        order: -1;
    }
}

@media screen and (max-width: 440px) {
}

@media screen and (max-width: 360px) {
    .gnv_close {
        right: auto;
        left: 10px;
    }
}
