/* version 1.0 */
/* r: regular */

/* ------------------------------- */
/* ----------- Colors ------------ */
/* ------------------------------- */
.ih-grey{
    color: #746e6e !important;
}

.ih-baige{
    color: #a9998a !important;
}

.ih-white{
    color: #ffffff !important;
}

.ih-black{
    color: #000 !important;
}

.ih-baige-light{
    color: #d7cbbd !important;
}

.ih-grey-light{
    color: #b6b2b1 !important;
}

.ih-black-bg{
    background-color: #000 !important;
}

.ih-grey-bg{
    background-color: #746e6e !important;
}

.ih-white-bg{
    background-color: #ffffff !important;
}

.ih-baige-bg{
    background-color: #a9998a !important;
}

.ih-baige-light-bg{
    background-color: #d7cbbd !important;
}

.ih-grey-light-bg{
    background-color: #b6b2b1 !important;
}

.ih-grey-darker{
    color: #1d1f1e !important;
}

.ih-grey-darker-bg{
    background-color: #1d1f1e !important;
}


/* ------------------------------- */
/* ------- cursor effect --------- */
/* ------------------------------- */
.csr-pointer{
    cursor: pointer;
}


/* ------------------------------- */
/* ------- border effect --------- */
/* ------------------------------- */
.r-border-1px{
    border: 1px solid;
}

.r-border-right-1px{
    border-right: 1px solid;
}

.r-border-left-1px{
    border-left: 1px solid;
}

.r-border-bottom-1px{
    border-bottom: 1px solid;
}

.r-border-top-1px{
    border-top: 1px solid;
}

.r-border-bottom-1px-light{
    border-bottom: 1px solid rgba(0,0,0, .1);
}


/* ------------------------------- */
/* -------- Shade effect --------- */
/* ------------------------------- */
.black-shade{
    position: relative;
    z-index: 1;
}

.black-shade::before{
    content: '';
    background: rgba(0,0,0,.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

.baige-shade{
    position: relative;
    z-index: 1;
}

.baige-shade::before{
    content: '';
    background: rgba(169,153,138,.35);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}


.r-black-shade{
    position: relative;
    z-index: 1;
}

.r-black-shade::before{
    content: '';
    background: rgba(0,0,0,.45);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}


/* ------------------------------- */
/* ------------ Main ------------- */
/* ------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: white !important;
}

a{
    text-decoration: none;
    color: rgba(256,256,256,.8);
}

/* could change depend on projects */
a, input[type="submit"], input[type="button"]{
    /* font-family: 'Oswald'; */
}

a:hover{
    color: inherit;
}

body{
    font-family: lato, sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1, h2, .special-link{
    font-family: big-caslon-fb, serif;
    font-weight: 700;
    font-style: normal;
}

h3, h4, h5{
    font-family: lato, sans-serif;
    font-weight: 700;
    font-style: normal;
}



.r-hide-vs{
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
}

.r-show-vs{
    visibility: visible;
    opacity: 1;
    transition: all .7s ease;
}

.txt-al-center{
    text-align: center;
}

.txt-al-right{
    text-align: right;
}

.txt-al-left{
    text-align: left;
}

.side-hidden{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: auto;
    transition: all 1.2s ease;
}

.special-link{
    font-size: 1.6rem;
}

/* fonts */
.font-light{
    font-weight: lighter;
}

.font-lg{
    font-size: 5rem;
}

.font-med{
    font-size: 3rem;
}

.font-x-med{
    font-size: 2rem;
}

.font-small{
    font-size: .8em;
}

.font-bold{
    font-weight: bold;
}

.small-bold-cap{
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
}

.sales-fonts{
    font-family: grafolita-script, sans-serif;
    font-weight: 600;
    font-style: normal;
}

/* form control */
textarea 
{ 
    word-wrap: break-word;
    resize: none;
}


/* width-height */

.w-100p{
    width: 100%;
}

.h-100p{
    height: 100%;
}

.w-h-100{
    width: 100%;
    height: 100%;
    min-width: 100%;
}

.min-100p{
    min-width: 100%;
}

.cap{
    text-transform: uppercase;
}

.w-50{
    width: 50%;
}

.txt-center{
    text-align: center;
}

.n-margin-padding{
    margin: 0;
    padding: 0;
}

.n-list-style{
    list-style: none;
}

.hidden-item{
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}

/* position */
.r-relative{
    position: relative;
}

.r-absolute{
    position: absolute;
}

.r-fixed{
    position: fixed;
}


/* image style */

.roundImage{
    border-radius: 50%;
}

/* avatar image icon */
.avatar-img-container{
    position: relative;
}

.avatar-img{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* background image style */

.bg-cover-center{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-cover-top{
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.bg-cover-bottom{
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}


/* square image responsive */
.image-square-responsive{
    position:relative;
    overflow:hidden;
    padding-bottom:100%;
}
.image-square-responsive img{
    position:absolute;
    left: 0;
    bottom: 0;
}

.block-with-text {
    overflow: hidden;
    position: relative; 
    max-height: 6em; 
    text-align: justify;  
    margin-right: -1em;
    padding-right: 1em;
}

.block-with-text:before {
    content: '...';
    position: absolute;
    right: 0;
    bottom: 0;
}

.block-with-text:after {
    content: '';
    position: absolute;
    right: 0;
    width: 1em;
    height: 1em;
    margin-top: 0.2em;
    background: white;
}

/* body wrap slide */

.mainContentWrap{
    transition: all .9s ease;
}

.body-wrap{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    display: none;
}

.body-slide{
    filter: grayscale(.8);
    transform: translate(calc(-100vh * 500 / 968));
    cursor: pointer;
    transition: all .9s ease;
}

.ovfl-hidden{
    overflow: hidden;
}

/* responsive box */
.outer {
    position: relative;
}
.outer:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 100%;
}
.outer > .inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


/* ------------------------------- */
/* ---------File Upload Name------ */
/* ------------------------------- */

.fileUpLoad {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.fileUpLoad + label {
    font-size: 1em;
    color: white;
    background-color: rgba(249,166,2,.8);
    display: inline-block;
    margin: 0;
    text-align: center;
    padding: .5em;
    cursor: pointer;
}

.fileUpLoad + label::before{
    content: '\f574';
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    padding-right: .5em;
}



/* ------------------------------- */
/* ------------ Modal ------------ */
/* ------------------------------- */
.modal-wrapper{
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    display: none;
    z-index: 98;
}


/* ------------------------------- */
/* -------- Page Preload --------- */
/* ------------------------------- */
#master_loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    background-color: #b6b2b1;
    z-index: 1300;
    text-align: center;
}

#loading-image{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    grid-row-gap: 1.5rem;
}

@keyframes play120 {
    0% {
        background-position: 0px 0px;
      }
      100% {
        background-position: -18000px 0px;
      }
}
.shapeshifter {
    animation-duration: 2000ms;
    animation-timing-function: steps(120);
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    animation-iteration-count: infinite;
}
.shapeshifter.play {
    animation-name: play120;
}
  

/* ------------------------------- */
/* ---------- Tab Box ------------ */
/* ------------------------------- */
.tabbox{
    padding: 3rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
    min-height: 350px;
    width: calc(100% / 2);
}

.tabbox a{
    padding: .5rem 1rem .5rem 1rem;
}


/* ------------------------------- */
/* ---------- Borders ------------ */
/* ------------------------------- */

.roundBorder{
    border: 0 !important;
    border-radius: 6px !important;
    overflow: hidden;
    transform: translateZ(0) scale(1);
    transition: all .7s ease;
}

.roundBorder-noscale{
    border: 0 !important;
    border-radius: 6px !important;
    overflow: hidden;
    transition: all .7s ease;
}

.normalBorder{
    border: 1px solid rgba(0,0,0,.2) !important;
    border-radius: 0 !important;
    transition: all .7s ease;
}

/* ------------------------------- */
/* -------- Gradient BG ---------- */
/* ------------------------------- */
.mainGradient{
    background: linear-gradient(90deg, rgba(169,153,138,1) 0%, rgba(187,170,154,1) 50%, rgba(200,182,166,1) 100%) !important;
}

.greyGradient{
    background: rgba(209,204,200,1) !important;
}

.childGradient{
    background: linear-gradient(90deg, rgba(116,110,110,1) 0%, rgba(129,122,122,1) 50%, rgba(135,129,129,1) 100%) !important;
}

.roundBorder:hover, .normalBorder:hover{
    transform: translateZ(0) perspective(1px) scale(1.048) !important;
    transition: all .3s ease;
}

/* ------------------------------- */
/* ----------- Shadows ----------- */
/* ------------------------------- */
.drop-shadow{
    box-shadow: rgba(57, 70, 78, 0.15) 0px 0px 1px 0px, rgba(57, 70, 78, 0.25) 0px 20px 55px -8px !important;
}

.text-shadow-full {
    text-shadow: 4px 4px 2px #000;
}

/* ------------------------------- */
/* --------- Animations ---------- */
/* ------------------------------- */
@keyframes slideDown {
    from {
      transform: translateY(-100px);
      opacity: 0;
    }
    to  {
      transform: translateY(0);
      opacity: 1;
    }
}

@keyframes slideUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to  {
      transform: translateY(0);
      opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to  {
      transform: translateX(0);
      opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to  {
      transform: translateX(0);
      opacity: 1;
    }
}

@keyframes popUp {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to  {
      transform: scale(1);
      opacity: 1;
    }
}


@keyframes showing {
    from { opacity: 0;}
    to { opacity: 1;}
}

@keyframes unshowing {
    from { opacity: 1;}
    to { opacity: 0;}
}

@keyframes fadeInOut {
    0% { opacity: 0;}
    50% { opacity: 1;}
    100% { opacity: 0;}   
}

@keyframes gradient { 
    0%   { background-position: 14% 0%; }
    50%  { background-position: 87% 100%; }
    100% { background-position: 14% 0%; }
}

/* ------------------------------- */
/* -------- Initial Setup -------- */
/* ------------------------------- */

/* remove bootstrp modal werid padding */
.modal-open{
    position: fixed;
}

.modal-open, .modal{
    padding-right: 0 !important;
    width: 100%;
}

.modal-content{
    border: 0;
    border-radius: 0;
}

/* scroll to top */
.scrollToTop{
    position: fixed;
    bottom: 1em;
    right: 1em;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #a9998a;
    color: rgba(256,256,256,.9);
    cursor: pointer;
    text-transform: uppercase;
    opacity: 0;
    transition: all 1s ease;
}

.scrollToTop:hover{
    background: #d7cbbd;
}

.showScrollUp{
    z-index: 980;
    opacity: 1;
    transition: all 1s ease;
}

.scrolled {
    transition: .3s linear;
    background: rgba(26, 26, 26, 1);
    border: 0;
}

.unscrolled {
    transition: .3s linear;
    background: transparent;
}

.mobile-logo{
    width: 150px;
    height: 150px;
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: none;
}


/* ------------------------------- */
/* -------- Display Layout ------- */
/* ------------------------------- */
.r-block{
    display: block;
}

.r-none{
    display: none;
}

.r-table{
    display: table;
}

/* ------------------------------- */
/* ------- Flex Box Layout ------- */
/* ------------------------------- */
.r-flex-origin{
    display: flex;
}

.r-flex{
    display: flex;
    align-items: center;
}

.r-flex-between{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r-flex-end{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.r-flex-al-center{
    display: flex;
    align-items: center;
}

.r-flex-around{
    display: flex;
    justify-content: space-around;
}

.r-flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.r-flex-column-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.r-flex-wrap{
    display: flex;
    flex-wrap: wrap;
}

/* ------------------------ */
/* ---- Grid Layout ------- */
/* ------------------------ */
.r-grid{
    display: grid;
}

.r-grid-al-center{
    display: grid;
    align-items: center;
}

.r-grid-jf-center{
    display: grid;
    align-items: center;
    justify-items: center;
}

.r-grid-jf-right{
    display: grid;
    justify-items: right;
    align-items: center;
}

.r-grid-jf-left{
    display: grid;
    justify-items: left;
    align-items: center;
}

/* two column */
.r-grid-2x{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* three column */
.r-grid-3x{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

/* four column */
.r-grid-4x{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.r-grid-center{
    display: grid;
    align-items: center;
    justify-items: center;
}

.r-grid-left{
    display: grid;
    justify-items: left;
}

.r-grid-right{
    display: grid;
    justify-items: right;
}


/* ----------------------------- */
/* -------- Navigation --------- */
/* ----------------------------- */

/* fixed navigation */
.r-fixed-nav{
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;
}

.hambuger-btn{
    position: fixed;
    z-index: 1200;
    right: 0;
    height: 70px;
    display: grid;
    align-items: center;
    padding: 0;
    min-width: 70px;
    justify-items: center;
    padding: 3rem;
}

/* hamburger button with animation (cmstrap.js required) */
.ham-container{
    display: grid;
    cursor: pointer;
    width: 40px;
    text-align: right;
}

.ham{
    width: 100%;
    height: 1px;
    background-color: white;
    margin-bottom: 9px;
    transition: all .7s ease;
}

.ham-2{
    width: 30px;
}

.ham:last-child{
    margin-bottom: 0;
}

.ham-container:hover .ham{
    width: 20px;
    transition: all .7s ease;
}

.ham-container:hover .ham-2{
    width: 40px;
    transition: all .7s ease;
}

/* Booking engine inputs box */

.book-engine-input{
    margin-right: 3rem;
    position: relative;
}


/* booking engine location drop down */
.locDrop{
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    width: 80%;
    min-width: 430px;
    text-align: left;
    padding-bottom: 1em;
    display: none;
}

.locShow{
    display: flex;
    flex-direction: column;
    -webkit-box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08);
    box-shadow: 8px 8px 40px 5px rgba(0, 0, 0, 0.08)
}

.locDrop a{
    font-family: 'Lato', sans-serif;
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: 2em;
    display: flex;
    flex-direction: column;
}

.locDrop a:hover{
    background: #f4f4f4;
}

.locDrop a:hover .locDesTxt::before{
    color: rgba(0, 0, 0, .8)
}

.selected{
    background: #f4f4f4;
}

.locDesTxt{
    font-size: .8em;
    padding-left: 1em;
    position: relative;
}

.locDesTxt::before{
    content: '\f041';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, .5);
}

#locSearch{
    font-size: .8em;
    font-weight: bold;
    color: grey;
    padding: 1em;
    padding-left: 2em;
    cursor: default;
}

#locDropPanel{
    display: flex;
    align-items: center;
}



/* ----------------------------- */
/* --------- Buttons ----------- */
/* ----------------------------- */

/* normal btn */
.r-btn{
    border-radius: 0;
    padding: 10px 20px 10px 20px;
    background: black;
    color: white;
    border: 0;
}   

.r-btn:hover{
    text-decoration: none;
    background: white;
    color: black;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* normal btn */
.r-btn-cap{
    border-radius: 0;
    padding: 10px 20px 10px 20px;
    text-transform: uppercase;
    background: #746e6e;
    color: white;
    border: 0;
}   


/* transparent square white button */
.r-white-transparent-btn{
    padding: 10px 20px 10px 20px;
    background: transparent;
    color: white;
    border: 1px solid white;
}

/* transparent square black button */
.r-black-transparent-btn{
    padding: 10px 20px 10px 20px;
    background: transparent;
    color: black;
    border: 1px solid black;
}

.r-baige-transparent-btn {
    padding: 9px 19px 9px 19px;
    background: transparent;
    color: #a9998a;
    border: 1px solid;
}

/* remove Button default */
.r-btn-remove-default{
    background: transparent;
    border: 0;
}


/* temporary btn */
.btn-custom{
    background: transparent !important;
    border: 1px solid #746e6e !important;
    color: #746e6e !important;
}


/* ----------------------------- */
/* --------- Images ------------ */
/* ----------------------------- */

/* 100% cover */
.cover-100{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 100% contain */
.contain-100{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ------------------------------- */
/* --------- Form input ---------- */
/* ------------------------------- */

.r-input{
    border: .0625rem solid #d2d2d2;
    border-radius: 4px;
    height: 3rem;
    font-size: 1em;
    line-height: 1.625rem;
    padding: .75rem 2rem .75rem 1.25rem;
    width: 100%;
    outline: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    font-size: .8em;
    min-width: 185px;
}

.r-input-no-border{
    border: 0;
    height: 3rem;
    font-size: 1em;
    line-height: 1.625rem;
    padding: .75rem 2rem .75rem 1.25rem;
    width: 100%;
    outline: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    font-size: .8em;
    min-width: 185px;
}



/* ------------------------------- */
/* --------- Page Maque ---------- */
/* ------------------------------- */
.marque-60vh{
    margin: 0 auto;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.marque-100vh{
    margin: 0 auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}


.ih-page-marque{
    position: relative;
}

.page-marque {
    margin: 0 auto;
    height: 100vh;
    padding-top: 70px;
    position: relative;
    z-index: 1;
    user-select: none;
    overflow: hidden;
}

.page-marque-contents{
    position: absolute;
    top: 50%;
    left: 10%;
    color: white;
}

.page-marque-content{
    margin-bottom: 2rem;
}

.page-marque-content:last-child{
    text-align: center;
    margin-bottom: 0;
}

.page-marque-content span{
    color: #d7cbbd;
}

.page-marque-content a{
    color: white;
    position: relative;
}

.page-marque-content a::before{
    content: '';
    background: white;
    width: 25px;
    height: 1px;
    position: absolute;
    left: -30px;
    top: 50%;
    translate: translateY(-50%);
}

.page-marque-content a::after{
    content: '';
    background: white;
    width: 25px;
    height: 1px;
    position: absolute;
    right: -30px;
    top: 50%;
    translate: translateY(-50%);
}


/* ------------------------ */
/* --- center layout ------ */
/* ------------------------ */
.center-1280{
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}


/* ------------------------ */
/* -------- titles -------- */
/* ------------------------ */
.vertical-bef{
    position: relative;
    padding-left: 1.5rem;
}

.vertical-bef::before{
    content: '';
    background: #d7cbbd;
    width: 8px;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.horizontal-bef{
    position: relative;
    padding-top: 3rem;
}

.horizontal-bef::before{
    content: '';
    background: #d7cbbd;
    width: 20px;
    height: 8px;
    /* border-radius: 50%; */
    position: absolute;
    top: 1.5rem;
    left: 0;
}


.mountain-bef{
    position: relative;
}

.mountain-bef::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #b6b2b1;
    transform: rotate(-45deg);
    top: -50%;
    left: -48%;
    z-index: -1;
    -webkit-animation: hmove 3s;
    animation: hmove 3s;
    transition: all 1s ease;
}

.mountain-bef::after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #f4ebe6;
    transform: rotate(45deg);
    top: -50%;
    right: -48%;
    z-index: -1;
    -webkit-animation: hmove 3s;
    animation: hmove 3s;
    transition: all 1s ease;
}


/* ------------------------ */
/* ---- large img box ----- */
/* ------------------------ */
.lg-img-box{
    position: relative;
}

.img-box-svg{
    position: absolute;
}

.bottom-svg{
    background-image: url(/img/svg/bottom-corner.svg);
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    bottom: -3rem;
    left: -3rem;
    z-index: 2;
}
.upper-svg{
    background-image: url(/img/svg/upper-corner.svg);
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    right: -3rem;
    top: -3rem;
    z-index: 2;
}

.bottom-right-svg{
    background-image: url(/img/svg/bottom-right.svg);
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    bottom: -3rem;
    right: -3rem;
    z-index: 2;
}
.upper-left-svg{
    background-image: url(/img/svg/upper-left.svg);
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    left: -3rem;
    top: -3rem;
    z-index: 2;
}

.lg-img-box-content{
    color: white;
    padding: 8rem;
    padding-left: 9rem;
    background-color: #746e6e;
}

.lg-img-box-content-title{
    margin-bottom: 10rem;
}

.lg-img-box-content-txt{
    grid-row-gap: 5rem;
    margin-bottom: 5rem;
}

.lg-img-box-title-container, .lg-img-box-content-container{
    padding: 8rem;
}

.lg-img-box-content-container{
    padding-top: 0;
}



/* ------------------------ */
/* -- large img grid box -- */
/* ------------------------ */
.lg-img-grid-box-container{
    position: relative;
}

.lg-img-grid-box-container{
    background-image: url(/img/explore-img/Picture-059.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 70px);
}

.lg-img-grid-img img{
    border-radius: 6px;
    overflow: hidden;
}

.lg-img-grid-img span{
    font-size: 1.5rem;
}

.lg-img-grid-img:nth-child(1), .lg-img-grid-img:nth-child(2){
    padding-bottom: 30px;
}

.lg-img-grid-img:nth-child(2) img{
    max-height: 122.08px;
}

.lg-img-grid-img:nth-child(4) img{
    min-height: 284.3px;
}

.lg-img-grid-box-content{
    margin-left: 15px;
    background: white;
    border-radius: 6px;
}


/* ------------------------ */
/* -------- Sliders ------- */
/* ------------------------ */
.ih-slider-card{
    /* max-width: 350px; */
    display: grid;
    grid-row-gap: 2rem;
    overflow: hidden;
    padding-bottom: 3rem;
}

.ih-slider-card-conatiner{
    margin-bottom: 5rem;
}

.ih-slider-card-content{
    grid-row-gap: 2rem;
    padding: 3rem;
    padding-bottom: 1rem;
}

.ih-slider-box-container{
    padding: 5rem 3rem 5rem 3rem;
}

.ih-slider-title-container{
    margin-bottom: 5rem;
}

/* large backgound slide - 1 innhotels.com/index #location */
.lg-bg-slider{
    background-image: url(/img/page-marque/photo-1506629824850-7739d6271f9e.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh - 70px);
    transition: all .7s linear;
}

.lg-bg-slider-container{
    padding: 5rem 3rem 5rem 3rem;
    height: 100%;
}

.lg-bg-slider-content{
    max-width: 615px;
    width: 100%;
    /* max-height: 230px; */
    overflow: hidden;
    cursor: grab;
}

.lg-bg-slider-title{
    justify-self: right;
}

.lg-bg-slider-subtitle{
    margin-bottom: 2rem;
}

.ih-list{
    grid-row-gap: 2rem;
}

.subject{
    width: 100px;
    max-width: 100px;
    margin-right: 8rem;
    position: relative;
    padding-left: 2rem;
}

.subject::before{
    content: '';
    background-color: #a9998a;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* review card */
.review-card-img{
    max-width: 150px;
    width: 100%;
    height: 150px;
}

/* .overlay-slider{
    margin-right: 5rem
} */

.review-cards{
    position: relative;
}

.review-card{
    max-width: 480px;
    max-height: 615px;
    background: #a9998a;
    padding: 5rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
    border-radius: 6px;
    position: absolute;
    top: 0;
    z-index: -1;
    transform: scale(.9);
    left: -6rem;
    margin-left: 0;
    opacity: .8;
    transition: all .7s ease;
}

.review-card-info a{
    padding: 5px 10px 5px 10px;
    border: 1px solid #d7cbbd;
    max-width: 100px;
    text-align: center;
    margin-top: 1rem;
}

.review-row{
    color: white;
}

.review-row:nth-child(1), .review-row:nth-child(2) h3{
    margin-bottom: 1rem;
}

.review-row:nth-child(2){
    margin-bottom: 8em;
}

.review-card-img, .review-card-avatar{
    margin-right: 2rem;
}

.review-card-score img{
    margin-right: 1rem;
}

.review-card-title{
    margin-top: 1rem;
}

.review-active{
    position: relative;
    z-index: 1;
    transform: scale(1);
    left: 0;
    margin-left: 5rem;
    opacity: 1;
    transition: all .7s ease;
}


/* image-slider */
.image-slider-container{
    position: relative;
}

.image-slider-container img{
    /* width: 150% !important; */
    max-height: 600px;
}

.image-slider-title{
    margin-bottom: 5rem;
    padding-left: 5%;
}

.image-slider-container::before{
    content: '';
    background: #a9998a;
    position: absolute;
    max-width: 500px;
    width: 100%;
    height: 110%;
    top: -5%;
    left: 5%;
    border-radius: 6px;
    z-index: -1;
}


/* deal slick customize */
.ih-slider-card-conatiner .slick-slide {
    margin: 0 3rem;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}

/* .ih-slider-card-conatiner .slick-track [aria-hidden="true"] {
    visibility: visible;
} */


.ih-slider-card-conatiner .slick-list{
    padding: 3rem;
    overflow: visible !important;
}

.ih-slider-card-conatiner .slick-active{
    visibility: visible;
    opacity: 1;
    transition: all .5s ease;
}

.ih-slider-card-conatiner .slick-arrow{
    z-index: 10;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    background: transparent !important;
}

.ih-slider-card-conatiner .slick-prev{
    left: -10rem !important;
}

.ih-slider-card-conatiner .slick-next{
    right: -10rem !important;
}

.ih-slider-card-conatiner .slick-prev:before, .ih-slider-card-conatiner .slick-next:before{
    color: #746e6e !important;
    opacity: 1 !important;
    font-family: myriad-pro, sans-serif !important;
    font-weight: lighter;
    font-style: normal;
    padding-top: 2.2rem !important;
    color: #a9998a !important;
}

.ih-slider-card-conatiner .slick-next::before{
    content: 'NEXT' !important;
    padding: .5rem;
    border-right: 5px solid #746e6e;
    border-bottom: 5px solid #746e6e;
}

.ih-slider-card-conatiner .slick-prev::before{
    content: 'PREV' !important;
    padding: .5rem;
    border-left: 5px solid #746e6e;
    border-bottom: 5px solid #746e6e;
}

.slick-dotted{
    margin-bottom: 0 !important;
}

/* page marque slick customize */
.page-marque .slick-slide{
    margin: 0;
    opacity: 1;
    visibility: visible;
}

.page-marque .slick-list, .page-marque .slick-list div{
    overflow: hidden;
    height: 100%;
}

.page-marque .slick-dots{
    bottom: 8rem;
}

.page-marque .slick-dots li{
    background: rgba(256,256,256,.8);
    width: 60px;
    height: 15px;
    margin: 0;
}

.page-marque .slick-dots .slick-active{
    background: #a9998a;
}

.page-marque .slick-dots li button:before{
    content: '';
}

.page-marque .slick-dots li button{
    width: 100%;
    height: 100%;
}

.page-marque-content{
    height: auto !important;
}

.page-marque .slick-track{
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.page-marque img{
    width: 100%;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
    transform: scale(1.2);
}

.page-marque .slick-active img{
    transform: scale(1);
}

.page-marque .black-shade{
    position: relative;
    z-index: -1;
}

.page-marque .black-shade::before{
    z-index: 1;
}

/* ------------------------ */
/* -------- Side-nav ------ */
/* ------------------------ */
/* side-navgation-area */

.side-nav-panel{
    position: fixed;
    z-index: 1000;
    background: white;
    max-width: 500px;
    width: calc(100vh * 500 / 968);
    height: 100%;
    padding: 5rem;
    padding-top: 70px;
    right: -100%;
    opacity: 0;
    transition: all .9s ease;
}

.side-nav-link{
    margin-right: 3rem;
}

.side-nav-link-list li{
    margin-bottom: 2rem;
}

.side-nav-row{
    width: 100%;
    margin-bottom: 2rem;
}

.side-nav-row:last-child{
    margin-bottom: 0;
}

.side-nav-banner{
    position: relative;
}

.side-nav-banner-box{
    height: 100%;
    transition: all 1.2s ease;
}

.side-nav-banner-tip{
    position: absolute;
    bottom: -25px;
    z-index: 1;
}

.side-nav-banner-tip::before{
    content: '';
    width: 120%;
    height: 30px;
    background-color: #1d1f1e;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    position: absolute;
}

.side-nav-book{
    padding: 2rem 3rem 2rem 3rem;
    font-size: 1.5em;
}

.side-nav-logo{
    width: 70px;
    height: auto;
}

.side-nav-account{
    text-align: center;
    grid-row-gap: 1rem;
}


/* ham close control */

.ham-close-up{
    transform: rotate(-45deg) translate(-7px, 7px);
}

.ham-close-ctr{
    width: 0 !important;
}

.ham-close-lor{
    transform: rotate(45deg) translate(-7px, -7px);
}

/* menu open control */
.menu-open{
    right: 0;
    opacity: 1;
    transition: all .9s ease;
}

.login-hide{
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
}

.master_sign_out{
    position: absolute;
    border-radius: 50%;
    width: 100%;
    width: 100%;
    height: 100%;
    display: grid;
    top: 0;
    justify-items: center;
    background: rgba(169, 153, 138, .8);
    color: white;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
}

.avatar-img-container:hover .master_sign_out{
    visibility: visible;
    opacity: 1;
    transition: all .7s ease;
}

.master_login_panel{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 5rem;
    background: white;
    transition: all .7s ease;
}

.login_back{
    height: 80px;
}

.login_form_info{
    margin-bottom: 12px;
    font-size: .7em;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 1rem;
    color: white;
    position: relative;
}

.login_form_info_box{
    position: absolute;
    font-size: 1em;
    max-width: 220px;
    padding: 1rem;
    background: white;
    color: black;
    right: -250px;
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
    z-index: 1;
}

.login_form_info_box:before{
    content: '';
    background: white;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    left: -10px;
    z-index: -1;
}

.login_form_info:hover .login_form_info_box{
    visibility: visible;
    opacity: 1;
    transition: all .7s ease;
}

.checkBoxContainer label{
    font-size: .8em;
    font-family: 'Oswald';
    font-weight: lighter;
}

.form-input-row{
    border: 1px solid rgba(0,0,0, .1);
    border-radius: 6px;
    padding: 1rem;
    max-height: 105px;
}

.form-input-row label{
    font-size: .8em;
}

/* bootstrap form customize */
.form-input-row .form-control:focus{
    box-shadow: none;
}

.master_nav_form_control{
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    height: auto !important;
    margin-top: 0 !important;
}

/* login social media */
.login-social .f-social-twitter i{
    background: rgba(56, 161, 243, 1) !important;
}

.login-social .f-social-instagram i{
    background: rgba(193,53,132, 1) !important;
}

.login-social .f-social-linkedin i{
    background: rgba(0,119,181, 1) !important;
}

.login-social .f-social-icon:last-child{
    margin-right: 0;
}


/* mobile view control */

.mobile-fixed-nav{
    position: fixed;
    z-index: 9999;
    right: 0;
    height: 70px;
    min-width: 70px;
}

.mobile-book-btn{
    background: linear-gradient(120deg, rgba(0,0,0,.8) 0%, rgba(56,56,56,.8) 50%, rgba(0,0,0,.8) 100%);
    font-size: .7rem;
    text-transform: uppercase;
    background-size: 400% 400%;
    animation: gradient 3s ease-in-out infinite;
    margin-top: 230px;
    width: 100%;
    height: 150px;
    color: white;
    position: absolute;
    right: 0;
    transition: all .5s ease;
    cursor: pointer;

    /* ljl customize */
    display: grid;
    justify-items: center;
    padding-bottom: 2rem;
}

.mobile-book-btn i{
    font-size: 1.5rem;
}

.mobile-book-btn span{
    transform: rotate(90deg);
}

.hide-book{
    right: -100%;
    transition: all .5s ease;
}


/* customize bootstrap form style */
.form-control{
    margin-top: .5rem;
    max-width: none !important;
    background-color: transparent !important;
    border: .0625rem solid #d2d2d2;
    border-radius: 4px;
    height: 5rem;
    font-size: 1em;
    line-height: 1.625rem;
    padding: .75rem 2rem .75rem 1.25rem;
    width: 100%;
    outline: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
}

.form-group input[type="submit"] {
    border-radius: 0;
    border-color: white;
    border: 0;
    color: white;
    background: rgba(185,168,152,1);
    width: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    text-transform: uppercase;
    font-family: 'Oswald';
}


/* ------------------------ */
/* --- Grid Square Box ---- */
/* ------------------------ */
.grid-square-box{
    position: relative;
    width: calc(100% / 3);
    padding-bottom: calc(100% / 3);
}

.grid-square-box>a{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    text-decoration: none;
    z-index: 1;
}

.grid-square-box>a::before{
    content: '';
    position: absolute;
    background: rgba(0,0,0,.15);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}


.grid-square-box>a>.bg-cover-center>.ih-white{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all .7s ease;
    visibility: hidden;
    opacity: 0;
    transition: all .7s ease;
}

.grid-square-box>a:hover .ih-white{
    visibility: visible;
    opacity: 1;
    transition: all .7s ease;
}

.grid-square-box>a:hover .grid-square-btn{
    background: rgba(256,256,256,1);
    border: 1px solid white;
    color: black;
    transition: all .7s ease;
}

.grid-square-box>a>div>img{
    transform: scale(1);
    transition: all .7s ease;
}

.grid-square-box>a:hover img{
    transform: scale(1.05);
    transition: all .7s ease;
}

.grid-square-box>a:hover .ih-white::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.6);
    z-index: -1;
    transition: all .7s ease;
}

.grid-square-box a span:nth-child(2){
    font-family: 'Lato', sans-serif;
}

.grid-square-btn{
    width: 100px;
    height: 100px;
    border: 1px solid;
    border-radius: 50%;
}


@media(min-width: 1289px){
    .row{
        margin: 0;
    }
}

@media(max-width: 1150px){
    .page-marque{
        padding-top: 0;
    }

    /* .hambuger-btn{
        display: none;
    } */

    .mobile-logo{
        display: block;
    }

    .nav-content{
        display: none;
    }

    .mobile-fixed-nav{
        display: flex;
        opacity: 1;
        transition: all .5s ease;
    }

    .review-card{
        padding: 3rem;
    }

    .grid-square-box{ 
        width: calc(100% / 2);
        padding-bottom: calc(100% / 2);
    }
}

@media(max-width: 1024px){
    .grid-container{
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 3rem;
    }

    .grids{
        width: 205px;
    }


    .lg-img-box{
        display: block;
    }

    .lg-img-box-img, .lg-img-box-content{
        width: 100%;
    }

}

@media (max-width: 992px){
    .lg-img-grid-box-container{
        height: auto;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .lg-img-grid-img:nth-child(3) {
        padding-bottom: 30px;
    }

    .lg-img-box-title-container, .lg-img-box-content-container {
        padding: 5rem;
    }
}

@media(max-width: 824px){
    .grid-square-box{
        position: relative;
        width: calc(100%);
        padding-bottom: calc(100%);
    }
}

@media(max-width: 715px){
    .tab-two-lg{
        display: block;
    }

    .tabbox{
        width: 100%;
    }
}


@media (max-width: 768px){
    .lg-img-grid-box{
        display: grid;
        justify-items: center;
        grid-row-gap: 5rem;
    }

    .lg-img-grid-box-img, .lg-img-grid-box-content{
        width: 100%;
        margin-left: 0;
    }
}


@media(max-width: 655px){
    .page-marque-contents{
        left: 0;
        padding: 3rem;
        top: 40%;
    }
}


@media(max-width: 500px){
    .side-nav-panel{
        width: 100%;
    }

    .side-nav-banner-tip h3{
        font-size: 3rem;
    }

    .login_form_info_box{
        top: -80px;
        bottom: auto;
        left: -80px;
    }

    .login_form_info_box:before{
        top: auto;
        left: 50%;
        transform: rotate(45deg) translateX(-50%);
        bottom: -10px;
    }

    .side-nav-link-list li{
        margin-bottom: 1.5rem;
    }

}


@media(max-width: 545px){
    .grid-container{
        grid-template-columns: 1fr;
        grid-row-gap: 3rem;
        justify-items: start !important;
    }

    .lg-img-box-content{
        padding: 3rem;
        padding-bottom: 10rem;
    }

    .lg-img-box-title-container, .lg-img-box-content-container {
        padding: 3rem;
    }

    .ih-slider-card-conatiner .slick-slide{
        margin: 0;
    }

    .ih-slider-box-container{
        padding: 5rem 0 5rem 0;
    }

    
    h1{
        font-size: 5rem;
    }
}

@media(max-width: 375px){
    .logo-group-ico{
        width: 40px;
        height: 40px;
    }

    .marketing-social-marketing{
        padding: 0;
    }
}


@media (max-height: 800px){
    .side-nav-row{
        margin-bottom: 1rem;
    }

    .side-nav-row:nth-child(3){
        padding: 2rem !important;
        padding-bottom: 0 !important;
    }

    .side-nav-book{
        font-size: 1em;
    }

    .side-nav-link-list .special-link{
        font-size: 1em;
    }

    .side-nav-link-list li{
        margin-bottom: .5rem;
    }

    .side-nav-banner-box{
        max-height: 240px;
    }

    .modal.in .modal-dialog{
        top: auto !important;
        transform: translateY(0) !important;
    }

    .side-nav-link-list li{
        margin-bottom: 1rem;
    }
}

@media (max-height: 700px){

    .lg-bg-slider{
        height: auto;
    }

    .r-grid-jf-center{
        grid-row-gap: 3rem;
    }
}

/* iPhone 5 */
@media(max-width: 375px) and (max-height: 568px){

    .side-nav-panel{
        padding: 2rem;
    }

    .side-nav-row{
        margin-bottom: 1rem;
    }

    .side-nav-row:nth-child(3){
        padding: 2rem !important;
        padding-bottom: 0 !important;
    }

    .side-nav-book, .side-nav-account-info a{
        font-size: 1em;
        padding: .5rem 1rem .5rem 1rem;
    }

    .side-nav-link-list li{
        margin-bottom: .5rem;
    }

    .page-marque-contents{
        top: 30%;
    }
     
    h1{
        font-size: 4rem;
    }

    .page-marque .slick-dots li{
        width: 40px;
    }
}