* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    box-sizing:border-box;
    font-family: 'Roboto', sans-serif!important;
    color: var(--secondary-color);
    overflow-y: scroll;
}
:root {
    --primary-color: #856d47;
    --secondary-color: #35312F;
    --white: #fff;
    --bg-color: #f1e4c9;
    --black: #000;
}

img{
    width:100%;
}
ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}
a {
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}
h2{
    position: relative;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 25px;
    color: #000;
}
.btn,.btn[type="submit"]{
    padding: 12px 30px;
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--white);
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    overflow: hidden;
}
.btn a{
    color: var(--white) !important;
    position: relative;
    z-index: 9;
}
.btn:hover{
    background-color: transparent;
    color: var(--white);
}
.btn:before,.btn[type="submit"]:before {
    content: "";
    width: 100%;
    height: 100%;
    top: 100%;
    left: 100%;
    background-color: var(--secondary-color);
    position: absolute;
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.btn:after,.btn[type="submit"]:after{
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 100%;
    right: 100%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}
.btn:hover:before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.btn:hover:after{
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
}
form .btn{
    background-color: var(--secondary-color);
}
form .btn:before {
    background-color: var(--primary-color);
}
form .btn:after {
    background-color: var(--primary-color);
}
.main_footer{
    padding: 60px 0 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}
/*section.main_footer:before {
    position: absolute;
    left: 62%;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: #017b921a;
}*/.scrollTop{
    position: fixed;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    bottom: 10px;
    right: 30px;
    z-index: 999;
    background-color: var(--secondary-color);
    border:1px solid var(--secondary-color) ;
    text-align: center;
    line-height: 45px;
    transition: all 0.4s ease-in-out;
}
.scrollTop a{
    color: var(--white) !important;
}
.scrollTop:hover{
    background-color: var(--primary-color);
}
.main_header{
    background-color:var(--bg-color);
    border-bottom: 1px solid var(--primary-color);
    backdrop-filter: blur(5px);
    z-index: 9999;
    padding:15px 0;
}
.site_logo{
    width: 230px;
    margin-bottom: -40px;
    border: 1px solid var(--bg-color);
    margin-top: -16px;
}
.nav_menu{
    gap: 35px;
}
.main_header .main_menu{
    gap: 35px;
}
.main_header .nav_menu  a {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}
.main_header .nav_menu a:hover{
    color: var(--primary-color);
}
.banner_section {
    margin-bottom: 0 !important;
    position: relative;
}
.banner_img{
    height: 800px;
    overflow: hidden;
    position:relative;
}
.banner_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    animation: zoom-in-zoom-out 20s ease-in-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}



.b-arrow {
    position: absolute;
    width: 50px;
    height: 50px;
    color: var(--white);
    text-align: center;
    line-height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
    bottom: -70px; 
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-50%);
}
.b-arrow.prev-arrow{
     left: calc(50% - 30px) ;
}
.next-arrow.b-arrow {
    left: calc(50% + 30px);
}
.b-arrow:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    position: absolute;
    top: 100%;
    left: 100%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(0, 0);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.b-arrow:after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    position: absolute;
    bottom: 100%;
    right: 100%;
    border-radius: 50%;
    opacity: 0;
    transform: translate(0, 0);
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.banner_section .b-arrow:hover, .configuration .b-arrow:hover {
    color: var(--white);
}
.b-arrow:hover:after{
    opacity: 1;
    background: var(--secondary-color);
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
}
.b-arrow:hover:before{
    opacity: 1;
    background: var(--secondary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.small_title{
    margin-bottom: 10px;
}
.small_title h3:before{
    content: "";
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    left: calc(100% + 10px);
    bottom: 10px;
    border-radius: 10px;
}
.small_title span{
    width: 15px;
    border-bottom: 3px dotted var(--primary-color);
    margin-left: 55px;
    display: inline-block;
    margin-bottom: 10px;
}
.small_title h3{
    font-size: 18px;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}
.banner_img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
    opacity: 0.2;
}
#about{
    padding: 50px 0 100px;
    overflow: hidden;
}
.abt_bg_pattern{
    position: absolute;
    width: 100%;
    height: 50%;
    bottom:-30px;
    left: calc(50% + 70px);
    transform: translateX(-50%);
    background-color: #fafafa;
    border-radius: 20px;
    z-index: -2;
}
.abt_bg_pattern img{
    height: 100%;
    object-fit: cover;
}
.abt_img_content{
    position: relative;
    padding-right: 40px;
}
.abt_img{
    width: 70%;
}
.abt_img img{
    border-radius: 10px;
}
.abt_img2{
    margin-left: auto;
    margin-top: -28%;
}
.abt_img3 {
   position: absolute;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
    z-index: -1;
    width: 70%;
    height: 100%;
    /*animation: 8s linear infinite rotate-con;*/
}
.down_btn{
    position: absolute;
    top: 30px;
    left: 65%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    background-image: url("../Images/bg_pattern_1.png");
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 160px;
    height: 160px;
    border: 10px solid var(--white);
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
}
.down_btn a{
    color: var(--white) !important;
    
}
.down_btn i {
    font-size: 30px;
}
.abt_service{
    gap: 10px;
    padding-left: 30px;
}
.abt_service i{
    color: var(--primary-color);
    margin-right: 10px;
}
.abt_video_btn{
    width: 40%;
}
.abt_video_btn img{
    border-radius: 10px;
}
.abt_video_btn a{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 16px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    box-shadow: 0 0 10px 5px rgb(171 112 91 / 50%);
    transition: all 0.4s ease-in-out;
}
.abt_video_btn:hover a{
    box-shadow: 0 0 10px 10px rgb(171 112 91 / 50%);
}
.main_footer .row{
    z-index: 1;
    position: relative;
}
.footer_address h3{
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 10px;
    color: var(--primary-color);
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.08em;*/
}
/*.footer_address{color: #dbdbdb;}
.footer_list{color: #fff;}*/
.footer_address a{
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s ease-in-out;
}
.footer_address a:hover{
    color: var(--secondary-color);
}
.location_icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    margin-right: 20px;
}
.footer_location {
    display: flex;
    flex-wrap: nowrap;
}
.virtual_video a{color:#fff;}
.location_detail {
    width: 95%;
}
/*.footer_form {
    padding-left: 50px;
}*/
.form-header h3{
    position: relative;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2em;
/*    margin-bottom: 25px;*/
    color: #000;
}
.contact_info{
    margin-bottom: 50px;
}
.footer_list{
    margin-top: 55px;
}
.footer_list li {
    display: flex;
    align-items: flex-start;
}
.footer_list li i{
    font-size: 20px;
    margin: 5px 10px 0 0;
    color: var(--primary-color);
}
.footer_logo{width: 100%;}

.footer_description{
    text-align: justify;
    line-height: 26px;
}
.footer_description b{color: var(--primary-color);}
.location_detail p{
    line-height: 26px;
}
.phone-input{
    display: flex;
    align-items: stretch;
}
.phone-input select{
    width: auto;
    height: 45px;
    background: transparent;
    margin-bottom: 16px;
    padding: 13px 15px 15px;
    border-bottom: 1px solid var(--primary-color) !important;
    border-radius: 0px;
    font-size: 15px;
    border: 0;
}
.footer_form input,.login-model input{
    width: 100%;
    height: 45px;
    background: transparent;
    margin-bottom: 16px;
    padding: 15px;
    border-bottom: 1px solid var(--primary-color) !important;
    border-radius: 0px; 
    font-size: 15px;
    border: 0;
}
.login-model input {
    border: 1px solid var(--primary-color) !important;
}
.otp-btn {
    margin-bottom: 10px;
}
.footer_form input:focus-visible, .footer_form textarea:focus-visible, .footer_form select:focus-visible,.login-model input:focus-visible, .login-model textarea:focus-visible, .login-model select:focus-visible{
    outline: 0;
}
.footer_form textarea{
    width: 100%;
    height: 100px;
    background: transparent;
    margin-bottom: 16px;
    padding: 15px;
    border-bottom: 1px solid var(--primary-color) !important;
    border-radius: 0px; 
    font-size: 15px;
    border: 0;
}
.footer_form input:focus{
    border: 1px solid #017b92;
}
.footer_form input:placeholder{color: var(--primary-color);}

.bottom_footer{
    padding: 30px 20px;
    background: var(--primary-color);
    border-radius: 10px 10px 0 0;
    
}
.bottom_footer_content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.bottom_footer p{color: var(--white);}
.bottom_footer ul{display: flex;}
.bottom_footer ul li {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #fff;
    color: #fff;
}
.bottom_footer ul li a {
    color: #fff;
}
.bottom_footer ul li:last-child{border: none;padding: 0;margin: 0;}


/*Contact section*/
.contact_form{
    padding: 50px 0 80px;
    background-image: url(../Images/bg_pattern_10.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto;
    overflow: hidden;
}
.form-header p{margin-bottom: 20px;}
/*.form-header span{
    position: relative;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 10px;
    color: var(--primary-color);
    padding-left: 40px;
}*/
/*.form-header span:before {
    width: 30px;
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: var(--primary-color);
}*/
.footer_form{
    border-top: 5px solid var(--primary-color);
    background-color: #fff;
    box-shadow: 0px 10px 50px rgba(7, 36, 95, 0.1);
    padding: 40px;
}
.form_image{
    height: 100%;
}
.form_image img{
    height: 100%;
    object-fit: cover;
}
.form_imageone{
    position: absolute;
    bottom: -45px;
    right: -175px;
    z-index: -1;
}

/*CTA section*/
.cta{
    padding: 50px 0;
/*    background-image: url(../Images/video-gallery-bg-3-1.jpg);*/
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
}
.cta_img{
    margin-left: calc(-50vw + 560px);
}
.cta_img img{
    height: 100%;
    object-fit: cover;
}
.cta .form-header{padding-left: 40px;padding-right: 50px;}
.cta .form-header p{    font-size: 15px;}
.cta_row{
    background: var(--bg-color);
    padding: 60px 0;
}

/*map view section*/
.map_view{position: relative;}
.map_details{
    width: 350px;
    position: absolute;
    top: 0;
    right: 30px;
    background: #fff;
    height: 110%;
    padding: 30px 40px;
    border-top: 5px solid var(--primary-color);
    background-color: #fff;
    box-shadow: 0px 10px 50px rgba(7, 36, 95, 0.1);
    margin-top: -30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.map_details h2{
    font-size: 28px;
}
.map_details ul li{
    background: transparent;
/*    margin-bottom: 16px;*/
    padding: 15px 0;
    border-bottom: 1px solid #0000001f !important;
    font-size: 15px;
    border: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.map_details ul li i{
    margin-top: 3px;
    color: var(--primary-color);
    font-size: 17px;
}
.map_location{
    font-size: 16px;
}
.map_details ul li:last-child{
    border: none !important;
    padding-bottom: 0;
}
.map_view{margin-bottom: 50px;}


/*gallery section*/
.galley{
    padding: 60px 0;
    position: relative;
    /*background-image: url(../Images/choose_shape01.png);*/
    background-size: auto;
    background-position: bottom left;
    background-repeat: no-repeat;
}
.galley .tab {
  overflow: hidden;
      position: relative;
    display: flex;
    overflow: hidden;
    z-index: 1;
    justify-content: center;
    margin-bottom: 20px;
}
.galley .tab button {
  position: relative;
    display: inline-block;
    float: none;
    margin-right: 20px;
    padding: 7px 20px;
    line-height: 28px;
    transition: all 0.4s linear;
  border: none;
  background: var(--primary-color);
    color: var(--white);
}
.galley .tab button:hover {
  background-color: #ddd;
}
.galley .tab button.active, .galley .tab button:hover {
  background-color: var(--secondary-color);
  display: block;
}
.galley .tabcontent.active{
    display: block;
}
.galley .tabcontent {
  display: none;
  padding: 6px 12px;
/*  border: 1px solid #ccc;*/
  border-top: none;
}
.gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/*amenities section*/
.amenities{overflow: hidden;}
.amenities-content {
    position: relative;
    display: block;
    padding-top: 50px;
    padding-bottom: 20px;
    /*margin-left: -200px;*/
    margin-right: 17px;
}
.amenities-content .inner-box {
    position: relative;
    display: block;
    z-index: 1;
}
.amenities {
    background-image: url(../Images/bg_pattern_10.png);
    background-repeat: repeat;
    background-size: contain;
    background-position: center center;
    position: relative;
}
.amenities:before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
}
.amenities-box {
    position: relative;
    display: block;
    margin-right: calc(-50vw + 655px);
}
.amenities-box img{height: 600px;object-fit: cover;}
.amenities-box .b-arrow.slick-arrow{
    bottom: 8px;
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: #fff;*/
    left: 8px;
    top: unset;
}
.amenities-box .next-arrow.b-arrow.slick-arrow {
    left: 63px;
}
.price_details .b-arrow.slick-arrow{
    bottom: 8px;
    position: absolute;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #fff; */
    right: 55px;
    left: auto;
    top: unset;
}
.price_details .next-arrow.b-arrow.slick-arrow{
    right: 0;
}
/*.amenities-box .b-arrow.slick-arrow i{color: var(--primary-color);}*/
/*.amenities-box-descirption{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}*/
.amenities-box-details {
    text-align: left;
    padding: 0px;
    border-radius: 10px;
    /* border: 1px dashed #000; */
    background: #e1dad3;
    margin: 10px 0;
    transition: 0.4s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
/*.amenities-box-details:hover{
    transform: translateY(-10px);
    transition: 0.4s ease-in-out;
}*/
.amenities-box-details img{
/*    width: 50px;*/
    margin-left: auto;
    margin-bottom: 0;
    height: 350px;
    object-fit: cover;
}

.amenities-box-details.amenities-box-details-dark {
    background: var(--primary-color);
}
.amenities-box-details.amenities-box-details-dark h4 {
    color: var(--white);
}
.amenities-box-details.amenities-box-details-dark img{filter: brightness(0) invert(1);}
.amenities-box-details.amenities-box-details-dark span.headline_superheadline {
    color: var(--white);
}
.amenities-box-descirption .slick-slide {
    display: block;
/*    padding: 0 10px;*/
    margin: 0 15px;
}
.amenities_bgimg {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    height: auto;
    z-index: 1;
    padding: 15px 25px;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
}
.amenities-box-details:hover .amenities_bgimg {
    background: var(--secondary-color);
    transition: all 0.4s ease-in-out;
}
.amenities-box-details:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.3;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.amenities-box-details:hover:before {
    visibility: visible;
    transition: all 0.4s ease-in-out;
}
.amenities_bgimg img {
    width: 50px;
    height: auto;
    object-fit: cover;
}
span.headline_superheadline{
    color: var(--white);
}
.amenities-box-details h4{
    font-size: 18px;
/*    font-weight: 600;*/
    line-height: 30px;
    color: var(--white);
    letter-spacing: 0.4px;
    transition: 0.4s ease-in-out;
}

/*video section*/
.virtual_request{
    padding: 150px 0;
    background-image: url(../Images/background_04.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.virtual_request, .virtual_request h2{
    color: #fff;
}
.virtual_video{
    width: 70px;
    margin: 0 auto 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
}
.virtual_video i{font-size:28px;}

#plan{
    padding: 60px 0;
    background-image: url(../Images/bg_pattern_10.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto;
}
.plan_bgimg{
    position: absolute;
    left: 0;
    width: 8%;
    /*animation: 8s linear infinite rotate-con;*/
}
.plan_bgimgone{
    position: absolute;
    right: 0;
    top: 0;
    width: 10%;
    animation: 10s linear infinite rotate-con;
}
@keyframes rotate-con {
    from {transform: rotate(0deg);transition: 0.4s ease-in-out;}
    to {transform: rotate(360deg);transition: 0.4s ease-in-out;}
}
.tab-content>.tab-pane {
    padding: 20px 40px;
}
#nav-tab {
    background-image: url(../Images/plan_bg.png);
    gap: 30px;
}
.nav-tabs button{
    border: none;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    cursor: pointer;
    border-bottom: 2px solid transparent; !important;
    transition: all 0.4s ease-in-out;
}
.nav-tabs button.active{
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--primary-color) !important;
}
.tab-content img{
    width: 80%;
    margin:auto;
    display: block;
}


/*price section*/
.plan_price{
    padding: 80px 0;
}
.plan_price_title{
    padding: 40px 20px;
    background: var(--bg-color);
}
/*.price_detail{
    text-align: center;
}*/
.price_detail h3{
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    line-height: 38px;
}
.price_details{
    padding: 40px;
    height: 100%;
}
.price_img{
    margin-left: -100px;
    margin-bottom: -50px;
}
.price_img_box{
    background: var(--bg-color);
}
.price_description{
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.price_description i{
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0px 10px 50px rgba(7, 36, 95, 0.1);
}
.price_description_box span{
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.price_description_box p{margin-top: 10px;}
.plan_price h2{margin: 0;}


.custom-model-main {
  text-align: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: 0;
  opacity: 0;
  transition: opacity 0.15s linear, z-index 0.15;
  z-index: -1;
  overflow-x: hidden;
  overflow-y: auto;
}
.inq-modal .modal-header {
    position: absolute;
    top: 5px;
    right: 0px;
    z-index: 999;
    color: #000;
    border: none;
}
.model-open {
  z-index: 99999;
  opacity: 1;
  overflow: hidden;
}
.custom-model-inner {
  transform: translate(0, -25%);
  transition: transform 0.3s ease-out;
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin: 30px auto;
  max-width: 97%;
}
.custom-model-wrap {
    display: block;
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
    text-align: left;
    box-sizing: border-box;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}
.model-open .custom-model-inner {
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
}
.model-open .bg-overlay {
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}
.bg-overlay {
  background: rgba(0, 0, 0, 0);
  height: 100vh;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  transition: background 0.15s linear;
}
.close-btn {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
  z-index: 99;
  font-size: 30px;
  color: #fff;
}
.inq-modal .btn-close{
    color: #000;
    filter: brightness(1) invert(0);
    opacity: 1;
}
.btn-close{
    color: #000;
    filter: brightness(0) invert(1);
    opacity: 1;
}
.inq-modal .modal-content{
    background: transparent;
    border: none;
}
.login-model .modal-content{
    border-radius: 0;
    padding: 15px 20px;
    border-top: 5px solid var(--primary-color);
}
.login-model .modal-header{
    border-color: var(--primary-color);
}
.login-model .modal-title{
    font-weight: 600;
}
.login-model .modal-header .btn-close{
    filter: unset;
}


.inq-modal .modal-dialog {
    width: 600px;
    max-width: 600px;
    
}
.inq-modal .modal-body{
    background: #fff;
}
.inq-modal .footer_form{
    box-shadow: unset;
    padding: 30px 30px 20px;
}
.inq-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.inq-modal .footer_form h2{
    font-size: 26px;
}
.inq-modal h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.footer_form p span{ 
    color: var(--primary-color);
}
.amenities-box-descirption{
    margin-top: 20px;
}
.gallery_grid img {
    height: 350px;
    object-fit: cover;
}
.banner_details {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(-0%, -50%);
    width: 370px;
}
.banner_content {
    border-top: 5px solid var(--primary-color);
    background-color: #ffffff8c;
    box-shadow: 0px 10px 50px rgba(7, 36, 95, 0.1);
    padding: 40px 30px;
}
.banner_content h3{
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
    margin-bottom: 10px;
}
.banner_content h2{
    margin-bottom: 15px;
    font-size: 28px;
}
.banner_content .banner_card{
    background: var(--bg-color);
    padding: 15px;
    margin-top: 20px;
}
.banner_content p{
    font-weight: 600;
}
.banner_content .banner_card li {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #c7c7c74f;
}
.banner_content .banner_card li span {
    width: 50%;
}
.banner_content .banner_card li p {
    font-weight: 600;
}
.banner_content .banner_card li:last-child{
    border: none;
    padding: 0;
    margin: 0;
}
.banner_list{
    margin-top: 15px;
}
.banner_list li {
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    font-weight: 600;
}
.banner_list li i{
    font-size: 14px;
    margin-right: 5px;
    color: var(--primary-color);
    margin-top: 3px;
}
.enquiry_btn {
    position: fixed;
    top: 50%;
    right: -65px;
    transform: translateY(-50%) rotate(-90deg);
    border-radius: 8px 8px 0 0;
}
.enquiry_btn:before,.enquiry_btn:after{
    border-radius: 8px 8px 0 0;
}
#exampleModal .modal-content{
    background: transparent;
    border: none;
}

.configuration_box{
    text-align: center;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    padding: 35px 25px;
    margin: 0 10px;
}
.configuration_box p{
    text-align: center;
}
.configuration_box h2{margin-bottom: 20px}
.configuration_box .btn {
    padding: 8px 20px;
    margin-top: 25px;
}
.configuration_box .btn i{
    margin-right: 8px;
    font-size: 14px;
}
.configuration_img{
    overflow: hidden;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
}
.configuration_img img {
    object-fit: cover;
    object-position: center;
}


.amenities-box-descirption .b-arrow {
    top: -60px;
}
.amenities-box-descirption  .next-arrow.b-arrow {
    right: 0px;
    left:unset;
}

.amenities-box-descirption  .prev-arrow.b-arrow {
    right: 60px;
    left:unset;
}
/*.configuration .b-arrow {
    position: absolute;
    bottom: 20px;
    line-height: 50px;
    z-index: 1;
    cursor: pointer;
    border: 2px solid var(--white);
    background: var(--bg-color);
    color: var(--secondary-color);
}*/

/*.banner_section .b-arrow.prev-arrow, .configuration .b-arrow.prev-arrow {
    right: 100px;
}*/
#enquiry_model .modal-body{padding: 0;}
.gallery_items img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery_items {
    height: 430px;
    overflow: hidden;
    margin: 0 10px;
}
.banner_section .slick-dots{
    position: absolute;
    bottom: 15px;
}
.banner_section .slick-dots li button{
    padding: 0 !important;
}
.banner_section .slick-dots li button:before{
    font-size: 20px;
    color: var(--primary-color);
    opacity: 1;
}
.banner_section .slick-dots .slick-active button:before{
    font-size: 20px;
    color: var(--bg-color);
    opacity: 1;
}
.banner_section .slick-dots .slick-active button:before{
    font-size: 24px;
}
.modal-content iframe {
    width: 100%;
}
/*----------Responsive----------*/
@media only screen and (max-width:1400px){
    .cta_row{
        align-items: stretch !important;
    }
    .cta_img{
        height: 100%;
        margin-left: calc(-50vw + 555px);
    }
    .btn, .btn[type="submit"] {
        padding: 12px 25px;
    }
    .footer_form {
        padding: 40px 25px;
    }
    .cta .form-header {
        padding-left: 35px;
        padding-right: 40px;
    }
}
@media only screen and (min-width:1200px) and (max-width:1366px){
    .main_header .main_menu {
        gap: 25px;
    }
    .nav_menu {
        gap: 30px;
    }
    .cta_num.btn {
        padding: 12px 15px;
    }
    .banner_img {
        height: 700px;
    }
    .banner_content {
        padding: 30px 25px;
    }
    #about {
        padding: 40px 0 80px;
    }
    .galley {
        padding: 50px 0;
    }
    .gallery_items {
        height: 330px;
    }
    #plan {
        padding: 50px 0;
    } 
    .form_imageone {
        right: -113px;
    }
    .abt_bg_pattern {
        left: calc(50% + 30px);
    }
    .btn, .btn[type="submit"] {
        padding: 12px 25px;
    }
    .footer_form {
        padding: 40px 25px;
    }
    .contact_form {
        padding: 50px 0 60px;
    }
    .cta .form-header {
        padding-left: 25px;
        padding-right: 30px;
    }
    .main_footer {
        padding: 50px 0 0;
    }

}
@media only screen and (min-width:1025px) and (max-width:1199px){
    .main_header .main_menu {
        display: none !important;
    }
    .banner_img {
        height: 620px;
    }
    .banner_details {
        width: 330px;
    }
    .banner_content {
        padding: 25px 20px;
    }
    .banner_content h3 {
        font-size: 20px;
    }
    .banner_content h2 {
        font-size: 26px;
    }
    .banner_content .banner_card {
        padding: 10px 15px;
    }
    h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    #about {
        padding: 30px 0 60px;
    }
    .abt_img2 {
        margin-top: -15%;
    }
    .abt_img {
        width: 75%;
    }
    .abt_img_content {
        padding-right: 30px;
    }
    .amenities-content {
        padding-top: 40px;
        padding-bottom: 10px;
    }
    .amenities-box-details img {
        height: 270px;
    }
    .amenities_bgimg {
        padding: 10px 20px;
    }
    .amenities-box-descirption .slick-slide {
        margin: 0 10px;
    }
    #plan {
        padding: 40px 0;
    } 
    .galley {
        padding: 40px 0;
    }
    .gallery_items {
        height: 260px;
    }
    .map_details h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .map_details {
        width: 310px;
        padding: 30px 30px;
    }
    .map iframe {
        height: 560px;
    }
    .map_view {
        margin-bottom: 40px;
    }
    .cta {
        padding: 40px 0;
    }
    .cta_img {
        height: 100%;
        margin-left: calc(-60vw + 560px);
    }
    .location_detail {
        width: 100%;
    }
    .cta .form-header {
        padding-left: 0px;
        padding-right: 0px;
    }
    .form_imageone {
        right: -26px;
        bottom: -125px;
    }
    .bottom_footer {
        padding: 20px 20px;
    }
    .footer_logo{
        width: 300px;
        margin-bottom: 30px;
    }
    .footer_logo{
        width: 100%;
    }
    .form_imageone {
        bottom: -132px;
        right: -30px;
    }
    .cta_img {
        height: 100%;
        margin-left: calc(-60vw + 560px);
    }
    .cta .form-header {
        padding-left: 0px;
        padding-right: 0px;
    }
    .location_detail {
        width: 100%;
    }
    .cta_row {
        padding: 40px 0;
    }
    .contact_form {
        padding: 40px 0 60px;
    }
    .contact_form h2 {
        font-size: 24px;
    }
    .contact_form .footer_form input {
        padding: 10px 15px;
        margin-bottom: 10px;
    }
    .contact_form .footer_form textarea {
        padding: 10px 15px;
        margin-bottom: 10px;
        height: 80px;
    }
    .cta h2 {
        margin-bottom: 10px;
    }
    .contact_form .btn {
        padding: 10px 25px;
    }
    .main_footer {
        padding: 50px 0 0;
    }
    .bottom_footer {
        padding: 20px 20px;
    }

}
@media only screen and (min-width:992px) and (max-width:1024px){
    .main_header .main_menu {
        display: none !important;
    }
    .banner_img {
        height: 620px;
    }
    .banner_details {
        width: 330px;
    }
    .banner_content {
        padding: 25px 20px;
    }
    .banner_content h3 {
        font-size: 20px;
    }
    .banner_content h2 {
        font-size: 26px;
    }
    .banner_content .banner_card {
        padding: 10px 15px;
    }
    h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .inq-modal h2 {
        font-size: 28px;
    }
    #about {
        padding: 30px 0 60px;
    }
    .abt_img2 {
        margin-top: -15%;
    }
    .abt_img {
        width: 75%;
    }
    .abt_img_content {
        padding-right: 30px;
    }
    .amenities-content {
        padding-top: 40px;
        padding-bottom: 10px;
    }
    .amenities-box-details img {
        height: 270px;
    }
    .amenities_bgimg {
        padding: 10px 20px;
    }
    .amenities-box-descirption .slick-slide {
        margin: 0 10px;
    }
    #plan {
        padding: 40px 0;
    } 
    .galley {
        padding: 40px 0;
    }
    .gallery_items {
        height: 260px;
    }
    .map_details h2 {
        font-size: 26px;
    }
    .map_details {
        width: 310px;
        padding: 30px 30px;
    }
    .map iframe {
        height: 560px;
    }
    .map_view {
        margin-bottom: 40px;
    }
    .cta {
        padding: 40px 0;
    }
    .cta_img {
        height: 100%;
        margin-left: calc(-60vw + 560px);
    }
    .location_detail {
        width: 100%;
    }
    .cta .form-header {
        padding-left: 0px;
        padding-right: 0px;
    }
    .form_imageone {
        right: -26px;
        bottom: -125px;
    }
    .bottom_footer {
        padding: 20px 20px;
    }
    .footer_logo{
        width: 300px;
        margin-bottom: 30px;
    }
    .footer_logo{
        width: 100%;
    }
    .cta_img {
        height: 100%;
        margin-left: calc(-60vw + 560px);
    }
    .cta .form-header {
        padding-left: 0px;
        padding-right: 0px;
    }
    .location_detail {
        width: 100%;
    }
    .cta_row {
        padding: 40px 0;
    }
    .contact_form {
        padding: 40px 0 60px;
    }
    .main_footer {
        padding: 50px 0 0;
    }
    .bottom_footer {
        padding: 20px 20px;
    }
    .form_image img{
        object-position: bottom;
    }

}
@media only screen and (min-width:768px) and (max-width:991px){
    .main_header .main_menu {
        display: none !important;
    }
    .banner_img {
        height: 500px;
    }
    .banner_details {
        width: 305px;
        top: unset;
        bottom: -80px;
        transform: unset;
    }
    .banner-slider.slick-slider{
        margin-bottom: 80px;
    }
    .banner_section .slick-dots {
        bottom: -40px;
        padding: 0 20px;
    }
    .banner_content {
        padding: 25px 20px;
    }
    .banner_content h3 {
        font-size: 18px;
    }
    .banner_content h2 {
        font-size: 24px;
    }
    .banner_content .banner_card {
        padding: 10px 15px;
    }
    h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    #about {
        padding: 40px 0 60px;
    }
    .abt_img2 {
        margin-top: -35%;
    }
    .abt_detail {
        margin-top: 30px;
    }
    .abt_img {
        width: 56%;
    }
    .abt_img_content {
        padding-right: 1.5rem;
    }
    .amenities-content {
        padding-top: 40px;
        padding-bottom: 0px;
    }
    .amenities-box-details img {
        height: 270px;
    }
    .amenities_bgimg {
        padding: 10px 20px;
    }
    .amenities-box-descirption .slick-slide {
        margin: 0 10px;
    }
    .pattern-bg h2 {
        width: 55%;
        margin: auto;
    }
    .amenities-box-descirption {
        margin-top: 20px;
    }
    #plan {
        padding: 40px 0;
    } 
    .galley {
        padding: 40px 0;
    }
    .gallery_items {
        height: 280px;
    }
    .map_details h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .map_details {
        width: 310px;
        padding: 30px 30px;
    }
    .map_details ul li {
        padding: 10px 0;
    }
    .map iframe {
        height: 500px;
    }
    .map_view {
        margin-bottom: 40px;
    }
    .cta {
        padding: 40px 0;
    }
    .cta_img {
        margin-left: 0;
    }
    .location_detail {
        width: 100%;
    }
    .cta .form-header {
        padding-left: 0px;
        padding-right: 0px;
    }
    .form_imageone {
        right: -26px;
        bottom: -125px;
    }
    .bottom_footer {
        padding: 20px 20px;
    }
    .footer_logo{
        width: 300px;
        margin-bottom: 30px;
    }
    .footer_description {
        margin-top: 20px;
    }
    .cta_row {
        padding: 0 0 40px;
        margin-top: 80px;
    }
    .cta_row>.col-lg-6:first-child {
        margin-top: -80px;
    }
    .cta_row .small_title{
        margin-top: 30px;
    }
    .contact_form {
        padding: 30px 0 50px;
    }
    .contact_form .row {
        flex-direction: column-reverse;
    }
    .contact_info {
        margin-bottom: 40px;
    }
    .main_footer {
        padding: 50px 0 0;
    }
    .bottom_footer {
        padding: 20px 20px;
    }
    .form_image img{
        object-position: bottom;
    }

}

@media only screen and (max-width:767px){
    .main_header .main_menu {
        display: none !important;
    }
    .banner_img {
        height: 450px;
    }
    .banner_details {
        width: 282px;
        top: unset;
        bottom: -80px;
        transform: unset;
    }
    .banner-slider.slick-slider{
        margin-bottom: 80px;
    }
    .banner_section .slick-dots {
        text-align: right;
        bottom: -40px;
        padding: 0 20px;
    }
    .banner_content {
        padding: 20px 20px;
    }
    .banner_content {
        font-size: 14px;
    }
    .banner_content h3 {
        font-size: 16px;
    }
    .banner_content h2 {
        font-size: 22px;
    }
    .banner_content .banner_card {
        padding: 10px 15px;
    }
    h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .inq-modal .footer_form h2{
        font-size: 22px;
    }
    .inq-modal h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .inq-modal .modal-dialog {
        width:100%;
        max-width:calc(100% - 40px);
    }
    #about {
        padding: 30px 0 50px;
    }
    .abt_img2 {
        margin-top: -30%;
    }
    .abt_detail {
        margin-top: 30px;
    }
    .abt_img {
        width: 70%;
    }
    .abt_img_content {
        padding-right: 1.5rem;
    }
    .amenities-content {
        padding-top: 40px;
        padding-bottom: 0px;
    }
    .amenities-box-details img {
        height: 270px;
    }
    .amenities_bgimg {
        padding: 10px 20px;
    }
    .amenities-box-descirption .slick-slide {
        margin: 0 10px;
    }
    .pattern-bg h2 {
        width: 55%;
        margin: auto;
    }
    .amenities-box-descirption {
        margin-top: 10px;
    }
    #plan {
        padding: 40px 0;
    } 
    .galley {
        padding: 40px 0;
    }
    .gallery_items {
        height: 280px;
    }
    .map_details h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .map_details {
        width: 260px;
        padding: 30px 20px;
    }
    .map_details ul li {
        padding: 10px 0;
    }
    .map iframe {
        height: 350px;
    }
    .map_view {
        margin-bottom: 0;
    }
    .map_details {
        width: 100%;
        padding: 30px 30px;
        position: static;
        height: unset;
        margin: 0;
        border: none;
        box-shadow: none;
    }
    .map_details ul li:last-child {
        padding: 10px 0;
        border-bottom: 1px solid #0000001f !important;
    }
    .cta {
        padding: 10px 0 30px;
    }
    .cta_img {
        margin-left: 0;
    }
    .location_detail {
        width: 100%;
    }
    .cta .form-header {
        padding-left: 0px;
        padding-right: 0px;
    }
    .form_imageone {
        right: -26px;
        bottom: -125px;
    }
    .bottom_footer {
        padding: 20px 20px;
    }
    .footer_logo{
        width: 300px;
        margin-bottom: 30px;
    }
    .footer_description {
        margin-top: 20px;
    }
    .cta_row {
        padding: 0 0 30px;
        margin-top: 80px;
    }
    .cta_row>.col-lg-6:first-child {
        margin-top: -80px;
    }
    .cta_row .small_title{
        margin-top: 30px;
    }
    .contact_form {
        padding: 30px 0 50px;
    }
    .contact_form .row {
        flex-direction: column-reverse;
    }
    .contact_info {
        margin-bottom: 30px;
    }
    .footer_form {
        padding: 30px 20px;
    }
    .inq-modal .footer_form{
        padding: 30px 20px;
    }
    .main_footer {
        padding: 40px 0 0;
    }
    .bottom_footer {
        padding: 20px 20px;
    }
    .form_image img{
        object-position: bottom;
    }
    .b-arrow {
        width: 40px;
        height: 40px;
        line-height: 40px;
        bottom: -60px;
    }
    .b-arrow.prev-arrow {
        left: calc(50% - 25px);
    }
    .next-arrow.b-arrow {
        left: calc(50% + 25px);
    }
    .amenities-box-descirption .prev-arrow.b-arrow {
        right: 50px;
        left: unset;
    }
    .amenities-box-descirption .b-arrow {
        top: -50px;
    }
    .configuration_box {
        padding: 25px 25px;
    }

}
@media only screen and (max-width:575px){
    p {
        text-align: justify;
    }
    .btn, .btn[type="submit"] {
        padding: 8px 25px;
    }
    .banner_content h2 {
        margin-bottom: 10px;
        margin-top: 5px !important;
    }
    .banner_content {
        padding: 12px 15px;
    }
    .banner_details {
        bottom: 0px;
    }
    .banner-slider.slick-slider {
        margin-bottom: 0px;
    }
    .banner_content .banner_card {
        padding:10px 15px;
        margin-top: 10px;
    }
    .banner_section .slick-dots .slick-active button:before {
        font-size: 20px;
    }
    .banner_section .slick-dots {
        text-align: center;
        bottom: 50%;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: center;
        gap: 5px;
        padding: 0 5px;
    }
    .banner_list {
        margin-top: 10px;
    }
    .banner_details .btn{
        padding: 5px 20px;
    }
    .abt_detail .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .abt_service {
        padding-left: 0px;
        padding-top: 20px;
    }
    .abt_video_btn {
        width: 100%;
    }
    .pattern-bg h2 {
        width: 100%;
    }
    .abt_bg_pattern {
        left: 50%;
    }
    .cta_num.btn {
        padding: 10px 10px;
    }
    .cta_num.btn span{
        display: none;
    }
    .amenities-box-descirption .prev-arrow.b-arrow {
        right: unset; 
        left: calc(50% - 25px);
    }
    .amenities-box-descirption .next-arrow.b-arrow {
        right: unset; 
        left: calc(50% + 25px);
    }
    .amenities-box-descirption .b-arrow {
        top: unset;
        bottom: -50px;
    }
    .amenities-box-descirption {
        margin-bottom: 80px;
    }
    .amenities-box-details{
        margin: 5px 0;
    }
    .inq-modal .footer_form {
        padding: 25px 15px;
    }
    .inq-modal .footer_form h2 {
        font-size: 20px;
    }
}