body,
html {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #2b1d6a;
}

ul,
ol,
table {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

.fixed_top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.header_top {
    background: #2b1d6a;
}

.header_info_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.6rem;
}

.header_info {
    display: flex;
    align-items: center;
}

.header_info_text {
    margin-right: 2rem;
}

.header_info_text a {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    transition: all 0.3s ease-out;
    font-weight: 500;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header_info_text a i {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 1rem;
    transition: all 0.3s ease-out;
}

.header_info_text a:hover {
    color: #fff;
}

.header_info_social {
    display: flex;
    align-items: center;
}

.header_info_social a {
    font-size: 1.6rem;
    margin-right: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease-out;
}


.header_menu {
    height: 9.8rem;
    padding: 0;
}

.header_menu .navbar-brand img {
    width: 16rem;
}

.header_menu .navbar-brand img.logo_black {
    display: none;
}

.header_menu .navbar-nav .nav-item {
    margin: 0 1.5rem;
}

.header_menu .navbar-nav .nav-item a {
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    display: block;
    color: #fff;
    transition: all 0.3s ease-out;
}

.header_menu .navbar-nav .nav-item a:hover {
    color: #fe5f5b;
}

.header_menu .searchIcon {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    border-radius: .4rem;
    font-size: 1.6rem;
    background: #fe5f5b;
    color: #fff;
    text-align: center;
    padding: 0;
    transition: all 0.3s ease-out;
    margin-right: 1.5rem;
}

.themebtn {
    color: #fff;
    background: #fe5f5b;
    border-radius: .4rem;
    padding: 0 2.4rem;
    height: 5rem;
    font-size: 1.5rem;
    font-weight: 500;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out 0s;
    text-transform: capitalize;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 0px;
}

.themebtn:hover {
    color: #fff;
    background: #2b1d6a;
}

.banner {
    height: 100vh;
    overflow: hidden;
}

.banner .carousel-item {
    height: 100vh;
}

.banner .carousel-item img {
    height: 100%;
    display: block;
    position: absolute;
    width: 100%;
    inset: 0
}

.terms-content h1 {
    font-size: 3rem;
}

.terms-content h2 {
    font-size: 3rem;
    margin-top: 5rem;
    font-weight: 700;
}

.terms-content ul {
    list-style-type: square;
    font-size: 15px
}

.terms-content li {
    margin-bottom: 10px;
    margin-left: 35px;
}

.terms-content p {

    margin-left: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.terms-content strong {
    font-weight: 700;
}

.silderImg {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    width: 100%;
    display: inline-block;
    height: 100%;
}

.banner .carousel-item .silderImg::before,
.bgoverlay::before {
    content: "";
    inset: 0;
    position: absolute;
    /*background: rgba(0, 0, 0, 0.5);*/
    background: linear-gradient(180deg,
            rgba(18, 34, 35, 0.9) 0%,
            rgba(18, 34, 35, 0.5) 64.9%,
            rgba(18, 34, 35, 0) 100%);
    z-index: 1;
    height: inherit;

}

.sildercontent {
    width: 75rem;
    margin: auto;
    padding-top: 26rem;
    padding-bottom: 22rem;
    text-align: center;
    position: absolute;
    inset: 0;
    z-index: 1;
    color: #fff;
}


.sildercontent h1.title {
    color: #fff;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}

.sildercontent p.description {
    color: #fff;
    font-size: 1.8rem;
    margin: 2rem 0 3rem;
}

.sildercontent .themebtn {
    display: inline-flex;
}

.sildercontent .btn:hover {
    color: #fff;
    background: #2b1d6a;
}


.banner .carousel-item.active .title {
    -webkit-animation: 0.5s 0.5s fadeInUp both;
    animation: 0.5s 0.5s fadeInUp both;
}

.banner .carousel-item.active .description {
    -webkit-animation: 0.5s 0.7s fadeInUp both;
    animation: 0.5s 0.7s fadeInUp both;
}

.banner .carousel-item.active .btn {
    -webkit-animation: 0.5s .9s fadeInUp both;
    animation: 0.5s 0.9s fadeInUp both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(2rem)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.carousel-control-next,
.carousel-control-prev {
    opacity: 0;
    width: auto;
    transition: all 0.5s ease-in-out 0s;
}

.carousel-control-next i,
.carousel-control-prev i {
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    border: .1rem solid #fe5f5b;
    color: #fe5f5b;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s ease-in-out 0s;
}

.banner:hover .carousel-control-next,
.banner:hover .carousel-control-prev {
    opacity: 1;
}

.banner:hover .carousel-control-next {
    right: 2.5rem;
}

.banner:hover .carousel-control-prev {
    left: 2.5rem;
}

.carousel-control-next i:hover,
.carousel-control-prev i:hover {
    color: #fff;
    background: #fe5f5b;
}

.fixed_topMove {}

.fixed_topMove .header_menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(1.6rem);
    box-shadow: rgba(149, 157, 165, 0.2) 0 .8rem 2.4rem;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.fixed_topMove .header_menu .navbar-brand img {
    display: none;
}

.fixed_topMove .header_menu .navbar-brand img.logo_black {
    display: block;
}

.fixed_topMove .header_menu .navbar-nav .nav-item a {
    color: #2b1d6a;
}

@keyframes headerSlideDown {
    0% {
        margin-top: -15rem;
    }

    100% {
        margin-top: 0;
    }
}

.book_now {
    margin: -5.4rem auto 0;
    padding: 3.4rem 3.6rem;
    background: #2b1d6a;
    border-radius: 1rem;
    position: relative;
    display: table;
    z-index: 1;
}

.book_now .book_now_form {
    display: grid;
    grid-template-columns: 23.8rem 23.8rem 15rem 15rem 15rem;
    gap: 2rem;
}

.book_now .book_now_form .form-control {
    height: auto;
    padding: .8rem 1.2rem;
    border-radius: .1rem;
    border-color: #fff;
    color: #fff;
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 0;
    font-size: 1.6rem;
    height: 4.2rem;
}

.book_now .book_now_form .form-control::-webkit-input-placeholder {
    color: #fff;
}

.book_now .book_now_form .form-control::-moz-placeholder {
    color: #fff;
}

.book_now .book_now_form .form-control:-ms-input-placeholder {
    color: #fff;
}

.book_now .book_now_form .form-control:-moz-placeholder {
    color: #fff;
}

.book_now .book_now_form .input-group-text {
    padding: 0 1.2rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    border: .1rem solid #fff;
    border-left: 0;
    border-radius: 0 .1rem .1rem 0;
    display: flex;
    align-items: center;
    background-color: transparent;
    height: 4.2rem;
}

.form-select {
    border-radius: .1rem;
    padding: .8rem 1.2rem;
    height: 4.2rem;
    background: none;
    border: .1rem solid #fff;
    color: #fff;
    font-size: 1.4rem;
    width: 100%;
    background-color: #2b1d6a;
    background-image: url(../images/arrow-down.png);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 1.2rem;
}

.book_now .book_now_form .themebtn {
    height: 4.2rem;
    font-size: 1.4rem;
    margin: 0;
}

.book_now .book_now_form .themebtn:hover {
    color: #2b1d6a;
    background: #fff;
}

.datepicker {
    font-size: 1.2rem;
    padding: .75rem;
    border: 0;
    box-shadow: 0px 48px 88px rgba(23, 9, 54, 0.08);
    border-radius: 8px;
    width: 238px;
}

.datepicker tbody,
.datepicker td,
.datepicker tfoot,
.datepicker th,
.datepicker thead,
.datepicker tr {
    padding: 0.6rem 0.77rem;
    text-align: center;
    border-radius: .5rem;
}

.datepicker td {
    cursor: pointer;
}

.datepicker thead th.prev,
.datepicker thead th.next {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: .5rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0;
    cursor: pointer;
}

.datepicker thead th.prev:hover,
.datepicker thead th.next:hover {
    background: #f3f5fb;
}

.datepicker thead th.datepicker-switch {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
}

.datepicker thead th.dow {
    font-weight: 500;
    background: #f3f5fb;
    border-radius: 0;
    text-transform: uppercase;
}

.datepicker thead th.dow:first-child {
    border-radius: 20px 0 0 20px;
}

.datepicker thead th.dow:last-child {
    border-radius: 0 20px 20px 0;
}

.datepicker td span.month {
    font-weight: 500;
    padding: 0.6rem 0.77rem;
    text-align: center;
    width: 20%;
    float: left;
    border-radius: .5rem;
}

.datepicker .table-condensed td:hover {
    background: none;
}

.datepicker td.old,
.datepicker td.new {
    color: #999;
}

.datepicker td.today,
.datepicker td span.month.focused,
.datepicker .table-condensed td span.month.focused:hover {
    background-color: #fe5f5b;
    color: #fff;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(23, 9, 54, 0.08);
}

.datepicker td.today:hover,
.datepicker td.today:focus {
    background-color: #2b1d6a;
}

.datepicker td:hover,
.datepicker td.active,
.datepicker .table-condensed td span.month:hover {
    background: #f3f5fb;
}

.searchIcon {
    cursor: pointer;
    padding: 10px;
}


.searchInputWrapper {
    position: relative;
    width: 253px;
}


/* Icon inside input */
.searchInputWrapper i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fe5f5b;
    pointer-events: none;
    font-size: 20px;
}

/* Placeholder color */
.searchInputWrapper input::placeholder {
    color: #191627ff;
    /* change to any color you like */
}

.searchInputWrapper input:focus {
    outline: none;
}

.searchDropdown {
    display: none;
    position: absolute;
    top: 6rem;
    right: 11px;
    margin-top: 5px;
    background-color: #f4f4f6;

    padding: 17px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    transition: all 0.3s ease-out;
    animation: 0.95s ease 0s normal forwards 1 running headerSlideDownbtn;
}

@keyframes headerSlideDownbtn {
    0% {
        margin-top: -2.6rem;
        z-index: -1000;
    }

    100% {
        margin-top: 0;
    }
}

.searchDropdown input {
    padding: 6px 10px;
    width: 260px;
    border: 0px solid #ccc;
    border-radius: 0;
    height: 55px;
    font-size: 1.6rem;
    /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.searchDropdown.show {
    display: block;
}

.searchInputWrapper a {
    cursor: pointer;
}

.section_padd {
    padding: 10rem 0;
    z-index: 1;
}

.relative {
    position: relative;
}

.shape_one {
    position: absolute;
    left: 0;
    z-index: -1;
    top: 0;
    transform-origin: center bottom;
    animation-fill-mode: both;
    animation-name: bounce;
    animation-timing-function: ease-out;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(5%);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

    50% {
        transform: translateY(0);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
}

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.servicesBox {
    position: relative;
}

.servicesBox .services_content h3 {
    padding: 2rem 0 .5rem 0;
    color: #2b1d6a;
    font-weight: 500;
    font-size: 2rem;
}

p,
ul {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 3rem;
    color: #6b6f92;
}

.servicesBox .services_content .counter {
    opacity: 0;
    visibility: hidden;
    font-size: 10rem;
    position: absolute;
    right: 0;
    top: 0;
    color: #fe5f5b;
    display: block;
    transition: all 0.3s ease-in-out 0s;
}

.servicesBox:hover .services_content .counter {
    opacity: 0.1;
    visibility: visible;
}

.grey_bg {
    background-color: #f9f9f9;
}

.shape_two {
    top: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    transform-origin: center bottom;
    animation-fill-mode: both;
    animation-name: bounce;
    animation-timing-function: ease-out;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

.HeadingSect {
    width: 63.6rem;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
    text-align: center;
}

.HeadingSect h5 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: .8rem;
}

.HeadingSect h2 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.HeadingSect .divder {
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
}

.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.about_img {
    position: relative;
}

.about_img .aboutone {
    padding-left: 3.5rem;
    padding-bottom: 2.5rem;
    width: 100%;
}

.about_img .aboutTwo {
    position: absolute;
    left: 0;
    bottom: 0;
    box-shadow: 0 .3rem 2rem .3rem rgba(0, 0, 0, 0.07);
    border-radius: .5rem;
    border: .7rem solid #ffffff;
}

.waves_box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.waves_box .iq_video {
    background: #fe5f5b;
    display: inline-block;
    width: 7rem;
    height: 7rem;
    text-align: center;
    font-size: 2rem;
    color: #fff;
    border-radius: 100%;
    line-height: 5.3rem;
    z-index: 9;
    position: relative;
    border: .8rem solid #ffffff;
}

.waves_box .iq_video i {
    margin-left: .3rem;
}

.waves_box .iq_waves {
    position: absolute;
    left: -3rem;
    top: -3rem;
    z-index: 2;
}

.waves_box .iq_waves .waves {
    position: absolute;
    width: 13rem;
    height: 13rem;
    background: rgba(246, 31, 31, 0.56);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 50%;
    background-clip: padding-box;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.waves_box .iq_waves .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.waves_box .iq_waves .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waves_box .iq_waves .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.about_right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
}

.about_right_box {
    padding: 2rem;
    box-shadow: 0 0 .6rem rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: all 0.3s ease-in-out 0s;
}

.about_right_boxContent {
    display: flex;
    gap: 2rem;
}

.about_right_boxContent i {
    font-size: 2.5rem;
    color: #fe5f5b;
    margin-top: .8rem;
}

.about_right_boxContent h3 {
    padding: 0 0 .5rem;
    font-size: 2rem;
    font-weight: 700;
}

.about_right_box:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
    transform: translateY(-.6rem);
}

.tour_portfolio .filtering {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7rem;
    gap: 1.5rem;
}

.tour_portfolio .filtering span {
    font-size: 1.5rem;
    background: transparent;
    overflow: hidden;
    text-transform: capitalize;
    display: inline-block;
    padding: .8rem 1.5rem;
    transition: 0.4s;
    outline: none;
    border-radius: .4rem;
    font-weight: 500;
    cursor: pointer;
}

.tour_portfolio .filtering span:hover,
.tour_portfolio .filtering span.active {
    color: #fff;
    background: #fe5f5b;
}

.portfolio_box {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.portfolio_img {
    border-radius: 1rem;
    overflow: hidden;
    height: 450px;
    width: 100%;
}

.portfolio_img img {
    height: 100%;
    max-height: 450px;
    width: 100%;
    max-width: 100%;
    transform: scale(1.17);
    transition: 800ms;
    object-fit: cover;
}

.portfolio_box:hover .portfolio_img img {
    transform: scale(1);
}

.portfolio_content {
    position: absolute;
    width: 100%;
    bottom: 30%;
    left: 0;
    text-align: center;
    z-index: 10;
    padding: 2.5rem;
    opacity: 0;
    -webkit-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

.portfolio_content::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: -1;
    -webkit-transition: .25s opacity ease;
    transition: .25s opacity ease;
    opacity: 0.8;
    border-radius: .4rem .5rem;
}

.portfolio_content .p-zoom {
    display: inline-block;
    font-size: 1.4rem;
    color: #fff;
    transition: all 0.3s ease 0s;
    height: 4.6rem;
    line-height: 4.4rem;
    width: 4.6rem;
    border: .1rem solid #fff;
    border-radius: 50%;
    text-align: center;
}

.portfolio_content .p-zoom:hover {
    background: #fff;
    color: #2b1d6a;
}

.portfolio_content h3 {
    font-size: 2rem;
    line-height: normal;
    margin-top: 2.5rem;
    color: #fff;
    margin-bottom: 0;
}

.portfolio_content h3 a {
    color: #fff;
    text-decoration: none;
}

.portfolio_box:hover .portfolio_content {
    opacity: 1;
    bottom: 0;
}

.mfp-bottom-bar {
    font-size: 1.4rem;
}

.centerbtn {
    display: flex;
    justify-content: center;
    margin: 7rem 0 0;
}

.centerbtn .themebtn {
    display: inline-flex;
}

.counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}

.counterbox {
    padding: 3rem 2rem;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 .6rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out 0s;
}

.counter_icon {}

.counter_icon img {
    width: 5rem;
}

.counterbox .counting {
    color: #fe5f5b;
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin: 2rem 0 0;
}

.counterbox h5 {
    font-size: 2rem;
    text-transform: capitalize;
    font-weight: 500;
    margin: 1rem 0;
}

.counterbox:hover {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2);
    transform: translateY(-.6rem);
}

.tour {
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.07);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.tour:before {
    position: absolute;
    content: '';
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: 0.3s ease-in-out 0s;
}

.tour_img {
    border-radius: 1rem;
    overflow: hidden;
}

.tour_img img {
    height: 265px;
    width: 100%;
    transform: scale(1.17);
    transition: 800ms;
    object-fit: cover;
}

.tour:hover .tour_img img {
    transform: scale(1);
}

.tour .tour_content {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    padding: 2rem;
    text-align: center;
    background: #fe5f5b;
    color: #ffffff;
    z-index: -1;
    transition: 0.3s ease-out 0s;
    transform: translateY(3rem);
}

.tour .tour_content h4 {
    margin-bottom: 0;
    font-size: 1.9rem;
    text-align: center;
    transition: .2s;
    color: #fff;
}

.tour .tour_content p {
    margin-bottom: 0;
    font-size: 1.8rem;
    color: #fff;
}

.tour:hover:before {
    opacity: 1;
}

.tour:hover .tour_content {
    bottom: 0;
    z-index: 1;
    height: 10rem;
    transition: 0.5s ease-out 0.2s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.vacation {
    transition: all 0.3s ease-in-out 0s;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    border-radius: .4rem;
    margin-bottom: 2rem;
}

.vacation_Img {
    position: relative;
    transition: .5s;
    overflow: hidden;
    border-radius: .5rem;
}

.silderA .vacation_Img img {
    height: 265px;
    object-fit: cover;
}


.vacation_Img:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 75%);
    opacity: 0;
    transition: .5s;
}

.vacation_Img:hover:before {
    opacity: 1;
}

.vacation_price,
.vacation_off {
    font-weight: 500;
    color: #2b1d6a;
    font-size: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ffffff;
    display: inline-block;
    z-index: 1;
    padding: 1rem 1.4rem 0 1rem;
    letter-spacing: .1rem;
}

.vacation_off {
    opacity: .8;
    width: 5rem;
    height: 5rem;
    left: 1rem;
    top: 1rem;
    bottom: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5rem;
}

.vacation_Content {
    padding: 3rem;
    background: #fff;
}

.vacation_locaton {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.vacation_locaton i {
    color: #fe5f5b;
    margin: 0 .8rem 0 0;
}

.vacation_Content h4 {
    font-size: 2rem;
    line-height: 1.4;
    margin: 1rem 0 2rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out 0s;
}

.vacation_Content h4 a {
    color: #2b1d6a;
    text-decoration: none;
}

.vacation_Content h4 a:hover {
    text-decoration: underline;
}

.vacation_rating {
    color: #fe5f5b;
    font-size: 1.5rem;
}

.vacation_time {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    margin: 1.5rem 0 0;
    gap: 1.5rem;
}

.vacation_time_zone {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.vacation_time_zone i {
    color: #fe5f5b;
    margin: 0 .8rem 0 0;
}

.vacation_carousel .owl-dots {
    margin: 3rem 0 0;
    text-align: center;
}

.vacation_carousel .owl-dots .owl-dot span {
    width: 1rem;
    height: 1rem;
    margin: 0 .8rem;
    border-radius: .5rem;
    background: #fe5f5b;
    border: .1rem solid #fe5f5b;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.vacation_carousel .owl-dots .owl-dot.active span {
    width: 3.5rem;
}

.blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.blogbox {
    position: relative;
    border-radius: .4rem;
    overflow: hidden;
    /* box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1); */
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    transition: all 0.3s ease-in-out;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blogbox_content {
    padding: .5rem 1.5rem 3rem 2rem;
    background: #fff;
}

.blogbox_content h4 {
    padding-top: 1rem;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    transition: all 0.3s ease-in-out 0s;
}

.blogbox_content h4 a {
    color: #2b1d6a;
    text-decoration: none;
}

.blogbox_icon {
    -webkit-transition: all .3s;
    transition: all .3s;
    margin: 1.6rem 0 0;
    display: flex;
    align-items: center;
}

.blogbox_icon a {
    font-size: 1.5rem;
    color: #6b6f92;
    display: flex;
    align-items: center;
    margin: 0 2rem 0 0;
    text-decoration: none;
}

.blogbox_icon i {
    color: #fe5f5b;
    margin: 0 1rem 0 0;
}

.blogbox_content p {
    padding: 1.5rem .5rem 1.5rem 0;
    font-size: 1.4rem;
}

.readmore {
    margin: .8rem 0 0;
}

.readmore a {
    text-transform: capitalize;
    font-size: 1.5rem;
    background: transparent;
    color: #fe5f5b;
    box-shadow: none;
    padding: 0;
    font-weight: 600;
    transition: 0.5s all ease-in-out 0s;
    transform: translateY(-0);
    letter-spacing: 0;
    text-decoration: none;
}

.readmore a i {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-1.5rem);
    transition: all 0.3s ease-in-out 0s;
    margin-left: .8rem;
}

.readmore a:hover {
    color: #2b1d6a;
}

.readmore a:hover i {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-in-out 0s;
}

.chgreadmore a {
    text-transform: uppercase;
    font-size: 1.6rem;
    background: transparent;
    color: #fe5f5b;
    box-shadow: none;
    padding: 0;
    font-weight: 500;
    transition: 0.5s all ease-in-out 0s;
    letter-spacing: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.chgreadmore a img,
.owl-carousel .owl-item .chgreadmore a img {
    width: 5rem;
    margin: 0 1rem 0 0;
    transition: 0.5s all ease-in-out 0s;
}

.chgreadmore a:hover {
    color: #2b1d6a;
}

.chgreadmore a:hover img,
.chgreadmore a:focus img {
    -webkit-animation: iconreadmore 0.7s ease-in-out 0s;
    animation: iconreadmore 0.7s ease-in-out 0s;
    color: currentColor;
    filter: brightness(0) saturate(100%) invert(16%) sepia(24%) saturate(4931%) hue-rotate(234deg) brightness(88%) contrast(105%);
}

@keyframes iconreadmore {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    25% {
        -webkit-transform: translateX(-4px);
        -ms-transform: translateX(-4px);
        -o-transform: translateX(-4px);
        transform: translateX(-4px);
    }

    50% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }

    75% {
        -webkit-transform: translateX(4px);
        -ms-transform: translateX(4px);
        -o-transform: translateX(4px);
        transform: translateX(4px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

.read_dark a {
    color: #2b1d6a;
}

.read_dark img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(24%) saturate(4931%) hue-rotate(234deg) brightness(88%) contrast(105%);
}

.read_dark a:hover {
    color: #fe5f5b;
}

.read_dark a:hover img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(26%) saturate(4996%) hue-rotate(321deg) brightness(96%) contrast(107%);
}

.blogbox_img {
    position: relative;
}

.blogbox_img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.blogbox_img .blogbox_date {
    position: absolute;
    bottom: 1.8rem;
    right: 1.8rem;
}

.blogbox_img .blogbox_date a {
    color: #ffffff;
    font-size: 1.4rem;
    background: #fe5f5b;
    padding: .5rem 1.5rem;
    border-radius: .3rem;
    text-decoration: none;
}

.blog .blogbox:nth-child(2) {
    display: flex;
    flex-direction: column-reverse;
}

.black_bg {
    background: #122223;
}

.partner_icon {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 100%;
    border-radius: .4rem;
    background: #fff;
}

.testimonial {
    display: flex;
    align-items: center;
}

.testimonial_Img {
    width: 28%;
}

.testimonial_Silder {
    width: 44%;
}

.testimonial_Slide {
    text-align: center;
    padding: 0 5rem;
}

.testimonial_img a {
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    width: 12rem;
    height: 12rem;
    box-shadow: 0 .6rem 1.5rem rgba(0, 0, 0, 0.3);
    border: .5rem solid #fe5f5b;
}

.testimonial_img a img {
    width: 100%;
}

.testimonial_Content p {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 0;
    color: #6b6f92;
    display: block;
    padding: 2rem 0;
    font-style: italic;
}

.testimonial_Content a.readmore {
    font-size: 1.5rem;
    color: #fe5f5b;
    position: relative;
    margin: -1rem auto 2rem;
    display: table;
}

.testimonial_Content a.readmore::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fe5f5b;
    transition: transform 0.3s ease;
    transform: scaleX(1);
    transform-origin: left;
}

.testimonial_Content a.readmore::after {
    transform: scaleX(0);
}

.testimonial_Content a.readmore:hover::after {
    transform: scaleX(1);
}




.testimonial_info {}

.testimonial_info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.testimonial_info span {
    font-style: italic;
    font-size: 1.3rem;
    font-weight: normal;
    margin: 1rem 0 0;
    display: block;
}

.testimonial_star {
    font-size: 1.5rem;
    margin-top: .7rem;
}

.testimonial_star i {
    cursor: pointer;
    color: #2b1d6a;
}

.testimonial_star i.fa-star {
    color: #fe5f5b;
}

.testimonial_Silder .carousel-control-prev,
.testimonial_Silder .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    color: #ffffff;
    opacity: 1;
    font-size: 2rem;
    transition: all 0.4s ease-out;
    width: 5rem;
    height: 5rem;
    line-height: 4.8rem;
    background: #fe5f5b;
    border-radius: 50%;
}

.testimonial_Silder .carousel-control-prev {
    left: -2.5rem;
}

.testimonial_Silder .carousel-control-next {
    right: -2.5rem
}

.contact {
    background: url(../images/contact/bg.jpg);
    background-size: cover;
    background-position: center;
}

.contact::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
}

.contact .container-lg {
    position: relative;
    z-index: 1;
}

.whiteColor .HeadingSect h5,
.whiteColor .HeadingSect h2,
.whiteColor .HeadingSect p {
    color: #fff;
}

.contact_section {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    padding: 4.5rem;
    background: #fff;
    border-radius: 1.2rem;
}

.contact_sectionInner {
    display: grid;
    grid-template-columns: 58% 36%;
    justify-content: space-between;
}

.contact_form h3 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    font-weight: bold;
}

.contact_form .form-group {
    margin-bottom: 2.5rem;
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: 0;
    background-color: #f6f6f6;
    font-weight: 400;
    color: #2b1d6a;
    border: .1rem solid #ddd;
    border-radius: .8rem;
    outline: none;
}

.contact_form textarea {
    max-height: 12rem;
    max-width: 100%;
    color: #2b1d6a;
    resize: none;
    display: table;
}

.contact_form input::-webkit-input-placeholder,
.contact_form textarea::-webkit-input-placeholder {
    color: #2b1d6a;
}

.contact_form input::-moz-placeholder,
.contact_form textarea::-moz-placeholder {
    color: #2b1d6a;
}

.contact_form input:-ms-input-placeholder,
.contact_form textarea:-ms-input-placeholder {
    color: #2b1d6a;
}

.contact_form input:-moz-placeholder,
.contact_form textarea:-moz-placeholder {
    color: #2b1d6a;
}

.contact_form .btn[type="submit"] {
    width: 100%;
    color: #fff;
    background: #fe5f5b;
    border-radius: .4rem;
    padding: 1.5rem 2.3rem;
    font-weight: 500;
    font-size: 1.6rem;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    display: inline-block;
    transition: all 0.5s ease-in-out 0s;
    text-transform: capitalize;
    letter-spacing: 0.08em;
}

.contact_info {
    margin: 6.5rem 0 0;
}

.contact_info_details {
    border-bottom: .1rem solid #ddd;
    padding-bottom: 1.7rem;
    margin-bottom: 2rem;
    display: block;
}

.contact_info_details h4 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: .8rem;
}

.contact_info_details p {
    color: #2b1d6a;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact_info_details p i {
    font-size: 2rem;
    color: #fe5f5b;
}

.contact_info_details:last-child {
    border-bottom: 0;
}

#mapId {
    width: 100%;
    height: 43rem;
    display: block;
}

.map iframe {
    width: 100%;
    height: 50rem;
    display: block;
}

.footer {
    background: #2b1d6a;
}

.footerSection {
    display: grid;
    grid-template-columns: 25% 18% 18% 25%;
    justify-content: space-between;
}

.footerlogo img {
    width: 16rem;
}

.footerInner p {
    color: #fff;
    margin: 2rem 0;
}

.footerInner h4 {
    color: #fff;
    margin: 1.6rem 0;
    font-size: 2rem;
    font-weight: bold;
}

.subscribe {
    position: relative;
}

.subscribe input {
    background: #fff;
    color: #2b1d6a;
    border: .1rem solid #eee;
    width: 100%;
    height: 5rem;
    padding-left: 1.5rem;
    font-size: 1.4rem;
    border-radius: .5rem;
}

.subscribe .btn {
    position: absolute;
    right: 0;
    background: transparent;
    box-shadow: none;
    top: 0;
    font-size: 3.5rem;
    color: #fe5f5b;
    padding: 0 1rem 0 0;
}

.footerInner.ulList {}

.footerInner.ulList h4 {
    margin: 0;
}

.footerInner.ulList h4::after {
    content: '';
    background: #fe5f5b;
    width: 5rem;
    height: .4rem;
    display: table;
    margin: 1rem 0 0;
}

.footerInner.ulList ul {
    margin: 4rem 0 0;
    padding: 0;
}

.footerInner.ulList ul li {
    list-style-type: none;
}

.footerInner.ulList ul li a {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footerInner.ulList ul li a:hover {
    color: #fe5f5b;
    padding-left: .4rem;
}

.footerInnerImg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 4rem 0 0;
}

.footer_boottom {
    padding: 3rem 0;
    background: #f1f1f1;
}

.footer_boottomInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_boottom p,
.footer_boottom p a {
    color: #2b1d6a;
    margin: 0px;
}

.footer_boottom p a {
    font-weight: bold;
}

.footerbottomright {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.footerbottomright li {
    display: inline-block;
    margin-right: 1rem;
}

.footerbottomright li a {
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    font-size: 1.5rem;
    text-align: center;
    background: #fe5f5b;
    color: #fff;
    display: block;
    border-radius: .5rem;
    transition: all .3s;
}

.footerbottomright li a:hover {
    background: #2b1d6a;
    color: #fff;
}

#backtotop {
    position: fixed;
    cursor: pointer;
    right: 3%;
    top: 85%;
    background-color: #fe5f5b;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    z-index: 4;
    width: 50px;
    text-align: center;
    height: 50px;
    line-height: 42px;
    border-radius: 50px;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
}

#backtotop i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: .5s;
    transition: .5s;
    font-size: 20px;
    color: #fff;
}

#backtotop:hover {
    cursor: pointer;
    background: #2c1e6b;
}

#backtotop.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.bgoverlay {}

.breadscrumb {
    padding: 7rem 0 0;
}

.breadscrumb ol {
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadscrumb li {
    color: #fff;
    font-size: 1.7rem;
    list-style-type: none;
}

.breadscrumb li a {
    color: #fff;
    text-decoration: none;
}

.breadscrumb li+li:before {
    display: inline-block;
    content: "/";
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    margin: 0 7px 0 14px;
}

.breadscrumb li a:hover {
    text-decoration: underline;
}

.blogSection {
    display: grid;
    grid-template-columns: auto 27%;
    gap: 8%;
}

.blogposts {}

.bloglist {
    display: grid;
    align-items: center;
    grid-template-columns: 38rem auto;
}

.bloglist:nth-of-type(n+2) {
    margin-top: 5rem;
}

.blogthumb {
    border-radius: 1rem;
    overflow: hidden;
    width: 38rem;
    height: 54.7rem;
}

.blogthumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blogcontent {
    padding: 0 0 0 6rem;
}

.blog_info {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}

.blog_info .list_cat {
    margin-right: 12px;
    padding-right: 12px;
    position: relative;
    text-transform: capitalize;
}

.blog_info .list_cat:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #8184ff;
    border-radius: 50%;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.blog_info .list_cat a {
    color: #122223;
    text-decoration: none;
}

.blog_info .list_cat a:hover {
    text-decoration: underline;
}

.blogcontent .HeadingSect {
    text-align: left;
    width: auto;
    margin: 0;
}

.blogcontent .HeadingSect h2 {
    font-size: 2.4rem;
    font-weight: 500;
}

.blogcontent .HeadingSect h2 a {
    color: #2b1d6a;
    text-decoration: none;
}

.blogcontent .HeadingSect h2 a:hover {
    text-decoration: underline;
}

.mt_tworm {
    margin: 2rem 0 0;
}

.sidebar {
    position: sticky;
    top: 10rem;
    /* height: 170rem; */
}

.sidebarblock {
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 0;
}

.sidebarblockInner:not(:nth-child(2n)) {
    margin-bottom: 5rem;
}

.sidebarblock h3 {
    font-size: 2.4rem;
    margin: 0 0 1.4rem;
}

.sidebarblock .searchflied .form-control {
    height: auto;
    padding: .8rem 1.8rem;
    border-radius: .4rem 0 0 .4rem;
    border-color: #e8e6f1;
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 0;
    font-size: 1.5rem;
    height: 4.4rem;
    border-right: 0;
}

.sidebarblock .searchflied .input-group-text {
    padding: 0 1.2rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    color: #122223;
    text-align: center;
    border: .1rem solid #e8e6f1;
    border-left: 0;
    border-radius: 0 .4rem .4rem 0;
    display: flex;
    align-items: center;
    background-color: transparent;
    height: 4.4rem;
}

.category_list,
.posts_list,
.populartags {
    margin: 2.4rem 0 0;
    padding: 0;
    list-style-type: none;
}

.category_list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: .1rem solid #e8e6f1;
}

.category_list li a {
    font-size: 17px;
    padding-left: 15px;
    color: #122223;
    text-decoration: none;
    position: relative;
    text-transform: capitalize;
}

.category_list li a:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #8184ff;
    border-radius: 50%;
    left: 4px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.category_list li a:hover {
    text-decoration: underline;
    color: #5c60f9;
}

.category_list li a:hover:before {
    background: #5c60f9;
}

.latestpost {
    background: #FAF5EF;
    margin-top: 4rem;
    box-shadow: inherit;
    border: 0;
}

.posts_list {}

.posts_list li {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.posts_list .postimg {
    width: 90px;
    height: 90px;
    min-width: 90px;
    min-height: 90px;
    border-radius: 1rem;
    overflow: hidden;
}

.posts_list .postcontent h4 {
    font-size: 12px;
    line-height: 1.2;
}

.posts_list .postcontent h4 a {
    color: #122223;
    text-decoration: none;
}

.posts_list .postcontent h4 a:hover {
    text-decoration: underline;
}

.posts_list .postcontent .postdate {
    font-size: 1.2rem;
}

.posts_list .postcontent .postdate span {
    color: #fe5f5b;
    font-weight: 600;
}

.populartags {
    display: flex;
    flex-flow: wrap;
    gap: 1rem;
}

.populartags li a {
    background: #EBE7DE;
    text-transform: capitalize;
    font-size: 16px;
    padding: 12px 14px;
    font-weight: 400;
    display: inline-block;
    line-height: 1;
    transition: all 0.2s ease 0s;
    color: #122223;
    text-decoration: none;
}

.populartags li a:hover {
    background: #e8decd;
    color: #122223;
    text-decoration: none;
}

.tour_price {
    font-size: 1.7rem;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.tour_price span.slash {
    font-style: italic;
}

.currencysign {
    font-size: 1.4rem;
    font-weight: 400;
}

.tour_priceVal {
    font-size: 1.9rem;
    margin: 0 .5rem;
    font-weight: bold;
}


.Service {
    display: grid;
    grid-template-columns: auto 27%;
    gap: 8%;
}

.ServiceContent {}

.ServiceContent .tour_price {
    justify-content: start;
}

.ServiceContent h2 {
    font-size: 3.6rem;
    font-weight: 600;
    text-transform: capitalize;
    margin: 3rem 0;
}

.room_detail {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.item_detail_room {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2b1d6a;
}

.item_detail_room i {
    font-size: 2rem;
    color: #fe5f5b;
}

.item_detail_room span {
    font-size: 1.7rem;
}

.divd {
    margin: 5rem 0;
    color: #ddd;
    opacity: 1;
}

.Service_desp {}

.Service_desp p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.flatpickr-calendar,
.flatpickr-rContainer,
.flatpickr-days,
.dayContainer {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}

.flatpickr-calendar {
    box-shadow: inherit;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 2rem;
    height: 2rem;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-size: 2rem;
}


.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 500;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option {
    font-size: 1.4rem;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover,
.flatpickr-current-month .numInputWrapper:hover {
    background: none;
}

.flatpickr-calendar .numInputWrapper span {
    display: none;
}

.flatpickr-weekdays {
    margin: 2.6rem 0;
}

.flatpickr-weekdays span.flatpickr-weekday {
    font-size: 1.6rem;
    color: #2b1d6a;
    font-weight: 600;
}

.dayContainer {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.dayContainer .flatpickr-day {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    min-height: 5rem;
    line-height: 5rem;
    font-size: 1.7rem;
    border: 0;
    border-radius: 5rem;
    color: #C6C6D2;
    background: none;
    margin: auto;
}

.dayContainer .flatpickr-day.nextMonthDay:hover {
    background: #fe5f5b;
    color: #fff;
}

.dayContainer .flatpickr-day.remaining-day {
    background-color: #2b1d6a;
    color: #fff;
}

.serviveSuit ul {
    margin: 0;
    padding: 1.4rem 0 0;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.serviveSuit li {
    font-size: 1.7rem;
    padding-left: 1.5rem;
    color: #122223;
    text-decoration: none;
    position: relative;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.serviveSuit li:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #8184ff;
    border-radius: 50%;
    left: 4px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.divdlight {
    opacity: .5;
}


.roomrules ul {
    grid-template-columns: auto;
}

.sidebarB {
    height: 64rem;
}

.tour_bookbox {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E9E9E9;
}

.tour_booking_form {
    padding: 1rem 0 0;
}

.tour_booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour_booking .input-group {
    flex-flow: inherit;
}

.tour_booking label {
    font-size: 17px;
    width: 15rem;
}

.tour_booking input.form-control,
.tour_booking select.form-control,
.guest_dropdown button.dropdown-toggle {
    border: 1px solid #E9E9E9;
    border-radius: 0px;
    height: 50px;
    min-width: 95px;
    padding: .5rem 0 .5rem 1rem;
    font-size: 1.5rem;
    border-right: 0;
    box-shadow: none;
}

.tour_booking .input-group-append {
    height: 5rem;
    display: flex
}

.tour_booking .input-group-append .input-group-text {
    padding: 0 1.2rem;
    background: none;
    border-left: 0;
    font-size: 1.4rem;
    color: #8184ff;
}

.tour_booking:last-child {
    border: 0;
    padding: 0;
    margin: 0;
}

.sidebarB .sidebarblockInner:not(:nth-child(2n)) {
    margin-bottom: 3rem;
}

.guest_dropdown {
    position: relative;
    width: 100%;
}

.guest_dropdown button.dropdown-toggle {
    background: none;
    border: 1px solid #E9E9E9;
    padding: .5rem 1rem;
    font-size: 1.4rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guest_dropdown .dropdown-menu {
    border: 1px solid #E9E9E9;
    padding: 1.5rem 1rem;
    width: 175px;
    border-radius: 0;
    right: 0;
    left: initial;
}

.guest_dropdown .dropdown-menu .controls {
    display: flex;
    align-items: center;
    gap: 9px;
}

.guest_dropdown .dropdown-menu p.count {
    margin: 0px !important;
}

.guest_dropdown .dropdown-menu .controls button {
    width: 27px;
    height: 27px;
    font-size: 15px;
    background: none;
    border: 1px solid #aaa;
    border-radius: 50%;
    cursor: pointer;
    color: #2b1d6a;
    font-weight: bold;
}

.guest_dropdown .dropdown-menu .guest_counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    justify-content: space-between;
}

.guest_dropdown .dropdown-menu .close-dropdown {
    border: 0;
    width: 100%;
    height: 4rem;
    margin: 2rem 0 0;
}

.list_services {
    margin: 0;
}

.list_service {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E9E9E9;
    position: relative;
}

.list_service label {
    font-size: 1.5rem;
}

.list_service input[type="checkbox"] {
    vertical-align: text-bottom;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0px;
    width: 20px;
    height: 20px;
    line-height: 18px;
    text-align: center;
    border: 1px solid #122223;
    margin-right: 8px;
    vertical-align: baseline;
}

.list_service input[type="checkbox"]:before {
    color: #fff;
    opacity: 0;
    filter: alpha(opacity=0);
    font-size: 10px;
    font-weight: 600;
    font-family: "Font Awesome 6 Free";
    content: "\f00c";
}

.list_service .list_service_prices {
    font-size: 1.6rem;
    font-weight: 500;
}

.list_service input[type="checkbox"]:checked {
    background: #8184ff;
    border-color: #6a6efe;
}

.list_service input[type="checkbox"]:checked:before {
    opacity: 1;
    filter: alpha(opacity=100);
}

.list_service:last-child {
    border: 0;
}

.tour_total {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0 0;
    font-weight: 500;
}

.tour_total label {
    font-size: 2rem;
    color: #2b1d6a;
}

.tour_total .price_tag {
    color: #fe5f5b;
    font-size: 2rem;
}

.custbtn {
    width: 100%;
    border: 0;
    outline: none;
    margin: 2rem 0 0;
}

.roomamen {
    margin: 0;
    padding: 0;
    /* display: flex;
    align-items: center;
    justify-content: space-between; */

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.roomamen li {
    margin-bottom: 3rem;
    list-style-type: none;
    text-align: center;
}

.roomamen li .roomamen_img {
    max-width: 5rem;
    margin: auto;
    position: relative;
}

.roomamen li .roomamen_img:before {
    content: '';
    position: absolute;
    background: rgba(18, 34, 35, 0.08);
    width: 5rem;
    height: 5rem;
    top: 0;
    left: -1rem;
    transition: all 0.2s ease-in-out 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    border-radius: 50%;
    z-index: 0;
}

.roomamen li:hover .roomamen_img:before {
    top: -5px;
    left: -18px;
    opacity: 1;
    filter: alpha(opacity=100);
}

.roomamen .roomamen_content {
    font-size: 2rem;
    margin-top: 2rem;
    line-height: 1.2;
    display: block;
    text-transform: capitalize;
}


.wrapper .gallery_carousel {
    width: 100%;
    margin: 0px auto;
}

.wrapper .slick-slide {
    -webkit-transform: scale(0.93);
    -ms-transform: scale(0.93);
    -o-transform: scale(0.93);
    transform: scale(0.93);
}

.wrapper .slick-slide.slick-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.wrapper .slick-slide img {
    width: 100%;
    height: 518px;
    object-fit: cover;
}

.wrapper .slick-dots li button:before {
    font-size: 20px;
    color: white;
}




.wrapper .slick-arrow {}

.wrapper .slick-arrow {
    width: 8rem;
    height: 8rem;
    border-radius: 8rem;
    border: .1rem solid rgb(255 255 255 / 23%);
    color: rgb(255 255 255 / 23%);
    background: #122223;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: all 0.5s ease-in-out 0s;
    position: absolute;
    top: 50%;
    z-index: 1;
    padding: 0;
    transform: translate(0%, -50%);
}

.wrapper .slick-arrow:before {
    font-weight: 900;
    font-size: 2rem;
}

.wrapper .slick-prev {
    left: -4rem;
}

.wrapper .slick-prev:before {
    font-family: "Font Awesome 6 Free";
    content: "\f060";
}

.wrapper .slick-next {
    right: -4rem;
}

.wrapper .slick-next:before {
    font-family: "Font Awesome 6 Free";
    content: "\f061";
}

.wrapper .slick-arrow:hover {
    color: #fe5f5b;
    border-color: #fe5f5b;
}

.wrapper .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6rem;
}

.wrapper .slick-dots li {
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 50%;
    border: 1px solid transparent;
    padding: 9px;
    background: transparent;
}

.wrapper .slick-dots li:before {
    transition: all 0.3s ease-in-out 0s;
    content: '';
    border: .1rem solid rgb(255 255 255 / 23%);
    border-left-color: transparent !important;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    border-radius: 50%;
    top: -1px;
    left: -1px;
}

.wrapper .slick-dots li button {
    border: none;
    display: block;
    text-indent: -9999em;
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgb(255 255 255 / 20%);
    border-radius: 50%;
    transition: all 0.3s ease-in-out 0s;
}

.wrapper .slick-dots li:hover:before {
    transform: rotate(45deg);
    border-color: rgb(254 95 91 / 70%);
}

.wrapper .slick-dots li:hover button {
    transform: rotate(45deg);
    background: rgb(254 95 91 / 90%);
}

.similar_rooms .vacation {
    box-shadow: none;
}

.similar_rooms .vacation_Content {
    padding: 0rem 0 3rem;
    background-color: transparent;
}

.recentposts .similar_rooms .vacation_Content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 281px;
}

.recentposts .vacation_Content p {
    height: 97px;
    overflow: hidden;
}

.similar_rooms .vacation_Img {
    border-radius: 1.6rem;
}

.similar_rooms .vacation_Img:before {
    display: none;
}

.similar_rooms .tour_price {
    padding: .6rem 1rem;
    background: #fff;
    z-index: 1;
    position: absolute;
    top: 2rem;
    left: 2rem;
    border-radius: 1.6rem 0 1.6rem 0;
    font-size: 1.5rem;
    text-transform: initial;
    color: #212529;
}

.similar_rooms .tour_price .tour_priceVal {
    font-size: 1.5rem;
    margin: 0 .5rem 0 .2rem;
    font-weight: 500;
}

.similar_rooms .vacation_Content h4 {
    font-size: 2rem;
    font-weight: 500;
    margin: 1rem 0 1rem;
}

.similar_rooms .vacation_Img img {
    height: 255px;
}

.similar_rooms .booknow {
    top: 55%;
}

.similar_rooms .vacation_Content .room_detail {
    gap: 1rem;
}



.similar_rooms .vacation_Content .room_detail .item_detail_room span,
.similar_rooms .vacation_Content .room_detail .item_detail_room i {
    font-size: 1.6rem;
}

.similar_rooms .vacation_Content .room_detail .item_detail_room i {
    color: #8689ff;
}

.similar_rooms .vacation_Content .vacation_locaton {
    font-size: 1.7rem;
}

.similar_rooms .vacation_Content .vacation_locaton p {
    font-size: 1.6rem;
}

.booknow {
    width: 13rem;
    height: 13rem;
    background: rgba(18, 34, 35, 0.6);
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    transition: all 0.3s ease-in-out 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    z-index: 1;
    top: 45%;
    left: 49%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transform: translate(-50%, -50%) scale(0);
}

.booknow:hover {
    background: #122223;
}

.similar_rooms .vacation:hover .booknow,
.listinglist:hover .booknow {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translate(-50%, -50%) scale(1);
}

.listing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.5rem;
}

.listinglist {}

.listinglistimg {
    position: relative;
}

.listinglistimgwrapper {
    outline: 1px solid rgba(255, 255, 255, 0.4);
    outline-offset: -20px;
    transition: all 0.2s ease-in-out 0s;
}

.listinglistimgwrapper img {
    height: 350px;
    width: 100%;
}

.listinglistimg:hover .listinglistimgwrapper {
    outline-offset: -15px;
}

.listinglistcontent {}

.listinglistcontenttop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listinglistcontenttop h4 {
    font-size: 2.6rem;
    font-weight: 500;
    margin: 0;
    width: 70%;
}

.listinglistcontenttop h4 a {
    color: #2b1d6a;
    text-decoration: none;
}

.listinglist:hover .listinglistcontenttop h4 a {
    text-decoration: underline;
}

.listinglistcontenttop .tour_price .currencysign {
    font-size: 1.7rem;
}

.listinglistcontenttop .tour_price {
    font-size: 1.7rem;
    margin: 0;
}

.listinglistcontenttop .tour_price .tour_priceVal {
    font-size: 1.7rem;
    margin: 0 .5rem 0 .2rem;
    font-weight: 500;
}

.listinglistcontent .room_detail {
    margin: 2rem 0;
}

.Custpagination {
    display: flex;
    justify-content: center;
    margin: 8rem 0 0;
}

.Custpagination .page-link,
.Custpagination .link-direction {
    width: 4rem;
    height: 4rem;
    margin: 0 .6rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #122223;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.Custpagination .active .page-link,
.Custpagination .active .page-link:hover,
.Custpagination .active .page-link:focus {
    color: #fff;
    background: #122223;
    cursor: inherit;
}

.Custpagination .link-direction {
    border: 1px solid #E9E9E9;
    text-decoration: none;
}

.Custpagination .link-direction i {
    height: 2.6rem;
    font-size: 1.1rem;
}

.Custpagination .page-link:hover,
.Custpagination .page-link:focus {
    background: #F8F5F0;
    color: #122223;
}

.post_thumb {
    box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.18);
    border-radius: 1rem;
    overflow: hidden;
    display: inline-block;
}

.post_content {
    margin-top: 3rem;
}

.post_content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
    margin: 2.5rem 0;
}

.post_content p {
    margin-bottom: 2rem;
}

.post_content .mb-80 {
    margin-bottom: 8rem;
}

.post_content .serviveSuit li {
    font-size: 1.5rem;
}

.three_post_img {
    display: grid;
    grid-template-columns: 65% 33%;
    justify-content: space-between;
    margin: 8rem 0;
}

.smallImg {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.blockquotemsg {
    margin: 7rem 0;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    font-weight: 500;
    font-style: normal;
    color: #122223;
    font-size: 2.4rem;
    line-height: 1.7;
    padding: 5rem 7rem;
    border-left: .5rem solid #122223;
    background: #FAF5EF;
}

.blockquotemsg p {
    font-size: 2rem;
    color: #122223;
    margin: 0;
    line-height: 4rem;
    position: relative;
}

.blockquotemsg p cite {
    font-style: normal;
    font-size: 1.8rem;
    margin: 2rem 0 0;
    display: block;
}

.blockquotemsg p:after {
    content: "“";
    position: absolute;
    right: 0;
    font-size: 15rem;
    line-height: inherit;
    font-weight: 300;
}

.two_post_img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 8rem 0;
}

.two_post_img p {
    text-align: center;
    margin: 2rem 0 0;
}

.author_info {
    margin: 7rem 0;
    font-size: 2.4rem;
    line-height: 1.7;
    padding: 4rem;
    background: #faf5ef;
}

.author_content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.author_img {
    width: 12rem;
    min-width: 12rem;
    border-radius: 12rem;
    overflow: hidden;
}

.author_description {
    font-size: 1.6rem;
    color: #122223;
}

.author_description h4 a {
    font-size: 2.4rem;
    margin: 0 0 1.4rem;
    color: #2b1d6a;
    text-decoration: none;
    text-transform: capitalize;
}


.leaveComment h3 {
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    font-weight: bold;
}

.twoRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.leaveComment .form-group {
    margin-bottom: 2.5rem;
}

.leaveComment input,
.leaveComment textarea {
    width: 100%;
    font-size: 1.5rem;
    padding: 1.6rem 2rem;
    border: 0;
    background-color: #f6f6f6;
    font-weight: 400;
    color: #2b1d6a;
    border: .1rem solid #ddd;
    border-radius: .8rem;
    outline: none;
}

.leaveComment textarea {
    max-height: 12rem;
    max-width: 100%;
    color: #2b1d6a;
    resize: none;
}

.leaveComment input::-webkit-input-placeholder,
.leaveComment textarea::-webkit-input-placeholder {
    color: #2b1d6a;
}

.leaveComment input::-moz-placeholder,
.leaveComment textarea::-moz-placeholder {
    color: #2b1d6a;
}

.leaveComment input:-ms-input-placeholder,
.leaveComment textarea:-ms-input-placeholder {
    color: #2b1d6a;
}

.leaveComment input:-moz-placeholder,
.leaveComment textarea:-moz-placeholder {
    color: #2b1d6a;
}

.leaveComment .btn[type="submit"] {
    color: #fff;
    background: #fe5f5b;
    border-radius: .4rem;
    padding: 1.6rem 2rem;
    font-weight: 500;
    font-size: 1.6rem;
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
    display: inline-block;
    transition: all 0.5s ease-in-out 0s;
    text-transform: capitalize;
    letter-spacing: 0.08em;
}

.recentComment .posts_list .postcontent .postdate {
    margin: 0 0 .5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    color: #3b4147;
}

.recentComment .posts_list .postcontent .postdate i {
    color: #fe5f5b;
    margin: 0 .6rem 0 0;
}

.recentComment .posts_list .postcontent h4 {
    line-height: 2.7rem;
    margin: 0;
}

.recentposts {}



.recentposts .tour_price .recentevent {
    margin-right: 12px;
    padding-right: 12px;
    position: relative;
    text-transform: capitalize;
}

.recentposts .tour_price .recentevent:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fe5f5b;
    border-radius: 50%;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.recentposts .tour_price .recentevent a {
    color: #122223;
    text-decoration: none;
}

.recentposts .tour_price .recentevent a:hover {
    text-decoration: underline;
}

.recentposts .tour_price p {
    line-height: inherit;
    font-weight: 500;
    margin: 0px;
}


.borderradiusOne {
    border-radius: 1rem;
}

.galleryport {}

.galleryport .portfolio_content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13rem;
    height: 13rem;
    bottom: 40%;
    margin: auto;
    right: 0;
    border-radius: 13rem;
    overflow: hidden;
}

.galleryport .portfolio_box:hover .portfolio_content {
    bottom: 40%;
}


.galleryport .portfolio_content .p-zoom {
    height: 5rem;
    line-height: 5rem;
    width: 5rem;
    border-color: rgba(255, 255, 255, .6);
}





.info-details .contact_info_details {
    padding: 4rem;
    border: 2px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 0;
}

.contact_info_details .set-display i {
    font-size: 4rem;
    color: #fe5f5b;
}

.contact_info_details .set-display {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.contact_info_details .set-display p {
    color: #6b6f92;
}

.contact_info_details .set-display h4 {
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0;
}

.map-contactus iframe {
    width: 100%;
    height: 70rem;
    display: block;
}

.deal-box {
    position: relative;
}

.set-icon {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #fb5e5a;
    color: white;
    font-size: 6rem;
    width: 90px;
    height: 90px;
    text-align: center;
    border-radius: 10px 0 10px 0;
}

.deal-box img {
    height: 260px;
    width: 100%;
    border-radius: 10px;
}

.deal-rooms .tour_price {
    background: #ffcb00;
}

.item .deal-rooms img {
    height: 280px;
}

.getaway {
    padding-right: 7px;
}

.deal-rooms .vacation_Content h4 {
    font-size: 2.2rem;
    margin: 1rem 0 0.4rem;
}

.price-deal {
    color: #6b6f92;
    font-size: 1.7rem;
}

.price-deal .currencysign {
    font-size: 1.9rem;
    color: #2b1d6a;
}

.price-deal .tour_priceVal {
    color: #2b1d6a;
    font-size: 2.3rem;
    margin: 0 0.2rem;
}

.deal_img {
    /* overflow: hidden; */
    /* height: 500px; */
    margin-bottom: 10rem;
}

.deal_img img {
    width: 600px;
    border-radius: 1rem;
    height: 500px;
}

.deal-content h3 {
    margin-top: 2rem;
    font-size: 3.5rem;
    font-weight: 600;
}

.eachdeal h4 {
    font-size: 2.1rem;
    font-weight: 500;
}

.eachdeal {
    padding: 3rem 0 3rem;
    border-bottom: 1px solid #d8d8d8;
}

.eachdeal a {
    text-decoration: none;
}

.eachdeal a:hover {
    color: #032e6c !important;
    text-decoration: underline;
}

.messageStyle {
    background-color: #d4edda;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    font-size: 15px;
}


.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 3px;
    color: #2b1d6a;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0;
    line-height: 3rem;

}

.check-list li i {
    color: #fe5f5b;
    margin-right: 1rem;
}

.abt-cta .themebtn {
    width: 30%;
}

.abt-cta {
    display: flex;
    margin-top: 3rem;
    justify-content: space-between;
    align-items: flex-end;
}

.box-exp img {
    width: 60px;
}

.box-exp {
    border: 3px solid #fe5f5b;
    padding: 1rem;
    display: flex;
    direction: ltr;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    background: #fff6d6;
}

.abt-image img {
    width: 100%;
    height: 400px;
    border-radius: 0.4rem 6rem 6rem .4rem;
    border: 3px solid #fe5f5b;
    padding: 1rem;
    object-fit: cover;
}

.abtus {
    padding: 0rem 5rem 0;
}


.tesimonial .card-header {
    font-weight: 600;
    position: relative;
    background: #f0f0f0;
    border: 0px !important;
    text-align: center;
    padding: 15px;
    font-size: 22px;
    transition: all 0.2s ease-in-out;
    color: #2b1d6a;
}

/* Arrow below */
.tesimonial .card-header::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 10px solid #f0f0f0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.tesimonial .card-text {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 2rem;
    line-height: 3.2rem;
    color: #6b6f92;
    transition: all 0.3s ease-in-out;
}

.tesimonial .card-body {
    display: flex;
    text-align: center;
    padding: 4rem 6rem 7rem;
    flex-direction: column;
    align-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    justify-content: center;
}

.tesimonial a {
    font-size: 17px;
    color: #fe5f5b;
    text-decoration: none;
    /* Remove default underline */

    position: relative;
    padding-bottom: 2px;
    /* Space below text */
    margin-left: 6px;
    /* Optional spacing from message */
    display: inline-block;
}

/* Custom underline effect */
.tesimonial a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fe5f5b;
    transition: transform 0.3s ease;
    transform: scaleX(1);
    transform-origin: left;
}

.tesimonial a::after {
    transform: scaleX(0);
}

.tesimonial a:hover::after {
    transform: scaleX(1);
}

.custom-modal {
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.custom-close {
    filter: brightness(0.5);
}

.feedbackModal .modal-title {
    font-size: 1.7rem;
}

.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li::before {
    content: "✔";
    color: #198754;
    margin-right: 0.5rem;
}

.highlight-box {
    background: #e9f7ef;
    padding: 1rem;
    border-left: 5px solid #198754;
    border-radius: 8px;
    font-size: 0.95rem;
}

.tesimonial .card {
    border: 1px solid #d8d8d8;
    transition: all 0.3s ease-in-out;
    height: 450px;
}

.tesimonial .card-body img {
    width: 100px !important;
}

.tesimonial .img-testimonial {
    width: 88px !important;
    height: 88px;
    border-radius: 48px;
    position: relative;
    left: 40%;
    transition: all 0.3s ease-in-out;
    bottom: 44px;
    border: 1px solid #d8d8d8;
    padding: 1rem;
    background-color: white;
    z-index: 1;
}

.tesimonial:hover .img-testimonial {
    border: 1px solid #fe5f5b;
}

.tesimonial:hover .card {
    border: 1px solid #fb5e5a;
}

.tesimonial:hover .card-header {
    color: white;
    background-color: #fb5e5a;
}

.tesimonial:hover .card-header::after {
    border-top: 10px solid #fb5e5a;
}

.img-testimonial {
    position: relative;
    display: inline-block;
}

.img-testimonial img {
    display: block;
    transition: opacity 0.3s ease;
    width: 66px !important;
    height: 66px;
}

.img-testimonial .img-hover {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0;
}

.tesimonial:hover .img-hover {
    opacity: 1;
}

.tesimonial:hover .img-default {
    opacity: 0;
}

.faq {
    background: url(../images/banner/faq-bg.jpg);
    background-size: cover;
    background-position: center color;
    height: 100vh;
}

.faq::before {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    /* background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0; */
    background: rgb(2 0 56 / 86%) none repeat scroll 0 0;
}

.faq .container-lg {
    position: relative;
    z-index: 1;
}

.faq .HeadingSect {
    margin-bottom: 3rem;
}

.faq-accordion .accordion-button {
    padding: 2.7rem 4rem;
    background-color: #f8f9fa00;
    border: none;
    font-weight: 600;
    font-size: 16px;
    background-color: #ffffff;
    color: #2b1d6a;
    border-radius: 0px !important;
    box-shadow: none;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-accordion .accordion-button span {
    font-size: 20px;
    font-weight: 600;
    margin-right: 10px;

}

.accordion-item {
    background-color: #7455ff !important;

}

.accordion-button .text-set {
    color: #be0b31;
    font-size: 26px !important;
    margin: 0 10px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #2b1d6a;
    color: #fff;
    border-radius: 0px !important;
}

.faq-accordion .accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: #999;
    position: absolute;
    right: 1.25rem;
    transition: transform 0.2s ease;
    background-image: none;
}

.faq-accordion .accordion-button:not(.collapsed) .text-set {
    color: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '−';
    color: #fff;
    transform: rotate(180deg);
}

.faq-accordion .accordion-item {
    border: 0px;
    border-bottom: 2px solid #00000045;
    transition: border-color 0.3s;
}

.faq-accordion .accordion-item:hover {
    border-color: #dee2e6;
}

.faq-accordion .accordion-body {
    padding: 1.25rem 4rem;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
    line-height: 2rem;
    color: #ffffff;
    letter-spacing: 0px;
}

.faq .abt-image img {
    width: 100%;
    height: 100%;
    border-radius: .4rem 10rem .4rem 10rem;
    border: 3px solid #fe5f5b;
    padding: 1rem;
}

.roomamen.custom-service {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    margin: 0;
    padding: 0;
    gap: 4rem;
}

.roomamen.custom-service p {
    line-height: 2.5rem;
    margin-top: 0.8rem;
}

.custom-services .HeadingSect h2 {
    font-size: 4.6rem;
}

.custom-services .HeadingSect {
    text-align: left;
    margin-bottom: 3rem;
    width: auto;
}

.offers {
    padding-bottom: 10rem;
}

.set-head {
    display: flex;
    align-content: center;
    gap: 9px;
    align-items: flex-start;
}

.set-head img {
    width: 40px;
}

.service-set .icon {
    /*background: #fe5f5b;
    height: 55px;
    width: 55px;
    padding: 17px;
    border-radius: 3rem;*/
    align-items: center;
    display: flex
}

.service-set .icon i {
    font-size: 20px;
    color: #fe5f5b;
}

.cst-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.service-set h5 {
    font-size: 2rem;
    margin: 0px;
}


.service-set {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.img-card {
    position: absolute;
    top: 7rem;
    right: -31px;
    background: #2b1d6a;
    width: 360px;
    padding: 2rem;
    border-radius: 5px;
}

.img-card h3,
.img-card p {
    color: white;
}

.img-card.img-2-card {
    left: -4rem;
}

.service-img img {
    height: 100%;
    min-height: 650px;
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.NewsSection .sidebar {
    height: auto;
}

/* .parallax-img {
    background-image: url('../images/services/executive.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
    width: 100%;
}

.parallax-img2 {
    background-image: url('../images/services/facility.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
    width: 100%;
    border-radius: 10px;
} */




.parallax-img {
    overflow: hidden;
    position: relative;
    height: 500px;
}

.parallax-img img {
    width: 100%;
    height: auto;
    transform: translateY(0);
    transition: transform 0.1s linear;
    will-change: transform;
}

.img-news img {
    width: 100%;
    object-fit: cover;
    height: 500px;
}

.NewsSection {
    display: grid;
    grid-template-columns: auto 27%;
    gap: 8%;
}

.newscontent {
    background-color: white;
    padding: 4rem 4rem;
    position: relative;
    top: -6rem;
    width: 88%;
    left: 5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.detail-news {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2b1d6a;
}

.detail-news i {
    font-size: 2rem;
    color: #fe5f5b;
}

.detail-news span {
    font-size: 1.7rem;
}

.post-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 10px;
}

.newscontent h4 {
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 7px;
}

.postimg img {
    max-width: 100%;
    height: 100%;
    width: 100%;
}

.blog-news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.item .team-member img {
    height: 150px;
    width: 150px;
    position: relative;
    z-index: 11;
    overflow: hidden;
    text-align: center;
    object-fit: cover;
    border-radius: 59rem;
    object-position: top;
    border: 5px solid #ffffff;
}

.team-member {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    border: 5px solid #e5e5e5;
    padding: 4rem;
    gap: 2rem;
}

.team-member:hover {
    border: 5px solid #fe5f5b;

}

.team-member:hover img {
    border: 5px solid #fe5f5b;
}

.member-name h4 {
    font-size: 2rem;
}

.member-name h5 {
    font-size: 1.55rem;

}

.help-faq .faq-accordion .accordion-button {
    background-color: #e3e4ff;
    display: flex;
    align-items: center;
    border-radius: 0px !important;
}

.help-faq .HeadingSect {
    margin-bottom: 2rem;
    width: auto;
    text-align: left;
}

.help-faq .faq-accordion .accordion-item:hover {
    border-color: #2b1d6a;
}

.help-faq .faq-accordion .accordion-button:not(.collapsed) {
    color: #000000;
}

.help-faq .faq-accordion .accordion-button:not(.collapsed)::after {
    color: #2b1d6a;
    right: 3.25rem;
    top: 4.5rem;
}

.help-faq .faq-accordion .accordion-button::after {
    right: 3.25rem;
    top: 2.2rem;
    font-size: 2.5rem;
}

.help-faq .faq-accordion .accordion-body {
    background: #2b1d6a;
}

.bg-image {
    background: url(../images/banner/getstarted.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    color: white;
}

.bg-image::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000087;
    z-index: 0;
}

.container-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    gap: 17rem;
    align-items: center;
}

.left-text h1 {
    font-size: 4.7rem;
    color: white;
}

.left-text p {
    color: white;
}

.form-container {
    background: rgb(255 255 255);
    padding: 4rem;
    border-radius: 5px;
    color: #000;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.9rem;
}

.form-container .form-label {
    font-size: 17px;
    color: #6b6f92;
}

.form-control {
    border-radius: 0px;
    height: 50px;
    font-size: 1.4rem;
}


.bookingModal h5.modal-title {
    font-size: 2.1rem;
}


.modal-body .form-label {
    font-size: 17px;
    color: #23232a;
}

.bookingModal .modal-body {
    padding: 0.6rem 3rem 2rem;
}

.bookingModal .modal-header {
    padding: 1rem 3rem;
}

.modal-content {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    background: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0;
}

.modal-title {
    font-size: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: none;
    padding: 0 1.5rem 1.5rem;
}

/* Custom Input Styling */
.modal-body .form-control {
    border-radius: 0px;
    height: 50px;
    transition: border-color 0.3s ease;
}


.modal-body .form-control:focus {
    border-color: #2b1d6a;
    box-shadow: none;
}

.bookingpage {
    display: grid;
    grid-template-columns: 30% auto;
    gap: 3%;
}

.booking-card {
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 0;
}

.img-hotel {
    margin-bottom: 2.4rem;
}

.hotel-header {
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.hotel-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.5rem;
    color: #777;
    margin-top: 4px;
}

.location {
    margin-top: 8px;
    font-size: 1.5rem;
}

.location strong {
    color: #fe5f5b;
}

.ratings {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.badge {
    background: #fe5f5b;
    color: white;
    font-size: 1.3rem;
    padding: 6px 10px;
    border-radius: 6px;
}

.review {
    font-size: 1.4rem;
    color: #555;
}

.amenities {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenities span {
    color: white;
    background: #8184ff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 1.3rem;
}

.booking-info {
    /* margin-top: 30px;
    border-bottom: 1px solid #d4d4d4;
    padding-bottom: 25px; */
}

.booking-info h4 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.details {
    font-size: 1.5rem;
    line-height: 1.6;
}

.set-details {
    display: flex;
    flex-direction: row;
    gap: 22px;
    margin-bottom: 8px;
}

.detail-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.detail-box h6 {
    font-size: 1.4rem;
    color: #000000;
}

.detail-box #time-detail {
    font-weight: 300;
    color: #6b6f92;
}

.detail-box #ldate-detai {
    color: #000;
    font-weight: 600;
    font-size: 1.4rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 500;
}

.price-row strong {
    font-weight: 600;
}

.total {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 22px;
    color: black;
    background: #ebf3ff;
    border-radius: 0;
    padding: 12px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.info-note {
    margin-top: 6px;
    font-size: 1.2rem;
    color: #666;
}

.img-hotel img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.set-bookinginfo {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}



.listing-field input.form-control {
    height: 58px;



}

.listing-field .form-control {

    padding-left: 10px;
    padding-right: 10px;
    min-height: 58px;
    background: #faf5ef;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 30px;
    font-size: 1.5rem;
    line-height: 58px;
    font-weight: 500;

}

.listing-field .form-control:focus {
    box-shadow: none;
    background: #faf5ef;

}

.listing-field {
    margin-bottom: 3rem;
}

.listing-field label {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #545454;
}

.listing-field .HeadingSect {
    /* text-align: left; */
}

.listing-field input::placeholder,
.listing-field textarea::placeholder {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #545454 !important;
}

@media screen and (max-width: 600px) {
    .booking-card {
        padding: 20px;
    }

    .price-row {
        flex-direction: column;
        gap: 4px;
    }
}


.user-info {
    padding: 4rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    height: fit-content;
    background: #fff;
    border-radius: 0;
}

.user-info h3 {
    margin-bottom: 5px;
    font-size: 2.5rem;
}

.user-info .subtitle {

    margin-bottom: 20px;
}

.user-info span {
    color: #e53935;
    font-weight: bold;
}

.user-info .form-group {
    margin-bottom: 20px;
}

.user-info .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 16px;
}

.user-info .form-group input,
.user-info .form-group select {
    height: 50px;
}

.user-info .form-group input,
.user-info .form-group select,
.user-info .form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 1.5rem;
    border: 1px solid #ccc;

    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.bg-image .form-control:focus,
.user-info .form-group input:focus,
.user-info .form-group select:focus,
.user-info .form-group textarea:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: none;
}

.user-info .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.user-info .form-row .form-group {
    flex: 1;
}

.radio-group {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.radio-group input {
    height: auto !important;
    width: auto !important;
}

.radio-group label {
    display: flex !important;
    font-size: 14px !important;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
}

.user-info .sign-in-hint {
    background: #f0f4ff;
    padding: 12px 16px;
    border-left: 4px solid #0d6efd;
    border-radius: 8px;
    margin: 20px 0;
}

a {
    text-decoration: none !important;
}

.user-info .sign-in-hint strong {
    color: #0d6efd;
    font-size: 1.5rem;
}

.form-group h4 {
    color: #000;
    font-size: 1.7rem;
}

h3.requests {
    color: #000;
    font-size: 2.5rem;
    margin-top: 35px;
    margin-bottom: 10px;
    font-size: 2rem;
}

.user-info .submit-btn {
    width: 20%;
    padding: 12px;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    float: right;
    cursor: pointer;
    height: 5rem;
    font-size: 1.5rem;
    transition: background 0.3s ease;
}

.user-info .submit-btn:hover {
    background: linear-gradient(135deg, #0b5ed7, #3a85e2);
}

@media (max-width: 600px) {
    .user-info .form-row {
        flex-direction: column;
    }
}

.thank-you-container {
    min-height: 83vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    margin-top: 11rem;
    background-color: #ffffffff;
}

.thank-you-icon {

    margin-bottom: 20px;
}

.thank-you-icon img {
    width: 110px;
    height: 110px;
}

.thank-you-container h1 {
    font-weight: 700;
    font-size: 3.5rem;
}

.tourism .HeadingSect {
    width: auto;
    text-align: left;
    margin-right: 6rem;
    margin-bottom: 0;
}

.tourism .HeadingSect h2 {
    font-size: 3.6rem;
}

.feature-box {
    padding: 3rem 5rem;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box .icon img {
    width: 60px;
    margin-bottom: 10px;
}

.feature-box h5 {
    font-size: 2.3rem;
    font-weight: 600;
    color: #fe5f5b;
    margin: 15px 0;
}


.feature-box .icon img {
    max-width: 5rem;
    margin: auto;
    position: relative;
}

/* 
.feature-box .icon:before {
    content: '';
    position: absolute;
    background: rgba(18, 34, 35, 0.08);
    width: 5rem;
    height: 5rem;
    top: 6rem;
    left: 7rem;
    transition: all 0.2s ease-in-out 0s;
    opacity: 0;
    filter: alpha(opacity=0);
    border-radius: 50%;
    z-index: 0;
}

.feature-box:hover .icon:before {
    top: 33px;
    left: 38px;
    opacity: 1;
    filter: alpha(opacity=100);
} */

/* .feature-box.style-2 .icon:before {
    background: rgb(255 255 255 / 8%);
} */

.style-2 {
    background-color: #2b1d6a;
}

.style-2 p {
    color: #d0d0d0;
}

.style-2 h5 {
    color: #ffffff;
}

.section-glass-bg {
    background: url('../images/banner/news.jpg') no-repeat center center / cover;
    position: relative;
    z-index: 0;
    height: 80vh;
}

.section-glass-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
    pointer-events: none;
}

.section-glass-bg .HeadingSect {
    text-align: left;
    z-index: 1;
    position: relative;
    width: auto;
    margin-left: initial;
    margin-right: initial;
    margin-bottom: 0;
}

.section-glass-bg .HeadingSect h2 {
    color: white;
    font-size: 5.5rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.section-glass-bg .HeadingSect .themebtn {
    width: 210px;
}

.top-banner {
    position: absolute;
    top: -22rem;
    right: 0rem;
    background-color: #2b1d6a;
    color: white;
    padding: 5rem 6rem;
    width: 100%;
    height: 42rem;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.top-banner h2 {
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 2rem;
    font-weight: 700;
}

.top-banner li {
    font-size: 1.9rem;
    color: white;
}

.top-banner .themebtn {
    padding: 0 2.4rem;
    height: 4rem;
    width: 13rem;
    font-size: 1.4rem;
    margin: 3rem 0 0;
}

.top-banner li img {
    width: 28px;
    margin-right: 10px;
}



.footerbottomright ul {
    margin: 0px;
}

/* Card wrapper */
.property-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 1rem;
    height: 340px;
}

.card-img-wrapper img {
    max-height: 340px;
    height: 100%;
    transform: scale(1.17);
    transition: 800ms;
    object-fit: cover;
    width: 100%;
    border-radius: 1rem;
    transform: scale(1.17);
    transition: 800ms;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #170d448c;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.card-img-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: #fff;
    transition: transform 0.3s ease;
}


.property-card .card-body h5 {
    font-size: 2.6rem;
}

.property-card .card-body {
    padding: 2rem;
    background: white;
    position: relative;
    top: -5rem;
    width: 80%;
    border-radius: 0px 22px 0 0;
}

.text-danger {
    color: #fe5f5b !important;
}

.property-card .card-body p {
    margin-bottom: 0;
}

.btn-search {
    position: absolute;
    top: -18px;
    right: 21px;
    background: #fe5f5b;
    padding: 1rem;
    border-radius: 80%;
}

.exclusive-offer-banner {
    background-color: #fe5f5b;
    overflow: hidden;
    padding: 5rem;
    border-radius: 13px;
}


.blob-image-wrapper {
    max-width: 100%;
    margin: 0 auto;
    height: 204px;
    right: -12rem;
    top: -21rem;
}

.blob-image {
    width: 100%;
    max-width: 100%;
    clip-path: path("M439.5,306.5Q389,363,337.5,408Q286,453,211.5,449.5Q137,446,87.5,389.5Q38,333,59.5,261Q81,189,132.5,139.5Q184,90,255.5,76.5Q327,63,386.5,108.5Q446,154,463.5,227Q481,300,439.5,306.5Z");
    -webkit-clip-path: path("M439.5,306.5Q389,363,337.5,408Q286,453,211.5,449.5Q137,446,87.5,389.5Q38,333,59.5,261Q81,189,132.5,139.5Q184,90,255.5,76.5Q327,63,386.5,108.5Q446,154,463.5,227Q481,300,439.5,306.5Z");
    transition: transform 0.4s ease;
    object-fit: cover;
}

.exclusive-offer-banner h2 {
    font-size: 5.3rem;
    color: white;
    font-weight: 400;
}

.exclusive-offer-banner .themebtn {
    width: 140px;
    margin-top: 3rem;
    background: #2b1d6a;
}

.alert.alert-warning {
    font-size: 1.4rem;
}

.contact_two {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.blog-deet .sildercontent h1.title {
    font-size: 3rem;
}

.post_thumb {
    width: 100%;
}

.post_thumb.thumb-dt img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.destination-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(542px, 0fr)); */
    gap: 2rem;
    grid-template-columns: auto auto;
    justify-content: center;
}

.destination-card {
    /* background: #f9f9f9;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease; */
}

.destination-card img {
    width: 100%;
    height: 382px;
    border-radius: 8px;
    object-fit: cover;
}

.destination-card:hover {
    /* transform: scale(1.02); */
}


/* Make the third card span full width of grid */
.destination-card.full-width {
    grid-column: 1 / -1;
}


.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img {
    display: block;

}

.box-servicedapart {
    height: 100%;

}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(180deg, #000000bd 9%, #00000000 48%);
}

.overlay-text {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    color: #fff;
    font-size: 2.3rem;
    margin: 0;
    font-weight: 700;

}


.property-type-carousel .item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.property-type-carousel .item img {
    width: 100%;
    height: 232px;
    object-fit: cover;
    border-radius: 10px;
}

.property-type-carousel .item h5 {
    padding: 1.4rem 0 0;
    margin: 0;
    font-size: 1.7rem;
    font-weight: 600;
    text-align: left;
}

.service-img {
    position: relative;

}

.property-type-carousel .owl-carousel .owl-nav button.owl-prev span,
.property-type-carousel .owl-carousel .owl-nav button.owl-next span {
    width: 5rem;
    height: 5rem;
    border-radius: 5rem;
    border: .1rem solid #fe5f5b;
    color: #fe5f5b;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.5s ease-in-out 0s;
}

.property-type-carousel .owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.property-type-carousel .owl-carousel .owl-nav button.owl-prev,
.property-type-carousel .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: -70px;
    bottom: 0;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
}


.property-type-carousel:hover .owl-nav button.owl-next,
.property-type-carousel:hover .owl-nav button.owl-prev {
    opacity: 1;
}



.property-type-carousel .owl-carousel .owl-nav button.owl-prev span:hover,
.property-type-carousel .owl-carousel .owl-nav button.owl-next span:hover {
    color: #fff;
    background: #fe5f5b;
}

.property-type-carousel .owl-dots {
    margin: 3rem 0 0;
    text-align: center;
}

.property-type-carousel .owl-dots .owl-dot span {
    width: 1rem;
    height: 1rem;
    margin: 0 .8rem;
    border-radius: .5rem;
    background: #fe5f5b;
    border: .1rem solid #fe5f5b;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.property-type-carousel .owl-dots .owl-dot.active span {
    width: 3.5rem;
}

.property-types {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    text-align: center;
}


/* Grid Items */
.grid-item {
    background-color: #f7faff;
    border-radius: 8px;
}

/* Full width for .rooms */
.rooms {
    grid-column: span 3;
}



.box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
}

.box-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

/* Image styling */
.box img {
    max-width: 100%;
    height: 100%;
    object-position: left;
    border-radius: 4px;
    object-fit: cover;
}

.box-servicedapart .image-wrapper {
    height: 100%;
}

.box-servicedapart .box-title {
    position: absolute;
    bottom: 17px;
    left: 17px;
    margin: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rooms {
    grid-column: span 1;
    background-color: #f7faff;
}

.rooms-inner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 22px;
}

.villa-inner-grid {
    display: grid;
    grid-template-rows: repeat(1, 1fr);
    gap: 22px;
}

.box-content i {
    font-size: 4rem;
    color: #2b1d6a;
    margin-bottom: 2rem;
}

.custbox {
    background: #eaeaea;
    padding: 3rem;
    border-radius: 6px;
    text-align: center;
}

.direction.custbox {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    padding: 5rem 2rem;
}

.direction.custbox .box-title {
    font-size: 1.8rem;
    margin: 0;
    text-align: left;
}

.custom-help {
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #000;
    padding: 40px;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
}



.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(222px, 1fr));
    gap: 30px;
}

.custom-help {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    border: 1px solid rgba(234, 180, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.custom-help:hover {
    transform: scale(1.035);
    box-shadow: 0 14px 35px rgba(234, 180, 97, 0.35);
}

.custom-help i {
    font-size: 28px;
    color: #fff;
    background: #fb5e5a;
    padding: 20px;
    border-radius: 50%;
    width: 65px;
    margin-bottom: 2rem;
    height: 65px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(234, 180, 97, 0.4);
    transition: transform 0.3s ease;
}

/*.cst-box:hover .icon,
.cst-box:hover i,
.custom-help:hover i {
    transform: rotate(8deg) scale(1.1);
}*/

.custom-help h4 {
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: 600;
}

.set-boxarea {
    display: flex;
    flex-direction: row;
    padding: 3rem 2rem;
    height: 180px;
    gap: 3rem;
    align-items: center;
    background: #eaeaea;
}

.set-boxarea img {
    width: 90px;
    height: 90px;
}

.set-boxarea p {
    line-height: 2rem;
}

.blogposts p,
.post_content ul,
.post_content p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 3rem;
    color: #000000;
}

.tour_bookbox .text-danger {
    text-align: end;
}

.datepicker-dropdown {
    z-index: 9999 !important;
    /* make sure it's above sidebar */
    position: absolute !important;
    /* don't let it turn fixed */
}

/* Smaller screens */
.footerInnerImg img {
    max-width: 100%;
    height: 85px;
    object-fit: cover;
}

@media (min-width: 1399px) and (max-width: 1563px) {
    .posts_list .postcontent h4 {
        font-size: 1.4rem;
    }

    .blogthumb {
        height: 43.7rem;
    }

}

@media (min-width: 1200px) and (max-width: 1399px) {
    .amenities span {
        font-size: 1.1rem;
    }

    .amenities {
        gap: 4px;
    }

    .top-banner {
        padding: 5rem 4rem;
        top: -17rem;
    }

    .price-row {
        font-size: 1rem;
    }

    .sidebarblockInner:not(:nth-child(2n)) {
        margin-bottom: 3rem;
    }

    .section_padd {
        padding: 5rem 0;
    }

    .tesimonial .card-body {
        padding: 4rem 3rem 7rem;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .book_now .book_now_form {
        grid-template-columns: 20.8rem 20.8rem 15rem 15rem 15rem;
        gap: 1rem;
    }

    .footerInnerImg img {
        height: 75px;
    }

    .section_padd.footer {
        padding: 5rem 0;
    }

    .footer_boottom {
        padding: 1rem 0;
    }

    .header_menu .navbar-nav .nav-item {
        margin: 0 0.4rem;
    }

    .NewsSection {
        gap: 3%;
    }

    .custom-services .HeadingSect {
        width: 43.6rem;
    }

    .roomamen.custom-service {
        gap: 2rem;
    }

    .parallax-bg img,
    .service-img img {
        min-height: 350px;
        height: 350px;
    }

    .details {
        font-size: 1.3rem;
    }

    .booking-card {
        padding: 3rem;
    }

    .amenities {
        gap: 5px;
    }

    .abtus {
        padding: 0;
        width: 44.6rem;
    }

    .abt-cta .themebtn {
        width: 43%;
    }

    .faq .HeadingSect {
        margin-bottom: 1rem;
        width: 46.6rem;
    }

    .waves_box {
        left: 53%;
        top: 39%;
    }

    .about_right_boxContent h3 {
        font-size: 1.7rem;
    }

    .about_right_boxContent p {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .about_right_box {
        padding: 1.4rem;
    }

    .listing {
        gap: 3.5rem;
    }

    .listinglistcontenttop {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }

    .room_detail {
        gap: 2rem;
        row-gap: 5px;
    }

    .listinglistcontent {
        padding: 0;
    }

    .Service {
        grid-template-columns: auto 40%;
    }

    .newscontent {
        top: -5rem;
    }

    .blogcontent {
        padding: 0 0 0 3rem;
    }

    .blogcontent .HeadingSect h2 {
        font-size: 2rem;
    }

    .bloglist {
        align-items: start;
        grid-template-columns: 26rem auto;
    }

    .blogthumb {
        width: 26rem;
        height: 29.7rem;
    }

    .portfolio_img,
    .portfolio_img img {
        height: 280px;
    }

    .top-banner {
        padding: 4rem 4rem;
    }

    .top-banner .themebtn {
        margin: 2rem 0;
    }

    .top-banner h2 {
        font-size: 3.5rem;
        letter-spacing: 1px;
    }

    .tour_img img {
        height: 230px;
    }

    .help-img .img-card {
        top: 20rem;
        left: -1rem;
    }

    .destination-grid {
        grid-template-columns: repeat(auto-fit, minmax(455px, 0fr));
    }

    .direction.custbox {
        padding: 5.8rem 2rem;
    }



    .serviveSuit ul {
        margin: 0;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .ServiceContent h2 {
        margin: 0rem 0;
    }

    .tesimonial .card-body {

        padding: 4rem 2rem 7rem;
    }

    .tour_bookbox .text-danger {
        margin-left: 0px;
    }

    .booknow {
        top: 43%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .book_now .book_now_form {
        grid-template-columns: auto;
    }

    .destination-card img {
        height: 200px;
    }

    .rooms {
        grid-column: span 2;
    }

    .roomamen li {

        width: 10rem;
    }

    .tour_portfolio .filtering {
        margin-bottom: 2rem;
    }

    .centerbtn {
        margin: 2rem 0 0;
    }

    .tour {
        margin-bottom: 2.5rem;
    }

    .section-glass-bg {
        height: auto;
    }

    .HeadingSect {
        margin-bottom: 3rem;
    }

    .section-glass-bg .HeadingSect h2 {
        font-size: 3.5rem;
    }

    .top-banner {
        color: white;
        padding: 4rem 4rem;
        top: -20rem;
        height: 37rem;
    }

    .book_now {
        margin: 0 2rem;
        width: 95%;
    }

    .blogSection {
        grid-template-columns: auto 40%;
        gap: 2%;
    }

    .blogcontent .HeadingSect h2 {
        font-size: 2rem;
    }

    .blogthumb {
        border-radius: 1rem;
        overflow: hidden;
        width: 100%;
        height: 300px;
    }

    .blogthumb img {
        height: 100%;
        width: 100%;
    }

    .posts_list li {
        align-items: flex-start;
        gap: 1.5rem;
        flex-direction: column;
    }

    .divd {
        margin: 3rem 0;
    }

    .bloglist {
        grid-template-columns: auto;
    }

    .blogcontent {
        padding: 1rem 0 0 0rem;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 4rem;
    }

    .about {
        grid-template-columns: repeat(1, 1fr);
    }

    .counter {
        grid-template-columns: repeat(2, 1fr);
    }

    .vacation_locaton {
        align-items: baseline;
    }

    .blog {
        grid-template-columns: repeat(2, 1fr);
    }

    .footerSection {
        gap: 4rem;
        grid-template-columns: auto auto;
    }

    .sildercontent {
        width: 52rem;
    }

    .testimonial_Content p {
        font-size: 14px;
    }

    .testimonial_img a {
        width: 9rem;
        height: 9rem;
    }

    .parallax-bg img,
    .service-img img {
        height: 354px;
        min-height: 354px;
    }

    .roomamen.custom-service {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .custom-services .HeadingSect {
        width: 33.6rem;
    }

    .ps-5 {
        padding-left: 0rem !important;
    }

    .deal-box img {
        height: 200px;
    }

    .set-icon {

        font-size: 5rem;
        width: 75px;
        height: 75px;
    }

    .deal_img img {
        width: 480px;
        height: 280px;
        object-fit: cover;
    }

    .deal_img {
        margin-bottom: 1rem;
    }

    .section_padd {
        padding: 5rem 2rem;
    }

    .faq {
        height: auto;

    }

    .footer_boottom {
        padding: 1rem 0;
    }

    .container-grid {

        gap: 9rem;
        align-items: center;
    }

    .faq .HeadingSect {
        margin: 4rem 0 1rem;
    }

    .tesimonial .card-body {
        padding: 2rem 2rem 6rem;
    }

    .faq-accordion .accordion-button {
        padding: 2rem 2rem;
    }

    .tesimonial .card-text {
        font-size: 1.6rem;
        line-height: 1.7;
    }



    .header_info_text a {
        font-size: 14px;
    }

    .abt-image img {
        height: 300px;
        border-radius: 0.4rem 4rem 4rem .4rem;
    }

    .about_right_boxContent p {

        line-height: 2.6rem;
    }

    .listinglist {
        width: 332px;
    }

    .room_detail {
        flex-wrap: wrap;
    }

    .listing {
        gap: 3.5rem;
    }

    .listinglistcontenttop {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }

    .room_detail {
        gap: 2rem;
        row-gap: 5px;
    }

    .listinglistcontent {
        padding: 0;
    }

    .Service {
        grid-template-columns: auto;
        gap: 2%;
    }

    .blog {
        grid-template-columns: repeat(1, 1fr);
    }

    .blogbox_img img {
        height: 200px;
    }

    .NewsSection {
        grid-template-columns: auto 40%;
        gap: 4%;
    }

    .feature-box {
        padding: 3rem 3rem;
    }

    .sidebarblockInner:not(:nth-child(2n)) {
        margin-bottom: 0rem;
    }

    .latestpost {
        margin-top: 0rem;
    }

    .sidebarblock {
        padding: 4rem 2rem;
    }

    .detail-news span {
        font-size: 1.6rem;
    }

    .newscontent h4 {
        font-size: 2rem;
    }

    .img-news img {
        height: 300px;
    }

    .newscontent {
        padding: 3rem 3rem;
        top: -8rem;
        width: 94%;
        left: 1rem;
    }

    .portfolio_img,
    .portfolio_img img {
        height: 330px;
    }

    .exclusive-offer-banner {
        padding: 3rem;
    }

    .tour_bookbox .text-danger {
        margin-left: 0px;
    }

    .exclusive-offer-banner h2 {
        font-size: 3.3rem;
    }

    .blob-image-wrapper {
        right: -3rem;
        top: -11rem;
    }

    .custom-services .HeadingSect h2 {
        font-size: 3.6rem;
    }

    .img-card {
        top: 23rem;
        right: 39px;
        width: 301px;
        padding: 1rem;
    }

    .img-card.img-2-card {
        left: 1rem;
    }

    .faq-accordion .accordion-body {
        padding: 1.25rem 2rem;
    }

    .help-faq .faq-accordion .accordion-button::after {
        right: 2.25rem;
        top: 1.2rem;
    }

    .help-faq .faq-accordion .accordion-button:not(.collapsed)::after {
        right: 2rem;
        top: 3.5rem;
    }

    .listinglistimgwrapper img {
        height: auto;
    }

    .rooms-inner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-grid {
        grid-template-columns: repeat(auto-fit, minmax(335px, 0fr));
    }

    .grid-container {
        grid-template-columns: auto;
    }

    .tour_booking label {
        width: 100%;
    }



    .roomamen.custom-service li {
        width: auto;

    }

    .sidebarB {
        height: 56rem;
    }

    .roomamen .roomamen_content {
        font-size: 14px;
    }

    .wrapper .slick-next {
        right: 3rem;
    }

    .wrapper .slick-prev {
        left: 1rem;
    }

    .top-banner h2 {
        font-size: 3rem;
    }

    .booknow {

        top: 42%;
    }
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    -repeat: no-repeat !important;
    background-position: center !important;
    background-size: 100%;
    background-color: transparent !important;
    border: none;
}

@media (min-width:320px) and (max-width:992px) {
    .footerInner.ulList ul {
        margin: 2rem 0 0;
    }

    .guest_dropdown .dropdown-menu {

        width: 100%;
    }

    .populartags li a {
        font-size: 14px;
        padding: 10px;
    }

    .Custpagination {
        margin: 4rem 0 0;
    }

    .abtus {
        padding: 4rem 0 0;
    }

    .left-text h1 {
        font-size: 3.7rem;
        color: white;
    }

    .user-info h3 {
        font-size: 1.9rem;
    }

    .container-grid {
        gap: 2rem;
    }

    .user-info {
        padding: 2rem;
        margin-top: 2rem;
    }

    .info-note {
        margin-top: 9px;
        font-size: 1.5rem;
    }

    .bookingpage {
        grid-template-columns: auto;
        gap: initial;
    }

    .navbar {
        position: relative;
    }

    /*.navbar-collapse {
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        background-color: #fff;
        border: 1px solid #ccc;
        display: none;
        z-index: 1000;
    }*/

    .header_menu .navbar-nav .nav-item {
        border-bottom: 1px solid rgb(43, 29, 106, .2);
        margin: 0;
    }

    .navbar-nav.mx-auto {
        margin-right: 0px !important;
        margin-left: 0px !important;
    }

    .header_menu .navbar-nav .nav-item a {
        padding: .8rem 0;
        font-weight: 400;
        color: #2b1d6a;
    }

    .header_menu .navbar-nav .nav-item:last-child {
        border: 0;
    }

    /* Small top-right arrow */
    .navbar-collapse::before {
        content: "";
        position: absolute;
        top: -8px;
        right: 32px;
        border-width: 0 8px 8px 8px;
        border-style: solid;
        border-color: transparent transparent rgba(255, 255, 255, .9) transparent;
        z-index: 1001;
    }

    .navbar-toggler {
        padding: 0;
        border: 0;
        outline: none;
        background-color: #fe5f5b;
        width: 4.4rem;
        height: 4rem;
        position: relative;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-inner {
        width: 2.4rem;
        height: 2rem;
        padding: 1rem;
        position: absolute;
        top: 1rem;
    }

    .navbar-toggler span {
        display: block;
        width: 100%;
        height: 2px;
        background: #ffffff;
        position: absolute;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 10px;
    }

    .navbar-toggler span:first-child {
        top: 0;
    }

    .navbar-toggler span:nth-child(2) {
        top: 9px;
        width: 70%;
    }

    .navbar-toggler span:last-child {
        top: 18px;
    }

    /* Mobile Menu Active State */
    .navbar-toggler[aria-expanded="true"] span:first-child {
        transform: rotate(45deg);
        top: 9px;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:last-child {
        transform: rotate(-45deg);
        top: 9px;
    }

    .navbar-collapse {
        position: fixed;
        top: 70px;
        right: -100%;
        backdrop-filter: saturate(180%) blur(10px);
        padding: 1rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        background: rgba(255, 255, 255, .9);
        width: 200px;
        border: 1px solid rgb(43, 29, 106, .3);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    .navbar-collapse.show {
        right: 0;
    }





    .searchIcon,
    .navbar .themebtn {
        display: none;
    }

    .listinglistcontenttop h4 {
        width: auto;
    }

    .help-img {
        margin-bottom: 3rem;
    }

}

@media (min-width:320px) and (max-width:767px) {
    .thank-you-icon img {
        width: 70px;
        height: 70px;
    }

    .contact_section {}

    .dayContainer .flatpickr-day {
        min-width: 0rem;
    }

    .dayContainer {
        gap: 0rem;
    }

    .deal-content h3 {
        font-size: 2.5rem;
    }

    .thank-you-container .themebtn {
        padding: 0 1.9rem;
        font-size: 14px;
        height: 4.6rem;
    }

    .footer_boottom {
        padding: 3rem 0;
        text-align: center;
    }

    .footerbottomright {
        margin: auto;
    }

    .section-glass-bg .HeadingSect h2 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .tour_img img {
        height: 345px;
    }

    .container-lg {
        padding: 0;
    }

    .portfolio_img,
    .portfolio_img img {
        height: 350px;
    }

    .portfolio_img,
    .tour,
    .tour_img {
        border-radius: .4rem;
    }

    .vacation_carousel .owl-dots {
        margin: 0;
    }

    .blog .blogbox_content {
        order: 2;
        padding: 1.5rem 2rem 2rem;
    }

    .blogbox_content p {
        padding-bottom: .5rem;
    }

    .blog .blogbox:nth-child(2n) .blogbox_content {
        order: initial;
    }

    .silderB .owl-dots {
        display: none;
    }

    .portfolio_box {
        align-items: center;
        display: flex;
        justify-content: center;
    }

    .header_top {
        padding: 4px 0;
    }

    .header_menu .navbar-brand img {
        width: 14rem;
    }

    .header_menu {
        height: auto;
        padding: 1rem 2rem;
    }

    .deal_img {
        margin-bottom: 1rem;
    }

    .roomamen.custom-service p {
        margin-top: 0;
    }

    .HeadingSect h2 {
        font-size: 2.8rem;
    }

    .book_now .book_now_form {
        grid-template-columns: auto auto;
    }

    /*.popup-gallery .col-lg-4{
        padding: 0;
    }*/

    .abt-image img {
        height: 280px;
    }

    .HeadingSect {
        width: auto;
        margin-bottom: 4rem;
    }

    .counterbox .counting {
        margin: 0;
    }

    .thank-you-container h1 {
        font-size: 2.8rem;
    }

    .sildercontent {
        width: auto;
        height: 100%;
        padding: 7rem 2rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .left-text h1 {
        font-size: 3.6rem;
        margin: 5rem 0 1rem;
    }

    .container-grid {
        grid-template-columns: auto;
        height: auto;
        gap: 10rem;
        padding: 10rem 2rem;
    }

    .book_now {
        margin: 0;
        padding: 2rem;
        width: 100%;
        border-radius: 0;
    }

    .book_now .book_now_form .form-control {
        font-size: 1.4rem;
    }

    .book_now .book_now_form .themebtn {
        grid-column: 1 / span 2;
    }

    .shape_one,
    .shape_two {
        display: none;
    }

    .bg-image {
        height: auto;
    }

    .services,
    .about,
    .about_right,
    .counter,
    .blog {

        grid-template-columns: auto;
    }

    .form-container {
        padding: 3rem;
    }

    .header_info {
        align-items: flex-start;
        flex-direction: column;
    }

    .section_padd.contact {
        padding-bottom: 0;
    }

    .contact_info_details h4 {
        font-size: 1.8rem;
        margin-bottom: .8rem;
    }

    .contact_info_details:last-child {
        margin: 0;
        padding: 0;
    }

    .contact_sectionInner {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .contact_section {
        padding: 3.5rem;
        border-radius: 0;
        margin-left: -2rem;
        margin-right: -2rem;
    }

    .contact_form .form-group {
        margin-bottom: 2rem;
    }

    .contact_form h3 {
        margin-bottom: 3rem;
    }

    .contact_form .btn[type="submit"] {
        padding: 1.2rem 2.3rem;
        font-size: 1.4rem;
    }

    .contact_info {
        margin: 4rem 0 0;
    }

    .sildercontent h1.title {
        font-size: 4rem;
    }

    .sildercontent p.description {
        font-size: 1.4rem;
    }

    .header_top {
        display: none;
    }

    .header_info_top {
        height: 7.6rem;
        align-items: flex-end;
    }

    .banner {
        height: auto;
    }

    .banner .carousel-control-next,
    .banner .carousel-control-prev,
    .testimonial_Silder .carousel-control-next,
    .testimonial_Silder .carousel-control-prev {
        display: none;
    }

    .testimonial {
        align-items: center;
        justify-content: center;
    }

    .testimonial_Img {
        display: none;
    }

    .testimonial_Silder {
        width: 100%;
    }

    .footerSection {
        grid-template-columns: auto;
        gap: 3rem;
    }

    .shape_two {
        z-index: -1;
    }

    .centerbtn {
        margin: 2rem 0 0;
    }

    .tour_portfolio .filtering {
        flex-wrap: wrap;
        margin-bottom: 3rem;
        gap: 0;
    }

    .footer_boottomInner {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .roomamen.custom-service {
        grid-template-columns: auto;
        grid-template-rows: auto;
        gap: 3rem;
    }

    .parallax-bg img,
    .service-img img {
        height: 350px;
        min-height: 350px;
    }

    .col-md-6.pe-5,
    .col-lg-6.pe-5 {
        padding-right: 1rem !important;
    }

    .col-md-6.ps-5,
    .col-lg-6.ps-5 {
        padding-left: 1rem !important;
    }

    .custom-services {
        margin: 8rem 0 0;
    }

    .service-set h5 {
        font-size: 1.8rem;
        margin-bottom: .5rem;
    }

    .servcemM {
        margin-top: 6rem;
    }

    .servceCont {
        order: 2;
    }

    .tesimonial .card-body {
        padding: 2rem 2rem 5rem;
    }

    .offers {
        padding-bottom: 0rem;
    }

    .section_padd {
        padding: 6rem 2rem;
    }

    .listing {
        grid-template-columns: auto;
        gap: 3.5rem;
    }

    .room_detail {
        column-gap: 3rem;
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .listinglistcontent {
        padding: 2rem 0 0;
    }

    .listinglistcontenttop h4 {
        font-size: 2rem;
    }

    .listinglistcontenttop .tour_price .tour_priceVal {
        font-size: 1.7rem;
    }

    .listinglistcontenttop .tour_price {
        font-size: 1.3rem;
        margin: 0;
    }

    .price-label {
        display: flex;
        align-items: center;
    }

    .blogcontent {
        padding: 3rem 0;
    }

    .bloglist {
        align-items: center;
        grid-template-columns: auto;
    }

    .blogSection {
        grid-template-columns: auto;
        gap: 1%;
    }

    .blogthumb {
        width: auto;
    }

    .divd {
        margin: 3rem 0;
    }

    .sidebar {
        height: 52rem;
    }

    .abtus {
        padding: 2rem 0rem 0;
    }

    .HeadingSect.abtus {
        width: auto;
    }

    .abt-cta .themebtn {
        width: 50%;
    }

    .faq {
        height: auto;
    }

    .faq .HeadingSect {
        margin: 4rem 0 2rem;
    }

    .footerInnerImg {
        margin: 2rem 0 0;
    }

    .Service {
        grid-template-columns: auto;
        gap: 2%;
    }

    .ServiceContent h2 {
        margin: 0rem 0 1rem;
    }

    .serviveSuit ul {
        grid-template-columns: auto;
        gap: 1rem;
    }

    .wrapper .slick-slide img {
        height: 255px;
    }

    .wrapper .slick-next {
        right: 2rem;
    }

    .wrapper .slick-prev {
        left: 2rem;
    }

    .wrapper .slick-arrow {
        width: 5rem;
        height: 5rem;
        top: 40%;
    }

    .wrapper .slick-dots {
        margin-top: 3rem;
    }

    .NewsSection {
        grid-template-columns: auto;
        gap: 1%;
    }

    .newscontent {
        top: -8rem;
        width: 91%;
        left: 2rem;
    }

    .img-news img {
        height: 385px;
        object-fit: cover;
    }

    .section-glass-bg {
        height: 100vh;
    }

    .top-banner {
        top: 0;
        right: -14px;
        padding: 3rem 3rem;
        width: 100%;
        height: auto;
        clip-path: none;
    }

    .blob-image-wrapper {
        right: -4rem;
        top: -13rem;
    }

    .exclusive-offer-banner h2 {
        font-size: 3.3rem;
    }

    .exclusive-offer-banner {
        padding: 3rem;
    }

    .img-card {
        top: 22rem;
        right: 18px;
        width: 277px;
    }

    .custom-services .HeadingSect h2 {
        font-size: 2.8rem;
    }

    .img-card.img-2-card {
        left: 2rem;
        top: 20rem;
    }

    .help-faq .faq-accordion .accordion-button::after {
        right: 2.25rem;
    }

    .help-faq .faq-accordion .accordion-button:not(.collapsed)::after {
        right: 1.25rem;
    }

    .help-grid {
        grid-template-columns: auto;
    }

    .grid-container {
        display: flex;
        flex-direction: column;
    }

    .rooms-inner-grid {
        grid-template-columns: auto;
        gap: 22px;
    }

    .destination-grid {
        grid-template-columns: auto;
    }

    .listinglistimgwrapper img {
        height: 230px;
    }

    .listinglistcontent .room_detail {
        margin: 1rem 0;
    }

    .tour_booking label {
        width: 100%;
    }

    .roomamen li {
        width: 13rem;
        margin-bottom: 1rem;
    }

    .flatpickr-calendar,
    .flatpickr-rContainer,
    .flatpickr-days,
    .dayContainer {
        width: 100%;
    }

    .wrapper .slick-dots li {
        margin: 0 4px;
        padding: 4px;
        width: 21px;
        height: 20px;
    }

    .thank-you-icon {
        margin-bottom: 9px;
    }

    .testimonial_Slide {
        padding: 0 3rem;
    }

    .roomamen {
        gap: 0rem;
        flex-wrap: wrap;
    }

    .roomamen.custom-service li {
        width: auto;
    }

    .tour_price {
        margin-bottom: 0rem;
    }

    .ServiceContent {
        display: inherit;
    }



    .header_info_text a {
        font-size: 13px;
    }

    .top-banner h2 {
        font-size: 3rem;
    }

    .tour_total .price_tag {
        width: 50%;
    }

    .tour_bookbox .text-danger {
        margin-left: 0px;
    }

    .guest_dropdown .dropdown-menu .controls {
        gap: 5px;
    }

    .guest_counter p {
        font-size: 13px;
    }

    .guest_dropdown .dropdown-menu {
        padding: 1.5rem 1rem;
    }

    .guest_dropdown .dropdown-menu .controls button {
        width: 23px;
        height: 23px;
        font-size: 13px;
    }

    .booknow {
        top: 43%;
    }

    .silderImg {
        height: 100vh;
    }

    .breadscrumb {
        padding: 0;
    }

    .footerInnerImg img {
        height: 100px;
    }

}

@media only screen and (min-width: 1800px) {}

@media only screen and (min-width: 2400px) {}



/*
.listing-card .ft-image-wrapper {
    display: block;
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 0px;
    width: 300px;
    height: 260px;
}

.listing-card {
    flex-direction: row;
    box-shadow: none;
    border: 1px solid #0000002d;
    margin-bottom: 4rem;
}

.listing-pg {
    padding: 10rem 0;
}

.listing-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 4rem !important;

}

.listing-search .card-body {
    padding: 6rem 5rem !important;
    height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.listing-search .themebtn {
    width: 100%;
}

.listing-search {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    border: 0px;
}

.sticky-wrapper {
    position: sticky;
    top: 12.6rem;
}

.custom-select .choices__inner {
    background-color: white !important;
    border: 0 !important;
    border-bottom: 1px solid grey !important;
    border-radius: 0 !important;
    font-size: 15px;
    padding: 6px 0 10px 0 !important;
    font-weight: 600;
    color: #2b1d6a;
}

.custom-select .choices[data-type*="select-one"] .choices__inner {
    padding-right: 24px;
}

.custom-select .choices__list--dropdown {
    border-radius: 0;
    font-size: 15px;
}

.custom-select .choices__placeholder {
    color: #aaa;
}

.custom-select .choices[data-type*="select-one"]::after {
    border-color: #2b1d6a transparent transparent;
}

.custom-select .choices__placeholder {
    color: #2b1d6a !important;
    opacity: 1 !important;
}


.custom-select .guest-dropdown {
    position: relative;
    width: 100%;
}

.listing-field .dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 6px 0 10px 0;
    border: 0;
    border-bottom: 1px solid grey;
    font-size: 15px;
    font-weight: 600;
    color: #2b1d6a;
    background: white;
    cursor: pointer;    line-height: 0;
    min-height: 42px;
}

.custom-select .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px;
    margin-top: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
    display: none;
}

.custom-select .dropdown-menu.active {
    display: block;
}

.custom-select .guest-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.custom-select .controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-select .controls button {
    width: 28px;
    height: 28px;
    font-size: 18px;
    background: none;
    border: 1px solid #aaa;
    border-radius: 50%;
    cursor: pointer;
    color: #2b1d6a;
    font-weight: bold;
}

.custom-select .close-dropdown {
    background: #2b1d6a;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

.custom-select .dropdown-toggle::after {
    display: none;
}

.themesort {
    height: 4rem;
    font-size: 1.5rem;
    justify-content: center;
    text-transform: capitalize;
    letter-spacing: 0.08em;
    color: #888888 !important;
    border-color: #c5c5c5 !important;
    padding: 0 2.4rem 0 1.4rem;
}

.themesort:hover,
.themesort:focus {
    color: #6c757d;
    border-color: #6c757d;
    background-color: white;
}

.customsort .dropdown-item {
    font-size: 16px;
    padding: 9px 20px;
}

.listing-card .info-zone {
    gap: 15px;
}

.custom-card .card-body a:hover {
    color: #fe5f5b;
}

.listing-card .card-title h6 {
    color: #6d6d6d;
    font-size: 14px;
    margin: 3px 0 0px;
}

.listing-card .ft-time {
    margin-top: 66px;
}

.listing-pg .postcontent h4 a:hover {
    color: #fe5f5b;
    text-decoration: none;

}

.listing-pg .postimg {
    height: 60px;
    min-height: 60px;
}*/