/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
ul,
li,
a,
.btn-default,
textarea,
label {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

button,
input,
textarea,
select {
    outline: none !important;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}

/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --primeColor: #DDC297;
    --btnColor: #FF5C00;
    --white: #ffffff;
    --black: #000000;
    --heading: #70321D;
    --desc: #4D4D4D;
    --section_bg: #FFEFE0;
    --btn_text_color: #70321D;
    --poppins-regular: "Poppins-Regular";
    --poppins-semibold: "Poppins-SemiBold";
    --poppins-bold: "Poppins-Bold";
    --outfit-regular: "Outfit-Regular";
    --outfit-semibold: "Outfit-SemiBold";
    --rowdies-regular: "Rowdies-Regular";
    --gradient:linear-gradient(to right, #a262ee, #bf52d5, #d242bb, #dd35a0, #e22d86);
    --gradient_txt:linear-gradient(to right, #fbce4a, #ff9047, #ff4870, #e806a7, #743bd9);
}

/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Poppins-Regular";
    src: url("../webfonts/Poppins-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Medium";
    src: url("../webfonts/Poppins-Medium.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Bold";
    src: url("../webfonts/Poppins-Bold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-SemiBold";
    src: url("../webfonts/Poppins-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Rowdies-Regular";
    src: url("../webfonts/Rowdies-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Outfit-SemiBold";
    src: url("../webfonts/Outfit-SemiBold.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "Outfit-Regular";
    src: url("../webfonts/Outfit-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}

/* FONT_CSS_END_HERE */
/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}
body::-webkit-scrollbar-track {
    background: var(--white);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--black);
}
/* SCROLL-CSS */
.xy_center {
    display: flex;
    justify-content: center;
    align-items: center;
}


.header_wrapper {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0px 20px 0px;
    z-index: 9999;
    border-bottom: 2px dashed var(--white);
}
.logo_main {
    display: block;
    max-width: 140px;
}
.nav_bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17.5px 10px;
    background: #ffffff29;
    border-radius: 20px;
    backdrop-filter: blur(11px);
    max-width: 800px;
    margin: 0 auto;
}
.nav_bar li {
    padding: 0 20px;
    border-right: 2px solid var(--white);
}
.nav_bar li:last-child {
    border-right: 0;
}
.nav_bar a {
    font-size: 18px;
    font-family: var(--poppins-regular);
    color: var(--white);
    border-bottom: 2px solid transparent;
    display: block;
    transition: all 0.25s;
}
.nav_bar a:hover {
    border-color: #fff;
}
.header_btn {
    width: fit-content;
    height: 60px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: var(--outfit-semibold);
    color: var(--btn_text_color);
    padding: 0 45px;
    margin-left: auto;
    border: 1px solid transparent;
    transition: all 0.25s;
}
.header_btn:hover {
    color: var(--white);
    background: transparent;
    border-color: var(--white);
}
.index_banner {
    height: 95vh;
    width: 100%;
    position: relative;
    padding: 360px 0 50px 0;
    z-index: 1;
    overflow: hidden;
}
.index_banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/banner_bg.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: zoom-in-out 25s infinite ease-in-out;
}
.index_banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(../images/border_line.png);
    background-size: cover;
}
.heading {
    font-family: var(--rowdies-regular);
}
.desc {
    font-family: var(--outfit-regular);
}
.gen_btn {
    width: fit-content;
    height: 60px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: var(--outfit-semibold);
    color: var(--btn_text_color);
    padding: 0 45px;
    border: 1px solid transparent;
    transition: all 0.25s;
}
.gen_btn:hover {
    color: var(--white);
    background: transparent;
    border-color: var(--white);
}
.bannr_text_box {
    max-width: 800px;
    margin: 0 auto;
}
.bannr_text_box .heading {
    font-size: 75px;
    color: var(--white);
    text-align: center;
    line-height: 70px;
    margin-bottom: 20px;
}
.bannr_text_box .desc {
    font-size: 16px;
    color: var(--white);
    text-align: center;
    line-height: 28px;
    margin-bottom: 30px;
}
.bannr_text_box .gen_btn {
    margin: 0 auto;
}
.index_section_one {
    padding: 100px 0px;
    position: relative;
}
.scroll_btn {
    font-family: var(--outfit-regular);
    font-size: 16px;
    color: #4F2214;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
}
.scroll_btn:hover {
    color: #4F2214;
}
.gen_btn_one {
    width: fit-content;
    height: 60px;
    background: var(--primeColor);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: var(--outfit-semibold);
    color: var(--black);
    padding: 0 45px;
    border: 1px solid transparent;
    transition: all 0.25s;
}
.gen_btn_one:hover {
    color: var(--white);
    background: var(--heading);
    border-color: var(--white);
}
.gen_heading {
    font-family: var(--rowdies-regular);
    font-size: 50px;
    color: var(--heading);
    line-height: 60px;
    max-width: 600px;
}
.gen_sub_heading {
    font-family: var(--outfit-semibold);
    font-size: 20px;
    color: var(--heading);
    font-style: italic;
}
.gen_desc {
    font-family: var(--outfit-regular);
    font-size: 18px;
    color: var(--desc);
    line-height: 28px;
    max-width: 635px;
}
.sec_img_box {
    max-width: 100%;
    margin: 0 auto;
}
.gen_text_box {
    padding-left: 70px;
}
.gen_top_box .gen_desc {
    margin: 0 auto;
    text-align: center;
}
.gen_text_box ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.gen_text_box ul li i {
    font-size: 10px;
    color: #70321d;
}

.index_section_two {
    padding: 150px 0 180px 0px;
    background: var(--primeColor);
    position: relative;
}
.index_section_two::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(../images/border_line_light.png);
    background-size: cover;
}

.index_section_two::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(../images/border_line_light.png);
    background-size: cover;
    transform: rotate(180deg);
}
.gen_top_box .heading {
    font-size: 72px;
    color: var(--black);
    text-align: center;
}

.fountain_slider {
    transform: translateX(220px);
    margin-bottom: 50px;
}
.slider_card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.slider_card .card_img_box img {
    width: 390px;
    height: 525px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    overflow: hidden;
    border: 10px solid #fff;
}
.card_text_box {
    width: 390px;
    height: 525px;
    background: url(../images/slider_card_bg.png);
    background-size: cover;
    background-position: center;
    padding: 40px 35px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.card_text_box .heading {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 10px;
}

.card_text_box .desc {
    color: var(--white);
    margin-bottom: 15px;
}
.scroll_box {
    max-height: 315px;
    overflow-y: auto;
}
.scroll_box::-webkit-scrollbar {
    width: 3px;
}
.scroll_box::-webkit-scrollbar-track {
    background: var(--white);
}
.scroll_box::-webkit-scrollbar-thumb {
    background-color: var(--primeColor);
}
.card_text_box .gen_btn {
    position: absolute;
    bottom: 40px;
    left: 35px;
    color: var(--black);
}
.card_text_box .gen_btn:hover {
    color: var(--white);
}
.fountain_slider_btn_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.fountain_slider_btn_flex a {
    width: 105px;
    height: 105px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
}
.arrow_right img {
    transform: rotate(180deg);
}
.fountain_slider_btn_flex a {
    width: 105px;
    height: 105px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.fountain_slider_btn_flex a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(112,50,27);
    background: linear-gradient(180deg, rgba(112,50,27,1) 50%, rgba(73,29,16,1) 97%);
    z-index: -1;
    opacity: 0;
    transition: all 0.25s;
    box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}
.fountain_slider_btn_flex a:hover:before {
    opacity: 1;
}
.fountain_slider_btn_flex a:hover img {
    filter: brightness(9) invert(1);
}
.index_section_three {
    padding: 100px 0px;
}
.gallery_img_box {
    display: block;
    border-radius: 300px;
    overflow: hidden;
}
.gallery_img_box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 300px;
    overflow: hidden;
    transition: all 0.5s;
}
.gallery_img_box:hover img {
    transform: scale(1.2);
}
.index_section_four {
    width: 100%;
    height: 786px;
    background-image: url(../images/sec_four_bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.index_section_four .play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    width: 135px;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #ffffff63;
    font-size: 40px;
    color: #fff;
}
.index_section_five {
    padding: 100px 0px 100px 0px;
}
.testimonial_slider  {
    padding: 100px 0px;
}
.testimonial_card {
    position: relative;
}
.testimonial_card .gen_desc {
    font-size: 20px;
    color: #393939;
    line-height: 36px;
    max-width: 85%;
}
.testimonial_card .img_box {
    position: relative;
    max-width: 320px;
    max-height: 320px;
    margin: 0 auto;
    text-align: center;
}
.testimonial_card .img_box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background-image: url(
   ../images/testimonial_img_bg.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.testimonial_card .img_box .client_img {
    width: 320px;
    height: 320px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}
.testimonial_card .img_box .coma {
    position: absolute;
    top: -90px;
    left: -200px;
}
.client_name {
    color: #303030;
    font-size: 26px;
    position: absolute;
    bottom: -35px;
    left: 560px;
}
.client_name span {
    color: var(--primeColor);
    font-size: 16px;
}
.paginations_flex {
    position: relative;
    width: 490px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    padding: 0px 20px;
    border-radius: 10px;
}
.paginations_flex .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%!important;
    left: 50%!important;
    transform: translate(-50%, -50%);
}
.swiper-pagination-bullet {
    width: 50px;
    height: 3px;
    display: inline-block;
    border-radius: 5px;
    background: #303030;
    opacity: 1;
    transition: all 0.25s;
}
.swiper-pagination-bullet-active {
    width: 70px;
    opacity: 1;
    background: var(--primeColor);
}
.paginations_flex p {
    font-size: 20px;
    font-family: var(--outfit-semibold);
    color: var(--heading);
}
.footer_wrapper {
    padding: 70px 0px 0px 0px;
    background: var(--primeColor);
}
.footer__text_box .heading {
    font-size: 75px;
    color: #1B1B1B;
}
.footer_navigation_wrap {
    background: #4F2214;
    width: 100%;
    padding: 70px 0px;
    border-radius: 60px 60px 0px 0px;
    position: relative;
    margin-top: 60px;
}
.logo_footer {
    max-width: 175px;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.footer_navigation_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer_nav_bar {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_nav_bar li {
    padding: 0 15px;
    border-right: 2px solid var(--white);
}
.footer_nav_bar li:last-child {
    border-right: 0;
}
.footer_nav_bar a {
    font-size: 18px;
    font-family: var(--poppins-regular);
    color: var(--white);
}
.copyright_wrap_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright_wrap {
    padding: 20px 0px;
    background: var(--white);
}
.copyright_wrap_flex .desc {
    font-family: var(--outfit-semibold);
    font-size: 14px;
    color: #4F2214;
    text-transform: uppercase;

}
.social_list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.social_list a {
    width: 22px;
    height: 22px;
    border-radius: 100%;
    border: 1px solid #4F2214;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #4F2214;
}
/* INNER CSS */
.inner_banner {
    height: 600px;
    width: 100%;
    position: relative;
    padding: 195px 0 50px 0;
    z-index: 1;
    overflow: hidden;
    background-image: url(../images/inner_banner_img.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.inner_banner.gallery_banner {
    background-image: url(../images/inner_banner_img_gallery.png);
    background-size: cover;
    background-position: center;
}
.inner_banner.rental_banner {
    background-image: url(../images/rental_banner.webp);
    background-size: cover;
    background-position: center;
}
.inner_banner.contact_banner {
    background-image: url(../images/contact_banner.webp);
    background-size: cover;
    background-position: center;
}
.inner_banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url(../images/border_line.png);
    background-size: cover;
}
.inner_banner:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #5B2613DB;
}
.inner_section_one {
    padding: 50px 0px;
}
.inner_section_one_text_box .gen_heading {
    font-size: 30px;
    line-height: 32px;
}
.gen_desc i {
    font-size: 8px;
    margin-right: 15px;
}

.inner_section_one_text_box {
    padding: 0;
}
.sec_padding_top {
    padding-top: 100px;
}
.odd_sec {
    background: #ddc297ab;
}
.rental_sec_one {
    padding: 100px 0px;
}
.rental_card {
    width: 100%;
    height: 100%;
    min-height: 770px;
    background: url(../images/slider_card_bg.png);
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 20px;
}
.rental_card .img_box img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.rental_card .heading {
    font-size: 30px;
    color: var(--white);
}
.rental_card .gen_desc {
    color: var(--white);
}
.pricing_listing li {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}
.pricing_listing li span i {
    font-size: 10px;
    color: var(--white);
}
.rental_card li p {
    font-family: var(--outfit-regular);
    font-size: 16px;
    color: var(--white);
    margin-bottom: 15px;
}
.rental_card .heading.subheading {
    font-size: 20px;
    color: var(--white);
}
.contact_us_form .input_group input, .contact_us_form .input_group textarea {
    width: 100%;
    height: 60px;
    border: 1px solid #ccc;
    padding: 20px;
    font-family: var(--poppins_regular);
    font-size: 16px;
    color: var(--black);
    border-radius: 10px;
}
.contact_us_form .input_group textarea {
    height: 90px;
    resize: none;
}
.border_box {
    padding: 30px;
    /* background: #ecf7f9; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    overflow: hidden;
}
.contact_us_form .input_group label {
    font-family: var(--outfit-regular);
    font-size: 18px;
    color: var(--desc);
    margin-bottom: 5px;
    background: #fff;
}
.contact_us_text_box h2 {
    font-family: var(--rowdies-regular);
    font-size: 20px;
    color: var(--heading);
}
.responsive-map iframe {
    border: 0;
    width: 100%;
}
.contact_us_form .gen_btn_one {
    width: 250px;
}
.zoom-container {
    overflow: hidden;
}
.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    animation: zoom-in-out 25s infinite ease-in-out;
}
@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1); 
    }
}




.rental_pricing_sec_one .gen_top_box .heading {
    font-size: 72px;
    max-width: 1000px;
    margin: 0 auto;
}
.rental_pricing_sec_one.odd_sec {
    padding: 100px 0px;
} 
.rental_pricing_sec_one .gen_top_box .gen_desc,
.gallery_se_one .gen_top_box .gen_desc{
    max-width: 945px;
}
.about_us_sec_one {
    padding: 100px 0px;
}
.about_us_sec_one .gen_desc {
    max-width: 90%;
    font-size: 18px;
}
.about_us_sec_one .gen_heading {
    font-size: 50px;
    max-width: 90%;
    line-height: 56px;
}

.contact_us_form h2 {
    font-family: var(--rowdies-regular);
    font-size: 40px;
    color: var(--heading);
    line-height: 1;
    margin-bottom: 10px;
}
