body {
    margin: 0 auto;
    padding: 0;
    font-family: var(--body-font);
    font-size: .975rem;
    color: #7a7a7a;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    overflow-x: hidden;
    font-feature-settings: "pnum" on, "lnum" on;
    letter-spacing: .35px;
}

* {
    margin: 0;
    padding: 0
}

a.anchor {
    display: block;
    position: relative;
    top: -100px;
    visibility: hidden;
}

:root {

    --color-primary: #cabe9f;
    --color-body: #9ea0a6;
    --primary: #c4a154;
    --white: #fff;
    --h1: 70px;
    --h2: 50px;

    --font28: 28px;
    --font26: 26px;
    --font25: 25px;
    --font24: 24px;
    --font22: 22px;
    --font20: 20px;
    --font18: 18px;
    --font17: 17px;
    --font16: 16px;
    --font15: 15px;
    --font14: 14px;
    --font13: 13px;
    --font12: 12px;
    --font11: 11px;

    --thin: 100;
    --extralight: 200;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --extrabold: 800;
    --black900: 900;

    --title-font: 'Marcellus SC', serif;
    --body-font: 'Montserrat', sans-serif;
}

/*------------ Rule css -----------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--title-font);
    text-transform: uppercase;
}

.justify-text {
    text-align: justify;
}

:focus {
    outline: -webkit-focus-ring-color auto 0;
}

a,
a:hover,
a:focus,
a:visited {
    outline: 0;
    text-decoration: none;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
    -ms-transition: all .4s linear;
    transition: all .4s linear;
}

a {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    outline: 0;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

ul li,
ol li {
    list-style-type: none;
    text-decoration: none;
}

:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--primary);
    color: var(--white);
}


.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}

/*===================== header css ========================*/

.njheader {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}

.site-header {
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .05);
}

.rightnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

}

.navbar {
    padding: 0;
    /* background-image: url(../images/navbg.png);
	background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover; */
    position: relative;
    /* height: 120px; */
}

.navbar .container-fluid {
    padding: 0;
}

/* .navbar-nav {
	position: absolute;
	bottom: 0;
} */
.wrapper {
    margin-top: 0em;
}

.navbar-brand {
    position: relative;
    z-index: 2;

    padding: 0 0 0 48px;
    width: 25%;
    margin-right: 0;
}

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}

.navbar-collapse nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.content-container {
    padding: 75px 0 65px;
    max-width: 750px;
}

p.dwnloadlink {
    font-size: var(--font24);
    line-height: 1.4;
    font-weight: var(--bold);
    color: var(--black);
}

.dwnloadlink a {
    color: var(--primary);
}

.mobitem {
    display: none;
}

.navbar-brand {
    width: 220px;
}

.navbar-brand img {
    width: 100%;
}

.mainhome {
    background-color: var(--secondary-dark);
}

.navbar-nav {
    align-items: center;
    justify-content: flex-end;
    padding-right: 25px;
    width: 100%;
    border-radius: 25px 0 0 0;
    padding-left: 0px;
}

.navbar-nav li a {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #3f4448;
    padding: 15px 0;
    display: inline-block;
    position: relative;
    margin: 0 18px;
}

.navbar-nav li a:before {
    content: "";
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #c4a154;
    position: absolute;
    z-index: 2;
    left: 0;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transition-timing-function: cubic-bezier(.58, .3, .005, 1);
    transition-timing-function: cubic-bezier(.58, .3, .005, 1);
}

.navbar-nav li a:hover {
    color: #c4a154;
}

.navbar-nav li.active a:before,
.navbar-nav li a:hover:before {
    width: 40px;
}

.navbar-nav li.active a,
.navbar-nav li:focus a {
    color: #c4a154;

}

.navbar-nav li:hover a>ul,
.navbar-nav li:focus-within a>ul,
/* this is the line we add */
.navbar-nav li ul:hover {
    visibility: visible;
    opacity: 1;
    display: block;
}

.navbar-nav li:hover a {
    color: #c4a154;

    cursor: pointer;
}

.navbar-nav li:hover .dropdown-menu li a {
    color: var(--black);
    border-bottom: 0;
}

.dropdown-menu {
    min-width: 15rem;
    padding: 15px 15px;
    border: 0;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 27%);
}

.sub-menu {
    left: 100%;
    top: 0;
}

.dropdown-menu:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 126px;
    height: 3px;
    display: none;
    background-color: var(--primary);
}

.dropdown-menu li a {
    font-size: var(--font14);
    line-height: 1;
    font-weight: var(--medium);
    color: var(--black);
    padding: 7px 0px;
    text-transform: capitalize;
    border-bottom: 0;
    letter-spacing: normal;
}

.dropdown-menu li a:hover,
.dropdown-menu li:hover a,
.navbar-nav li:hover .dropdown-menu li a:hover {
    color: var(--primary);
    border-bottom: 0;
}


.product_submenu.dropdown-menu:before {
    left: 0;
    right: 0;
    top: -2px;
    margin: 0 auto;
}

.submenuwrap {
    display: flex;
}

/* .dsubmenu {
	width: 33%;
} */

.header {
    padding: 20px;
    position: relative;
    /* overflow: hidden; */
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin: -0.7em 0 0 0.4em;
    vertical-align: middle;
    content: "";
    border: 0.5em solid;
    border-width: 0 0.15em 0.15em 0;
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

.position-relative {
    position: relative !important;
}

.slider-image {
    width: 100%;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.slider-image img {
    width: 100%;
}

.slider-image:before {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(100 73 12 / 48%);
    z-index: 1;
}

.slider-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    max-width: 600px;
    margin: 0 auto;
    z-index: 2;
    color: #fff;
}

.slider-content h2 {
    font-size: 62px;
    line-height: 1.1;
    text-transform: uppercase;
}

.slider-content h2 span {
    display: block;
    font-size: 1.725rem;
    font-weight: 300;
    font-family: var(--body-font);
    border-top: 1px solid #fff;
    padding-top: 10px;
}

.slider-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    font-size: 1.225rem;
    margin-top: 30px;
}

.slider-content h6 {
    text-align: center;
}

.slider-footer {
    text-align: center;
    display: block;
    padding: 40px 0;
}

.slider-footer .default-btn {
    margin: 0 5px;
}

.slider-footer .default-btn:hover {
    background-color: #9b6d0c;
    color: #fff;
}

.w-lg-75 {
    width: 90%;
}

.heading-title {
    position: relative;
}

.heading-decor .las {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 32px;
    transform: rotate(90deg);
    color: #c4a154;
}

.heading-title h3 {
    font-size: 1.875rem;
    font-weight: 400;
    line-height: 1.2;
    color: #3f4448;
    margin-bottom: 35px;
}

.heading-title h3 span {
    display: block;
    font-weight: 400;
}

.head-title h3 {
    font-size: 1.875rem;
    font-weight: 400;
    line-height: 1.2;
    color: #3f4448;
    margin-bottom: 35px;
}

.sectitle {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    color: #3f4448;
    position: relative;
    margin: 0 auto 50px;
    padding-bottom: 8px;
    width: fit-content;
}

.sectitle:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c4a154;
    height: 2px;
    width: 72%;
    margin: 0 auto;
}

.seclogo img {
    max-width: 190px;
    margin: 0 auto 40px;
    text-align: center;
    display: flex;
}

.subhead b {
    font-weight: 600;
}

p {
    color: #7a7a7a;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: .35px;
}

.text-bold {
    color: #3f4448;
    font-weight: 500;
}

.cardcol {
    text-align: center;
}

.cicon img {
    height: 80px;
    margin-bottom: 15px;
    width: 80px;
}

.cardcol h4 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    color: #976a06;
    margin-bottom: 15px;
    font-family: var(--body-font);
    text-transform: capitalize;
}

.cardcol p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #3f4448;
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

.about-parallax {
    background-image: url(../images/avant-skyline.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;

}

.ourskyline:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* background: url(../images/dot.png) 0 0 repeat;*/
    /*background: linear-gradient(121deg, rgb(227 204 155) 10%, rgb(189 157 85) 90%);*/
}

.about-parallax {
    padding: 110px 0;
}

.box-counter {
    background-color: rgb(173 149 100 / 23%);
    padding: 60px 30px;
    height: 100%;
    border-radius: 10px;
    /*box-shadow: 2px 2px 16px #b17c0a78;*/
}

.box-counter .counter-nummer {
    font-size: 32px;
    line-height: 1;
    font-family: var(--body-font);
    color: #b17c0a;
    margin-bottom: 10px;
}

.box-counter .counter-nummer span {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 500;
}

.counter-nummer b {
    font-size: 16px;
    font-weight: 400;
}

.box-counter .counter-text {
    font-size: 15px;
    line-height: 1.2;
    color: #12222e;
    font-weight: 500;
}

.box-counter .counter-text br {
    display: none;
}

.pagebanner {
    text-align: center;
    padding: 0;
    background-image: url(../images/pagebanner.jpg);
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 420px;

}

.avh5banner.pagebanner {
    height: 550px;
}

.pagebanner:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(80 56 2 / 49%);
    z-index: 1;
}

/*.page-title {
	position: relative;
	z-index: 2;
}*/
.page-title {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 64%;
    transform: translateY(-50%);
}

.page-title h1 {
    color: #fff;
    font-family: Marcellus SC, serif;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .01em;
    font-weight: 700;
    /* margin: 1.5em 0 0;*/
    margin: 0 0 0;
}

.avantage {
    background: url(../images/avant-age.jpg);
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    background-position: center center;
}

.avantage:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(121deg, rgb(227 204 155 / 35%) 10%, rgb(189 157 85 / 45%) 90%);
    z-index: 0;
}

.avh5banner .page-title {
    position: absolute;
    z-index: 2;
    left: 80px;
    right: auto;
    top: 78%;
    transform: translateY(-50%);
}

.avh5banner .seclogo {
    position: absolute;
    bottom: 90px;
    right: 80px;
    z-index: 2;
    width: auto;
    background-color: rgb(239 235 235 / 91%);
    padding: 20px;
}

.avh5banner .seclogo img {
    width: 100%;
    margin: 0;
}

.avh5banner .page-title h1 {
    text-align: left;
}

.avantage .container,
.ourskyline .container {
    position: relative;
    z-index: 2;
}

.cardbox {
    background-color: rgb(255 253 248 / 82%);
    padding: 25px;
    height: 100%;
}

.profileimg {
    background-color: #344864;
    display: flex;
    align-items: flex-end;
}

.profileimg img {
    width: 100%;
}

.profile-content {
    padding: 70px 50px;
}

.profile-content h4,
.team-profile-title h4 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #3f4448;
}

.profile-content h4 span,
.team-profile-title span {
    display: block;
    font-weight: 300;
    font-size: 18px;
    margin-top: 3px;
}

.core-team-two .team-profile-title h4 {
    font-size: 24px;
}

.core-team-two .team-profile-title h4 span {
    font-size: 16px;
}

.team-profile-title h4 {
    color: #fff;
}

.know-more-icon {
    margin-top: 30px;
    margin-bottom: -55px;
}

a.team-profile-img {
    position: relative;
    overflow: hidden;
    display: block;
}

.team-profile-title {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: #c4a154e0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transform: scale(1.2);
    -webkit-transition: all 400ms cubic-bezier(0.07, 0.45, 0.28, 1.03);
    -moz-transition: all 400ms cubic-bezier(0.07, 0.45, 0.28, 1.03);
    -o-transition: all 400ms cubic-bezier(0.07, 0.45, 0.28, 1.03);
    -ms-transition: all 400ms cubic-bezier(0.07, 0.45, 0.28, 1.03);
    transition: all 400ms cubic-bezier(0.07, 0.45, 0.28, 1.03);
}

a.team-profile-img:hover .team-profile-title {
    opacity: 1;
    transform: scale(1);
}

.team-profile-title h4 {
    color: #fff;
}

.team-profile-title h4 span {
    margin-top: 10px;
}

.team-modal .modal-dialog {
    max-width: 900px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.profile-modal-row {
    display: grid;
    grid-template-columns: 35% calc(65% - 35px);
    gap: 35px;
    align-items: flex-start;
}

.team-modal .modal-body {
    padding: 20px 40px 40px;
}

.team-modal .modal-header {
    padding: 1.5rem 1.5rem 0;
    border: 0;
}

.box-ourteam {
    /* border: solid #ebebeb;
    border-width: 1px; */
    padding: 30px 15px 30px 30px;
    /* min-height: 120px; */
}

.firstcol {
    display: flex;

}

.teamhead .box-ourteam {
    padding: 30px 0;
}

.teamhead .content-team {
    justify-content: center;
}

.box-ourteam .avarta-team {
    margin-bottom: 20px;
    background-color: #688aa5;
    overflow: hidden;
}

.box-ourteam .avarta-team .img-fluid {
    width: 100%;
    height: auto;
    padding: 0;
    object-fit: cover;
    margin-bottom: -10px;
}

.teamcol {
    width: 31%;
    border: 1px solid #ebebeb;
    margin: 1%;

}

.content-team {
    display: flex;
    align-items: center;
}

.content-team img {
    width: 35px;
    margin-right: 15px;
}

.box-ourteam .name {
    font-size: 16px;
    line-height: 1;
    color: #3f4448;
    font-weight: 600;
    margin-bottom: 0;
}

.box-ourteam .job {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 0px;
    display: block;
    color: #b17c0a;
    margin-top: 8px;
}

.box-ourteam .job,
.box-ourteam .name {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-team p {
    font-size: .875rem;
    line-height: 1.8;
    color: #9ea0a6;
}

.apartment-block-wrap .row .property {
    margin-bottom: 30px;
}

.property .property-wrap {
    position: relative;
}

.property .property-wrap .post-thumbnail {
    overflow: hidden;
}

.property .property-wrap .post-thumbnail:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: -webkit-linear-gradient(270deg, rgb(196 161 84 / 32%) 48%, rgb(18 34 46 / 80%) 100%);
}

.property .property-wrap .post-thumbnail .img-apartment {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.property-title {
    line-height: 1.2;
    font-weight: 400;
    font-size: 25px;
    width: fit-content;
    margin: 0 auto 10px;
    font-family: var(--title-font);
}

.property-title span {
    display: block;
    font-weight: 300;
    font-size: 14px;
    text-transform: capitalize;
    border-top: 1px solid #fff;
    font-family: var(--body-font);
}

.property .property-wrap .entry-content {
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: 0;
    margin-bottom: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    max-height: 100%;
    z-index: 99;
    background-image: -webkit-linear-gradient(90deg, rgb(18 34 46 / 92%), rgba(37, 39, 40, 0));
    max-width: 100%;
    cursor: pointer;
}

.text-white {
    color: #fff !important;
}

.property .property-wrap .entry-content .link-more {
    font-size: 12px;
    letter-spacing: 2px;
    color: #f5e5c1;
}

.property .property-wrap:hover .post-thumbnail .img-apartment {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

/*.property-wrap a {
	position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    z-index: 2;
}*/
.mv-col {
    text-align: left;
    padding: 50px 70px;
    /*background: -webkit-linear-gradient(317deg, rgb(196 161 84 / 13%) 50%, rgb(149 112 33 / 48%) 100%);*/
    height: 100%;
    position: relative;
    background-color: #faf6ef;
}

.visioncol {
    position: absolute;
}

.mv-col h4 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #3f4448;
}

.apartment-block-wrap {
    width: 80%;
    margin: 0 auto;
}

.careercol {
    background-color: #faf6ef;
    padding: 80px 50px;
    border-radius: 20px;
}

.careercol p {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 25px;
}

.careercol h4,
.careercol-right h4,
.amenitieswrap h4 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #3f4448;
}

.careercol ul li {
    display: grid;
    grid-template-columns: 28% 67%;
    grid-column-gap: 20px;
    color: #3f4448;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid rgb(177 124 10 / 46%);
}

.careercol ul li span {
    font-weight: 700;
    color: #b17c0a;
}

.careercol-right {
    padding: 80px 50px;
}

.bulletlist li {
    color: #3f4448;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    padding: 10px 0 10px 25px;
    position: relative;
}

.bulletlist li:before {
    position: absolute;
    content: "";
    left: 0;
    top: 14px;
    background-image: url(../images/bullet.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 13px;
    height: 16px;
}

.subhead {
    color: #3f4448;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 50px;
}

.amenities-list li {
    color: #3f4448;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    padding: 14px 15px;
    position: relative;
    width: 50%;
    display: grid;
    text-align: left;
    grid-template-columns: 80px 75%;
    align-items: center;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
}

.amenities-list li span {
    display: block;
    background-color: #faf1de;
    width: 60px;
    padding: 10px;
    border-radius: 6px;
}

.amenities-list li span img {
    width: 40px;
}

.amenities-col p {
    display: flex;
}

.amenities-col p b {
    display: block;
}

.amenities-col p i {
    font-size: 40px;
    margin-right: 10px;
    line-height: 1;
}

.lightbg {
    background-color: #faf6ef;
}

.amenitieswrap .amenities-list li {
    color: #3f4448;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    padding: 30px 15px;
    position: relative;
    width: 23%;
    display: block;
    text-align: center;
    grid-template-columns: 32% 65%;
    align-items: center;
    background-color: transparent;
    border: 1px solid #dbcaa7;
    border-radius: 10px;
    margin: 1%;
    transition: all 0.6s ease;
}

.amenitieswrap .amenities-list li span {
    display: block;
    background-color: transparent;
    width: auto;
    padding: 0;
    margin: 0 auto 10px;
}

.amenitieswrap .amenities-list li:hover {
    box-shadow: -17px 10px 16px -3px rgb(149 147 147 / 34%);
    background-color: #faf1de;
    border: 1px solid #faf1de;
}

.amenitieswrap .amenities-list li span img {
    width: 50px;
}

.amenitieswrap {
    padding: 20px;
}

.amenitieswrap h4 {
    text-align: center;
    margin-bottom: 30px;
}

.border-right {
    border-right: 1px solid rgb(177 124 10 / 46%);
    position: relative;
}

.border-right:before,
.border-right:after {
    position: absolute;
    right: -6px;
    top: 0;
    background-color: #f7f7f7;
    width: 10px;
    height: 10px;
    content: "";
    border-radius: 10px;
    border: 1px solid #b17c0a;
}

.border-right:after {
    top: auto;
    bottom: 0;
}

.amenitieswrap .amenities-list {
    justify-content: flex-start;
}

.note {
    text-align: center;
    margin: 40px auto;
    font-size: 14px;
}

.btmtip {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    background-color: #a98129;
    padding: 10px 20px;
    font-weight: 400;
    font-family: var(--body-font);
    border-radius: 10px 10px 0 0;
    width: 85%;
    margin: 0 auto;
    line-height: 1.2;
    position: relative;
}

.btmtip a {
    color: #fff;
    display: block;
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 600;
}

.proleft,
.proright {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
}

.proleft {
    left: 20px;
}

.proright {
    right: 20px;
}

.grid-wrapper img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}

/* Main CSS */
.grid-wrapper>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transform-origin: bottom right;
    transform-origin: bottom right;
}

.grid-wrapper {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    grid-auto-rows: 230px;
    grid-auto-flow: dense;
}

.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .small {
    grid-row: span 1.5;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

.gallerry-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallerry-image .gallery-item-overlay,
.sliderimg .gallery-item-overlay {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    opacity: 0;
    color: #fff;
    top: 0;
    left: 0;
    bottom: 0;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}

.gallerry-image:hover .gallery-item-overlay,
.slider-item:hover .gallery-item-overlay {
    opacity: 1;
    background: rgb(106 74 3 / 54%);
}

.gallerry-image:hover img,
.slider-item:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.gallerry-image .gallery-item-overlay i,
.sliderimg .gallery-item-overlay i {
    color: #fff;
    font-size: 25px;
    z-index: 1;
    opacity: 1;
}

.gallerry-image h5 {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    background-color: #8f6917;
    padding: 5px 10px;
    color: #fff;
    font-family: var(--body-font);
    text-transform: capitalize;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.gallerry-image a,
.sliderimg a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.callus {
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translateY(-50%) translateX(42%) rotate(-90deg);
    background: #a98129;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    z-index: 9;
    text-transform: uppercase;
}

.callus a {
    color: #fff;
}

.video-fluid video {
    width: 100%;
    height: 250px;
}

.video-wrap {
    position: relative;
}

.layoutcol.grid-wrapper {
    height: 100%;
    grid-auto-rows: 100%;
}

.mapblock iframe {
    height: 100%;
}

.layoutcol {
    background-color: #bca67b;
    border-radius: 10px;
}

.slider-item img {
    width: 100%;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.floorplans.slick-slider .slick-track {
    display: flex;
}

.slider-item {
    background-color: #faf6ef;
    /*box-shadow: 2px 2px 5px #ccc;*/
    height: 100%;
    margin: 10px 15px;
    border-radius: 10px;
    overflow: hidden;
}

.sliderimg {
    /*background-color: #231f20;*/
    /*padding: 10px;*/
    position: relative;
    overflow: hidden;
}

.sliderinfo {
    padding: 30px 20px;
    min-height: 140px;
    text-align: left;
    background-color: #faf6ef;


}

.sliderinfo h4 {
    color: #a98129;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}

.sliderinfo p {
    color: #3f4448;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}

.projectcol {
    background: #976d43;
    padding: 50px 30px;
    position: relative;
    left: -5%;
    color: #fff;
}

.projectcol h3 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 10px;
}

.projectcol h4 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    font-family: var(--body-font);
    margin-bottom: 10px;
    text-transform: none;
}

.projectcol p {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    color: #fff;
}

.projectcol .bulletlist li {
    color: #fff;
    text-transform: capitalize;
}

.projectcol .bulletlist li:before {
    background-image: url(../images/arrow-bullet.svg);
}

.project-txt h4 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    font-family: var(--body-font);
    margin-bottom: 10px;
    text-transform: none;
}

.timelinewrap {
    width: 80%;
    padding: 50px 0;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.timelinewrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background: #CCD1D9;
    z-index: 1
}

.timeline-block {
    width: -webkit-calc(50% + 8px);
    width: -moz-calc(50% + 8px);
    width: calc(50% + 8px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    justify-content: space-between;
    clear: both;
}

.timeline-block-right {
    float: right;
}

.timeline-block-left {
    float: left;
    direction: rtl
}

.marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #F5F7FA;
    background: #b17c0a;
    margin-top: 10px;
    z-index: 998;
}

.timeline-content {
    width: 95%;
    color: #3f4448;
    background-color: #fff;
    padding: 20px 40px;
}

.timeline-content h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 500;
    color: #b17c0a;
}

.timeline-content span {
    font-size: 15px;
    color: #a4a4a4;
}

.timeline-content p {
    font-size: 14px;
    line-height: 1.5em;
    word-spacing: 1px;
    color: #3f4448;
}

.bglight {
    background-color: #f7f7f7;
}

/*------------------ contact css ------------------*/

.contact-info {
    background: #faf6ef;
    padding: 50px 50px;
}

.contact-info h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3f4448;
}

.contact-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #3f4448;
}

.contact-info p,
.contact-frm-panel p {
    font-size: 16px;
    margin-bottom: 0px;
    color: #3f4448;
}

.contact-info p span {
    font-weight: 600;
}

.contact-info p a {
    color: #3f4448;
}

.contact-info p a:hover {
    color: #b17c0a;
}

.fw-600 {
    font-weight: 600 !important;
    color: #b17c0a !important;
}

.map-block iframe {
    width: 100%;
    height: 450px;
    display: block;
}

.contact-frm-panel {
    padding: 50px 50px;
    width: calc(100% - 556px);
}

.contact-address-panel {
    padding: 0 15px;
    width: 555px;
}

.contact-frm-container {
    margin: 50px auto 0;
}

.contact-frm-panel h4 {
    font-size: 20px;
    font-weight: 600;
    color: #12222e;
    margin-bottom: 30px;
    font-family: var(--body-font);
}

.contact-address-panel h4 br {
    display: none;
}

.contact-frm-panel form .row {
    margin-bottom: 35px;
}

.contact-frm-panel .form-group label,
.contact-frm-panel .frmgroup label {
    display: block;
    color: #12222e;
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 400;
}

.sticky-form {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--primary);
    background-color: #ab893f;
    z-index: 999;
    padding: 5px 0 6px;
}

.sticky-form h3 {
    position: absolute;
    color: #fff;
    font-size: 18px;
    top: -20px;
    background-color: #ab893f;
    padding: 6px 20px;
    border-radius: 6px 6px 0 0;
    line-height: 1;
    font-weight: 600;
}

.sticky-form .frmrow {
    display: grid;
    grid-template-columns: 26% 26% 26% 0.5% 10%;
    grid-column-gap: 20px;
    align-items: center;
}

.mob-project-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    width: 90%;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    z-index: 999;
}

.mob-project-btn a {
    text-align: center;
    display: block;
    margin: 0 auto;
    color: #fff;
    font-size: 22px;
    padding: 20px 10px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}

.sticky-form .frmrow div.error {
    color: #d70505;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    margin-top: 4px;
    text-align: left;
    position: absolute;
    width: 100%;
    left: 0;
    top: -4px;
}

.error {
    color: #d70505;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    margin-top: 4px;
    text-align: left;
}

.form-group input,
.form-group select,
.frmgroup textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #C4C4C4;
    padding: 10px 15px 10px 0;
    min-height: 48px;
    text-align: left;
    font-size: 16px;
    line-height: 1;
    color: #a2a2a2;
    border-radius: 0;
    background-color: transparent;
}

.sticky-form .frmrow .form-group input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #fff;
    padding: 10px 15px 10px 0;
    min-height: 48px;
    text-align: left;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    border-radius: 0;
    background-color: transparent;
}

.sticky-form .default-btn:hover {
    color: #fff;
    background-color: #8e7133;
    border: 1px solid #8e7133;
}

.sticky-form .frmrow .form-group {
    position: relative;
}

.sticky-form .frmrow .form-group input::placeholder {
    color: #fff;
}

.frmgroup textarea {
    height: 90px;
    resize: vertical;
    line-height: 1.5;
    box-shadow: none;
}

.form-group {
    margin-bottom: 0;
}

.contact-frm-container .default-btn:hover {
    color: #b17c0a;
}

::placeholder {
    color: #a2a2a2;
}

.form-btn:hover {
    background-color: var(--blue);
}

.form-group label,
.frmgroup label {
    font-weight: 600;
}

#form-success {
    height: 0;
    margin: -50px 0 50px;
}

.form-group label span {
    color: #d70505;
}

/*div.error {*/
/*    color: #d70505;*/
/*    font-size: 13px;*/
/*    line-height: 1;*/
/*    display: inline-block;*/
/*    margin-top: 4px;*/
/*    text-align: left;*/
/*}*/
#subscriptionform div.error {
    color: #fd5050;
}

.success-msg {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
    font-weight: 300;
    background-color: transparent;
    padding: 70px 50px;
    color: #b17c0a;
    border: 1px solid #b17c0a;
}

.close {
    position: absolute;
    top: 18px;
    right: 30px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    color: #6C6E70;
    text-shadow: 0 0px 0 #fff;
    opacity: 1;
    z-index: 999;
}

.success-msg-bottom,
.error-msg-bottom {
    display: none;
}

.success-msg.success-msg-block {
    background: #fff;
    padding: 40px 0;
}

.success-msg.success-msg-bottom,
.success-msg-block {
    font-size: 25px;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
    padding: 20px 0 40px;
}

.btn-close:focus {
    outline: none;
    box-shadow: none;
}

.project-modal .modal-content {
    padding: 30px 40px;
    border-radius: 16px;
}

.project-modal .modal-header .btn-close {
    position: absolute;
    right: 25px;
    top: 25px;
}

.project-modal .form-group {
    padding: 0px 0 10px;
}

.bod-modal-close {
    border: 0;
    background: transparent;
    position: absolute;

    z-index: 3;
}

.modal-body {
    padding: 60px 40px;
}

.modal-content {
    border: 0;
    border-radius: 17px;
}

.modal-dialog {
    max-width: 40%;
}

.modal-form .row {
    margin-bottom: 20px;
}

.fileinput {
    position: relative;
}

.fileinput [type=file] {
    height: 0;
    overflow: hidden;
    width: 100%;
}

.fileinput [type=file]+label {
    background: #12222e;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    position: absolute;
    transition: all 0.3s;
    vertical-align: middle;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 10px 15px;
}

.fileinput [type=file]+label:hover {
    background-color: #091117;
}

.tab-heading {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: #344864;
    margin: 35px 0;
    font-family: var(--title-font);
    border-bottom: 1px solid #c4a154;
    padding-bottom: 8px;
}

.media-wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 25px;
    margin-top: 25px;
}

.mediacol {
    width: 23%;
    background-color: #fff;
    padding: 12px;
    border-radius: 10px;
    position: relative;
}

.mediablock h4 {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    color: #3f4448;
    margin-top: 25px;
    font-family: var(--body-font);

}

.mediacol img {
    width: 100%;
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
}

.mediacol img,
.mediacol:before,
.mediacol:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


.mediacol:before,
.mediacol:after {
    content: '';
    background-color: #fff;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.mediacol:before {
    width: 30px;
    height: 1px;
    left: 100%;
}

.mediacol:after {
    height: 30px;
    width: 1px;
    top: 0%;
}

.mediacol:hover img,
.mediacol.hover img {
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: 0.5;
    opacity: 0.5;
}

/*
.mediacol:hover {
	 background: #c4a154;
  background: -moz-linear-gradient(90deg, #8b6616 0%, #c4a154 100%, #503905 100%);
  background: -webkit-linear-gradient(90deg, #8b6616 0%, #c4a154 100%, #503905 100%);
  background: linear-gradient(90deg, #8b6616 0%, #c4a154 100%, #503905 100%);
}*/
.mediacol:hover:before,
.mediacol.hover:before,
.mediacol:hover:after,
.mediacol.hover:after {
    opacity: 1;
    top: 50%;
    left: 50%;
}

.mediacol {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border: 1px solid rgb(177 124 10 / 44%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.mediacol *,
.mediacol *:before,
.mediacol *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mediacol img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
}

.mediacol .overlay {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    /* background-color: rgb(165 124 33 / 88%);*/
    background: linear-gradient(90deg, #8b6616 0%, #c4a154 100%, #503905 100%);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
}

.mediacol i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 4em;
    z-index: 1;
}

.mediacol a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.mediacol:hover .overlay,
.mediacol.hover .overlay {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);

}

.modal-form h4 {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
    color: #3f4448;
    margin-bottom: 25px;
    font-family: var(--body-font);
    text-transform: none;
}

.modal-form {
    max-width: 60%;
    margin: 0 auto;
}

.qr-code-box {
    position: absolute;
    top: -82px;
    right: 40px;
    background-color: #a98129;
    padding: 10px;
    border-radius: 10px;
}

.qr-code-box img,
.qrcode-box img {
    width: 120px;
}

.qr-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    width: 80%;
    margin: 30px auto;
}

.qr-wrap span {
    margin-bottom: 15px;
    font-size: 16px;
}

.qr-wrap span b {
    display: block;
}

.qrleft {
    margin-top: 100px;
}

.qrleft,
.qrleft a {
    text-align: left;

}

.qrleft a {
    margin: 0;
}

.qrbox {
    margin: 0 auto 15px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.qrbox img {
    width: 120px;
}

.qr3row img {
    margin-right: 10px;
}

.qrbox h5 {
    width: 100%;
    display: block;
    font-size: 1rem;
    line-height: 1.1;
    margin: 0 auto 10px;
    text-transform: none;
}

.qrbox h5 a {
    color: #fff;
    display: block;
    margin: 10px auto 5px;
}

.policy-container p {
    margin-bottom: 15px;
    color: #3f4448;
}

.policy-container p a,
.policy-container ul li a {
    color: #3f4448;
    font-weight: 600;
}

.policy-container p a:hover,
.policy-container ul li a:hover {
    color: #b17c0a;
}

.policy-container ul li span {
    font-weight: 600;
}

.policy-container h4,
.policy-container h5 {
    margin: 25px 0 15px;
}

.policy-container h4 {
    font-weight: 700;
}

.policy-container h5 {
    font-weight: 600;
}

.checkinput {
    display: grid;
    grid-template-columns: 20px calc(100% - 30px);
    align-items: flex-start;
    grid-column-gap: 10px;
}

.checkinput input {
    width: 20px;
    height: 20px;
    margin-top: 10px;
}

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

.checkinput input[type="checkbox"][readonly] {
    pointer-events: none;
}

/* ------------------------------- footer ---------------------------------- */
footer {
    background-color: #12222e;
    padding: 70px 0 0;
}

.section-1 {
    padding: 0 30px 90px;
}

.section-1 h3 {
    font-size: 1.575rem;
}

h2 {
    font-size: 2.2rem;
}

.section-1 h2,
.section-1 h3 {
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

.ftr-logo {
    width: 180px;
    margin-bottom: 30px;
}

.ftr-logo img {
    width: 100%;
}

.ftraddcol {
    padding-right: 50px;
}

.ftrcol p {
    font-size: 14px;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 30px;
}

.ftrlinks ul li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    transition: all 0.4s linear;
    padding: 8px 0;
}

.ftrlinks ul li a:hover {
    color: #e7b74e;
    padding-left: 6px;
}

.ftrcol h4,
.ftrlinks h4 {
    font-size: .975rem;
    color: #e7b74e;
    margin-bottom: 25px;
}

.ftrlinks h4 a {
    color: #e7b74e;
}

.ftrsocial h5 {
    font-size: 0.95rem;
    color: #fff;
    margin: 0 10px 10px 0;
}

.frmgroup input {
    background-color: #fff;
    border: 0;
    width: 100%;
    padding: 10px 15px;
}

.default-btn {
    background-color: #b17c0a;
    border: 1px solid #b17c0a;
    padding: 10px 25px;
    color: #fff;
    width: fit-content;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    margin-top: 20px;
    text-transform: uppercase;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.default-btn:hover {
    background-color: transparent;
    color: #b17c0a;
}

.copy-row {
    background-color: #061018;
    margin-top: 70px;
    padding: 20px 0;
    text-align: center;
}

.ftrnav ul li {
    display: inline-block;
}

.ftrnav ul li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    transition: all 0.4s linear;
    padding: 8px 18px;
}

.ftrnav ul li a:hover {
    color: #e7b74e;
}

.copy-row p {
    font-size: 14px;
    line-height: 1.3;
    margin: 20px 0 0;
    color: #d9b86f;
    font-weight: 300;
}

.copy-row p a {
    color: #d9b86f;
    font-weight: 500;
    border-bottom: 1px solid #d9b86f;
    transition: all 0.4s ease;
}

.copy-row p a:hover {
    color: #b17c0a;
}

.ftrsocial {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ftrsocial ul li {
    display: inline-block;
}

.ftrsocial ul li a {
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    transition: all 0.4s linear;
    text-align: center;
}

.icon-button {
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    height: 2.2rem;
    line-height: 2.2rem;
    margin-right: 5px;
    position: relative;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 2.2rem;

}

.icon-button span {
    border-radius: 0;
    display: block;
    height: 0;
    left: 50%;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 0;
}

.icon-button:hover span {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0;
    margin: -1.1rem;
}



/* Icons */

.icon-button i {
    background: none;
    color: white;
    height: 2.2rem;
    left: 0;
    line-height: 2.2rem;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 2.2rem;
    z-index: 10;
}



.facebook span {
    background-color: #3B5998;
}

.linkedin span {
    background-color: #007bb6;
}

.con-wapp {
    width: 27px;
    height: auto;
    display: inline-block;
    margin: 5px 0 -8px 5px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.con-wapp:hover {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.con-wapp img {
    width: 100%;
    display: block;
}


.instagram span {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.icon-button:hover .icon-twitter,
.icon-button:hover .icon-twitter,
.icon-button:hover .icon-facebook,
.icon-button:hover .icon-glinkedin,
.icon-button:hover .fa-instagram {
    color: white;
}

.customscroll {
    padding-right: 15px;
}

.customscroll::-webkit-scrollbar {
    width: 8px;
}

/* width */
.customscroll::-webkit-scrollbar-track {
    background: #D9D9D9;
    border-radius: 5px;
}

/* Track */
.customscroll::-webkit-scrollbar-thumb {
    background: #ADADAD;
    border-radius: 5px;
}

/* Handle */
.customscroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Handle on hover */

.back_to_top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    padding: 6px 0;
    opacity: 1;
    display: none;
    text-align: center;
    background: #b17c0a;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    z-index: 999;
    color: #fff;
    font-size: 22px;
}

.back_to_top:hover {
    color: #f7e8c9;
    transform: translateY(-10px);
}

#newsletter {
    margin-top: -100px;
    margin-bottom: 100px;
}

.ajax-loader {
    width: 35px;
    margin-top: 10px;
    transform: scaleX(-1);
    display: none;
}

.ajax-loader img {
    width: 100%;
}

.error-msg-popup,
.success-msg-popup {
    display: none;
}

.success-msg.success-msg-popup {
    font-size: 18px;
    text-align: center;
    padding: 10px;
}

.project-modal .modal-header {
    flex-direction: column;
    align-items: flex-start;
}

.project-modal .modal-header span {
    font-size: 14px;
}

.band {
    background: #faf6ef;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.band h4 {
    font-weight: 600;
    color: #3f4448;
}

.band a.default-btn {
    display: inline-block;
}

.enquire-now-btn {
    padding: 12px 22px;
    background: #a98129;
    color: white;
    font-weight: 500;
    width: fit-content;
}


.callus {
    top: 40%;
}

.enquire-now-btn {
    position: fixed;
    top: 70%;
    right: 7px;
    transform: translateY(-50%) translateX(42%) rotate(-90deg);
    background: #a98129;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    z-index: 9;
    text-transform: uppercase;
}

.sticky-form {
    display: none;
}



div#projectFormPopup {
    display: none !important;
}

.custom-pop-up-container {
    position: fixed;
    top: 0%;
    right: 0%;
    left: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0%;
    background-color: rgba(0, 0, 0, 0.314);
    z-index: 999;
    padding: 1em;


}

.enquire-popup {
    max-width: 570px;
    padding: 2em;
    height: fit-content;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15) !important;
    margin: 1em;
}

.modal-backdrop.show {
    opacity: .5;
    display: none !important;
}

@media only screen and (max-width: 600px) {
    .enquire-now-btn a {
        font-size: 12px;
    }

    .enquire-now-btn {
        right: 12px;
        padding-top: 6px;
        padding-bottom: 6px;
    }


}


.mob-project-btn {
    display: none!important;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 36px;
    line-height: 1;
    opacity: 1;
    color: #a98129;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.blur-effect-5 {
  filter: blur(5px);
}

footer a {
    pointer-events: none!important;
}