/* common css ******************************************************************************/

@font-face {
    font-family: "Silk-Serif-Light";
    src: url('../fonts/Silf-Serif/Silk-Serif-Light.otf');
}

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

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

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

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

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



:root {
    --white: #fff;
    --black: #000;
    --primary_black: #363636;
    --black_454545: #454545;
    --dark_gray: #454545;
    --theme-color: #D6B36B;
    --secondary_theme: #D7B56C;
    --gray_939393: #939393;

    --Poppins_Light: "Poppins-Light";
    --Poppins_Regular: "Poppins-Regular";
    --Poppins_SemiBold: "Poppins-SemiBold";
    --Poppins_Bold: "Poppins-Bold";


    --Gilroy_Light: "Gilroy-Light";

    --Silk_Serif_Light: "Silk-Serif-Light";

    --bg_gradient: linear-gradient(45deg, #CAA554, #D7B56D, #CAA554);
}

.white {
    color: var(--white);
}

.black {
    color: var(--black);
}

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

*::before,
*::after {
    box-sizing: border-box;
}

.common::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
}

body {
    background: var(--white);
    font-family: var(--Poppins_Regular)
}

body.show {
    position: fixed;
    top: 0;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--primary_black);
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

h1 {
    color: var(--white);
    font-family: var(--Silk_Serif_Light);

    font-size: clamp(2.25rem, 4vw + 1.25rem, 6rem);
    /* font-size: clamp(2.25rem, .136vw + 1.023rem, 5.625rem); */
    /* font-size: clamp(2.25rem, .136vw + 1.023rem, 5.625rem); */
    font-size: clamp(2.5rem, 4vw + 1.364rem, 6rem);
}


h2 {
    font-size: 44px;
    text-transform: uppercase;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 20px;
}

p {
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--primary_black);
    font-family: var(--Poppins_Regular);
}

p:last-child {
    margin-bottom: 0;
}

.small {
    font-size: 16px;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    text-transform: capitalize;
    display: inline-block;
    line-height: 1.2;
    color: inherit;
    font-family: inherit;
}

span {
    display: inline-block;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-family: var(--Silk_Serif_Light);
    color: var(--theme-color);
    margin-bottom: 0;
    font-size: 2rem;
    font-size: clamp(2rem, 1.4057894868523104rem + 2.9710525657384474vw, 4.375rem);

}

.btn-common {
    font-size: 20px;
    padding: 12px 40px;
    background: var(--bg_gradient);
    color: var(--white) !important;
    border-radius: 5px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--Poppins_Regular);
    text-transform: uppercase;
    transition: 0.3s ease-in;
    position: relative;
    overflow: hidden;

}

.btn-common::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    transition: 0.3s ease-in;
    background: #000;
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0 50%, 0% 0%);
    z-index: 0;

}

.btn-common span {
    position: relative;
    z-index: 2;
}

.btn-common:hover {
    transform: translateY(-10px);
    color: var(--white);
}

.btn-common:hover::after {
    left: 0%;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0% 100%, 0 50%, 0% 0%);

}

.btn-common.white {
    color: var(--black_454545) !important;
    background: var(--white);
    min-width: 217px;
}

.btn-common.white:hover span {
    color: var(--white);
}

.btn-common img {
    max-width: 30px;
    margin-right: 10px;
}

section {
    /* padding-bottom: 100px; */
    overflow: hidden;
}

.bg {
    padding: 100px 0;
}

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

img,
video {
    max-width: 100%;
}

.button-box {
    padding-top: 20px;
}

.button-box ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
    background: var(--black);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--white);
    outline: 2px solid var(--white);
    outline-offset: 3px;
}

.owl-nav {
    margin-top: 0;
}

.owl-nav button {
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    margin: 8px !important;
}

.owl-nav button.owl-prev {
    /* left: 0; */
}

.owl-nav button.owl-next {
    /* right: 0; */
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--theme-color) !important;
    border-radius: 50% !important;
}

.form-control-common {
    background: var(--white);
    border: 1px solid var(--black);
    font-size: 20px;
    padding: 15px 50px 15px 20px;
    width: 100%;
    appearance: textfield;
    color: var(--black);
    border-radius: 0;
    box-shadow: none;
    resize: none;
    outline: none;
}

.input-group {
    padding-bottom: 30px;
}

.grid-wrapper {
    display: grid;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
    0% {
        transform: translateY(-60px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

#header.show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
    z-index: 1000;
    box-shadow: 0 0 10px 2px #000;
    background: var(--black);
    padding: 15px 0;
}

#header {
    background: transparent;
    padding: 0;
    transition: .5s all;
    position: absolute;
    top: 30px;
    width: 100%;
}

#header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .logo-box img {
    max-width: 220px;
    width: 100%;
}

#header.show .logo-box img {
    max-width: 140px;
    width: 100%;
}

#header.show .btn-common {
    font-size: 16px;
    padding: 12px 30px;
}

#header.show .btn-common.white {
    min-width: 170px;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
    display: none;
    cursor: pointer;
    position: relative;
    z-index: 11;
    width: 30px;
    height: 30px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: .5s all ease-in-out;
    position: relative;
    border-radius: 5px;
}

#header .main-nav .cancel-menu span {
    position: absolute;
    height: 4px;
}

#header .main-nav .cancel-menu span:first-child {
    transform: rotate(45deg);
}

#header .main-nav .cancel-menu span:last-child {
    transform: rotate(-45deg);
}

#header .main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-left: 20px;
}

#header .button-box {
    margin-left: 20px;
    padding-top: 0;
}

#header .main-nav nav ul li {
    display: inline-block;
    position: relative;
    margin-right: 20px;
}

#header .main-nav nav ul li a {
    color: var(--white);
    padding: 5px;
    font-size: 18px;
}

/* homeBanner css ******************************************************************************/
#homeBanner .homeBanner-part {
    background: url("../images/hero-banner-desktop.png") no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 800px;
    /* min-height: 1080px; */
}

#homeBanner .homeBanner-part .box {
    padding-top: 100px;
    padding-left: 20px;
}

#homeBanner .homeBanner-part .box h1 span {
    display: block;
}

/* about css ******************************************************************************/

.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* .about-part{
    background: url('../images/about-bg.png');
} */
#about .about-box .grid-wrapper {
    grid-template-columns: 35% 1fr;
    gap: 50px;
    align-items: center;
}

#about .about-box .section-heading {
    margin-bottom: 30px;
}

#about .about-box .btn-common {
    font-family: var(--Poppins_Bold);
}


/* Form css  */

.callback-form {
    border-radius: 10px;
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.1);
    margin-top: -180px;
    overflow: hidden;
    margin-bottom: 100px;
    border: 1px solid var(--secondary_theme);
}

.callback-form form {
    background-color: #fff;
    padding-block: 50px 30px;
    width: 85%;
    margin: 0 auto;
}

.callback-form h3 {
    text-align: center;
    /* font-size: 24px; */
    font-family: var(--Poppins_SemiBold);
    color: var(--dark_gray);
    margin: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
}

.callback-form h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    height: 1px;
    width: 80%;
    background: var(--secondary_theme);
    transform: translateX(-50%);
}

.callback-form .form-label {
    margin: 0;
    margin-right: 12px;
    color: var(--gray_939393);
    font-size: 18px;
}

.callback-form .btn-group .btn {
    border-radius: 0;
    border: 1px solid var(--gray_939393);
    font-size: 18px;
    margin-right: 0;
    width: 100%;
    border-radius: 5px !important;
    cursor: pointer;
}

.callback-form .btn-group .btn:hover {
    border: 1px solid var(--theme-color);

}

.callback-form .btn-group .btn.active {
    background-color: #c5a46d;
    color: #fff;
    border-color: #c5a46d;
}

.callback-form .input-group {
    padding: 50px 0 30px 0;
}

.callback-form .input-group div:first-child {
    padding-left: 0;
}

.callback-form .input-group div:last-child {
    padding-right: 0;
}

.callback-form .form-control {
    border-radius: 5px;
    border: 1px solid var(--gray_939393);
    padding: 10px 12px;
    font-size: 18px;
}

.callback-form .form-control:focus {
    border: 1px solid var(--theme-color);
    box-shadow: none;

}



.callback-form .btn-group label:last-child {
    margin-right: 0;
}

.submit-btn {
    background: var(--bg_gradient);
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-size: 20px;
    border-radius: 5px;
    display: block;
    margin: 0 auto;
}
/* .wpcf7-form .wpcf7-form-control .wpcf7-list-item.first .btn , */
.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--white);
    background: var(--bg_gradient);
    border-color: transparent;
    font-family: var(--Poppins_SemiBold);
}


/* New css after form dynamic  */
.wpcf7-form p {
    margin-bottom: 0;
    width: 100%;
}

.wpcf7-form p:has(label.form-label) {
    width: auto;
}

.wpcf7-form .wpcf7-list-item {
    display: inline-block;
    margin: 0 !important;
    position: relative;
    flex: 1 1 auto;
    margin-right: 10px !important;
}
.wpcf7-form .wpcf7-list-item .btn-check {
	pointer-events: fill;
	clip: unset;
	width: 100%;
	height: 100%;
	opacity: 0;
    cursor: pointer;
}
.wpcf7-form .wpcf7-form-control {
    /* position: relative; */
    display: flex;
    vertical-align: middle;
}

.wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.callback-form .wpcf7-spinner {
    display: none;
}

/* Amenities css ******************************************************************************/

.Amenities-box .section-heading p {
    font-size: 20px;
}

#Amenities .grid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 50px;
    column-gap: 30px;
}

#Amenities .grid-wrapper .box {
    text-align: center;
    height: 100%;
    min-height: 210px;
}

#Amenities .grid-wrapper .icon-box {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--secondary_theme);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    margin-inline: auto;
}

#Amenities .grid-wrapper .icon-box img {
    max-width: 70px;

}

#Amenities .grid-wrapper .box p {
    line-height: 1.2;
}

#Amenities .owl-theme .owl-nav {
    margin-top: 30px;
}

/* Impressions css ******************************************************************************/

.Impressions-part {
    background-size: contain !important;
    background-position: top !important;
}

#Impressions .grid-wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    /* grid-template-rows: 1fr 1fr 1fr; */
    grid-template-rows: repeat(2, 1fr)
}

#Impressions .grid-container .box {
    min-height: 400px;
    overflow: hidden;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr 1fr;
}

.grid-container .box1 {
    grid-column-start: span 3;
}

.grid-container .box2 {
    grid-column-start: span 3;
}

.grid-container .box3 {
    grid-column-start: span 2;
}

.grid-container .box4 {
    grid-column-start: span 2;
}

.grid-container .box5 {
    grid-column-start: span 2;
}



/* section css ******************************************************************************/
.WalkThRough-part {
    padding-bottom: 150px !important;
}

.WalkThRough-part .video-box {
    filter: drop-shadow(0px 12px 12px #00000020);
    position: relative;
}

.WalkThRough-part .video-box .control-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    /* color: white; */
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    display: block;
}

.WalkThRough-part .video-box .control-button img {
    max-width: 80px;
}

/* location section css ******************************************************************************/
#location .grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
}

.location-part {
    background: var(--dark_gray);
}

.box.map-img {
    margin: -30px 0;
}

/* FAQ part css ******************************************************************************/
.FAQ-part .section-heading h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
}

.FAQ-part .section-heading p {
    text-transform: capitalize;
    font-size: 5rem;
    margin-bottom: 0;
}

.FAQ-part .section-heading h2::after {
    bottom: -14px;
}

.FAQ-part .accordion-item,
.FAQ-part .accordion-header,
.FAQ-part .accordion-button {
    background: transparent;
}

.FAQ-part .accordion-button {
    color: var(--secondary_theme);
    background: transparent;
    font-size: 1.4rem;
    padding-left: 0;
    padding-block: 20px;
    border-color: var(--secondary_theme) !important;
    text-transform: uppercase;
    font-family: var(--Poppins_Light);
    font-size: 2rem;
}

.accordion-body {
    padding-inline: 0;
}

.data-box p {
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-size: 1.2rem;
    font-family: var(--Poppins_Light);
    text-transform: capitalize;
    margin-bottom: 5px;
}

.FAQ-part .accordion-button:not(.collapsed),
.FAQ-part .accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

.FAQ-part .accordion-button::after {
    /* width: 11px;
    height: 11px; */
    background-image: url('../images/minus.png') !important;
    background-size: 100% 100%;
    transform: unset;
}

.FAQ-part .accordion-button.collapsed::after {
    background-image: url('../images/plus.png') !important;

}

.FAQ-part .accordion-button:not(.collapsed)::after {
    transform: rotate(0) !important;
}


/* footer css ******************************************************************************/
.footer-part {
    background: var(--black);

}

#footer .top-box {
    padding-top: 150px;
}

#footer .top-box .col-md-6 {
    padding: 0 100px;
}

#footer .top-box .col-md-6:last-child {
    border-left: 1px solid var(--theme-color);
}

#footer .top-box p {
    color: var(--white);
}


#footer .end-box {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--theme-color);
}

#footer .end-box p {
    color: var(--white);
    text-align: center;
    font-family: var(--Gilroy_Light);
}
#footer .top-box .box2 .address {
    margin-bottom: 10px;
}
.address .icon {
    flex-shrink: 0;
}


.bottom-fixed-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.bottom-fixed-btn .btn-common {
    border-radius: 0;
    font-family: var(--Poppins_Bold);
    text-transform: uppercase;
    padding: 14px 0;
}

.bottom-fixed-btn .btn-common:hover::after{
    display: none;
}
.bottom-fixed-btn .btn-common:hover{
    transform: translateY(0);
}



/* Thank you page css  */

.page-template-thank-you-template footer,
.page-template-thank-you-template header{
    display: none !important; 
}
.thankyoucontent {
    height: 100vh;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyoucontent .wrapper-1{
    width:100%;
    display: flex;
  flex-direction: column;
  padding: 30px;
  text-align:center;
  }

  .thankyoucontent .wrapper-1 h1{
    font-family: var(--Silk_Serif_Light);
    font-size:6em;
    letter-spacing:3px;
    color: var(--theme-color);
    margin:0;
    margin-top: 40px;
    margin-bottom:40px;
  }
  .thankyoucontent .wrapper-2 p{
    margin:0;
    font-size:1.3em;
    color:#fafafa;
    font-family: 'Raleway', sans-serif;
    letter-spacing:1px;
    line-height: 1.5;
  }
  .thankyoucontent .go-home {
    background: transparent;
    border: none;
    margin: 30px 0;
    border-radius: 5px;
    cursor: pointer;
    color: var(--white);
    display: block;
    text-align: center;
    width: 100%;
}

  button.go-home img {
    max-width: 50px;
}
  .go-home:hover{
    opacity: 0.9;
  }
