@font-face {
    font-family: 'Louis George Cafe';
    src: url('../fonts/LouisGeorgeCafe.woff2') format('woff2'),
        url('../fonts/LouisGeorgeCafe.woff') format('woff');
    font-weight: normal;
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Louis George Cafe';
    font-style: normal;
    font-weight: 700;
    src: local('Louis George Cafe'), url('../fonts/LouisGeorgeCafeBold.woff') format('woff');
}

@font-face {
    font-family: 'Louis George Cafe';
    font-style: normal;
    font-weight: 300;
    src: local('Louis George Cafe Light'), url('../fonts/LouisGeorgeCafeLight.woff') format('woff');
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    word-wrap: break-word
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: #F5F5F5;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

a img {
    border: none;
}

a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none
}

:focus {
    outline: none
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1380px;
    padding: 0 20px;
    width: 100%;
}

.clr {
    clear: both;
    float: none;
    display: block;
}

.clr:after, .afclr:after {
    clear: both;
    float: none;
    display: block;
    content: ""
}

input[type="submit"], button {
    -webkit-appearance: none
}

img {
    max-width: 100%;
}

p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
}



/* header */
.header_sec {
    position: fixed;
    top: 0;
    left: 0;
    padding: 25px 0;
    right: 0;
    z-index: 99;
    background-image: linear-gradient(#000, #00000001);
    transition: .3s all ease;
    background-color: #4C5032;
}

.header_con {
    display: flex;
    align-items: center;
}

.header_left {
    width: 15%;
    padding: 0 10px 0 0;
}

.header_right {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_call_us_sec {
    padding: 0 0 0 30px;
}

.call_us_sec p {
    font-weight: 400;
    margin: 0;
}

.call_us_sec {
    font-weight: bold;
}

.call_us_sec h2 {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
}

.header_btn {
    margin: 0 0 0 35px;
}

.header_btn>span {
    display: inline-block;
    border-bottom: 1px solid #fff;
}

.site_btn {
    display: inline-block;
    padding: 20px 35px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid #fff;
    position: relative;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.header_btn .site_btn {
    margin-bottom: 10px;
}

.site_btn:hover {
    background: #fff;
    color: #000;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: inline-block;
    font-size: 16px;
    padding: 10px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0 0 0 8px;
    letter-spacing: 1px;
    position: relative;
    cursor: pointer;
}

.nav-menu>li>a::after {
    visibility: hidden;
    opacity: 0;
    background: url(../images/menu_bg.svg);
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 60px;
    height: 35px;
    margin: 0 auto;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.nav-menu>li.current-menu-item>a::after {
    visibility: visible;
    opacity: 1;
}

.nav-menu>li:first-child>a {
    margin-left: 0;
}

.nav-menu {
    display: flex;
}

.nav-menu>li>a:hover::after {
    visibility: visible;
    opacity: 1;
}


.site-menu {
    display: none;
    margin: 0 0 0 30px;
}

.mobile_menu_sec {
    position: fixed;
    top: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    opacity: 0;
    left: -100%;
    transition: .3s all ease;
    z-index: 999;
    padding: 25px 0;
}

.mobile_menu_sec.state-active {
    clear: both;
    left: 0;
    opacity: 1;
    visibility: visible;
}

.menu_expand {
    display: block;
    color: #000;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    letter-spacing: 3px;
    text-decoration: none;
    float: right;
    border-radius: 5px;
    padding: 5px 0px;
}

.menu_expand i {
    height: 4px;
    background: #fff;
    display: block;
    width: 35px;
    border-radius: 5px;
    margin: 0 0 10px 0;
}

.menu_expand i:last-child {
    margin: 0;
}

.cross_button {
    margin-top: 35px;
    display: block;
    text-align: center;
    position: absolute;
    top: -10px;
    right: 25px;
}

.cross_button a {
    font-size: 22px;
    color: #242323;
    cursor: pointer;
    border: 1px solid #242323;
    border-radius: 3px;
    padding: 4px;
    display: inline-block;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 1.2;
}

.m_close_icon:before, .m_close_icon:after {
    display: block;
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: #000;
    top: 20px;
    left: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.m_close_icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mob-nav li a {
    display: block;
    color: #000;
    padding: 5px 15px 5px 0;
    margin: 0 0 2px 0;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.mob-nav>li.menu-item-has-children {
    position: relative;
}

.expand_plus {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
    padding: 25px 10px 2px;
    cursor: pointer;
    z-index: 100;
}

.mob-nav .sub-menu {
    display: none;
}

.expand_plus i {
    display: block;
    position: relative;
    width: 12px;
    height: 10px;
    top: -8px;
}

.expand_plus:after {
    transform: translate(-50%, -50%) rotate(-135deg);
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    margin-left: -2px;
    box-sizing: border-box;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform-origin: center;
}

.mob-nav .sub-menu {
    display: none;
}

/* header slider */

.nav-menu .sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    background: #765F4990;
    z-index: 10;
    left: 23px;
    width: 168px;
    transition: .3s all ease;
}

.nav-menu>li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
}

.sub-menu>li>a {
    font-size: 15px;
    font-family: 'Plus Jakarta Sans';
    display: block;
    padding: 10px 13px;
    border-top: 1px solid #fff;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.sub-menu>li:last-child>a {
    border-bottom: none;
}

.sub-menu>li>a:hover {
    background: #fff;
    color: #000;
}

.banner_bg_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_sec {
    position: relative;
    overflow: hidden;

}

.banner_content_heading>h1 {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 59px;
}

.banner_bg_image {
    position: relative;
}

.banner_bg_image::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #000, #00000005);
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner_bg_image {
    position: relative;
    z-index: 1;
}

.banner_content {
    position: relative;
    z-index: 1;
}

.banner_content_sec {
    height: 100vh;
    position: relative;
}

.banner_content_inner {
    display: flex;
    align-items: center;
    height: 100vh;
    position: relative;
}

.room_check_sec {
    z-index: 1;
    position: relative;
    background: linear-gradient(270.27deg, rgba(233, 233, 233, 0.3) 29.46%, rgba(233, 233, 233, 0) 101.66%);
    opacity: 0.98;
    filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.05));
    backdrop-filter: blur(15px);
    width: 100%;
    display: flex;
    align-items: center;
}

.room_check_form {
    margin-top: -230px;
    padding: 0 0 30px 0;
}

.check_fields {
    width: 85%;
    display: flex;
}


.field_title p {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin: 0 0 15px 0;
}

.field_input select {
    font-family: 'Forum';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #fff;
    padding: 0 20px 0 0;
    border-color: #fff;
}

.field_input select option {
    background: #000;
}

.check_fields li {
    padding: 45px 35px;
    border-right: 1px solid #fff;
    float: left;
    width: 20%;
}

.check_fields li:last-child {
    border-right: 0px;
    padding: 25px 35px;
}

.check_fields li:nth-child(5) {
    border-right: 0px;
}

.check__btn__form__submit{
    font-family: 'Louis George Cafe';
    font-size: 16px;
    text-align: center;
    border: none;
    color: #000;
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px 15px;
    justify-content: center;
}

.about_us {
    background: #765F49;
    padding: 120px 0;
}

.about_us_desc p {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.3;
    text-align: center;
    color: #FFFFFF;
}

.about_us_desc {
    width: 70%;
    margin: 0 auto 60px;
}

.about_us_left {
    float: left;
    width: 40%;
    padding: 0 30px 0 0;
}

.about_us_right {
    float: right;
    width: 50%;
}

.about_us_title h2 {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #FFFFFF;
}

.about_us_content P {
    font-family: 'Louis George Cafe';
    font-size: 18px;
    line-height: 1.4;
    color: #FFFFFF;
    font-weight: 300;
    margin: 0 0 30px 0;
}

.about_us_content h3 {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 29px;
    line-height: 1.7;
    color: #FFFFFF;
}

.about_us_content ul li {
    font-family: 'Louis George Cafe';
    font-size: 18px;
    line-height: 1.7;
    color: #FFFFFF;
    font-weight: 700;
}

.about_us_btn {
    margin: 40px 0 0 0;
}

.about_us_btn>span {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.about_us {
    background: url(../images/about_us_bg.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100%;
    background-color: #765F49;
}

.about_us_img_2 {
    position: relative;
    top: -50px;
    left: 40px;
}
.destinations_box_link{
    display: inline-block;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}
.destinations_box_inner {
    position: relative;
    background: url(../images/olive_resort_turia_new.jpg);
    background-repeat: no-repeat;
    position: relative;
    padding: 73% 0;
    background-size: cover;
    overflow: hidden;
    background-position: center;
    transition: all .3s ease;
    cursor: pointer;
}

.destinations_list .destinations_box:nth-child(2) .destinations_box_inner {
    background: url(../images/olive_resort_sillari.jpg);
    background-repeat: no-repeat;
}

.destinations_list .destinations_box:nth-child(3) .destinations_box_inner {
    background: url(../images/olive_resort_turia_new_2.jpg);
    background-repeat: no-repeat;
}

.destinations_content {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 10;
    padding: 50px 40px;
    color: #fff;
    transition: all .3s ease;
}

.destinations_content p {
    font-family: 'Louis George Cafe';
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
}

.destinations_list {
    margin: 0 -25px;
}

.destinations_box {
    float: left;
    width: 33.33%;
    padding: 0 25px;
}

.destinations_content_hover {
    opacity: 0;
    visibility: hidden;
}

.destinations_title h2 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
}

.destinations_title {
    margin: 0 0 50px 0;
}

.destinations_sec {
    padding: 90px 0;
}

.destinations_content h3 {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.destinations_box_inner:after {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #2D2E2DE5;
    opacity: .4;
    transition: all .2s ease;
}

.destinations_box_inner:hover .destinations_content_hover {
    opacity: 1;
    visibility: visible;
}

.destinations_box_inner:hover .destinations_content_norm {
    opacity: 0;
}

.destinations_box_inner:hover .destinations_content_hover {
    bottom: 9%;
}

.new_tab_arrow {
    text-align: right;
    margin: 15px 0 0 0;
}

.destinations_content_hover {
    padding-bottom: 0;
}

.destinations_box_inner:hover:after {
    opacity: .8;
}



.pench_sec {
    background: url(../images/new_bg_overlay.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 100%;
    background-color: #4C5032;
    padding: 130px 0 20px 0;
    overflow: hidden;
}

.pench_left {
    float: left;
    width: 50%;
    text-align: center;
}

.pench_right {
    float: right;
    width: 50%;
    padding: 0 0 0 70px;
}

.pench_title h2, .pench_welcome_title h3 {
    text-align: center;
    color: #ffffff;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
}

.pench_title {
    margin: 0 0 30px 0;
}

.pench_welcome_title {
    margin: 0 0 25px 0;
}

.pench_welcome_title h3 {
    font-size: 40px;
}

.pench_desc p {
    font-family: 'Louis George Cafe';
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
    color: #FFFFFF;
    font-weight: 400;
    margin: 0 0 40px 0;
}

.experience_title h2 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.experiences_sec {
    padding: 100px 0;
    /* background: #F9F9F9; */
    background: linear-gradient(#f5f5f5, #eeeeec);
}

.experiences_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experiences_content {
    background: #fff;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: -20px;
    padding: 35px 0;
}

.experiences_content h3 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.experiences_content {
    left: 50px;
    right: 0;
    bottom: 100px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -ms-transition: all 1s ease;
    -ms-transition: all 1s ease;
    position: relative;
}

.experiences_swiper_slider .swiper-slide .experiences_content {
    opacity: 0;
    visibility: hidden;
}

.experiences_swiper_slider .swiper-slide-active .experiences_content {
    left: 0;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -ms-transition: all 1s ease;
    -ms-transition: all 1s ease;
}

.experiences_swiper_slider .swiper-slide .experiences_img img {
    transform: scale(.9);
    position: relative;
    top: 25px;
    transition: .5s all;
}

.experiences_swiper_slider .swiper-slide.swiper-slide-active .experiences_img img {
    transform: scale(1.1);
    transition: .5s all;
}

.testi_sec {
    background: url(../images/testi_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0;
}

.testi_title h2 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.testi_plateform_logo img {
    width: 150px;
    margin: 0 auto;
}

.testi_plateform_logo {
    margin: 0 0 30px 0;
}

.testi_content {
    margin: 0 0 35px 0;
}

.testi_content p {
    font-family: 'Louis George Cafe';
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    color: #3F3F3F;
}

.testi_name h3 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.testi_slider {
    position: relative;
    width: 66%;
    margin: 0 auto;
}

.testi_swiper_slider_btn {
    color: #000;
    background: #fff;
    padding: 11px 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.testi_swiper_slider_btn::after {
    font-size: 25px;
    font-weight: bold;
}

.testi_swiper_slider_prev {
    left: -20%;
}

.testi_swiper_slider_next {
    right: -20%;
}

.footer_sec {
    background: #F9F9F9;
    padding: 90px 0;
    overflow: hidden;
}

.footer_sec_list {
    display: flex;
    gap: 50px;
}

.footer_sec_box {
    width: 25%;
}

.footer_links_heading h2 {
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 35px 0;
}

.footer_links p, .footer_links a {
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

.footer_address p {
    margin: 0 0 25px 0;
}

.footer_q_link ul li a {
    display: block;
    padding: 5px 0;
    margin: 0 0 5px 0;
}

.footer_q_link ul, .footer_menu_links {
    list-style: disc;
    padding: 0 0 0 20px;
}

.footer_menu_links li a {
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.2;
    display: block;
    padding: 5px 0;
    margin: 0 0 5px 0;
}

.footer_sec_q_link_box {
    padding: 0 0 0 60px;
}

.footer_socials_links li a svg {
    width: 30px;
    height: 30px;
}

.footer_socials_links {
    display: flex;
    gap: 10px;
    margin: 0 0 40px 0;
}

.footer_socials_links li a {
    border: 2px solid #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.copy_bar_inner p, .copy_bar_inner a {
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

.footer_copright_bar {
    background: #f9f9f9;
}

.copy_bar_inner {
    border-top: 1px solid #000;
    padding: 30px 0 40px 0;
    text-align: center;
}

.footer_socials_links li a:hover {
    border-color: #765F49;
}

.footer_socials_links li a:hover svg path {
    fill: #765F49;
}

.phone_num_con p a:hover, .copy_bar_inner>p>a:hover, .footer_links li>a:hover {
    color: #765F49;
}

.tiger_image_sec {
    position: relative;
}

.tiger_image_sec svg path {
    opacity: 0;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.tiger_image_sec svg {
    width: 100%;
}

.tiger_image_sec.active svg path:nth-child(n) {
    animation: mask-image .9s forwards;
}

.tiger_image_sec.active svg path:nth-child(2n) {
    animation: mask-image .9s .5s forwards;
}

.tiger_image_sec.active svg path:nth-child(3n) {
    animation: mask-image .9s 1s forwards;
}

.open_new_tab_arrow img {
    width: 70px;
}

.check_fields {
    width: 100%;
    justify-content: space-between;
}

@keyframes mask-image {

    0% {
        opacity: 0;
    }

    100% {

        opacity: 1;
    }

}

.page_header_bg img {
    width: 100%;
}

.page_header {
    overflow: hidden;
    position: relative;
}

.page_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page_header::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page_content_inner h1 {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 65px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.about__us__left {
    padding: 0 35px 0 0;
    width: 45%;
}

.about__us__right {
    padding: 0px 0 0 35px;
    width: 55%;
}

.about_us_content>p>span {
    font-weight: 400;
}

.about__us {
    background: none;
    padding: 0;
}

.about__us__content P {
    color: #000000;
    font-weight: 400;
}

.about__us__content>p>span {
    font-weight: 700;
}

.about__us {
    background: url('../images/tiger_pic.jpg');
    background-size: 45%;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: left center;
}

.about__us__content h3 {
    color: #000000;
}

.about__us__content ul li {
    color: #000000;
}

.about_us_all_title h2 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
}

.features_sec {
    padding: 100px 0;
}

.features_title {
    margin: 0 0 50px 0;
}

.features_list {
    display: flex;
    flex-wrap: wrap;
}

.features_box {
    width: 33.33%;
    padding: 0 0 40px 0;
}

.features_box {
    display: flex;
    align-items: center;
}

.features_icon {
    background: #E4E1DE;
    padding: 20px 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 15px 0 0;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.features_icon img {
    width: 100%;
}

.features_name p {
    font-family: 'Louis George Cafe';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
}

.features_box_left {
    width: 25%;
}

.features_box_right {
    width: 75%;
}

.features_name {
    width: 55%;
}

.features_list .features_box:nth-child(3n) .features_name {
    width: 100%;
}

.tiger_reserve {
    background-color: #4C5032;
    background-size: 50%;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: left bottom;
    position: relative;
    overflow: hidden;
}

.tiger_reserve_rigth {
    width: 50%;
    float: right;
    position: relative;
    z-index: 1;
}

.tiger_reserve_title h2 {
    text-align: left;
    color: #fff;
}

.tiger_reserve_contact>span {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.tiger_reserve_title {
    margin: 0 10px 15px 0;
}

.tiger_reserve::before {
    content: '';
    background: url('../images/mid_bar_img_effect.png') no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 1;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.safari_pench {
    padding: 80px 0 30px 0;
}

.safari_pench_title {
    margin: 0 0 60px 0;
}

.safari_pench_left {
    width: 50%;
    float: left;
    padding: 0 30px 0 0;
}

.safari_pench_right {
    width: 50%;
    float: right;
}

.safari_pench_content h3 {
    color: #000000;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.safari_pench_content p {
    font-family: 'Louis George Cafe';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    color: #3F3F3F;
    margin: 0 0 20px 0;
}

.safari_pench_content ul>li>span {
    color: #799A04;
}

.safari_pench_content>ul>li {
    font-family: 'Louis George Cafe';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    color: #000000;
    position: relative;
    padding-left: 30px;
    margin: 0 0 20px 0;
}

.safari_pench_content>ul>li:after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: #5C6719;
    position: absolute;
    top: 5px;
    left: 0;
    border-radius: 50%;
}

.safari_pench_details {
    margin: 0 0 60px 0;
}

.safari_pench_content h2 {
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    margin: 50px 0 30px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.safari_booking_sec {
    /* background-color: #4C5032; */
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.safari_booking_title h2 {
    color: #fff;
}

.safari_booking_title {
    margin: 0 0 15px 0;
    position: relative;
    z-index: 3;
}

.safari_booking_details p {
    font-family: 'Louis George Cafe';
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: #F9F9F9;
    position: relative;
    letter-spacing: 1px;
}

.safari_booking_details {
    width: 69%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.safari_contact {
    text-align: center;
    margin: 30px 0 0 0;
    position: relative;
    z-index: 3;
}

.safari_booking_inner::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #4C5032;
    mix-blend-mode: multiply;
    opacity: 0.89;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.safari_contact>span {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.safari_booking_sec::before {
    content: '';
    background: url('../images/safari_booking_right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    background-position: left;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.safari_booking_sec::after {
    content: '';
    background: url('../images/safari_booking_left.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.header_sec.header_is_sticky {
    background: #000;
}

.page_header.page_404_header::after {
    opacity: 0.7;
}

.page_404_header .page_content_inner h1 {
    font-size: 15rem;
}

.page_404_header .page_content_inner p {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 3rem;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.sub-menu-toggle {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.resort_desc_details p {
    text-align: center;
    color: #000000;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.resort_desc_details {
    padding: 70px 0;
    padding: 70px 0;
    width: 78%;
    margin: 0 auto;
}

.features__sec_turia {
    background: #4C5032;
}

.features__sec_turia .about_us_all_title h2 {
    color: #ffffff;
    font-size: 54px;
    letter-spacing: 1px;
}

.features__sec_turia .features_name p {
    color: #ffffff;
}

.features__sec_turia .features_title {
    margin: 15px 0 65px 0;
}

.features__sec_turia .features_icon {
    background: #ffffff;
}

.villas_sec {
    padding: 100px 0;
}

.villa_box {
    display: flex;
    align-items: center;
}

.villa_left {
    width: 50%;
}

.villa_right {
    width: 50%;
    padding: 0 0 0 40px;
}

.villas__list .villa_box:nth-child(2n) {
    flex-direction: row-reverse;
}

.villa_name h2 {
    text-align: left;
    font-size: 38px;
    color: #000;
}

.villa_desc p {
    font-family: 'Louis George Cafe';
    font-size: 18px;
    line-height: 1.4;
    color: #3F3F3F;
    font-weight: 400;
    margin: 0 0 10px 0;
}

.villa_desc {
    margin: 0 0 35px 0;
}

.villa_name {
    margin: 0 0 10px 0;
}

.villa_features {
    display: flex;
    flex-wrap: wrap;
}

.villa_features_box {
    display: flex;
    width: 40%;
    margin: 0 0 25px 0;
}

.villa_features_left {
    width: 17%;
    padding: 0 4px 0 0;
}

.villa_features_right {
    width: 83%;
}

.villas__list .villa_box:nth-child(2n) .villa_right {
    padding: 0 40px 0 0px;
}

.features_2__sec_turia {
    background: #765F49;
}

.features_2__sec_turia .features_box {
    width: 25%;
}

.features_2__sec_turia .features_icon {
    padding: 20px 15px;
    width: 75px;
    height: 75px;
}

.features_2__sec_turia .features_box_left {
    width: 28%;
}

.features_2__sec_turia .features_box_right {
    width: 72%;
}

.features_2__sec_turia .features_name p {
    font-size: 20px;
}

.features_2__sec_turia .features_list .features_box:nth-child(3n) .features_name {
    width: 55%;
}

.features_2__sec_turia .features_list .features_box:nth-child(4n) .features_name {
    width: 75%;
}

.features_2__sec_turia .features_box {
    padding: 0 0 50px 0;
}

.resort_gallery_sec {
    padding: 80px 0;
    background: #F9F9F9;
}

.resort_gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.resort_gallery_image {
    width: 33.33%;
    padding: 0 10px 20px;
}

.villa_image img {
    width: 100%;
    display: block;
}

.villa_features_icon {
    width: 31px;
}

.villa_features_icon svg {
    width: 100%;
}

.villa_image_swiper_btn {
    color: #000;
    background: #fff;
    padding: 11px 15px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.villa_image_swiper_btn::after {
    font-size: 18px;
    font-weight: bold;
}

.resort_gallery_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedding_page_header .page_content_inner h1 {
    text-align: left;
}

.wedding_form_con {
    width: 35%;
    float: right;
    padding: 40px 20px;
    background: #fff;
    opacity: 0.98;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.05);
}

.wedding_form_title h2 {
    color: #040404;
    font-size: 24px;
    text-align: left;
}

.wedding_form_title {
    margin: 0 0 20px 0;
}

.wedding_form_input input:not(input[type=submit]) {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #969696;
    border: none;
    border-bottom: 0.5px solid #969696;
    width: 100%;
    padding: 8px 6px;
}

.wedding_form_input input:not(input[type=submit]):focus, .wedding_form_input_textarea textarea:focus {
    border-color: #000;
}

.wedding_form_sec {
    margin: -393px 0 0 0;
    position: relative;
    z-index: 2;
}

.wedding_form_input {
    margin: 0 0 25px 0;
}

.wedding_form_input_textarea textarea {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #969696;
    border: none;
    border-bottom: 0.5px solid #969696;
    width: 100%;
    padding: 8px 6px;
    resize: none;
}

.wedding_form_input_submit input[type=submit] {
    border-color: #000;
    width: 100%;
    cursor: pointer;
    background: #fff;
    color: #000;
}

.wedding_form_input_submit .site_btn {
    margin-bottom: 10px;
}

.wedding_form_input_submit>span {
    display: block;
    border-bottom: 1px solid #000;
}

.wedding__about__us {
    background: none;
}

.ww_about__us__sec .about_us_left {
    width: 50%;
}

.ww_about__us__sec .about_us_right {
    width: 50%;
}

.ww_about__us__sec {
    display: flex;
    align-items: center;
}

.ww_about__us__sec .about_us_content P {
    font-size: 18px;
}

.wedding__about__us {
    background: url(../images/weeding_about_right_bg.png?asds);
    background-position: right bottom;
    background-repeat: no-repeat;
    position: relative;
    padding: 0 0 100px 0;
    z-index: 2;
}

.wedding_form_sec {
    position: relative;
}

.wedding_form_sec::after {
    content: '';
    display: block;
    background: url(../images/weeding_about_left_bg.png?asds) no-repeat;
    background-size: 100%;
    bottom: -65px;
    width: 149px;
    height: 195px;
    position: absolute;
    left: 0;
}

.features__sec_wedding {
    background: #765F49;
}

.features__sec_wedding .features_title {
    margin: 15px 0 100px 0;
}

.features__sec_wedding .features_name {
    width: 77%;
}

.features__sec_wedding .features_box {
    padding: 0 0 60px 0;
}

.venues_tab_img_slider {
    position: relative;
}

.venues_tab_box .site_btn {
    margin-bottom: 10px;
    color: #000000;
    border: 2px solid #00000050;
    transition: .3s all ease;
    min-width: 230px;
    text-align: center;
}

.venues_tab_box>span {
    display: inline-block;
    border-bottom: 2px solid #00000050;
    transition: .3s all ease;
}

.venues_tab_inner {
    display: flex;
    gap: 40px;
    width: 85%;
    justify-content: space-between;
    margin: 40px auto 50px;
}

.venues_sec {
    padding: 130px 0 0 0;
}

.venues_tab_box.active>span {
    border-color: #7E5923;

}

.venues_tab_box.active .site_btn {
    color: #7E5923;
    border-color: #7E5923;
}

.venues_swiper_slider_btn {
    color: #000;
    background: #fff;
    padding: 11px 15px;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.15);
}

.venues_swiper_slider_btn::after {
    font-size: 25px;
    font-weight: bold;
}

.venues_swiper_slider_prev {
    left: -22px;
}

.venues_swiper_slider_next {
    right: -22px;
}

.venue_name_title_btn {
    color: #000;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    min-width: 250px;
    line-height: 1.2;
    text-transform: uppercase;
    display: inline-block;
    padding: 26px 47px;
    background: #FBF8F8;
    box-shadow: 0px 4px 4px rgba(176, 176, 176, 0.25);
    pointer-events: none;
}

.venue_name_title_bar {
    text-align: center;
    margin: -28px 0 0 0;
    position: relative;
    z-index: 2;
}

.venues_sec_title h2 {
    color: #000;
}

.testimonial_content p {
    font-family: 'Louis George Cafe';
    font-size: 18px;
    line-height: 1.4;
    font-weight: 300;
}

.testimonial_box {
    border: 1px solid #7E5923;
    padding: 30px 20px;
}

.testimonial_title h2 {
    color: #000;
}

.testimonial_name p {
    text-align: center;
    color: #000;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.testimonial_sec {
    background: url(../images/testimonial__bg.png);
    background-position: left top;
    background-repeat: no-repeat;
    padding: 90px 0 90px 0;
    background-color: #F9F9F9;
}

.testimonial_title {
    margin: 0 0 50px 0;
}

.venues_sec {
    background: url(../images/venue__bg.png);
    background-position: right top;
    background-repeat: no-repeat;
    background-color: #F9F9F9;
}

.testimonial_name {
    margin: 25px 0 0 0;
}

.testimonial_slider_con {
    position: relative;
}

.testimonial_swiper_pagination .swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    margin: 0 7px !important;
}

.testimonial_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #765F49;
}

.testimonial_swiper_pagination {
    bottom: -50px !important;
}

.wedding_page_header .page_header::after {
    opacity: .4;
}

.venues_tab_content_sec {
    position: relative;
}

.venues_tab_content_box {
    display: none;
    transition: .3s all ease;
}

.venues_tab_content_sec .venues_tab_content_box:first-child {
    display: block;
}

.wedding_form_input_submit input[type=submit]:hover {
    background-color: #000;
    color: #fff;
}

.wedding_form_contact_list>a {
    color: #000;
    font-family: 'Marcellus';
    font-size: 16px;
    display: inline-block;
    margin: 0 20px 10px 0;
}

.wedding_form_contact_list>a:last-child {
    margin-right: 0;
}

.wedding_form_contact_list>a img {
    margin: 0 5px 0 0;
}

.header_sec_new {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px 0;
    right: 0;
    z-index: 99;
    background-image: linear-gradient(#000, #00000001);
    transition: .3s all ease;
}

.header_2_sec_new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -10px;
}

.header_1_sec_new {
    text-align: right;
}

.header_sec_new_btn .site_btn {
    padding: 12px 50px;
    font-size: 15px;
}

.header_sec_new_btn .header_btn .site_btn {
    margin-bottom: 4px;
}

.header_logo {
    width: 200px;
}

.header_logo img {
    width: 100%;
}

.header_sec_new_right .nav-menu .sub-menu {
    position: absolute;
    z-index: 10;
    left: 23px;
    width: 168px;
    transition: .3s all ease;
}

.header_sec_new_right .nav-menu .sub-menu {
    right: 0;
    left: auto;
}

.header_sec_new_right .nav-menu>li:last-child>a {
    margin-right: 0;
    padding-right: 0;
}

.banner_content_sec {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    z-index: 1;
    transform: translateY(-50%);
}

.banner_content_inner {
    display: block;
    height: 100%;
}

.banner_sec .banner_bg_image::after {
    width: 80%;
    background: linear-gradient(-90deg, #00000010, #000000);
    opacity: .75;
}

.about_us_up {
    padding: 160px 0 120px 0;
}

.about_us_desc {
    width: 85%;
    margin: 0 auto 90px;

}

.about_us_up .about_us_sec {
    display: flex;
    align-items: center;
}

.about_us_up .about_us_left {
    padding: 0 17% 0 0;
    width: 50%;
}

.about_us_up .about_us_content P {
    font-weight: 300;
    font-size: 24px;
}
.about_us_up .about_us_img_2 {
    left: 100px;
}

.about_us_title {
    margin: 0 0 20px 0;
}

.destinations_sec_up .destinations_box {
    width: 50%;
}

.destinations_sec_up .destinations_box_inner {
    padding: 50% 0;
    background-repeat:  no-repeat;
    background-position: center;
    background-size: cover;
}

.destinations_sec_up .destinations_list .destinations_box:nth-child(2) .destinations_box_inner {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.destinations_sec_up .open_new_tab_arrow {
    display: inline-block;
    width: 60px;
}


.destinations_sec_up .destinations_content p {
    font-style: normal;
    font-weight: 400;
    font-size: 21px;
    line-height: 157.6%;
    color: #FCF0F0;
}

.destinations_sec_up {
    padding: 110px 0 0 0;
}

.destinations_sec_up .destinations_content h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.destinations_sec_up .destinations_content {
    padding-bottom: 60px;
}

.destinations_box_inner:hover .destinations_content_hover {
    padding-bottom: 20px;
}

.about_us_up .about_us_content P>span {
    font-weight: 400;
}

.home_features_sec_up {
    padding: 120px 0;
}

.award_and_certificate {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.award_and_certificate_image {
    width: 16%;
}

.award_and_certificate_image img {
    width: 100%;
}


.award_and_certificate_sec {
    padding: 100px 0 0 0;
}

.award_and_certificate_title {
    margin: 0 0 50px 0;
}

.award_and_certificate_title h2 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 40px 0;
}

.experiences_sec_up {
    padding: 100px 0 0 0;
    background: transparent;
}

.testi_sec_up {
    background: url('../images/testi_bg_neww.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 350px 0 200px 0;
    margin-top: -200px;
    position: relative;
}

.testi_sec_up::after {
    content: '';
    background: linear-gradient(#f5f5f5, #eeeeec70);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.testi_title {
    position: relative;
    z-index: 1;
}

.features_icon:hover {
    transform: scale(.9);
}

.features_title h2 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
}

.header_sec_new_left {
    width: 32%;
}

.header_sec_new_right {
    width: 37.5%;
}

.header_sec_new_center {
    width: 25%;
    text-align: center;
}

.features_box_left {
    width: 115px;
}

.features_box_right {
    width: 100%;
}

.header_sec_new_right .nav-menu {
    justify-content: flex-end;
}

.header_logo {
    margin: 0 auto;
}

.tiger_reserve_contact .site_btn {
    padding: 20px 55px;
}

.safari_pench_up {
    padding: 100px 0 60px 0;
}

.safari_pench_details_up {
    display: flex;
    align-items: center;
}

.safari_pench_details_up .safari_pench_left {
    width: 45%;
}

.safari_pench_details_up .safari_pench_right {
    width: 55%;
    padding: 0 0 0 30px;
}

.page_content_inner {
    padding: 100px 0 0 0;
}

.features__sec_turia__up {
    background: url('../images/resort_amenities_f_bg.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100%;
    background-color: #4C5032;
}

.villa_desc {
    width: 95%;
}

.features_2__sec_turia.features__sec_turia__up {
    background-color: #765F49;
}

.features_2__sec_turia .features_name {
    width: 70%;
}

.wedding__about__us {
    padding: 50px 0 100px 0;
}

.we_features_box .features_box {
    flex-direction: column;
}

.we_features_box .features_list .features_box:nth-child(3n) .features_name {
    width: auto;
}

.features__sec_wedding .we_features_box.features_list .features_box .features_name {
    width: 70%;
    text-align: center;
    margin: 15px auto 0;
}

.features__sec_wedding {
    background-image: url('../images/resort_amenities_f_bg.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100%;
}

.features__sec__sillari .features_list .features_box:nth-child(3n) .features_name {
    width: 69%;
}

.villas_sec_sillari .villa_right {
    padding: 40px 0 40px 40px;
}

.villas_sec_sillari .villas__list .villa_box:nth-child(2n) .villa_right {
    padding: 40px 40px 40px 0;
}

.resort_desc_sec_khindsi .resort_desc_details p {
    margin-bottom: 35px;
}

.about__us__khindsi {
    background: none;
    padding: 0 0 100px 0;
}

.kk_about__us__right_title h2 {

    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 121.6%;
    text-transform: uppercase;
    color: #000000;

}

.about__us__khindsi .about_us_content p {
    font-size: 21px;
    color: #3F3F3F;
}

.kk_about__us__right_title {
    margin-bottom: 15px;
}

.about__us__khindsi .about__us__right {
    padding: 0px 0 0 90px;
}

.khindsi_reserve_contact {
    background-image: url('../images/khindsi_contact_bg.jpg');
    padding: 150px 0;
}

.khindsi_reserve_contact::before {
    content: '';
    background: url('../images/safari_booking_right_new.png') no-repeat;
    background-size: contain;
    background-position: left;
}

.khindsi_reserve_contact::after {
    content: '';
    background: url('../images/safari_booking_left_new.png') no-repeat;
    background-size: contain;
    background-position: right;
}


.khindsi_reserve_contact .site_btn {
    padding: 20px 50px;
}

.features_sec__khindsi .features_box_left {
    width: 90px;
}

.oo_experiences_features_list .oo_experiences_features_box {
    width: calc(33.33% - 30px);
    margin: 15px 15px;
    position: relative;
}

.oo_experiences_features_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.oo_experiences_features_image::after {
    background: rgba(41, 41, 41, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

}

.oo_experiences_feature_title h3 {
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.oo_experiences_feature_content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.oo_experiences_feature_content {
    padding: 0 35px 50px;
}

.oo_experiences_features_image {
    position: relative;
}

.oo_experiences_features_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 {
    background: transparent !important;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link {
    background: transparent !important;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item>a.mega-menu-link {
    display: inline-block !important;
    font-size: 16px !important;
    padding: 10px 12px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    margin: 0 0 0 8px !important;
    letter-spacing: 1px !important;
    cursor: pointer;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item>a.mega-menu-link {
    background: none !important;
    line-height: 1;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2 li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator:after {
    display: none !important;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    font-size: 15px;
    font-family: 'Plus Jakarta Sans';
    color: #fff;
    line-height: 1.3;
    display: block;
    padding: 10px 13px;
    background: #765F4990;
    border-top: 1px solid #fff;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover {
    background: #fff !important;
    color: #000 !important;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-flyout ul.mega-sub-menu {
    width: 168px;
    background: #765F4990;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-megamenu>ul.mega-sub-menu {
    width: 100%;
    background: #4C5032;
    padding: 50px 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 100%;
}

.h_meg_bl_content h4 {
    font-size: 16px;
    font-family: 'Plus Jakarta Sans';
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.3;
    display: block;
    padding: 6px 0px 12px 0;
    font-weight: 400;
    text-transform: capitalize;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
    text-align: center;
}

.h_meg_bl_content h4 a {
    font-family: 'Plus Jakarta Sans';
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;

}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-item {
    padding: 0 0 20px 0;
    margin: 0 12px 0;
    width: calc(33.33% - 24px);
}

.h_meg_bl_img img {
    width: 100%;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item:last-child>a.mega-menu-link {
    padding-right: 0 !important;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2 {
    text-align: right !important;
}


.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item>a.mega-menu-link::after {
    opacity: 0;
    visibility: hidden;
    display: block;
    content: '';
    background: url('../images/menu_bg.svg');
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 60px;
    height: 35px;
    margin: 0 auto;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    -moz-transition: .3s all ease;
    -ms-transition: .3s all ease;
    -o-transition: .3s all ease;
}

.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item>a.mega-menu-link:hover:after {
    opacity: 1;
    visibility: visible;
}

.home_features_sec_up_update .features_box {
    width: 25%;
}

.home_features_sec_up_update .features_list .features_box .features_name {
    width: 70%;
}

.home_features_sec_up_update .features_list .features_box:nth-child(4n) .features_name {
    width: 100%;
}

.about_pench_resort_desciption_title h2 {
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 34px;
    line-height: 1.2;
    text-transform: uppercase;
}

.privacy_point .elementor-icon-list-item {
    align-items: start !important;
}

.privacy_point .elementor-icon-list-icon {
    padding-top: 5px !important;
}

.resort__desc__sec__update .resort_desc_details {
    padding-top: 20px;
}

.resort__desc__sec__update {
    padding-top: 80px;
}

.destinations_sec_up .destinations_box_inner {

    background-position: center;
    background-size: cover;
}

.destinations_sec_up .destinations_list .destinations_box:nth-child(2) .destinations_box_inner {
    
    background-position: center;
    background-size: cover;
}

/*///////////////////////////////// contact page ///////////////////////////////// */
.contact_us_form {
    background-color: #F9F9F9;
}

.cc_input_field {
    margin-bottom: 20px;
    background-color: #F9F9F9;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #969696;
    border: none;
    border: 1px solid #969696;
    width: 100%;
    padding: 16px 18px;
    resize: none;
}

textarea.cc_input_field {
    height: 150px;
}
.contact_form_submit_btn_container{
    position: relative;
}
.contact_form_submit_btn_container:after{
content: "";
position: absolute;
width: 166px;
height: 1px;
bottom: -10px;
left: 0;
right: 0;
background-color: #4c5032;
}

.contact_form_submit_btn {
padding: 15px 55px;
display: inline-block;
color: #4c5032;
background-color: transparent;
cursor: pointer;
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 400;
font-size: 16px;
border: 1px solid #4c5032;
position: relative;
transition: .3s all ease;
position: relative;
}

.contact_form_submit_btn:hover {
    background-color: #4c5032;
    color: #fff;
}

#mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-flyout ul.mega-sub-menu {
    right: 0;
}

#mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item:last-child .mega-indicator {
    display: none !important;
}

#mega-menu-wrap-primary-2, #mega-menu-primary-2, #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-megamenu.mega-menu-item {
    position: unset !important;
}


#mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item>.mega-sub-menu>li.mega-menu-row {
    max-width: 600px;
    margin: 0 auto;
    float: none;
    clear: both;
}

#mega-menu-wrap-primary-2 #mega-menu-primary-2 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row>ul.mega-sub-menu>li.mega-menu-columns-4-of-12 {
    width: 33.33333%;
}

#mega-menu-wrap-primary-2 #mega-menu-primary-2 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row {
    width: 100%;
    float: none;
}

.h_m_top_linkd {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.h_m_top_linkd .site_btn {
    padding: 9px 50px;
}

.h_m_top_linkd .site_btn.active {
    background-color: #fff;
    color: #000;
}

.or_mm_all_tab_content {
    display: none;
}

.or_mm_turia_tab_content {
    display: block;
}

.cc_input_field {
    margin: 0;
}

.contact_form_input {
    margin-bottom: 20px;
}

.wpcf7 form .wpcf7-response-output {
    margin-left: 0;
}

.tripadvisor_logo_update {
    max-width: 162px;
}

.tripadvisor_logo_update img {
    width: 100%;
}

#mega-menu-wrap-primary-2 #mega-menu-primary-2 li.mega-menu-megamenu>ul.mega-sub-menu>li.mega-menu-row .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    padding-bottom: 0;
}

#mega-menu-wrap-primary-2 #mega-menu-primary-2 li.mega-menu-megamenu>ul.mega-sub-menu>li#mega-menu-58-0 .mega-menu-column>ul.mega-sub-menu>li.mega-menu-item {
    padding-top: 0;
}

.venues_sec_gallery_page.venues_sec_gallery_page_update {
    padding-top: 30px;
}

/* sticky header menu */
.sticky_sec .header_logo {
    width: 140px;
}

.sticky_sec .header_sec {
    visibility: hidden;
}

.sticky_sec .header_sec.header_is_sticky {
    top: 0;
    opacity: 1;
    visibility: visible;
    z-index: 100;
}

.features_list_sec_update .features_box {
    width: 25%;
}

.features__sec_wedding .features_list_sec_update .features_box_left {
    width: auto;
}

.features_list_sec_update .features_icon {
    width: 75px;
    height: 75px;
    margin: 0px 15px 0px 0px;
}

.features_list_sec_update .features_name p {
    font-size: 20px;
}

.features_list_sec_update .features_box {
    flex-direction: row;
}

.features_list_sec_update .features_name {
    /* margin: 0px !important;
   width: 85% !important;
   text-align: left !important;
   font-size: 20px !important; */

}

.features__sec_wedding .features_list_sec_update .we_features_box.features_list .features_box .features_name {
    margin: 0px;
    width: 85%;
    text-align: left;
    font-size: 20px;
}

.venues_tab_inner_update {
    justify-content: center;
}



/* ///////////// gallery page ///////////////////// */

.gallery_pic_img_container {
    display: flex !important;
    flex-wrap: wrap;
    margin: -6px;
}

.gallery_pic_img {
    width: 33.33%;
    padding: 6px;
    box-sizing: border-box;
}

.venues_tab_content_sec.venues_tab_content_sec_update {
    height: auto;
}

/* //////////////////////// experience page ////////////////////////*/
.experience_pic_img_container {
    display: flex !important;
    flex-wrap: wrap;
    margin: -6px;
}

.experience_pic_img {
    width: 33.33%;
    padding: 6px;
    box-sizing: border-box;
}

.resort_desc_details.resort_desc_details_experience {
    padding: 70px 0 50px;
}

.venues_sec.venues_sec_experience_page {
    padding: 50px 0 0 0;
}

.venues_sec_gallery_page {
    padding: 90px 0px 0px;
}

/* resort sillari  */
.sillari_villa_feature_update .features_box {
    width: 25%;
    padding: 0 0 40px 0;
}

.sillari_villa_feature_update .features_box_left {
    width: 115px
}

.sillari_villa_feature_update .features_icon {
    padding: 20px 15px;
    width: 75px;
    height: 75px;
}

.sillari_villa_feature_update .features_box_right {
    width: 100%;
}

.sillari_villa_feature_update .features_name {
    width: 70%;
}

.sillari_villa_feature_update .features_name p {
    font-size: 20px;
}

/* Wedding & Events form  */
.Wedding_event_form_update .wpcf7 form .wpcf7-response-output {
    margin: 0px 0.5em 1em;
}

.Wedding_event_form_update .wedding_form_input:last-child,
.Wedding_event_form_update .wedding_form_input_submit {
    margin: 0;
}

.Wedding_event_form_update .wedding_form_input_submit .site_btn {
    margin-bottom: 0;
}

/* wedding event content  */
.wedding_event_content_update .resort_desc_details p {
    font-size: 20px;
    text-align: left;
}

/* header mobile menu  */
.header_mobile_menu_update {
    overflow: auto;
}

.header_mobile_menu_update .sub-menu li a {
    padding: 5px 15px 5px 5px;
    margin-left: 15px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.header_mobile_menu_update .mob-nav li a {
    padding: 10px 15px 10px 15px;
}


.header_mobile_menu_update .mob-nav li:hover>a,
.header_mobile_menu_update .sub-menu li:hover a {
    background-color: rgb(249, 249, 249);
}

.pench_sec .header_btn {
    margin: 0 0 100px 0;
}

.pench_sec {
    padding: 130px 0 20px 0;
}


.header_sec_new_left {
    width: 39%;
}

.header_sec_new_center {
    width: 20%;
}

.pench_sec .site_btn {
    padding: 15px 33px;
}

.venues_sec_gallery_page.venues_sec_gallery_page_update.venues___sec__final__update{
    padding-top: 50px;
}

.room_check_input_style {
    font-family: 'Forum';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    width: 100%;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-color: #fff;
}
.parsley-errors-list {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    right: 0;
}
.parsley-errors-list li{
    padding: 0 !important;
    color: #f00;
    float: none;
    width: 100% !important;
}
.field_input{
    position: relative;
}
.destinations_update_ftp{
    overflow: hidden;
}
.wedding__about__us{
    padding: 50px 0px;
}
.corporate_event_ftp{
    padding: 70px 0 100px 0;
}
.wedding_banner_ftp{
    margin: 50px 0 0 0;
    padding: 100px 3%;
    background-image: url('../images/new_bg_fttp.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position:88% center;
}


.wedding_banner_content_ftp{
    width: 56%;
}
.wedding_banner_content_ftp p{
    color: #fff;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 25px;
}
.wedding_banner_content_ftp p:last-child{
    margin-bottom: 0px;
}
.wedding_banner_img_ftp img{
    width: 100%;
}
.footer_address a:hover{
    color: #765F49;
}
.banner_sec .banner_bg_image::after{
    opacity: 0;
}
.banner_bg_video video{
    width: 100%;
}
/* mega menu in experiences  */
#mega-menu-item-58 .mega-sub-menu{
    display: none !important;
}
/* khindasi side slider */
.khindsi_theme_sec{
    padding: 0 0 70px 0;
    overflow: hidden;
}
.khindsi_theme_row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 -15px;
}
.khindsi_theme_column {
    width: 50%;
    padding: 0 15px;
}
.khindsi_theme_title{
    margin: 0 0 20px 0;
}
.khindsi_theme_title>h2{
text-align: center;
color: #3F3F3F;
font-family: 'Marcellus';
font-style: normal;
font-weight: 400;
font-size: 38px;
line-height: 1.2;
text-transform: uppercase;
}
.khindsi_theme_box{
    position: relative;
}
.khindsi_theme_content{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 10;
    padding: 50px 40px;
    color: #fff;
    transition: all .3s ease;
    text-align: left;
}
.khindsi_theme_content>h3{
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    text-transform: uppercase;
    color: #fff;
}
.khindsi_theme_image::after{
display: block;
content: "";
position: absolute;
z-index: 2;
left: 0;
top: 0;
height: 100%;
width: 100%;
background: #2D2E2DE5;
opacity: .4;
transition: all .2s ease;
}
/* Khindsi feautures  */
.khindsi_features_new{background-color: #765F49;}
/* khindsi banner  */
.banner_opcity_vi.page_header::after{
    opacity: 0.2;
}
.khindsi_banner_video,
.home_banner_video{
    display: flex;
    justify-content: center;
    align-items: center;
}
.khindsi_banner_video>video{
    width: 100%;
    display: block;
}

.resort_gallery_sec {
    padding: 80px 0 0;
}
.testimonial_sec{
    padding: 90px 0 60px 0;
}
.about_pench_resort_desciption_title h2{
    font-size: 54px;
}
.header_sec_new_right {
    width: 52%;
}
.header_sec_new_right_menu{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header_btn a{
    padding: 12px 25px;
}
.sillari_villa_feature_update .features_box {
    width: 33.33%;
    padding: 0 0 40px 0;
}
.sillari_villa_feature_update .features_icon{
    width: 100px;
    height: 100px;
}
.sillari_villa_feature_update .features_icon{
    padding: 20px;
}
.wedding_form_sec_ftp::after{
    /* background-image: url(../images/wedding_img_fttpp.png?asds); */
}
.khindsi_banner_bg video{
    display: block;
    width: 100%;
}
.khindsi_subtitle_ftp{
    margin-top: 20px;
}
.khindsi_subtitle_ftp h3{
    color: #000;
    font-family: 'Marcellus';
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.corporate_event_ftp .villa_features_box,
.wedding_about_us_ftp .villa_features_box{
    align-items: center;
    width: 50%;
    padding: 5px 10px;
}
.corporate_event_ftp .villa_features_icon,
.wedding_about_us_ftp .villa_features_icon {
    width: 35px;
    margin-right: 7px;
}
.corporate_event_ftp .villa_features_left,
.wedding_about_us_ftp .villa_features_left {
    width: auto;
}
.corporate_event_ftp .villa_features_name p,
.wedding_about_us_ftp .villa_features_name p{
    font-family: 'Louis George Cafe';
    font-size: 18px;
    line-height: 1;
    color: #000000;
    font-weight: 400;
}
.ww_about__us__sec .about_us_content P:last-child {
    margin-bottom: 0;
}
.wedding_about_us_ftp .villa_features{
    margin-top: 30px;
}
.header_mobile_menu_update .mob-nav li ul a{
    padding: 6px 5px 6px 25px;
    margin: 0;
    line-height: 1.1;
}
.testi_sec_up_ftp .testi_swiper_slider_prev{
    padding: 0 3px 0 0;
}
.testi_sec_up_ftp .testi_swiper_slider_next{
    padding: 0 0 0 3px;
}
.elementor-column-gap-default>.elementor-column>.elementor-element-populated{
    padding: 10px 20px;
}
.elementor-150 .elementor-element.elementor-element-f2a0236 .elementor-icon-list-text {
    padding-left: 17px;
}
.elementor-150 .elementor-element.elementor-element-8fc3792 .elementor-icon-list-text {
    padding-left: 16px;
}
.elementor-150 .elementor-element.elementor-element-0921675 .elementor-icon-list-text {
    padding-left: 16px;
}
.villa_image_swiper_prev_btn{
    padding: 14px 2px 13px 0px;
}
.villa_image_swiper_next_btn{
    padding: 14px 0px 13px 0px;
}
.villa_features_icon img{
    width: 100%;
}
.header_mobile_menu_update .current-menu-item a{
    color: #82a800 ;
}
.header_mobile_menu_update .current-menu-parent a{
    background-color: #f9f9f9;
}
.header_mobile_menu_update .current-menu-parent ul a{
    background-color: transparent;
}
.tiger_img_ftp{
   transform: scale(1.2);
}

.experiences_home_update .swiper-button-prev, .experiences_home_update .swiper-button-next{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #000;
    transform: translateY(-50%);
}
.experiences_home_update .swiper-button-prev::after{
    font-size: 19px;
    font-weight: bold;
    padding: 0 3px 0 0 ;
}
.experiences_home_update .swiper-button-next::after{
    font-size: 19px;
    font-weight: bold;
    padding: 0 0 0 3px;
}
.wedding_form_sec{
    margin: -430px 0 0 0;
}
.wedding_form_input_textarea textarea{
    height: 75px;
}
.wedding_form_input input:not(input[type=submit]){
    font-size: 14px;
}
.wedding_form_input {
    margin: 0 0 13px 0;
}
.wedding_form_input_submit .site_btn{
    padding: 12px 35px;
}
.wedding_form_con{
    padding: 30px 20px 20px;
}
.wedding_form_title h2{
    font-size: 22px;
}
.wedding_form_title p{
    font-size: 15px;
}
.wedding_form_contact_list a:first-child img{
    width: 21px;
}
.khindsi_title_update{
    margin-top: 60px;
}
.khindsi_title_update h2{
    text-align: center;
    color: #3F3F3F;
    font-family: 'Marcellus';
    font-style: normal;
    font-weight: 400;
    font-size: 54px;
    line-height: 1.2;
    text-transform: uppercase;
}
.resort_desc_details{
    padding: 30px 0 70px;
}
.experiences_home_update .swiper-button-prev, .experiences_home_update .swiper-button-next{
    box-shadow: 0px -2px 71px -4px rgba(0,0,0,0.17);
-webkit-box-shadow: 0px -2px 71px -4px rgba(0,0,0,0.17);
-moz-box-shadow: 0px -2px 71px -4px rgba(0,0,0,0.17);
}
.hh__burger__btn {
    display: none;
}
.about_sec_btn>span {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}
.about_sec_btn{
    margin-bottom: 50px;
}
.header_btn .site_btn {
    padding: 10px 18px;
    font-size: 15px;
}
.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item>a.mega-menu-link {
    font-size: 15px !important;
    padding: 10px 5px !important;
}
.nav-menu>li>a {
    font-size: 15px;
}
.header_sec_new_right {
    width: 43%;
}
.header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
    font-size: 14px;
}
.sub-menu>li>a {
    font-size: 14px;
}
.menu_expand i {
    border-radius: 0px;
}
.field_input select {
    font-size: 20px;
}
.wedding_banner_ftp{
    display: none;
}

/* width */
.wedding_form_input_textarea textarea::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  .wedding_form_input_textarea textarea::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  .wedding_form_input_textarea textarea::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  .wedding_form_input_textarea textarea::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
  .banner_content_heading>h1{
    font-size: 52px;
  }
  .testi_review_count{
    display: flex;
    justify-content: center;
  }

  .testi_review_count span{
    font-size: 16px;
    line-height: 1em;
    color: #000;
    font-family: 'Louis George Cafe';
  }
  .re_list_star{
    margin-top: 7px;
    display: flex;
    justify-content: center;
  }
  .home_rating_text{
    margin-right: 3px;
    margin-top: 2px;
    font-size: 16px;
    line-height: 1em;
    color: #000;
    font-family: 'Louis George Cafe';
  }
  .testi_plateform_logo img{
    width: 180px;
  }
  .home_banner_video img{
    width: 100%;
  }
  .about_us_up .about_us_sec{
    /* align-items: start; */
  }
  .about_us_up .about_us_left{
        /* padding: 0 0% 0 5%; */
    /* position: relative; */
  }
.about_us_left_new{
    /* width: 70%; */
    /* top: -265px; */
    /* position: absolute; */
}

.about_us_up .about_us_left {
    padding: 0 12% 0 0;
}

/* safari video creater  */
.safari_video_cr{
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 25px 15px;
    z-index: 2;
}
.safari_video_cr_icon{width: 22px; margin: 0 10px 3px 0;}
.safari_video_cr_name h4{
    text-align: center;
    color: #fff;
    font-family: 'Marcellus';
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}
/* khidasi btn  */
.khindsi_page_btn_sec{padding: 0 0 60px 0;}
.khindsi_page_btn{text-align: center;}
.khindsi_page_btn span{
        display: inline-block;
    padding-bottom: 10px;
    border-bottom: 1px solid #4c5032;
}
.khindsi_page_btn span a{
    display: inline-block;
    padding: 20px 55px;
    color: #4c5032;
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-weight: 400;
    font-size: 16px;
    border: 1px solid #4c5032;
    position: relative;
    transition: .3s all ease;
    -webkit-transition: .3s all ease;
    background-color: transparent;
}
.khindsi_page_btn span a:hover{
    color: #fff;
    background-color: #4c5032;
}
/* blogs page  */
.blogs_page_new .elementor-widget-container {font-family: 'Louis George Cafe' !important;}
.blogs_page_new .elementor-heading-title{font-family: 'Marcellus' !important;}

@media only screen and (max-width:1700px) {
    .tiger_reserve {
        background-size: 66%;
    }
    .wedding_form_sec{
        margin: -375px 0 0 0;
    }
.wedding_form_sec::after{
    bottom: -13px;
}
}

@media only screen and (max-width:1480px) {

    .check_fields li {
        padding: 45px 28px;
    }

    .page_content_inner h1 {
        margin: 70px 0 0 0;
    }

    .about_us_image img {
        width: 100%;
    }

    .about__us__right {
        width: 47%;
    }

    .about__us {
        background-size: 54%;
    }

    .page_404_header .page_content_inner h1 {
        font-size: 8rem;
    }

    .page_404_header .page_content_inner p {
        font-size: 2rem;
    }

    .wedding_page_header {
        overflow: hidden;
    }

    .page_header_bg img {
        max-width: none;
        width: 125%;
        position: relative;
        left: -20%;
    }

    .wedding__about__us {
        background-size: auto;
    }

    .venues_tab_img_slider {
        width: 95%;
        margin: 0 auto;
    }

    .testimonial_slider_con {
        width: 95%;
        margin: 0 auto;
    }

    .venues_tab_box .site_btn {
        padding: 20px 20px;
    }

    .venues_tab_inner {
        width: 86%;
    }

    .page_header_about_pench_up .page_header_bg img {
        width: 100%;
        position: relative;
        left: 0;
    }

    .tiger_reserve {
        background-size: 66%;
        background-position: -43% 0;
    }

    .tiger_reserve::before {
        background-size: 55%;
    }

    .features__sec_wedding .we_features_box.features_list .features_box .features_name {
        width: 75%;
    }

    .features_sec {
        padding: 80px 0 50px 0px;
    }

    .header_sec_new_right_menu #mega-menu-wrap-primary-2 #mega-menu-primary-2>li.mega-menu-item>a.mega-menu-link {
        padding: 10px 7px !important;
    }

    .nav-menu>li>a {
        margin: 0 0 0 0px;
    }
    .nav-menu>li>a {
        margin: 0 0 0px 5px;
    }
    .header_sec_new_left {
        width: 33%;
    }
    .header_logo {
        width: 180px;
    }
}

@media only screen and (max-width:1280px) {
    .site-menu {
        display: block;
    }

    .hidden-mob {
        display: none;
    }

    .check_fields li {
        padding: 30px 12px;
    }

    .field_input select {
        font-size: 18px;
    }

    .check__btn__form__submit {
        width: 100px;
        height: 100px;
    }

    .check_fields {
        justify-content: space-between;
    }

    .banner_content_heading>h1 {
        font-size: 56px;
    }

    .about_us_left {
        padding-right: 20px;
    }

    .about_us_right {
        padding-left: 20px;
    }

    .about_us_img_2 {
        left: 15px;
    }

    .destinations_title h2 {
        font-size: 50px;
    }

    .destinations_content h3 {
        font-size: 28px;
    }

    .open_new_tab_arrow img {
        width: 38px;
    }

    .destinations_content {
        padding: 35px 20px;
    }

    .destinations_box_inner:hover .destinations_content_hover {
        bottom: 4%;
    }

    .open_new_tab_arrow {
        position: absolute;
        top: -12px;
        right: 0;
    }

    .new_tab_arrow {
        position: relative;
    }

    .destinations_content_hover p {
        font-size: 15px;
    }

    .pench_sec {
        padding: 100px 0 20px 0;
    }

    .pench_title h2, .pench_welcome_title h3 {
        font-size: 50px;
    }

    .pench_welcome_title h3 {
        font-size: 30px;
    }

    .pench_desc p {
        line-height: 1.4;
        margin: 0 0 30px 0;
    }

    .experience_title h2 {
        font-size: 50px;
    }

    .experiences_sec {
        padding: 90px 0;
    }

    .testi_sec {
        padding: 100px 0;
    }

    .footer_sec_q_link_box {
        padding: 0 0 0 20px;
    }

    .phone_num_con>p>a {
        display: block;
    }

    .phone_num_con>p>span {
        display: none;
    }

    .page_content_inner h1 {
        font-size: 50px;
    }

    .about_us_left {
        width: 50%;
    }

    .about__us {
        background: none;
        padding: 60px 0;
    }

    .about__us__right {
        padding: 0;
        width: 100%;
    }

    .about_us_all_title h2 {
        font-size: 54px;
    }

    .features_sec {
        padding: 60px 0;
    }

    .features_name {
        width: 78%;
    }

    .features_icon {
        width: 90px;
        height: 90px;
    }

    .features_name p {
        font-size: 18px;
    }

    .features_box_left {
        width: 31%;
    }

    .features_box_right {
        width: 69%;
    }

    .tiger_reserve_title h2 {
        font-size: 48px;
    }

    .tiger_reserve_rigth {
        width: 45%;
    }

    .tiger_reserve::before {
        width: 80%;
        left: auto;
    }

    .safari_pench_content h2 {
        font-size: 50px;
    }

    .about_us_all_title h2 {
        font-size: 38px;
    }

    .features_2__sec_turia .features_box_left {
        width: 35%;
    }

    .features_2__sec_turia .features_box_right {
        width: 65%;
    }

    .features_2__sec_turia .features_list .features_box:nth-child(4n) .features_name {
        width: 100%;
    }

    .venues_tab_box .site_btn {
        min-width: 215px;
        padding: 15px 8px;
    }

    .venues_tab_inner {
        width: 96%;
        gap: 20px;
    }

    .venue_name_title_btn {
        padding: 16px 15px;
        font-size: 15px;
    }

    .wedding_form_title h2 {
        font-size: 24px;
    }

    .wedding_form_con {
        width: 42%;
    }

    .page_header_bg img {
        width: 152%;
        left: -40%;
    }

    .ww_about__us__sec .about_us_content P {
        font-size: 18px;
    }

    .features__sec_turia .about_us_all_title h2 {
        font-size: 38px;
    }

    .features__sec_wedding .features_title {
        margin: 15px 0 60px 0;
    }

    .features__sec_wedding .features_name {
        width: 95%;
    }

    .venues_sec {
        background-size: 17%;
    }

    .venues_sec {
        padding: 100px 0 0 0;
    }

    .testimonial_slider_con {
        width: 90%;
    }

    .room_check_form {
        margin-top: -180px;
    }

    .about_us_up {
        padding: 120px 0 120px 0;
    }

    .about_us_desc p {
        font-size: 26px;
    }

    .homepage__title h2 {
        font-size: 50px;
    }

    .about_us_up .about_us_content P {
        font-size: 18px;
    }

    .destinations_sec_up .destinations_content h3 {
        font-size: 35px;
    }

    .destinations_sec_up .destinations_content {
        padding-bottom: 35px;
    }

    .destinations_sec_up .destinations_content p {
        font-size: 18px;
    }

    .destinations_box_inner:hover .destinations_content_hover {
        bottom: 9%;
    }

    .testi_sec_up {
        padding: 200px 0 100px 0;
    }

    .header_sec_new_center {
        width: 50%;
        text-align: left;
    }

    .header_sec_new_right {
        width: 50%;
    }

    .header_sec_new_left {
        width: auto;
    }

    .header_logo {
        width: 160px;
    }

    .header_2_sec_new {
        margin-top: 0;
    }

    .features_box_left {
        width: 100px;
    }

    .tiger_reserve {
        background-size: 76%;
        background-position: -66% 100%;
    }

    .tiger_reserve::before {
        width: 100%;
        background-size: 60%;
    }

    .safari_pench_up {
        padding: 60px 0 60px 0;
    }

    .safari_pench_details_up .safari_pench_left {
        width: 50%;
        padding: 0 0px 0 0;
    }

    .safari_pench_details_up .safari_pench_right {
        width: 50%;
    }

    .safari_pench_content p {
        font-size: 18px;
    }

    .safari_pench_content>ul>li {
        font-size: 18px;
    }

    .safari_pench_details_up {
        align-items: flex-start;
        margin: 0 0 30px 0;
    }

    .safari_pench_content h2 {
        font-size: 36px;
    }

    .header_logo {
        margin: 0;
    }

    .villa_features_icon {
        width: 25px;
    }

    .villa_desc {
        margin: 0 0 15px 0;
    }

    .villa_features_box {
        margin: 0 0 10px 0;
    }

    .wedding_form_sec {
        margin: -350px 0 0 0;
    }

    .testimonial_slider_con {
        width: 91%;
    }

    .villas_sec_sillari .villa_box {
        margin: 0 0 90px 0;
        align-items: flex-start;
    }

    .villas_sec_sillari .villa_box:last-child {
        margin-bottom: 0;
    }

    .villas_sec_sillari .villa_right {
        padding-top: 0;
    }

    .villas_sec_sillari .villas__list .villa_box:nth-child(2n) .villa_right {
        padding-top: 0;
    }

    .about__us__khindsi {
        padding: 0 0 60px 0;
    }

    .about__us__khindsi .about__us__right {
        padding: 0 0 0 30px;
    }

    .khindsi_reserve_contact {
        padding: 90px 0;
    }

    .features_sec__khindsi .features_list .features_box:nth-child(3n) .features_name {
        width: 70%;
    }

    .villas__sec__update .villa_box {
        margin-bottom: 100px;
    }
    .pench_sec .header_btn {
        margin: 0 0 80px 0;
    }
    .room_check_input_style {
        font-size: 18px;
        width: auto;
    }
    .khindsi_theme_title>h2{font-size: 32px;}
    .header_sec_new_right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }
    .sillari_villa_feature_update .features_icon {
        width: 90px;
        height: 90px;
    }
    .khindsi_title_update h2{
        font-size: 50px;
    }
    .header_sec_new_right {
        width: 50%;
    }
    .header_sec_new_left {
        width: 0;
    }
    .wedding_form_sec::after{
    bottom: 15px;
}

.about_us_left_new{  
    top: -310px;
}
.about_us_up .about_us_left {
    padding: 0 9% 0 0;
}
}

@media only screen and (max-width:992px) {
    .footer_socials_links {
        flex-wrap: wrap;
    }

    .site_btn {
        padding: 15px 35px;
    }

    .room_check_form {
        margin-top: -0;
        padding: 0;
    }

    .room_check_sec {
        background: #755e48;
        filter: drop-shadow(0px 0 0 rgba(0, 0, 0, 0.05));
        backdrop-filter: blur(0);
    }

    .room_check_form {
        background: #755e48;
    }

    .check_fields {
        flex-wrap: wrap;
    }

    .check_fields li {
        width: 50%;
        padding: 15px 15px;
    }

    .check_fields li:last-child {
        border-right: 1px solid #fff;
        padding: 15px 15px;
    }

    .mobile_menu_inner {
        padding: 50px 0 0 0;
    }

    .check_fields li:nth-child(even) {
        padding-left: 35px;
        border: none;
    }

    .destinations_box {
        padding: 0 10px;
    }

    .destinations_list {
        margin: 0px -15px;
    }

    .destinations_box_inner {
        padding: 90% 0;
    }

    .pench_sec {
        padding: 100px 0 100px 0;
    }

    .experiences_content {
        padding: 35px 10px;
    }

    .experiences_content h3 {
        font-size: 24px;
    }

    .about_us_title h2 {
        font-size: 50px;
    }

    .destinations_title h2 {
        font-size: 42px;
    }

    .pench_title h2, .pench_welcome_title h3 {
        font-size: 42px;
    }

    .pench_welcome_title h3 {
        font-size: 24px;
    }

    .experience_title h2 {
        font-size: 42px;
    }

    .testi_title h2 {
        font-size: 42px;
    }

    .testi_slider {
        width: 72%;
    }

    .testi_content p {
        font-size: 18px;
    }

    .footer_sec_list {
        gap: 20px;
    }

    .footer_links_heading h2 {
        font-size: 22px;
    }

    .about_us_all_title h2 {
        font-size: 42px;
    }

    .features_box {
        width: 50%;
    }

    .features_box_left {
        width: 22%;
    }

    .features_box_right {
        width: 78%;
    }

    .features_list .features_box:nth-child(3n) .features_name {
        width: 78%;
    }

    .features_list .features_box:nth-child(2n) .features_name {
        width: 100%;
    }

    .tiger_reserve::before {
        width: 75%;
    }

    .tiger_reserve {
        padding: 80px 0;
    }

    .safari_pench {
        padding-top: 60px;
    }

    .safari_pench_details {
        margin: 0 0 20px 0;
    }

    .page_404_header .page_content_inner h1 {
        font-size: 6rem;
    }

    .resort_desc_details p {
        font-size: 18px;
    }

    .resort_desc_details {
        width: 90%;
    }

    .about_us_all_title h2 {
        font-size: 30px;
    }

    .villa_box {
        align-items: flex-start;
        margin: 0 0 40px 0;
    }

    .features_2__sec_turia .features_box {
        width: 33.33%;
    }

    .features_2__sec_turia .features_name p {
        font-size: 18px;
    }

    .features_2__sec_turia .features_list .features_box:nth-child(3n) .features_name {
        width: 100%;
    }

    .villa_image_swiper_btn {
        width: 40px;
        height: 40px;
    }

    .villa_image_swiper_btn::after {
        font-size: 17px;
    }

    .wedding_form_sec {
        margin: 0;
    }

    .wedding_form_title h2 {
        font-size: 20px;
    }

    .wedding_page_header .page_content_inner h1 {
        text-align: center;
    }

    .wedding_form_con {
        width: 80%;
        margin: 30px auto 20px;
        float: none;
    }

    .ww_about__us__sec .about_us_content P:last-child {
        margin-bottom: 0;
    }

    .features__sec_wedding .features_box_left {
        width: 27%;
    }

    .features__sec_wedding .features_box_right {
        width: 73%;
    }

    .venues_tab_sec {
        overflow: hidden;
    }

    .venues_tab_inner {
        overflow-x: scroll;
        gap: 0px;
        width: 100%;
    }

    .venues_tab_box {
        float: left;
        margin-right: 20px;
    }

    .venues_tab_box .site_btn {
        margin-bottom: 3px;
    }

    .wedding_form_sec::after {
        z-index: -1;
    }

    .testimonial_sec {
        background-size: 23%;
    }

    .banner_content_inner {
        padding-top: 70px;
    }

    .banner_content_heading>h1 {
        font-size: 42px;
    }

    .check_fields li:nth-child(even) {
        border-left: 1px solid #fff;
    }

    .check_fields li:nth-child(5) {
        border-right: 1px solid #fff;
    }

    .about_us_up {
        padding: 80px 0 80px 0;
    }

    .about_us_desc p {
        font-size: 20px;
    }

    .about_us_desc {
        margin-bottom: 60px;
    }

    .destinations_sec_up {
        padding: 70px 0 0 0;
    }

    .destinations_sec_up .destinations_content p {
        font-size: 16px;
    }

    .destinations_sec_up .destinations_content_hover h3 {
        font-size: 28px;
    }

    .homepage__title h2 {
        font-size: 42px;
    }

    .check_fields li:first-child, .check_fields li:nth-child(2) {
        padding-top: 50px;
    }

    .features_box_left {
        width: 100px;
    }

    .award_and_certificate_title {
        margin: 0 0 30px 0;
    }

    .tiger_reserve {
        background-size: 82%;
        background-position: -100% 100%;
    }

    .tiger_reserve::before {
        width: 100%;
        background-size: 65%;
    }

    .tiger_reserve_contact .site_btn {
        padding: 15px 36px;
    }

    .about_us_all_title h2 {
        font-size: 38px;
    }

    .page_content_inner h1 {
        margin: 20px 0 0 0;
    }

    .villa_box {
        margin: 0 0 90px 0;
    }

    .villa_features_box {
        margin: 0 0 14px 0;
    }

    .villa_box {
        margin: 0 0 90px 0;
    }

    .about_us_all_title h2 {
        font-size: 30px;
    }

    .villa_features_box {
        width: 63%;
    }

    .resort_desc_sec_khindsi .resort_desc_details {
        padding: 70px 0 30px 0;
    }

    .kk_about__us__right_title h2 {
        font-size: 32px;
    }

    .ww_about__us__sec .about_us_content P {
        font-size: 16px;
    }

    .khindsi_reserve_contact {
        padding: 60px 0;
    }

    .features_sec__khindsi .features_list .features_box:nth-child(2n) .features_name {
        width: 70%;
    }

    .features_sec__khindsi .features_2__sec_turia .features_box {
        width: 33.33%;
    }

    .oo_experiences_feature_title h3 {
        font-size: 20px;
    }

    .oo_experiences_feature_content {
        padding: 0 20px 25px;
    }

    .home_features_sec_up_update .features_list .features_box .features_name {
        width: 90%;
    }

    .home_features_sec_up_update .features_box {
        width: 33.33%;
    }

    .home_features_sec_up_update .features_list .features_box .features_name {
        width: 90%;
    }

    .home_features_sec_up_update .features_list .features_box:nth-child(4n) .features_name {
        width: 90%;
    }

    .features_list_sec_update .features_box {
        width: 33.33%;
    }

    .features_list_sec_update .features_name p {
        font-size: 18px;
    }

    .venues_sec_gallery_page {
        padding: 90px 0px 40px;
    }

    .gallery_pic_img {
        padding: 4px;
    }

    .gallery_pic_img_container {
        margin: -4px;
    }

    .sillari_villa_feature_update .features_box {
        width: 33.33%;
    }

    .sillari_villa_feature_update .features_box_right {
        width: 78%;
    }

    .sillari_villa_feature_update .features_list .features_box .features_name {
        width: 90% !important;
    }

    .wedding_event_content_update .resort_desc_details p {
        font-size: 16px;
    }

    .wedding_event_content_update {
        padding-top: 50px;
    }

    .wedding_event_content_update .resort_desc_details {
        padding-bottom: 20px;
    }

    .pench_sec .header_btn {
        margin: 0;
    }
    .contact_form_submit_btn{
        padding: 12px 36px;
    }
    .contact_form_submit_btn_container:after {
        width: 130px;
    }
    .testi_sec_up_ftp{
        padding: 170px 0 100px 0;
    }
    .wedding_banner_content_ftp{
        width: 60%;

    }
    .wedding_banner_content_ftp p{
        font-size: 18px;
    }
    .corporate_event_ftp {
        padding: 70px 0 60px 0;
    }
    .wedding__about__us {
        padding: 50px 0px 0;
    }
    .khindsi_theme_title>h2{font-size: 28px;}
    .khindsi_theme_content{padding: 30px 40px;}
    .khindsi_theme_row{margin: 0 -10px;}
    .khindsi_theme_column {padding: 0 10px;}
    .khindsi_theme_content>h3{font-size: 30px;}
    .about_pench_resort_desciption_title h2{
    font-size: 40px;
    }
    .sillari_villa_feature_update .features_box {
        width: 50%;
        padding: 0 0 40px 0;
    }
    .corporate_event_ftp .villa_features_name p,
    .wedding_about_us_ftp .villa_features_name{
        font-size: 16px;
    }
    .wedding_about_us_ftp .ww_about__us__sec,
    .corporate_event_ftp .ww_about__us__sec{
        align-items: flex-start;
    }
    .wedding_banner_ftp{
       
        background-position:73% center;
    }
    .experiences_home_update .swiper-button-prev, .experiences_home_update .swiper-button-next{
        width: 40px;
        height: 40px;
    }
    .experiences_home_update .swiper-button-prev::after,
    .experiences_home_update .swiper-button-next::after{
        font-size: 17px;
    }
    .wedding_form_con {
        padding: 40px 20px 40px;
    }
    .wedding_form_title p {
        font-size: 16px;
    }
    .wedding_form_input input:not(input[type=submit]) {
        font-size: 16px;
    }
    .wedding_form_input {
        margin: 0 0 25px 0;
    }
    .wedding_form_input_submit .site_btn {
        padding: 20px 35px;
    }
    .wedding_form_input_textarea textarea {
        height: auto;
    }
    .khindsi_title_update h2{
        font-size: 42px;
    }
    .resort_desc_sec_khindsi .resort_desc_details {
        padding: 20px 0 30px 0;
    }
      .features_icon {
        width: 80px;
        height: 80px;
    }

.wedding_form_sec::after{
    display: none;
}
.about_us_up .about_us_left {
    padding: 0 2% 0 0;
}
}

@media only screen and (max-width:767px) {
    .about_us_desc {
        width: 100%;
    }

    .about_us_desc p {
        font-size: 22px;
    }

    .about_us_left {
        float: none;
        width: 100%;
        padding-right: 0;
    }

    .about_us_img_2 {
        top: 0;
        padding: 15px 0 0 0;
        left: 0;
    }

    .about_us_right {
        float: none;
        width: 100%;
        padding: 15px 0 0 0;
    }

    .about_us_title h2 {
        font-size: 42px;
    }

    .about_us_content h3 {
        line-height: 1.4;
    }

    .destinations_box {
        float: none;
        width: 100%;
        padding: 0 20px 20px;
    }

    .destinations_box_inner {
        padding: 70% 0;
    }

    .destinations_content h3 {
        font-size: 40px;
    }

    .pench_left {
        float: none;
        width: 100%;
    }

    .pench_right {
        float: none;
        width: 100%;
        padding: 0;
    }

    .tiger_image_sec svg {
        height: 420px;
    }

    .experiences_content h3 {
        font-size: 16px;
    }

    .experiences_content {
        padding: 20px 10px;
    }

    .experiences_content {
        top: 0px;
    }

    .testi_title h2 {
        font-size: 32px;
    }

    .footer_sec_list {
        gap: 0;
        flex-wrap: wrap;
    }

    .footer_sec_box {
        width: 50%;
        margin: 0 0 50px 0;
    }

    .footer_sec_q_link_box {
        padding: 0;
    }

    .footer_sec {
        padding: 90px 0 30px 0;
    }

    .destinations_content_hover p {
        font-size: 18px;
        line-height: 1.6;
    }

    .destinations_content_hover h3 {
        margin-bottom: 10px;
    }

    .testi_swiper_slider_btn {
        width: 40px;
        height: 40px;
    }

    .testi_swiper_slider_btn::after {
        font-size: 20px;
    }

    .header_left {
        width: 30%;
    }

    .header_right {
        width: 70%;
    }

    .copy_bar_inner p {
        line-height: 1.7;
    }

    .page_header {
        overflow: hidden;
    }

    .page_header_bg img {
        position: relative;
        width: 170%;
        left: -40%;
        max-width: none;
    }

    .page_content_inner h1 {
        font-size: 40px;
        margin: 80px 0 0 0;
    }

    .about__us {
        padding: 30px 0;
    }

    .about_us_all_title h2 {
        font-size: 30px;
    }

    .features_box {
        width: 100%;
        padding: 0 0 30px 0;
    }

    .tiger_reserve_rigth {
        width: 100%;
    }

    .tiger_reserve {
        background-size: cover;
    }

    .safari_pench_left {
        width: 100%;
        float: none;
        padding: 0 0px 18px 0;
    }

    .safari_pench_right {
        width: 100%;
        float: none;
    }

    .safari_pench_content h2 {
        font-size: 30px;
    }

    .safari_pench_content p {
        font-size: 18px;
    }

    .safari_pench_content>ul>li {
        font-size: 18px;
    }

    .safari_pench_content h3 {
        font-size: 22px;
    }

    .safari_booking_sec::before {
        display: none;
    }

    .safari_booking_sec::after {
        display: none;
    }

    .safari_booking_details {
        width: 100%;
    }

    .features__sec_turia .about_us_all_title h2 {
        font-size: 38px;
    }

    .villa_box {
        flex-wrap: wrap;
    }

    .villa_left {
        width: 100%;
    }

    .villa_right {
        width: 100%;
        padding: 12px 0 0 0;
    }

    .villas__list .villa_box:nth-child(2n) {
        flex-direction: row;
    }

    .villas__list .villa_box:nth-child(2n) .villa_right {
        padding: 12px 0 0 0px;
    }

    .features_2__sec_turia .features_box {
        width: 50%;
    }

    .features_2__sec_turia .features_icon {
        width: 65px;
        height: 65px;
    }

    .resort_gallery_image {
        width: 50%;
    }

    .about_us_all_title h2 {
        font-size: 22px;
    }

    .ww_about__us__sec {
        flex-wrap: wrap;
    }

    .ww_about__us__sec .about_us_left {
        width: 100%;
    }

    .ww_about__us__sec .about_us_right {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .features__sec_turia .about_us_all_title h2 {
        font-size: 30px;
    }

    .features__sec_wedding .features_box {
        padding: 0 0 30px 0;
    }

    .venues_sec {
        background-size: 30%;
    }

    .about_us_all_title h2 {
        font-size: 30px;
    }

    .features_name {
        width: 78% !important;
    }

    .header_logo {
        width: 125px;
    }

    .banner_content_heading>h1 {
        font-size: 32px;
    }

    .banner_bg_image img {
        position: relative;
        width: 150%;
        max-width: none;
        left: -25%;
    }

    .banner_content_inner {
        padding-top: 100px;
    }

    .about_us_up .about_us_sec {
        flex-wrap: wrap;
    }

    .about_us_up .about_us_left {
        padding: 0;
        width: calc(100% - 100px);
    }

    .about_us_up .about_us_img_2 {
        left: 100px;
        top: -60px;
    }

    .about_us_right {
        padding: 0 0 0 0;
    }

    .destinations_sec_up .destinations_box {
        width: 100%;
    }

    .award_and_certificate_sec {
        padding: 70px 0 0 0;
    }

    .award_and_certificate_image {
        width: 27%;
    }

    .tiger_reserve::before {
        width: 100%;
        background: #00000047;
    }

    .tiger_reserve {
        background-size: cover;
        background-position: center bottom;
    }

    .about_us_all_title h2 {
        font-size: 40px;
    }

    .safari_pench_details {
        flex-wrap: wrap;
    }

    .safari_pench_details_up .safari_pench_left {
        width: 100%;
    }


    .safari_pench_details_up .safari_pench_right {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .page_header_bg img {
        width: 209%;
        left: -80%;
        max-width: none;
    }

    .page_content_inner h1 {
        margin: 0;
    }

    .villa_box {
        margin: 0 0 60px 0;
    }

    .ww_about__us__sec .about_us_right {
        padding: 20px 0 0 0;
    }

    .villas_sec_sillari .villa_right {
        padding: 20px 0 0;
    }

    .villas_sec_sillari .villas__list .villa_box:nth-child(2n) .villa_right {
        padding: 20px 0 0;
    }

    .villas_sec_sillari .villa_box {
        margin: 0 0 50px 0;
    }

    .villas_sec_sillari .villa_features_box {
        width: 50%;
    }

    .oo_experiences_features_list .oo_experiences_features_box {
        width: calc(100% - 30px);
    }

    .oo_experiences_feature_content {
        padding: 0 35px 50px;
    }

    .oo_experiences_feature_title h3 {
        font-size: 28px;
    }

    .home_features_sec_up_update .features_box {
        width: 50%;
    }

    .about_pench_resort_desciption_title h2 {
        font-size: 22px;
    }

    .villas__sec__update .villa_box {
        margin-bottom: 60px;
    }

    .villas__sec__update {
        padding: 100px 0 0 0;
    }

    .footer_sec_list .footer_sec_box:nth-child(2n) {
        padding-left: 20px;
    }


    .features_list_sec_update .features_icon {
        width: 65px;
        height: 65px;
        margin: 0px 15px 0px 0px;
    }

    .features_list_sec_update .features_box {
        width: 50%;
    }

    .features__sec_wedding .features_list_sec_update .features_box {
        padding: 0 0 50px 0;
    }

    .venues_tab_inner_update {
        justify-content: flex-start;
        margin: 50px auto;
        width: max-content;
        max-width: 100%;
    }

    .venues_sec_gallery_page {
        padding: 70px 0px 20px;
    }

    .gallery_pic_img_container {
        margin: -5px;
    }

    .gallery_pic_img {
        width: 50%;
        padding: 5px;
    }

    .sillari_villa_feature_update .features_box {
        width: 100%;
    }

    .sillari_villa_feature_update .features_name p {
        font-size: 18px;
    }

    .wedding_event_content_update {
        padding-top: 20px;
    }

    .pench_sec .header_btn {
        margin: 0 0 50px 0;
    }
    .venues_sec_gallery_page.venues_sec_gallery_page_update.venues___sec__final__update {
        padding-top: 15px;
    }
    .wedding_banner_img_ftp img{
        max-width: none;
        width: 150%;
        }
       .wedding_banner_content_ftp p{
        font-size: 16px;
        }
       .wedding_banner_content_ftp {
        width: 68%;
        }
        .wedding_banner_content_container{
        pad: 0 8%;
        }
        .wedding_banner_ftp {
            padding: 50px 0px;
            margin: 0 ;
        }
        .wedding_about_us_ftp .wedding_about_us_ftp{
            margin-bottom: 0px;
        }
        .corporate_event_ftp {
            padding: 0px 0 50px 0;
        }
        .khindsi_theme_row{flex-direction: column;}
        .khindsi_theme_column {width: 100%;}
        .khindsi_theme_column:not(:first-child){margin-top: 70px;}
        .khindsi_theme_row{margin: 0 -15px;}
        .khindsi_theme_column {padding: 0 15px;}
        .khindsi_banner .page_content_inner>h1{font-size: 32px;}
        .about_pench_resort_desciption_title h2 {
         font-size: 30px;
         }
         .sillari_villa_feature_update .features_box_right{
             width: auto;
        }
        .sillari_villa_feature_update .features_box_left {
            width: auto;
        }
        
        .corporate_event_ftp .villa_features_box,
        .wedding_about_us_ftp .villa_features_box{
            width: 50%;
            padding: 5px 0px;
        }
        .wedding_about_us_ftp .villa_features{
            margin-top: 20px;
        }
        .elementor-150 .elementor-element.elementor-element-9861300 > .elementor-element-populated{
            padding: 20px 20px 0 20px;
        }
        .room_check_form {
            margin-top: 0px;
            padding-top: 20px;
            overflow: hidden;
        }
        .room_check_sec {
            filter: none;
            backdrop-filter: blur(0);
            background: #fff;
        }
        .check_fields li {
            padding: 10px 20px ;
            width: 100%;
        }
        .field_title p {
            color: #000;
            margin-bottom: 8px;
        }
        .field_input select {
            color: #000;
            border-color: #000;
            width: 100%;
        }
        .room_check_input_style {
            color: #000;
            border-bottom: 1px solid #000;
            border-color: #000;
        }
        .check__btn__form__submit {
            color: #000;
            width: 100%;
            height: auto;
            border: 1px solid #000;
            border-radius: 0px;
        }
        
        .check_btn_bg {
            border-bottom: 1px solid #000;
            padding-bottom: 8px;
        }
        .check_fields li:first-child{
            padding-top: 0px;
        }
        .check_fields li:nth-child(even) {
            padding: 10px 20px;
        }
        .room_check_input_style{
            border-radius: 0px;
        }
        .room_check_sec{
            padding: 30px 0 20px;
        }
        .check__btn__form__submit br{
            display: none;
        }
        .room_check_input_style {
            width: 100%;
        }
        .tiger_img_ftp{
            transform: scale(1);
        }
        .banner_bg_video video {
            width: 200%;
            
        }
        .khindsi_banner_video>video{
            width: 100%;
        }
        .khindsi_banner_bg video {
            width: 200%;
            margin-left: -50%;
        }
       
        .venues_tab_box .site_btn{
            min-width: 200px;
        }
      
        .venues_tab_box:last-child{
            margin: 0;
        }
        .wedding_form_title h2{
            font-size: 28px;
        }
        .experiences_home_update .swiper-button-prev, .experiences_home_update .swiper-button-next {
            top: 55%;
        }
        .check_btn{
            margin-top: 25px;
        }
        .check_fields li:nth-child(even) {
            padding: 0px 20px 35px;
        }
        .check_fields li {
            padding: 0px 20px 35px;
        }
        .parsley-errors-list li{
            font-size: 14px;
        }
        .safari_pench_image img {
            width: 100%;
            }
            .header_sec_new_right .site-menu{
                display: none;
            }
            .hh__burger__btn{
                display: block;
                padding-bottom: 6px;
            }
            .header_sec_new_right {
                width: auto;
            }
            .hh__burger__btn .site-menu{
                margin: 0;
            }
            
            .header_logo {
                margin: 0 auto;
            }
            .header_btn {
                margin: 0 0 0 0px;
            }
            .header_2_sec_new {
                align-items: flex-end;
            }
            .header_btn a {
                padding: 8px 5px;
            }
            .header_logo {
                width: 145px;
            }
            .header_sec_new {
                padding: 16px 0;
            }
            .ff__feature__sec .features_icon{
                width: 70px;
                height: 70px;
            }
            .ff__feature__sec .features_name p {
                font-size: 16px;
            }
            .ff__feature__sec .features_box_left {
                width: 65px !important;
            }
            .ff__feature__sec .features_box {
                width: 50% !important;
            }
            .banner_content_sec{
                top: auto;
                bottom: 10%;
            }
            .banner_content_inner{
                padding: 0px;
            }
            .sillari_villa_feature_update .features_list .features_box .features_name{
                width: auto !important;
            }
            .ff__feature__sec .features_box_left {
                width: auto !important;
            }
            .ff__feature__sec .features_box_left {
                width: auto !important;
            }
            .features__sec__sillari .features_list .features_box:nth-child(3n) .features_name {
                width: auto !important;
            }
          
            .about_us_up .about_us_left {
                width: 100%;
            }
            .safari_video_cr {padding: 15px 10px;}
}
@media only screen and (max-width:580px) {
    .header_logo {
        width: 132px;
    }
    .field_input select {
        font-size: 18px;
    }
}

@media only screen and (max-width:479px) {
    .banner_content_heading>h1 {
        font-size: 45px;
    }

    .header_btn {
        display: none;
    }

    .header_left {
        width: 50%;
    }

    .header_right {
        width: 80%;
    }

    .about_us {
        padding: 50px 0;
    }

    .about_us_desc p {
        font-size: 18px;
    }

    .destinations_sec {
        padding: 60px 0;
    }

    .destinations_content_hover p {
        font-size: 16px;
        line-height: 1.4;
    }

    .pench_sec {
        padding: 80px 0 80px 0;
    }

    .tiger_image_sec svg {
        height: 335px;
    }

    .experiences_swiper_slider .swiper-slide.swiper-slide-active .experiences_img img {
        transform: scale(1.3);
    }

    .experiences_swiper_slider .swiper-slide .experiences_img img {
        transform: scale(1);
    }

    .testi_sec {
        padding: 60px 0;
    }

    .testi_slider {
        width: 78%;
    }

    .testi_content p {
        font-size: 16px;
    }

    .footer_sec_box {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .footer_sec_nav_link_box {
        width: 50%;
        padding: 0 0 0 10px;
    }

    .footer_sec_q_link_box {
        width: 50%;
    }

    .footer_links_heading h2 {
        margin: 0 0 15px 0;
    }

    .field_input select {
        width: 100%;
    }

    .check_fields li {
        padding: 15px 15px 15px 0;
    }

    .check_fields li:nth-child(even) {
        padding-left: 20px;
        padding-right: 0;
    }

    .page_content_inner h1 {
        font-size: 35px;
    }

    .page_header_bg img {
        width: 200%;
        left: -70%;
    }

    .page_404_header .page_content_inner h1 {
        font-size: 4rem;
    }

    .page_404_header .page_content_inner p {
        font-size: 1.54rem;
    }

    .resort_desc_details {
        width: 100%;
    }

    .features__sec_turia .features_title {
        margin: 0px 0 40px 0;
    }

    .features__sec_turia .about_us_all_title h2 {
        font-size: 30px;
    }

    .features__sec_turia .features_icon {
        width: 75px;
        height: 75px;
    }

    .features_2__sec_turia .features_box {
        width: 100%;
        padding: 0 0 25px 0;
    }

    .features_2__sec_turia .features_icon {
        width: 75px;
        height: 75px;
    }

    .features_2__sec_turia .features_box_left {
        width: 25%;
    }

    .resort_gallery_image {
        width: 100%;
    }

    .resort_gallery_sec {
        padding: 80px 0 0 0;
    }

    .villa_features_box {
        width: 50%;
    }

    .page_content_inner h1 {
        margin: 50px 0 0 0;
    }

    .features_box_left {
        width: 28%;
    }

    .features_box_right {
        width: 72%;
    }

    .wedding_form_con {
        width: 100%;
    }

    .about_us_all_title h2 {
        font-size: 24px;
    }

    .features_box_left {
        width: 100px;
    }

    .banner_content_heading>h1 {
        font-size: 28px;
    }

    .header_btn {
        display: block;
    }

    .header_2_sec_new {
        margin-top: 10px;
    }

    .banner_content_inner {
        padding-top: 150px;
    }

    .destinations_sec_up .destinations_content h3 {
        font-size: 32px;
    }

    .destinations_sec_up .destinations_content_hover h3 {
        font-size: 22px;
    }

    .destinations_sec_up .destinations_content p {
        font-size: 15px;
    }

    .features_sec {
        padding: 0 0 60px 0;
    }

    .features_title {
        margin: 0 0 30px 0;
    }

    .homepage__title h2 {
        font-size: 32px;
    }

    .award_and_certificate_image {
        width: 42%;
    }

    .testi_sec {
        padding: 170px 0 100px 0;
    }

    .page_header_bg img {
        width: 260%;
        left: -85%;
    }

    .header_2_sec_new {
        margin-top: 0px;
    }

    .page_content_inner {
        padding: 110px 0 0 0;
    }

    .page_header_about_pench_up .page_header_bg img {
        width: 133%;
        left: 0;
    }

    .page_header_about_pench_up .page_content_inner h1 {
        margin: 0;
    }

    .about_us_all_title h2 {
        font-size: 32px;
    }

    .safari_pench_title {
        margin: 0 0 30px 0;
    }

    .safari_pench_content h2 {
        margin: 45px 0 20px 0;
    }

    .page_content_inner h1 {
        margin: 0;
    }

    .features__sec_turia__up {
        padding: 60px 0 60px 0;
    }

    .villas_sec {
        padding: 60px 0 0 0;
    }

    .features__sec_wedding {
        padding-top: 60px;
    }

    .features__sec_wedding .we_features_box.features_list .features_box .features_name {
        width: 100% !important;
    }

    .testimonial_slider_con {
        width: 100%;
    }

    .villas_sec_sillari .villa_box:last-child {
        margin-bottom: 0;
    }

    .villas_sec_sillari .villa_box:last-child {
        margin-bottom: 50px;
    }

    .resort_desc_sec_khindsi .resort_desc_details {
        padding: 50px 0 30px 0;
    }

    .resort_gallery_sec {
        padding: 40px 0 0 0;
    }

    .resort_desc_sec_khindsi .resort_desc_details {
        padding-bottom: 0;
    }

    .home_features_sec_up_update .features_box {
        width: 100%;
    }

    .venues_sec_gallery_page.venues_sec_gallery_page_update {
        padding-top: 0;
    }

    .oo_experiences_features_list .oo_experiences_features_box {
        width: calc(100% - 0px);
        margin: 15px 0px;
    }

    .oo_experiences_feature_content {
        padding: 0 15px 25px;
    }

    .features_list_sec_update .features_box {
        width: 100%;
    }

    .features_list_sec_update .features_icon {
        width: 75px;
        height: 75px;
        margin: 0px 35px 0px 0px;
    }

    .features__sec_wedding .features_list_sec_update .features_box {
        padding: 0 0 25px 0;
    }

    .venues_sec_gallery_page {
        padding: 50px 0px 0px;
    }

    .gallery_pic_img {
        padding: 3px;
    }

    .gallery_pic_img_container {
        margin: -3px;
    }

    .sillari_villa_feature_update .features_box {
        padding: 0 0 30px 0;
    }

    .sillari_villa_feature_update .features_box {
        width: 100%;
    }

    .sillari_villa_feature_update .features_box_right {
        width: 72%;
    }

    .sillari_villa_feature_update .villa_features_left {
        margin-right: 5px;
    }

    .experiences_home_update .experiences_content h3 {
        font-size: 14px;
    }

    .experiences_home_update .experiences_content {
        padding: 10px 10px;
        margin-bottom: 40px;
        top: 20px;
    }
    .venues___sec__final__update .venues_tab_inner_update {
        margin-top: 35px;
        margin-bottom: 35px;
    }
    .ee__experiences__sec .oo_experiences_features_list {
        margin: 0 0px;
    }
    .room_check_input_style {
        width: 100%;
    }
    .room_check_sec .field_input select {
        width: 100%;
    }
    .footer_sec_list .footer_sec_box:nth-child(2n) {
        padding-left: 0px;
    }
    .resort__desc__sec__update {
        padding-top: 60px;
    }
    .about_pench_resort_desciption_title h2 {
        font-size: 30px;
    }
    .resort_desc_details p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .resort_desc_details {
        padding-bottom: 45px;
    }
 
    .features__sec_turia__up_ftp .features_box_left {
        width: auto;
    }
    .features__sec_turia__up_ftp .features_icon{
        margin-right: 10px;
        padding: 20px 15px;
    }
   
    .corporate_event_ftp {
        padding: 0px 0 50px 0;
    }
    .banner_bg_video video{
        width: 150%;
    }
    .khindsi_theme_sec{padding: 0 0 70px 0;}
.khindsi_theme_column:not(:first-child){margin-top: 50px;}
.khindsi_theme_title>h2 {font-size: 23px;}
.khindsi_theme_content {padding: 25px 25px;}
.khindsi_theme_content>h3{font-size: 25px;}
.khindsi_theme_content {padding: 25px 20px;}
.khindsi_banner .page_content_inner>h1{font-size: 28px;}


.venues_sec_gallery_page {
    padding: 0;
}


.room_check_form {
    margin-top: 0px;
    padding-top: 20px;
    overflow: hidden;
}
.room_check_sec {
    filter: none;
    backdrop-filter: blur(0);
    background: #fff;
}
.check_fields li {
    padding: 10px 20px ;
    width: 100%;
}
.field_title p {
    color: #000;
    margin-bottom: 8px;
}
.field_input select {
    color: #000;
    border-color: #000;
    width: 100%;
}
.room_check_input_style {
    color: #000;
    border-bottom: 1px solid #000;
    border-color: #000;
}
.check__btn__form__submit {
    color: #000;
    width: 100%;
    height: auto;
    border: 1px solid #000;
    border-radius: 0px;
}

.check_btn_bg {
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
}
.check_fields li:first-child{
    padding-top: 0px;
}
.check_fields li:nth-child(even) {
    padding: 10px 20px;
}
.room_check_input_style{
    border-radius: 0px;
}
.room_check_sec{
    padding: 30px 0 20px;
}
.check__btn__form__submit br{
    display: none;
}
.header_sec_new_center{
    width: auto;
}
.header_logo {
    width: 120px;
}
.header_btn a {
    padding: 8px 16px;
}
.header_btn {
    margin: 0;
}
.header_2_sec_new{
    align-items: flex-end;
}
.sillari_villa_feature_update .features_box_left {
    width: auto;
}
.features__sec_turia .features_icon{
    margin-right: 7px;
}

.corporate_event_ftp .villa_features_box,
.wedding_about_us_ftp .villa_features_box{
    width: 50%;
    padding-right: 10px;
}
.corporate_event_ftp .villa_features_icon, .wedding_about_us_ftp .villa_features_icon{
    width: 25px;
}
.wedding_banner_content_ftp {
    width: 85%;
    }
    .wedding_banner_ftp{
        background-position: 69% center;
    }
    .site-menu{
        margin-left: 25px;
    }
    .page_content_inner {
        padding: 110px 20px 0 20px;
    }
    .banner_bg_video video {
        width: 200%;        
    }
    .khindsi_banner_video>video{
        width: 173%;
    }
    .khindsi_banner_bg video {
        width: 180%;
        margin-left: -40%;
    }
    .venues_tab_box .site_btn{
        padding: 11px 0px;
        min-width: auto;
        width: 145px;
        font-size: 14px;
    }
    .venues_tab_box{
        margin-right: 10px;
    }
    .venues___sec__final__update .venues_tab_inner_update{
        margin: 25px auto;
    }
    .wedding_form_title h2{
        font-size: 25px;
    }
    .wedding_form_input_submit .site_btn {
        padding: 15px 35px;
    }
    .khindsi_title_update h2{
        font-size: 32px;
    }
    .resort_desc_sec_khindsi .resort_desc_details {
        padding: 10px 0 30px 0;
    }
    .banner_bg_video video,
    .khindsi_banner_video>video,
    .khindsi_banner_bg video
    {
        width: 100%;
        height: 100vh;
        object-fit: cover;
        margin-left: 0px;
    }
    .experiences_home_update .swiper-button-prev, .experiences_home_update .swiper-button-next {
        top: 50%;
    }
    .header_btn .site_btn {
        font-size: 14px;
    }
    .header_btn .site_btn {
        font-size: 13px;
        padding: 8px 11px;
    }
    .header_logo {
        width: 120px;
    }
    .menu_expand i {
        height: 4px;
        border-radius: 0px;
        margin: 0 0 7px 0;
    }
    .venues_tab_inner_update .venues_tab_box .site_btn {
        width: 155px;
        font-size: 12px;
    }
    .khindsi_title_update{
        margin-top: 40px;
    }
    .ff__feature__sec  .features_icon{
        padding: 12px;
        width: 50px;
        height: 50px;
    }
    .ff__feature__sec .features_name {
        width: 100% !important;
        padding-right: 14px !important;
    }
   
    .ff__feature__sec {
        padding: 60px 0 20px 0;
    }
    .feature_name_break{
        word-break: break-all;
    }
    .banner_content_inner {
        padding-top: 0;
    }
    .home_features_sec_up_update .features_box {
        width: 50%;
        padding-right: 10px;
    }
    .features_box_left {
        width: auto !important;
    }
    .home_features_sec_up_update .features_list .features_box .features_name {
        width: auto !important;
    }
    .features_name p {
        font-size: 16px;
    }
    .features_icon {
        width: 50px;
        height: 50px;
        padding: 12px;
        margin-right: 7px;
    }
    .testi_plateform_logo img {
        width: 150px;
    }
    .home_rating_text{
        font-size: 14px;
    }
    .testi_review_count span{
        font-size: 14px;
    }
    .jq-star{
        width: 16px !important;
        height: 16px !important;
    }

}

