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

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@font-face {
    font-family: 'Lato-Regular';
    src: url('../fonts/Lato-Regular.ttf');
}

@font-face {
    font-family: 'Lato-Light';
    src: url('../fonts/Lato-Light.ttf');
}

@font-face {
    font-family: 'Lato-Bold';
    src: url('../fonts/Lato-Bold.ttf');
}

@font-face {
    font-family: 'OpenSans-Medium';
    src: url('../fonts/OpenSans-Medium_0.ttf');
}

@font-face {
    font-family: 'OpenSans-bold';
    src: url('../fonts/OpenSans-Bold_0.ttf');
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url('../fonts/OpenSans-Regular.ttf');
}

@font-face {
    font-family: 'OpenSans-Light';
    src: url('../fonts/OpenSans-Light_0.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay-Black';
    src: url('../fonts/PlayfairDisplay-Black.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay-Bold';
    src: url('../fonts/PlayfairDisplay-Bold.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay-Medium';
    src: url('../fonts/PlayfairDisplay-Medium.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay-Regular';
    src: url('../fonts/PlayfairDisplay-Regular.ttf');
}

@font-face {
    font-family: 'PlayfairDisplay-SemiBold';
    src: url('../fonts/PlayfairDisplay-SemiBold.ttf');
}

body,
html {
    width: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

:root {
    --main_color: #ffa300;
    --white: #fff;
    --black: #000;
    --subhead: #8b775d;
    --bg_color: #eac986;
    --btn_color: #edaa42;
    --text_color: #a2abb3
}

body {
    font-size: 18px;
    font-family: 'Lato';
    color: var(--white);
}

.web-view {
    display: block;
}

.mobile-view {
    display: none;
}

.main_wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--white)
}

/* *************************************banner************************* */

.banner {
    background-image: url(../img/slider.webp);
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 60px;
    background-position: 0 -70px;
}

.banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.header_top {
    background-color: #265026;
    /*var(--subhead);*/
    width: 100%;
    z-index: 1;
    position: relative;
}

.header_top .nav-link {
    color: var(--white);
    padding: 10px 9px;
    font-size: 18px;
}

.header_top svg {
    width: 20px;
    margin-right: 10px;
}

.header_toplink .nav-link:first-child {
    margin-right: 30px;
}

.header_top i {
    font-size: 20px;
    font-size: 18px;
}

.main_menu .menu_items .nav-item {
    padding: 0px 15px;
}

.main_menu .menu_items .nav-link,
.main_menu .menu_items .nav-link:hover,
.main_menu .menu_items .nav-link:focus {
    color: var(--white);
    font-size: 18px;
    padding: 0 5px;
}

.main_menu .menu_items .nav-link.active {
    color: var(--white);
    /* border-bottom: 1px solid var(--main_color);*/
}

.main_menu .navbar-brand {
    width: 160px;
    display: block;
}

.dropdown-toggle::after {
    width: 7px;
    height: 7px;
    border: 1px solid;
    transform: rotate(45deg);
    border-top: 0;
    border-left: 0;
}

.banner-carousel .owl-dots {
    display: none !important;
}

.ban-img img {
    width: 100% !important;
}

.banner_title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 100px;
}

.banner_title h1 {
    font-size: 70px;
    font-family: 'Lato';
    word-spacing: 10px;
}

.banner_title h2 {
    font-family: 'PlayfairDisplay-SemiBold';
    font-size: 40px;
}

.banner_form {
    background-color: #FFFCE3;
    border-radius: 10px;
    padding: 20px 20px;
    position: relative;
    z-index: 1;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.banner_input {
    width: calc(20% - 20px);
    position: relative;
}

.banner_input i {
    position: absolute;
    color: var(--main_color);
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.banner_input input,
.banner_input select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 10px;
    border-radius: 5px;
    color: #555;
}

.banner_input select {
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari and Chrome */
    appearance: none;
    position: relative;
}

.banner_select {
    position: relative;
}

.banner_select::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border: 1px solid #000;
    transform: rotate(45deg) translateY(-50%);
    border-top: 0;
    border-left: 0;
    z-index: 1;
    cursor: pointer;
    right: 20px;
    top: 50%;
    margin-top: -3px;
}

.banner_input button {
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    color: var(--white);
    font-family: 'Lato-Bold';
}

/* *************************************banner************************* */

/*****************************our_priority***************************** */

.our_priority {
    padding: 70px 0;
    color: var(--black);
}

.left_headh5 {
    font-size: 30px;
    color: #ada290;
    margin-bottom: 0;
}

.left_headh3 {
    font-size: 60px;
    font-family: 'Lato';
    color: var(--btn_color);
}

.left_priority p {
    font-size: 19px;
    text-align: justify;
}

.load_more_btn {
    background-color: #E8CEA1;
    color: #444547;
    padding: 10px 12px;
    border: 0;
    border-radius: 4px;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
}

.load_more_btn span {
    color: #444547;
    display: inline-flex;
    border-radius: 50%;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.left_priority {
    padding-right: 30px;
}

.bg-video-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url(../img/banner.mp4) no-repeat center center/cover;
}

.bg-video-wrap video {
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.bg-video-wrap .overlay {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .7) 50%);
    background-size: 3px 3px;
    z-index: 2;
}

.bg-video-wrap h1 {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    max-width: 400px;
    width: 100%;
    height: 50px;
}

.phase-list-title {
    font-size: 20px;
    font-family: 'Lato';
    color: #725940;
    display: block;
    align-items: center;
    z-index: 1;
    position: relative;
    margin-bottom: 15px;
}

.phsae-unit-list {
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
}

.phsae-unit-list li {
    color: #314658;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
    margin-right: 30px;
}

.phsae-unit-list li span {
    color: #725940;
    font-weight: 600;
}

.page-modal {
    border: none;
    border-radius: 0px;
    padding: 0px;
}

.page-modal .modal-header {
    padding: 0px;
    border-bottom: none;
}

.page-modal .modal-body {
    padding: 0px;
}

.page-modal .modal-body img {
    width: 100%;
}

.page-modal .modal-header .close {
    position: absolute;
    top: -16px;
    right: -33px;
    background: #265026;
    border-radius: 0px;
    padding: 0px 5px;
    margin: 0px;
    line-height: 28px;
    opacity: 1;
    color: #fff;
}

/*****************************our_priority***************************** */

/*****************************anays_rooms***************************** */

.anays_rooms {
    padding: 30px 0;
}

.anays_rooms_heading {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.anays_rooms_heading::before {
    left: 0;
}

.anays_rooms_heading::after {
    right: 0;
}

.left_head4 {
    font-size: 30px;
    font-family: 'Lato';
    color: #725940;
    /*var(--btn_color)*/
    ;
    display: block;
    align-items: center;
    text-align: center;
    z-index: 1;
    position: relative;
}

.anays_rooms_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.anays_rooms_row_div {
    width: calc(50% - 8px);
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.anays_rooms_row_div_left {
    background-image: url(../img/img01.webp);
    background-size: cover;
    height: 400px;
    background-repeat: no-repeat;
}

.anays_rooms_row_div_right {
    background-image: url(../img/img02.webp);
    background-size: cover;
    height: 195px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.anays_rooms_row_div_right_inner {
    width: calc(50% - 8px);
    height: 195px;
    display: flex;
    flex-direction: column;
}

.anays_rooms_row_div_bottom {
    display: flex;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

.anays_rooms_row_div_right_inner_left {
    background-image: url(../img/img03.webp);
    background-size: cover;
}

.anays_rooms_row_div_right_inner_right {
    background-image: url(../img/img04.webp);
    background-size: cover;
}

.anays_rooms_row_heading {
    background: #f3f1eb;
    display: flex;
    flex-direction: column;
    width: fit-content;
    color: #000;
    margin-left: auto;
    margin-top: 10px;
    padding: 5px 20px;
}

.anays_rooms_amount {
    color: var(--main_color);
}

.anays_rooms_span {
    font-size: 14px;
}

.anays_room_bottom_link {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
}

.anays_room_bottom_link span {
    font-family: 'Lato';
    font-size: 18px;
}

.anays_room_bottom_link a {
    color: #fff;
    text-decoration: none;
}

.anays_room_bottom_link a i {
    color: var(--white);
}

/*****************************anays_rooms***************************** */

/*****************************big_world***************************** */

.big_world {
    background-color: var(--bg_color);
    padding: 50px 0;
}

.big_worldImg {
    position: relative;
}

.img_relative::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
    left: 0;
    top: 0;
    z-index: 1;
}

.img_relative {
    position: relative;
}

.big_worldImgposition {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.bigworld_head {
    font-size: 22px;
    color: #3c484b;
}

.bigworld_head span {
    font-size: 24px;
    color: #10283d;
    font-family: 'Lato';
}

.bigworld_div {
    padding-left: 20px;
}

.bigworld_explore {
    font-size: 30px;
    font-family: 'PlayfairDisplay-Black';
}

.bigworld_para {
    color: #000;
    font-size: 17px;
}

/*****************************big_world***************************** */

/*****************************anays_journeys***************************** */

.anays_journeys {
    background-image: url('../img/bg2.webp');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 50px 0px 20px 0px;
    background-position: center;
    margin-bottom: 40px;
}

.anays_journeys::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, .7);
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.journeys_container {
    z-index: 1;
    position: relative;
}

.anays_journeys .bigworld_head,
.anays_journeys .bigworld_para {
    color: var(--white);
}

.anays_journeys .load_more_btn {
    background-color: var(--white);
    color: var(--black);
}

.anays_journeys .load_more_btn span {
    background-color: #8b775d;
    color: #fff;
}

.anays_journeys .bigworld_explore {
    font-family: 'Lato';
}

.anays_journeys .bigworld_para {
    color: #ddd;
    font-size: 19px;
}

.anays_journeys img {
    padding: 10px 0px;
}

/*****************************anays_journeys***************************** */

/*****************************anays_journeys***************************** */

.anays_story {
    color: #000;
}

.story_slider_head {
    font-family: 'PlayfairDisplay-SemiBold';
    font-size: 23px;
    margin-bottom: 5px;
}

.story_slider_date {
    color: #8b775d;
    font-size: 20px;
}

.story_slider_para {
    font-size: 18px;
}

.story_slider .load_more_btn {
    transform: translateY(30px);
}

.story_slider .card {
    margin-bottom: 35px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
}

.story_slider .load_more_btn span {
    background-color: #fff;
    color: #8b775d;
}

.slider {
    width: 100%;
}

.slick-slide {
    margin: 0px 0px;
}

.slick-slide img {
    width: 100%;
}

.slick-prev:before,
.slick-next:before {
    color: black;
}

.slick-slide {
    transition: all ease-in-out .3s;
}

.slick-current {
    opacity: 1;
}

.story_slider .card-header {
    padding: 0;
}

.anays_story .slick-dots li {
    background: #000;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    opacity: .5;
}

.slick-dots li {
    margin: 0 3px;
}

.Homesslider .slick-dots li.slick-active button::before {
    font-size: 19px;
}

.resident_slider .slick-dots li.slick-active button::before {
    font-size: 17px;
}

.videoslider .slick-dots li.slick-active button::before {
    font-size: 15px;
    border: 1px solid #000;
    border-radius: 50%;
}

.slick-dots li {
    margin: 0 3px;
}

.anays_story .slick-dots .slick-active {
    opacity: 1;
    width: 12px;
    height: 12px;
}

.slick-dots button {
    display: none !important;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/*****************************anays_journeys***************************** */

/*****************************test_slider***************************** */

.test_slider {
    text-align: center;
    padding: 80px 0;
}

.test_slider .card {
    background-color: #ddd;
    /* padding: 20px 30px;*/
    border: 0;
    border-radius: 10px;
}

.test_slider h5,
.test_slider h6,
.test_slider p {
    color: #000;
}

.test_slider h5 {
    font-family: 'Lato';
    color: #8b775d;
}

.test_slider h6 {
    font-family: 'Lato';
}

.test_img {
    width: 100%;
    height: 270px !important;
}

.test_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 3/2;
}

.call-buton {
    z-index: 99999;
    position: fixed;
    right: 2rem;
    bottom: 4rem;
}

.call-buton .cc-calto-action-ripple {
    background: rgb(32 69 139);
    width: 3rem;
    height: 3rem;
    padding: 1rem;
    margin: 0 auto 10px;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    font-size: 16px;
}

@-webkit-keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(144, 164, 255, 0.2), 0 0 0 0 rgba(144, 164, 255, 0.2), 0 0 0 5px rgba(144, 164, 255, 0.2), 0 0 0 10px rgba(144, 164, 255, 0.2);
        box-shadow: 0 4px 10px rgba(144, 164, 255, 0.2), 0 0 0 0 rgba(144, 164, 255, 0.2), 0 0 0 5px rgba(144, 164, 255, 0.2), 0 0 0 10px rgba(144, 164, 255, 0.2);
    }
    100% {
        -webkit-box-shadow: 0 4px 10px rgba(144, 164, 255, 0.2), 0 0 0 5px rgba(144, 164, 255, 0.2), 0 0 0 10px rgba(144, 164, 255, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
        box-shadow: 0 4px 10px rgba(144, 164, 255, 0.2), 0 0 0 5px rgba(144, 164, 255, 0.2), 0 0 0 10px rgba(144, 164, 255, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
    }
}

@keyframes cc-calto-action-ripple {
    0% {
        -webkit-box-shadow: 0 4px 10px rgba(144, 164, 255, 0.2), 0 0 0 0 rgba(144, 164, 255, 0.2), 0 0 0 5px rgba(144, 164, 255, 0.2), 0 0 0 10px rgba(144, 164, 255, 0.2);
        box-shadow: 0 4px 10px rgba(144, 164, 255, 0.2), 0 0 0 0 rgba(144, 164, 255, 0.2), 0 0 0 5px rgba(144, 164, 255, 0.2), 0 0 0 10px rgba(144, 164, 255, 0.2);
    }
    100% {
        -webkit-box-shadow: 0 4px 10px rgba(144, 164, 255, 0.2), 0 0 0 5px rgba(144, 164, 255, 0.2), 0 0 0 10px rgba(144, 164, 255, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
        box-shadow: 0 4px 10px rgba(144, 164, 255, 0.2), 0 0 0 5px rgba(144, 164, 255, 0.2), 0 0 0 10px rgba(144, 164, 255, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
    }
}

span.num {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.play-btn {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }
    25% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1.2);
    }
    100% {
        transform: scale(1, 1);
    }
}

.play-btn .icon {
    display: block;
    position: relative;
    animation-timing-function: ease;
    animation: pulse 2s infinite;
}

.play-btn .icon i {
    background: #10283d;
    width: 30px;
    height: 30px;
    line-height: 31px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
}

.play-btn .text {
    font-size: 18px;
    color: #fff;
    text-align: center;
    background: #10283d;
    padding: 3px 10px;
    display: inline-block;
}

.test_slider .card-body {
    padding: 0;
}

.test_slider p {
    font-size: 12px;
    text-align:justify;
    padding-inline:10px;
}

.test_div_img {
    width: 35px;
    height: 35px;
    display: block;
    margin: auto;
    margin-top: 10px;
}

.slick-center {
    transform: scale(1.3);
    z-index: 1;
    position: relative;
}

.slick-center .test_slider .card {
    background-color: var(--bg_color);
}

.testimonial .slick-dots {
    bottom: 35px;
}

.testimonial li[role="presentation"] {
    background-color: #000;
    border-radius: 50%;
    width: 6px;
    height: 6px;
}

.testimonial .slick-active[role="presentation"] {
    background-color: #fff;
    width: 8px;
    height: 8px;
}

.testimonial .slick-prev.slick-arrow,
.testimonial .slick-next.slick-arrow {
    z-index: 9;
    top: 115px;
}

.testimonial .slick-prev.slick-arrow {
    left: 0%;
    top: 50%;
}

.testimonial .slick-next.slick-arrow {
    right: 0%;
    top: 50%;
}

.testimonial .slick-prev:before,
.testimonial .slick-next:before {
    font-size: 40px;
    color: #fff;
}

/*****************************test_slider***************************** */

/*****************************footer***************************** */

.footer {
    margin-top: auto;
    background-color: #383838;
    padding: 50px 0px;
    padding-bottom: 20px;
}

.footer_address {
    padding-right: 8px;
}

.footer_address li {
    display: flex;
    align-items: baseline;
    margin-bottom: 13px;
    font-size: 18px;
    width: 100%;
}

.footer_address i {
    font-size: 14px;
}

.footer_address span {
    padding-left: 0px;
    line-height: 29px;
}

.footer_address li img {
    width: 230px;
}

.foottext {
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 50px;
    font-size: 18px;
    letter-spacing: 1px;
}

.footer_head {
    font-size: 21px;
    margin-bottom: 10px;
    color: #EBC005;
}

.footer_link li {
    margin-bottom: 4px;
}

.footer_link li a {
    color: #dddcdc;
    font-size: 18px;
    text-decoration: none;
    display: block;
}

.footer_map {
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px;
    padding-bottom: 3px;
}

.footer_map iframe {
    border: 0;
    width: 100%;
    height: 200px;
}

.footer_social a {
    color: var(--white);
    padding: 15px 9px;
}

.footer_social i {
    font-size: 24px;
    padding: 0px 10px;
}

.pstart {
    padding-left: 0;
}

.paddX {
    padding-left: 0;
    padding-right: 0;
}

/*****************************footer***************************** */

/*****************************about***************************** */

.subpages.main_menu .menu_items .nav-link {
    color: #000;
}

.dropdown_navitem {
    position: relative;
}

.dropdown_navitem a {
    cursor: pointer;
}

.dropdown_sub {
    display: none;
    position: relative;
}

.dropdown_sub::after {
    z-index: -10;
    content: "";
    position: absolute;
    width: 5px;
    height: 0;
    margin-left: 0;
    bottom: 0;
    top: 15px;
    left: 0;
    box-sizing: border-box;
    border: 10px solid #fff;
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(45deg);
    box-shadow: -1px 3px 3px 0 rgba(0, 0, 0, 0.4);
}

.dropdown_multii,
.dropdown_sub {
    position: absolute;
    background: #fff;
    padding: 0;
    min-width: 200px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    top: calc(100% + 10px);
    left: 0;
    list-style: none;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 99;
}

.dropdown_sub {
    top: 0;
    left: calc(100% + 10px);
    transform: translateX(0%);
}

.dropdown_navitem:hover .dropdown_multii {
    visibility: visible;
}

.dropdown_multii li a {
    padding: 10px 20px;
}

.dropdown_navitem i {
    font-size: 14px;
    margin-left: 3px;
}

.subpage_breadcrumb.homebred {
    background-image: url(../img/bg03.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0px 50px 0px;
    position: relative;
    /* background-position: bottom -100px left;*/
}

.subpage_breadcrumb.innerbread {
    background-image: url(../img/bg03.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0px 20px 0px;
    position: relative;
    /* background-position: bottom -100px left;*/
}

.subpage_breadcrumb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0,0,0,.5);*/
    top: 0;
    left: 0;
}

.subpage_breadcrumb .breadcrumb {
    margin-bottom: 0;
    z-index: 1;
    position: relative;
    background: #0000008a;
    padding: 12px;
    display: inline-flex;
    border-radius: 10px;
    align-items: center;
}

.subpage_breadcrumb .breadcrumb-item.active,
.subpage_breadcrumb .breadcrumb-item+.breadcrumb-item::before,
.subpage_breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.who_we_are_heading .left_head4 {
    position: relative;
    /* margin-bottom: 20px; */
    text-align: left;
}

.who_we_are {
    padding: 40px 0px 50px 0px;
    background: #FFFCE3;
}

.who_we_are p {
    color: #314658;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.who_we_are_bottom_text {
    color: var(--subhead);
    font-size: 26px;
    font-family: 'PlayfairDisplay-Regular';
    margin-top: 21px;
    text-align: left;
    letter-spacing: 0px;
    word-spacing: 4px;
}

.who_are_left {
    text-align: justify;
    /* padding-right: 65px; */
}

.bmtfooter_address p {
    margin: 0;
    font-size: 14px;
}

/* 
.innerpages .testimonial_heading::before, .innerpages .testimonial_heading::after {
  content: '';
  flex-grow: 1;
  background-image: url(../img/underline.png);
  height: 43px !important;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-size: cover;
} */

/* .innerpages .testimonial_heading.fo::before, .innerpages .testimonial_heading.fo::after {
    height: 34px;
} */

/* .innerpages .testimonial_heading.te::before, .innerpages .testimonial_heading.te::after {

  top: 55%;
 width: 300px;
  height: 24px;

} */

.innerpages .testimonial_heading .left_head4 {
    /* margin-bottom:0px; */
}

.who_we_are p {
    text-align: justify;
}

.who_are_left h5 {
    color: #725940;
    font-size: 30px;
    font-family: 'Lato';
}

/*****************************about***************************** */

/*****************************awards_about***************************** */

.awards_about {
    background-color: #FDFBE5;
    margin-bottom: 0px;
    position: relative;
}

.our_founders {
    background-color: #E8CEA1;
    margin-bottom: 0px;
    position: relative;
    padding-bottom: 30px;
}

.awards_about::before {
    background-color: #E8CFA1/*var(--bg_color)*/
    ;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 25px);
}

.awards_div {
    display: flex;
    gap: 20px;
    text-align: center;
    flex-wrap: wrap;
}

.awards_innerdiv {
    width: 23.5%;
    /*border: 1px solid var(--subhead);*/
    border-radius: 10px;
    padding: 10px 10px 15px;
    background: #FDFBE5;
    box-shadow: 1px 1px 2px 1px #725940;
}

.award_innerhead {
    color: #725A41/*var(--main_color)*/
    ;
    margin-top: 7px;
    font-size: 21px;
    font-family: 'Lato';
    margin-bottom: 5px;
}

.award_innerpara {
    color: #314658;
    font-size: 18px;
    line-height: 22px;
}

.awards_innerdiv:nth-child(odd) {
    transform: translateY(50px);
}

.awards_innerdiv:nth-child(even) {
    transform: translateY(50px);
}

.our_founders h5 {
    color: #725940;
    font-family: 'Lato';
    font-size: 21px;
    margin: 0 0 10px 0;
}

.our_founders p {
    color: #464547;
    font-size: 18px;
}

/* .nanahomes.testimonial_heading::before, .nanahomes.testimonial_heading::after {
  content: '';
  position: absolute;
  top: 36%;
  transform: translateY(-50%);
  background-image: url(../img/testimonials.webp);
  width: 234px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
} */

/*****************************awards_about***************************** */

/*****************************companct***************************** */

.companct .anays_rooms_heading::before,
.companct .anays_rooms_heading::after {
    content: '';
    position: absolute;
    width: 340px;
}

.companct .anays_rooms_heading {
    margin-top: 40px;
}

.companct .left_head4 {
    font-family: 'PlayfairDisplay-Regular';
}

.carousel-control-prev,
.carousel-control-next {
    background: #000;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
}

.carousel-control-prev {
    left: 50px;
}

.carousel-control-next {
    right: 50px;
}

.slider_star {
    position: absolute;
    top: 36px;
    z-index: 999;
    color: yellow;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider_star img {
    width: 35px;
}

.carousel-item::before {
    content: '';
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
}

.bookNow {
    font-size: 35px;
    padding: 6px 50px;
    border-radius: 5px;
    border: 1px solid var(--btn_color);
    background-color: var(--btn_color);
    color: var(--white);
    font-family: 'Lato';
    margin: auto;
}

.slider_innerfooter {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0px 20px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.slider_leftdiv {
    font-family: 'PlayfairDisplay-Regular';
    font-size: 21px;
    margin-right: 20px;
}

.slider_rightdiv {}

.slider_rightdiv span {
    font-size: 30px;
}

.slider_rightdiv p {}

.carousel-indicators img {
    max-width: 100%;
}

.companct {
    padding-bottom: 20px;
}

.carousel-indicators [data-bs-target] {
    text-indent: 0%;
    border-top: 0;
    border-bottom: 0;
    background-color: transparent;
    width: auto;
    opacity: 1;
    margin-left: 0;
    margin-right: 0;
}

.carousel-indicators {
    margin-left: 0;
    margin-right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -15px;
    display: flex;
    gap: 15px;
}

.carousel.slide {
    padding-bottom: 0px;
}

.companct_descriptiondiv {
    color: var(--black);
    padding-top: 190px;
    margin-bottom: 20px;
}

.companct_description {
    border: 2px solid #7f8c97;
    padding: 20px;
    padding-bottom: 10px;
}

.companct_discription {
    font-family: 'PlayfairDisplay-Regular';
    color: var(--subhead);
    font-size: 24px;
    margin-bottom: 10px;
}

.companct_description p {
    color: var(--text_color);
    font-size: 23px;
    word-spacing: 5px;
}

.companct_bold {
    font-size: 18px;
    color: #546574;
    font-family: 'Lato';
    margin-bottom: 12px;
}

.companct_bold span {
    color: var(--text_color);
}

.companct_form {
    border: 2px solid #7f8c97;
    padding: 25px 20px;
}

.companct_form input,
.companct_form select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    color: #555;
    margin-bottom: 15px;
}

.companct_form_input {
    position: relative;
}

.companct_form_input i {
    position: absolute;
    color: var(--main_color);
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    margin-top: -5px;
}

.companct_form button {
    border-radius: 3px;
    background: var(--subhead);
    color: #fff;
    width: 100%;
    border: 0;
    padding: 5px 10px;
    font-family: 'Lato';
    font-size: 18px;
}

.features {
    background-color: rgb(234, 201, 134);
    padding: 20px 0px;
}

.features_head {
    color: #093b4a;
    font-family: 'PlayfairDisplay-SemiBold';
    font-size: 23px;
}

.features_icon {
    text-align: center;
    color: #8b775d;
    display: flex;
    flex-direction: column;
    padding: 15px 0;
}

.features_icon i {
    font-size: 27px;
    margin-bottom: 15px;
}

.features_icon span {
    font-size: 20px;
    color: #000;
}

.other_room_div {
    background-image: url(../img/inner_slider.webp);
    background-size: cover;
    height: 250px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    background-position: -50px;
}

.banquet_div .companct_description p {
    font-size: 20px;
    word-spacing: 0;
}

.nav_description li {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 35px;
}

.left_description {
    width: 100px;
}

.right_description {
    width: calc(100% - 100px);
    font-size: 22px;
    padding-right: 100px;
}

.nav_description {
    margin-top: 60px;
}

.features_icon img {
    width: 50px;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.banquet_feature {
    padding-top: 30px;
}

.banquet_feature .features_head {
    margin-bottom: 20px;
}

.span_tourpackage {
    color: var(--subhead);
    font-size: 22px;
}

.tourplace .anays_rooms_heading::before,
.tourplace .anays_rooms_heading::after {
    content: '';
}

.tourplace p {
    color: var(--text_color);
    text-align: center;
    font-size: 20px;
    padding: 0px 80px;
}

.tourplace_div {
    display: flex;
}

.tourplace_left {
    width: 290px;
    background-image: url(../img/tour.webp);
    background-size: cover;
    position: relative;
}

.tourplace_left::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(58 68 54 / 53%);
}

.tourplace_left_inner {
    position: relative;
    padding: 50px 20px 20px;
}

.tourplace_right {
    width: calc(100% - 295px);
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tourplace_place {
    font-family: 'PlayfairDisplay-Regular';
    font-size: 30px;
}

.tourplace_pakage {
    font-size: 20px;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.tourplace_left p {
    font-size: 18px;
}

.tourplace_left ul {
    font-size: 18px;
    padding-bottom: 30px;
}

.tourplace_left ul li {}

.tourplace_left button {
    width: calc(100% - 30px);
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid var(--btn_color);
    background-color: var(--btn_color);
    color: var(--white);
    font-family: 'Lato';
    margin: auto;
    display: block;
}

.tourplace_right_inner {
    width: calc(50% - 5px);
}

.tourplace_inner_div {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.tourplace_right_inner img {
    height: 100%;
}

.tour_valparai {
    background-image: url(../img/tour/05.webp);
}

/*****************************companct***************************** */

.amenities_div p {
    text-align: left;
    padding: 0;
    color: #000;
    margin-bottom: 0;
}

.amenities_boxtext {
    font-size: 21px;
}

.amenities_box {
    color: #000;
    text-align: center;
    margin-bottom: 24px;
    padding: 40px 0px;
    border-radius: 5px;
}

.amenities_box img {
    width: 80px;
    margin-bottom: 20px;
    height: 80px;
}

.Gallery .anays_rooms_heading {
    margin-top: 30px;
}

.padd_rig0 {
    padding-right: 0;
}

.gallery_form {
    background-color: #333333;
    border-radius: 10px;
    padding: 30px 50px;
    color: #fff;
    padding-bottom: 40px;
}

.gallery_heading {
    font-size: 22px;
    margin-bottom: 10px;
}

.gallery_form .tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.gallery_form li {
    padding: 10px 0;
    border-top: 1px solid var(--white);
    font-size: 18px;
}

.gallery_form li:last-child {
    border-bottom: 1px solid var(--white);
    margin-bottom: 40px;
}

.gallery_form li a {
    color: #fff;
    text-decoration: none;
}

.gallery_form .tags span {
    background: #f7dbaa;
    font-size: 18px;
    padding: 6px 18px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
}

.gallery_form .tags span i {
    opacity: .3;
}

.gallery_form input {
    border: 1px solid;
    width: 100%;
    padding: 4px 9px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.blog_left {
    padding-right: 80px;
    color: #000;
}

.blog_content {
    margin-top: 10px;
    border-bottom: 1px solid var(--btn_color)
}

.blog_contt_head {
    color: var(--subhead);
    margin-bottom: 6px;
    font-size: 21px;
}

.blog_content p {
    text-align: justify;
    margin-top: 20px;
}

.blog_content li {
    margin-right: 50px;
    color: var(--subhead);
}

.blog_content li img {
    margin-right: 5px;
}

.borderbtm_0 {
    border-bottom: 0;
}

.gallery_post {
    display: flex;
    flex-wrap: wrap;
}

.gallery_post_left {
    width: 70px;
    height: 70px;
}

.gallery_post_left a {
    font-size: 12px !important;
}

.gallery_post_left img {
    object-fit: cover;
    height: 70px;
}

.gallery_post_right {
    width: calc(100% - 70px);
    padding-left: 10px;
}

.gallery_post_right_head {}

.gallery_post_right .gallery_post_right_head {
    display: block;
    font-size: 18px;
}

.gallery_post_right span {
    font-size: 13px;
}

.gallery_post_right span i {
    margin-right: 8px;
}

.recent_postform {
    padding-bottom: 0%;
}

.recent_postform li:last-child {
    border-bottom: 0;
}

.Gallery {
    padding-bottom: 20px;
}

.contact .anays_rooms_heading {
    margin-top: 20px;
}

.contact p {
    color: #000;
    text-align: left;
    margin-left: 39px;
    font-size: 16px;
}

.contact_form input,
.contact_form select,
.contact_form textarea {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 30px;
    padding: 14px 15px;
    border-radius: 5px;
    border: 1px solid #c4c4c4;
}

.cform {
    padding: 20px 50px;
}

.contact_form .col-md-9.col-lg-9 {
    float: left;
}

.contact_form .col-md-3.col-lg-3 {
    float: left;
}

.contact_form .col-md-3.col-lg-3 .otpb {
    margin-bottom: 10px;
    margin-top: 30px;
    margin-left: 25px;
    padding: 13px 30px;
    background: #444;
    border-color: #444;
}

.contact_form textarea {
    resize: none;
}

.contact_form {
    margin-top: 80px;
    color: #000;
    margin-bottom: 50px;
}

.contact_form button {
    width: auto;
    padding: 10px 30px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #444;
    color: var(--white);
    font-family: 'Lato';
    text-align: center;
}

.agree_conditon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    position: relative;
}

.contactinput {
    width: auto;
    margin: 0;
    ;
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.agree_conditon::before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid var(--subhead);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.contactinput:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    left: 11px;
    width: 9px;
    height: 23px;
    border: solid var(--subhead);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.col-lg-9.col-md-9 ul.footer_address li span {
    letter-spacing: 1px;
    /* padding-left:20px; */
}

.nav.footer_address li span a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.footer_address1 a {
    color: #fff;
    margin-left: 12px;
}

.bannertext h3 {
    font-size: 75px;
    font-family: 'Lato';
}

.bannertext p {
    font-size: 20px;
    line-height: 33px;
    padding-top: 25px;
}

.homes_heading {
    text-align: center;
    position: relative;
    margin: 50px 0 -20px 0;
    display: block;
    align-items: center;
}

.homes_heading::before {
    /* content: '';
    flex-grow: 1;
    background-image: url(../img/underline2.png);
    height: 54px !important;
    background-repeat: no-repeat;
    margin: auto !important;
    position: absolute;
    width: 333px;
    bottom: -20px; */
}

.homes_heading::after {
    /* content: '';
    flex-grow: 1;
    background-image: url(../img/underline2.png);
    height: 54px !important;
    background-repeat: no-repeat;
    margin: auto !important;
    position: absolute;
    width: 333px;
    bottom: -20px; */
}

/* .homes_heading::before{
    left: 310px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.homes_heading::after{
    right: 310px;
} */

.brownUnderline {
    position: relative;
    margin-bottom: 0px;
    margin-top: 30px;
    text-align: center;
}

.brownUnderline2 {
    position: relative;
    margin-bottom: 0px;
    margin-top: 30px;
}

.goldUnderline {
    position: relative;
    margin-bottom: 20px;
    margin-top: 30px;
}

.goldUnderline h4 {
    text-align: left;
}

/* .testimonial_heading::before,.testimonial_heading::after{
    content: '';
   flex-grow: 1;
    background-image: url(../img/underline.png);
    height: 43px !important;
    background-repeat: no-repeat;
  margin: auto;
  background-size: cover;
  position: absolute;
  width: 378px;
  bottom: -20px;
}
.testimonial_heading::before{
    left: 310px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.testimonial_heading::after{
    right: 310px;
} */

.testimonial_heading {
    text-align: center;
    position: relative;
    margin: 110px 0 10px 0;
    display: block;
    align-items: center;
    justify-content: center;
}

.testimonial {
    background: #FDFBE5;
}

.testimonial .slick-slide {
    /*-webkit-transform: scale(1.2);
    transform: scale(1.2);
    margin:0px 50px;*/
}

.Homesslider {
    background: #FDFBE5;
}

.Homesslider .slick-slide img {
    border-radius: 10px 10px 0 0;
}

.Homesslider .slick-slide .test_slider h5 {
    font-size: 21px;
    color: #725A41;
    padding-bottom: 7px;
}

.Homesslider .slick-slide .test_slider h6 {
    font-size: 18px;
    color: #454548;
    padding: 5px 0;
}

/* Default slide */

.center-slider .slick-slide {
    color: #FFF;
    height: auto;
    margin: 0 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out;
}

.center-slider .slick-slide,
.center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
    transform: scale(0.8, 0.8);
    transition: all 0.4s ease-in-out;
}

/* Active center slide (You can change anything here for cenetr slide)*/

.center-slider .slick-center,
.center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
    transform: scale(1.1);
}

.center-slider .slick-current.slick-active {
    transform: scale(1.1);
}

.slick-next,
.slick-prev {
    z-index: 5;
}

.slick-next {
    right: 15px;
}

.slick-prev {
    left: 15px;
}

.slick-next:before,
.slick-prev:before {
    color: #fff;
    font-size: 26px;
}

.Homesslider .slick-dots button,
.resident_slider .slick-dots button,
.videoslider .slick-dots button {
    display: block !important;
}

.resident_slider .slick-dots {
    bottom: 10px;
}

.Homesslider .slick-dots {
    bottom: -20px !important;
}

.Homesslider .slick-dots li button::before {
    font-size: 18px;
}

.Homesslider .test_slider .card {
    background-color: #E8CFA1;
}

.test_slider_res .test_img {
    width: 240px;
    height: 240px;
    display: block;
    margin: auto;
    padding: 7px;
    border-radius: 50%;
    border: 1px solid #000;
}

.resident_slider .slick-prev.slick-arrow {
    left: 50%;
    margin-left: -195px;
}

.resident_slider .slick-prev.slick-arrow,
.resident_slider .slick-next.slick-arrow {
    z-index: 9;
    top: 135px;
}

.resident_slider .slick-next.slick-arrow {
    right: 50%;
    margin-right: -175px;
}

.resident_slider .slick-prev.slick-arrow,
.resident_slider .slick-next.slick-arrow {
    z-index: 9;
    top: 135px;
}

/*.test_slider_res .card-body{
    background:#E8CFA1;
}*/

.test_slider_res .test_img img {
    border-radius: 50%;
}

.resident_slider .card {
    background-color: inherit !important;
    border: none !important;
}

.resident_slider .awards_div {
    margin-top: -100px;
}

.resident_slider .test_div_img {
    width: 35px;
    height: 35px;
    display: block;
    margin-left: 130px;
}

.resident_slider .test_div_img_right {
    width: 35px;
    height: 35px;
    display: block;
    margin-right: 130px !important;
    float: right;
}

.test_slider_res h5 {
    color: #725A41;
    padding-top: 10px;
    font-family: 'PlayfairDisplay-Medium';
    margin-bottom: 0px;
    font-size: 21px;
}

.test_slider_res p {
    color: #454548;
    font-size: 18px;
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.videoslider .testimonial_heading {
    margin: 30px 0 10px 0
}

.videoslider .testimonial_heading .left_head4 {
    margin-bottom: 0px;
}

.videoslider {
    background: #FDFBE5;
}

.videoslider .big_worldImgposition {
    width: 50px;
}

.videoslider .card {
    background-color: inherit !important;
    border: none !important;
}

.videoslider p {
    color: #313A31;
    font-size: 18px;
    text-align: center !important;
    padding-top: 10px;
}

.resident_slider .slick-next::before,
.resident_slider .slick-prev::before,
.Homesslider .slick-next::before,
.Homesslider .slick-prev::before,
.videoslider .slick-next::before,
.videoslider .slick-prev::before {
    font-size: 55px;
    color: #725940;
}

.Homesslider .slick-prev {
    left: -14px;
}

.Homesslider .slick-next {
    right: 35px;
}

.videoslider .slick-prev {
    left: -35px;
}

.videoslider .slick-next {
    right: -5px;
}

.innerpages .testimonial_heading {
    margin-top: 10px;
    margin-bottom: 0px;
}

.who_we_are.Homesslider .test_slider {
    padding: 25px;
}

.who_we_are.Homesslider .test_slider h5 {
    background: #333333;
    color: #FAC52C;
    font-size: 20px;
    padding-top: 7px;
}

.who_we_are.Homesslider .test_slider p {
    text-align: center !important;
    margin-bottom: 2px !important;
}

.who_we_are.Homesslider .test_slider h6.date {
    color: #725940;
    font-size: 18px;
}

.who_we_are.Homesslider .slick-next {
    right: 9px;
}

.who_we_are.Homesslider .slick-next {
    right: 9px;
}

.who_we_are.Homesslider .slick-prev {
    left: -22px;
}

.our_founders.Homesslider .test_slider {
    padding: 25px;
}

.our_founders.Homesslider .test_slider h5 {
    background: #333333;
    color: #FAC52C;
    font-size: 20px;
    padding-top: 7px;
}

.our_founders.Homesslider .test_slider p {
    text-align: center !important;
    margin-bottom: 2px !important;
}

.our_founders.Homesslider .test_slider h6.date {
    color: #725940;
    font-size: 18px;
}

.our_founders.Homesslider .slick-next {
    right: 9px;
}

.our_founders.Homesslider .slick-next {
    right: 9px;
}

.our_founders.Homesslider .slick-prev {
    left: -22px;
}

.our_founders.Homesslider {
    background-color: #E8CEA1;
    margin-bottom: 0px;
    position: relative;
}

.our_founders.Homesslider .test_slider p {
    color: #A96D41;
    font-size: 19px;
    padding: 10px;
    text-align: center;
}

.our_founders.Homesslider .test_slider .test_img {
    border: 2px solid #fff;
}

.gallery,
.testimonials {
    background: #FFFCE3;
}

.gallery .card-body {
    padding: 0px;
}

.gallery .card-body a {
    text-decoration: none !important;
}

.gallery .card-body p {
    text-align: center !important;
    color: #725940;
    padding: 20px 0;
    font-size: 16px;
    font-weight: bold;
    background: #E8CEA1;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.gallery .col-md-4.col-lg-4.col-sm-2.col-xs-1 {
    margin-bottom: 25px;
}

.gallery .test_img .fa-picture-o {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
}

.slick-prev::before,
.slick-next::before {
    opacity: 1;
}

.innerpages .testimonials .testimonial_heading::before,
.innerpages .testimonials .testimonial_heading::after {
    content: '';
    flex-grow: 1;
    background-image: url(../img/testimonials.webp);
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
}

.innerpages .testimonials .testimonial_heading .left_head4 {
    margin-top: 40px;
}

.test_slider_testi .test_img {
    width: 240px;
    height: 240px;
    display: block;
    padding: 7px;
    border-radius: 50%;
    border: 1px solid #000;
    margin-top: -80px;
}

.test_slider_testi .test_img img {
    border-radius: 50%;
    width: 225px;
}

.test_div_img1 img {
    margin-left: 83px;
    margin-top: -38px;
    width: 60px;
}

.test_slider_testi .card-body .leftContent,
.test_slider_testi .card-body .rightContent {
    float: left;
}

.test_slider_testi .card {
    background-color: #E8CEA1;
}

.rightContent h5,
.rightContent h6 {
    color: #725940;
}

.rightContent h5 {
    font-size: 21px;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: 'PlayfairDisplay-Regular';
}

.rightContent p {
    color: #5F474D;
    font-size: 18px;
    text-align: justify;
}

.test_slider_testi {
    margin-bottom: 100px;
}

.slick-dots-normal {
    margin: 0 auto;
    text-align: center;
    width: 350px;
    margin-top: -60px;
}

.slick-dots-normal li {
    float: left;
    width: 50px;
    color: #000
}

.slick-dots-normal li {
    list-style: none;
}

.slick-dots-normal .larr {
    width: 40px;
}

.slick-dots-normal .p {
    padding-left: 7px;
}

.slick-dots-normal .active {
    background: #000;
    color: #fff;
    width: 25px;
    margin-left: 10px;
    border-radius: 4px;
}

.slick-dots-normal .p,
.slick-dots-normal .n {
    margin-top: 8px;
}

.medicalcare .test_img .img-fluid:hover {
    transform: scale(1.3);
    z-index: 999;
    border: solid 2px #fff;
    position: relative;
}

.medicalcare .test_img .img-fluid {
    z-index: 99;
    opacity: .9
}

.gallContent p {
    background: #fff;
    padding: 25px 35px;
    color: #444;
    text-align: justify;
    font-size: 17px;
    line-height: 29px;
    box-shadow: rgba(149, 157, 165, 0.6) 0px 8px 24px;
    margin-top: 31px;
}

.medicalcare .test_img:hover::after {
    z-index: 99999;
    content: "";
    position: absolute;
    width: 5px;
    height: 0;
    margin-left: 0;
    bottom: -52px;
    left: 50%;
    box-sizing: border-box;
    border: 10px solid #fff;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
    border-color: transparent transparent #fff #fff;
    transform-origin: 0 0;
    transform: rotate(316deg);
    box-shadow: -1px 3px 3px 0 rgba(0, 0, 0, 0.4);
}

.test_img.test1 p,
.test_img.test2 p,
.test_img.test3 p,
.test_img.test4 p,
.test_img.test5 p,
.test_img.test6 p,
.test_img.test7 p,
.test_img.test8 p {
    position: absolute;
    bottom: -8px;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    z-index: 999;
    color: #fff;
    background: #0006;
}

.innerpages.covid19 .testimonial_heading.wid::before,
.innerpages.covid19 .testimonial_heading.wid::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-87%);
    background-image: url(../img/testimonials.webp);
    width: 189px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: cover;
}

.covid19 .left_head4 {
    font-size: 30px;
}

/* .innerpages.covid19 .testimonial_heading::before, .innerpages.covid19 .testimonial_heading::after {
  transform: translateY(-87%);
} */

.innerpages.covid19 ol {
    margin-left: 50px;
    /* width:77%; */
    margin: 0 auto;
}

.innerpages.covid19 ol li {
    color: #190800;
    margin-bottom: 10px;
    font-size: 17px;
}

.testimonial_heading.proj {
    text-align: left;
}

.testimonial_heading.proj::before {
    display: none;
}

.innerpages.projects .Homesslider {
    background: #E8CFA1;
}

.innerpages.projects .Homesslider .slick-prev {
    left: -15px;
    top: 43%;
}

.innerpages.projects .Homesslider .slick-next {
    right: 33px;
    top: 43%;
}

.innerpages.projects .test_slider h5 {
    font-weight: bold
}

.innerpages.projects .Homesslider.vila {
    background: #FFFCE3;
}

.Homesslider.vila .test_slider .card {
    background: #FFFCE3;
}

.projects .amenities_box {
    background-color: #FFFCE3;
    padding: 20px 0;
}

.projects .amenities_box img {
    width: 80px;
    margin-bottom: 20px;
    height: 80px;
}

.projects .videoslider .slick-prev {
    left: -45px;
    top: 40%;
}

.projects .videoslider .slick-next {
    right: -10px;
    top: 40%;
}

.blogs .Gallery,
.support .Gallery,
.faq .Gallery,
.events .Gallery {
    background-color: #FFFCE3;
}

.support .career {
    text-align: center;
}

.careeritem {
    background: #E8CEA1;
    padding: 40px 0;
    border-radius: 7px;
    margin-bottom: 10px;
}

.careeritem img {
    border-radius: 50%;
}

.careertext {
    display: none;
}

.careertext.active {
    display: block !important;
}

.careeritem.active .cnormal {
    display: none;
}

.careeritem .chover {
    display: none;
}

.careeritem.active .chover {
    display: inline-block !important;
}

.careeritem.active {
    background: #fff;
    border: 2px solid #E8CEA1;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.25);
}

.careertext h6 {
    color: #725940;
    font-weight: bold;
    font-size: 20px;
}

.careertext p {
    color: #444;
    font-size: 18px;
}

.faq .careeritem {
    padding: 20px 50px;
}

.faq .careeritem .award_innerhead {
    color: #725A41;
    font-size: 17px;
    margin-bottom: 5px;
}

.faq .careeritem p,
.accordion-body {
    color: #444;
    font-size: 18px;
}

.accordion-button:not(.collapsed) {
    color: #725A41;
    background-color: #FFFCE3;
    font-size: 21px;
    box-shadow: none !important;
}

.accordion-button {
    background-color: #FFFCE3;
    padding: 1rem 0;
}

.accordion-item {
    border: none;
    border-bottom: 2px solid #725A41;
}

.accordion-body {
    padding: 1rem;
    background: #E8CEA1;
    color: #725A41;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: url("../img/blog/fq.webp");
}

.accordion-header .accordion-button.collapsed {
    font-size: 19px;
}

.cform {
    border: 1px solid #cbcbcb;
    border-radius: 13px;
}

.innerpages.events .Gallery .col-md-4.col-lg-4 {
    float: left;
    text-align: center;
    border-bottom: 1px solid #444;
}

.innerpages.events .Gallery .col-md-4.col-lg-4 div {
    padding: 10px 0;
    margin: 7px 15px;
    border-right: 1px solid #444;
}

.last div {
    border-right: none !important;
}

.innerpages.events .col-md-4.col-lg-4 .active {
    color: #FFA300 !important;
    text-decoration: none;
}

.innerpages.events .col-md-4.col-lg-4 a {
    color: #444;
    font-size: 18px;
    text-decoration: none !important;
}

.even1,
.even2,
.even3 {
    float: left;
}

.even1 .num {
    /*'PlayfairDisplay-SemiBold';*/
    font-size: 90px;
    color: #FFA300;
}

.innerpages.events .Gallery .col-md-4.col-lg-4 div {
    border-right: none;
}

.events .date {
    font-size: 20px;
    color: #444;
}

.even2 .nav li {
    padding-right: 20px;
    color: #444;
    font-size: 18px;
}

.even2 p {
    color: #444;
    font-size: 18px;
    margin-top: 15px;
}

.even2 button {
    background: #FFA300;
    padding: 8px 13px;
    border: none;
    border-radius: 7px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
}

.even2 .nav li img {
    width: 20px;
}

.even3 {
    margin-bottom: 30px;
}

.banner_input.search {
    width: calc(60% - 20px);
}

.img-banner {
    background-color: #FDFBE5;
    padding: 60px 0px 0px;
}

@media (min-width: 1350px) {
    .home .who_we_are_heading .left_head4::after {
        /* width:100%; */
        height: 24px;
    }
    .home .homes_heading::before,
    .home .homes_heading::after {
        /* width:320px; */
    }
    .home .testimonial_heading::before,
    .home .testimonial_heading::after {
        /* width:360px; */
        height: 24px;
    }
    .contactinput:checked+label::after {
        content: '';
        display: block;
        position: absolute;
        top: 0px;
        left: 11px;
        width: 7px;
        height: 20px;
        border: solid var(--subhead);
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        box-shadow: none;
    }
    .innerpages .testimonial_heading::before,
    .innerpages .testimonial_heading::after {
        height: 34px;
    }
    .innerpages .testimonial_heading.wh::before,
    .innerpages .testimonial_heading.wh::after {
        height: 34px;
    }
    .innerpages .testimonials .testimonial_heading::before,
    .innerpages .testimonials .testimonial_heading::after {
        height: 34px;
    }
    .innerpages .testimonial_heading.te::before,
    .innerpages .testimonial_heading.te::after {
        top: 55%;
        height: 34px;
    }
    .innerpages .testimonial_heading.fo::before,
    .innerpages .testimonial_heading.fo::after {
        height: 34px;
    }
    .innerpages .testimonial_heading.proj::before,
    .innerpages .testimonial_heading.proj::after {
        height: 34px;
    }
}

.testimonials .test_slider_testi .rightContent.odd:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../img/Floral.webp);
    background-size: contain;
    background-position: 172px 39px;
    width: 240px;
    height: 240px;
    z-index: 99;
    background-repeat: no-repeat;
    transform: rotate(28deg);
    opacity: .5
}

.testimonials .test_slider_testi .rightContent.even:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../img/Floral.webp);
    background-size: contain;
    background-position: 15px 183px;
    width: 240px;
    height: 240px;
    z-index: 99;
    background-repeat: no-repeat;
    transform: rotate(39deg);
    opacity: 0.5;
}

.test_slider_res .card:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(../img/Floral.webp);
    background-size: contain;
    background-position: 114px 0px;
    width: 240px;
    height: 240px;
    z-index: 99;
    background-repeat: no-repeat;
    transform: rotate(-5deg);
    /* opacity: .5 */
}

.test_slider_res .card:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../img/Floral.webp);
    background-size: contain;
    background-position: 5px 93px;
    width: 240px;
    height: 240px;
    z-index: 99;
    background-repeat: no-repeat;
    transform: rotate(97deg);
    /* opacity: 0.5; */
}

.contact_form .subbut:before {
    content: "";
    position: absolute;
    background-image: url(../img/Floral.webp);
    background-size: contain;
    background-position: -19px 70px;
    width: 200px;
    height: 200px;
    z-index: 99;
    background-repeat: no-repeat;
    transform: rotate(97deg);
    /* opacity: 0.5; */
    left: 21%;
}

.contact_form .subbut:after {
    content: "";
    position: absolute;
    background-image: url(../img/Floral.webp);
    background-size: contain;
    background-position: 89px -17px;
    width: 200px;
    height: 200px;
    z-index: 99;
    background-repeat: no-repeat;
    transform: rotate(-20deg);
    /* opacity: .5; */
    right: 20%;
}

.videoplay {
    position: relative;
}

.videoplay a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: #FFF;
}

.slick-slider .element {
    padding: 94px 70px;
}

.slick-slider .slick-disabled {
    opacity: 0;
    pointer-events: none;
}

.mainSlider {
    /* background: #F1F4D1;
    padding: 20px 0; */
    height: 534px;
}

.element .titles h2 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 86px;
    margin: 0;
    font-weight: 800;
}

/* .element.font-3 .titles h2{
    width: 360px;
} */

.element.font-5 .titles h2 {
    font-size: 72px;
    /* width: 510px; */
}

.element.font-6 .titles h2 {
    font-size: 86px;
    /* width: 480px; */
}

.element.font-7 .titles h2 {
    font-size: 69px;
}

.element .titles h3 {
    color: #FFC200;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    border-bottom: 2px solid #FFC200;
    width: 340px;
}

.titles p {
    font-size: 31px;
    color: #fff;
}

.titles p span.larpre {
    display: block;
    font-family: 'OpenSans-bold';
    color: #fff;
}

.titles p span.retr {
    display: block;
    font-family: 'OpenSans-bold';
    color: #fff;
    font-size: 24px;
}

.cusBor {
    padding: 20px 120px;
    border: 1px solid #ffcd00;
    border-radius: 10px;
    display: inline-block;
}

.cusBor2 {
    padding: 20px 80px;
    border: 1px solid #ffcd00;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
}

.banner-elements img {
    width: 100px;
}

.bannerFrame {
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
    background: #ffffff;
    border-radius: 4px;
    padding: 5px;
    color: #151b0b;
    font-weight: 500;
}

.mainSlider {
    position: relative;
    /* overflow: hidden; */
}

.bigcircle {
    width: 400px;
    display: inline-block;
    height: 400px;
    background: #ffcd004d;
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.circle {
    width: 200px;
    display: inline-block;
    height: 200px;
    background: #ffcd004d;
    border-radius: 50%;
    position: absolute;
    left: -20px;
    top: -90px;
}

.titles {
    position: relative;
}

.slick-next {
    /* right: -35px; */
}

.slick-prev {
    /* left: -25px; */
}

.img {
    z-index: 1;
    position: relative;
}

.banner-1 {
    width: 150px !important;
    position: absolute;
    top: 80px;
    right: -50px;
}

.banner-2 {
    width: 170px !important;
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 1;
}

.banner-3 {
    width: 150px !important;
    position: absolute;
    bottom: -60px;
    right: 50px;
    z-index: 1;
}

.banner-4 {
    width: 150px !important;
    position: absolute;
    bottom: -60px;
    left: -40px;
    z-index: 1;
}

.img4 {
    -webkit-animation: animation-two linear infinite 5s;
    animation: animation-two linear infinite 5s;
    position: relative;
    z-index: 1;
}

.img3 {
    -webkit-animation: animation-two linear infinite 5s;
    animation: animation-two linear infinite 5s;
    position: relative;
    z-index: 1;
}

.img2 {
    -webkit-animation: animation-two linear infinite 5s;
    animation: animation-two linear infinite 5s;
    position: absolute;
    z-index: 1;
    top: -40px;
    left: -40px;
}

.img1 {
    -webkit-animation: animation-two linear infinite 5s;
    animation: animation-two linear infinite 5s;
    position: absolute;
    right: 2px;
    top: -44px;
}

.font-2 .banner-3 {
    width: 150px !important;
    position: absolute;
    bottom: -60px;
    right: -70px;
    z-index: 1;
}

.font-2 .banner-1 {
    top: 70px;
    right: -70px;
}

.font-3 .banner-1 {
    top: 40px;
    right: -70px;
}

.font-3 .banner-3 {
    right: -40px;
}

@keyframes animation-two {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }
    30% {
        transform: translateY(1px) translateX(3px) rotate(2deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        transform: translateY(1px) translateX(3px) rotate(2deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }
    80% {
        transform: translateY(1px) translateX(3px) rotate(2deg);
        -webkit-transform-origin: left left;
        transform-origin: left left;
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

.brown .left {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.brown {
    position: relative;
    top: -32px;
}

.brown .abt {
    width: 250px;
}

.whoweare .left {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.whoweare {
    position: relative;
    top: -22px;
}

.whoweare img {
    width: 200px;
}

.brown-2 {
    position: relative;
    top: -15px;
}

.brown-2 .left {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: relative;
    left: -31px;
}

.brown-2 .right {
    position: relative;
    right: -31px;
}

.testielemts {
    top: -22px;
}

.longtitle {
    position: relative;
    top: -34px;
}

.longtitle .left {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    position: relative;
    left: -81px;
}

.longtitle .right {
    position: relative;
    right: -81px;
}

.fontsize {
    font-size: 13px !important;
}

.borderbtn {
    border-bottom: 2px solid #FFC200;
    line-height: 1;
    margin-bottom: 10px !important;
}

.reducesize {
    font-size: 25px !important;
    border-bottom: 0 !important;
    margin-bottom: 0;
}

.mainSlider .slick-track .slick-slide:first-child {
    background-image: url(../img/banner/banner1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 540px;
}

.mainSlider .slick-track .slick-slide:nth-child(2) {
    background-image: url(../img/banner/banner2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 540px;
}

.mainSlider .slick-track .slick-slide:nth-child(3) {
    background-image: url(../img/banner/banner3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 540px;
}

.mainSlider .slick-track .slick-slide:nth-child(4) {
    background-image: url(../img/banner/banner4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 540px;
}

.mainSlider .slick-track .slick-slide:nth-child(5) {
    background-image: url(../img/banner/banner5.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 540px;
}

.mainSlider .slick-track .slick-slide:nth-child(6) {
    background-image: url(../img/banner/banner6.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 540px;
}

.mainSlider .slick-track .slick-slide:nth-child(7) {
    background-image: url(../img/banner/banner7.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 540px;
}

.foodFont {
    font-size: 146px !important;
}

.element .titles.cusBor3 h3 {
    font-size: 45px !important;
}

.cusBor3 {
    padding: 20px 80px;
    border: 1px solid #ffcd00;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
}

.element .titles.cusBor2 h3,
.element .titles.cusBor3 h3,
.element .titles.cusBor4 h3,
.element .titles.cusBor6 h3,
.element .titles.cusBor5 h3,
.element .titles.cusBor7 h3 {
    width: auto;
}

.cusBor4 {
    padding: 20px 80px;
    border: 1px solid #ffcd00;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    width: 560px;
}

.cusBor5 {
    padding: 20px 80px;
    border: 1px solid #ffcd00;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    /* width: 560px;  */
}

.font-4 .banner-3 {
    width: 150px !important;
    position: absolute;
    bottom: -60px;
    right: -70px;
    z-index: 1;
}

.font-4 .banner-1 {
    top: 100px;
    right: -30px;
}

.font-4 .banner-3 {
    right: -40px;
}

.font-5 .banner-3 {
    width: 150px !important;
    position: absolute;
    bottom: -60px;
    right: -70px;
    z-index: 1;
}

.font-5 .banner-1 {
    top: 30px;
    right: -60px;
}

.font-5 .banner-3 {
    right: -40px;
}

.cusBor6 {
    padding: 20px 80px;
    border: 1px solid #ffcd00;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    /* width: 560px; */
}

.font-6 .banner-3 {
    width: 150px !important;
    position: absolute;
    bottom: -60px;
    right: -70px;
    z-index: 1;
}

.font-6 .banner-1 {
    top: 30px;
    right: -60px;
}

.font-6 .banner-3 {
    right: -40px;
}

.cusBor7 {
    padding: 20px 80px;
    border: 1px solid #ffcd00;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
}

.font-7 .banner-3 {
    width: 150px !important;
    position: absolute;
    bottom: -60px;
    right: -70px;
    z-index: 1;
}

.font-7 .banner-1 {
    top: 30px;
    right: -60px;
}

.font-7 .banner-3 {
    right: -40px;
}

.float_left {
    float: left;
    width: 490px;
    border: 4px solid #725940;
    margin-right: 22px;
}

.scrollTop {
    position: fixed;
    right: 4%;
    bottom: 10px;
    background-color: #fbd460;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scrollTop a {
    font-size: 18px;
    color: #fff;
}

.row-table {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.right_menu_togle .close-btn {
    overflow: visible;
    position: absolute;
    top: 10px;
    display: block;
    z-index: 99;
    right: 57px;
    cursor: pointer;
    transition: all .3s ease;
}

.right_menu_togle .close-btn .nav-close {
    position: absolute;
    top: 5px;
    display: block;
    z-index: 99;
    right: 3px;
    cursor: pointer;
}

.right_menu_togle .close-btn .nav-close .line {
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.right_menu_togle .close-btn .nav-close .line span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 1px !important;
    height: 25px !important;
    background: rgba(8, 13, 65, 0.8);
    border: none !important;
    transition: all 0.3s ease;
}

.right_menu_togle .close-btn .nav-close .line span.line2 {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.enquirybtn {
    background: #275026;
    color: #fff !important;
    border-radius: 7px;
    padding: 8px 16px !important;
    display: inline-block !important;
    text-align: center !important;
}

@media only screen and (max-width: 767px) {
    .element .titles h2 {
        font-size: 70px;
    }
    .cusBor {
        padding: 20px 66px;
    }
    .banner-1 {
        top: 20px;
        right: -80px;
    }
    .banner-1 {
        width: 80px !important;
    }
    .banner-2 {
        left: 50px;
    }
    .banner-4 {
        left: 10px;
    }
    .cusBor2 {
        padding: 20px 58px;
    }
    .element .titles.cusBor3 h3 {
        font-size: 28px !important;
    }
    .foodFont {
        font-size: 96px !important;
    }
    .font-2 .banner-3 {
        width: 100px !important;
    }
    .element .titles h3 {
        font-size: 31px;
        width: 280px;
    }
    .slick-slider .element {
        padding-left: 0;
    }
    .banner-3 {
        width: 100px !important;
    }
    .banner-4 {
        width: 100px !important;
    }
    .banner-2 {
        width: 100px !important;
    }
    .titles p {
        font-size: 24px;
    }
    .slick-next {
        display: none;
    }
    .brown img,
    .whoweare img,
    .brown-2 img {
        width: 150px;
    }
    .blog_left {
        padding-right: 0;
    }
    .left_head4 {
        margin-bottom: 20px !important;
    }
    .brown {
        position: relative;
        top: -20px;
    }
    .whoweare {
        top: -25px;
    }
    .brown-2 .left {
        left: -1px;
    }
    .brown-2 .right {
        right: -1px;
    }
    .resoverflorw {
        overflow: hidden;
    }
    .test_slider_testi .test_img {
        margin-top: 0;
        margin: 0 auto;
    }
    .test_slider_testi .card-body .leftContent,
    .test_slider_testi .card-body .rightContent {
        float: none;
    }
    .contact_form .subbut:before,
    .contact_form .subbut:after {
        display: none;
    }
    .who_are_left {
        padding-right: 15px;
    }
    .cusBor4 {
        width: auto;
    }
    .who_are_left h5 {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }
    .font-4 .titles h2 {
        font-size: 50px;
    }
    .font-4 .banner-1 {
        top: 40px;
        right: -70px;
    }
    .element.font-5 .titles h2,
    .element.font-6 .titles h2,
    .element.font-7 .titles h2 {
        font-size: 40px;
    }
    .font-5 .banner-3,
    .font-6 .banner-3,
    .font-7 .banner-3 {
        width: 110px !important;
        bottom: -80px;
    }
    .brownUnderline,
    .brownUnderline2 {
        margin-bottom: 20px !important;
    }
    .test_slider_testi {
        margin-bottom: 30px;
    }
    .testimonials .test_slider_testi .rightContent.odd:after,
    .testimonials .test_slider_testi .rightContent.even:before {
        display: none;
    }
    .slick-dots-normal {
        margin: 0px auto 30px;
    }
    .covid19 .left_head4 {
        font-size: 20px;
    }
    .test_slider {
        padding: 20px 0px;
    }
    .amenities_box {
        padding: 30px 0px 0px;
    }
    .test_slider .card {
        margin-bottom: 20px;
    }
    .slick-dots {
        margin-bottom: 20px;
    }
    p {
        text-align: center !important;
    }
    .home-content {
        height: 100vh !important;
    }
    .home-content h1 {
        font-size: 20px !important;
    }
    .home-content h5 {
        font-size: 14px !important;
    }
    .Homesslider .slick-dots,
    .Homesslider .slick-dots {
        bottom: -40px !important;
    }
    .subpage_breadcrumb.innerbread {
        padding: 80px 0px 20px 0px;
    }
    .medicalcare .test_img .img-fluid:hover {
        transform: scale(1.0) !important;
    }
    .our_founders h5 {
        text-align: center;
    }
    .even2 button {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer_address {
        text-align: center;
    }
    .footer_head {
        font-size: 20px;
        text-align: center;
    }
    .footer .nav {
        justify-content: center;
    }
    .footer_address li img {
        width: 150px;
    }
    .foottext {
        padding-left: 0px !important;
        font-size: 13px !important;
    }
    .footer_address span {
        line-height: 25px;
    }
    .rightContent h5,
    .rightContent h6 {
        text-align: center;
    }
    .footer_address li {
        width: inherit;
        font-size: 15px;
        margin-bottom: 0px;
    }
    .goldUnderline h4 {
        text-align: center !important;
    }
    .events .date,
    .blog_contt_head {
        text-align: center;
    }
    .events .Gallery .nav,
    .blog_left .nav {
        justify-content: center !important;
    }
    .accordion-button:not(.collapsed),
    .faq .careeritem .award_innerhead {
        text-align: center;
    }
    .who_we_are_heading .left_head4 {
        text-align: center;
    }
    .who_we_are_heading .brown {
        display: none;
    }
    .mobile-center {
        text-align: center;
    }
    .page-modal .modal-header .close {
        top: -30px;
        right: 5px;
        line-height: 20px;
    }
}

.paradise {
    position: fixed;
    bottom: 10px;
    left: 30px;
    border-radius: 50px;
    font-size: 20px;
    /*            box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;*/
    z-index: 100;
}

.all-demo {
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    position: fixed;
    border-radius: 0px 50px 50px 0px;
    background: #ffd72e;
    padding: 10px;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.all-demo:hover {
    transition-timing-function: ease-in-out;
    transition-duration: .9s;
    left: 95px;
    background: #ffd72e;
}

.all-demo:hover i {
    color: #000;
}

.all-demo a {
    color: #000;
    font-size: 16px;
    display: block;
    text-decoration: none;
    font-weight: 600;
}

.btm-80 {
    bottom: 15px;
    left: -290px;
    animation: blink 1s infinite;
    /* animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;*/
}