/* CSS RESET */
*, :after, :before {
    box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, caption{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
}
ol, ul {
	list-style: none;
}

caption{
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* END CSS RESET */
@font-face {
    font-family: 'iconfont';
    src: url('../fonts/iconfont.eot');
    src: url('../fonts/iconfont.eot') format('embedded-opentype'), 
    url('../fonts/iconfont.woff') format('woff'), 
    url('../fonts/iconfont.ttf') format('truetype'), 
    url('../fonts/iconfont.svg') format('svg');
    font-weight: normal;
    font-style: normal
}
strong {
    font-weight: 600;
}
ul.ul-disc {
    list-style-type: disc;
    padding-left: 15px;
}
img {
    max-width: 100%;
    object-fit: cover;
}
.d-flex{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col-2{
    padding: 0 15px;
    max-width: 16.66%;
    flex: 0 0 16.66%;
}
.col-3{
    padding: 0 15px;
    max-width: 25%;
    flex: 0 0 25%;
}
.col-6{
    padding: 0 15px;
    max-width: 50%;
    flex: 0 0 50%;
}
.col-4{
    padding: 0 15px;
    max-width: 33.33%;
    flex: 0 0 33.33%;
}
.col-8{
    padding: 0 15px;
    max-width: 66.67%;
    flex: 0 0 66.67%;
}
.col-9{
    padding: 0 15px;
    max-width: 75%;
    flex: 0 0 75%;
}
.col-12{
    padding: 0 15px;
    max-width: 100%;
    flex: 0 0 100%;
}
.plr-2{
    padding-left: 2rem;
    padding-right: 2rem;
}
/* slick js */
.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}
.slick-slide:not(.slick-active) {
    opacity: 0.1;
}
.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 80px;
    height: 80px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    z-index: 1;
    color: #fff;
}
.slick-next svg, .slick-prev svg {
    width: 100%;
    height: 100%;
}
.slick-next {
    transform: rotate(-90deg);
    right: 0;
}
.slick-prev {
    transform: rotate(90deg);
    left: 0;
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: 30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 15px;
    height: 15px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: white;
    border-radius: 100%;
    position: relative;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 62px;
    line-height: 16px;
    position: absolute;
    top: -1px;
    left: -3px;
    width: 15px;
    height: 15px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #ffba92;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: white;
}
/* vietnamese */
@font-face {
  font-display:swap;
  font-family:TCCC-UnityHeadline;
  font-style:normal;
  font-weight:400;
  src:url(../fonts/tccc-unityheadline-regular.woff2) format("woff2");
}

@font-face {
  font-display:swap;
  font-family:TCCC-UnityHeadline;
  font-style:normal;
  font-weight:600;
  src:url(../fonts/tccc-unityheadline-medium.woff2) format("woff2");
}

@font-face {
  font-display:swap;
  font-family:TCCC-UnityHeadline;
  font-style:normal;
  font-weight:700;
  src:url(../fonts/tccc-unityheadline-bold.woff2) format("woff2");
}

@font-face {
  font-display:swap;
  font-family:TCCC-UnityText;
  font-style:normal;
  font-weight:400;
  src:url(../fonts/tccc-unitytext-regular.woff2) format("woff2");
}

@font-face {
  font-display:swap;
  font-family:TCCC-UnityText;
  font-style:normal;
  font-weight:600;
  src:url(../fonts/tccc-unitytext-medium.woff2) format("woff2");
}

@font-face {
  font-display:swap;
  font-family:TCCC-UnityText;
  font-style:normal;
  font-weight:700;
  src:url(../fonts/tccc-unitytext-bold.woff2) format("woff2");
}

body{
	background-color: #f8f5f0;
    color: #333;
    font-family: TCCC-UnityText, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4;
}
.container {
    max-width: 1330px;
    margin: 0 auto;
}
.text-center{
    text-align: center;
}
.logo img {
    max-height: 61px;
    scale: 2;
    position: absolute;
    top: 30px;
}
.logo-text {
    font-family: TCCC-UnityHeadline, sans-serif;
    font-size: 1.3rem;
    text-decoration: none;
    color: #898278;
    text-transform: none;
    line-height: 1.5;
    font-weight: 700;
}
.page-content {
    position: relative;
    width: 100%;
    min-height: 40vh;
}
.page-heading {
    position: relative;
    width: 100%;
    padding: 1rem 4rem 1rem;
    text-align: center;
}
.page-heading .container {
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    max-width: 960px;
}
.page-heading h2 {
    position: relative;
    display: inline-block;
    padding: 0 35px;
    font-family: TCCC-UnityHeadline, sans-serif;
    margin-bottom: 1.5rem;
    white-space: pre-wrap;
    font-size: 2.66667rem;
    font-weight: 700;
    color: #B55219;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.25;
}
.heading {
    position: relative;
    padding: 35px 0 45px;
    text-align: center;
}
.heading h2 {
    position: relative;
    display: inline-block;
    padding: 10px 75px;
    font-family: TCCC-UnityHeadline, sans-serif;
    margin-bottom: 0;
    white-space: pre-wrap;
    font-size: 2.66667rem;
    font-weight: 700;
    color: #B55219;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}
.heading h2:before {
    content: "\e612";
    display: block;
    font-size: 70px;
    left: 0;
    position: absolute;
    top: 0;
    font-family: 'iconfont';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.heading h2:after {
    content: "\e613";
    display: block;
    font-size: 70px;
    right: 0;
    position: absolute;
    top: 0;
    font-family: 'iconfont';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-heading .description {
    margin-bottom: 1.5rem;
    white-space: pre-wrap;
}
.page-heading .button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #B55219;
    text-decoration: none;
    font-size: 20px;
}
.page-heading .button.button-link {
    background: #b55219;
    color: #fff;
    display: inline-flex;
    padding: 7px 10px;
    box-shadow: 2px 4px 1px 1px #333;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
}
.page-heading .button.button-link:active{
     box-shadow:none;
}
.page-heading .button svg {
    transform: rotate(180deg);
}
.header-wrap {
    height: 73px;
    z-index: 999;
    position: relative;
}
#header {
    background: #fff;
    position: fixed;
    width: 100%;
/*    height: 110px;*/
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
/*    border-bottom: 20px solid #b7b2ad;*/
}
#header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#primary-menu {
    display: flex;
    position: relative;
    top: 0;
}
#primary-menu > li{
	display: flex;
}
#primary-menu > li > a {
	display: inline-flex;
    text-transform: capitalize;
    font-size: 0.95rem;
    font-weight: 600;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    padding: 0.7rem 2.1rem;
    white-space: nowrap;
    text-decoration: none;
    color: #B55219;
    line-height: 50px;
}

#primary-menu > li > a:hover,
#primary-menu > li:last-child a{
    border-color: #B55219;
    background: #B55219;
    color: #fff;
}
.header-default {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #8f8a88;
    padding-top: 5px;
    padding-bottom: 0;
    min-height: 320px;
}
.slider-banner {
    position: relative;
    background: #e8e1db;
    padding-top: 5px;
    padding-bottom: 0;
    height: calc(100vh);
    min-height: 250px;
    max-height: 250px;
}
.slider {
	position: relative;
/*    display: flex;*/
    justify-content: center;
    align-items: center;
    background: #e8e1db;
    padding-top: 5px;
    padding-bottom: 0;
    height: calc(100vh - 47px);
    min-height: 320px;
    max-height: 820px;
}
.slider-container,
.slick-slider,
.slick-slider > div,
.slick-track {
    height: 100%;
}
.slider-item{
    position: relative;
}

.bg-slider {
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    width: initial;
    height: initial;
    background: none;
    opacity: 1;
    border: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.bg-slider iframe {
    position: relative;
    pointer-events: none;
}
.bg-overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background-color: rgba(0,0,0,0.25);
    background: -webkit-linear-gradient(0deg,rgba(0,0,0,0.58),rgba(0,0,0,0));
    background: linear-gradient(0deg,rgba(0,0,0,0.58),rgba(0,0,0,0));*/
}

.bg-slider img {
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
    padding: 0px;
    border: none;
/*    margin: auto;*/
    display: block;
    width: 100%;
    height: initial;
    object-fit: cover;
}
.overlay-slider{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.33);
}
.slider-wrap {
    display: contents;
    width: 100%;
}
.slider-view {
    position: relative;
/*    width: 50%;*/
    max-width: 960px;
    top: 20%;
    margin: 0 auto;
}
.content-slider {
    z-index: 1;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px;
/*    background: radial-gradient(ellipse at center, #443501 0%, #000000 100%);*/
}

.content-slider .title{
    font-family: TCCC-UnityHeadline, sans-serif;
    font-weight: 700;
	font-size: 4.444rem;
	color: #F6E0C1;
	text-transform: none;
	line-height: 1.3;
    line-height: 1.3;
    background: linear-gradient(to bottom, #fff4dc 27%, #ffecb3 40%, #674c15 78%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    font-family: 'Playfair Display', serif;
    position: relative;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
    display: inline-block;
}

.content-slider .title::after {
    background: none;
    content: attr(data-heading) / "";
    left: 0;
    top: 0;
    z-index: -1;
    position: absolute;
    text-shadow: -1px 0 1px #e9dfc4, 0 1px 1px #ffebba, 5px 5px 10px rgba(0, 0, 0, 0.4), -5px -5px 10px rgb(145 145 145 / 40%);
}

.content-slider .description{
	margin-top: 0.5rem;
    font-size: 1rem;
	color: #fff;
	font-weight: 500;
	line-height: 1.4;
    margin-bottom: 2rem;
    max-width: 490px;
    white-space: pre-wrap;
    text-align: justify;
}
.content-slider.text-center .description{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.content-slider .button {
    font-size: 1.225rem;
    border-radius: 0;
    min-width: 64px;
    padding: 7px 0;
    color: #fff;
    display: flex;
    align-items: end;
    gap: 5px;
    text-decoration: none;
}
.content-slider.text-center .button{
    justify-content: center;
}
.content-slider .button svg {
    font-size: 20px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* min-960px */
@media (min-width: 960px)
{
	.slider {
	    min-height: 400px;
	}
    .slider-banner {
        min-height: 350px;
        max-height: 620px;
    }
}
/* min-1280px */
@media (min-width: 1280px)
{
	.slider {
	    height: calc(100vh - 130px);
	}
}

#breadcrumbs {
    padding-left: 2rem;
    padding-right: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    border-top: 1px solid rgba(255,255,255,0.3);
    background: #8f8a88;
}
#breadcrumbs ul li a {
    color: white;
    overflow-x: auto;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    text-decoration: none;
}
#breadcrumbs ul li span {
    color: #F6E0C1;
    font-weight: 600;
}
#breadcrumbs ul{
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    user-select: none;
}
#breadcrumbs ul li{
    margin-left: 8px;
    margin-right: 8px;
    font-size: 0.9rem;
}
#breadcrumbs ul li:first-child{
    margin-left: 0;
}
#breadcrumbs ul li:last-child{
    margin-right: 0;
}
#breadcrumbs ul li svg {
    color: #fff;
    transform: rotate(-90deg);
}

/* Image Comparison Slider */
.img-comp-container {
	position: relative;
	height: 490px;
}
.img-comp-img {
	position: absolute;
	width: 100%;
	height: auto;
	overflow:hidden;
}
.img-comp-img img {
	display:block;
	vertical-align:middle;
	border-radius: 250px 0 0 250px;
    max-width: initial;
}
.slideIndicator {
    width: 32px;
    height: calc(100% + 36px);
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    touch-action: none;
    cursor: e-resize;
    outline: none;
}
span.icon-before {
    width: 16px;
    height: 16px;
    -webkit-transform: translate(15%, -2px);
    -moz-transform: translate(15%, -2px);
    -ms-transform: translate(15%, -2px);
    transform: translate(15%, -2px);
}
.dragHandle {
    top: 16px;
    bottom: 18px;
    left: 15px;
    width: 4px;
    position: absolute;
    background: white;
}
span.icon-after {
    width: 16px;
    height: 16px;
    transform: translate(15%, 0);
}
.img-comp-slider {
	position: absolute;
	z-index:9;
	cursor: ew-resize;
	width: 40px;
	height: 40px;
	background-color: #2196F3;
	opacity: 0.7;
	border-radius: 50%;
}
section.about-us {
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}
.about-us-row,
.introduce-row {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0;
}
.about-us-content {
    width: 38%;
    padding-right: 49.95px;
}
.about-us-slider {
    order: 1;
    width: 59%;
    height: auto;
    min-height: 450px;
}
section#service {
    background: #fff;
    width: 100%;
    padding-top: 45px;
    padding-bottom: 45px;
    margin-top: 50px;
    margin-bottom: 0px;
}
.service-row {
    display: flex;
}

.service-item{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 0.9rem;
}
.service-address {
    border-right: 1px solid #E7E6E2;
}
.service-facilities {
    border-left: 1px solid #E7E6E2;
}
.service-item ul li {
    display: flex;
    gap: 7px;
    align-items: center;
}
.service-facilities ul{
    display: grid;
    grid-template-columns: 1fr 1fr;   
}
.service-title {
    color: #B9BCB3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22.5px;
    font-weight: 600;
}
section#accommodation {
    position: relative;
}
#accommodation .container {
    max-width: 1220px;
}

section#accommodation .bg-slider img {
    transform: scale(1.3875);
}
.accommodation-card {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.accommodation-content {
    margin-top: 60px;
    margin-bottom: 60px;
}
.accommodation-actions {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: auto;
}
.accommodation-box {
    padding: 30px;
    background: #fff;
    margin-bottom: 35px;
    flex: 1;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.accommodation-title {
    display: flex;
    justify-content: space-between;
    font-size: 1.333rem;
    color: #B55219;
}
.accommodation-price {
    color: #FF5722;
    font-size: 1.75rem;
    font-weight: 600;
}
.accommodation-price small {
    font-size: 1.2rem;
    color: #333;
}
.accommodation-thumb {
    position: relative;
    border-radius: 70px 70px 0 0;
    overflow: hidden;
    padding-bottom: 75%;
}
.accommodation-thumb img {
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
    padding: 0px;
    border: none;
    margin: auto;
    display: block;
    width: 0px;
    height: 0px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}
.accommodation-description {
    margin-top: 1em;
    margin-bottom: 1em;
}
.accommodation-item li {
    display: flex;
    align-items: center;
}
.accommodation-item li .icon {
    width: 35px;
    flex: 0 0 35px;
}
.accommodation-item li .label{
    text-align: left;
}
.btn-explore {
    background: none;
    width: 100%;
    margin-bottom: 7.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.75;
    text-transform: uppercase;
    min-width: 64px;
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid #B55219;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    color: #B55219;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
}
.btn-explore:hover{
    color: #fff;
    background: #B55219;
}

.btn-book-now {
    background: #B55219;
    width: 100%;
    margin-bottom: 7.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.75;
    text-transform: uppercase;
    min-width: 64px;
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid #B55219;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 600;
}
.btn-book-now:hover{
    background: #77351B;
}

/* services section */
#services {
    position: relative;
    padding: 0 4rem 2rem;
    background: #fff;
}
.services-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.services-card {
    position: relative;
    width: 33.33%;
    padding: 0 7px;
    margin-bottom: 15px;
}
.services-box {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    background: #f8f5f0;
    border-bottom: 3px solid #F44336;
    border-radius: 15px;
}
.services-icon {
    text-align: center;
}
.services-title {
    padding-top: 20px;
    color: #333;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    text-align: center;
    margin: auto;
    height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.services-box hr{
    background: #F44336;
    height: 2px;
    border: 0;
    width: 60px;
    margin: 15px auto 20px;
}
/* end services section */

/* hotel section */
section#hotel {
    position: relative;
    background: #fff;
    width: 100%;
    padding-top: 45px;
    padding-bottom: 45px;
    margin-top: 2px;
    margin-bottom: 2px;
}
#hotel .container {
    max-width: 1220px;
}
.hotel-heading {
    font-family: TCCC-UnityHeadline, sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: #b55219;
    text-transform: uppercase;
    margin-bottom: 4rem;
    text-align: center;
    z-index: 2;
    position: relative;
    letter-spacing: 0.133rem;
}
section#hotel .bg-slider img {
    transform: scale(1.3875);
}
.hotel-card {
    position: relative;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hotel-content {
    margin-top: 60px;
    margin-bottom: 60px;
}
.hotel-actions {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: auto;
}
.hotel-box {
    position: absolute;
    border-radius: 0 0 7px 7px;
    min-width: 260px;
    min-height: 150px;
    left: 15px;
    bottom: 0;
    right: 15px;
    padding: 15px 15px 10px 15px;
    /* background-image: url(../images/aurora-mang-den-bg.jpg); */
    background-color: #312c2669;
    background-position: top;
    background-repeat: no-repeat;
}
.hotel-title {
    font-size: 1.333rem;
    font-weight: 700;
    color: #fff;
}
.hotel-title small {
    font-size: 0.95rem;
    color: #f1f8eb;
}
.hotel-thumb {
    position: relative;
    padding-bottom: 100%;
}
.hotel-thumb img {
    border-radius: 35px 35px 0 0;
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
    padding: 0px;
    border: none;
    margin: auto;
    display: block;
    width: 0px;
    height: 0px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}
.hotel-description {
    margin-top: 0.3em;
    margin-bottom: 0.7em;
    color: #f6e0c1;
}
.hotel-address {
    margin-top: 0.3em;
    margin-bottom: 0.7em;
    color: #f6e0c1;
    font-size: 0.86rem;
}
.hotel-phones {
    position: absolute;
    top: 15px;
    right: 15px;
}
.hotel-phone-item {
    display: block;
    background: rgb(255 255 255 / 75%);
    color: #333;
    padding: 15px 10px;
    text-align: center;
    margin: 10px;
    cursor: pointer;
    text-decoration: none;
}
.hotel-phone-item:hover {
    background: rgb(255 255 255 / 100%);
}
.hotel-phone-item .title {
    font-size: 14px;
}
.hotel-phone-item .text {
    font-size: 13px;
    font-weight: 600;
    color: red;
}
.hotel-phone {
    margin-top: 0.3em;
    margin-bottom: 0.7em;
    color: #ffffff;
}
.btn-detail {
    max-width: 190px;
    display: inline-block;
    background: #b55219;
    border: 1px solid #FFEB3B;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    height: 40px;
    line-height: 38px;
    padding: 0 20px;
    text-align: center;
    color: #fff;
    text-transform: none;
    text-decoration: none;
}
/* end hotel section */

section#home-news {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.news-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
}
section#home-news .container{
    max-width: 1200px;
}
#news-slider {
    min-height: 700px;
}
.news-row {
    display: flex;
    height: initial;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.news-card {
    position: relative;
    padding: 0 15px;
}
.news-card.slick-slide{
    flex: 1;
}
.news-thumb {
    padding-bottom: 100%;
    position: relative;
    transition-duration: 0.8s;
    margin-bottom: 30px;
}
.slick-center .news-thumb {
    margin-bottom: 45px;
    transition-delay: .4s;
    padding-bottom: 124.5%;
}
.news-thumb img {
    border-radius: 70px 0 0 0;
    overflow: hidden;
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
    padding: 0px;
    border: none;
    margin: auto;
    display: block;
    width: 0px;
    height: 0px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}
.news-btn-wrapper {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: -45px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    height: 0;
    opacity: 0;
    overflow: hidden;
}
.slick-center .news-btn-wrapper {
    height: 44px;
    opacity: 1;
}
.news-button {
    width: 70%;
    margin: auto;
    display: inline-block;
    text-align: center;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    background-color: #B55219;
    box-shadow: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12);
    border: 1px solid transparent;
    font-size: 1rem;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    line-height: 1.75;
    text-transform: uppercase;
    min-width: 64px;
    text-decoration: none;
    padding: 0.7rem 2.1rem;
}
.slick-slide:not(.slick-center) .news-btn-wrapper,
.slick-slide:not(.slick-center) .news-description{
    display: none;
}
section#home-news .news-button,
section#home-news .news-content{
    color: #fff;
}
.news-title {
    margin-bottom: 10px;
    font-size: 1.444rem;
}
.news-description {
    margin-bottom: 15px;
}
section#home-news .news-description {
    opacity: 0;
    -webkit-transition: inherit;
    transition: inherit;
    font-size: 0.9rem;
}
section#home-news .slick-center .news-description{
    opacity: 1;
}
.news-heading {
    font-family: TCCC-UnityHeadline, sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: #F6E0C1;
    text-transform: none;
    margin-bottom: 4rem;
    text-align: center;
    z-index: 2;
    position: relative;
    letter-spacing: 0.333rem;
}
#slogan-bottom {
    background: transparent;
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #333;
    text-align: center;
}
#slogan-bottom .title{
    font-family: TCCC-UnityHeadline, sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: #F6E0C1;
    text-transform: none;
    margin-bottom: 1rem;
    text-align: center;
    z-index: 2;
    position: relative;
    letter-spacing: 0.333rem;
}
#slogan-bottom .description {
    font-size: 20px;
    color: #333;
    font-weight: 500;
    line-height: 1.125;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.quotes {
    width: 27px;
    height: 27px;
    color: #333;
}
#footer {
    position: relative;
    background: #F6E0C1;
    color: #fff;
    background: url('../images/bg-footer-06.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding-top: 10rem;
    border-top: 5px solid #b55219;
}
.footer-container{
    padding-bottom: 2rem;
    background-color: rgba(0,0,0,0.25);
    background: -webkit-linear-gradient(0deg,rgba(0,0,0,0.58),rgba(0,0,0,0));
    background: linear-gradient(0deg,rgba(0,0,0,0.58),rgba(0,0,0,0));
}

hr.separator {
    margin: 0;
    border: none;
    height: 1px;
    background: rgba(224,202,169,1);
}
.footer-bottom {
    background: #1e1c1c;
}
.footer-content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 15px;
}
.footer-logo img {
    object-fit: contain;
    width: 30px;
    height: 42px;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 15px 10px 19px;
}
.footer-content ul.menu-list li.is-head {
    color: #333;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 12px;
    justify-content: space-between;
}
.footer-content ul.menu-list li {
    display: flex;
    align-items: center;
}
.footer-content ul.menu-list li a,
.footer-content ul.menu-list li span{
    color: #fff;
    text-decoration: none;
    padding-top: 3.75px;
    padding-bottom: 3.75px;
    padding-left: 7.5px;
    padding-right: 7.5px;
    min-width: 0;
    line-height: 1.6;
}

.footer-content ul.menu-list li a:hover{
    background: #B55219;
    color: #fff;
}
.footer-box-logo {
    text-align: center;
    padding: 5px 2rem 0 0;
    max-width: 175px;
    
}

/* page offers */
.offers-card {
    flex: 1;
}
.offers-thumb {
    position: relative;
    border-radius: 70px 70px 0 0;
    overflow: hidden;
    padding-bottom: 126%;
    margin-bottom: 10px;
}

.offers-thumb img {
    border-radius: 70px 70px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    padding: 0;
    border: none;
    margin: auto;
    display: block;
    width: 0;
    height: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}
.offers-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.444rem;
    overflow: hidden;
    min-height: 64px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.offers-description {
    margin-bottom: 22.5px;
    font-size: 0.9rem;
    min-height: 80px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
a.offers-button {
    background: none;
    width: 205px;
    margin-bottom: 15px;
    margin-top: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1.227;
    text-transform: uppercase;
    min-width: 64px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    padding: 0.7rem 2.1rem;
    color: #B55219;
    font-size: 1rem;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    text-decoration: none;
    border: 1px solid #B55219;
}

section#offers {
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 45px;
    background: #fff;
}

#offers-slider .slick-next,
#offers-slider .slick-prev{
    color: #b55219;
}

section.terms {
    position: relative;
    margin-top: 37.5px;
    margin-bottom: 37.5px;
    padding: 30px 75px;
}

.terms-title {
    margin-bottom: 22.5px;
    font-size: 1.75rem;
}

section.terms ul{
    list-style-type: disc;
    padding-left: 20px;
}

/* page experiences   */
section#experiences-news {
    padding: 3rem;
    background: #fff;
}
section#experiences-news .news-thumb img{
    border-radius: 70px 70px 0 0;
}
section#experiences-news .news-button {
    width: 100%;
    border: 1px solid #B55219;
    background: transparent;
    color: #B55219;
    margin: auto 0 0;
}
section#experiences-news .news-card {
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 25px;
}
section#experiences-news .news-content {
    flex: 1;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* page accommodation */
.accommodation-hoz {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-accommodation #accommodation .container {
    max-width: 1220px;
}
ul.accommodation-item {
    font-size: 14px;
    max-width: 60%;
}

/* single room */
section#introduce {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}
.introduce-content {
    width: 38%;
    padding-right: 49.95px;
}
.introduce-slider {
    order: 1;
    width: 62%;
    height: auto;
    min-height: 450px;
}
.introduce-title {
    font-weight: bold;
    white-space: pre-wrap;
    text-transform: none;
    color: #B55219;
    letter-spacing: 2px;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.introduce-description {
    margin-bottom: 2.25rem;
}
.introduce-btn {
    width: 260px;
}
section#roominfo {
    margin: 50px 0;
    background: #fff;
    position: relative;
}
.roominfo-item {
    position: relative;
    border-bottom: solid 1px #E7E6E2;
    padding-top: 40px;
    padding-bottom: 40px;
    flex: 1;
}
.roominfo-title {
    margin-bottom: 21px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
    color: #B9BCB3;
}
.roominfo-item ul li {
    display: flex;
    align-items: center;
    gap: 5px;
}
.roominfo-box{
    position: relative;
    min-height: 115px;
}
.roominfo-item:nth-child(1) .roominfo-box:before,
.roominfo-item:nth-child(2) .roominfo-box:before{
    content: "";
    background: #E7E6E2;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.gallery-item {
    margin-bottom: 15px;
}

.gallery-box {
    padding-top: 75%;
    position: relative;
    display: block;
}
.gallery-box img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 10px;
}
/* page single */
.page-single .news-thumb{
    padding-bottom: 60%;
}
.news-list:nth-child(even) .news-thumb img{
    border-radius: 0 80px 0 0;
}
.page-single .news-title {
    text-transform: none;
    color: #B55219;
    font-size: 2.66667rem;
    letter-spacing: 2px;
    line-height: 1.125;
    font-weight: 600;
}
section.news-list {
    margin-top: 60px;
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
}
section.post-content {
    padding: 4rem;
}
section.post-content h2 {
    font-size: 1.66667rem;
    font-weight: 600;
}
@media (min-width: 767.5px){
    .news-list:nth-child(even) .news-right{
        order: 1;
    }
    .news-list:nth-child(even) .news-left{
        order: 2;
    }
    
}

#mb-btn-menu,
#mb-btn-back,
#mb-btn-book-now{
    display: none;
}
.header-mb-button{
    display: none;
}
.btn-mb-li{
    display: none;
}

/* archive reccruitment  */
.reccruitment-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    gap: 1rem;
    border-bottom: 1px solid #B55219;
}
.reccruitment-card:last-child{
    border-bottom: none;
}
.reccruitment-title {
    font-size: 1.333rem;
    color: #B55219;
    text-transform: uppercase;
    font-weight: 600;
}
.view-more {
    width: 17rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    text-align: center;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    background: #B55219;
    border-bottom-right-radius: 1rem;
    border-top-left-radius: 1rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}
/* MOBILE */
@media (max-width: 1380px){
    .container,
    .page-heading .container {
        padding: 0 15px;
    }
}
@media (max-width: 768px){
    .content-slider {
        padding: 0 20px;
    }
    .slick-next, .slick-prev {
        width: 50px;
        height: 50px;
    }
    .header-mb-button{
        display: flex;
        justify-content: end;
    }
    .container {
        overflow: hidden;
    }
    .col-4, .col-3, .col-6, .col-8, .col-9, .col-2{
        max-width: 100%;
        flex: 0 0 100%;
    }
    body.fixed-scroll{
        overflow: hidden;
    }
    #header {
        height: 65px;
    }
    #header .container {
        padding: 0;
    }
    .header-wrap{
        height: 65px;
    }
    .header-item {
        flex: auto;
    }
    .header-logo{
        text-align: center;
    }
    .logo img {
        max-height: 65px;
        scale: 1.25;
        position: absolute;
        top: 10px;
        left: 42%;
    }
    #primary-menu {
        top: 65px;
        left: -100%;
        right: 0;
        bottom: 0;
        position: fixed;
        width: 100%;
        height: 100vh;
        display: flex;
        background-color: #E7E6E2;
        margin-left: 0;
        z-index: 1;
        flex-direction: column;
        margin: 0;
        overflow-y: auto;
        transition: .25s;
    }
    #header.open #primary-menu {
        left: 0;
    }
    #primary-menu > li:last-child{
        display: none;
    }
    #primary-menu > li{
        display: flex;
        margin-bottom: 5.625px;
        border-bottom: 1px solid #f5f5f5;
        margin-left: 22.5px;
        margin-right: 22.5px;   
        border-bottom: 1px solid rgb(0, 0, 0);
    }
    #primary-menu > li a{
        text-transform: capitalize;
        font-size: 0.95rem;
        font-weight: 600;
        width: 100%;
        justify-content: flex-start;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        white-space: nowrap;
        line-height: 1.75;
    }
    #breadcrumbs {
        padding-left: 0;
        padding-right: 0;
    }
    #breadcrumbs ul li:first-child{
        margin-left: 0;
    }
    #breadcrumbs ul li:last-child{
        margin-right: 0;
    }
    #mb-btn-menu,
    #mb-btn-back,
    #mb-btn-book-now{
        display: inline-flex;
    }
    button#mb-btn-menu {
        background: transparent;
        outline: none;
        border: none;
        color: #B55219;
        cursor: pointer;
    }
    button#mb-btn-menu .icon-menu{
        display: flex;
    }
    button#mb-btn-menu .icon-close{
        display: none;
    }
    #header.open button#mb-btn-menu .icon-menu{
        display: none;
    }
    #header.open button#mb-btn-menu .icon-close{
        display: flex;
    }
    #mb-btn-book-now {
        border-color: #B55219;
        background: #B55219;
        color: #fff;
        text-transform: capitalize;
        font-size: 0.95rem;
        font-weight: 600;
        padding-left: 1.875rem;
        padding-right: 1.875rem;
        white-space: nowrap;
        text-decoration: none;
        line-height: 65px;
    }
    .about-us-content,
    .introduce-content {
        order: 2;
        width: 100%;
        padding-right: 0;
    }
    .about-us-slider,
    .introduce-slider {
        order: 1;
        width: 100%;
        height: auto;
        min-height: 300px;
        padding: 0;
        margin-bottom: 1.5rem
    }
    .introduce-title {
        letter-spacing: normal;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    .img-comp-container{
        height: 300px;
    }
    .img-comp-overlay {
        display: none;
    }
    .img-comp-img {
        height: 100%;
    }
    .img-comp-img img,
    .bg-slider img {
        position: absolute;
        inset: 0px;
        box-sizing: border-box;
        padding: 0px;
        border: none;
        margin: auto;
        display: block;
        width: 0px;
        height: 0px;
        min-width: 100%;
        max-width: 100%;
        min-height: 100%;
        max-height: 100%;
        object-fit: cover;
    }
    .content-slider .description {
        font-size: 14px;
        margin-top: 5px;
        margin-bottom: 0;
    }
    .service-row,
    .roominfo-row,
    .page-single .news-row {
        flex-direction: column;
        flex-wrap: initial;
        align-items: initial;
    }
    .service-item,
    .roominfo-item,
    .page-single .news-item {
        padding: 15px 30px;
    }
    .page-single .news-title {
    text-transform: none;
        font-size: 1.75rem;
        letter-spacing: normal;
    }
    .news-item.news-right {
        padding: 0;
    }
    .news-item.news-right .news-thumb {
        margin-bottom: 0;
    }
    .news-list .news-right{
        order: 1;
    }
    .news-list .news-left{
        order: 2;
    }
    .roominfo-item:nth-child(1) .roominfo-box:before, .roominfo-item:nth-child(2) .roominfo-box:before{
        display: none;
    }
    .slider {
        padding-top: 1.25rem; 
        padding-bottom: 2rem; 
        height: calc(70vh - 47px);
    }
    .slider-view {
        width: 90%;
    }
    .content-slider .title{
        font-size: 2rem;
        margin-bottom: 1rem;
        letter-spacing: normal;
    }
    .news-heading,
    .page-heading h2 {
        font-size: 1.45rem;
        margin-bottom: 2rem;
        letter-spacing: normal;
    }
    .heading h2{
        padding: 10px 50px;
        margin-bottom: 0;
        font-size: 1.45rem;
    }
    .heading h2:before,
    .heading h2:after{
        font-size: 50px;
    }

    .accommodation-row {
        scroll-behavior: smooth;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px 0;
        margin: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .accommodation-card {
        flex: 0 0 auto;
        padding: 0;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        min-width: 310px;
        max-width: 310px;
        margin-right: 20px;
    }
    .accommodation-card:last-child{
        margin-right: 0;
    }
    .accommodation-content {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .accommodation-hoz {
        align-items: start;
        flex-direction: column;
        gap: 5px;
    }
    .accommodation-actions{
        flex-direction: row;
        width: 100%;
        gap: 15px;
    }
    ul.accommodation-item{
        max-width: 100%;
    }
    section.about-us,
    section#offers,
    section.terms,
    section#introduce,
    section.news-list {
        padding: 15px 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .page-heading {
        padding: 2rem 0 2rem;
    }
    section#service{
        padding: 0;
    }
    .service-item:first-child{
        border-right: none;
    }
    .service-item:last-child{
        border: none;
    }
    section#home-news,
    section#experiences-news {
        padding: 2rem 0;
    }
    .experiences-row {
        display: block;
    }
    .experiences-row .news-card {
        margin-bottom: 1.25rem;
    }

    .about-us-row,
    .introduce-row {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        margin: 0;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #news-slider {
        min-height: 620px;
    }
    #footer {
        padding-top: 2rem;
    }
    #footer .container {
        max-width: 1280px;
    }
    .footer-content {
        display: block;
        padding: 15px 0 19px;
    }
    .footer-bottom {
        padding: 7px 7px;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
    }
    .btn-mb-li{
        display: flex;
        background: transparent;
        outline: none;
        border: none;
        width: 33px;
        height: 26px;
        color: #fff;
    }
    ul.menu-list li:not(.is-head){
        display: none;
    }
    .menu-list.show .btn-mb-li {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .footer-content ul.menu-list.show li:not(.is-head) {
        display: flex;
    }
    .footer-box-logo {
        max-width: 130px;
        margin: 0 auto;
        padding: 0;
    }
    .reccruitment-card {
        padding: 1.5rem 0;
        flex-wrap: wrap;
    }
    .view-more {
        color: #B55219;
        background: none;
        justify-content: flex-start;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: underline;
        text-transform: initial;
    }
    section.post-content{
        padding: 1rem 0;
    }
    .header-default{
        min-height: 170px;
    }
    .accommodation-box {
        padding: 30px 15px;
    }
    .hotel-card{
        margin-bottom: 40px;
    }
    .hotel-content {
        margin-top: 0;
        margin-bottom: 0;
    }
    section#services {
        padding: 2rem 0;
    }
    .services-card{
        width: 100%;
    }
}
