html {
    scroll-behavior: smooth;
}

.align-center {
    align-items: center;
}

.center-text-box {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.container {
    position: relative;
}

.newContent {
    margin-top: 40px;
    margin-bottom: 80px;
}

.content a {
    color: #212529;
    transition: .3s;
}

.content a:hover {
    color: #48362a;
    text-decoration: none;
    opacity: 0.8;
}

/* swiper */
.swiper-button-next, .swiper-button-prev {
    color: rgb(63 58 26 / 0.6);
}





/* ========================
        component 
======================== */

.nav-pills .nav-link {
    background: #eee;
    color: #333;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #584e35;
}


.image-hover img {
    transition: .3s;
}

.image-hover:hover img {
    transform: scale(1.1);
}

/* button */
.button-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}

.button-wrapper.right {
    text-align: right;
}

.button-wrapper.center {
    text-align: center; 
}

.button {
    border: none;
    outline: none;
    padding: 8px 30px;
    border-radius: 3px;
    background-color: #523c27;
    color: #fff;
}

.button:hover {
    background-color: #775c43;
}

/* Image Container */
.thumb-image-container {
    display: flex !important;
}

.thumb-image-wrapper {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
    line-height: 0;
}

.thumb-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.thumb-image img {
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
    object-fit: cover;
}

/* header */
body header .navigation {
    position: relative;
    display: -webkit-flex;
    display: flex;
    background-color: rgba(34, 35, 40, 0.8);
}

body header .navigation .headerLogo {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: calc((100% - 1140px)/2);
}

body header .navigation .headerLogo,
body header .navigation #navbar {
    background-color: transparent;
}

body header .navigation{
    background-color: #474220;
}

body header .navigation #navbar.navFixed {
    background-color: #474220;
}

body header .navigation .headerLogo img {
    height: 50px;
    margin-top: 5px;
    margin-bottom: 15px;
}

body .header-top .header-top-info a {
    font-size: 15px;
}

body .header-top .header-top-socials {
    padding: 4px 0px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

    body .header-top .header-top-socials a {
        margin-right: 8px;
    }

    body .header-top .header-top-socials img {
        width: 26px;
        margin-top: 3px;
        margin-bottom: 3px;
    }


@media (max-width: 991px) {
    body header .navigation {
        justify-content: center;
    }

    body header .navigation #navbar .container .headerTrigger {
        display: block;
    }

    body header .navigation #navbar {
        width: 100%;
    }

    body .header-top .header-top-socials {
        justify-content: center;
    }
}

/* banner */
body header .swiper-container .swiper-slide {
    height: 823px;
}

/* breadcrumb */
body main .breadcrumb-bg .breadcrumb {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

body main .breadcrumb-bg {
    padding-left: 0 !important;
}

/* custom radio button */
.check__container {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-right: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-width: 90px;
}

.check__container input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 50%;
    z-index: -1;
}

.check__container:hover input ~ .checkmark {
    background-color: #ccc;
}

.check__container input:checked ~ .checkmark {
    background-color: #523c27;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check__container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #cfcec6;
}


/* rod */
.col-md-12{
    background-color: #87736F;
}


/* form */
.form {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #87806f;
}
    .input__group {
        display: -webkit-flex;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

        .input__label {
            width: 215px;
            text-align: right;
            padding-right: 20px;
            font-size: 15px;
        }

        .input__box {
            flex: 1;
        }

        .input__group input, .input__group textarea {
            width: 100%;
            border: 1px solid #b5b3b1;
            border-radius: 3px;
            padding: 5px 10px;
        }

        .input__group textarea {
            height: 100px;
        }

.form .intro {
    margin-bottom: 40px;
}

.form .button-wrapper {
    margin-left: 210px;
}

@media (max-width: 576px) {

    .input__group {
        flex-direction: column;
        align-items: flex-start;
    }
    .input__label {
        width: 100%;
        text-align: left;
        margin-bottom: 5px;
    }
    .input__box {
        width: 100%;
    }
    .form .button-wrapper {
        margin-left: 0;
    }
    
}



/* ========================
        home 
======================== */

.home-block {
    position: relative;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    width: 100%;
    color: #333;
    background-color: #333;
}

.home-block:hover {
    color: #444;
    text-decoration: none;
}

.home-block-bg {
    width: 100%;
    opacity: 0.85;
    transition: 0.3s;
}

.home-block:hover .home-block-bg {
    opacity:0.6;
}

.home-block-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 15%;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.60);
    width: 200px;
    text-align: center;
    border-radius: 30px;
    letter-spacing: 5px;
}

.home-block h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: bolder;
    text-align: center;
}

article .news .newsWrap .newsContent:hover {
    transform: none;
    background-size: unset;
}

.signature {
    width: 140px;
    margin-top: 20px;
    margin-bottom: 40px;
    float: right;
}

@media (max-width: 991px) {
    .home-block-text {
        padding: 20px;
        width: 200px;
    }
}

@media (max-width: 576px) {
    .home-block-text {
        margin-left: auto;
        margin-right: auto;
        left: 50%;
        transform: translate(-50%,-50%);
        width: unset;
        padding: 10px 20px;
    }
    .home-block h2 {
        font-size: 20px;
    }
}

/* ========================
        page 
======================== */

/* history */
.history {
    margin-top: 0;
}

.timeline-wrapper {
    position: absolute;
    left: 20px;
    top: 230px;
}

.history .history-timeline {
    flex-direction: column;
    height: 100%;
}

.history .history-timeline .timeline {
    position: relative;
    text-align: center;
    width: 150px;
    background: #87806f;
    border-radius: 0;
    margin-bottom: 50px;
}

.history .history-timeline .timeline:last-child {
    margin-bottom: 0;
}

.history .history-timeline::after {
    width: 3px;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}

.history .history-image {
    margin-top: 0;
}

.history-detail .card-body .card-title {
    margin-bottom: 0;
}


/* arrive */
.arrive-header_content a,
.driveContent-title a {
    color: #87806f;
    transition: .3s;
}

.arrive-header_content a:hover,
.driveContent-title a:hover {
    text-decoration: none;
    opacity: .8;
}

/* historical */
.historical .historical-hover .historical-header .historical-header_content {
    background: rgba(255, 255, 255, 0.8);
}

/* ceremony */
.cultural .ceremony .ceremony-describe .ceremony-describe_card {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cultural .ceremony .ceremony-describe .ceremony-describe_card .card-body {
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 350px;
}

.cultural .ceremony .ceremony-describe .ceremony-describe_card .card-body .ceremony-content_button {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
}

/* gift */
.gift .giftInner .card .giftInner-image .card-img {
    border-radius: 0;
}

.gift .giftDetail .wrapper .gallery-top {
    height: auto;
}

/* menu */
.season-menu .thumb-image-wrapper {
    padding-bottom: 66.66%;
}
.menu-content_text {
    margin-top: 20px;
}
    .menu-content_text h4 {
        text-align: center;
        margin-bottom: 10px;
    }

@media (max-width: 991px) {
    .timeline-wrapper {
        display: none;
    }
}

/* rent */
.multipleRent-innerContent_image.vertical .thumb-image-wrapper {
    padding-bottom: 130%;
}
.multipleRent-innerContent_image.horizontal .thumb-image-wrapper {
    padding-bottom: 61.8%;
}



/* ================
    site-en 
================*/

/* header */
.site-en header .navigation .headerLogo, body header .navigation #navbar {
    margin-right: 5%;
}
.site-en header .navigation #navbar .container li .nav-link h3 {
    letter-spacing: 0;
}

/* breadcrumb */
.site-en main .breadcrumb-bg .breadcrumb .breadcrumb-list a h2 {
    letter-spacing: 1px;
}
.site-en .newTitle .newTitle-content h2 {
    letter-spacing: 3px;
}
.site-en .newTitle .newTitle-content h3 {
    letter-spacing: 2px;
}

/* home */
.site-en .home-block-text {
    width: 300px;
    padding: 15px 0;
    letter-spacing: 2px;
}
.site-en .home-block h2 {
    font-size: 1.2rem;
}

/* about */
.site-en .introduction-wrap .introduction-Content .introduction-Content_text p {
    letter-spacing: 2px;
}
.site-en .timeline-wrapper {
    top: 260px;
}

/* historic */
.site-en .historical .historical-one .historical-one_content,
.site-en .historical .historical-two .historical-one_content,
.site-en .historical .historical-three .historical-one_content {
    width: 65%;
    text-align: center;
    padding: 2%;
}

.site-en .building .building-content .building-content_text {
    height: auto;
}
.site-en .history-detail .card-body {
    height: 160px;
}
