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

    /*Colors */
    --black: #0F1D2E;
    --white: #ffffff;
    --primary: #465FAF;
    --secondary: #7B7B7B;
    --sec-bg-color: #F6F3E9;

}


/* 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: 68px;
}

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

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

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: #7E7E7E !important;
    opacity: 1;
}

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

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

::-ms-input-placeholder {
    color: #7E7E7E !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-be-vietnam {
    font-family: var(--font-primary);
}

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



/* 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-section-color {
    background-color: var(--sec-bg-color);
}

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

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

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

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

/* 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(--primary);
}

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 16px;
    max-width: 150px;
    width: 100%;
    height: 52px;
    position: relative;
    z-index: 1;
    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(--white);
}

.prime-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height:52px;
    border: 3px solid var(--primary);
    transition: opacity 0.3s, border 0.3s;
  }
  .prime-btn:hover::before {
    opacity: 0;
  }

  .prime-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: #4e6ac6;
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  }
  .prime-btn:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(1) translate(-10px, -70px);
  }

  

/* Button Css End */

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

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

.text-decoration {
    text-decoration: underline;
}

/* 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 150px 10px 150px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    height: 48px;
}

.header-top a {
    color: var(--white);
    line-height: 1;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.head-top {
    line-height: 1;
    font-weight: 300;
}

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


.navbar {
    padding: 10px 150px 10px 150px;
    background-color: var(--sec-bg-color);
    /* 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;
    background-color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

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

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 153px;
    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 {
    text-transform: capitalize;
    position: relative;
    font-family: var(--font-playfair);
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    width: max-content;
    color: var(--black);
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:after {
    position: absolute;
    content: " ";
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    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: #354e9b;
    -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;
    margin-right: auto;
}

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


/* Header styles end */


/* Hero styles start */
.hero-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content,
.hero-image-wrapper {
    width: 50%;
}


.hero-text {
    margin-left: 150px;
}

.hero-text h1 {
    position: relative;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-bottom: 40px;
    padding-left: 40px;
}

.hero-text h1::before {
    content: '';
    left: 0;
    position: absolute;
    width: 5px;
    height: 86%;
    background-color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
}

.hero-text p {
    font-size: 16px;
    color: rgba(15, 29, 46, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 660px;
    letter-spacing: 0.5px;
}

.hero-text .prime-btn {
    max-width: 190px;
    height: 58px;
    letter-spacing: 2px;
}

.hero-image {
    width: 100%;
    height: 760px;
    border-top-left-radius: 150px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero styles end */

/* Booking form start */

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

.form-label {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 300;
}

.form-control {
    height: 50px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: var(--white);
    color: var(--secondary);
    padding: 15px 20px 15px 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: 50px;
    border: 2px solid var(--white);
}

.input-group {
    position: relative;
}

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

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

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Booking form end */


/* About Section start */
.sec-bg-img {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.about-us.sec-bg-img {
    background-image: url("../images/sec-bg-images/about.jpg");
}

.about-image-wrap {
    width: 100%;
    height: 570px;
    border-radius: 10px;
    overflow: hidden;
    z-index: 11;
    position: relative;
    overflow: hidden;
}

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

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



.about-content {
    max-width: 720px;
    padding: 50px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 4px 15px 2px rgba(70, 95, 175, 0.10);
    margin-right: -10%;
    z-index: 111;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.about-content h2 {
    position: relative;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    padding-left: 70px;
}

.about-content h2::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

.about-content p {
    margin-bottom: 20px;
    letter-spacing: 0.2px;
    color: #797979;
}

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

/* About Section end */


/* Service/Amenities Section start*/
.sec-title {
    margin-bottom: 55px;
    letter-spacing: 1px;

}

.service {
    position: relative;
}

.service .sec-title {
    margin-bottom: 110px;
}

.amenities-main-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px 30px;
}

.amenities-wrapper {
    position: relative;
    padding: 40px;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
    min-height: 170px;
    -moz-transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.icon-blue {
    display: block;
    transition: all .6s ease-in-out;
}

.icon-white {
    display: none;
    transition: all .6s ease-in-out;
}


.amenities-inner-wrapper {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: all .6s ease-in-out;
}


.amenities-icon-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 6%);
    background: white;
    margin-bottom: 36px;
    padding: 22px;
    border: 2px solid transparent;
    transition: all .6s ease-in-out;

}

.amenities-wrapper h4 {
    letter-spacing: 1.2px;
    color: var(--primary);
    -moz-transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

.amenities-wrapper:hover {
    background-color: rgb(70 95 175 / 80%);
}

.amenities-wrapper:hover .amenities-inner-wrapper h4 {
    color: var(--white);
}



.amenities-icon-wrap img {
    transition: all 0.9s ease;
}

/* .amenities-wrapper:hover .amenities-icon-wrap 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;
} */

.amenities-wrapper:hover .icon-white {
    display: block;
}

.amenities-wrapper:hover .icon-blue {
    display: none;
}

.amenities-wrapper:hover .amenities-icon-wrap {
    background-color: #465fafcc;
    border: 2px solid var(--white);
    box-shadow: none;

}

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

.service-vector {
    position: absolute;

}

.service-vector.one {
    top: 0;
    left: 0;

}

.service-vector.two {
    bottom: 8%;
    left: 4%;

}

.service-vector.three {
    top: 0;
    right: 0;

}

.service-vector.four {
    bottom: 0;
    right: 0;

}

/* Service/Amenities Section end*/


/* Special offers Section Start*/

.section-bg-image {
    padding: 120px 0;

}

.sec-bg-img.section-bg-image {
    background-image: url("../images/sec-bg-images/section-bg-img.jpg");
}



.special-offer-wrapper {
    position: relative;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.special-offer-img {
    width: 100%;
    height: 730px;
    overflow: hidden;
}

.second-wrap {
    position: relative;
    height: 100%;
}

.second-wrap:not(:last-child) {
    margin-bottom: 20px;
}

.second-wrap .special-offer-img {
    width: 100%;
    /* height: 354px; */
    overflow: hidden;
}

.special-offer-img img,
.special-offer-wrapper.second-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}

.special-offer-img img:hover,
.special-offer-wrapper.second-wrap img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


.special-offer-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.special-offer-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.special-offer-wrapper.second-wrap .special-offer-content {
    padding: 30px;
}

.special-offer-wrapper.second-wrap .special-offer-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.special-offer-wrapper.second-wrap .special-offer-content a {
    font-size: 14px;
}


.see-more-link {
    position: relative;
}

.see-more-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: var(--white);
}

.see-more-link:hover {
    color: #809eff
}

/* Special offers Section End*/

/* Rooms Section Start*/

#rooms-owl-carousel .owl-stage-outer {
    padding-bottom: 20px;
}

.our-rooms-grid-item {
    border-radius: 10px;
    background: #FFF;
    overflow: hidden;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);

}

.our-room-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.our-room-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}

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

.our-rooms-name-wrapper {
    padding: 36px;
}

.our-rooms-name-wrapper h3,
.our-rooms-name-wrapper p {
    margin-bottom: 20px;
}

.our-rooms-name-wrapper p {
    color: #838383;

}

.our-rooms-name-wrapper .prime-btn {
    width: 100px;
    height: 40px;
    font-size: 16px;
}

.owl-carousel {
    position: relative;
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    bottom: 108%;
    padding: 10px !important;
    margin: 0;
    font-size: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50px;
    color: var(--primary);
    background-color: var(--white);
    border: 2px solid var(--primary);
    transition: all ease-out 0.5s;

}

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

.owl-carousel .owl-nav button.owl-prev {
    right: 11%;
}

.owl-carousel .owl-nav button.owl-next {
    right: 8%;
}

/* Rooms Section End*/

/* Photo gallery section start*/
.photo-gallery-wrap {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
}

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

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

.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(26 41 132 / 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

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


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

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

/* Photo gallery section end */

/* Feedback section Start */
.feedback-grid-item {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    min-height: 400px;
}

.feedback-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

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

.feedback-grid-item p {
    font-size: 18px;
    margin-bottom: 20px;
}

.feedback-grid-item span {
    font-style: italic;
    color: #525252;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.feedback .owl-carousel .owl-nav button.owl-next,
.feedback .owl-carousel .owl-nav button.owl-prev {
    bottom: 110%;
}

.feedback .owl-carousel .owl-nav button.owl-prev {
    right: 10%;
}

.feedback .owl-carousel .owl-nav button.owl-next {
    right: 5%;
}

/* Feedback section end */

/* Footer section Start */
footer.sec-spacing {
    padding: 100px 0 0;
}

.footer.sec-bg-img {
    position: relative;
    background-image: url("../images/hero-bg-images/parking.jpg");
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .8;
}

.footer-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 111;
    position: relative;
    margin-bottom: 60px;
}

.ft-logo {
    width: 168px;
    height: 90px;
    margin-bottom: 40px;
}

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

.footer-grid-item p {
    font-size: 18px;
    line-height: 2;
    /* margin-bottom: 40px; */
    text-transform: capitalize;
    text-align: justify;
}

.footer-grid-item .prime-btn {
    padding: 10px 12px;
    max-width: 160px;
}

.footer-grid-item h3 {
    font-size: 34px;
    padding: 40px 0 40px 0;
    /* padding-bottom: 50px; */
    letter-spacing: 0.5px;
}
.footer-link-wrapper {
    padding-left: 120px;
}

.footer-link {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 26px;
}

.ft-add,
.footer-add a {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 26px;
}

.footer-bottom-wrap {
    z-index: 111;
    position: relative;
    border-top: 1px solid rgb(70 95 175 / 60%);
    font-size: 16px;
    padding: 30px 0;

}

/* Footer section 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;
    overflow: hidden;
}

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

.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-attraction.jpg');
}



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

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

.breadcrumb-wrap .fixed-header {
    background-color: transparent;
}

.service-page .sec-title {
    margin-bottom: 50px;
}


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

.service-amenities-item {
    display: flex;
    flex-direction: row;
    background-color: var(--white);
    box-shadow: 0px 4px 15px 2px rgba(70, 95, 175, 0.10);
    padding: 30px;
    border-radius: 10px;
}

.service-amenities-icon {
    width: 72px;
    height: 72px;
    margin-right: 30px;
    flex: 0 0 auto;
    /* border: 1px solid #e9e9e9;
    padding: 20px; */
}

/* .service-amenities-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
} */
.service-amenities-content-wrap{
    display: flex;
    flex-direction: column;
}

.service-amenities-content-wrap h6 {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 10px;
}

.service-page-parking {
    width: 100%;
    height: 500px;
}

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

.service-page-booking.sec-spacing {
    padding: 80px 0;
}

.saline {
    position: relative;
    padding-right: 24px;
}

.saline::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 20px;
    background-color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.service-page-booking-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-page-section-title {
    margin-bottom: 30px;
    font-size: 38px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    font-style: italic;
}

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

.service-page-section-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

/* ---- Service page Style End ---- */


/* ---- Attraction page Style Start ---- */
.att-content-text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.att-content-text-left {
    width: 70%;
}

.att-content-text-right {
    width: 30%;
    text-align: end;
}

.attraction-page-wrap-item {
    position: relative;

}

.attraction-image {
    width: 100%;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    border: 20px solid var(--sec-bg-color);
    overflow: hidden;
}

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

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



.attraction-page-content {
    background-color: var(--white);
    border-radius: 10px;
    max-width: 500px;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0px 4px 15px 2px rgba(70, 95, 175, 0.10);
}

.attraction-page-content h4 {
    margin-bottom: 20px;
    font-size: 24px;
}

.sec-pb-260 {
    padding-bottom: 260px;
}

.sec-pb-160 {
    padding-bottom: 160px;
}


/* .sec-pb-350 {
    padding-bottom: 350px;
}



.sec-pt-100 {
    padding-top: 100px;
}



.sec-pb-100 {
    padding-bottom: 100px;
} */



/* ---- Attraction page Style end ---- */


/* //-- Photo-gallery Style start --// */
.photo-gallery-wrapper .photo-gallery-wrap {
 border-radius: 10px;
}



.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-wrapper .nav-link:hover:after,
.photo-gallery-wrapper .nav-link:focus:after,
.photo-gallery-wrapper .nav-item.active .nav-link:after {
    width: 0;
}

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

/* -- // Contact Page Styles Start // -- */
.contact-us-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;

}

.contact-us-top-items {
    display: flex;
    flex-direction: column;

}

.contact-us-top-items p,
.contact-us-top-items a {
    color: var(--secondary);
    font-size: 16px;
    line-height: 1.2;
    transition: 0.5s;
}

.contact-us-top-items a:hover {
    color: var(--primary);
}

.contact-title-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 500;
    color: var(--black);
}

.contact-title-wrap svg {
    font-size: 20px;
    margin-right: 10px;
    color: var(--primary);
}

.contact-us-top-items:not(:last-child) {
    margin-right: 40px;
}

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

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


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

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

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    padding: 16px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edebeb;
}

.ada-feature-item::before {
    content: '';
    background: url("../images/icons/feature.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex: 0 0 auto;
}

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

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

/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 5%;
    bottom: 5%;
    z-index: 999;
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #566ebb;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }