/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
    background: var(--section_bg);
}
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: #4F2214;
    --btnColor: #FF5C00;
    --white: #ffffff;
    --black: #000000;
    --section_bg: #FFEFE0;
    --poppins-regular: "Poppins-Regular";
    --poppins-semibold: "Poppins-SemiBold";
    --poppins-bold: "Poppins-Bold";
    --bebasneue-regular: "BebasNeue-Regular";
    --plusjakartasans-regular: "PlusJakartaSans-Regular";
    --plusjakartasans-bold: "PlusJakartaSans-Bold";
    --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: "BebasNeue-Regular";
    src: url("../webfonts/BebasNeue-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PlusJakartaSans-Regular";
    src: url("../webfonts/PlusJakartaSans-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "PlusJakartaSans-Bold";
    src: url("../webfonts/PlusJakartaSans-Bold.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(--primeColor);
}
/* SCROLL-CSS */
.xy_center {
    display: flex;
    justify-content: center;
    align-items: center;
}
header.header_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 58px 0px 20px 0px;
    z-index: 9999;
}
.header_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primeColor);
    padding: 12px;
    border: 1px solid #FFEFE0;
    border-radius: 12px;
    position: relative;
}
.logo_main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 160px;
}
.nav li {
    padding: 0 12px;
    border-right: 2px solid var(--white);
}
.nav li:last-child {
    border-right: 0;
}
.nav a {
    font-family: var(--poppins-regular);
    font-size: 16px;
    color: var(--white);
    display: block;
    transition: all 0.25s;
}
.nav a:hover {
    color: #FF7A00;
}
.header_btn {
    background: var(--btnColor);
    height: 50px;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: var(--poppins-regular);
    color: var(--white);
    border-radius: 10px;
    transition: all 0.25s;
    border: 1px solid transparent;
}
.header_btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.header_btn.header_btn_one {
    background: transparent;
    border-color: var(--white);
}
.header_btn.header_btn_one:hover {
    background: var(--btnColor);
    border-color: transparent;
}
.index_banner {
    width: 100%;
    height: 120vh;
    background: url(../images/index_banner_bg.png);
    background-size: cover;
    background-position: bottom;
    padding: 330px 0px 20px 0px;
    position: relative;
    background-color: var(--section_bg);
}
.banner_text_box h1 {
    font-family: var(--bebasneue-regular);
    font-size: 90px;
    color: var(--white);
    line-height: 85px;
}
.desc {
    font-family: var(--plusjakartasans-regular);
    font-size: 16px;
    color: var(--white);
}
.gen_btn {
    width: fit-content;
    background: var(--btnColor);
    height: 50px;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: var(--poppins-regular);
    color: var(--white);
    border-radius: 12px;
    transition: all 0.25s;
    border: 1px solid transparent;
}
.gen_btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.banner_img_box_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
    position: relative;
}
.banner_img_box_right .desc {
    text-align: end;
    max-width: 285px;
    font-size: 15px;
}
.img_box_one img {
    width: 285px;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
}
.img_box_two img {
    width: 375px;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
}
.img_box_two {
    position: relative;
    max-width: 375px;
    margin-left: 0;
}
.img_box_two a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #ffffff63;
    font-size: 20px;
    color: #fff;
}
.banner_slider {
    padding: 100px 0px;
    transform: translateY(-140px);
}
.bg_text {
    font-family: var(--bebasneue-regular);
    font-size: 310px;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: -160px;
    writing-mode: sideways-lr;
    opacity: 0.12;
    z-index: -1;
}
.banner_slider-box {
    position: relative;
    z-index: 1;
}
.slide_card {
    width: 585px;
    height: 390px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    cursor: grabbing;
}
.slide_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 40px;
}
.slider_bg {
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 450px;
}
.slider_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slider_bg h2 {
    font-family: var(--bebasneue-regular);
    font-size: 95px;
    color: #EED9C6;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.banner_slider .swiper-slide {
    transition: all 0.25s;
}
.banner_slider .swiper-slide.swiper-slide-active {
    transform: rotate(-10deg) scale(1.2);
}
.banner_slider .swiper-slide.swiper-slide-next {
    transform: rotate(10deg);
}
.slider_btns_flex .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #FF7A00;
    opacity: 0.5;
}
.slider_btns_flex .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    max-width: 200px;
}
.slider_btns_flex .swiper-pagination-bullet-active {
    opacity: 1;
    background: #FF7A00;
    transform: scale(1.3);
    position: relative;
}
/* .swiper-pagination-bullet-active:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    height: 14px;
    width: 14px;
    background-color: transparent;
    border-radius: 100%;
    border: 1px solid #FF7A00;
}
*/
.slider_btns_flex {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 320px;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}
.slider_btns_flex button {
    border: 0;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
}
.index_section_one {
    padding: 90px 0px 50px 0px;
    position: relative;
}
.index_sec_one_content_box {
    width: 100%;
    border-radius: 30px;
    background: var(--primeColor);
}
.index_sec_one_content_box .inner_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #8E8E8E;
}
.index_sec_one_content_box .box_left, .index_sec_one_content_box .box_right {
    width: 305px;
    height: 305px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index_sec_one_content_box .box_right {
    padding-left: 25px;
}
.index_sec_one_content_box .box_middle {
    width: calc(100% - 610px);
}
.index_sec_one_content_box .border_right {
    border-right: 1px solid #8E8E8E;
}
.index_sec_one_content_box .border_left {
    border-left: 1px solid #8E8E8E;
}
.index_sec_one_content_box .img_flex {
    position: relative;
    width: 56px;
    height: 130px;
}
.index_sec_one_content_box .img_flex img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.index_sec_one_content_box .img_flex .img_1 {
    top: 0;
}
.index_sec_one_content_box .img_flex .img_2 {
    top: 36px;
}
.index_sec_one_content_box .img_flex .img_3 {
    top: 72px;
}
.index_sec_one_content_box .text_box h4 {
    font-family: var(--plusjakartasans-bold);
    font-size: 26px;
    color: #FF7A00;
}
.index_sec_one_content_box .text_box p {
    font-family: var(--plusjakartasans-regular);
    font-size: 16px;
    color: var(--white);
    max-width: 150px;
}
.box_middle {
    padding: 10px 95px;
}
.box_middle h1 {
    font-size: 36px;
    color: var(--white);
    font-family: var(--bebasneue-regular);
    text-align: center;
}
.box_middle h1 span {
    color: var(--btnColor);
}
.box_left .gen_btn {
    width: 155px;
    height: 60px;
    font-size: 18px;
    border-radius: 20px;
}
.box_bottom {
    padding: 40px 75px;
}
.box_bottom p {
    font-family: var(--plusjakartasans-regular);
    font-size: 20px;
    color: var(--white);
    text-align: center;
}
.index_section_two {
    padding: 100px 0px;
}
.index_section_two_content_box_main {
    border: 1px solid #8E8E8E;
    border-radius: 60px;
    overflow: hidden;
}
.index_section_two_content_box_left h1 {
    font-family: var(--bebasneue-regular);
    font-size: 95px;
    color: var(--primeColor);
    line-height: 86px;
    max-width: 300px;
    margin-bottom: 20px;
}
.index_section_two_content_box_left {
    padding: 55.3px 55px;
    border-right: 1px solid #8E8E8E;
    height: 100%;
}
.index_section_two_content_box_left .gen_btn {
    width: 130px;
    height: 50px;
}
.index_section_two_content_box_left .gen_btn:hover {
    border-color: var(--primeColor);
    color: var(--primeColor);
}
.fountain_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-bottom: 1px solid #8E8E8E;
}
.fountain_box:last-child {
    border-bottom: 0;
}
.fountain_box .img_box {
    width: 305px;
    height: 265px;
    border-radius: 60px;
    overflow: hidden;
}
.fountain_box .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.fountain_box .text_box {
    width: calc(100% - 350px);
}
.fountain_box .text_box h2 {
    font-family: var(--plusjakartasans-bold);
    font-size: 24px;
    color: var(--primeColor);
    margin-bottom: 30px;
}
.fountain_box .text_box p {
    font-family: var(--plusjakartasans-regular);
    font-size: 20px;
    color: #A47261;
    max-width: 620px;
}
.index_section_three {
    padding: 100px 0px 150px 0px;
    background: var(--primeColor);
}
.gen_text_box h2 {
    font-family: var(--bebasneue-regular);
    font-size: 95px;
    color: var(--primeColor);
    line-height: 86px;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.gen_text_box h2 span {
    color: #FF7A00;
}
.gen_text_box p {
    font-family: var(--plusjakartasans-regular);
    font-size: 20px;
    color: var(--white);
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}
.heading_white {
    color: var(--white) !important;
}
.video_box {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.video_box img {
    border-radius: 60px;
    overflow: hidden;
}
.video_box .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;
}
.fountain_slider_btn_flex a {
    width: 105px;
    height: 105px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    overflow: hidden;
    transition: all 0.25s;
}
img {
    transition: all 0.25s;
}
.arrow_right img {
    transform: rotate(180deg);
}
.arrow_left {
    left: -52px;
}
.arrow_right {
    right: -52px;
}
.fountain_slider_btn_flex a:hover {
    background: #FF7A00;
}
.fountain_slider_btn_flex a:hover img {
    filter: brightness(9) invert(1);
}
.video_slider_wrapper {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
}
.index_section_four {
    padding: 100px 0px;
    position: relative;
}
.gallery_box {
    width: 100%;
    height: 300px;
    border-radius: 60px;
    overflow: hidden;
    display: block;
}
.gallery_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.index_section_five {
    padding: 50px 0px 100px 0px;
}
.index_section_five .gen_text_box h2 {
    max-width: 910px;
    margin: 0 auto;
}
.testimonial_card_wrapper {
    width: 100%;
    height: 630px;
    background-image: url(../images/testimonial_bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 180px 300px 70px 100px;
    position: relative;
}
.testimonail_card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
    background: #592d1e;
}
.testimonail_card .img_box {
    width: 225px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
}
.testimonail_card .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.testimonail_card .text_box {
    width: calc(100% - 230px);
}
.testimonail_card .text_box h2 {
    font-family: var(--bebasneue-regular);
    font-size: 65px;
    color: var(--white);
    margin-bottom: 5px;
    text-transform: uppercase;
}
.testimonail_card .text_box h2 span {
    font-size: 35px;
    color: #FF7A00;
}
.testimonail_card .text_box p {
    font-family: var(--plusjakartasans-regular);
    font-size: 16px;
    color: var(--white);
    max-width: 800px;
}
.testimonail_slider_btn_flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #FF7A00;
    padding: 25px;
    border-radius: 100px 0px 0px 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    z-index: 9999;
}
.testimonail_slider_btn_flex a {
    width: 105px;
    height: 105px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    z-index: 1;
    overflow: hidden;
    transition: all 0.25s;
}
.testimonail_arrow_right img {
    transform: rotate(180deg);
}
.testimonail_slider_btn_flex a:hover {
    background: var(--primeColor);
}
.testimonail_slider_btn_flex a:hover img {
    filter: brightness(9) invert(1);
}
.index_section_six {
    padding: 20px 0px 120px 0px;
}
.index_section_six_content_box {
    width: 100%;
    height: 550px;
    border-radius: 60px;
    background-image: url(../images/index_section_six_bg.png);
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px 145px;
}
.index_section_six_content_box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff7b00b5;
    z-index: -1;
}
.index_section_six_content_box .inner_box h1 {
    font-family: var(--bebasneue-regular);
    font-size: 85px;
    color: var(--white);
    margin-bottom: 5px;
    text-transform: uppercase;
    max-width: 550px;
    line-height: 80px;
}
.index_section_six_content_box .inner_box p {
    font-family: var(--plusjakartasans-regular);
    font-size: 16px;
    color: var(--white);
    max-width: 800px;
    line-height: 30px;
}
.index_section_six_content_box .circle_text {
    width: 730px;
    height: 730px;
    border-radius: 100%;
    display: flex;
    background: var(--primeColor);
    position: absolute;
    bottom: -320px;
    right: -280px;
    padding: 180px 120px;
}
.index_section_six_content_box .circle_text h2 {
    font-family: var(--bebasneue-regular);
    font-size: 45px;
    color: var(--white);
    max-width: 300px;
    text-align: center;
    text-transform: uppercase;
    line-height: 45px;
}
.footer__text_box .heading {
    font-size: 75px;
    color: #1B1B1B;
}
.footer_navigation_wrap {
    background: var(--primeColor);
    width: 100%;
    padding: 20px 0px;
    border-radius: 60px 60px 0px 0px;
    position: relative;
}
.logo_footer {
    max-width: 175px;
}
.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;
    padding-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(--poppins-bold);
    font-size: 14px;
    color: var(--primeColor);
    text-transform: uppercase;
}
.copyright_wrap_flex .desc a {
    color: var(--primeColor);
    transition: all 0.25s;
}
.copyright_wrap_flex .desc a:hover {
    color: #FF7A00;
}
.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;
}
.scroll_btn, .scroll_btn:hover {
    font-family: var(--outfit-regular);
    font-size: 16px;
    color: #4F2214;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}
.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
/* INNER CSS */
.index_banner.inner_banner{
    padding: 230px 0px 20px 0px;
}
.inner_banner_img_box {
    max-width: 1260px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid #FFEFE0;
}
.inner_banner_img_box img {
    animation: zoom-in-out 40s infinite ease-in-out;
}
.border_box {
    border: 1px solid #8E8E8E;
    border-radius: 60px;
    overflow: hidden;
}
.top_box {
    padding: 40px 0px;
    border-bottom: 1px solid #8E8E8E;
}
.fountain_sec_one {
    padding: 100px 0px;
}
.fountain_main_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    border-bottom: 1px solid #8E8E8E;
}
.fountain_main_box:last-child {
    border-bottom: 0;
}
.fountain_main_box .img_box {
    width: 500px;
    height: 570px;
    border-radius: 60px;
    overflow: hidden;
}
.fountain_main_box .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.fountain_main_box .text_box {
    width: calc(100% - 550px);
}
.fountain_main_box .text_box h2 {
    font-family: var(--plusjakartasans-bold);
    font-size: 34px;
    color: var(--primeColor);
    margin-bottom: 30px;
}
.fountain_main_box .text_box p {
    font-family: var(--plusjakartasans-regular);
    font-size: 20px;
    color: #A47261;
    max-width: 620px;
    margin-bottom: 20px;
}
.fountain_sec_one .gen_text_box .desc {
    color: #A47261;
    max-width: 1024px;
}
.fountain_main_box ul li {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.fountain_main_box ul li i {
    font-size: 10px;
    color: #70321d;
}
.inner_container {
    max-width: 1260px;
    margin: 0 auto;
}
.rental_card {
    border: 1px solid #8E8E8E;
    border-radius: 40px;
    overflow: hidden;
    padding: 12px 12px 30px 12px;
    min-height: 775px;
}
.rental_card .img_box {
    width: 100%;
    height: 260px;
    border-radius: 30.8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.rental_card .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.rental_card .text_box h3 {
    font-family: var(--plusjakartasans-bold);
    font-size: 26px;
    color: var(--primeColor);
    margin-bottom: 5px;
}
.rental_card .text_box p {
    font-family: var(--plusjakartasans-regular);
    font-size: 18px;
    color: #252525;
    margin-bottom: 10px;
}
.rental_card .text_box ul {
    padding-left: 20px;
}
.rental_card .text_box li {
    font-family: var(--plusjakartasans-regular);
    font-size: 18px;
    color: #252525;
    margin-bottom: 10px;
    list-style: disc;
}
.rental_pricing_sec_one {
    padding: 40px 0px;
}
.rental_pricing_text_box h2 {
    font-family: var(--bebasneue-regular);
    font-size: 65px;
    color: var(--primeColor);
    line-height: 66px;
    margin-bottom: 5px;
}
.rental_pricing_text_box .sub_heading {
    font-size: 47px;
    line-height: 56px;
}
.rental_pricing_text_box h3 {
    font-family: var(--plusjakartasans-bold);
    font-size: 20px;
    color: var(--primeColor);
    margin-bottom: 5px;
    font-style: italic;
}
.rental_pricing_text_box .desc {
    font-size: 18px;
    color: #252525;
    margin-bottom: 15px ;
}
.rental_pricing_text_box ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.rental_pricing_text_box li {
    font-family: var(--plusjakartasans-regular);
    font-size: 18px;
    color: #252525;
    margin-bottom: 10px;
    list-style: disc;
}
.rental_pricing_text_box li strong, .rental_pricing_text_box .desc strong {
    color: var(--primeColor);
}
.rental_pricing_sec_one .img_box {
    height: 480px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    border: 3px solid var(--primeColor);
}
.rental_pricing_sec_one .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}
.rental_pricing_sec_one .gen_btn:hover {
    border-color: var(--primeColor);
    color: var(--primeColor);
}
.galley_banner {
    background: url(../images/gallery_banner.png);
    background-size: cover;
    background-position: bottom;
    position: relative;
}
.gallery_slider {
    position: relative;
}
.gallery_slide_card {
    width: 100%;
    height: 600px;
}
.gallery_slide_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.gallery_slider_wrapper .slider_btns_flex {
    bottom: 130px;
}
.curve {
    width: 120%;
    height: 200px;
    background-color: #4f2214;
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0px 0px 100% 100%;
    z-index: 1;
}
.curve.curve_bottom {
    top: auto;
    bottom: -130px;
    border-radius: 100% 100% 0px 0px;
}
.gallery_main_card p {
    font-family: var(--bebasneue-regular);
    font-size: 26px;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
}
.gallery_main_card .gallery_box {
    height: 360px;
    margin-bottom: 20px;
}
.contact_flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0;
}
.contact_text_box h2 {
    font-family: var(--bebasneue-regular);
    font-size: 95px;
    color: var(--primeColor);
    line-height: 96px;
    max-width: 500px;
}
.contact_flex .icon_box {
    width: 75px;
    height: 75px;
    background: var(--primeColor);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.contact_flex .icon_box img {
    max-width: 40px;
}
.contact_flex .text_box {
    width: calc(100% - 103px);
}
.contact_flex .text_box h5 {
    font-family: var(--poppins-semibold);
    font-size: 25px;
    color: var(--primeColor);
    margin-bottom: 5px;
}
.contact_flex .text_box p {
    font-family: var(--poppins-regular);
    font-size: 18px;
    color: var(--primeColor);
}
.contact_form p {
    font-family: var(--plusjakartasans-bold);
    font-size: 18px;
    color: var(--primeColor);
    margin-bottom: 10px;
    line-height: 1;
    text-transform: uppercase;
}
.contact_form h2 {
    font-family: var(--plusjakartasans-bold);
    font-size: 50px;
    color: var(--primeColor);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.gen_input {
    width: 100%;
    height: 60px;
    background: var(--white);
    border: 0;
    border-radius: 12px;
    font-size: 18px;
    font-family: var(--poppins-regular);
    color: var(--primeColor);
    padding: 0 20px;
    margin: 10px 0px;
}
.textarea {
    height: 150px;
    padding: 20px;
    resize: none;
}
.contact_box {
    border: 1px solid #8E8E8E;
    border-radius: 60px;
    overflow: hidden;
}
.contact_text_box, .contact_form {
    padding: 60px 60px;
}
.contact_form {
    border-left: 1px solid #8E8E8E;
    height: 100%;
}
.submit_btn.gen_btn {
    width: 100%;
    height: 60px;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 20px;
}
.contact_text_box .desc {
    color: #A47261;
}
@keyframes zoom-in-out {
    0% {
        transform: scale(1);
   }
    50% {
        transform: scale(1.1);
   }
    100% {
        transform: scale(1);
   }
}
