@charset "UTF-8";
/*

*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;700&amp;display=swap");
@import url("https://cdn-uicons.flaticon.com/3.0.0/uicons-regular-straight/css/uicons-regular-straight.css");

:root {
    --primary-color: #b276b3;
    --secondary-color: #5dcaf3;
    --tertiary-color: #dee783;
    --accent-color: #99d3b7;
    --font-color: #272727;
    --white-color: #ffffff;
    --linear-gradient-bg: linear-gradient(90deg, #b276b3, #5dcaf3, #99d3b7, #dee783);
    --angle-gradient-bg: linear-gradient(45deg, #b276b3, #5dcaf3, #99d3b7, #dee783);
    --linear-gradient-color: linear-gradient(90deg, #b276b3, #5dcaf3, #99d3b7, #dee783);
    --linear-top-gradient-bg: linear-gradient(180deg, #b276b3, #5dcaf3, #99d3b7, #dee783);
    --font-main: "Montserrat", sans-serif;
}

body {
    font-family: "Poppins", sans-serif;
    color: #777777;
    background-color: #ffffff;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    font-family: "Montserrat", sans-serif;
    color: #0d1820;
}

p {
    line-height: 1.8;
    font-family: "Poppins", sans-serif;
}

a {
    transition: 0.5s all ease;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

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

.pt-100 {
    padding-top: 100px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-100 {
    padding-bottom: 100px;
}

button:focus {
    outline: 0;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

/*-- End Default CSS --*/

button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

/*----- Default Button and Section Title CSS-----*/

.default-style-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 27px;
    border-radius: 5px;
    background: var(--primary-color);
    color: var(--white-color);
    font-weight: 500;
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 18px;
}
.default-style-btn::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    color: var(--white-color);
    z-index: -1;
    transition: 0.5s all ease;
    opacity: 0;
}
.default-style-btn:hover {
    color: var(--white-color);
}
.default-style-btn:hover::before {
    opacity: 1;
}
/** light button style **/

.light-style-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 27px;
    border-radius: 5px;
    background: var(--white-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 18px;
}

.light-style-btn::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    color: var(--white-color);
    z-index: -1;
    transition: 0.5s all ease;
    opacity: 0;
}
.light-style-btn:hover {
    color: var(--white-color);
}
.light-style-btn:hover::before {
    opacity: 1;
}

.main-section-title.regular-style h2 {
    font-weight: 400;
}
.main-section-title.regular-style h2 b {
    font-weight: bold;
}

/*----- Navbar Area CSS -----*/

.main-navbar .navbar.navbar-light {
    background-color: transparent;
    box-shadow: unset;
    border-bottom: 1px solid #e3e9ed;
    padding: 20px 40px;
}
.main-navbar {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 2;
}
.main-navbar .navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    background: var(--primary-color) !important;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.logo img.logo-img {
    width: 100px;
}
.main-navbar .navbar.navbar-light .navbar-nav {
    margin: auto;
}
.main-navbar .navbar.navbar-light .navbar-nav .nav-item {
    position: relative;
    padding: 0;
}
.main-navbar .navbar.navbar-light .navbar-nav .nav-item a {
    padding: 0;
    font-weight: 400;
    margin-left: 10px;
    margin-right: 10px;
}
.main-navbar .navbar .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
.main-navbar .navbar.is-sticky.navbar-light {
    border-bottom: none;
}
.main-navbar .navbar.is-sticky.navbar-light::before {
    display: none;
}
.main-navbar .navbar.navbar-light {
    border-bottom: none;
}
.main-navbar .navbar.navbar-light::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(227, 233, 237, 0.3);
    max-width: 100%;
    margin: auto;
}
.main-navbar .navbar.navbar-light .navbar-nav .nav-item a {
    color: #ffffff;
}
.main-navbar .navbar.navbar-light .navbar-nav .nav-item a:hover,
.main-navbar .navbar.navbar-light .navbar-nav .nav-item a:focus,
.main-navbar .navbar.navbar-light .navbar-nav .nav-item a.active {
    color: var(--secondary-color);
}
.main-navbar .navbar.navbar-light .navbar-nav .nav-item:hover a,
.main-navbar .navbar.navbar-light .navbar-nav .nav-item.active a {
    color: var(--secondary-color);
}

/*================================================
 Banner Area CSS
=================================================*/
.hero-banner-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 280px;
    padding-bottom: 180px;
    position: relative;
    z-index: 1;
}
.hero-banner-area:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.3;
}
.hero-banner-area .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
.hero-banner-content {
    max-width: 900px;
    position: relative;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 40px;
    margin-left: 100px;
}

.hero-banner-content h1 {
    font-size: 100px;
    font-weight: 700;
    letter-spacing: -2px;
    background: var(--linear-gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-left: -7px;
    line-height: 105px;
}
.hero-banner-content h1.one {
    margin-bottom: 12px;
    line-height: 1;
    margin-left: 0;
}
.hero-banner-content .right {
    margin-top: 20px;
}
.hero-banner-content .right p {
    color: #ffffff;
    margin-bottom: 35px;
}
.hero-banner-content p {
    color: #fff;
    font-size: 22px;
}
span.desktop-hide {
    display: none;
}

/*================================================
REAP About Area CSS
=================================================*/
.designed-for-area {
    overflow: hidden;
}

.designed-for-about-left {
    padding-right: 0px;
    width: 100%;
}
.designed-for-about-left h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 90px;
}
.designed-for-about-left img {
    border-radius: 20px;
    margin-bottom: 25px;
    height: 400px;
    object-fit: cover;
}
.designed-for-about-left p {
    margin-bottom: 0;
}
.designed-for-about-left p span {
    font-weight: 500;
    color: #0d1820;
}

.designed-for-about-right p {
    color: #0d1820;
    font-weight: normal;
    margin-bottom: 0px;
}
.designed-for-about-right ul li p span {
    font-weight: bold;
}
.designed-for-about-right h5 {
    font-weight: bold;
    font-size: 42px;
    margin-bottom: 20px;
}
.designed-for-about-right .list {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
.designed-for-about-right .list li {
    display: flex;
    gap: 10px;
    align-items: start;
    font-size: 20px;
    color: #0d1820;
    margin-bottom: 20px;
}
.designed-for-about-right .list li i {
    color: var(--primary-color);
    font-size: 22px;
    padding-top: 8px;
}
.designed-for-about-right .list li:last-child {
    margin-bottom: 0;
}
.designed-for-about-right .about-video {
    margin-top: 35px;
}
.designed-for-about-right .about-video .video-btn {
    display: flex;
    gap: 10px;
    align-items: center;
}
.designed-for-about-right .about-video .video-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d1820;
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    border-radius: 50px;
    transition: 0.5s all ease;
}
.designed-for-about-right .about-video .video-btn span {
    font-weight: 600;
    color: #0d1820;
}
.designed-for-about-right .about-video .video-btn:hover i {
    background-color: #00c195;
}

/*================================================
Call To Action Area CSS
=================================================*/
.call-to-action-inner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--angle-gradient-bg);
    border-radius: 20px;
    padding: 100px 25px;
}
.call-to-action-inner .content {
    text-align: center;
    max-width: 785px;
    margin: auto;
}
.call-to-action-inner .content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.call-to-action-inner .content p {
    font-size: 22.5px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
}
.call-to-action-inner .shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    height: 100%;
}
.call-to-action-inner .shape1 img {
    height: 100%;
}
.call-to-action-inner .shape2 {
    position: absolute;
    right: 30px;
    bottom: 0;
    z-index: -1;
}

/*================================================
 Meaning in Each Tower Area CSS
=================================================*/

section.buildings-section {
    background: #222;
    position: relative;
    margin-top: 100px;
}
section.buildings-section .po-shape {
    right: 0;
    left: unset;
    bottom: 0;
    z-index: -1;
    position: absolute;
}
.buildings-section .row {
    display: flex;
    align-items: stretch;
    min-height: 60vh;
}
h1.buildings-title {
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 30px;
}
.buildings-left-img {
    background-image: url("../img/Rise-by-Athlon-Master-Plan.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

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

.buildings-right-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    column-gap: 20px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.buildings-right-content li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    gap: 5px;
    align-items: flex-start;
    background: #f4f4f4;
    padding: 20px 50px 20px 20px;
    color: var(--font-color);
}
.buildings-right-content li span {
    font-weight: bold;
}

/*================================================
Property Blog Area CSS
=================================================*/
.playground-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.playground-area .section-top-title {
    max-width: 1320px;
    text-align: center;
}
.playground-area .section-top-title h2 {
    color: #ffffff;
    padding: 100px 0;
    font-size: 42px;
    font-weight: bold;
}
.playground-area::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 425px;
    background-color: #222;
    z-index: -1;
}

.playground-card .image {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.playground-card .image a img {
    border-radius: 30px;
    transition: 0.5s all ease;
}
.playground-card .image .tag {
    display: inline-flex;
    padding: 5.5px 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: var(--angle-gradient-bg);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    position: absolute;
    top: 15px;
    left: 15px;
}
.playground-btn-area {
    margin: 50px 0;
}

/*================================================
SP About Area CSS
=================================================*/
.sp-about-area {
    overflow: hidden;
}
.sp-about-area .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.sp-about-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.sp-about-content {
    padding-left: 100px;
    padding-top: 30px;
    padding-bottom: 30px;
}
.sp-about-content .bold {
    font-size: 30px;
    font-weight: 600;
    color: #0d1820;
    margin-bottom: 45px;
}
.sp-about-content h1.section-title {
    padding-bottom: 20px;
    font-size: 42px;
    text-transform: uppercase;
    color: var(--primary-color);
}
.sp-about-content .inner .boxes {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    margin-bottom: 0;
    background: var(--secondary-color);
    padding: 55px 50px;
    margin-left: -400px;
}
.sp-about-content .inner .boxes li {
    list-style-type: none;
    text-align: center;
    position: relative;
}
.sp-about-content .inner .boxes li h5 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
}

.sp-about-content .inner .list {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
.sp-about-content .list li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
    color: var(--font-color);
    margin-bottom: 10px;
}
.sp-about-content .list li i {
    font-size: 20px;
    color: var(--primary-color);
}
.sp-about-content .list li:last-child {
    margin-bottom: 0;
}
.key-facts-list-2 ul.list {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    align-items: flex-start;
}
.sp-about-content .list p {
    margin: 0;
    font-size: 12px;
}
.sp-about-content .list p span {
    font-size: 15px;
}
.key-facts-list-2 {
    padding-top: 20px;
}

/*================================================
 Overview
=================================================*/

.cta-2-area {
    position: relative;
}
.cta-2-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.cta-2-area .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
.cta-2-area::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 320px;
    background-color: var(--primary-color);
    z-index: -1;
}
.cta-img-view img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}
@media only screen and (min-width: 1550px) {
    .cta-2-area .container-fluid,
    .po-content-area .container-fluid {
        padding-left: 150px;
        padding-right: 150px;
    }
}
.cta-img-view {
    position: relative;
    margin-bottom: 50px;
}
.cta-img-view:after {
    content: "";
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.2;
}
.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    flex-direction: column;
    z-index: 2;
}
.cta-content h1 {
    color: var(--white-color);
    font-size: 42px;
    font-weight: bold;
}
.cta-content p {
    color: var(--white-color);
    font-size: 20px;
    width: 40%;
}

/*================================================
SP Benefits Area CSS
=================================================*/
.floor-plan-area {
    overflow: hidden;
    background: var(--primary-color);
}
.floor-plan-area .section-title h1 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--white-color);
    font-weight: bold;
}
.floor-plans-tabs {
    padding: 0;
    margin-bottom: 0;
    border: none;
    display: block;
}
.floor-plans-tabs .nav-item {
    margin-bottom: 35px;
}
.floor-plans-tabs .nav-item .nav-link {
    padding: 0;
    border: none;
    background-color: transparent;
    color: var(--white-color);
    font-weight: 400;
    transition: 0.5s all ease;
    border-bottom: 1px solid #ffffff;
    display: inline-block;
    font-size: 20px;
}
.floor-plans-tabs .nav-item .nav-link:hover,
.floor-plans-tabs .nav-item .nav-link.active {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    font-weight: 700;
}
.floor-plans-tabs .nav-item:last-child {
    margin-bottom: 0;
}

.floor-plan-content {
    padding-left: 10px;
}
.floor-plan-content .content {
    display: flex;
    gap: 30px;
    align-items: center;
    padding-top: 25px;
    padding-left: 30px;
}
.floor-plan-content .content .number {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-color);
}
.floor-plan-content .content p {
    margin-bottom: 0;
    max-width: 765px;
    font-size: 32px;
    color: var(--white-color);
}
.floor-plan-content .floor-plan-imgs {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

/*================================================
Payment Plan Area CSS
=================================================*/
.payment-plans-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.payment-plans-area::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    background-color: #ffffff;
    z-index: -1;
}
.payment-plans-left h1 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: bold;
}
.floor-plans img {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}
.payment-plans-content.table-responsive {
    padding-left: 100px;
}
.payment-plans-content tbody tr th {
    color: var(--primary-color);
}

/*================================================
Pricing Area CSS
=================================================*/
.pricing-plan-area {
    overflow: hidden;
}
.pricing-plan-area .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}

.sp-pricing-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
}

.pricing-content-wrapper h3 {
    font-size: 30px;
    font-weight: 600;
    max-width: 760px;
    margin-bottom: 40px;
}
.pricing-content-wrapper .inner {
    background: var(--secondary-color);
    padding: 50px;
    margin-right: -300px;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}
.pricing-content-wrapper .inner .pricing-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}
.pricing-content-wrapper .inner .pricing-content .list {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
.pricing-content-wrapper .inner .pricing-content .list li {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--white-color);
    font-size: 32px;
}
.pricing-content-wrapper .inner .pricing-content .list li:last-child {
    margin-bottom: 0;
}
.pricing-content-wrapper .inner .pricing-content.with-border {
    border-left: 1px dashed var(--white-color);
    padding-left: 50px;
}
.pricing-content-wrapper .inner .pricing-content .list li span {
    font-size: 20px;
    color: var(--white-color);
}
.pricing-content-wrapper {
    margin-top: 125px;
}

/*================================================
 Services Area CSS
=================================================*/
.services-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.services-area .main-section-title {
    text-align: start;
    margin-bottom: 50px;
}
.services-area .main-section-title p {
    color: var(--font-color);
    font-weight: 500;
    margin-bottom: 0;
}
.main-section-title h2 {
    font-size: 42px;
    font-weight: bold;
}

.services-items .item {
    border-top: 1px solid #e3e9ed;
    border-bottom: 1px solid #e3e9ed;
    padding: 30px 0;
}
.services-items .item.border-none {
    border-bottom: none;
}
.services-items .item .left {
    display: flex;
    gap: 30px;
    align-items: center;
}
.services-items .item .left .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 135px;
    border: 1px solid #dddddd;
    border-radius: 200px;
    transition: 0.5s all ease;
}
.services-items .item .left .icon:hover {
    border: 1px solid #dddddd;
}
.services-items .item .left .content {
    max-width: 250px;
}
.services-items .item .left .content h3 {
    font-size: 20.5px;
    margin-bottom: 10px;
    font-weight: 700;
}
.services-items .item .left .content p {
    margin-bottom: 0;
}
.services-items .item .middle img {
    border-radius: 20px;
}
.services-items .item .right {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
.services-items .item .right li {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-bottom: 20px;
}
.services-items .item .right li i {
    color: var(--primary-color);
    font-size: 22px;
}
.services-items .item .right li:last-child {
    margin-bottom: 0;
}
.services-bottom {
    text-align: center;
    margin-top: 40px;
}
.services-items .item .left .icon img {
    width: 60%;
}

/* ======= Amenities ======= */
.amenities {
    text-align: left;
    margin: 0;
    margin-bottom: 30px;
    padding: 20px;
    padding-bottom: 0;
    background: #f9f9f9;
    transition: 0.2s;
    overflow: hidden;
    z-index: 3;
    min-height: 150px;
}
.amenities-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    height: 80vh;
    position: relative;
}
/* 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;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
} */
.amenities-img-area,
.amenities-text-area {
    display: inline-block;
    vertical-align: bottom;
    transition: transform 0.2s ease-in-out;
}
.amenities-heading {
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: bold;
}
.amenities-img-area {
    font-size: 42px;
    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: 30%;
}
.amenities-list {
    z-index: 1;
    position: relative;
    padding: 50px;
}
.amenities-list .section-title {
    margin-bottom: 50px;
    font-size: 42px;
    color: var(--primary-color);
    font-weight: bold;
}
.amenities-list-outer .left-img {
    background-image: url(../img/amenities-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

@media (min-width:1920px){
  .amenities-img-area img {
    width: 20%;
}
}

/* ======= Locations ======= */

section.location-section {
    margin: 50px 0;
    background: #222;
    position: relative;
}
.location-text {
    padding: 100px 50px;
    color: var(--font-color);
    font-size: 16px;
}
.location-iframe {
    padding: 0px;
    height: 100%;
}
.location-iframe img {
    width: 100%;
    height: 100%;
}
.location-section .location-text {
    padding: 50px 100px 0 100px;
}
.location-section .location-text h1 {
    background: var(--linear-gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    font-weight: bold;
}
.location-section .location-text p {
    color: var(--white-color);
    font-size: 27px;
    line-height: normal;
    margin-bottom: 50px;
}
/*================================================
    Gallery Area CSS
=================================================*/
section.gallery-section {
    margin-bottom: 50px;
}
.gallery-item {
    padding: 10px;
}
.gallery-slider .slick-prev:before, .gallery-slider .slick-next:before {
    font-family: 'slick';
    line-height: 1;
    opacity: 1;
    color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 32px;
}
section.gallery-section .title h1 {
    background: var(--linear-gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    font-weight: bold;
    padding-bottom: 30px;
}
.gallery-item a img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}


/*================================================
FAQ Area CSS
=================================================*/
.faq-area {
    overflow: hidden;
}

.faq-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
}
.faq-content .image {
    margin-top: 55px;
    position: relative;
    margin-bottom: 30px;
}
.faq-content .image p {
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    background: rgba(13, 24, 32, 0.9);
    padding: 10px 20px;
    max-width: 395px;
    margin: auto;
    color: #ffffff;
    position: absolute;
    left: 0;
    bottom: 50px;
}
.faq-content .image p a {
    color: var(--primary-color);
}
.faq-content .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.faq-accordion {
    padding-left: 135px;
}
.faq-accordion .accordion-item {
    transition: 0.5s all ease;
    border-radius: 0;
    border: none;
    background-color: transparent;
    border-bottom: 1px dashed #cdcfd3;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.faq-accordion .accordion-item .accordion-button {
    color: var(--primary-color);
    position: relative;
    text-align: start;
    box-shadow: unset;
    margin-bottom: 0;
    display: block;
    border: none;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    padding: 0 45px 0 0;
    transition: 0.5s all ease;
    background-color: transparent;
}
.faq-accordion .accordion-item .accordion-button::before {
    position: absolute;
    right: 0;
    top: 3.5px;
    content: "-";
    font-size: 15px;
    color: 0.5s all ease;
    display: inline-block;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    background-color: var(--secondary-color);
    color: #ffffff;
    border-radius: 50px;
}
.faq-accordion .accordion-item .accordion-button.collapsed::before {
    content: "+";
    color: #ffffff;
    background-color: var(--primary-color);
}
.faq-accordion .accordion-item .accordion-body {
    padding: 20px 45px 0 0;
    transition: 0.5s all ease;
    border: none;
}
.faq-accordion .accordion-item .accordion-body p {
    margin-bottom: 0;
    color: #767676;
}
.faq-accordion .accordion-item .accordion-collapse {
    border: none;
}
.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

/*================================================
  Contact Area CSS
=================================================*/
.contact-area {
    overflow: hidden;
    background-color: var(--secondary-color);
}
.contact-area.white-wrap-style {
    background-color: transparent;
}
.contact-area.white-wrap-style .contact-content h2 {
    font-weight: 400;
}
.contact-area.white-wrap-style .contact-content h2 b {
    font-weight: 700;
}

.contact-content {
    max-width: 425px;
}
.contact-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
}

.contact-form h5 {
    font-weight: 600;
    color: var(--font-color);
    margin-bottom: 30px;
    font-size: 30px;
}
.contact-form .form-group {
    margin-bottom: 15px;
}
.contact-form .form-group label {
    color: var(--font-color);
    display: block;
    margin-bottom: 7px;
}
.contact-form .form-group .form-control {
    display: inline-block;
    width: 100%;
    height: 55px;
    outline: 0;
    box-shadow: unset;
    border-radius: 0;
    border: 1px solid #cdcfd3;
    background: #ffffff;
    padding: 15px 20px;
    color: #767676;
    transition: 0.5s all ease;
    font-size: 15px;
}
.contact-form .form-group .form-control::-moz-placeholder {
    color: #767676;
    -moz-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.contact-form .form-group .form-control::placeholder {
    color: #767676;
    transition: 0.5s all ease;
}
.contact-form .form-group .form-control:focus {
    border: 1px solid var(--primary-color);
}
.contact-form .form-group .form-control:focus::-moz-placeholder {
    color: transparent;
}
.contact-form .form-group .form-control:focus::placeholder {
    color: transparent;
}
.contact-form .form-group textarea.form-control {
    min-height: 100px;
}
.contact-form .default-style-btn {
    border: none;
}
.contact-form .list-unstyled li {
    color: red;
    font-size: 15px;
}
.contact-form .text-danger {
    margin-top: 15px;
    margin-bottom: 0;
}
/*================================================
Footer Area CSS
=================================================*/

.footer-section {
    background: var(--primary-color);
    padding: 50px 0;
    text-align: center;
}

#toTop {
    position: fixed;
    bottom: 35px;
    right: 0;
    cursor: pointer;
    display: none;
    z-index: 10;
}
.back-to-top-btn i {
    background: var(--accent-color);
    color: #ffffff;
    height: 40px;
    width: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 25px;
    border-radius: 50%;
    transition: 0.5s all ease;
    margin-right: 20px;
}
.footer-logo img {
    width: 10%;
}

/*** 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;
}

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

#generalForm .modal-content {
    background: var(--primary-color);
    border-radius: 0;
}
.general-popup-form input[type="text"],
.general-popup-form input[type="email"],
.general-popup-form input[type="tel"],
.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;
    width: 100%;
    margin-bottom: 10px;
}
.general-popup-form select option {
    color: var(--font-color);
}
.general-popup-form input[type="submit"] {
    border: none;
    box-shadow: none;
    width: 100%;
}
.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);
}
.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;
}
.popup-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#generalForm .popup-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;
}
.general-popup-form input.light-style-btn:hover{
    background: var(--accent-color);
}



.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;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
    margin-bottom: 10px;
}

/**======== ARABIC code =======***/
html[dir="rtl"] .hero-banner-content {
    margin-right: 100px;
    margin-left: 0px;
}

html[dir="rtl"] .payment-plans-content.table-responsive {
    padding-right: 100px;
    padding-left: 0;
}
html[dir="rtl"] .pricing-content-wrapper .inner {
    margin-left: -300px;
    margin-right: 0;
}
[dir='rtl'] button.btn-close {
    margin-right: auto;
    margin-left: unset !important;
}
[dir='rtl'] #toTop {
    left: 0;
    right: unset;
}
[dir='rtl'] .back-to-top-btn i {
    margin-left: 20px;
    margin-right: 0;
}


/**======== 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) {

        button.navbar-toggler {
        margin: 0 20px;
        color: #fff !important;
        border-color: #fff !important;
    }
    .main-navbar .navbar.navbar-light .navbar-nav {
        margin: auto;
        line-height: 30px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    nav.navbar.navbar-expand-lg.navbar-light {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        margin-top: 0px;
        padding: 20px;
    }
.main-navbar .navbar.navbar-light .navbar-nav .nav-item a {
        color: #ffffff;
        font-size: 20px;
        line-height: 40px;
    }
.main-navbar .navbar.navbar-light {
    padding: 20px 0;
}
.main-navbar .navbar.navbar-light .logo {
    padding: 0px 30px;
}
.hero-banner-content {
    margin-left: 0;
}
.buildings-left-img {
    height: 40vh;
}
.playground-area .section-top-title h2 {
    padding: 35px 0;
}

    .amenities-list-outer .left-img {
        height: 30vh;
        margin-bottom: 40px;
    }
    .row.amenities-list-outer .col-4 {
        padding: 5px;
    }
    .amenities {
    margin-bottom: 0;
}
.cta-img-view img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.cta-content p {
    width: 80%;
    line-height: normal;
}
    .floor-plans-tabs {
        display: inline-flex;
        gap: 20px;
    }
.floor-plans-tabs .nav-item {
    margin-bottom: 0;
}
.pb-100 {
    padding-bottom: 70px;
}
.pt-100 {
    padding-top: 70px;
}
.payment-plans-content.table-responsive {
    padding-left: 0;
}
.ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.pricing-content-wrapper {
    margin-top: 0;
}
.pricing-content-wrapper .inner {
    margin-right: 0;
}
.location-section .location-text {
    padding: 50px 20px 0 20px;
}
.location-section .location-text h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: normal;
}
.location-section .location-text p {
    color: var(--white-color);
    font-size: 18px;
    line-height: normal;
    margin-bottom: 50px;
}
.default-style-btn, .light-style-btn {
    padding: 12px 27px;
    font-size: 15px;
}
section.location-section {
    margin: 0px;
}
.call-to-action-inner {
    padding: 60px 25px;
}
.faq-content .image {
    height: 400px;
}
.faq-accordion {
    padding-left: 0;
}
    .mob-order-2{
      order: 2;
    }
    .mob-order-1{
      order: 1;
    }

html[dir="rtl"] .hero-banner-content {
    margin-right: 0px;
    margin-left: 0px;
}
html[dir="rtl"] .payment-plans-content.table-responsive {
    padding-right: 0px;
    padding-left: 0;
}



}

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

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

        button.navbar-toggler {
        margin: 0 20px;
        color: #fff !important;
        border-color: #fff !important;
    }
    .main-navbar .navbar.navbar-light .navbar-nav {
        margin: auto;
        line-height: 30px;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    nav.navbar.navbar-expand-lg.navbar-light {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        margin-top: 0px;
        padding: 20px;
    }
.main-navbar .navbar.navbar-light .navbar-nav .nav-item a {
        color: #ffffff;
        font-size: 20px;
        line-height: 40px;
    }
.main-navbar .navbar.navbar-light {
    padding: 20px 0;
}
.main-navbar .navbar.navbar-light .logo {
    padding: 0px 30px;
}
.hero-banner-content {
    margin-left: 0;
}
.buildings-left-img {
    height: 40vh;
}
.playground-area .section-top-title h2 {
    padding: 35px 0;
}

    .amenities-list-outer .left-img {
        height: 30vh;
        margin-bottom: 40px;
    }
    .row.amenities-list-outer .col-4 {
        padding: 5px;
    }
    .amenities {
    margin-bottom: 0;
}
.cta-img-view img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.cta-content p {
    width: 80%;
    line-height: normal;
}
    .floor-plans-tabs {
        display: inline-flex;
        gap: 20px;
    }
.floor-plans-tabs .nav-item {
    margin-bottom: 0;
}
.pb-100 {
    padding-bottom: 70px;
}
.pt-100 {
    padding-top: 70px;
}
.payment-plans-content.table-responsive {
    padding-left: 0;
}
.ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.pricing-content-wrapper {
    margin-top: 0;
}
.pricing-content-wrapper .inner {
    margin-right: 0;
}
.location-section .location-text {
    padding: 50px 20px 0 20px;
}
.location-section .location-text h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: normal;
}
.location-section .location-text p {
    color: var(--white-color);
    font-size: 18px;
    line-height: normal;
    margin-bottom: 50px;
}
.default-style-btn, .light-style-btn {
    padding: 12px 27px;
    font-size: 15px;
}
section.location-section {
    margin: 0px;
}
.call-to-action-inner {
    padding: 60px 25px;
}
.faq-content .image {
    height: 400px;
}
.faq-accordion {
    padding-left: 0;
}
    .mob-order-2{
      order: 2;
    }
    .mob-order-1{
      order: 1;
    }

   html[dir="rtl"] .hero-banner-content {
    margin-right: 0px;
    margin-left: 0px;
}
html[dir="rtl"] .payment-plans-content.table-responsive {
    padding-right: 0px;
    padding-left: 0;
}
 

}

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

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

      .ptb-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .hero-banner-content {
        margin-left: 0;
    }
    .hero-banner-content h1 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .hero-banner-content p {
        color: #fff;
        font-size: 18px;
        line-height: 25px;
    }
    .light-style-btn,
    .default-style-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    span.desktop-hide {
        display: inline-block;
    }
    .hero-banner-area {
        padding-top: 165px;
        padding-bottom: 100px;
    }
    nav.navbar.navbar-expand-lg.navbar-light {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        margin-top: 0px;
        padding: 20px;
    }
    .main-navbar .navbar.navbar-light .navbar-nav {
        margin: auto;
        line-height: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .main-navbar .navbar.navbar-light .navbar-nav ul li {
        margin: 0;
    }
    .main-navbar .navbar.navbar-light {
    padding: 20px 0;
}
.main-navbar .navbar.navbar-light .logo {
    padding: 0px 30px;
}
    .main-navbar .navbar .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    .logo {
        padding: 0 20px;
    }
    button.navbar-toggler {
        margin: 0 20px;
        color: #fff !important;
        border-color: #fff !important;
    }
    .main-navbar .navbar.navbar-light .navbar-nav .nav-item a {
        color: #ffffff;
        font-size: 20px;
        line-height: 40px;
    }
    .navbar-button {
        margin: 20px;
    }
    .designed-for-about-right h5 {
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 20px;
    }
    .designed-for-about-right .list li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .call-to-action-inner .content h2 {
        font-size: 24px;
    }
    .call-to-action-inner .content p {
        font-size: 15px;
        font-weight: normal;
        margin-bottom: 20px;
        line-height: normal;
    }
    .call-to-action-inner {
        padding: 40px 25px;
    }
    .call-to-action-inner .shape2 {
        display: none;
    }
    h1.buildings-title {
        color: #fff;
        font-size: 24px;
    }
    .buildings-left-img {
       height: 35vh;
    }
    .buildings-right-content ul {
        grid-template-columns: 1fr;
    }
    .buildings-right-content li {
        font-size: 15px;
        padding: 12px 12px 12px 12px;
    }
    .playground-area .section-top-title h2 {
        padding: 0 0 50px 0;
        font-size: 28px;
    }
    .playground-card .image .tag {
        left: 0;
        margin: 20px;
    }
    .amenities-list .section-title {
        margin-bottom: 25px;
        font-size: 30px;
    }
    .cta-content p {
        font-size: 15px;
        width: 90%;
        line-height: normal;
    }
    .cta-content h1 {
        color: var(--white-color);
        font-size: 30px;
        font-weight: bold;
    }

    .sp-about-area {
        overflow: hidden;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sp-about-content .inner .boxes {
        flex-direction: column;
        margin-left: 0;
    }
    .sp-about-content {
        padding-left: 0;
        padding-top: 0;
    }
    .sp-about-image {
        height: 300px;
    }
    .key-facts-list-2 ul.list {
        gap: 10px;
        margin-top: 15px;
        padding: 0;
        flex-direction: column;
    }
    .sp-about-content .list p {
        margin: 0;
        font-size: 16px;
    }
    .sp-about-content .list p span {
        font-size: 26px;
    }
    .cta-img-view img {
        width: 100%;
        height: 360px;
        object-fit: cover;
    }
    .sp-about-content h1.section-title {
        padding-bottom: 20px;
        font-size: 28px;
    }
    .po-content-area .section-title h1 {
        color: var(--secondary-color);
        font-size: 26px;
    }
    .po-content-area .content h1 {
        color: var(--secondary-color);
        font-size: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .po-content-area .content p {
        color: var(--white-color);
        font-size: 16px;
    }
    .po-content-area .right-content {
        padding-left: 0;
    }
    .quick-info .specs-list li {
        gap: 0px;
        flex-direction: column;
    }
    .quick-info .specs-list li {
        margin-bottom: 20px;
    }
    .floor-plans-tabs {
        display: inline-flex;
        gap: 20px;
    }
    .floor-plan-area .section-title h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .floor-plans-tabs .nav-item {
        margin-bottom: 0px;
    }
.floor-plans-tabs .nav-item .nav-link {
       font-size: 16px;
    }
    .floor-plan-content .content .number {
    font-size: 30px;
}
    .floor-plan-area {
        overflow: hidden;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .floor-plan-content .content p {
        font-size: 14px;
    }
    .payment-plans-content.table-responsive {
        padding-left: 0;
    }
    .payment-plans-content.table-responsive th,
    .payment-plans-content.table-responsive td {
        font-size: 12px;
    }
    .payment-btn {
        text-align: center;
    }
    .pricing-content-wrapper {
        margin-top: 0;
    }
    .pricing-content-wrapper .inner {
        padding: 20px;
        margin-right: 0;
    }
    .pricing-content-wrapper .inner .pricing-content.with-border {
        border-left: 0;
        padding-left: 0px;
    }
.pricing-content-wrapper .inner .pricing-content h4 {
    font-weight: bold;
    margin-bottom: 0;
}
    .location-section .location-text {
        padding: 20px;
    }
    .location-section .location-text h1 {
        font-size: 30px;
        line-height: normal;
    }
    .location-section .location-text p {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 20px;
    }
    .playground-card .image {
        border-radius: 10px;
    }
    .playground-card .image a img {
        border-radius: 10px;
    }
    .playground-area::before {
        height: 300px;
    }

    .floor-plan-content .content {
        padding-left: 0;
    }
    .pt-100 {
        padding-top: 50px;
    }
    .payment-plans-left h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .payment-plan-area {
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 50px;
    }

    .payment-pricing-content .inner {
        background: var(--primary-color);
        padding: 20px;
        margin-right: 0;
        z-index: 1;
    }
    .payment-pricing-content {
        margin-top: 0;
    }
    .payment-pricing-content .inner .pricing-content.with-border,
    .pricing-content {
        border-bottom: 1px dashed var(--white-color);
        padding-left: 0px;
        border-left: 0;
        padding-bottom: 20px;
    }
    section.location-section {
        margin-bottom: 20px;
    }
    .main-section-title h2 {
        font-size: 30px;
        font-weight: bold;
    }
    .services-area {
        padding: 0 20px;
    }

    .services-items .item .left .icon {
        width: 88px;
        height: 100px;
    }
    .mmt-20 {
        margin-top: 20px;
    }

    .amenities-list {
        padding: 20px;
    }
    .amenities-img-area img {
        width: 50%;
    }
    .row.amenities-list-outer .col-4 {
        padding: 5px;
    }
    .amenities {
        padding: 10px;
        margin-bottom: 10px;
        min-height: 185px;
    }
    .amenities-heading {
        font-size: 12px;
    }
    .amenities-banner {
        height: 40vh;
    }
    .location-text {
        padding: 50px 20px;
    }
    .faq-accordion {
        padding-left: 20px;
        padding-right: 20px;
    }
    .contact-content h2 {
        font-size: 20px;
    }
    .contact-form h5 {
        font-size: 15px;
        font-weight: normal;
    }
    .footer-logo img {
        width: 25%;
    }
    .faq-content h2 {
        font-size: 30px;
    }
    .faq-content .image {
        margin-top: 20px;
        margin-bottom: 20px;
        height: 300px;
    }
    section#contact {
        padding: 20px;
    }
    .mob-order-2{
      order: 2;
    }
    .mob-order-1{
      order: 1;
    }

    .general-popup-form-section.section {
    padding: 20px 10px;
}
.popup-message-heading h1 {
    font-weight: bold;
    font-size: 20px;
}
.popup-message-heading p {
    font-size: 14px;
}
.popup-message-heading {
    margin-bottom: 10px;
}
.general-popup-form > .row > .col-md-12{
    padding: 0;
}
.general-popup-form input[type="text"], .general-popup-form input[type="email"], .general-popup-form input[type="tel"], .general-popup-form select, .general-popup-form textarea {
    padding: 5px 10px;
}
.contact-form .form-group {
    margin-bottom: 5px;
}
.contact-form .form-group .form-control {
    height: 40px;
    padding: 15px 20px;
}
.footer-section {
    background: var(--primary-color);
    padding: 20px 0;
    text-align: center;
}
html[dir="rtl"] .hero-banner-content {
    margin-right: 0px;
    margin-left: 0px;
}
html[dir="rtl"] .payment-plans-content.table-responsive {
    padding-right: 0px;
    padding-left: 0;
}




}

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

@media (min-width: 320px) and (max-width: 480px) {
    .ptb-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .hero-banner-content {
        margin-left: 0;
    }
    .hero-banner-content h1 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }
    .hero-banner-content p {
        color: #fff;
        font-size: 18px;
        line-height: 25px;
    }
    .light-style-btn,
    .default-style-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    span.desktop-hide {
        display: inline-block;
    }
    .hero-banner-area {
        padding-top: 165px;
        padding-bottom: 100px;
    }
   nav.navbar.navbar-expand-lg.navbar-light {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        margin-top: 0px;
        padding: 20px;
    }
    .main-navbar .navbar.navbar-light .navbar-nav {
        margin: auto;
        line-height: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .main-navbar .navbar.navbar-light .navbar-nav ul li {
        margin: 0;
    }
    .main-navbar .navbar.navbar-light {
    padding: 20px 0;
}
.main-navbar .navbar.navbar-light .logo {
    padding: 0px 30px;
}
    .main-navbar .navbar .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }
    .logo {
        padding: 0 20px;
    }
    button.navbar-toggler {
        margin: 0 20px;
        color: #fff !important;
        border-color: #fff !important;
    }
    .main-navbar .navbar.navbar-light .navbar-nav .nav-item a {
        color: #ffffff;
        font-size: 20px;
        line-height: 40px;
    }
    .navbar-button {
        margin: 20px;
    }
    .designed-for-about-right h5 {
        font-weight: bold;
        font-size: 24px;
        margin-bottom: 20px;
    }
    .designed-for-about-right .list li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .call-to-action-inner .content h2 {
        font-size: 24px;
    }
    .call-to-action-inner .content p {
        font-size: 15px;
        font-weight: normal;
        margin-bottom: 20px;
        line-height: normal;
    }
    .call-to-action-inner {
        padding: 40px 25px;
    }
    .call-to-action-inner .shape2 {
        display: none;
    }
    h1.buildings-title {
        color: #fff;
        font-size: 24px;
    }
    .buildings-left-img {
       height: 35vh;
    }
    .buildings-right-content ul {
        grid-template-columns: 1fr;
    }
    .buildings-right-content li {
        font-size: 15px;
        padding: 12px 12px 12px 12px;
    }
    .playground-area .section-top-title h2 {
        padding: 0 0 50px 0;
        font-size: 28px;
    }
    .playground-card .image .tag {
        left: 0;
        margin: 20px;
    }
    .amenities-list .section-title {
        margin-bottom: 25px;
        font-size: 30px;
    }
    .cta-content p {
        font-size: 15px;
        width: 90%;
        line-height: normal;
    }
    .cta-content h1 {
        color: var(--white-color);
        font-size: 30px;
        font-weight: bold;
    }

    .sp-about-area {
        overflow: hidden;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .sp-about-content .inner .boxes {
        flex-direction: column;
        margin-left: 0;
    }
    .sp-about-content {
        padding-left: 0;
        padding-top: 0;
    }
    .sp-about-image {
        height: 300px;
    }
    .key-facts-list-2 ul.list {
        gap: 10px;
        margin-top: 15px;
        padding: 0;
        flex-direction: column;
    }
    .sp-about-content .list p {
        margin: 0;
        font-size: 16px;
    }
    .sp-about-content .list p span {
        font-size: 26px;
    }
    .cta-img-view img {
        width: 100%;
        height: 360px;
        object-fit: cover;
    }
    .sp-about-content h1.section-title {
        padding-bottom: 20px;
        font-size: 28px;
    }
    .po-content-area .section-title h1 {
        color: var(--secondary-color);
        font-size: 26px;
    }
    .po-content-area .content h1 {
        color: var(--secondary-color);
        font-size: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .po-content-area .content p {
        color: var(--white-color);
        font-size: 16px;
    }
    .po-content-area .right-content {
        padding-left: 0;
    }
    .quick-info .specs-list li {
        gap: 0px;
        flex-direction: column;
    }
    .quick-info .specs-list li {
        margin-bottom: 20px;
    }
    .floor-plans-tabs {
        display: inline-flex;
        gap: 20px;
    }
    .floor-plan-area .section-title h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .floor-plans-tabs .nav-item {
        margin-bottom: 0px;
    }
.floor-plans-tabs .nav-item .nav-link {
       font-size: 16px;
    }
    .floor-plan-content .content .number {
    font-size: 30px;
}
    .floor-plan-area {
        overflow: hidden;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .floor-plan-content .content p {
        font-size: 14px;
    }
    .payment-plans-content.table-responsive {
        padding-left: 0;
    }
    .payment-plans-content.table-responsive th,
    .payment-plans-content.table-responsive td {
        font-size: 12px;
    }
    .payment-btn {
        text-align: center;
    }
    .pricing-content-wrapper {
        margin-top: 0;
    }
    .pricing-content-wrapper .inner {
        padding: 20px;
        margin-right: 0;
    }
    .pricing-content-wrapper .inner .pricing-content.with-border {
        border-left: 0;
        padding-left: 0px;
    }
.pricing-content-wrapper .inner .pricing-content h4 {
    font-weight: bold;
    margin-bottom: 0;
}
    .location-section .location-text {
        padding: 20px;
    }
    .location-section .location-text h1 {
        font-size: 30px;
        line-height: normal;
    }
    .location-section .location-text p {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 20px;
    }
    .playground-card .image {
        border-radius: 10px;
    }
    .playground-card .image a img {
        border-radius: 10px;
    }
    .playground-area::before {
        height: 300px;
    }

    .floor-plan-content .content {
        padding-left: 0;
    }
    .pt-100 {
        padding-top: 50px;
    }
    .payment-plans-left h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .payment-plan-area {
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 50px;
    }

    .payment-pricing-content .inner {
        background: var(--primary-color);
        padding: 20px;
        margin-right: 0;
        z-index: 1;
    }
    .payment-pricing-content {
        margin-top: 0;
    }
    .payment-pricing-content .inner .pricing-content.with-border,
    .pricing-content {
        border-bottom: 1px dashed var(--white-color);
        padding-left: 0px;
        border-left: 0;
        padding-bottom: 20px;
    }
    section.location-section {
        margin-bottom: 20px;
    }
    .main-section-title h2 {
        font-size: 30px;
        font-weight: bold;
    }
    .services-area {
        padding: 0 20px;
    }

    .services-items .item .left .icon {
        width: 88px;
        height: 100px;
    }
    .mmt-20 {
        margin-top: 20px;
    }

    .amenities-list {
        padding: 20px;
    }
    .amenities-img-area img {
        width: 50%;
    }
    .row.amenities-list-outer .col-4 {
        padding: 5px;
    }
    .amenities {
        padding: 10px;
        margin-bottom: 10px;
        min-height: 185px;
    }
    .amenities-heading {
        font-size: 12px;
    }
    .amenities-banner {
        height: 40vh;
    }
    .location-text {
        padding: 50px 20px;
    }
    .faq-accordion {
        padding-left: 20px;
        padding-right: 20px;
    }
    .contact-content h2 {
        font-size: 20px;
    }
    .contact-form h5 {
        font-size: 15px;
        font-weight: normal;
    }
    .footer-logo img {
        width: 25%;
    }
    .faq-content h2 {
        font-size: 30px;
    }
    .faq-content .image {
        margin-top: 20px;
        margin-bottom: 20px;
        height: 300px;
    }
    section#contact {
        padding: 20px;
    }
    .mob-order-2{
      order: 2;
    }
    .mob-order-1{
      order: 1;
    }

    .general-popup-form-section.section {
    padding: 20px 10px;
}
.popup-message-heading h1 {
    font-weight: bold;
    font-size: 20px;
}
.popup-message-heading p {
    font-size: 14px;
}
.popup-message-heading {
    margin-bottom: 10px;
}
.general-popup-form > .row > .col-md-12{
    padding: 0;
}
.general-popup-form input[type="text"], .general-popup-form input[type="email"], .general-popup-form input[type="tel"], .general-popup-form select, .general-popup-form textarea {
    padding: 5px 10px;
}
.contact-form .form-group {
    margin-bottom: 5px;
}
.contact-form .form-group .form-control {
    height: 40px;
    padding: 15px 20px;
}
.footer-section {
    background: var(--primary-color);
    padding: 20px 0;
    text-align: center;
}


html[dir="rtl"] .hero-banner-content {
    margin-right: 0px;
    margin-left: 0px;
}
html[dir="rtl"] .payment-plans-content.table-responsive {
    padding-right: 0px;
    padding-left: 0;
}


}
