/*@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600&display=swap');*/


/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;1,600&family=Playfair+Display:wght@600&display=swap');*/


/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Playfair+Display:wght@700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Playfair+Display:wght@400;700&display=swap');*/


@font-face {
    font-family: font_custom;
    src: url('../fonts/Magnita.otf');
}

@font-face {
    font-family: 'GothamBookRegular';
    src: url('../fonts/GothamBookRegular.eot');
    src: url('../fonts/GothamBookRegular.eot') format('embedded-opentype'),
        url('../fonts/GothamBookRegular.woff2') format('woff2'),
        url('../fonts/GothamBookRegular.woff') format('woff'),
        url('../fonts/GothamBookRegular.ttf') format('truetype'),
        url('../fonts/GothamBookRegular.svg#GothamBookRegular') format('svg');
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin-left: 0;
    /*font-family: 'Source Sans Pro', sans-serif;*/
    font-family: 'font_custom';
    /*font-family: 'GothamBook';*/
    margin-right: 0;
    background-color: #fff;
    font-weight: 400;
    color: #333333;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0px;
}

p {
    font-size: 14px;
    /*color: rgb(109 109 109);*/
    /*color: rgb(0 0 0 / 80%);*/
    font-family: GothamBookRegular;
}

p.big-p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 30px
}

p.mid-p {
    font-size: 18px;
}

a {
    color: #000;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: #3a1e58;
}

a:hover,
a:focus,
.btn.active,
.btn:active {
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: #fff;
    background: #798E45;
}

img {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    max-width: 100%;
}

.bold-text {
    font-weight: 700;
}

.valign {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.img-center {
    margin-left: auto;
    margin-right: auto;
    left: auto;
    right: auto;
}

.noscroll {
    overflow: hidden;
}

.static {
    position: static;
}

.nopadding {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.clear {
    clear: both;
}

.text-white {
    color: #fff !important;
}

.custom-container {
    display: table;
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.navbar-fixed-top {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 20px;
}

/*btn css*/
.blue-back {
    background: #146bb0;
}

.blue-color {
    color: #002469;
}

.h2-title {
    margin-bottom: 20px;
}

.btn-white {
    background: #fff;
    color: #000 !important;
}

.btn-white:hover,
.btn-white:focus {
    background: #fff;
    color: #000;
}

.btn-green {
    background: #798E45;
    color: #fff;
}

.btn-green:hover {
    background: #A28069;
}

.btn-light-green,
.btn-light-green:hover,
.btn-light-green:focus {
    background: #798E45;
    color: #fff;
}

.btn-all {
    border-radius: 0px !important;
    min-width: 140px;
    padding: 8px 20px 8px 20px;
    font-weight: 700;
    z-index: 1;

    /*text-transform: uppercase;   */
}

.big-btn {
    min-width: 235px;
    margin-bottom: 10px;
}

.btn-transprant {
    border: none;
}

.btn-bordered {
    border: 2px solid #6E1CC3;
    color: #6E1CC3;
}

/*btn css end*/
section.long-block img {
    width: 100%;
}

/*preloader css*/

#preloader {
    height: 100vh;
    width: 100vw;
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99999999999999
}

.loader-block {
    width: 800px;
    height: 800px;
    display: inline-block;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@-webkit-keyframes dot-keyframes {
    0% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    100% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes dot-keyframes {
    0% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
    }

    100% {
        opacity: 0.4;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.loading-dots {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.loading-dots--dot {
    -webkit-animation: dot-keyframes 1.5s infinite ease-in-out;
    animation: dot-keyframes 1.5s infinite ease-in-out;
    background-color: #636466;
    border-radius: 10px;
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.loading-dots--dot:nth-child(2) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading-dots--dot:nth-child(3) {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

/*preloader css end*/

.content-wrapper {
    padding: 0px;
    overflow: hidden;
}

.mob-img {
    display: none !important;
}

.owl-theme .owl-dots .owl-dot {
    background: transparent;
    border: none;
    padding: 0px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e4e4e4 !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #3a1e58 !important;
}

#owl-main.owl-theme .owl-dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section-space {
    padding: 100px 0px 0;
}

/*flex*/

.d-flex {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    /* display: flex; */
}

.flex-justify-center {
    -ms-flex-line-pack: justify;
    align-content: justify;
}

.flex-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-align-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*flex end*/

footer {
    background: #fff;
    padding: 50px 0px;
}

ul.footer-links {
    list-style-type: none;
    padding-left: 0px;
}

.footer-links a {
    color: #333333;
}

ul.footer-links li {
    margin-bottom: 8px;
}

.social-links {
    padding-left: 0px;
}

ul.social-links li {
    display: inline-block;
    margin: 0px 5px 0px 0px;
}

ul.social-links li a {
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 0px 50% 50% 50%;
}

ul.social-links li i {
    color: #999999;
    font-size: 20px;
}

ul.social-links li a:hover {
    background: #492267;
    color: #fff;
}

ul.social-links li a:hover i {
    color: #fff;
}

footer p {
    margin-bottom: 10px;
    font-size: 12px;
}

/*header*/

.navbar-nav > li > a {
    /*color: #fff;*/
    /*text-transform: uppercase;*/
    padding: 7px 20px;
    /*letter-spacing: 1px;*/
    font-size: 12px;
}

.nav-flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 30px;


    -webkit-box-shadow: 0px 15px 15px -15px #b8b8b8;


    box-shadow: 0px 15px 15px -15px #b8b8b8;
}

.nav > li > a:focus,
.nav > li > a:hover {
    background: transparent;
}

/*header end*/

/*banner section*/
.share-btn {
    margin: 0px 10px;
    padding: 0px !important;
}

.banner-slider {
    margin-top: 50px;
}

.main-title {
    color: #fff;
    /* font-size: 80px;
    line-height: 90px;*/
    /*    font-size: 64px;
    line-height: 77px;*/

    font-size: 34px;
    line-height: 54px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner-data {
    /*width: 70%;*/
    margin: auto;

}

.line-horizontal {
    height: 5px;
    width: 95px;
    background: #A28069;
    margin: 25px 0px 30px;
}

p.main-tagline {
    font-size: 20px;
    line-height: 30px;
    margin: 20px 5px;
}

h2.big-text {
    color: #CBBF81;
    font-weight: bold;
    font-size: 60px;
}

h2.section-title {
    color: #798E45;
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 48px;
    /*font-family: 'Playfair Display', serif;*/
}

.sngl-house {
    margin: 5px 0px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.house-data {
    padding: 20px;
    -webkit-box-shadow: 0px 17px 33px -15px #c8c8c8;
    box-shadow: 0px 17px 33px -15px #c8c8c8;

}

.counter-sm .big-text {
    font-size: 40px;
}

span.title-tagline {
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
}

.outfit-cont p {
    font-size: 20px;
    line-height: 30px;
}

.sgle-outfit {
    margin: 20px 0px;
}

.sgle-outfit.d-flex img {
    height: 60px;
    margin-right: 20px;
}

.outfit-cont h3 {
    font-weight: 600;
    color: #3A1E58;
    font-size: 30px;
}

.testi-cont p {
    font-size: 20px;
    line-height: 30px;
}

p.testi-name {
    font-size: 20px;
    margin-top: 20px;
    color: #798E45;
    font-weight: 600;
    margin-bottom: 0px;
}

.tagline strong {
    color: #000;
}

.home-contact-block {
    text-align: left;
}

p.testi-own {
    color: #798e45;
}


/*home slider*/


.banner-slider .owl-item {
    -webkit-transform: scale(0.6) !important;
    transform: scale(0.6) !important;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
}

.banner-slider .owl-item.active.center {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}

.banner-slider .owl-item.active.center + .owl-item {
    /*transform: scale(0.7) !important;*/
}

.banner-slider .owl-item.active.center p.big-p {
    font-weight: 600;
    color: #000;
}

/*home slioder end*/

/*shape violet*/
/*flower*/

.po-re {
    position: relative;
}

.ovfl-hi {
    overflow: hidden;
}

.pd-bot-20 {
    padding-bottom: 20px !important;
}

.flex-inverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

/*slick slider*/
.slick-dots {
    text-align: left;
}

.slick-dots li {
    margin: 10px 2px !important;
    width: 10px !important;
    background: #3A1E58;
    opacity: 0.2;
    border-radius: 3px;
    height: 7px !important;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
}

.slick-dots li.slick-active {
    background: #3A1E58;
    opacity: 1;
    width: 25px !important;
}

.slick-dots li button {
    width: 10px !important;
    height: 2px !important;
}

.slick-dots li button:before {
    content: none !important;
    height: 2px !important;
    width: 5px !important;
    background: #000;
}

.slick-dots {
    position: relative !important;
}

.slider-testi-nav .slick-list {
    padding: 20px 30px !important;
}

.slider-testi-nav .slick-slide {
    -webkit-transform: scale(0.6) translateX(-150px);
    transform: scale(0.6) translateX(-150px);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    position: relative;
}

.slider-testi-nav .slick-slide.slick-current.slick-active.slick-center + .slick-slide {
    -webkit-transform: scale(0.7) translateX(-140px);
    transform: scale(0.7) translateX(-140px);
    z-index: 2;
}

.slider-testi-nav .slick-slide.slick-current.slick-active.slick-center {
    -webkit-transform: scale(0.8) translateX(-60px);
    transform: scale(0.8) translateX(-60px);
    z-index: 3;
}

.quote-img {
    display: inline-block;
    margin-right: 3px;
    margin-left: 3px;
    width: 16px;
    position: relative;

}

nav#main-navbar {
    margin-bottom: 0px;
}

.quote-img img {
    display: inline-block;
    margin-top: -15px;
}

/*animation*/
.title,
.animated-text {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.title.move,
.animated-text.move {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.anim-f-rt {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
}

.anim-f-rt.moveL {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.anim-f-lt {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    -webkit-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.anim-f-lt.moveR {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.anim-f-bt {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.anim-f-bt.moveU {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.anim-f-tp {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.anim-f-tp.moveD {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.sub_title {
    font-weight: 600;
    margin: 20px;
}

.logo-lollypop {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0px 20px;

}

/*form*/
/*newly for this pro*/
.testi-block {
    text-align: center;
    margin-top: 30px;
}

/*watch section*/
.watch-section {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.video-block {
    width: 100%;

/*    padding: 40px 0px;*/
}

.video-block.v-video {
    margin: auto;
}

.notify-block {
    padding: 50px;
    width: 30%;
    background: #000;
    color: #fff;
}

p.title-noti {
    font-size: 24px;
}

/*watch end*/

/*testimonial*/
.testi-img img {
    width: 60px !important;
    margin: auto;
    height: 60px;
    border-radius: 50%;
}

p.testi-descri {
    text-align: left;
    padding-left: 15px;
    /*font-style: italic;*/
    border-left: 4px solid #A28069;
}

.sngl-testi {
    background: #f1f1f1;
    padding: 20px;
    min-height: 270px;
}

button.owl-next,
button.owl-prev {
    background: #798e45 !important;
    border: none;
    width: 40px;
    height: 40px;
    color: #ffffff !important;
    position: absolute;
    top: 50%;
    /* font-size: 53px; */
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 0px 15px 15px -15px #000;
    box-shadow: 0px 15px 15px -15px #000;
}

button.owl-prev {
    left: 0px;
}

button.owl-next {
    right: 0px;
}

button.owl-next span,
button.owl-prev span {
    font-size: 32px;
    line-height: 26px;
}
    button.owl-next:hover,
    button.owl-prev:hover {
        background-color: #772630;
    }
.gray-back {
    background: #f1f1f1;
}

/*testi end*/

/*amenities section*/
.ame-img {
    margin-bottom: 20px;
}

.ame-icon {
    /* border-top: 5px solid #A28069; */
    padding: 10px 0px;
    margin-top: 20px;
    height: 120px;
    width: 120px;
    text-align: center;
    margin: 0 auto;
}

.sngl-ame p {
    color: #798E45;
    font-size: 18px;
    font-weight: 600;
    padding: 0px 20px;
}

p.md-text {
    font-weight: 600;
    font-size: 25px;
}

.block-down-ame {
    margin: 0 auto;
    margin-top: 100px;
    display: block;
    text-align: center;
}
.sngl-ame {
    margin: 20px;
}

.ame-icon img {
    /* height: 100%; */
}

/*amenities end*/

/*house block*/
.house-prices {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.red-color {
    color: red;
}

.house-prices p {
    font-size: 20px;
}

.house-price {
    font-weight: 600;
}

/*house block end*/


/*banner*/
h1.main-title {
    position: relative;
    padding: 30px 40px;
    /*font-family: 'Playfair Display', serif;*/
}

h1.main-title:after {
    position: absolute;
    content: "";
    width: 28%;
    height: 100%;
    background: rgb(121 142 69 / 60%);
    left: 0px;
    top: 0px;
    z-index: -1;
}

h3.main-tagline {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #798E45;
}

.banner-right {
    padding: 25px 40px 20px;
    background: #fff;
}

ul.feature-listing {
    padding: 10px 0px;
    border-top: 1px solid #b3b3b3;
    border-bottom: 1px solid #b3b3b3;
    list-style-type: none;
}

ul.feature-listing li img {
    /* width: 30px; */
    margin-right: 10px;
    /* margin-top: -7px; */
    /* line-height: 25px; */
}

ul.feature-listing li {
    font-size: 16px;
    margin: 10px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: 'GothamBookRegular';
}

.iconImg {
    min-width: 66px;
}

.banner-btns {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
    margin: 20px 0px;
    width: 70%;
    gap: 15px;
}

.banner-price-block {
    padding: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

h4.banner-price {
    font-weight: 600;
    padding: 10px;
    font-size: 20px;
}

h4.banner-price-title {
    color: #676767;
    font-size: 28px;
}

.banner-price-title {
    padding-right: 10px;
}

a.logo-ab {
    position: fixed;
    left: 20px;
    top: 20px;
    background: #ffffff;
    padding: 20px;
}

a.logo-ab {
    z-index: 999;
    width: 120px;
}

/*banner end*/

a.whatsapp-icon {
    text-align: right;
    width: auto;
    padding: 0px 20px 20px;
    position: fixed;
    bottom: 0;
    z-index: 999;
    bottom: 30px;
    right: 0;
}

a.whatsapp-icon img {
    width: 50px;
}

.moretext,
.moretext-2,
.moretext-3,
.moretext-4,
.moretext-5,
.moretext-amenit{
    display: none;
}

.btn-house {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.title-house {
    margin-bottom: 2px !important;
}

span.label-house {
    /* background: #3a3a3a; */
    color: #a28069;
    font-weight: 600;
    margin: 8px 0px;
    display: inline-block;
    padding: 2px 5px;
    letter-spacing: 1px;
    font-family: 'GothamBookRegular';
}

span.ame-name {
    position: absolute;
    bottom: 5px;
    left: 0px;
    background: rgb(121 142 69 / 60%);
    color: #fff;
    font-size: 10px;
    padding: 10px;
    font-family: 'GothamBookRegular';
}

.cta-2 {
/*    float: right;*/
}


/*
.house-img button.owl-prev {
    left: 0px;
    opacity: 0 !important;
}

.house-img button.owl-next {
    right: 0px;
    opacity: 0 !important;
}
.owl-buttons div:hover {
  color:#000000;
  opacity: 1 !important;
}*/


.owl-carousel:hover .owl-nav.house-img {
    display: block;
}

.section-space p {
    font-family: GothamBookRegular;
    /* font-size: 14px; */
    /* line-height: 20px; */
    letter-spacing: 0.32px;
    /* line-height: 31px; */
    color: #595959;
    text-align: center;
   
    font-family: 'Montserrat';
    color: #000;
    font-size: 16px;
}

/** custom css **/

button.owl-next,
button.owl-prev {
    /*    background: #798e45 !important;*/
    background: transparent !important;
    border: none;
    width: 40px;
    height: 40px;
    line-height: 0;
    color: #ffffff !important;
    position: absolute;
    top: 50%;
    /* font-size: 53px; */
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-shadow: 0px 15px 15px -15px #000;
    box-shadow: 0px 15px 15px -15px #000;
}

.owl-carousel:hover button.owl-next,
.owl-carousel:hover button.owl-prev {
    background: #772630 !important;
    background: rgb(121 142 69 / 60%) !important;
}

#amenit-slide-box .owl-carousel:hover button.owl-next,
#amenit-slide-box .owl-carousel:hover button.owl-prev {
    background: #772630 !important;
    background: rgb(121 142 69 / 100%) !important;
}

.sidebar-contact {
    position: fixed;
    top: 52%;
    right: -350px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 350px;
    height: auto;
    padding: 40px;
    background: #fff;
    /*
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .5s;
    transition: .5s;
    z-index: 18;
}

.sidebar-contact.active {
    right: 0;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

#modalForm input,
.sidebar-contact input {
    width: 100%;
    height: 36px;
    padding: 5px;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    margin-bottom: 32px;
    color: #000;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #000;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#modalForm h2,
.sidebar-contact h2 {
    margin: 0 0 20px;
    padding: 0;
    color: #798e45;
    text-transform: uppercase;
}

.sidebar-contact textarea {
    height: 60px;
    resize: none
}

.sidebar-contact buuto[type=submit] {
    background: #ca9d75;
    border: 1px solid #ca9d75;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    height: auto;
    padding: 10px;
    -webkit-transition: all .2s linear;
    transition: all .2s linear
}

.sidebar-contact input[type=submit]:focus,
.sidebar-contact input[type=submit]:hover {
    background-color: transparent;
    color: #ca9d75;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover,
button.btn-default,
button.btn-default:active,
button.btn-default:focus,
button.btn-default:hover {
    background-color: transparent;
    border: 0;
    text-align: center;
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none
}

/*
.btnImg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.btnImg:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #798e45;
    top: 0;
    left: 0;
    border-radius: 50%;
    -webkit-transform: scale(.7);
    transform: scale(.7);
    opacity: 0;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

button.btn-default:hover .btnImg:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
}
*/

/*
.btnImg img {
    width: 20px;
    height: 14px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}
*/

button.btn-default span {
    margin-top: 15px;
    display: inline-block;
    color: #798e45;
}

.toggle {
    position: absolute;
    height: 40px;
    width: 210px;
    text-align: center;
    cursor: pointer;
    background: #050650;
    top: 240px;
    left: -125px;
    line-height: 44px;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #fff;
    font-family: 'GothamBookRegular';
   /* text-transform: uppercase;*/
}

.toggle.active {
    height: 49px;
    width: 50px;
    top: 0;
    left: -50px
}

.toggle2 {
    position: fixed;
    height: 48px;
    width: 160px;
    text-align: center;
    cursor: pointer;
    background: #798e45;
    top: 170px;
    right: -54px;
    line-height: 44px;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    color: #fff;
    font-family: 'GothamBookRegular';
    text-transform: uppercase;
}

.toggle2:before {
    content: 'Call Back';
    font-size: 14px;
}

.modal-header .close:focus,
.modal-header .close:hover,
.toggle:focus,
.toggle:hover {
    background-color: #798e45;
}

.toggle:before {
    content: 'ARRANGE A CALLBACK';
    font-size: 14px;
}

.toggle.active:before {
    content: 'X'
}

.navbar {
    min-height: 100px;
    margin-bottom: 0px;
}

.navbar-default {
    background-color: transparent;
    border: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}



.navbar-default .navbar-collapse {
    margin-left: auto;
    position: relative;
    z-index: 20;
}

.navbar-brand {
    height: 100%;
    padding: 0px 0px;
}

.navbar-brand > img {
    width: 130px;
}

.navbar-default .navbar-nav > li {
    margin: 0 10px;
}

.navbar-default .navbar-nav > li > a {
    padding: 0;
    border-bottom: 1px solid transparent;
    border-width: 0px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    position: relative;
    font-size: 16px;
    color: #fff !important;
    font-family: 'GothamBookRegular';
}
    
    .navbar-default .navbar-nav > li > a:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        background-color: #798E45;
        height: 1px;
        width: 0;
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
    }

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    background-color: transparent;
    /*color: #050650;*/
     color: white; 
    /* background-color: #ffffff; */
    font-weight: 800;
    font-size: 14px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #D59C38 !important;
}

.navbar-default .navbar-nav > li > a:hover:after {
    width: 100%;
}

.headerWrapper {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: transparent;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  
}


/*.headerWrapper .navbar-brand img:nth-child(2),
.headerWrapper.scrolled .navbar-brand img:nth-child(1) {
    display: none;
}

.headerWrapper.scrolled {
    background-color: #fff;
    color:black !important;
    position: fixed;
    -webkit-box-shadow: 0px 4px 5px rgb(0 0 0 / 20%);
    box-shadow: 0px 4px 5px rgb(0 0 0 / 20%);
}

.headerWrapper.scrolled .navbar-brand img:nth-child(2) {
    display: block;
}

.headerWrapper.scrolled .navbar-default .navbar-nav > li > a {
    color: #000 !important;
}
    .headerWrapper.scrolled .navbar-default .navbar-nav > li > a:hover {
        color: #4A4D3C !important;*/
    }
    p.manyMore {
        font-size: 18px;
        float: right;
    }

.footerBtnGroup {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 99;
    background-color: #798e45;
    text-align: center;

    color: #fff;
}

.footerBtnGroup a {
    color: #fff;
    padding: 15px 0;
    display: block;
    width: 100%;
    font-family: 'GothamBookRegular';
}

#testi-slider button.owl-prev,
#testi-slider button.owl-next {
    background: #798e45 !important;
}

.sidebar-contact .btn-default,
#modalForm .btn-default {
    display: block;
    width: 100%;
    background-color: #798e45;
    color: #fff;
    padding: 10px 0px;
    border-radius: 0;
    border: 0;
}

.sidebar-contact .btn-default:hover,
#modalForm .btn-default:hover {
    background-color: #A28069;
    color: #fff;
    border: 0;
}

.modal-dialog {
    width: 400px;
}

.modal-title {
    color: #798e45;
}

input {
    font-family: 'GothamBookRegular';
}

.modal-header {
    position: relative;
}

.modal-header .close {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
    /* padding: 17px; */
    background-color: #798e45;
    opacity: 1;
    text-shadow: none;
    color: #fff;
    font-size: 21px;
    line-height: 1;
    width: 50px;
    height: 100%;
}

#watchvideo p {
    color: #fff;
}

.btn {
    font-family: 'GothamBookRegular';
}

/** custom css **/
#plot-1{
    padding: 50px 0;
}
#plot-1 .cta-2{
/*    float: none;*/
    text-align: center;
}
#plot-1 .plot-amenit{
    padding-bottom: 20px;
}
#plot-1 .plot-amenit img{
    margin: 0 auto;
    display: block;
}
#plot-1 .plot-amenit p{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #595959;
    letter-spacing: 0.32px;
    padding: 5px 0;
}
.ytp-pause-overlay.ytp-scroll-min {
    display: none !important;
}
a.call-icon {
    text-align: right;
    width: auto;
    padding:15px;
    position: fixed;
    z-index: 999;
    bottom: 85px;
    right: 0;
}
a.call-icon i{
    font-size: 25px;
    color: #fff;
    background: #050650;
    padding: 13px 13px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
#slide-section{
    padding: 50px 0;
}
.form-all{
    -webkit-box-shadow: none;
    box-shadow: none !important;
    margin: 0px auto !important;
}
#amenit-slide-box button.owl-next, #amenit-slide-box button.owl-prev{
/*    top: 100%;*/
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #798e45 !important;
}
.copyright {
    background-color: #2e2e2e;
    padding: 5px;
    text-align:center;
}
    .copyright p {
        font-size: 12px;
        color: #fff;
        /* display: -webkit-inline-box; */
        display: -ms-inline-flexbox;
        /* display: inline-flex
; */
        /* margin-bottom: 15px; */
        margin-top: -33px;
    }
    .togglec a{
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    
}
strong.bold {
    font-weight: bolder;
    color: #798e45;
    display: block;
    font-size: 22px;
}
.cta-2{
    margin: 0 auto;
    text-align: center;
}
.cta-3{
    margin: 0 auto;
}
.headerWrapper.scrolled .navbar-brand {
   /* background: #ffffff;
    padding: 10px;*/
    height:auto;
}

.navbar-nav li a {
    color: #000;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

    .navbar-nav li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #2171FF;
        transition: width 0.3s;
    }

    /* Hover and active effect */
    .navbar-nav li a:hover,
    .navbar-nav li a.active {
        color: #DBA33D !important;
    }

        .navbar-nav li a:hover::after,
        .navbar-nav li a.active::after {
            width: 100%;
        }
