:root {
    /* Fonts */
    --font-primary: 'Be Vietnam Pro', sans-serif;
    --font-secondary: 'Playfair Display', sans-serif;

    /*Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #161a1d;
    --secondary: #8a8a8a;
    --dark-blue: #14213d;
    --light-gray: #eaeaea;

}


/* 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 {
    font-family: var(--font-primary);
    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: 60px;
}

.h2-small {
    font-size: 42px;
}

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

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

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;
}

/* Pseudo default styles end */


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

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

/* 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-dark-blue-color {
    background-color: var(--dark-blue);
}

.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-dark-blue {
    color: var(--dark-blue);
}

.color-light-gray {
    color: var(--light-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(--secondary);
}

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


.prime-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: var(--white);
    background-color: var(--primary);
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    box-shadow: none;
    outline: none;
    max-width: 150px;
    width: 100%;
    height: 52px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

.prime-btn::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .363);
    width: 170px;
    height: 60px;
    transform: translate3d(-90%, 15px, 0) rotate3d(0, 0, 1, 45deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.prime-btn:hover::after {
    background-color: rgba(255, 255, 255, .363);
    left: 100%;
    transform: translate3d(-10%, -30px, 0) rotate3d(0, 0, 1, 70deg);
    z-index: 0;
}

.prime-btn:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: var(--white);

}

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

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


/* Default styles end */

/* -- // Index Page Styles 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(--primary);
    color: var(--white);
    font-size: 14px;
    height: 46px;
}

.add-bar,
.contact-info {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

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


.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%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.navbar-brand {
    width: 92px;
    height: 102px;
    padding: 0;
    margin: 0;
}

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

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

.nav-link {
    position: relative;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    width: max-content;
    text-transform: uppercase;
    color: var(--primary);
    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 section styles start */
.hero-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 720px;
    position: relative;
}

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

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

}

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

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

}

.hero-banner.hero-four {
    background-image: url(../images/hero-bg-images/hero-image-four.jpg);
    background-position: bottom center;
}

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


.hero-banner.hero-six {
    background-image: url(../images/hero-bg-images/hero-image-six.jpg);
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

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

.hero-content h4 {
    letter-spacing: 2px;
    line-height: 1.5;
}

.hero-content h2,
.hero-content h1 {
    line-height: 1.3;
    letter-spacing: 1px;
}

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

.slick-next {
    right: 10%;
}

.slick-prev {
    left: 10%;
}

.slick-prev svg,
.slick-next svg {
    width: 28px;
    height: 28px;
}

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

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

/* slick arrows end*/
/* Hero section styles end */

/* Booking form start */

.form-section {
    padding: 50px 0;
}

.form-label {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-weight: 500;
}

.form-control {
    height: 60px;
    border: 1px solid transparent;
    border-radius: 3px;
    background-color: var(--white);
    color: var(--secondary);
    padding: 10px 10px 10px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;


}

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

.form-section .prime-btn {
    max-width: 100%;
    width: 100%;
    height: 58px;
}

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

/* Booking form end */

/* About-us section start */
.about-image-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
}

.about-image-wrap:first-child {
    grid-column: 1 / span 2;
}

.about-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.about-content-wrapper {
    max-width: 510px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

}

.about-content-wrapper h5 {
    margin-bottom: 8px;
}

.about-content-wrapper h2 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-content-wrapper p {
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.about-content-wrapper .prime-btn {
    margin-top: 40px;
}

/* About-us section end */


/* Services section start */
.services {
    background-image: url('../images/background-image/service-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 720px;
    position: relative;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 24px;
}

.services-grid-items {
    width: 100%;
    height: 200px;
    border: 1px solid var(--dark-blue);
    background-color: var(--dark-blue);
    border-radius: 8px;
    transition: all 0.9s ease;
}

.services-grid-items:hover {
    background-color: #000000;
}

.services-grid-icon {
    width: 90px;
    height: 90px;
    background-color: transparent;
    border: 2px solid var(--white);
    border-radius: 100%;
    padding: 10px;
    margin-bottom: 20px;
    transition: all 0.9s ease;
}

.services-grid-icon img {
    color: var(--white);
    transition: all 0.9s ease;
}

.services-grid-items:hover .services-grid-icon img {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.services-grid-items h4 {
    font-size: 18px;
}

/* Services section end */



/* Special offer section start */

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

.special-offer-wrapper {
    position: relative;
}

.special-offer-image {
    width: 100%;
    height: 400px;
    overflow: hidden;

}

.special-offer-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

.special-offer-box {
    position: absolute;
    width: 298px;
    margin: 0 auto;
    background-color: var(--light-gray);
    padding-top: 24px;
    bottom: -26%;
    left: 50%;
    transform: translateX(-50%);
}

.special-offer-box h4 {
    margin-bottom: 24px;
    line-height: 1.5;
}

.special-offer-box .prime-btn {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    height: 50px;
}

.special-offer-box .prime-btn::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .363);
    width: 170px;
    height: 60px;
    transform: translate3d(-90%, 15px, 0) rotate3d(0, 0, 1, 45deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.special-offer-box .prime-btn:hover::after {
    background-color: rgba(255, 255, 255, .363);
    left: 100%;
    transform: translate3d(-10%, -30px, 0) rotate3d(0, 0, 1, 70deg);
    z-index: 0;
}

.special-offer-box .prime-btn:hover,
.special-offer-box .prime-btn:focus,
.special-offer-box .prime-btn:active,
.special-offer-box .prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: var(--white);
    background-color: var(--primary);
}

/* Special offer section end */

/* Our rooms section start */
.our-rooms {
    background-image: url('../images/background-image/our-rooms-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 720px;
    position: relative;
}


.our-rooms-image {
    width: 100%;
    height: 410px;
    /* border: 10px solid var(--primary); */

}

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

.our-rooms-content {
    padding: 60px 0;
}

.our-rooms-content h6 {
    margin-bottom: 10px;
}

.our-rooms-content h3 {
    margin-bottom: 30px;
}

.our-rooms-content .prime-btn {
    max-width: 132px;
    height: 46px;
    padding: 8px 10px;
    border: 1px solid transparent;
}

.our-rooms-content .prime-btn:hover {
    border: 1px solid var(--primary);
}

.our-rooms .slick-slider {
    margin: 0 -12px;
    height: 600px;
}

.our-rooms .slick-slide {
    /* padding:10px; */
    text-align: center;
    padding-right: 12px;
    padding-left: 12px;
}

.our-rooms-slider .slick-prev,
.our-rooms-slider .slick-next {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.our-rooms-slider .slick-prev {
    left: -10%;
}

.our-rooms-slider .slick-next {
    right: -10%;
}

.our-rooms-slider .slick-prev:hover,
.our-rooms-slider .slick-prev:focus,
.our-rooms-slider .slick-next:hover,
.our-rooms-slider .slick-next:focus {
    background-color: var(--primary);
    color: var(--white);
}

/* Our rooms section end */

/* Gallery section start */

.gallery-btn-wrap {
    margin-top: 50px;
}

.gallery-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.gallery-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.gallery-img-265px {
    height: 265px;
    width: 100%;
}

.gallery-image-wrap: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;
}

/* Gallery section end */

/* Feedback section start */
.feedback {
    background-image: url('../images/background-image/feedback-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 720px;
    position: relative;
}



.feedback-box {
    background-color: var(--primary);
    border-radius: 4px;
    padding: 60px 50px 40px 60px;
    position: relative;
    min-height: 390px;
    text-align: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.feedback-box h6 {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 26px;
}

.feedback-box p {
    font-size: 16px;

}

.feedback-icon {
    position: absolute;
    top: 30px;
    left: 50px;
    width: 28px;
    height: 28px;
}

.feedback-icon img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.feedback-slider-items.slick-slide .feedback-box {
    background-color: #8a8a8a;
    transition: all 0.8s ease;
}

.feedback-slider-items.slick-slide.slick-current.slick-active.slick-center .feedback-box {
    background-color: var(--primary);

}

.feedback-slider-items.slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1.2);
    z-index: 111;
    position: relative;
    transition: all 0.8s ease;
    transition-delay: 0.5s;
}

/* .feedback-slider-items.slick-slide {
    transition: all 0.4s ease-in-out;
}

.feedback-slider-items.slick-slide.slick-cloned.slick-active {
    transform: scale(0.8, 0.8) translate(0px);
}

.feedback-slider-items.slick-slide.slick-current.slick-active.slick-center {
    transform: scale(1) !important;
    z-index: 111;
    position: relative;
}

.feedback-slider-items.slick-slide.slick-active {
    transform: scale(0.8, 0.8) translate(-0px);
} */



.feedback .slick-list {
    overflow: visible;
}

.feedback-hidden {
    overflow: hidden;
    padding: 100px 0 280px 0;
}

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

.feedback .section-title {
    margin-bottom: 0;
}

.feedback-slider .slick-prev,
.feedback-slider .slick-next {
    position: absolute;
    top: 140%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    transition: all 0.3s;
}

.feedback-slider .slick-prev:hover,
.feedback-slider .slick-prev:focus,
.feedback-slider .slick-next:hover,
.feedback-slider .slick-next:focus {
    background-color: var(--primary);
    border: 2px solid var(--white);
    color: var(--white);
}

.feedback-slider .slick-next {
    right: 45%;

}

.feedback-slider .slick-prev {
    left: 45%;
}

/* Feedback section end */


/* footer start */
.footer-top-wrap {
    padding: 60px 0;
}

.footer-top-wrap h3 {
    margin: 76px 0 32px 0;
}

.footer-top-wrap a {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}

.footer-top-wrap .contact-info {
    margin: 20px 0;
}

.footer-top-wrap .prime-btn {
    margin-top: 30px;
    max-width: 160px;
}

.footer-logo {
    width: 106px;
    height: 116px;
    margin: 0 auto;

}

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

.footer-link:not(:last-child) {
    margin-bottom: 10px;
}

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

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

.ref-content {
    font-size: 16px;
    line-height: 1.6;
    max-width: 570px;
    margin: 30px auto 0 auto;
}

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

/* footer end */

.form-control select {
    padding: 6px 0 !important;
}


/* -- // Index Page Styles End // -- */


/* -- // Service Page Styles 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;
}

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

.page-hero-banner.hero-gallery {
    background-image: url(../images/hero-bg-images/hero-image-four.jpg);
    background-position: bottom;
}

.page-hero-banner.hero-attraction {
    background-image: url(../images/attraction/local-att.jpg);
}

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

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

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

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

.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(--secondary);
}

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

.page-title {
    text-align: left;
    margin-bottom: 40px;
}

.service-aminities-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 90px 30px;
    margin-top: 90px;
    /* margin-bottom: 60px; */
}

.service-aminities-items {
    position: relative;
    padding: 20px;
    /* border: 1px solid var(--light-gray); */
    border-radius: 16px;
    min-height: 150px;
    box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;

}

.service-aminities-icon {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100px;
    height: 100px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: var(--primary);
    transition: all 0.5s ease;
}

.service-aminities-items h4 {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 22px;
    word-wrap: normal;
    width: 100%;
    transition: all 0.5s ease;
    text-align: center;
}

.service-aminities-items:hover .service-aminities-icon {
    background-color: var(--primary);
    transform: translateX(-50%) rotateY(180deg);
    transition: all 0.5s ease;
}


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

.service-aminities-bottom-items {
    padding: 10px 30px 0;
}

.service-aminities-bottom-items h5 {
    margin-bottom: 20px;
    font-size: 24px;
}

.service-aminities-bottom-items p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.service-aminities-bottom {
    background-image: url('../images/background-image/service-page-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 540px;
    position: relative;
}

/* -- // Service Page Styles End // -- */


/* -- // Gallery Page Styles Start // -- */
.gallery-img-mh {
    height: 300px;
}

/* -- // Gallery Page Styles End // -- */

/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrap {
    position: relative;
}

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

.att-images {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

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

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

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

.attraction-content-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 70%;
    margin: 0 40px;
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: 10px;
    z-index: 11;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.08);

}

.att-content-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.att-content-text:not(:last-child) {
    margin-bottom: 12px;
}

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

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

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


/* -- // Contact-us Page Styles Start // -- */
.contact-us-content-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 24px;
    padding-left: 45px;
}


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

.contact-play-icons {
    margin-right: 10px;
}

/* -- // 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 // -- */