:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Nunito Sans', sans-serif;
    --font-lora: 'Lora', serif;

    /*Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #64a904;
    --secondary: #221f1f;
    --gray: #8a8a8a;
    --light-gray: #f5f5f1;


}


/* Default styles start */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 72px;
}

.h2,
h2 {
    font-size: 40px;
}


h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 22px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

/* Pseudo default styles start */

::placeholder {
    color: #a7a7a7 !important;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #a7a7a7 !important;
}

:-ms-input-placeholder {
    color: #a7a7a7 !important;
}

::-ms-input-placeholder {
    color: #a7a7a7 !important;
}

*::-moz-selection {
    background: var(--primary);
    color: white;
}

*::selection {
    background: var(--primary);
    color: white;
}

*::-moz-selection {
    background: var(--primary);
    color: white;
}

*::-webkit-selection {
    background: var(--primary);
    color: white;
}

/* Pseudo default styles end */


.font-poppin {
    font-family: var(--font-primary);
}

.font-nunito {
    font-family: var(--font-secondary);
}

.font-lora {
    font-family: var(--font-lora);
}

/* COLORS */
.bg-black-color {
    background-color: var(--black);
}

.bg-white-color {
    background-color: var(--white);
}

.bg-primary-color {
    background-color: var(--primary);
}

.bg-secondary-color {
    background-color: var(--secondary);
}

.bg-gray-color {
    background-color: var(--gray);
}

.bg-light-gray-color {
    background-color: var(--light-gray);
}


.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-gray {
    color: var(--gray);
}



/* COLORS */

/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

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

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--secondary);
}

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 2px;
    padding: 10px 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 150px;
    width: 100%;
    height: 50px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.prime-btn:hover {
    color: var(--primary);
    transition: all 0.3s ease-out;
}

.prime-btn::after {
    content: "";
    background: var(--white);
    color: var(--primary);
    position: absolute;
    z-index: -1;
    padding: 10px 16px;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-out;
    transform: scale(0, 0) rotate(-180deg);
}

.prime-btn:hover::after {
    transform: scale(1, 1) rotate(0deg);
}

/* Button Css End */

.sec-spacing {
    padding: 120px 0;
}

.text-upper {
    text-transform: uppercase;
}

/* Default styles end */

/* Index Page Style start */
/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 14px;
    height: 46px;
}

.header-top a {
    color: var(--white);
    line-height: 1;
}

.header-top i {
    color: var(--primary);
}

.navbar {
    padding: 6px 0;
    background-color: #fff;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.fixed-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 150px;
    height: 90px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

.navbar-brand img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.nav-item {
    width: max-content;
}

.nav-link {
    position: relative;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    width: max-content;
    color: var(--secondary);
    margin-right: 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* .nav-link:after {
    position: absolute;
    content: " ";
    left: 0;
    right: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
} */

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* 
.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
} */

.navbar-nav {
    margin-left: auto;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}


/* Header styles end */


/* Hero styles start */
.hero-wrapper {
    position: relative;
}

.hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 750px;
}

.hero-banner.hero-one {
    background-image: url(../images/hero-bg-images/index-hero-bg.jpg);
}

.hero-banner.hero-two {
    background-image: url(../images/hero-bg-images/index-hero-bg2.jpg);
}

.hero-banner.hero-three {
    background-image: url(../images/hero-bg-images/index-hero-bg3.jpg);
}

.hero-banner.hero-four {
    background-image: url(../images/hero-bg-images/index-hero-bg4.jpg);
}


/* slick arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid transparent;
    z-index: 11;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    transition: 0.3s;
}

.hero-slider .slick-next {
    right: 8%;
}

.hero-slider .slick-prev {
    left: 8%;
}

.hero-slider .slick-prev svg,
.hero-slider .slick-next svg {
    width: 24px;
    height: 24px;
}

.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
    content: none;
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-prev:focus,
.hero-slider .slick-next:hover,
.hero-slider .slick-next:focus {
    background-color: var(--secondary);
    color: var(--white);
}

/* slick arrows end*/


/* Hero styles end */

/* Booking form styles start */
.booking-form-wrapper {
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    width: 100%;
    z-index: 11;
}

.booking-form {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background-color: var(--white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
}


.form-label {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 400;
}

.form-control {
    height: 52px;
    border: 1px solid var(--gray);
    border-radius: 2px;
    background-color: var(--white);
    color: var(--gray);
    padding: 10px 10px 10px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.form-control:focus {
    color: var(--secondary);
    border: 1px solid var(--primary);
    outline: 0;
    box-shadow: none;
}

.booking-form .prime-btn {
    margin-top: 35px;
    max-width: 100%;
    width: 100%;
}

.ui-widget-header {
    border: 1px solid var(--primary) !important;
    background: var(--primary) !important;
    color: #fff;
    font-weight: bold;
}

/* Booking form styles end */

/* About Section start */
.about-us {
    padding: 200px 0 120px 0;
    position: relative;
    overflow: hidden;
}

/* .about-us::after {
    content: '';
    background-image: url(../images/about-us/about-us-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
} */

.about-us-image {
    height: 380px;
    width: 100%;

}

.about-us-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.mt-100 {
    margin-top: 100px;
}

.about-us-content-wrap {
    max-width: 530px;
}

.about-us-content-wrap h6 {
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1;
    max-width: max-content;
    position: relative;
}

.about-us-content-wrap h6::before {
    content: '';
    position: absolute;
    top: 4px;
    right: -53%;
    display: block;
    height: 3px;
    width: 40px;
    background-color: var(--primary);
}

.about-us-content-wrap h6::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: -75%;
    display: block;
    height: 3px;
    width: 60px;
    background-color: var(--primary);
}

.about-us-content-wrap h2 {
    margin-bottom: 20px;
    line-height: 1;
}

.about-us-content-wrap p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.about-us-content-wrap p:last-child {
    margin-bottom: 0;
}
.about-us-content-wrap .prime-btn{
    margin-top: 10px;
}

.about-us-bg-images {
    position: absolute;
    z-index: -1;
}

.about-us-bg-images.about-top-left {
    top: -5%;
    left: -20%;

}

.about-us-bg-images.about-top-right {
    right: -6%;
    top: -15%;

}

.about-us-bg-images.about-bottom-left {
    bottom: -16%;
    left: -5%;
}

.about-us-bg-images.about-bottom-right {
    right: -15%;
    bottom: -10%;
}

/* About Section end */


/* Special Offer section start */
.title-wrap {
    margin-bottom: 100px;
}

.title-wrap h6 {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
}

.title-wrap h2 {
    line-height: 1;
    margin-bottom: 0px;
    position: relative;
}

.title-wrap h2::after {
    content: '';
    background-image: url("../images/icons/title-border.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 60%;
    height: 100%;
    bottom: -46px;
    left: 50%;
    transform: translateX(-50%);

}

.offers-wrapper {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
}

.offer-img-wrapper {
    width: 100%;
    height: 310px;
}

.offer-img-wrapper img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.offer-content-wrapper {
    padding: 80px 35px 35px;
    position: relative;

}

.offer-content-wrapper h3 {
    margin-bottom: 30px;
}

.offer-content-wrapper a {
    font-size: 16px;
    color: white;
    transition: all 0.5s ease;

}

.offer-content-wrapper .prime-btn {
    width: 140px;
    height: 48px;
}

.icon-wrap {
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    border: 2px solid var(--primary);
    border-radius: 100%;
    background-color: var(--white);
    padding: 26px;
}


.offers-wrapper:hover .icon-wrap img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

/* Special Offer section end */

/* service/amenities section start */
.service {
    position: relative;
    overflow: hidden;
}

.service::after {
    content: '';
    background-image: url(../images/hero-bg-images/services-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}


.service-content {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 60px;
    max-width: 460px;
}

.service-content-wrapper {
    margin-top: 60px;
}

.service-content-wrapper .title-wrap h2::after {
    width: 70%;
    bottom: -40px;
    left: 0;
    transform: unset;
}

.service-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
}

.service-wrap-item {
    padding: 40px;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(100, 169, 4, 0.4);
    transition: all ease-in-out 0.5s;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    transition: all ease-in-out 0.5s;
}

.service-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.service-wrap-item:hover .service-icon {
    transform: scale(1.1);
    transition: all ease-in-out 0.5s;
}

.service-wrap-item h5 {
    line-height: 1.2;
    text-align: center;
    margin-bottom: 0;
}

.service .prime-btn {
    margin-top: 40px;
}

/* service/amenities section end */


/* Our rooms section start */
.our-rooms.sec-spacing {
    padding: 120px 0 0;
}
.our-rooms .title-wrap h2::after{
    width: 70%;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.our-rooms-items {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.our-rooms-image,
.our-rooms-content-box {
    width: 50%;
    height: 360px;
}

.our-rooms-image img {
    width: 100%;
    height: inherit;
    object-fit: cover;
}

.our-rooms-content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
    border: 2px solid var(--primary);
    padding: 40px 60px;
    position: relative;
    transition: all ease 0.5s;

}

.our-rooms-content-box:hover {
    background-color: rgba(100, 169, 4, 0.08);
}

.our-rooms-items:hover .our-rooms-content-box {
    background-color: rgba(100, 169, 4, 0.08);
    border: 2px solid transparent;

}

.our-rooms-items:hover .our-rooms-content-box.left-arrow:after,
.our-rooms-items:hover .our-rooms-content-box.right-arrow:after {
    border-color: rgba(100, 169, 4, 0.08);
}

.our-rooms-content-box.left-arrow:after {
    left: -15px;
    border-width: 10px 13px 10px 0;
    border-color: transparent var(--primary) transparent transparent;

}

.our-rooms-content-box.right-arrow:after {
    right: -15px;
    border-width: 12px 0 12px 15px;
    border-color: transparent transparent transparent var(--primary);
}

.our-rooms-content-box.left-arrow:after,
.our-rooms-content-box.right-arrow:after{
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transition: all ease 0.5s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.star-wrap svg {
    color: var(--primary);
}

.our-rooms-content-box h3 {
    margin: 20px 0 30px 0;
}

.our-rooms-content-box .prime-btn {
    width: 140px;
    height: 48px;
    font-size: 14px;
}

/* Our rooms section end */
/* Feedback-Testimonials section start*/
.feedback {
    position: relative;
}

.feedback.sec-spacing {
    padding: 120px 0 80px 0;
}

.feedback::after {
    content: '';
    background-image: url(../images/hero-bg-images/feedback-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.feedback .title-wrap h2 {
    line-height: 1.2;
}

.feedback .title-wrap h2::after {
    display: none;
}

.feedback-testimonials-item-box {
    padding: 70px 50px;
    box-shadow: 0 4px 10px 0 rgba(100, 169, 4, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    transition: transform 0.5s linear;
    height: 395px;
}

.feedback-icon {
    margin-bottom: 40px;
}

.feedback-content {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-style: italic;
    letter-spacing: 1px;
    text-align: center;
}

.feedback-testimonials.owl-carousel .owl-stage-outer {
    padding: 50px 0;
}

.feedback-testimonials {
    padding-left: 15%;
}

.feedback-name {
    font-size: 16px;
    font-style: italic;
}

.slick-cloned {
    -webkit-transform: translate3d(0, 0, 0);
   -moz-transform: translate3d(0, 0, 0);
   -ms-transform: translate3d(0, 0, 0);
   -o-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
 }

/* slick arrows */
.feedback-testimonials .slick-prev,
.feedback-testimonials .slick-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 1px solid var(--secondary);
    z-index: 11;
    color: var(--secondary);
    top: 110%;
    border-radius: 100%;
    transition: 0.3s;
}

.feedback-testimonials .slick-next {
    right: 47%;
}

.feedback-testimonials .slick-prev {
    left: 47%;
}

.feedback-testimonials .slick-prev svg,
.feedback-testimonials .slick-next svg {
    width: 24px;
    height: 24px;
}

.feedback-testimonials .slick-prev::before,
.feedback-testimonials .slick-next::before {
    content: none;
}

.feedback-testimonials .slick-prev:hover,
.feedback-testimonials .slick-prev:focus,
.feedback-testimonials .slick-next:hover,
.feedback-testimonials .slick-next:focus {
    background-color: var(--secondary);
    color: var(--white);
}

/* slick arrows end*/
/* Feedback-Testimonials section end */

/* Photo-gallery section start */
.gallery-rooms-image {
    width: 100%;
    height: 300px;
    position: relative;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    display: block;
}
.photo-gallery .title-wrap h2::after {
    width: 80%;
    height: 100%;
}
.gallery-rooms-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;

}

.photo-gallery .prime-btn {
    margin-top: 60px;
}

.gallery-rooms-image:hover .photo-gallery-overlay {
    opacity: 1;
}

.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.search-icon {
    width: 30px;
    width: 30px;
    color: var(--white);
}

.search-icon svg {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

/* Photo-gallery section end */

/* Footer section start */

.footer-top-wrap {
    position: relative;
    padding: 60px 0;
}


.footer-top-wrap::after {
    content: '';
    background-image: url(../images/hero-bg-images/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}


.footer-grid-wrap {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px; */
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;

}

.footer-grid-item {
    max-width: 50%;
    width: 100%;
    padding: 0 20px;
}

.footer-grid-item.footer-ls,
.footer-grid-item.footer-rs {
    max-width: 25%;
    width: 100%;
}


.footer-grid-item h3 {
    margin-bottom: 22px;
}

.footer-res {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-res:last-child {
    margin-bottom: 0;
}

.footer-logo {
    width: 220px;
    height: 110px;
    margin: 0 auto;
}

.footer-logo img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.ref-content {
    font-size: 16px;
    line-height: 1.4;
    margin: 30px 20px 30px 30px;
}

.footer-grid-item .prime-btn {
    padding: 15px 10px;
    max-width: 160px;
    margin: 0 auto;
}

.footer-ls,
.footer-rs {
    padding-top: 80px;
}

.footer-rs {
    padding-left: 60px;
}

.footer-link {
    margin-bottom: 12px;
    color: var(--secondary);
    transition: all ease 0.5s;
}

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

.footer-bottom-wrap {
    padding: 16px 0;
}

.footer-bottom-wrap p {
    font-size: 14px;
}


/* Footer section end */

/* Index Page Style end */

/* //-- Service Page Style Start --// */
.page-hero-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 560px;
    position: relative;
}

.page-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .3;
}

.hero-service {
    background-image: url('../images/hero-bg-images/service-hero.jpg');
}

.hero-gallery {
    background-image: url('../images/hero-bg-images/hero-gallery.jpg');
}

.hero-contact {
    background-image: url('../images/hero-bg-images/hero-contact.jpg');
}

.hero-ada {
    background-image: url('../images/hero-bg-images/hero-ada.jpg');
}

.hero-attraction {
    background-image: url('../images/hero-bg-images/hero-att.jpg');
}

.page-hero-content h1 {
    margin-bottom: 16px;
    text-shadow: 1px 1px 2px #000000;
}

.page-hero-content {
    z-index: 11;
}

.breadcrumb-item {
    font-size: 20px;
}

.breadcrumb-item a {
    color: var(--white);
    transition: 0.3s;
    text-shadow: 1px 1px 2px #000000;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: #dfdede;
}

.service-page .title-wrap,
.photo-gallery-page .title-wrap,
.contact-page .title-wrap {
    margin-bottom: 40px;
}

.service-page .title-wrap h2::after,
.photo-gallery-page .title-wrap h2::after,
.contact-page .title-wrap h2::after {
    display: none;
}

.service-page .service-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;

}

.service-page-images {
    width: 100%;
    height: 340px;
}

.service-page-images img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.service-page .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-page .service-wrap-item {
    padding: 26px 20px;
}

.service-page .service-wrap-item h5 {
    font-size: 18px;
}

.service-pg-gap {
    margin-top: 50px;
}

/* //-- Service Page Style end --// */

/* //-- Photo-gallery Style start --// */
.photo-gallery-wrapper .nav-pills {
    margin-bottom: 30px;
}

.photo-gallery-wrapper .nav-pills .nav-link {
    padding: 10px 16px;
    font-size: 16px;
    margin-right: 20px;
}

.photo-gallery-wrapper .nav-pills .nav-link.active,
.photo-gallery-wrapper .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary);
}

button:focus-visible {
    outline: none;
}

/* //-- Photo-gallery Style end --// */

/* -- // Contact-us Page Styles Start // -- */
.contact-us-content-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px 20px;
    background-color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(100, 169, 4, 0.4);
    padding: 40px 30px;
    width: 100%;
}

.contact-title-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-us-content-items p,
.contact-us-content-items a {
    font-size: 14px;
}

.contact-us-content-items p {
    word-wrap: break-word;
    color: var(--gray);
}

.contact-us-content-items a {
    color: var(--gray);
}

.contact-play-icons {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.contact-us-iframe {
    height: 420px;
    width: 100%;
}

/* -- // Contact-us Page Styles End // -- */

/* -- // Ada feature Page Styles Start // -- */
.ada-feature-wrap:not(:last-child) {
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin-bottom: 20px;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    padding: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;

}

.ada-feature-note {
    margin-top: 40px;
}


/* -- // Ada feature Page Styles End // -- */

/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrapper {
    width: 100%;
}

.attraction-image-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.attraction-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.5s ease;
}

.attraction-image-wrap img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.attraction-title {
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.attraction-content-wrap {
    margin: -100px 0 0 50px;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 8px 0 8px 8px;
    z-index: 11;
    position: relative;
    /* box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.08); */
    box-shadow: 0 4px 10px 0 rgba(100, 169, 4, 0.2);

}

.att-content-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    padding-bottom: 10px;

}

.att-content-text:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.local-restaurants-wrap {
    margin-top: 180px;
}

.local-restaurants-wrap-one {
    margin-top: 80px;
}

/* -- // Attraction Page Styles End // -- */