@font-face {
    font-family: 'Georgia';
    src: url('../fonts/Georgia.woff2') format('woff2'),
        url('../fonts/Georgia.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-dancing-script: 'Dancing Script', cursive;
    --font-georgian: 'Georgia', sans-serif;

    /*Colors */
    --black: #001219;
    --white: #ffffff;
    --primary: #1a2984;
    --secondary: #8a8a8a;
    --sky-blue: #f1f9ff;


}


/* 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: 18px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


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

.h1-small {
    font-size: 58px;
}


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

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

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

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

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

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

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

.p {
    font-size: 18px;
}

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

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

/* Pseudo default styles start */

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

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

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

::-ms-input-placeholder {
    color: #dddbdb !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-dancing-script {
    font-family: var(--font-dancing-script);
}

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

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


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

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

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

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

.color-sky-blue {
    color: var(--sky-blue);
}



/* 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: #8395fd;
}

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

.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 0px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 16px;
    height: 48px;
}

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

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

.header-mail {
    border-right: 1px solid var(--white);
    padding-right: 26px;
}

.navbar {
    padding: 10px 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: 160px;
    height: 80px;
    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: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    width: max-content;
    color: var(--black);
    margin-right: 40px;
    -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: 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: 800px;
}

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

.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-bg-one.JPG);
}

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

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

.hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    width: 100%;
}

.hero-text {

    color: var(--white);
    text-align: center;
}

.hero-text .h2-small {
    letter-spacing: 12px;
    text-shadow: 2px 2px 2px var(--black);
}

.hero-text h1 {
    letter-spacing: 8px;
    margin: 20px 0;
    line-height: 1;
    text-shadow: 3px 3px 2px var(--black);
}

.hero-text .h1-small {
    letter-spacing: 2px;
    text-shadow: 2px 2px 2px var(--black);
}

/* owl arrow style start */
.hero-wrapper .owl-carousel .owl-nav button.owl-next,
.hero-wrapper .owl-carousel .owl-nav button.owl-prev {
    background: rgb(26, 40, 132, 0.5);
    color: var(--white);
    border: none;
    width: 52px;
    height: 52px;
    font-size: 30px;
    margin: 0;
    top: 85%;
    position: absolute;
    transition: 0.5s all;
    z-index: 111;

}

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

.hero-wrapper .owl-prev {
    left: 71%;
}

.hero-wrapper .owl-next {
    right: 22%;
}

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

/* owl arrow style end */

/* Hero styles end */

/* Booking form styles start */
.booking-form-wrapper {
    position: absolute;
    left: 0;
    bottom: -18%;
    width: 1045px;
    z-index: 11;
}

.booking-form {
    width: 100%;
    background-color: var(--primary);
    border-radius: 2px;
    padding: 50px;
}


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

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #cdcdcd;
    color: #cdcdcd;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: transparent;
    font-size: 16px;
    padding: 8px;
}

select.form-control option {
    color: var(--black) !important;
}

.input-group {
    position: relative;
}

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

.form-control:focus {
    outline: 0;
    box-shadow: none;
    color: #cdcdcd;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #cdcdcd;
}

.ui-widget-content {
    z-index: 11 !important;
    position: relative;
}

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

.booking-form .prime-btn {
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--white);
    max-width: 140px;
    height: 48px;
    font-size: 16px;
    transition: 0.5s all;
}

.booking-form .prime-btn:hover {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--primary);
}

/* Booking form styles end */

/* About us start */
.about-us {
    position: relative;
    background-image: url("../images/section-background-images/about-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;

}

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

.about-us-content-wrap h3 {
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-us-content-wrap h2 {
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-us-content-wrap p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 540px;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.about-us-content-wrap .prime-btn {
    margin-top: 15px;
}

.about-image-one {
    width: 484px;
    height: 455px;
}

.about-image-two {
    width: 378px;
    height: 230px;
    margin-top: -20%;
    float: inline-end;
    z-index: 11;
    position: relative;
    border: 20px solid var(--sky-blue);
}

.about-image-one img,
.about-image-two img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

/* About us end */


/* Service and Amenities section start */
.amenities {
    position: relative;
    background-image: url("../images/section-background-images/amenities-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;

}

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

.amenities .sec-title {
    margin-bottom: 80px;
}

.sec-title h3,
.sec-title h2 {

    line-height: 1;
}

.sec-title h3 {
    margin-bottom: 22px;
    letter-spacing: 2px;
}

.sec-title h2 {
    letter-spacing: 1px;
    margin-bottom: 0;
}

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

.amenities-icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
    transition: all ease-in-out 0.5s;
}

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

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

.amenities-wrapper .prime-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    margin-top: 80px;
}

.general-policies {
    margin-top: 80px;
}

.general-policies h3 {
    margin-bottom: 40px;
}

.general-policies-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.general-policies-wrap-item {
    padding: 50px 20px 40px 20px;
    background-color: var(--sky-blue);
    box-shadow: 0 0 8px 0 rgba(6, 22, 58, .14);

}

.general-policies-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 32px;
}

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


.general-policies-wrap-item h4 {
    margin-bottom: 10px;
    line-height: 1.4;
    word-break: break-word;
}

/* Service and Amenities section end */


/* Offers section start */
.offers {
    position: relative;
    background-image: url("../images/section-background-images/offers-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

/* .offers-bg-images {
    position: absolute;
}

.offers-bg-images.objectOne {
    top: 0;
    left: 0;
}
.offers-bg-images.objectTwo {
    top: 0;
    right: 0;
}
.offers-bg-images.objectThree {
    bottom: 0;
    right: 0;
} */
.exclusive-offer-wrap {
    position: relative;
    height: 480px;
    width: 100%;
    z-index: 11;
}

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

.exclusive-offer-absolute {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.exclusive-offer-content-wrap {
    position: relative;
    padding: 32px;
    min-height: 210px;
    width: 100%;
}

.exclusive-offer-content-wrap::after {
    content: '';
    display: block;
    background: rgb(26, 40, 132, 0.7);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.offer-circle-wrap {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    background-color: var(--primary);
    border: 2px solid var(--white);
    padding: 20px;
    position: absolute;
    top: -10%;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    z-index: 11;
    transition: all 0.9s ease;

}

.offer-circle-wrap img {
    object-fit: contain;
    transition: all 0.9s ease;
}

.exclusive-offer-absolute:hover .offer-circle-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;
}

.exclusive-offer-content-wrap h4 {
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1;
    z-index: 11;
}

.exclusive-offer-content-wrap a {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 2px;
    z-index: 11;
}

/* Offers section end */


/* Rooms section start */
/* 
.our-rooms-grid-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
} */
.our-rooms {
    position: relative;
}

.our-rooms-grid-item {
    position: relative;
    height: 600px;
    width: 100%;
}

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

.our-rooms-name-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: rgb(26 41 132 / 70%);
    min-height: 158px;

}

.our-rooms-name-wrapper h4 {
    margin-bottom: 26px;
}

#rooms-owl-carousel .our-rooms-name-wrapper .rooms-icons-wrap img {
    width: 20px;
    height: 20px;
    display: inline-flex;
    object-fit: contain;
}

.rooms-book {
    position: absolute;
    top: 10%;
    right: 2%;
    transform: rotate(270deg);
    max-width: 80px;
    height: 46px;
    letter-spacing: 2px;
    background: rgb(26 41 132 / 70%);
    border: none;
}

.owl-nav-text {
    position: absolute;
    bottom: 11%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    line-height: 1.2;
    text-decoration: underline;
}

.our-rooms .owl-theme .owl-nav {
    margin-top: 60px;
}

.our-rooms .owl-carousel .owl-nav button.owl-next,
.our-rooms .owl-carousel .owl-nav button.owl-prev {
    font-size: 20px;
    margin: 0 12px;

}

.view-all-room-wrap {
    font-size: 18px;

}

.our-rooms .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: var(--primary);
}

.our-rooms-object {
    position: absolute;
    z-index: 11;
}

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

.rooms-object-one {
    width: 320px;
    top: -17%;
    left: 0;
}

.rooms-object-two {
    width: 200px;
    top: -10px;
    right: 0;
}

/* Rooms section end */

/* Gallery section start */
.gallery {
    position: relative;
}

.photo-gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.photo-gallery-items {
    width: 20%;
    height: 490px;
    position: relative;
}

.photo-gallery-items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

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

.photo-gallery-object {
    position: absolute;
    z-index: 11;
}

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

.photo-object-one {
    top: -17%;
    left: 0;
}

.photo-object-two {
    top: -21%;
    right: 20px;
}

/* Gallery section end */

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

.feedback .sec-title {
    margin-bottom: 80px;
}

.feedback-wrapper {
    max-width: 600px;
    margin: 0 auto;

}

.feedback-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 70px;
}

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

}

.feedback-text {
    font-size: 17px;
    color: #484545;
    margin-bottom: 40px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.feedback-name {
    font-size: 18px;
}

.feedback .owl-carousel .owl-nav button.owl-next,
.feedback .owl-carousel .owl-nav button.owl-prev {
    font-size: 20px;
    color: #747272;
    margin: 0 10px;
    transition: 0.5s all;
}

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

.feedback .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: var(--primary);
}

.feedback-object {
    position: absolute;
    z-index: 11;
}

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

.feedback-object-one {
    top: -29%;
    left: 0;
}

.feedback-object-two {
    bottom: 0;
    left: 0;
}

.feedback-object-three {
    top: -21%;
    right: 20px;
}

.feedback-object-four {
    bottom: 0;
    right: 20px;
}

/* footer section start */
.footer-wrapper {
    padding: 80px 0 0;
}

footer {
    position: relative;
    background-image: url("../images/section-background-images/footer-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.mt-60 {
    margin-bottom: 62px;
}

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

.ft-title {
    margin-top: 50px;
    margin-bottom: 40px;
}

.ft-left-mr p,
.ft-mail,
.ft-ph {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #e5e5e5;

}

.ft-logo {
    width: 194px;
    height: 96px;
    margin-bottom: 30px;
}

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

.ft-ref {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #e5e5e5;
}

.footer-wrapper .prime-btn {
    font-size: 16px;
    padding: 16px 4px;
    line-height: 1;
    border: 1px solid #e5e5e5;
    color: #e5e5e5;
    ;
    background-color: transparent;
}

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

.footer-link {
    font-size: 18px;
    margin-bottom: 20px;
    color: #e5e5e5;
}

.ft-left-mr {
    max-width: 320px;
    margin: 0 auto;

}

.ft-bottom {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-align: center;
    color: #e5e5e5;
    padding: 40px 0;
    position: relative;
}

.ft-bottom::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background-color: #bbbbbb;
}

/* Feedback 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: .5;
}

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

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

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

.hero-ada {
    background-image: url('../images/hero-bg-images/index-hero-bg-three.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;
    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;
}

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

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

.service-amenities-icon-wrap img {
    width: inherit;
    height: inherit;
    object-fit: contain;
    transition: .8s all ease-out;
    transition: .5s all;

}

.service-amenities-grid-item {
    border: 1px solid #e3e2e2;
    padding: 30px;
    border-radius: 16px;
    transition: .5s all ease-out;
}

.service-amenities-text {
    color: var(--secondary);
    transition: .5s all ease-out;
    text-align: center;
}

.amenities-dark {
    display: none;
}

.service-amenities-grid-item:hover {
    background-color: var(--primary);
    transition: .5s all ease-out;
}

.service-amenities-grid-item:hover .service-amenities-text {
    color: var(--white);
    transition: .5s all ease-out;
}

.service-amenities-grid-item:hover .amenities-dark {
    display: block;

}

.service-amenities-grid-item:hover .amenities-light {
    display: none;
}

.service-bg-booking {
    position: relative;
    background-image: url("../images//section-background-images/service-booking-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 100px 0;
}

/* .service-bg-booking-icon svg {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 20px;
} */
.service-bg-booking-icon {
    width: 60px;
    margin-bottom: 30px;

}

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

.service-bg-booking-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.service-bg-booking-text {
    margin-top: 30px;
    font-size: 18px;
    color: #dbdbdb;
    line-height: 2;
    letter-spacing: 1px;
}

.service-bg-booking-text a {
    color: #9aa7f1;
}

.sa-btn-wrapper {
    margin-top: 50px;
}

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

/* ---- Gallery page Style Start---- */
.gallery-page-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.gallery-page-wrapper-item {
    height: 350px;
    width: 100%;
    position: relative;

}

.gallery-page-wrapper-item img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.gallery-page-wrapper-item:hover .photo-gallery-overlay {
    opacity: 1;
}

/* ---- Gallery page Style End---- */

/* ---- Contact-us page start---- */
.contact-page.sec-spacing {
    padding: 100px 0 80px 0;
}

.info-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.info-wrapper {
    padding: 40px 36px;
    background-color: var(--sky-blue);
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, .14);
}

.info-wrapper svg {
    font-size: 34px;
    margin-bottom: 40px;
}

.info-wrapper h5 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.info-wrapper p,
.info-wrapper a {
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;

}

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

/* ---- Contact-us page end---- */

.ada-feature-wrap {
    background: var(--sky-blue);
    border-bottom: 1px solid var(--primary);
    border-top: 10px solid var(--primary);
    padding-bottom: 30px;
    padding-left: 30px;
    text-align: left;
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin: 30px 0;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;

}

.ada-feature-item:not(:last-child) {
    margin-bottom: 28px;

}

.ada-feature-note {
    max-width: 1200px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* ADA Feature start*/
.attraction-main-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;
}

.attraction-image-wrapper {
    width: 680px;
    height: 500px;
}

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

.attraction-content-wrapper {
    width: 640px;
    z-index: 111;
    background: var(--sky-blue);
    border-bottom: 1px solid var(--primary);
    border-top: 5px solid var(--primary);
    padding: 30px;
    border-radius: 12px;

}

.attraction-content-wrapper.one {
    margin-left: -5%;
}

.attraction-content-wrapper.two {
    margin-right: -5%;
}


.attraction-content-wrapper h6 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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