@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-thin-straight/css/uicons-thin-straight.css");

/* ======= Basic style ======= */
:root {
    --primary-color: #b19777;
    --secondary-color: #777777;
    --font-color: #272727;
    --white-color: #ffffff;
    --font-main: "Montserrat", sans-serif;
}

html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
body {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: var(--secondary-color);
    overflow-x: hidden !important;
    background: #fff;
}
p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.25em;
    margin: 0 0 20px 0;
}
img {
    width: 100%;
    height: auto;
}
img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #f4f4f4;
}
span,
a,
a:hover {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}
b {
    font-weight: 400;
    color: var(--primary-color);
}
/* text field */
button,
input,
optgroup,
select,
textarea {
    font-family: "Montserrat", sans-serif;
}
input[type="password"]:focus,
input[type="email"]:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
textarea:focus {
    outline: none;
}
input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea,
select {
    max-width: 100%;
    margin-bottom: 10px !important;
    padding: 10px !important;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em !important;
    font-family: "Montserrat", sans-serif;
    font-size: 16px !important;
    font-weight: 400;
    color: var(--secondary-color) !important;
    background-image: none;
    border: 1px solid #f4f4f4 !important;
    border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    border-radius: 0 !important;
}
input:focus,
textarea:focus {
    border-bottom-width: 1px;
    border-color: var(--primary-color);
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    text-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 1.75em;
    -webkit-transition: background-color 0.15s ease-out;
    transition: background-color 0.15s ease-out;
    background: var(--primary-color);
    border: 1px solid transparent;
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: #f4f4f4;
    color: var(--font-color);
    border: 1px solid transparent;
}
select {
    padding: 10px;
    border-radius: 5px;
}
table,
th,
tr,
td {
    border: 1px solid #ececec;
}
th,
tr,
td {
    padding: 10px;
}
input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

/* submit and alert success  */
input[type="submit"] {
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 24px;
    margin: 0;
    position: relative;
    font-size: 16px;
}
.alert-success {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0px;
}
/* Placeholder */
::-webkit-input-placeholder {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 400;
}
:-moz-placeholder {
    color: var(--secondary-color);
}
::-moz-placeholder {
    color: var(--secondary-color);
    opacity: 1;
}
:-ms-input-placeholder {
    color: var(--secondary-color);
}

/* blockquote */
blockquote {
    padding: 45px;
    display: block;
    position: relative;
    background-color: #f4f4f4;
    overflow: hidden;
    margin: 35px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: var(--secondary-color);
}
blockquote p {
    font-family: inherit;
    margin-bottom: 0 !important;
    color: inherit;
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 3;
}
blockquote:before {
    content: "\e645";
    font-family: "Themify";
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 110px;
    opacity: 0.07;
    line-height: 1;
    color: var(--font-color);
}
blockquote p {
    margin-bottom: 0;
}
blockquote p a {
    color: inherit;
}
blockquote cite {
    display: inline-block;
    font-size: 16px;
    position: relative;
    padding-left: 60px;
    border-color: inherit;
    line-height: 1;
    margin-top: 22px;
    font-style: normal;
    color: var(--primary-color);
    font-weight: 400;
}
blockquote cite:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 45px;
    height: 1px;
    border-top: 1px solid;
    border-color: inherit;
    color: var(--primary-color);
}

.o-hidden {
    overflow: hidden;
}
.position-re {
    position: relative;
    bottom: -10px;
}
.full-width {
    width: 100%;
}
.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-fixed {
    background-attachment: fixed;
}
.pattern {
    background-repeat: repeat;
    background-size: auto;
}
.bold {
    font-weight: 600;
}
.count {
    font-family: "Montserrat", sans-serif;
}
.valign {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.v-bottom {
    position: absolute;
    width: 100%;
    bottom: 5%;
    left: 0;
    -webkit-transform: translate(0%, -5%);
    transform: translate(0%, -5%);
}

.js .animate-box {
    opacity: 0;
}

.map {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

:root {
    scroll-behavior: auto;
}

/* ======= Helper style ======= */
.mt-0 {
    margin-top: 0 !important;
}
.mt-10 {
    margin-top: 10 !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mt-60 {
    margin-top: 60px !important;
}
.mt-90 {
    margin-top: 90px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-60 {
    margin-bottom: 60px !important;
}
.mb-90 {
    margin-bottom: 90px !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.no-padding {
    padding: 0 !important;
}

/* ======= Selection style ======= */
::-webkit-selection {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.1);
}
::-moz-selection {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.1);
}
::selection {
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.1);
}

/* ======= Owl-Theme custom style ======= */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0px;
    line-height: 0.7;
    display: block;
}
.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 3px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #999;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: transparent;
    border: 1px solid var(--primary-color);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
    outline: none;
}

/* ======= Section style ======= */
.section-padding {
    padding: 90px 0;
}
.section-padding2 {
    padding: 0 0 90px 0;
    position: relative;
}
.section-padding h6 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 20px;
}
.section-title {
    font-size: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--font-color);
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
}
.section-title span {
    color: var(--primary-color);
}
.section-title2 {
    font-size: 35px;
    font-weight: 300;
    color: var(--primary-color);
    position: relative;
    line-height: 1.25em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* ======= toTop Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.progress-wrap::after {
    position: absolute;
    font-family: "themify";
    content: "\e648";
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    font-weight: 700;
    color: #323232;
    left: 0;
    top: 0;
    height: 40px;
    width: 40px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap svg path {
    fill: none;
}
.progress-wrap svg.progress-circle path {
    stroke: rgba(0, 0, 0, 0.2);
    stroke-width: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}
.progress-wrap {
    -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}
.progress-wrap::after {
    color: var(--secondary-color);
}
.progress-wrap svg.progress-circle path {
    stroke: var(--primary-color);
}

/* =======  Overlay Effect Bg image style  ======= */
[data-overlay-dark],
[data-overlay-darkgray],
[data-overlay-light] {
    position: relative;
}
[data-overlay-dark] .container,
[data-overlay-darkgray] .container,
[data-overlay-light] .container {
    position: relative;
    z-index: 2;
}
[data-overlay-dark]:before,
[data-overlay-darkgray]:before,
[data-overlay-light]:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
[data-overlay-dark]:before {
    background: #000;
}
[data-overlay-darkgray]:before {
    background: var(--font-color);
}
[data-overlay-light]:before {
    background: #fff;
}
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}
[data-overlay-darkgray] h1,
[data-overlay-darkgray] h2,
[data-overlay-darkgray] h3,
[data-overlay-darkgray] h4,
[data-overlay-darkgray] h5,
[data-overlay-darkgray] h6,
[data-overlay-darkgray] span {
    color: #fff;
}
[data-overlay-light] h1,
[data-overlay-light] h2,
[data-overlay-light] h3,
[data-overlay-light] h4,
[data-overlay-light] h5,
[data-overlay-light] h6,
[data-overlay-light] span {
    color: #999;
}
[data-overlay-dark] p {
    color: #999;
}
[data-overlay-darkgray] p {
    color: #999;
}
[data-overlay-light] p {
    color: #999;
}
[data-overlay-dark="0"]:before,
[data-overlay-darkgray="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}
[data-overlay-dark="1"]:before,
[data-overlay-darkgray="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}
[data-overlay-dark="2"]:before,
[data-overlay-darkgray="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}
[data-overlay-dark="3"]:before,
[data-overlay-darkgray="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}
[data-overlay-dark="4"]:before,
[data-overlay-darkgray="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}
[data-overlay-dark="5"]:before,
[data-overlay-darkgray="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}
[data-overlay-dark="6"]:before,
[data-overlay-darkgray="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}
[data-overlay-dark="7"]:before,
[data-overlay-darkgray="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}
[data-overlay-dark="8"]:before,
[data-overlay-darkgray="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}
[data-overlay-dark="9"]:before,
[data-overlay-darkgray="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}
[data-overlay-dark="10"]:before,
[data-overlay-darkgray="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}

/* ======= Buttons style ======= */
/* dark */
.butn-dark {
    position: relative;
    line-height: 1.2em;
}
.butn-dark a {
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: var(--primary-color);
    color: #fff;
    padding: 13px 30px;
    margin: 0;
    position: relative;
    font-size: 16px;
    border-radius: 0;
}
.butn-dark a:after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    background: #f4f4f4;
    color: var(--font-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.butn-dark a span {
    position: relative;
    z-index: 2;
}
.butn-dark a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-dark a:hover span {
    color: var(--font-color);
}
/* light */
.butn-light {
    position: relative;
    line-height: 1.2em;
}
.butn-light a {
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    margin: 0;
    position: relative;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
}
.butn-light a:after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #fff;
}
.butn-light a span {
    position: relative;
    z-index: 2;
}
.butn-light a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-light a:hover span {
    color: var(--font-color);
}


/* light v2 */
.butn-light-v2 {
    position: relative;
    line-height: 1.2em;
}
.butn-light-v2 a {
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    background: var(--white-color);
    color: var(--primary-color);
    padding: 12px 24px;
    margin: 0;
    position: relative;
    font-size: 16px;
    border: 1px solid  var(--primary-color);
    border-radius: 0;
}
.butn-light-v2 a:after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #f4f4f4;
}
.butn-light-v2 a span {
    position: relative;
    z-index: 2;
    font-weight: bold;
}
.butn-light-v2 a:hover:after {
    width: 100%;
    left: 0;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.butn-light-v2 a:hover span {
    color: var(--font-color);
}

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

/* ======= Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding-right: 10%;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: var(--font-color);
}
.navbar .navbar-nav .nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    margin: 1px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    padding-right: 10px;
    padding-left: 10px;
    font-family: "Montserrat", sans-serif;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: var(--font-color);
}
.navbar .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}
.navbar .navbar-nav .active {
    color: var(--primary-color) !important;
}
.navbar .navbar-nav .active i {
    color: var(--primary-color);
}
.nav-scroll {
    background: #fff;
    padding: 0 10% 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    border: none;
    border-bottom: 1px solid #f4f4f4;
}
.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: var(--primary-color);
}
.nav-scroll .navbar-nav .nav-link {
    color: var(--font-color);
}
.nav-scroll .navbar-nav .active {
    color: var(--primary-color) !important;
}
.nav-scroll .navbar-nav .logo {
    padding: 15px 0;
    color: #fff;
}
.nav-scroll .logo-img {
    width: 150px;
}
.nav-scroll .logo {
    width: 75px;
}
.nav-scroll .logo-img {
    margin-bottom: 0px;
}
.nav-scroll .logo-wrapper .logo h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0px;
    display: block;
    width: 100%;
    position: relative;
    color: var(--primary-color);
    line-height: 1.25em;
    display: none;
}
.nav-scroll .logo-wrapper .logo span {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #575757;
    font-weight: 400;
    display: block;
    margin-top: 3px;
    line-height: 1.2em;
    text-transform: uppercase;
    margin-left: 5px;
    display: none !important;
}
.nav-scroll .logo-wrapper {
    padding: 15px 70px 15px 150px;
    background: #fff;
}

.logo-wrapper {
    float: left;
    background: #fff;
    padding: 30px 50px;
}
.logo-wrapper .logo h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 45px;
    font-weight: 400;
    display: block;
    width: 100%;
    position: relative;
    color: var(--primary-color);
    margin-bottom: 0;
}
.logo-wrapper .logo h2 a i {
    color: var(--secondary-color);
    font-size: 20px;
    vertical-align: super;
}
.logo-wrapper .logo span {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: var(--secondary-color);
    font-weight: 400;
    display: block;
    margin-top: 5px;
    line-height: 1.5em;
    text-transform: uppercase;
}
.logo {
    padding: 0;
    width: 150px;
    text-align: center;
}

.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.nav-scroll .dropdown .nav-link i {
    color: rgba(0, 0, 0, 0.5);
}

.dropdown .nav-link.nav-color i {
    color: rgba(0, 0, 0, 0.5);
}
.navbar .dropdown-menu .dropdown-item {
    padding: 6px 0;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--font-color);
    position: relative;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    background-color: transparent;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 8px;
    float: right;
}
.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: var(--primary-color);
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}
/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 199px;
        padding: 15px;
        border-radius: 0;
        border: 0;
        background-color: #fff;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -10px;
        right: auto;
        min-width: 199px;
        transform: translateY(0);
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
@media screen and (max-width: 991px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: #fff;
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .nav-scroll {
        background: #fff;
    }
    .logo-wrapper {
        float: left;
        padding: 15px;
    }
    .logo-wrapper .logo h2 {
        display: none;
    }
    .nav-scroll .logo-wrapper {
        padding: 15px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 75px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .logo-img {
        margin-bottom: 0px;
    }
    .navbar button {
        margin-right: 20px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding: 0;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: var(--font-color);
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: var(--font-color) !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: var(--primary-color) !important;
    }
    .navbar .dropdown-menu .dropdown-item {
        padding: 0 15px;
        font-size: 15px;
        line-height: 40px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 500;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 13px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #fff;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }

    .dropdown .nav-link i {
        color: rgba(0, 0, 0, 0.5);
    }
}
@media screen and (max-width: 991px) {
    .navbar .navbar-collapse {
        max-height: 480px;
        overflow: auto;
        background: #fff;
        text-align: left;
        padding: 20px;
    }
}

/* ======= Header style ======= */
.header {
    min-height: 100vh;
    overflow: hidden;
}
.header .caption .o-hidden {
    display: inline-block;
}
.header .caption h2 {
    font-weight: 400;
    font-size: 30px;
}
.header .caption h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    text-align: right;
    margin-bottom: 30px;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
.header .caption h1 {
    position: relative;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.35em;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
    font-weight: bold;
}
.header .caption p {
    font-size: 18px;
    line-height: 1.75em;
    margin-bottom: 0;
    color: #fff;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    margin-right: 15px;
}
.header .caption p span {
    text-transform: uppercase;
    margin: 0 5px;
    padding-right: 14px;
    position: relative;
}
.header .caption p span:last-child {
    padding: 0;
}
.header .caption p span:last-child:after {
    display: none;
}
.header .caption p span:after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--font-color);
    position: absolute;
    top: 10px;
    right: 0;
    opacity: 0.5;
}
.header .caption .butn-light {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-right: 15px;
}
.header .social a {
    color: #eee;
    font-size: 20px;
    margin: 10px 15px;
}

hr {
    margin-top: 5px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ======= Slider style ======= */
.slider .owl-item,
.slider-fade .owl-item {
    height: 100vh;
    position: relative;
}
.slider .item,
.slider-fade .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
.slider .item .caption,
.slider-fade .item .caption {
    z-index: 9;
}
.slider .owl-theme .owl-dots,
.slider-fade .owl-theme .owl-dots {
    position: absolute;
    bottom: 5vh;
    width: 100%;
}
/* owl-nav next and prev */
.owl-nav {
    position: absolute;
    bottom: 3%;
    right: 12%;
}
.owl-prev {
    float: left;
}
.owl-next {
    float: right;
}
.slider-fade .owl-theme .owl-nav [class*="owl-"],
.project-page .owl-theme .owl-nav [class*="owl-"] {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: transparent;
    border-radius: 100%;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
    margin-right: 3px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease-in-out;
    transform: scale(1);
}
.slider-fade .owl-theme .owl-nav [class*="owl-"]:hover {
    transform: scale(0.9);
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
@media screen and (max-width: 768px) {
    .owl-nav {
        display: none;
    }
}
/* ======= Slider left panel style ======= */
.left-panel {
    background: #fff;
    position: absolute;
    width: 143px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
}

.social-left {
    display: block;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    text-align: center;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 24px;
    background: #fff;
    z-index: 10;
}

.social-left:before {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 70px;
    top: -70px;
    background: #ececec;
}

.social-left li {
    display: block;
    margin: 0;
    padding: 3px 0;
}
.social-left li a {
    display: inline-block;
    text-decoration: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #ececec;
    color: #666;
    border-radius: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.social-left li a:hover {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
@media (max-width: 1259.98px) {
    .left-panel {
        width: 100px;
    }
}
@media (max-width: 991.98px) {
    .left-panel {
        width: 50px;
    }
}
@media (max-width: 767.98px) {
    .left-panel {
        display: none;
    }
}

/* ======= About style ======= */
.about {
    padding-bottom: 90px;
}
.about .about-img img:hover {
    transform: scale(0.95);
}
.about .about-img {
    position: relative;
}
.about .about-img .img {
    padding: 0 15px 30px 30px;
    position: relative;
}
.about .about-img .img:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 45px;
    bottom: 0;
    border: 1px solid #f4f4f4;
}
.about .about-img .img img {
    position: relative;
    z-index: 2;
    background: var(--font-color);
}
.about-img-2 {
    position: relative;
}

.about-img .about-img-2 {
    width: 40% !important;
    position: absolute;
    bottom: 0px;
    right: 45px;
    z-index: 3;
    padding: 20px 15px;
    color: var(--font-color);
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 1.5em;
    text-align: center;
}

.about-buro {
    background: #f4f4f4;
}

/* ======= Developer ======= */

section.developer-section {
    background: var(--primary-color);
}

.developer-logo img {
    width: 20%;
    margin: 0 auto;
}
.developer-content h1 {
    color: var(--white-color);
    font-size: 32px;
}
.developer-content p {
    color: var(--white-color);
    font-size: 20px;
    line-height: 25px;
}

/* ======= start count stats ======= */

section#counter-stats {
    display: flex;
    justify-content: center;
    background: #f4f4f4;
}

.stats {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    flex-direction: column;
    height: 250px;
    justify-content: center;
    position: relative;
}
.stats::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 75px;
    background: var(--secondary-color);
    top: 20%;
    right: 0;
}
.stats:last-child::after {
    display: none;
}
.stats i {
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 30px;
}
.stats .heading {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--primary-color);
}
.stats .counting {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 24px;
}
.stats h5 {
    color: var(--font-color);
    font-size: 14px;
}
/* ======= TARGET AUDIENCE ======= */

.target-audience-section .right-content .content h2 {
    color: var(--font-color);
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
}
.target-audience-section .left-img,
.target-audience-section .left-img img {
    height: 100%;
    object-fit: cover;
}
.target-audience-section .right-content ul {
    padding: 0 20px;
}
.target-audience-section .right-content ul li {
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 20px;
    color: var(--font-color);
    display: flex;
    gap: 20px;
}
.target-audience-section .right-content ul li i {
    color: var(--primary-color);
    font-size: 30px;
}
.target-audience-section .left-img img:hover,
.target-audience-section .image-box img:hover {
    transform: scale(0.95);
}
.target-audience-section .right-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.target-audience-section .image-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 20px;
}
.target-audience-section .image-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.target-audience-section .image-box figure {
    margin: 0;
}

/* ======= CTA ======= */
.cta-section {
    background: url("../images/popup-img.jpg") no-repeat;
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
    height: 50vh;
}
.cta-content h1 {
    color: #fff;
    font-size: 42px;
}
.cta-content p {
    font-size: 28px;
    color: #fff;
}

/* ======= Projects style ======= */
.unit-types .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.unit-types .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.unit-types .item:hover .con {
    bottom: 0;
}
.unit-types .item img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    height: 300px;
    object-fit: cover;
}
.unit-types .item .con h6 {
    background: rgba(255, 255, 255, 0.6);
    padding: 10px;
    color: var(--font-color);
    font-weight: bold;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.unit-types .item .con {
    padding: 30px 15px;
    position: absolute;
    bottom: -58px;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    z-index: 20;
    height: auto;
    box-sizing: border-box;
    background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.1) 2%, rgba(0, 0, 0, 0.75) 90%);
    background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, 0.01) 2%, rgba(0, 0, 0, 0.75) 90%);
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.01) 2%, rgba(0, 0, 0, 0.75) 90%);
}
.unit-types .item .con h6,
.unit-types .item .con h6 a {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.unit-types .item .con h5,
.unit-types .item .con h5 a {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}
.unit-types .item .con p {
    color: #fff;
    font-size: 20px;
}
.unit-types .item .con i {
    color: #fff;
    font-size: 20px;
}
.unit-types .item .con i:hover {
    color: var(--primary-color);
}
.unit-types .item .con .butn-light {
    margin-left: 0;
    border-radius: 30px;
    border-color: #777;
    padding: 11px 30px;
}
.unit-types .item .con .butn-light:hover {
    border-color: var(--primary-color);
}
/* line animation */
.unit-types .item .line {
    text-align: center;
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: 0 auto 30px;
}
.unit-types .item:hover .line {
    width: 100%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

/* prev/next project */
.unit-types-prev-next {
    padding: 40px 0;
    border: none;
    border-top: 1px solid #f4f4f4;
    position: relative;
}
.unit-types .owl-nav {
    position: absolute;
    pointer-events: none;
    left: 0;
    width: 100%;
    top: 0;
}
.unit-types .owl-prev,
.unit-types .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    pointer-events: all;
    transition: background 0.3s ease;
}

.unit-types .owl-prev:hover,
.unit-types .owl-next:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.unit-types .owl-prev {
    left: -30px;
}
.unit-types .owl-next {
    right: -30px;
}

.unit-types .owl-prev span,
.unit-types .owl-next span {
    font-size: 46px;
}

.unit-types .item:hover .con a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--white-color);
}
.unit-types .item:hover .con a i {
    padding-left: 10px;
}

/* ======= Amenities ======= */
.amenities {
    text-align: left;
    margin: 0;
    margin-bottom: 30px;
    padding: 40px;
    padding-bottom: 0;
    background: #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
    transition: 0.2s;
    overflow: hidden;
    cursor: pointer;
    z-index: 3;
}
.amenities-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 50vh;
}
section.amenities-banner:before {
    background: linear-gradient(1deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    bottom: -5px;
    top: unset;
}
.amenities-img-area,
.amenities-text-area {
    display: inline-block;
    vertical-align: bottom;
    transition: transform 0.2s ease-in-out;
}
.amenities-heading {
    font-size: 16px;
    color: #272727;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 300;
}
.amenities-img-area {
    font-size: 42px;
    color: #b19777;
    margin-bottom: 20px;
    margin-right: 0;
    float: left;
    width: 100%;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.amenities-img-area img {
    width: 25%;
}
.amenities-list {
    margin-top: -15%;
    z-index: 1;
    position: relative;
}
.amenities-list .section-title {
    margin-bottom: 50px;
}

/* ======= playground ======= */

.playground-section.section-padding {
    height: 75vh;
    display: flex;
    align-items: end;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.playground-content {
    width: 80%;
    margin: 0 auto;
}
.playground-content h1.heading {
    color: var(--white-color);
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: bold;
}
.playground-content p {
    font-size: 32px;
    color: var(--white-color);
    font-style: italic;
    font-weight: bold;
}
.playground-points ul {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    padding: 0;
}
.playground-points ul li {
    color: var(--white-color);
    font-size: 32px;
}

.playground-content {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 60vh;
}
/* =======  Video style ======= */
/* play button */

.vid-area {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    justify-content: center;
    height: 50vh;
}
.vid-area h5 {
    font-size: 27px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.play-button {
    position: relative;
    width: 85px;
    height: 85px;
    margin: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 4;
    margin-left: 15px;
}
.play-button svg {
    position: absolute;
    width: 100%;
    height: 100%;
}
.circle-fill circle {
    opacity: 1;
    fill: rgba(197, 164, 126, 0.5);
}
.polygon {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 90px;
    font-size: 35px;
    z-index: 2;
    padding-left: 5px;
}
.play-button svg.circle-fill {
    z-index: 1;
    stroke-dasharray: 322;
    stroke-dashoffset: 322;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.play-button:hover svg.circle-fill {
    stroke-dashoffset: 38.5;
}
.play-button svg.circle-track {
    z-index: 0;
}
.play-button.color {
    color: var(--primary-color);
}
.play-button.color .circle-fill circle {
    fill: var(--primary-color);
}


/* ======= Sustainability  ======= */

section.sustainability-section{
    background:var(--primary-color);
}
.sustainability-section .row {
  display: flex;
  align-items: stretch; 
  min-height: 50vh; 
}
h1.sustainability-title {
    color: #fff;
    font-size: 34px;
}
.sustainability-left-img {
  background-image: url('../images/sustainability.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.sustainability-right-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    padding: 40px;
    flex-direction: column;
}

.sustainability-right-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sustainability-right-content li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    gap: 30px;
    align-items: center;
    background: #f4f4f4;
    padding: 20px 50px 20px 20px;
}
.sustainability-right-content li i{
    font-size: 32px;
    color: var(--primary-color);
}

/* ======= Payment Plan  ======= */

.payment-wrapper {
    text-align: left;
    margin: 0;
    margin-bottom: 30px;
    padding: 40px;
    padding-bottom: 0;
    background: #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
    transition: 0.2s;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.payment-wrapper h1 {
    color: var(--primary-color);
    font-size: 42px;
    font-weight: bold;
}
.payment-wrapper p {
    font-size: 22px;
    color: var(--font-color);
}

/* ======= Floor Plan  ======= */

.floor-plan {
    position: relative;
    display: block;
    padding: 90px 0;
    z-index: 1;
    background: var(--primary-color);
}
section.floor-plan .section-title span {
    color: var(--white-color);
}

.floor-plan .nav-link.active {
    background: transparent;
    color: var(--white-color);
    font-size: 24px;
    font-weight: bold;
}
.floor-plan .nav-link {
    background: transparent;
    color: var(--white-color);
    font-size: 24px;
    text-align: left;
    line-height: 35px;
    text-transform: uppercase;
    padding: 0 20px !important;
}

/* ======= Gallery ======= */

section.section-padding.gallery-section .gallery-item {
    padding: 5px;
}
section.section-padding.gallery-section .gallery-item a, .gallery-item a {
    display: block;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    background: transparent;
}
.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    background: transparent;
}

/* ======= CTA 2 ======= */
section.cta2-section .background {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-2-content p {
    font-size: 22px;
    color: #fff;
}

/* ======= Locations style ======= */
.locations-section .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.locations-section .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(75%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.locations-section .item:hover .con {
    bottom: 0;
}
.locations-section .item img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-filter: brightness(100%);
    height: 300px;
    object-fit: cover;
}
.locations-section .item .con {
    margin: -120px 20px 75px;
    padding: 15px 15px 25px 15px;
    background-color: #f4f4f4 !important;
    border: 1px solid #f4f4f4;
    border-radius: 0;
    overflow: hidden;
    -webkit-transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
    transition: 0.2s cubic-bezier(0.3, 0.58, 0.55, 1);
    bottom: -80px;
    position: relative;
}
.locations-section .item .con h5,
.locations-section .item .con h5 a {
    color: var(--font-color);
    font-size: 25px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 0px;
    letter-spacing: 1px;
}
.locations-section .item .con h5:hover,
.locations-section .item .con h5 a:hover {
    color: var(--primary-color);
}

/* ======= Footer style ======= */
img.img-fluid.footer-logo {
    width: 50%;
    filter: invert(1);
    position: relative;
    z-index: 2;
}
.footer-section .form-heading {
    font-size: 32px;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}
.footer-section input.mobile_code {
    max-width: 100%;
    margin-bottom: 10px;
    padding: 10px 0;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-width: 0 0 1px;
    border-style: solid;
    display: block;
    width: 100%;
    line-height: 1.5em;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color);
    background-image: none;
    border: 1px solid #f4f4f4;
    border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.footer-left-img {
    background: url('../images/fit-for-2.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 65vh;
}
.footer-form-wrapper {
    padding: 20px 50px;
    height: 65vh;
    display: flex;
    justify-content: center;
    flex-direction: column;

}
/**** General Popup ****/

#generalForm .modal-content {
    background: var(--primary-color);
    border-radius: 0;
}
.general-popup-form input,
.general-popup-form select,
.general-popup-form textarea {
    border: 1px solid var(--white-color);
    background: transparent;
    color: var(--white-color);
    border-radius: 0;
    padding: 10px;
}
.general-popup-form select option {
    color: var(--font-color);
}
.general-popup-form input:focus,
.general-popup-form select:focus,
.general-popup-form textarea:focus {
    background: transparent;
    outline: none;
    box-shadow: none;
    border-color: var(--font-color);
}

.general-popup-form input[type="password"], .general-popup-form input[type="email"], .general-popup-form input[type="text"], .general-popup-form input[type="file"], .general-popup-form textarea, .general-popup-form select{
     color: var(--white-color) !important;
}
.popup-message-heading {
    margin-bottom: 30px;
}
.popup-message-heading h1 {
    font-weight: bold;
    font-size: 27px;
    color: var(--white-color);
}
.popup-message-heading p {
    font-size: 18px;
    line-height: 22px;
    color: var(--white-color);
}
#generalForm .modal-body .container {
    padding: 0 !important;
}

#generalForm .row {
    margin: 0;
}

#generalForm .col-md-5,
#generalForm .col-md-7 {
    padding: 0;
}

#generalForm .col-md-5 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures the image fills area without distortion */
    display: block;
}
#generalForm .modal-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border: none;
    z-index: 2;
}
.general-popup-form-section.section {
    padding: 50px 20px;
}
button.butn-dark.btn.btn-primary {
    width: 100%;
    height: 45px;
    border-radius: 0;
    background: var(--primary-color);
    color: var(--white-color);
    border: 0;
}
div#generalForm .modal-header button {
    background: no-repeat;
    padding: 10px;
    font-size: 32px;
}
div#generalForm .modal-header button {
    opacity: 1;
}
div#generalForm .modal-header button:hover{
    opacity: 1;
}
div#generalForm .modal-header button:focus {
    outline: none;
    box-shadow: none;
}
div#generalForm .modal-header button i {
    color: var(--white-color);
    opacity: 1;
}
.iti input,
.iti input[type="text"],
.iti input[type="tel"] {
    width: 100%;
}

/* Placeholder */
#generalForm ::-webkit-input-placeholder {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
}
#generalForm :-moz-placeholder {
    color: var(--white-color);
}
#generalForm ::-moz-placeholder {
    color: var(--white-color);
    opacity: 1;
}
#generalForm :-ms-input-placeholder {
    color: var(--white-color);
}
#generalForm .iti__selected-dial-code {
    color: #fff;
}
#generalForm .iti__arrow {
    border-top: 4px solid #fff;
}

/*** Thank you popup ***/

.thankyou-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.popup-content {
    background: var(--white-color);
    border-radius: 8px;
    max-width: 500px;
    margin: 15% auto;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.popup-content h3 {
    margin-bottom: 15px;
    color: #333;
}

.popup-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-popup:hover {
    color: var(--font-color);
}
.is-valid {
  border-color: #28a745 !important;
}

.is-invalid {
  border-color: #dc3545 !important;
}
span.iti__country-name {
    display: none;
}



/**======== ARABIC  code =======***/
html[dir="rtl"] .navbar {
    padding-left: 10%;
    padding-right: 0;
}
html[dir="rtl"] .left-panel {
    right: 0;
    left: unset;
}
html[dir="rtl"] .stats::after {
    left: 0;
    right: unset;
}
html[dir="rtl"] .playground-content p,
html[dir="rtl"] .playground-content h1.heading {
    padding-right: 10%;
}
html[dir="rtl"] .owl-nav {
    position: absolute;
    bottom: 3%;
    right: unset;
    left: 12%;
}
html[dir="rtl"] .progress-wrap {
    left: 30px;
    right: unset;
}
html[dir="rtl"]  .play-button {
    margin-right: 15px;
}
[dir='rtl'] button.btn-close {
    margin-right: auto;
    margin-left: unset !important;
}
html[dir="rtl"] .owl-item .offset-lg-2 {
        margin-right: 16.66666667%;
    }
html[dir="rtl"] .form-select{
background-position: left .75rem center;
}
    
/**======== Resposive code =======***/

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
    /* CSS */
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    /* CSS */
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {

        .section-padding {
        padding: 50px 0;
    }
    .mob-order-1 {
        order: 1;
    }
    .mob-order-2 {
        order: 2;
    }
    .logo {
        width: 85px;
    }
    .header .caption h1 {
        font-size: 28px;
    }
    html[dir="rtl"] .navbar {
        padding-left: 0;
        padding-right: 0;
    }
    html[dir="rtl"] .navbar .navbar-nav .nav-link {
        text-align: right;
    }

    .header,
    .header .item,
    .header .owl-carousel .owl-item,
    .header .bg-img,
    .header .v-middle {
        min-height: 60vh !important; /* adjust to your liking */
        height: 60vh !important;
    }

    .header .caption h1 {
        font-size: 28px !important;
    }

    .header .caption h4 {
        font-size: 16px !important;
    }

    .header .caption p {
        font-size: 14px !important;
    }

    .header .butn-light {
        margin-top: 15px;
    }
    .header .v-middle {
        top: 80%;
        padding: 0 25px;
    }
    .section-title {
        font-size: 24px;
    }

    .about p.desc {
        font-size: 14px;
        line-height: 20px;
    }
    section.about > .container > .row > .col-lg-6 {
        padding: 0 25px;
    }
    section.developer-section > .container > .row {
        padding: 0 25px;
    }
    .developer-content p {
        font-size: 14px;
        line-height: 20px;
    }
    .developer-logo.text-center {
        text-align: left !important;
        margin-bottom: 20px;
    }
    .stats {
        height: 175px;
    }
    .stats .heading {
        font-size: 14px;
        line-height: normal;
    }
    .stats h5 {
        color: var(--font-color);
        font-size: 12px;
    }
    .stats i {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .stats .counting {
        font-size: 22px;
    }

    .target-audience-section .right-content {
        padding: 25px 25px 0 25px;
    }
    .target-audience-section .right-content ul {
        padding: 0;
    }
    .target-audience-section .right-content ul li {
        font-size: 16px;
        line-height: 22px;
    }
    .target-audience-section .butn-dark {
        text-align: center;
    }
    .target-audience-section .image-box img {
        height: 90px;
    }
    .target-audience-section .image-box {
        gap: 10px;
    }
    .target-audience-section .right-content .content h2 {
        font-size: 24px;
    }
    .unit-types .owl-nav {
        display: block !important;
    }
    .unit-types .owl-prev {
        left: 0;
    }
    .unit-types .owl-next {
        right: 0;
    }
    .cta-content h1 {
        color: #fff;
        font-size: 20px;
    }
    .cta-content p {
        font-size: 18px;
        line-height: normal;
        padding: 0 25px;
    }
    .container.amenities-list {
        padding: 0 25px;
        margin-bottom: 30px;
    }
    .amenities-banner {
        height: 20vh;
    }
    section.amenities-list-wrapper > .container > .row > .col-lg-4 {
        padding: 5px;
    }
    .amenities {
        padding: 10px;
        margin-bottom: 0px;
    }
    .amenities-heading {
        font-size: 12px;
        letter-spacing: 0;
        font-weight: 300;
        margin: 0;
    }

    .playground-content p,
    .playground-content h1.heading {
        padding-left: 5%;
    }
    .playground-section.section-padding {
        height: 30vh;
        align-items: end;
        padding-bottom: 20px;
    }
    .playground-content h1.heading {
        font-size: 20px;
    }
    .playground-content p {
        font-size: 16px;
    }
    .playground-points ul {
        margin-top: 10px;
        padding: 0;
    }
    .playground-points ul li {
        font-size: 12px;
        line-height: normal;
        padding: 0 10px;
    }
    .vid-area {
        height: 35vh;
    }
    .cta-2-content p {
        font-size: 20px;
        color: #fff;
        line-height: 25px;
        padding: 0 25px;
    }

    .floor-plan .nav-link {
        font-size: 20px;
        line-height: 30px;
        padding: 0 20px !important;
    }

    iframe.map {
        height: 300px;
    }

    img.img-fluid.footer-logo {
        width:50%;
    }
    .footer-section .form-heading {
        font-size: 24px;
    }

    .general-popup-form-section.section {
        padding: 50px 0px;
    }
    .popup-message-heading h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .popup-message-heading p {
        font-size: 16px;
        line-height: 20px;
    }
.butn-light a , .butn-dark a {
    font-size: 12px;
}
.footer-left-img {
    height: 30vh;
}
    html[dir="rtl"] .developer-logo.text-center {
        text-align: right !important;
    }

    html[dir="rtl"] .unit-types .owl-next {
        left: 0;
        right: unset;
    }
    html[dir="rtl"] .unit-types .owl-prev {
        right: 0;
        left: unset;
    }

    html[dir="rtl"] .amenities {
        text-align: right;
    }
    html[dir="rtl"] .owl-item .offset-lg-2 {
    margin-right: 0;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    margin-bottom: 10px;
}


}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
    .section-padding {
        padding: 50px 0;
    }
    .mob-order-1 {
        order: 1;
    }
    .mob-order-2 {
        order: 2;
    }
    .logo {
        width: 85px;
    }
    .header .caption h1 {
        font-size: 28px;
    }
    html[dir="rtl"] .navbar {
        padding-left: 0;
        padding-right: 0;
    }
    html[dir="rtl"] .navbar .navbar-nav .nav-link {
        text-align: right;
    }

    .header,
    .header .item,
    .header .owl-carousel .owl-item,
    .header .bg-img,
    .header .v-middle {
        min-height: 60vh !important; /* adjust to your liking */
        height: 60vh !important;
    }

    .header .caption h1 {
        font-size: 28px !important;
    }

    .header .caption h4 {
        font-size: 16px !important;
    }

    .header .caption p {
        font-size: 14px !important;
    }

    .header .butn-light {
        margin-top: 15px;
    }
    .header .v-middle {
        top: 80%;
        padding: 0 25px;
    }
    .section-title {
        font-size: 24px;
    }

    .about p.desc {
        font-size: 14px;
        line-height: 20px;
    }
    section.about > .container > .row > .col-lg-6 {
        padding: 0 25px;
    }
    section.developer-section > .container > .row {
        padding: 0 25px;
    }
    .developer-content p {
        font-size: 14px;
        line-height: 20px;
    }
    .developer-logo.text-center {
        text-align: left !important;
        margin-bottom: 20px;
    }
    .stats {
        height: 175px;
    }
    .stats .heading {
        font-size: 14px;
        line-height: normal;
    }
    .stats h5 {
        color: var(--font-color);
        font-size: 12px;
    }
    .stats i {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .stats .counting {
        font-size: 22px;
    }

    .target-audience-section .right-content {
        padding: 25px 25px 0 25px;
    }
    .target-audience-section .right-content ul {
        padding: 0;
    }
    .target-audience-section .right-content ul li {
        font-size: 16px;
        line-height: 22px;
    }
    .target-audience-section .butn-dark {
        text-align: center;
    }
    .target-audience-section .image-box img {
        height: 90px;
    }
    .target-audience-section .image-box {
        gap: 10px;
    }
    .target-audience-section .right-content .content h2 {
        font-size: 24px;
    }
    .unit-types .owl-nav {
        display: block !important;
    }
    .unit-types .owl-prev {
        left: 0;
    }
    .unit-types .owl-next {
        right: 0;
    }
    .cta-content h1 {
        color: #fff;
        font-size: 20px;
    }
    .cta-content p {
        font-size: 18px;
        line-height: normal;
        padding: 0 25px;
    }
    .container.amenities-list {
        padding: 0 25px;
        margin-bottom: 30px;
    }
    .amenities-banner {
        height: 20vh;
    }
    section.amenities-list-wrapper > .container > .row > .col-lg-4 {
        padding: 5px;
    }
    .amenities {
        padding: 10px;
        margin-bottom: 0px;
    }
    .amenities-heading {
        font-size: 12px;
        letter-spacing: 0;
        font-weight: 300;
        margin: 0;
    }

    .playground-content p,
    .playground-content h1.heading {
        padding-left: 5%;
    }
    .playground-section.section-padding {
        height: 30vh;
        align-items: end;
        padding-bottom: 20px;
    }
    .playground-content h1.heading {
        font-size: 20px;
    }
    .playground-content p {
        font-size: 16px;
    }
    .playground-points ul {
        margin-top: 10px;
        padding: 0;
    }
    .playground-points ul li {
        font-size: 12px;
        line-height: normal;
        padding: 0 10px;
    }
    .vid-area {
        height: 35vh;
    }
    .cta-2-content p {
        font-size: 20px;
        color: #fff;
        line-height: 25px;
        padding: 0 25px;
    }

    .floor-plan .nav-link {
        font-size: 20px;
        line-height: 30px;
        padding: 0 20px !important;
    }

    iframe.map {
        height: 300px;
    }

    img.img-fluid.footer-logo {
        width:50%;
    }
    .footer-section .form-heading {
        font-size: 24px;
    }

    .general-popup-form-section.section {
        padding: 50px 0px;
    }
    .popup-message-heading h1 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .popup-message-heading p {
        font-size: 16px;
        line-height: 20px;
    }
.butn-light a , .butn-dark a {
    font-size: 12px;
}
.footer-left-img {
    height: 30vh;
}
    html[dir="rtl"] .developer-logo.text-center {
        text-align: right !important;
    }

    html[dir="rtl"] .unit-types .owl-next {
        left: 0;
        right: unset;
    }
    html[dir="rtl"] .unit-types .owl-prev {
        right: 0;
        left: unset;
    }

    html[dir="rtl"] .amenities {
        text-align: right;
    }
    html[dir="rtl"] .owl-item .offset-lg-2 {
    margin-right: 0;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    margin-bottom: 10px;
}
}
