/*
Theme Name: Henge Residences Theme
Text Domain: Henge Residences Theme
Version: 1.0
Description: Henge Residences By Nord
Tags: Blog
Author: Henge Residences
Author URI: 
Theme URI:  
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/* Fonts */
@font-face {
    font-family: 'FS Siena';
    src: url('assets/fonts/FSSiena-Regular.woff2') format('woff2'),
        url('assets/fonts/FSSiena-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Siena';
    src: url('assets/fonts/FSSiena-Light.woff2') format('woff2'),
        url('assets/fonts/FSSiena-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Siena';
    src: url('assets/fonts/FSSiena-Bold.woff2') format('woff2'),
        url('assets/fonts/FSSiena-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FS Siena';
    src: url('assets/fonts/FSSiena-Medium.woff2') format('woff2'),
        url('assets/fonts/FSSiena-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans 18pt';
    src: url('assets/fonts/DMSans18pt-Bold.woff2') format('woff2'),
        url('assets/fonts/DMSans18pt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans 18pt';
    src: url('assets/fonts/DMSans18pt-Medium.woff2') format('woff2'),
        url('assets/fonts/DMSans18pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans 18pt';
    src: url('assets/fonts/DMSans18pt-Regular.woff2') format('woff2'),
        url('assets/fonts/DMSans18pt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans 18pt';
    src: url('assets/fonts/DMSans18pt-SemiBold.woff2') format('woff2'),
        url('assets/fonts/DMSans18pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

body {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans 18pt';
    color: #0f0f0f;
    font-size: 16px;
    line-height: 1.4;
    font-weight: normal;
    font-style: normal;
}

.wrapper {
    max-width: 1740px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

.bg-light {
    background-color: #f4f4f4;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.align-item-end {
    align-items: flex-end;
}

a {
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
}

.w50 {
    width: 50%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'FS Siena';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

.position-relative {
    position: relative;
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }
}

.btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    padding: 16px 60px 16px 35px;
    line-height: 16px;
    position: relative;
    border-radius: 35px;
    border: 1px solid #fff;
    font-family: 'DM Sans 18pt';
    font-weight: 600;
}

.btn:after {
    background-image: url(./assets/images/dark-arrow.svg);
    content: "";
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    height: 20px;
    width: 20px;
    display: block;
    position: absolute;
    right: 25px;
    top: 14px;
    filter: brightness(0) invert(1);
}

.btn:hover {
    background: #fff;
    color: #0f0f0f;
}

.btn:hover:after {
    filter: none;
}

.btn.btn-download {
    padding-right: 68px;
}

.btn.btn-download::after {
    background-image: url(./assets/images/dark-download.svg);
}

.btn.btn-download::before {
    position: absolute;
    right: 56px;
    top: 10px;
    width: 1px;
    height: 30px;
    background-color: #fff;
    content: "";
}

.btn.btn-download:hover::before {
    background-color: #0f0f0f;
}

.btn.btn-dark {
    background-color: #0f0f0f;
    color: #fff;
    border-color: #0f0f0f;
}

.btn.btn-dark:hover {
    background-color: #fff;
    color: #0f0f0f;
}

.ptb100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

.pdt90 {
    padding-top: 90px;
}

.ptb90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

figure {
    line-height: 0;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
}

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

.list-none {
    list-style: none;
}

/*** Header ***/
.main-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 50px 0;
    z-index: 9;
}

.main-header .logo img {
    max-width: 380px;
}

/*** Banner ***/
.hero-slider .swiper-slide {
    height: 100vh;
    width: 100%;
    background-position: top center;
    background-size: cover;
}

.banner-info {
    padding-top: 250px;
    max-width: 570px;
}

.banner-info h2 {
    text-transform: uppercase;
    color: #fff;
    font-size: 70px;
    line-height: 1;
}

.swiper-button {
    height: 40px !important;
    width: 40px !important;
    border-radius: 50%;
    border: 1px solid #0f0f0f;
    display: flex !important;
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    flex-shrink: 0;
}

.swiper-button:hover {
    background-color: #0f0f0f;
}

.swiper-button::after {
    font-size: 16px !important;
    color: #0f0f0f;
}

.swiper-button:hover:after {
    color: #fff;
}

.hero-slider .swiper-button {
    border-color: #fff !important;
    position: static;
}

.hero-slider .swiper-button:after {
    color: #fff;
}

.hero-slider .swiper-button:hover {
    background-color: #fff;
}

.hero-slider .swiper-button:hover:after {
    color: #0f0f0f;
}

.hero-slider .slide-nav {
    position: absolute;
    bottom: 40px;
    right: 0;
    z-index: 1;
    width: 90px;
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
}

.hero-banner .btn-wrap {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-banner .btn-wrap .wrapper {
    gap: 20px;
}

.nav-wrapper {
    z-index: 11;
}

/*** Pricing Section ***/
.pricingSec .topSec {
    width: 95%;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 0;
}

.priceList ul {
    gap: 120px;
    padding-left: 30px;
    position: relative;
}

.priceList ul:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    bottom: 3px;
    background-color: #0f0f0f;
    width: 2px;
}

.priceList li h4 {
    font-size: 45px;
    line-height: 1.2;
    text-transform: uppercase;
}

.priceList li p {
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0
}

.title h2 {
    font-size: 55px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.title p {
    font-size: 20px;
    line-height: 1.3;
}

.title.title-small h2 {
    font-size: 45px;
}

.bottomSec .leftCol {
    width: 39%;
}

.bottomSec .leftCol h3 {
    font-size: 70px;
    text-transform: uppercase;
}

.bottomSec .rightCol {
    max-width: 550px;
}

.bottomSec .rightCol span {
    font-size: 55px;
    line-height: 1;
    font-weight: 500;
    font-family: 'FS Siena';
}

.bottomSec .rightCol p {
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
}

.bottomSec .rightCol .btn {
    margin-top: 80px;
}

.bottomSec .rightCol li:last-child {
    border: 1px solid #0f0f0f;
    padding: 40px 80px 40px 45px;
    margin-left: 35px;
    border-right-width: 0;
    position: relative;
}

.bottomSec .rightCol li:last-child::before {
    position: absolute;
    left: -3px;
    top: 22px;
    bottom: 22px;
    width: 5px;
    background-color: #fff;
    content: "";
}

.bottomSec .innerWrap {
    background-color: #fff;
    padding: 80px 0 60px 60px;
}

.pricingSec {
    background-color: #fff9f3;
}

/*** Be at henge residences Section ***/
.becomeHenge {
    padding-top: 110px;
    padding-bottom: 200px;
    background-size: cover;
    background-position: center;
}

.residences-info {
    max-width: 690px;
    padding: 90px 60px;
    background-color: rgba(255, 255, 255, 0.85);
}

/*** located in saadiyat island ***/

.locatedSec .innerwrap {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

.locatedSec .innerwrap .leftCol {
    padding: 50px 260px 40px 70px;
}

.locatedSec .innerwrap figure img {
    height: 100%;
    object-fit: cover;
}

.locatedSec .map {
    margin-top: -20px;
    line-height: 0;
}

.locatedSec .map img {
    width: 100%;
}

.noiceBg {
    background-image: url('assets/images/noiceBg.jpg');
    background-position: center;
    background-size: cover;
}

/*** Nearby Attractions ***/
.attractions .wrapper {
    max-width: 1620px;
}

.attractions-slider .swiper-slide.swiper-slide-active .item {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.attractions-slider .swiper-slide {
    padding-bottom: 7px;
    height: auto;
}

.attractions-slider .swiper-slide .item {
    background-color: #fff;
    height: 100%;
}

.attractions-slider .content {
    padding: 25px 30px;
}

.attractions-slider .content p {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.attractions-slider .content h2 {
    font-size: 27px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.attractions .title h2 {
    display: inline-block;
    margin-bottom: 35px;
}

.attractions-slider .slide-nav {
    position: absolute;
    right: 0;
    top: 30px;
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
}

.attractions-slider .slide-nav .swiper-button {
    position: static;
}

.attractions-slider .item .time {
    position: absolute;
    left: 20px;
    top: 20px;
    color: #fff;
    font-size: 27px;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'FS Siena';
    font-weight: normal;
    font-style: normal;
    border-left: 1px solid #fff;
    padding-left: 12px;
    margin-left: 40px;
}

.attractions-slider .item .time::before {
    background-image: url('assets/images/clock-icon.svg');
    height: 24px;
    width: 24px;
    content: "";
    position: absolute;
    left: -34px;
    top: 2px;
    background-repeat: no-repeat;
}

/*** Distinct Units ***/
.distinct-units {
    margin-top: -60px;
    padding-top: 120px;
}

.distinct-units .title.title-small {
    padding-left: 120px;
}

.distinct-units .wrapper {
    max-width: 1850px;
}

.floorplan-slider.swiper {
    padding: 0 100px 2px;
}

.floorplan-slider .content {
    padding: 30px;
    border-top: 0;
}

.floorplan-slider.swiper .swiper-slide {
    height: auto;
}

.floorplan-slider.swiper .swiper-slide .item {
    height: 100%;
    border: 1px solid #000;
    background-color: #fff;
}

.floorplan-slider.swiper .swiper-slide .item .gallery-slider {
    margin-left: -1px;
    margin-right: -1px;
    margin-top: -1px;
}

.floorplan-slider .content h3 {
    font-size: 28px;
    text-transform: uppercase;
    font-family: 'DM Sans 18pt';
    font-weight: 600;
    margin-bottom: 15px;
}

.floorplan-slider .content p {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.floorplan-slider .content .info {
    padding-bottom: 50px;
    padding-top: 5px;
    max-width: 320px;
}

.floorplan-slider .content .info .details {
    margin-top: 20px;
    justify-content: space-between;
}

.floorplan-slider .content .info .details .bhk {
    min-width: 85px;
}

.floorplan-slider .content .info .details p {
    font-size: 14px;
    text-transform: uppercase;
    color: #606060;
}

.floorplan-slider .content .info .details p strong {
    font-weight: 600;
}

.floorplan-slider .swiper-slide.swiper-slide-active .content {
    background-color: #fff;
}

.floorplan-slider .content .info .details .type {
    position: relative;
    padding-left: 36px;
}

.floorplan-slider .content .info .details .type::before {
    background-image: url(assets/images/bed-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    height: 18px;
    width: 21px;
    position: absolute;
    left: 0;
    top: 0;
}

.floorplan-slider .content .info .details .type.areaType::before {
    background-image: url(assets/images/area-icon.svg);
    height: 18px;
    width: 15px;
    left: 5px;
}

.floorplan-slider.swiper:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 98px;
    content: "";
    background-color: #f4f4f4;
    z-index: 9;
}

.floorplan-slider.swiper:after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 98px;
    content: "";
    background-color: #f4f4f4;
    z-index: 9;
}

.nav-wrapper .swiper-pagination-bullet {
    width: 24px;
    height: 2px;
    border-radius: 0;
    opacity: 0.3;
    background-color: #fff;
    margin: 0 2px !important;
}

.nav-wrapper .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

/*** Community Amenities ***/
.community-amenities {
    padding-top: 60px;
    padding-bottom: 100px;
}

.community-amenities .wrapper {
    max-width: 1850px;
}

.community-amenities .innerWrap {
    gap: 100px;
    padding-left: 80px;
}

.community-amenities .title {
    max-width: 580px;
}

.community-amenities .amenities-slider {
    width: calc(100% - 710px);
    overflow: hidden;
    position: relative;
    padding: 0 70px;
}

.amenities-slider .content {
    padding: 22px 50px 20px 25px;
}

.amenities-slider .content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'DM Sans 18pt';
    margin-bottom: 10px;
    margin-top: 8px;
}

.amenities-slider .content .icon {
    height: 25px;
}

.amenities-slider .content p {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.amenities-slider .swiper-slide {
    padding: 7px;
    height: auto;
}

.amenities-slider .swiper-slide .item {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.amenities-slider .swiper-slide.swiper-slide-active .item {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

.amenities-slider:after {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    content: "";
    background-color: #fff;
    z-index: 9;
}

.amenities-slider:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    content: "";
    background-color: #fff;
    z-index: 9;
}
.amenities-slider .swiper-slide figure{
	position: relative;
}

/*** Payment Plans ***/
.payment-plans {
    padding-top: 60px;
    padding-bottom: 50px;
}

.payment-plans .wrapper {
    max-width: 1850px;
}

.payment-plans .innerWrap {
    padding-left: 80px;
    padding-right: 100px;
}

.payment-plans .title {
    max-width: 395px;
}

.payment-plans .title p {
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    gap: 18px;
}

.tabs-nav .btn {
    cursor: pointer;
    font-size: 15px;
}

.tabs-nav .btn::after {
    display: none;
}

.tabs-nav .btn {
    padding: 15px 50px;
}

.tabs-nav .btn.active {
    background-color: #0f0f0f;
    color: #fff;
}

.btn.dark-bdr {
    background-color: transparent;
    border-color: #0f0f0f;
    color: #0f0f0f;
}

.btn.dark-bdr:hover {
    background-color: #0f0f0f;
    color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tabs-content {
    padding-top: 50px;
    border-bottom: 1px solid #0f0f0f;
}

.tabs-content .tab-panel h3 {
    font-size: 55px;
}

.tabs-content .tab-panel p {
    font-size: 20px;
    color: #606060;
}

.tabs-content ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.tabs-content ul li {
    padding-bottom: 45px;
    position: relative;
    width: calc(100% / 3);
}

.tabs-content ul li::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    bottom: -6px;
}

/*** Gallery Section ***/
.gallery-section {
    background-image: url('assets/images/gallery-background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery-section .title {
    max-width: 380px;
}

.gallery-section .innerWrap {
    padding-left: 80px;
    justify-content: space-between;
}

.gallery-section .gallerySlider {
    max-width: 1120px;
    padding: 0 80px;
    margin-right: 0;
    width: 100%;
}

.gallery-section .gallerySlider .popup {
    display: block;
}

.gallery-section .gallerySlider .popup img {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #f7f7f7;
}

.footertop {
    padding-top: 45px;
    padding-bottom: 20px;
    align-items: flex-end;
}

.footerLogo img {
    width: 250px;
}

.footertop .rightCol .social-media ul {
    gap: 15px;
}

.footertop .rightCol .social-media li img {
    width: auto;
    height: 17px;
}
.social-media li img {
    width: 30px;
    height: revert-layer;
}
.social-media p {
    font-size: 12px;
    text-align: right;
}

.copyright {
    padding-top: 15px;
    padding-bottom: 20px;
    border-top: 1px solid #bfbfbf;
}

.copyright p {
    font-size: 12px;
    margin-bottom: 0;
    color: #606060;
}

.copyright p a {
    color: #606060;
	text-decoration: none;
}

@media (max-width: 767px) {
    .footertop {
        flex-wrap: wrap;
    }
    .footerLogo {
        width: 100%;
		text-align: center;
    }
    .footertop .rightCol {
        width: 100%;
        flex-wrap: wrap;
        margin-top: 30px;
    }
    .footertop .rightCol .social-media {
        width: 100%;
    }
    .copyright {
        flex-direction: column;
        align-items: center;
    }
    .social-media p {
        text-align: center;
    }
	.footertop .rightCol .social-media ul{
		justify-content: center;
	}
}


/** Register Contact Us **/
.schedule-wrapper .scheduleSite {
    width: 30%;
}

.schedule-wrapper .registerInterest {
    width: 70%;
    background: #000;
    padding: 60px 100px;
}

.scheduleSite .schedule-contactDetails {
    padding: 50px 55px;
}

.schedule-wrapper h3 {
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    font-family: 'DM Sans 18pt';
}

.schedule-contactDetails p,
.schedule-contactDetails p a {
    font-size: 24px;
    color: #000;
    text-decoration: none;
    position: relative;
    line-height: 50px;
}

.schedule-contactDetails p {
    padding-left: 60px;
    margin-bottom: 20px;
}

.schedule-contactDetails p:last-child {
    margin-bottom: 0;
}

.schedule-contactDetails p:before {
    content: "";
    display: block;
    width: 45px;
    height: 45px;
    border: 1px solid #3d3e38;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

.schedule-contactDetails p.callUs:before {
    background: url(assets/images/call-icon.svg) no-repeat;
    background-size: 16px;
    background-position: center;
}

.schedule-contactDetails p.emailUs:before {
    background: url(assets/images/email-icon.svg) no-repeat;
    background-size: 20px;
    background-position: center;
}

.scheduleSite .schedule-contactDetails h3 {
    margin-bottom: 30px;
}

.registerInterest .registerHeading {
    max-width: 460px;
    margin-bottom: 40px;
}

.contact-form .gform_fields,.gfield--type-name .ginput_container--name {
    gap: 40px !important;
}

.gfield_required {
    display: none !important;
}

.contact-form input[type="submit"]:before {
    content: none;
}

.contact-form input[type="submit"]:after {
    content: "";
    background: url(./assets/images/dark-arrow.svg) no-repeat;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    height: 20px;
    width: 20px;
    display: block;
    position: absolute;
    right: 25px;
    top: 14px;
    filter: brightness(0) invert(1);
}
.bg-color {
    background-color: #f4f4f4;
}
.text-white, .text-white h2, .text-white p {
    color: #fff !important;
}

/* Form */
.contact-form [type="text"], .contact-form select,.contact-form [type="email"],.contact-form [type="tel"] {
    font-weight: normal !important;
    font-size: 15px !important;
    font-family: 'DM Sans 18pt' !important;
    color: #fff !important;
    background-color: transparent !important;
    width: 100% !important;
    border: 0 !important;
    border-bottom: 1px solid #B5B5B5 !important;
    border-radius: 0 !important;
    padding: 10px 0 15px 0 !important;
	box-shadow: none !important;
}

.contact-form [type="text"]:focus, .contact-form select:focus,.contact-form [type="email"]:focus,.contact-form [type="tel"]:focus{
    outline: none;
    box-shadow: none;
}

.contact-form .gfield--type-radio {
    gap: 35px;
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"],.contact-form input[type="radio"],.contact-form input[type="checkbox"] {
    margin-right: 10px !important;
    height: 20px !important;
    width: 20px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    cursor: pointer !important;
    position: relative !important;
    border: 1px solid #ffffff !important;
    background-color: transparent !important;
}

.contact-form input[type="checkbox"]{
    background-color: transparent !important;
    border: 1px solid #ffffff !important;
    border-radius: 0 !important;
}
.contact-form input[type="radio"] {
    border-radius: 50%;
}

.contact-form input[type="radio"]:checked,.contact-form input[type="checkbox"]:checked{
    background-color: #3d3e38;
}

.contact-form input[type="radio"]:checked:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
}

.contact-form input[type="checkbox"]:checked:before {
	content: '';
	position: relative;
	top: -1px;
	left: 0;
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	width: 8px;
	height: 11px;
	transform: rotate(45deg);
}
.contact-form input[type="checkbox"]:checked{
    background-color: #3d3e38 !important;
}

.contact-form .gform-field-label {
    color: #fff !important;
    font-size: 15px !important;
}

.contact-form .gfield--type-radio .ginput_container_radio {
    display: flex;
}
.contact-form .gfield--type-radio .ginput_container_radio .gfield_radio {
    flex-direction: row;
    gap: 30px;
}

.contact-form .gfield--type-radio .ginput_container_radio .gfield_radio label {
    margin-left: 5px !important;
}

.contact-form input[type="submit"] {
    border-color: #fff;
    transition: all 300ms ease 0s;
    padding: 16px 60px 16px 35px !important;
    background-color: transparent !important;
    display: inline-block !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    position: relative !important;
    border-radius: 35px !important;
    border: 1px solid #fff !important;
    font-family: 'DM Sans', sans-serif !important;
    background-image: url(./assets/images/light-arrow.svg) !important;
    background-repeat: no-repeat !important;
    background-position: right 25px center !important;
    background-size: 20px 20px !important;
	box-shadow: none !important;
}

.contact-form input[type="submit"]:hover {
    background-color: #fff !important;
    background-image: url(./assets/images/dark-arrow.svg) !important;
    color: #3d3e38 !important;
}

.contact-form input::-webkit-input-placeholder {
    opacity: 1;
    color: #B5B5B5;
}

.contact-form input:-moz-placeholder {
    opacity: 1;
    color: #B5B5B5;
}

.contact-form input::-moz-placeholder {
    opacity: 1;
    color: #B5B5B5;
}

.contact-form input:-ms-input-placeholder {
    opacity: 1;
    color: #B5B5B5;
}
.gform_validation_errors{
    background-color: #f8d7da !important;
    margin-bottom: 30px !important;
}
.gform_confirmation_message{
    text-align: center;
    color: #155724;
    background-color: #d4edda;
    padding: 20px;
}
.gform_submission_error {
    flex-direction: row !important;
}

@media (max-width: 1600px) {
    .schedule-wrapper h3 {
        font-size: 30px;
    }

    .schedule-contactDetails p,
    .schedule-contactDetails p a {
        font-size: 20px;
    }

    .schedule-contactDetails p::before {
        width: 35px;
        height: 35px;
        top: 6px;
    }

    .schedule-contactDetails p {
        margin-bottom: 10px;
        padding-left: 50px;
    }

    .scheduleSite .schedule-contactDetails {
        padding: 40px 35px;
    }
}

@media (max-width: 1279px) {
    .schedule-wrapper .registerInterest {
        padding: 60px;
    }
}

@media (max-width: 1023px) {
    .schedule-wrapper {
        flex-direction: column-reverse;
    }

    .schedule-wrapper .scheduleSite {
        width: 100%;
        display: flex;
    }

    .schedule-wrapper .scheduleSite img {
        max-width: 300px;
        object-fit: cover;
    }

    .schedule-wrapper .registerInterest {
        width: 100%;
    }

    .schedule-wrapper h3 {
        font-size: 26px;
    }

    .scheduleSite .schedule-contactDetails h3 {
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .schedule-wrapper .registerInterest {
        padding: 40px 20px;
    }

    .schedule-wrapper h3 {
        font-size: 24px;
    }

    .schedule-wrapper .scheduleSite {
        flex-wrap: wrap;
    }

    .schedule-wrapper .scheduleSite img {
        max-width: 100%;
    }

    .schedule-contactDetails p,
    .schedule-contactDetails p a {
        font-size: 16px;
    }
    .contact-form .gform_fields, .gfield--type-name .ginput_container--name {
        gap: 20px !important;
    }
    .contact-form .gform-field-label, .contact-form [type="text"], .contact-form select, .contact-form [type="email"], .contact-form [type="tel"] {
        font-size: 13px !important;
    }
    .contact-form input[type="submit"]{
        font-size: 14px !important;
    }
}


/*** Responsive ***/
@media only screen and (max-width: 1900px) {
    .wrapper {
        width: 95%;
    }

    .banner-info {
        padding-top: 200px;
    }

    .banner-info h2 {
        font-size: 60px;
    }

    .title h2 {
        font-size: 45px;
    }

    .title p {
        font-size: 18px;
    }

    .priceList li p {
        font-size: 14px;
    }

    .priceList li h4 {
        font-size: 40px;
    }

    .bottomSec .leftCol h3 {
        font-size: 60px;
    }

    .bottomSec .rightCol span {
        font-size: 50px;
    }

    .bottomSec .rightCol p {
        font-size: 25px;
    }

    .bottomSec .leftCol {
        width: 46%;
    }

    .residences-info {
        max-width: 640px;
    }

    .becomeHenge {
        padding-top: 90px;
        padding-bottom: 160px;
    }

    .locatedSec .innerwrap .leftCol {
        padding: 50px 50px 40px 70px;
    }

    .attractions-slider .content h2 {
        font-size: 25px;
    }

    .locatedSec.structureSection .innerwrap .leftCol {
        padding: 30px 50px 30px 50px;
    }

    .title.title-small h2 {
        font-size: 40px;
    }

    .floorplan-slider .content h3 {
        font-size: 24px;
    }

    .floorplan-slider .content p br {
        display: none;
    }

    .floorplan-slider .content .info {
        padding-bottom: 40px;
    }

    .floorplan-slider .content .info .details {
        margin-top: 15px;
    }

    .community-amenities .innerWrap,
    .payment-plans .innerWrap,
    .gallery-section .innerWrap {
        padding-left: 0;
    }

    .community-amenities .amenities-slider {
        width: calc(100% - 450px);
    }

    .community-amenities .innerWrap {
        gap: 50px;
    }

    .community-amenities .title {
        max-width: 400px;
    }

    .gallery-section .gallerySlider {
        max-width: 900px;
    }

    .tabs-nav .btn {
        font-size: 14px;
    }

    .tabs-nav {
        gap: 12px;
    }

    .tabs-content .tab-panel h3 {
        font-size: 45px;
    }

    .tabs-content .tab-panel p {
        font-size: 18px;
    }
	.amenities-slider .content{
		padding: 22px 20px 20px 25px;
	}
}

@media only screen and (max-width: 1365px) {
    .bottomSec .leftCol h3 {
        font-size: 50px;
    }

    .title h2 {
        font-size: 40px;
    }

    .bottomSec .rightCol span {
        font-size: 40px;
    }

    .bottomSec .rightCol p {
        font-size: 20px;
    }

    .bottomSec .leftCol {
        width: 50%;
    }

    .payment-plans .innerWrap {
        padding-right: 0;
    }

    .gallery-section .gallerySlider {
        max-width: 800px;
    }
}

@media only screen and (max-width: 1279px) {
    .banner-info h2 {
        font-size: 50px;
    }

    .priceList li h4 {
        font-size: 35px;
    }

    .priceList ul {
        gap: 80px;
    }

    .bottomSec .leftCol h3 {
        font-size: 40px;
    }

    .title h2 {
        font-size: 35px;
    }

    .bottomSec .rightCol span {
        font-size: 35px;
    }

    .bottomSec .rightCol p {
        font-size: 18px;
    }

    .becomeHenge {
        padding-top: 70px;
        padding-bottom: 120px;
    }

    .residences-info {
        max-width: 600px;
        padding: 60px;
    }

    .locatedSec .innerwrap .leftCol {
        padding: 50px 50px 40px 50px;
    }

    .community-amenities .amenities-slider {
        width: calc(100% - 400px);
    }

    .community-amenities .title {
        max-width: 370px;
    }

    .community-amenities .innerWrap {
        gap: 30px;
    }

    .amenities-slider .content {
        padding: 20px;
    }

    .bedroomTabs {
        width: calc(100% - 400px);
    }

    .tabs-nav .btn {
        padding: 10px 20px;
    }

    .tabs-nav {
        justify-content: center;
    }

    .tabs-content .tab-panel h3 {
        font-size: 40px;
    }

    .tabs-content .tab-panel p {
        font-size: 16px;
    }

    .btn {
        font-size: 15px;
    }

    .gallery-section .gallerySlider {
        width: calc(100% - 400px);
    }
	.locatedSec .innerwrap{
		align-items: normal;
	}
}

@media only screen and (max-width: 1023px) {
    .btn {
        font-size: 14px;
    }

    .priceList li h4 {
        font-size: 30px;
    }

    .priceList ul {
        gap: 50px;
    }

    .pdt90 {
        padding-top: 60px;
    }

    .bottomSec .innerWrap {
        padding: 50px 0 40px 50px;
    }

    .bottomSec .leftCol {
        width: 100%;
        padding-right: 40px;
    }

    .bottomSec .rightCol {
        margin-top: 40px;
        max-width: 100%;
        width: 100%;
    }

    .bottomSec .rightCol ul {
        justify-content: flex-end;
    }

    .bottomSec .rightCol .btnwrap {
        text-align: right;
        padding-right: 40px;
    }

    .bottomSec .rightCol .btn {
        margin-top: 50px;
    }

    .locatedSec.structureSection .innerwrap .leftCol {
        padding: 30px;
    }

    .floorplan-slider.swiper {
        padding: 0 55px 2px;
    }

    .floorplan-slider.swiper::before,
    .floorplan-slider.swiper::after {
        width: 50px;
    }

    .community-amenities .title {
        max-width: 100%;
    }

    .community-amenities .amenities-slider {
        width: 100%;
    }

    .payment-plans .title {
        max-width: 100%;
        text-align: center;
    }

    .bedroomTabs {
        width: 100%;
        padding-top: 40px;
    }

    .gallery-section .title {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .gallery-section .gallerySlider {
        width: 100%;
        padding-top: 40px;
    }

    .community-amenities {
        padding-bottom: 70px;
    }

    .locatedSec .innerwrap .leftCol {
        padding: 30px;
    }

    .main-header .logo img {
        max-width: 230px;
    }

    .banner-info h2 {
        font-size: 40px;
    }

    .hero-banner .btn-wrap .wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn {
        padding: 14px 56px 14px 25px;
    }

    .hero-banner .btn-wrap {
        bottom: 100px;
    }

    

    .bottomSec .innerWrap {
        padding: 30px 0 40px 30px;
    }

    .title h2 {
        font-size: 30px;
    }

    .bottomSec .leftCol h3 {
        font-size: 36px;
    } 

    .becomeHenge {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    .residences-info {
        padding: 40px;
    }

    .locatedSec .innerwrap {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .w50 {
        width: 100%;
    }

    .ptb90 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .attractions .title {
        padding-bottom: 40px;
    }

    .attractions-slider .slide-nav {
        top: 75px;
    }

    .title p {
        font-size: 16px;
    }

    .title.title-small h2 {
        font-size: 30px;
    }

    .distinct-units.ptb90 {
        padding-top: 100px;
    }

    .wrapper {
        width: 98%;
    }

    .distinct-units .title.title-small {
        padding-left: 0;
        text-align: center;
    }

    .floorplan-slider .content h3 {
        font-size: 22px;
    }

    .tabs-nav .btn {
        text-align: center;
    }

    .tabs-content .tab-panel h3 {
        font-size: 30px;
    }
    p{
		font-size: 18px;
	}
}
@media only screen and (max-width: 767px) {
	.priceList ul {
        flex-direction: column;
        gap: 20px;
    }
	.tabs-nav {
        flex-direction: column;
        max-width: 150px;
        margin: 0 auto;
    }
	.tabs-content ul li {
        width: calc(100% / 2);
    }
	.bottomSec .rightCol span {
        font-size: 25px;
    }  
	.bottomSec .rightCol p {
        font-size: 16px;
    }
    .bottomSec .rightCol li:last-child {
        margin-left: 20px;
        padding: 20px 40px 20px 25px;
    }
	.swiper-button{
		width: 30px !important;
		height: 30px !important;
	}
	.floorplan-slider.swiper::before, .floorplan-slider.swiper::after {
    	width: 35px;
  	}
	.floorplan-slider .content{
		padding: 20px;
	}
	.floorplan-slider .content h3{
		font-size: 20px;
	}
	.floorplan-slider .content .info .details p{
		font-size: 12px;
	}
	.floorplan-slider.swiper {
    	padding: 0 45px 2px;
  	}
	.floorplan-slider .content .info .details{
		gap: 15px;
	}
	.floorplan-slider .content .info .details .type{
		padding-left: 28px;
	}
	.community-amenities .amenities-slider{
		padding: 0 45px;
	}
	.amenities-slider::after, .amenities-slider::before{
		width: 45px;
	}
	.gallery-section .gallerySlider{
		padding: 20px 50px 0;
	}
	p{
		font-size: 16px;
	}
}

.download-brochure{
	display: none;
}
.contact-form.download-brochure input[type="submit"]{
	border-color: #0f0f0f !important;
	color: #0f0f0f !important;
	background-image: url(./assets/images/dark-arrow.svg) !important;
}
.contact-form.download-brochure input[type="submit"]:hover{
	background-image: url(./assets/images/light-arrow.svg) !important;
	background-color: #0f0f0f !important;
	color: #fff !important;
}
.contact-form.download-brochure input[type="text"], .contact-form.download-brochure select, .contact-form.download-brochure input[type="email"], .contact-form.download-brochure input[type="tel"]{
	color: #0f0f0f !important;
}
.contact-form.download-brochure input::placeholder {
	opacity: 1;
	color: #000;
}

.popup-icon {
	position: absolute;
	bottom: 15px;
	right: 15px;
	cursor: pointer;
	z-index: 99;
}
.popup-icon img{
	width: 15px;
}
.gallery-slider .nav-wrapper{
	position: absolute;
	left: 40px;
	right: 40px;
}

.gform_confirmation_message{
	color: #155724 !important;
    background-color: #d4edda !important;
    padding: 20px !important;
}

/*  Error Page */
.errorBanner{
	text-align: center;
	padding: 200px 0 150px;
	background-color: #000;
}
.errorBanner h1{
	font-size: 150px;
}
.errorBanner h2{
	margin-bottom: 20px;
}
.errorBanner p{
	margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
	.errorBanner h1{
		font-size: 100px;
	}
	.errorBanner h2{
		font-size: 26px;
	}
}