:root {
    --primary: #319c44;
    --light: #F3F4F5;
    --dark: #282F34;
}

.btn-primary {
    color: #000;
    background-color: #319c44;
    border-color: #319c44;
    border: 1px solid #319c44;
}

.text-primary {
    color: #319c44 !important;
}

.strong {
    font-weight: 500 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #edf6ea;
}

.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.display-3 {
    font-family: "Alex Brush", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5rem;
    text-align: left;
}

.display-4 {
    font-family: "Alex Brush", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 4.5rem;
    text-align: center;
    position: absolute;
    bottom: 0;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.room-block {
    padding: 10px;
    box-shadow: 0 0 30px #dbdbdb;
    background-color: #fff;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 42px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.clr-light {
    color: #fff !important;
}

.bg-dark {
    background-color: #319c44 !important;
}

.bg-black {
    background-color: #000 !important;
}

.brdr-all {
    border: 1px dashed #2EB872;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    z-index: 99999;
    background-color: #edf6ea;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: auto;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #319c44;
}

.smd-icons {
    position: fixed;
    left: -5px;
    top: 50%;
    z-index: 9999;
    width: 34px;
    height: 128px;
    border: 1px solid #ddd;
}

h1.logo {
    font-size: 24px;
}

.fas {
    color: #319c44;
}

.btn-cont {
    border: 0;
}

.clr-white {
    color: #fff !important;
}

.txt-sml {
    font-size: 16px;
}

.txt-cptliz {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.display-5 {
    font-size: 2.7rem;
    font-weight: 400;
    font-family: "Alex Brush", cursive;
}

.bg-white {
    background-color: #edf6ea !important;
    color: #000 !important;
}

.brdr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.clear-both {
    clear: both;
}

.hide {
    visibility: hidden;
    padding: 10px;
}

.membership-item:hover .hide {
    visibility: visible;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    background: rgba(0, 0, 0, .8);
    padding: 10px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0 !important;
}

.navbar-light .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.0) !important;
}


.bg-primary {
    background-color: #fff !important;
}

.clr-black {
    color: #319c44e3 !important;

}

.f-left {
    float: left !important;
    width: 45%;
}

/*** Header ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-4.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.about-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.5)), url(../img/about-banner.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.room-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.5)), url(../img/room-banner.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.contact-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.5)), url(../img/contact-banner.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.activities-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.5)), url(../img/activities-banner.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.restaurant-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.5)), url(../img/restaurant-banner.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.wedding-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.5)), url(../img/wedding-banner.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.gallery-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.5)), url(../img/gallery-banner.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.policy-header-bg {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.5)), url(../img/policy-banner.jpg) center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
    min-height: 80vh;
}

.header-bg-inner {
    background: linear-gradient(rgba(0, 0, 0, .8), rgba(0, 0, 0, .8)), center center no-repeat;
    background-size: cover;
    padding: 5.5rem 0 !important;
}

.clr-green {
    color: #2EB872 !important;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
    display: none;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 2rem;
    bottom: 2rem;
    border: 1px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    padding: 5px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .1);
}

.membership-item img {
    width: 100%;
    height: 100%;
}

.membership-item .display-1 {
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 2em;
    width: auto;
    float: left;
    font-weight: 400;
    font-size: 16px !important;
    text-transform: uppercase;
    background-color: #000;
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (max-width: 767px) {

    .smd-icons {
        display: none !important;
    }

    .restaurant-header-bg,
    .gallery-header-bg,
    .wedding-header-bg,
    .activities-header-bg,
    .policy-header-bg,
    .contact-header-bg,
    .room-header-bg,
    .about-header-bg,
    .header-bg-inner {
        min-height: auto;
        margin-bottom: 0px !important;
    }

    h1.display-4.slideInDown {
        display: none;
    }

    .sm-pt00 {
        padding-top: 0px !important;
        margin-top: 35px !important;

    }

    .sm-pt10 {
        padding-top: 0px !important;
        margin-top: 10px !important;
    }

    .sm-mb00 {
        margin-bottom: 10px !important;
    }

    .footer {
        padding-top: 30px !important;
    }

    .footer .col-xl-2,
    .footer .col-xl-4 {
        margin-top: 10px !important;
    }

    .header-carousel .owl-dot {
        visibility: hidden !important;
    }

}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #2b3134;
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer {
    background-color: #393838 !important;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer h4 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.card {
    border: 10px solid #efefef;
}

.of_h {
    overflow: hidden;
    cursor: pointer;
}

.of_h a img {
    width: 100%;
}

figcaption {
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.lightbox {
    position: absolute;
    z-index: 999999 !important;
}

.clr-wht {
    color: #b2b2b2;
}

.footer .fab {
    color: #fff;
}

.modal {
    position: fixed;
    top: 100px !important;
}

.bg-gry {
    background-color: #f9f9f9;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 27px 0;
    font-size: 15px;
    letter-spacing: 2px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.footer-inner {
    position: absolute;
    bottom: 0;
}


/*** Footer Start ***/
.footer {
    background: #393838;
    padding-bottom: 30px;
}

.footer .footer-item a {
    line-height: 30px;
    color: #b2b2b2;
    transition: 0.5s;
    font-size: 15px;
}

.footer .footer-item a:hover {
    color: #79a94d;
    text-decoration: underline;
}

.clr-wht i.fa-phone-alt {
    color: #79a94d !important;
}

.footer-item p i.fa-phone-alt,
i.fa-envelope,
i.fa-map-marker-alt {
    color: #79a94d !important;
}

.footer-item h4.text-white::after {
    content: "";
    display: block;
    width: 65px;
    background-color: #79a94d !important;
    position: absolute;
    padding-top: 3px;
    margin-top: 3px;
}

.footer-item h4.book:after {
    content: "";
    display: block;
    width: 65px;
    background-color: transparent !important;
    position: absolute;
    padding-top: 3px;
    margin-top: 3px;
}

.rounded-circle {
    border: 1px solid #fff;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid#b2b2b2;
    background: #393838 !important;
}

/*** copyright end ***/




h5.ft {
    font-size: 14px !important;
}

.whatsapp {
    position: fixed;
    z-index: 150;
    bottom: 33px;
    right: 15px;
}

.inquiry {
    position: fixed;
    display: none;
    z-index: 150;
    bottom: 25px;
    right: 30px;
}

/* .call-now { */
/* position: fixed; */
/* padding: 8px 10px; */
/* width: 50px; */
/* height: 50px; */
/* bottom: 130px; */
/* right: 30px; */
/* z-index: 150; */
/* background-color: #000; */
/* border-radius: 50px; */
/* border: 2px dashed #2EB872 !important; */
/* } */
.white-clr {
    font-size: 25px;
    padding-top: 3px;
}

.sec-bg {
    background: url(../img/bg-image.jpg);
    background-attachment: fixed;
}

.blu {
    color: #fff;
    background-color: #319c44;
    border-radius: 5px;
    padding: 5px 8px;
    font-family: "Alex Brush", cursive;
    font-size: 2rem;
}

@media only screen and (max-width: 767px) {
    h5 {
        font-size: 1rem;
    }
}