﻿@charset "utf-8";
/* CSS Document */

/*html, body {
	width: 100%;
	overflow-x: hidden;
} */
html {
    scroll-behavior: smooth;
}

* {
    text-decoration: none !important;
    outline: none !important;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    background: #fff;
    letter-spacing: 0.4px;
    overflow-x: hidden;
    color: #000000;
}

img {
    width: auto;
    max-width: 100%;
    height: auto;
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a, a:hover, a:focus {
    text-decoration: none;
}

ol {
    list-style: decimal inside;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
}

p {
    margin: 0;
    padding: 0;
    color: #000;
    font-size: 14px;
    line-height: 22px;
    font-family: 'Poppins', sans-serif;
}

b, strong {
    font-weight: 600;
}

blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

a, a:hover, a:visited {
    color: #5863f8;
}

::selection {
    background: #5863f8;
    color: #fff;
}

::-moz-selection {
    background: #5863f8;
    color: #fff;
}

a:focus, p:focus, div:focus, input:focus, textarea:focus, submit:focus, button:focus {
    outline: none;
}

@font-face {
    font-family: CambriaFonts;
    src: url(fonts/Cambria.ttf);
}

/***************
Scroll Bar Design
**************/
/* width */
::-webkit-scrollbar {
    width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #000;
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #38b4f3;
    }
/***************
Scroll Bar Design
**************/
/***************
page scrool
**************/
.scrollup {
    right: 0px;
    position: fixed;
    border-radius: 0px;
    bottom: -80px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    background: #5863f8;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    text-align: center;
    color: #FFF;
    padding: 15px;
}

    .scrollup.active {
        bottom: 0px;
        right: 0px;
    }
/* .scrollup:hover 
{
    background-color: rgba(37, 37, 37, 0.7);
} */

/***************
page scrool
***************/

/*******************************
********NAV BAR*****************
*****************************/
#pull {
    display: none;
}

.nav {
    float: right;
}

    .nav > ul > li {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: auto;
        height: auto;
        margin: 0px 48px 0px 0px;
    }

        .nav > ul > li:last-child,
        .nav > ul > li:only-child {
            margin: 0;
        }

        .nav > ul > li::before {
            position: absolute;
            bottom: 0px;
            left: 0px;
            z-index: 1;
            content: " ";
            width: 100%;
            height: 3px;
            background: #fff;
            transform: scaleX(0);
            -webkit-transform: scaleX(0);
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }

        .nav > ul > li:hover::before,
        .nav > ul > li.current-menu-item::before,
        .nav > ul > li.current-menu-parent::before,
        .nav > ul > li.current-menu-ancestor::before {
            transform: scaleX(1);
            -webkit-transform: scaleX(1);
        }

        .nav > ul > li > a {
            position: relative;
            z-index: 1;
            display: block;
            width: auto;
            height: auto;
            padding: 20px 0px;
            color: #fff;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 500;
            line-height: 25px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }
        /* .nav > ul > li:hover > a,
.nav > ul > li.current-menu-item > a,
.nav > ul > li.current-menu-parent > a,
.nav > ul > li.current-menu-ancestor > a 
{
    color: #1db315;
} */

        .nav > ul > li > ul {
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 9999;
            width: 300px;
            height: auto;
            padding: 0px 0px 0px 0px;
            background: none;
            text-align: left;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }

        .nav > ul > li:last-child > ul,
        .nav > ul > li:nth-last-child(2) > ul {
            left: auto;
            right: 0;
        }

        .nav > ul > li:hover > ul {
            top: 100%;
            opacity: 1;
            visibility: visible;
        }

        .nav > ul > li > ul > li,
        .nav > ul > li > ul > li > ul > li {
            position: relative;
            width: 100%;
            height: auto;
            float: left;
        }

            .nav > ul > li > ul > li > a,
            .nav > ul > li > ul > li > ul > li > a {
                display: block;
                width: auto;
                height: auto;
                padding: 2px 15px 1px 15px;
                background: rgba(11, 30, 48, 0.8);
                border-top: 1px #485665 solid;
                text-transform: capitalize;
                font-weight: 500;
                font-size: 12px;
                color: #fff;
                line-height: 18px;
                cursor: pointer;
                transition: all 0.3s ease-in-out;
                -webkit-transition: all 0.3s ease-in-out;
            }

        .nav > ul > li:hover > ul > li > a,
        .nav > ul > li:hover > ul > li > ul > li > a {
            padding: 9px 15px 10px 15px;
        }

        .nav > ul > li > ul > li:hover > a,
        .nav > ul > li > ul > li.current-menu-item > a,
        .nav > ul > li > ul > li.current-menu-parent > a,
        .nav > ul > li > ul > li > ul > li:hover > a,
        .nav > ul > li > ul > li > ul > li.current-menu-item > a,
        .nav > ul > li > ul > li > ul > li.current-menu-parent > a {
            background: #199adb;
        }

        .nav > ul > li > ul > li > ul {
            position: absolute;
            top: 10%;
            left: 100%;
            z-index: 9999;
            width: 240px;
            height: auto;
            background: none;
            text-align: left;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }

        .nav > ul > li:last-child > ul > li > ul,
        .nav > ul > li:nth-last-child(2) > ul > li > ul {
            left: auto;
            right: 100%;
        }

        .nav > ul > li > ul > li:hover > ul {
            top: 0;
            opacity: 1;
            visibility: visible;
        }

.middle-conter {
    width: 100%;
    display: inline-block;
    vertical-align: top;
}
/*******************************
********NAV BAR*****************
*****************************/

.logo {
    float: left;
    width: auto;
    height: auto;
    padding: 6px 0;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9999;
}

.stick {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #5863f8;
    transition: all 0.4s;
}

.closebtn {
    display: none;
}

/************ End Header ***************/


/************ Home Banner Slider ***************/

.banner-slider .owl-stage-outer {
    width: 100%;
}

.slider-text {
    position: absolute;
    z-index: 999;
    width: 580px;
    top: 45%;
}

    .slider-text strong {
        font-size: 62px;
        color: #FFF;
        font-weight: 700;
        line-height: 73px;
        margin-bottom: 20px;
        display: inline-block;
        font-family: CambriaFonts;
    }

    .slider-text p {
        color: #FFF;
    }

.banner-slider .owl-nav {
    margin: 0;
    position: absolute;
    bottom: 10%;
    right: 15%;
}

.banner-slider .owl-prev {
    background: #FFF !important;
    width: 52px;
    height: 52px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0 !important;
    margin: 0 !important;
}

.banner-slider .owl-next {
    background: #5863f8 !important;
    width: 52px;
    height: 52px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0 !important;
    margin: 0 !important;
}

.banner-slider .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
}

/************ Home Date submit form ***************/

.top-forms {
    background: #FFF;
    padding: 35px 0px;
    position: relative;
    z-index: 999;
    top: -80px;
    box-shadow: 0px 8px 15px #dadada;
}

    .top-forms form {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 100%;
    }

.date-form {
    width: 100%;
    display: inline-block;
    height: 53px;
    background: #eeeeee;
    padding: 10px;
    border: none;
}

.form-area {
    margin: 0 15px;
}

    .form-area select {
        display: block;
        width: 100%;
        display: inline-block;
        height: 53px;
        background: #eeeeee;
        padding: 10px;
        border: none;
    }

button.submit-btn {
    height: 53px;
    width: 53px;
    border: none;
    background: #5863f8;
    color: #FFF;
    font-size: 18px;
}

.form-area label {
    color: #5863F8;
    font-size: 13px;
}


/************ Home About Us ***************/

.about-section {
    padding-bottom: 90px;
}

.small-heading {
    font-size: 14px;
    font-weight: bold;
    color: #5863F8;
    text-transform: uppercase;
}

.heading {
    color: #000000;
    font-size: 42px;
    font-weight: 800;
    line-height: 56px;
}

.para-text b {
    font-size: 15px;
    line-height: 23px;
    color: #000000;
    margin-bottom: 18px;
    display: inline-block;
}

.para-text p {
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    margin-bottom: 20px;
}

a.read-more-btn {
    background: #5863f8;
    color: #FFF;
    font-size: 14px;
    text-align: center;
    padding: 14px 43px;
    display: inline-block;
}

/************ Home About Us Scroll ***************/

.about-scroll {
    padding: 90px 0;
    background: url('../images/about-scroll-bg.png') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.width-cont {
    width: 380px;
}

.white-text .heading {
    color: #FFF;
}

.finest-icon {
    width: 58px;
    height: 58px;
    background: #5863f8;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
}

    .finest-icon img {
        width: auto !important;
    }

.details-area {
    background: #FFF;
    padding: 25px 12px;
}

    .details-area h4 {
        font-size: 18px;
        line-height: 27px;
        color: #000000;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .details-area p {
        font-size: 14px;
        color: #B1B1B1;
        line-height: 21px;
        font-weight: 500;
    }


.finest-details .owl-nav {
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.finest-details .owl-next {
    width: 60px;
    height: 60px;
    /*background: #FFF !important;*/
    background: #5863f8 !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    margin: 0 !important;
    position: relative;
    right: -100px;
}

.finest-details .owl-prev {
    width: 60px;
    height: 60px;
    /*background: #FFF !important;*/
    background: #5863f8 !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    margin: 0 !important;
    position: relative;
    left: -100px;
}

.finest-details .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
    opacity: 0.5;
}

/************ Home Testimonial ***************/

.testimonial {
    background: #f8f8f8;
}

.left-testimo {
    margin-left: 30%;
}

.client-image {
    width: 57px;
    height: 57px;
    border-radius: 100px;
    margin-right: 15px;
    overflow: hidden;
}

.client-details {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .client-details h4 {
        font-size: 18px;
        font-weight: 600;
        line-height: 27px;
    }

    .client-details span {
        font-size: 12px;
        opacity: 0.5;
        line-height: 18px;
    }

.cover-testimonial {
    width: 68%;
}

    .cover-testimonial p {
        font-weight: 500;
    }

.testimo-slider .owl-dots {
    text-align: left;
    margin-top: 10px;
}

    .testimo-slider .owl-dots .owl-dot.active span, .testimo-slider .owl-dots .owl-dot:hover span {
        background: #5863f8;
    }


    .testimo-slider .owl-dots .owl-dot span {
        width: 10px;
        height: 10px;
        margin: 5px 12px 0px 0;
        background: #d1d1d1;
    }


.testimo-slider .owl-nav {
    margin: 0;
    position: absolute;
    bottom: -80px;
    right: -265px;
}

.testimo-slider .owl-prev {
    background: #5863f8 !important;
    width: 52px;
    height: 52px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0 !important;
    margin: 0 1px 0 0 !important;
}

.testimo-slider .owl-next {
    /*background: #FFF !important;*/
    background: #5863f8 !important;
    width: 52px;
    height: 52px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    border-radius: 0 !important;
    margin: 0 !important;
}


/************ Home Restaurant ***************/

.restaurant {
    padding-top: 92px;
}

.pic {
    position: relative;
}

    .pic img {
        width: 100%;
        max-width: inherit;
    }

    .pic .holder {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-repeat: no-repeat;
        background-size: cover;
    }

.image-food {
    width: 170px;
    flex: 0 0 170px;
    margin-right: 15px;
}

.food-details {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    margin-bottom: 30px;
    justify-content: space-between;
}

.arrow-food a {
    width: 60px;
    height: 60px;
    background: #5863f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-food {
    margin-left: 45px;
    margin-top: 124px;
}

.food-content b {
    color: #5863F8;
    text-transform: uppercase;
    font-weight: 800 !important;
    line-height: 21px;
}

.food-content h5 {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 10px;
}

.food-content p {
    color: #B1B1B1;
    font-weight: 600;
}


.food-block {
    background: #f8f8f8;
    margin-bottom: 30px;
}

/************ Home Blog ***************/
.blog-text {
    padding: 25px;
}

    .blog-text strong {
        color: #5863F8;
        font-size: 14px;
        line-height: 21px;
        text-transform: uppercase;
        font-weight: bold !important;
    }

    .blog-text h4 {
        font-size: 18px;
        line-height: 27px;
        color: #000000;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .blog-text p {
        color: #B1B1B1;
        font-weight: 500;
    }

/************ Home Photos ***************/

.photos {
    padding-top: 90px;
}

.photos-scroll .owl-nav {
    margin: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.photos-scroll .owl-next {
    width: 60px;
    height: 60px;
    background: #5863F8 !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    margin: 0 !important;
    position: relative;
    right: 10%;
    opacity: 0.5;
}

.photos-scroll .owl-prev {
    width: 60px;
    height: 60px;
    background: #5863F8 !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    margin: 0 !important;
    position: relative;
    left: 10%;
    opacity: 0.5;
}

.photos-scroll .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
    opacity: 1;
}

/************ Footer ***************/

footer {
    background: #121212;
    padding-top: 90px;
}

.footer-holder {
    margin-bottom: 30px;
}

    .footer-holder p {
        color: #B1B1B1;
        font-size: 14px;
        line-height: 21px;
        font-weight: 500;
    }


.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .footer-social li {
        margin-right: 10px;
    }

.divided {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.footer-holder h4 {
    color: #FFF;
    font-size: 18px;
    line-height: 27px;
    font-weight: bold;
    margin-bottom: 20px;
}

.link-footer ul li {
    margin-bottom: 10px;
}

    .link-footer ul li a {
        color: #5863F8;
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
    }

.footer-contact li {
    padding-bottom: 10px;
}

    .footer-contact li a {
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        line-height: 21px;
    }

        .footer-contact li a span {
            margin-right: 10px;
        }

.website {
    text-align: right;
}

.copy p {
    color: #B1B1B1;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}



/***********Inner Page**************/
.inner-banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0;
}

.inner-banner-text strong {
    font-weight: 800;
    color: #FFF;
    line-height: 56px;
    font-size: 42px;
    margin-bottom: 15px;
    font-family: CambriaFonts;
}

ul.breadcrumb {
    padding: 0;
    margin: 0;
    list-style: none;
    background: transparent;
}

    ul.breadcrumb li {
        display: inline;
        font-size: 14px;
        color: #fff;
        font-weight: 600;
    }

        ul.breadcrumb li + li:before {
            padding: 8px;
            color: #FFF;
            content: "/\00a0";
        }

        ul.breadcrumb li a {
            color: #fff;
            text-decoration: none;
        }

            ul.breadcrumb li a:hover {
                color: #fff;
                text-decoration: underline;
            }

.room-arrow {
    margin-top: 0;
    height: 100%;
    margin-left: 20px;
}

    .room-arrow a {
        height: 187px;
        width: 50px;
    }

.inner-dateform {
    background: #f8f8f8;
    padding: 55px 0;
}



.gap-section {
    padding-top: 90px;
}

.inner-dateform form {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.inner-dateform button.submit-btn {
    height: 52px;
    width: 200px;
    border: none;
    background: #5863f8;
    color: #FFF;
    font-size: 14px;
}

.contact-form textarea {
    width: 100%;
    background: #f8f8f8;
    border: 2px solid #e8e8e8;
    padding: 10px 15px;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"] {
    width: 100%;
    background: #f8f8f8;
    border: 2px solid #e8e8e8;
    padding: 10px 15px;
    margin-bottom: 15px;
    height: 55px;
}

.sendbtn {
    width: 100%;
    background: #5863F8;
    padding: 10px 15px;
    margin-bottom: 15px;
    height: 55px;
    color: #FFF;
    border: none;
}

.info-icon {
    height: 58px;
    width: 58px;
    flex: 0 0 58px;
    background: #5863F8;
    border-radius: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-contact h5 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
}

.info-contact p {
    font-size: 14px;
    color: #B1B1B1;
    font-weight: 500;
}



/* ******************************************** */
/******************* Gallery Start **************/
/* ******************************************** */

.gallerys {
    display: flex;
    align-items: center;
    flex-flow: wrap;
}

.gallery-page {
    padding: 80px 0;
}

.gallery-area {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 80px 0px;
}

    .gallery-area > .container-fluid .gallerys {
        margin-right: -15px;
        margin-left: -15px;
    }

.gallery-holder {
    width: 23%;
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    margin: 1%;
}

    .gallery-holder img {
        width: 100%;
    }

    .gallery-holder > .holder {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background-size: cover !important;
        background-position: center !important;
    }

        .gallery-holder > .holder .capson {
            background: rgba(8, 21, 52, 0.80);
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0px;
            top: 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translate(-100%,0px);
            transition: all 0.4s;
        }

    .gallery-holder:hover .holder .capson {
        transform: translate(0px,0px);
    }

    .gallery-holder > .holder .capson .lightbox {
        position: relative;
        width: 60px;
        height: 60px;
        align-items: center;
        justify-content: center;
        display: flex;
        color: #fff;
        transform: translate(-500%,0px);
        transition: all 0.9s;
    }

    .gallery-holder:hover > .holder .capson .lightbox {
        transform: translate(0px,0px);
    }

    .gallery-holder > .holder .capson .lightbox i {
        position: relative;
        z-index: 1;
    }

    .gallery-holder > .holder .capson .lightbox::after {
        content: "";
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        position: absolute;
        left: 0px;
        top: 0px;
        transform: rotateZ(0deg);
        z-index: 0;
        transition: all 0.3s;
    }

    .gallery-holder > .holder .capson .lightbox:hover::after {
        background: #5863f8;
        transform: rotateZ(45deg);
    }

.tab-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

    .tab-center button {
        margin: 5px 1px;
        width: 165px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-transform: uppercase;
        border: none;
        font-weight: 500;
        font-size: 13px;
    }

        .tab-center button:first-child {
            background: #133d99;
        }

        .tab-center button:last-child {
            background: #d2202d;
        }

/* ******************************************** */
/******************* Gallery End **************/
/* ******************************************** */

.price-room {
    color: #585858 !important;
    font-size: 15px;
    margin-bottom: 0px;
    line-height: 20px;
}

    .price-room em {
        text-decoration: line-through !important;
    }

    .price-room span {
        font-size: 14px;
        color: #5863f8;
    }

.lilst-aminity {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .lilst-aminity ul {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .lilst-aminity ul li {
            width: 60px;
            height: 60px;
            border-radius: 100px;
            background: #fff;
            box-shadow: 0px 0px 5px rgb(0 0 0 / 23%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            padding: 15px;
        }


a.book-now-btn {
    background: #5863f8;
    color: #FFF;
    text-align: center;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    vertical-align: middle;
}

.aminit-text h4 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 10px;
}

.under-amini {
    background: #f8f8f8;
    padding: 0 0 0 20px;
    box-shadow: 0px 0px 5px #b7b7b7;
}

.head-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .head-price .price-room {
        font-weight: bold;
    }

.image-service {
    width: 90px;
    height: 90px;
    background: #FFF;
    padding: 5px;
    flex: 0 0 90px;
}

.footer-serv img {
    height: 100%;
    width: 100%;
}

.text-service {
    padding-left: 15px;
}

    .text-service h5 {
        font-size: 16px;
        color: #FFF;
        margin-bottom: 2px;
    }

.footer-serv {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 10px;
}



.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

    .rating > input {
        display: none
    }

    .rating > label {
        position: relative;
        width: auto;
        font-size: 35px;
        color: #5863f8;
        cursor: pointer;
    }

        .rating > label::before {
            content: "\2605";
            position: absolute;
            opacity: 0
        }

        .rating > label:hover:before,
        .rating > label:hover ~ label:before {
            opacity: 1 !important
        }

    .rating > input:checked ~ label:before {
        opacity: 1
    }

    .rating:hover > input:checked ~ label:before {
        opacity: 0.4
    }

.nosmo-alcho {
    text-align: right;
}

    .nosmo-alcho p {
        font-size: 15px;
        color: #fff;
    }

        .nosmo-alcho p span {
            margin-right: 20px;
        }

.borde-top {
    border-top: 1px solid #3a3a3a;
}

.light-border img {
    border: 5px solid #ececec;
}

.white-text .small-heading {
    color: #FFF;
}

.lightbox > img {
    width: auto;
    z-index: 999;
}


.head-phome {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

a.book-button {
    display: inline-block;
    background: #5863f8;
    color: #FFF;
    padding: 12px 40px;
    margin-top: 15px;
}

.phone-head {
    background: #5863f8;
    color: #FFF;
    border-radius: 50px;
    width: 80px;
    height: 80px;
    vertical-align: middle;
    padding: 10px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.amini-sec {
    background: #efefef;
    padding: 30px;
    border-bottom: 3px solid #5863f8;
}

    .amini-sec h3 {
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .amini-sec ul li {
        position: relative;
        padding-left: 30px;
        line-height: 30px;
        font-size: 14px;
        color: #717171;
        font-weight: 600;
    }

        .amini-sec ul li::before {
            position: absolute;
            content: '\f00c';
            left: 0;
            font-family: 'fontawesome';
        }

/*10-09-2020 */
.hotel-amenities-point {
    float: left;
    max-width: 230px;
    width: 100%;
    margin-right: 10px;
}

.no-marg-rgt {
    margin-right: 0px !important;
}
/*//10-09-2020 */







.login-head a {
    background: #FFF;
    color: #000 !important;
    padding: 5px 25px !important;
    border-radius: 50px;
    background-color: white;
}



.login-signup {
    padding: 80px 0;
}

.form-style {
    background: #fff;
    box-shadow: 0px 0px 5px #d0d0d0;
    padding: 30px;
    border: 1px solid #5863f8;
}

    .form-style form {
        width: 100%;
    }

        .form-style form input[type="text"], .form-style form input[type="password"] {
            width: 100%;
            height: 45px;
            margin-bottom: 15px;
            padding: 10px 20px;
            border: 1px solid #e2e2e2;
            border-radius: 50px;
        }

.submit-button {
    width: 100%;
    height: 45px;
    background: #5863f8;
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    padding: 10px;
    border-radius: 50px;
}

.dint-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}

.login-social-media ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .login-social-media ul li {
        margin: 0 10px;
        display: inline-block;
    }

        .login-social-media ul li a {
            width: 50px;
            height: 50px;
            background: #FFF;
            display: inline-block;
            padding: 10px;
            border-radius: 50px;
            box-shadow: 0px 0px 5px #c7c7c7;
        }


.nav > ul > .login-head::before {
    display: none;
}

.profile {
    padding: 80px 0;
}

.profile-pic form {
    width: 100%;
}

.profile-pic input[type="file"] {
    width: 100%;
    background: #f5f5f5;
    border: 1px dashed #848484;
    padding: 22px 20px;
}

.pro-form input[type="text"], .pro-form input[type="eamil"], .pro-form input[type="password"] {
    width: 100%;
    background: #f8f8f8;
    border: 2px solid #e8e8e8;
    padding: 10px 15px;
    margin-bottom: 15px;
    height: 40px;
}


.pro-form textarea {
    width: 100%;
    background: #f8f8f8;
    border: 2px solid #e8e8e8;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.save-button {
    width: 100%;
    border: none;
    padding: 10px 15px;
    background: #5863f8;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
}


.pro-details h2 {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 5px;
}

.prof-email {
    display: inline-block;
    width: 100%;
    line-height: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* 21-08-2020 */
.scroll-heicont-room {
    height: 350px;
    overflow-y: scroll;
}

.whole-wdth {
    width: 100%;
}

.dash-partBg {
    background: #FFF;
    box-shadow: 0px 1px 5px #dcdcdc;
    padding: 15px;
    border: 1px solid #e6e6e6;
}

.pad-btm-15 {
    padding-bottom: 15px;
}

/* //21-08-2020 */

/***********Responsive**************/

@media only screen and (max-width: 1400px) {
    .testimo-slider .owl-nav {
        margin: 0;
        position: absolute;
        bottom: -51px;
        right: -143px;
    }

    .banner-slider .owl-nav {
        margin: 0;
        position: absolute;
        bottom: 14%;
        right: 9%;
    }
}


@media only screen and (max-width: 1200px) {
    .slider-text {
        top: 25%;
    }

    .banner-slider .owl-nav {
        margin: 0;
        position: absolute;
        bottom: 17%;
        right: 3%;
    }

    .finest-details .owl-nav {
        margin: 20px 0 0 0;
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .finest-details .owl-prev {
        left: 0;
        margin: 10px !important;
    }

    .finest-details .owl-next {
        right: 0;
        margin: 10px !important;
    }

    .left-testimo {
        margin-left: 10%;
        padding: 20px 0;
    }

    .heading {
        line-height: 45px;
    }

    .testimo-slider .owl-nav {
        bottom: -12%;
        right: -12%;
    }

    .lilst-aminity ul li {
        margin-right: 5px;
    }

    .lilst-aminity {
        margin-top: 12px;
    }

    .nav > ul > li {
        margin: 0px 35px 0px 0px;
    }
}

@media only screen and (max-width: 992px) {

    /*******************************
********NAV BAR*****************
*****************************/
    .nav {
        float: right;
        width: 100%;
    }

    .logo {
        margin-bottom: 0px;
    }

    .header .row {
        margin: 0px;
    }

    #pull {
        display: block;
        width: auto;
        float: right;
        margin-top: 18px;
        color: #FFF;
        font-size: 25px;
    }

    ul#menu-bg {
        display: block;
        width: 100%;
    }

    .header-phone {
        margin-left: 40px;
        margin-top: 14px;
    }

    .top-icon {
        margin-top: 31px;
    }

    .nav > ul > li {
        display: block;
        margin: 0;
    }

    .closebtn {
        display: block;
    }


    .sidenav {
        height: 100%;
        width: 0;
        position: fixed;
        z-index: 9999999;
        top: 0;
        left: 0;
        background-color: #3946ff;
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 30px;
    }

        .sidenav a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 25px;
            color: #818181;
            display: block;
            transition: 0.3s;
        }

            .sidenav a:hover {
                color: #f1f1f1;
            }

        .sidenav .closebtn {
            position: absolute;
            top: 0;
            right: 0px;
            font-size: 30px;
            margin-left: 0px;
            color: #FFF;
        }

    .nav > ul > li > a {
        padding: 8px 15px 8px 15px;
    }

    .nav > ul > li > ul {
        position: relative;
        visibility: visible;
        display: none;
        transition: all 0.4s;
    }

    .nav > ul > li:hover > ul {
        top: 100%;
        opacity: 1;
        visibility: visible;
        display: block;
        transition: all 0.4s;
    }

    /*******************************
********NAV BAR*****************
*****************************/

    a.read-more-btn {
        margin-bottom: 20px;
    }

    .top-forms {
        padding: 30px 0px;
    }

    .slider-text strong {
        font-size: 50px;
        line-height: 50px;
        margin-bottom: 10px;
    }

    .banner-slider .owl-nav {
        margin: 0;
        position: absolute;
        bottom: 80px;
        right: 34px;
    }

    .form-area {
        margin: 0 5px;
    }

    .top-forms {
        padding: 30px 0px;
    }

    .right-sidepic {
        text-align: center !important;
    }

    .testimo-slider .owl-nav {
        bottom: 0;
        right: 10px;
    }

    .left-testimo {
        margin-left: 10%;
        padding: 50px 0;
    }

    .cover-testimonial {
        width: 80%;
    }

    .divided {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .link-footer {
        margin-right: 50px;
    }

    .copy, .website {
        text-align: center;
    }

    .room-arrow a {
        height: 100%;
        width: 50px;
        min-height: 190px;
    }

    .inner-dateform form {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        flex-flow: wrap;
    }

    .inner-dateform .form-area {
        margin: 0 5px;
        width: 47%;
    }

    .inner-dateform button.submit-btn {
        height: 52px;
        width: 100%;
    }

    .gallery-holder {
        width: 30.555%;
    }


    .under-amini {
        background: #f8f8f8;
        padding: 0;
        box-shadow: 0px 0px 5px #9a9a9a;
    }

    .aminit-text {
        padding: 20px;
    }

    .nosmo-alcho {
        text-align: center;
    }
}



@media only screen and (max-width: 768px) {
    .slider-text {
        width: 100%;
        top: 20%;
    }

    .top-forms {
        top: 0px;
        margin: 30px 0;
    }

    .banner-slider .owl-nav {
        bottom: 0;
        right: 0;
    }

    .top-forms form {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        width: 100%;
        flex-flow: wrap;
    }

    .form-area {
        margin: 0 5px;
        width: 47%;
    }

    .lilst-aminity {
        flex-flow: wrap;
    }

    a.book-now-btn {
        margin-top: 15px;
    }

    .head-price {
        flex-flow: wrap;
    }
}

@media only screen and (max-width: 576px) {
    .banner-slider .owl-stage-outer {
        width: 100%;
        height: 300px;
    }

    .banner-slider .owl-stage, .banner-slider.owl-drag .owl-item, .banner-slider.owl-drag .owl-item .item, .banner-slider.owl-drag .owl-item .item > img {
        height: 100%;
    }

    .slider-text strong {
        font-size: 40px;
        line-height: 45px;
        margin-bottom: 10px;
    }

    .slider-text {
        width: 95%;
        top: 20%;
    }

    .testimo-slider .owl-nav {
        bottom: -48px;
        right: 10px;
    }

    .arrow-food {
        margin-left: 2px;
        margin-top: 124px;
    }

    .food-content h5 {
        line-height: 20px;
        margin-bottom: 5px;
    }

    .rooms-pic {
        width: 100%;
        flex: 0 0 100%;
        margin-right: 0;
    }

    .rooms-wrap {
        flex-flow: wrap;
    }

        .rooms-wrap .food-content {
            padding: 15px;
        }

    .room-arrow {
        margin: 0;
        width: 100%;
    }

        .room-arrow a {
            height: 50px;
            width: 100%;
            min-height: auto;
        }

    .inner-dateform .form-area {
        margin: 0 15px;
        width: 100%;
    }

    .lilst-aminity ul {
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 460px) {
    .slider-text strong {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .form-area {
        margin: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    .top-forms {
        padding: 20px 0px;
    }

    .heading {
        line-height: 35px;
        font-size: 30px;
    }

    .width-cont {
        width: 100%;
    }

    .cover-testimonial {
        width: 100%;
    }

    .left-testimo {
        margin-left: 3%;
        padding: 50px 0;
    }

    .image-food {
        width: 100%;
        flex: 0 0 100%;
        margin-right: 0;
    }

    .food-details {
        display: flex;
        align-items: center;
        background: #f8f8f8;
        margin-bottom: 30px;
        flex-flow: wrap;
        overflow: hidden;
    }

    .arrow-food {
        margin: 0px;
    }

    .food-content {
        padding: 15px;
    }

    .gallery-holder {
        width: 48%;
    }
}

@media only screen and (max-width: 320px) {
}


.scroll-heicont {
    height: 400px;
    overflow-y: scroll;
}

.dash-partBg tr th {
    background: #dcddff;
    font-weight: bold;
    border-right: solid 1px #fff;
    padding-left: 10px;
    text-align: center;
}

.dash-partBg tr td {
    border-left: solid 1px #d5d6ff;
    border-bottom: solid 1px #d5d6ff;
    text-align: center;
}