:root {
    --tmpbody: #f6f1e9;
    --tmp_bg_nav: #fbf5ed;
    --tmp_bg_stickyft: #004e89;
    --tmp_bg_navitem: #fbf5ed;
    --tmp_color_navlink: rgb(71, 70, 70);
    --tmp_color_navlink_active: black;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    background-color: var(--tmpbody);
    color: rgba(0, 0, 0, 0.75);
}

.row {
    width: 100% !important;
    margin-left: 0 !important;
}

ul.show {
    width: 110px !important;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, var(--tmpcolor6), var(--tmpcolor7), var(--tmpcolor5));
    padding: 20px 10px;
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 28000ms linear infinite;

}

.marquee-content1 {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 28000ms linear infinite;
}

.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    font-weight: bold;
}

.marquee-item i {
    font-size: 3rem;
    margin-bottom: 10px;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.contact-btn {
    color: white;
    background-color: #9c4c29cb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    color: white;
    background-color: #6d2e13cb;
    transform: scale(1.03);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 1;
}


.align-item-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.stickyft {
    margin-left: 0;
    padding: 10px;
    width: 100%;
    background-color: var(--tmp_bg_stickyft) !important;
    position: fixed;
    bottom: -10px;
    z-index: 9999;
}

.sticky-icon-box {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

ul {
    margin-left: -15px !important;
}

li {
    list-style: none !important;
}

li a {
    text-decoration: none;
}

nav {
    display: flex;
    background-color: var(--tmp_bg_nav);
}

.navbar-nav {
    display: inline-flex;
}

.navbar-nav-container {
    display: flex;
    justify-content: flex-end;
}

nav .logo {
    margin-top: 5px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.bg {
    position: relative;
}

.img-background {
    position: absolute;
    z-index: -1;
    top: 0;
    opacity: 0.2;
    height: 100%;
}

.active-img {
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    animation: fadeIn 0.8s forwards;
}

.active-img:hover {
    transform: scale(1);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.border-col {
    border: white solid 1px;
}

.text-tap {
    text-indent: 1.3em !important;
}

.nav-item {
    background-color: var(--tmp_bg_navitem);
    border-radius: 3px;
}

.shadow {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-link {
    color: var(--tmp_color_navlink);
}

.nav-link.active {
    color: var(--tmp_color_navlink_active) !important;
    font-weight: bold !important;
}

.nav-logo-sec-hide1 {
    display: none !important;
}

.dropdown-toggle {
    background-color: var(--tmp_bg_nav) !important;
}

.room-img {
    border-radius: 170px 10px 170px 10px;
    opacity: 0.8;
}

.room-img-container {
    position: relative;
}

.room-img-container:hover .room-img {
    opacity: 1;
}

.text-over-img-l,
.text-over-img-r {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    position: absolute;
    z-index: 9000;
    top: 100px;
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.text-over-img-l {
    transform: translateX(-150px);
}

.text-over-img-r {
    transform: translateX(150px);
}

.room-img-container:hover .text-over-img-l {
    transform: translateX(80px);
    opacity: 1;
}

.room-img-container:hover .text-over-img-r {
    transform: translateX(80px);
    opacity: 1;
}

.hero-img {
    border-radius: 10px 70px 10px 70px;
}

div.text-center:nth-child(2)>span {
    font-size: 5em;
}

.marquee-item .img {
    border-radius: 5px !important;
    overflow: hidden;
    transition: border-radius 0.1s ease-in-out 0.2s, transform 0.3s ease-in-out 0.2s;
}

.marquee-item .img:hover {
    transform: scale(1.2) !important;
}

#_resbookingbtnContainer button,
#_resbookingbtnContainer a {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

@media screen and (max-width: 930px) {
    .navbar-nav-container ul {
        display: flex;
        width: 100%;
        text-align: center;
    }

    .navbar-nav-container ul li {
        text-align: center;
    }

    .navbar-nav-container ul li a {
        width: 90%;
        margin-left: 5%;
        text-align:center;
        background-color: white;
        border-radius: 5px;
    }

    .navbar-nav-container {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .nav-logo-sec-hide {
        display: none !important;
    }

    .nav-logo-sec-hide1 {
        display: flex !important;
        margin-top: 5px;
    }

    .hero-img {
        border-radius: 10px 50px 10px 50px;
    }

    .nav-l {
        display: flex;
    }

    .btn-light {
        border: none;
        margin-right: 5px;
    }

    .hero {
        margin-top: 30px;
    }

    div.text-center:nth-child(2)>span {
        font-size: 3em !important;
    }

    div.text-center:nth-child(2)>h2 {
        font-size: 1em !important;
    }

    .text-over-img-l {
        top: 180px;
    }

    .text-over-img-l p {
        display: none;
    }

    .room-img-container:hover .text-over-img-l {
        transform: translateX(120px);
        opacity: 1;
    }

    .room-img-container:hover .text-over-img-r {
        transform: translateX(120px);
        opacity: 1;
    }

    .col-6 {
        padding: 0 !important;
    }

    .contact-btn b {
        font-size: xx-small;

    }

    .contact-btn {
        padding: 3px !important;
    }
}

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