﻿@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200&display=swap");
:root {
    /* Not my favorite that line-height has to be united, but needed */
    --lh: 2.5rem;
    /* font-size style */
    --fontsize14px: 0.875rem;
    --fontsize15px: 0.938rem;
    --fontsize16px: 1rem;
    --fontsize17px: 1.063rem;
    --fontsize18px: 1.125rem;
    --fontsize20px: 1.25rem;
    --fontsize22px: 1.375rem;
    --fontsize24px: 1.5rem;
    --fontsize25px: 1.563rem;
    --fontsize26px: 1.625rem;
    --fontsize27px: 1.688rem;
    --fontsize28px: 1.75rem;
    --fontsize30px: 1.875rem;
    --fontsize32px: 2rem;
    --fontsize36px: 2.25rem;
    --fontsize38px: 2.375rem;
    --fontsize40px: 2.5rem;
    --fontsize45px: 2.813rem;
    --fontsize48px: 3rem;
    --fontsize50px: 3.125rem;
    --fontsize60px: 3.75rem;
    --fontsize64px: 4rem;
    --fontsize96px: 6rem;
    --fontsize128px: 8rem;
}

@media screen and (max-width: 991px) {
    :root {
        /* font-size style */
        --fontsize14px: 0.75rem;
        --fontsize16px: 0.875rem;
        --fontsize18px: 1rem;
        --fontsize20px: 1.125rem;
        --fontsize22px: 1.25rem;
        --fontsize24px: 1.375rem;
        --fontsize26px: 1.5rem;
        --fontsize28px: 1.625rem;
        --fontsize30px: 1.75rem;
        --fontsize32px: 1.875rem;
        --fontsize36px: 2rem;
        --fontsize38px: 2.25rem;
        --fontsize40px: 2.375rem;
        --fontsize45px: 2.5rem;
        --fontsize48px: 2.813rem;
        --fontsize50px: 2.913rem;
        --fontsize60px: 3rem;
        --fontsize64px: 3.125rem;
        --fontsize96px: 5rem;
    }
}
@media screen and (max-width: 1640px) {
    :root {
        --fontsize14px: 0.688rem;
    }
}
@media screen and (min-width: 1640px) {
    :root {
        /* font-size style */
        --fontsize14px: 14px;
        --fontsize15px: 15px;
        --fontsize16px: 16px;
        --fontsize17px: 17px;
        --fontsize18px: 18px;
        --fontsize20px: 20px;
        --fontsize22px: 22px;
        --fontsize24px: 24px;
        --fontsize25px: 25px;
        --fontsize26px: 26px;
        --fontsize27px: 27px;
        --fontsize28px: 28px;
        --fontsize30px: 30px;
        --fontsize32px: 32px;
        --fontsize36px: 36px;
        --fontsize38px: 38px;
        --fontsize40px: 40px;
        --fontsize45px: 45px;
        --fontsize48px: 48px;
        --fontsize50px: 50px;
        --fontsize60px: 60px;
        --fontsize64px: 64px;
        --fontsize96px: 96px;
    }
}
@keyframes headerfade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

::-webkit-scrollbar {
    width: 0.5em;
    height: 0.5em;
}

::-webkit-scrollbar-thumb {
    background: slategray;
}

::-webkit-scrollbar-track {
    background: #b8c0c8;
}
body {
    margin: 0px !important;
    scrollbar-face-color: slategray;
    scrollbar-track-color: #b8c0c8;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
    html,
    body {
        font-size: var(--fontsize16px);
        font-family: "Work Sans", sans-serif !important;
        font-weight: 400;
    }
}
* {
    padding: 0px;
    margin: 0px;
    font-family: "Work Sans", sans-serif !important;
    box-sizing: border-box;
    line-height: 100%;
    font-weight: normal;
    /* transition: all ease 0.5s; */
}
body i {
    font-family: "Font Awesome 5 Pro" !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0px;
    margin: 0px;
    font-family: "Work Sans", sans-serif !important;
}

body {
    background: #fff !important;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: all ease 0.5s;
}
a.btn {
    display: inline-block;
    background: #000;
    border-radius: 4px;
    font-weight: 400;
    font-size: var(--fontsize16px);
    line-height: 16px;
    text-transform: capitalize;
    color: #fff;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    text-decoration: none;
    padding: 15px 30px;
}
a.btn.green {
    background: #68d7ac;
}
a.btn.devbtn {
    background: #9900ff;
    color: #fff !important;
}

input[type="text"],
input[type="password"],
textarea,
select,
input[type="email"],
input[type="tel"],
input[type="file"] {
    border-radius: 5px;
    line-height: 100%;
    border: 1px solid #868e96;
    background: #fff;
}

.btn {
    border-radius: 60px !important;
    background: #4479ff;
    /* padding: 15px 40px !important; */
    padding: 7px 30px !important;
    font-size: var(--fontsize15px);
    color: #fff;
    border: 0px;
}
.btn.green {
    background: #68d7ac;
}
.btn.devbtn {
    background: #9900ff;
    color: #fff !important;
}

/*header*/
body.proximanew-style .proxima-header {
    position: fixed !important;
    top: 0px !important;
    right: 0px !important;
    left: 0px !important;
    z-index: 9999 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    height: 81px !important;
    padding-top: 0;
}
header .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    height: 81px;
    padding: 20px 0px;
    padding-left: 210px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .wrapper .logo {
    width: 130px;
    height: 58px;
    display: block;
    background: url(../images/proximalogo.svg) no-repeat 0% 50%;
    background-size: 100% auto;
    position: absolute;
    left: 0px;
    top: calc(50% - 29px);
}

header .wrapper nav ul {
    margin: 0px;
    padding: 0px 0px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
header .wrapper nav ul li {
    list-style: none;
    padding: 0px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
header .wrapper nav ul li:nth-last-child(1) {
    padding-right: 0px;
    border: 0px;
}
header .wrapper nav ul li > a {
    text-decoration: none;
    font-size: var(--fontsize16px);
    font-weight: 400;
    color: #fff;
    display: block;
}
header .wrapper span.toggler {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: url(../images/toggler.png) no-repeat 50% 50%;
    background-size: 100% auto;
    display: block !important;
}
header .wrapper .rightsection {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header .wrapper .rightsection li {
    list-style: none;
    padding: 0px 15px;
}
header .wrapper .rightsection li:nth-last-child(1) {
    padding-right: 0px;
}
header .wrapper .rightsection li.language {
    font-size: var(--fontsize16px);
    font-weight: 400;
    line-height: normal;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header .wrapper .rightsection li.language span {
    width: 28px;
    height: 20px;
    display: block;
    margin: 0px 10px 0px 0px;
}
header .wrapper .rightsection li.language span img {
    width: 100%;
}
header .wrapper .rightsection li button {
    padding: 8px 40px;
    border-radius: 61px;
    background: #fff;
    color: #000;
    font-size: var(--fontsize20px);
    font-weight: 400;
    line-height: 100%;
    border: 0px;
}
header .wrapper .rightsection li button.signin {
    background: #4479ff;
    color: #fff;
}
header.sticky {
    background: rgba(0, 0, 0, 0.5);
}

main {
    height: 100%;
}
main section.prx_sectionHero {
    /* height: 100%; */
    height: 100vh;
    max-height: 850px;
    position: relative;
    z-index: 99;
}
main section.prx_sectionHero .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: url(../images/heroimage.png) no-repeat 50% 0%;
    background-size: cover;
    position: relative;
}

main section.prx_sectionHero .wrapper:after {
    content: "";
    position: absolute;
    top: 100px;
    bottom: 0px;
    right: 0px;
    display: block;
    height: 100%;
    background: url(../images/heroround.png) no-repeat 100% 100%;
    background-size: calc(100% - 80px) auto;
    animation: rotate-image 5s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite
        alternate;
    width: 50%;
}
main section.prx_sectionHero .wrapper h1 {
    margin: 0px;
    background: url(../images/proximalogo.svg) no-repeat 50px 50%;
    background-size: auto 150px;
    font-size: var(--fontsize36px);
    font-weight: 400;
    line-height: normal;
    display: inline-block;
    height: auto;
    color: #fff;
    padding: 152px 0px 0px 181px;
    width: 60%;
}
main section.prx_sectionHero .wrapper h1 span {
    font-weight: 700;
}
main section.prx_sectionTwo {
    position: relative;
    z-index: 98;
    padding: 0px 0px 0px 0px;
    top: -50px;
}
main section.prx_sectionTwo .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    padding: 250px 0px 0px 0px;
    position: relative;
    min-height: 500px;
}
main section.prx_sectionTwo .wrapper:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background: url(../images/sectionOnebg.png) no-repeat 0% 0%;
    background-size: calc(100% - 50px) auto;
    width: 45%;
    height: 1200px;
    display: block;
    z-index: 999;
}
main section.prx_sectionTwo .wrapper .sectionbox {
    width: 38%;
    margin: 0px 0px 0px auto;
}
main section.prx_sectionTwo .wrapper .sectionbox h2 {
    font-size: var(--fontsize128px);
    font-weight: 700;
    line-height: 101.058%;
    color: #000;
    margin: 0px 0px 40px 0px;
}
main section.prx_sectionTwo .wrapper .sectionbox h2 span {
    font-size: var(--fontsize48px);
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    display: block;
    color: #4479ff;
    max-width: 100%;
}
main section.prx_sectionTwo .wrapper .sectionbox h3 {
    font-size: var(--fontsize36px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #000;
    margin: 0px 0px 20px 0px;
    max-width: 70%;
}
main section.prx_sectionTwo .wrapper .sectionbox p {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    margin: 0px 0px 20px 0px;
    color: #000;
}
main section.prx_sectionThree {
    background: #f9f9f9;
    padding: 100px 0px;
    position: relative;
}
main section.prx_sectionThree .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
main section.prx_sectionThree .wrapper h2 {
    font-size: var(--fontsize64px);
    font-weight: 400;
    line-height: 112%;
    margin: 0px 0px 10px 0px;
}
main section.prx_sectionThree .wrapper h2 span {
    font-weight: 700;
    color: #4479ff;
}
main section.prx_sectionThree .wrapper p {
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #000;
    margin: 0px;
}
main section.prx_sectionThree .wrapper ul {
    margin: 0px;
    padding: 40px 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}
main section.prx_sectionThree .wrapper ul li {
    list-style: none;
    position: relative;
    padding: 0px 0px 70px 0px;
}
main section.prx_sectionThree .wrapper ul li h3 {
    font-size: var(--fontsize36px);
    font-weight: 700;
    line-height: 112%;
    margin: 0px 0px 10px 0px;
    color: #00181f;
}
main section.prx_sectionThree .wrapper ul li h3 span {
    font-size: var(--fontsize24px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #00181f;
    display: block;
}
main section.prx_sectionThree .wrapper ul li span.sectionPic {
    display: block;
    margin: 20px 0px;
    overflow: hidden;
}
main section.prx_sectionThree .wrapper ul li span.sectionPic img {
    width: 100%;
}
main section.prx_sectionThree .wrapper ul li p {
    font-size: var(--fontsize20px);
    line-height: 23px;
    font-style: normal;
    font-weight: 400;
    /* line-height: normal; */
    color: #00181f;
}
main section.prx_sectionThree .wrapper ul li p.btns {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
}
main section.prx_sectionThree .wrapper ul li p.btns a {
    display: inline-block;
    border-radius: 60px;
    padding: 13px 40px;
    font-size: var(--fontsize16px);
    font-weight: 400;
}
main section.prx_sectionThree .wrapper ul li p.btns a.developer {
    background: #9900ff;
    color: #fff;
}
main section.prx_sectionThree .wrapper ul li p.btns a.buyers {
    background: #f6e586;
}
main section.prx_sectionThree .wrapper ul li p.btns a.partners {
    background: #ea7b10;
}
main section.prx_sectionThree .wrapper ul li p.btns a.btn {
    display: inline-block;
    border-radius: 60px;
    padding: 15px 40px !important;
    font-weight: 400;
}
main section.prx_sectionThree.devlpment {
    background: #fff;
}
main section.prx_sectionThree.devlpment .wrapper h2 {
    font-size: var(--fontsize64px);
    font-weight: 700;
    line-height: normal;
    margin: 0px 0px 20px 0px;
}
main section.prx_sectionThree.devlpment .wrapper ul {
    grid-template-columns: repeat(3, 1fr);
}
main section.prx_sectionFour {
    padding: 100px 0px 0px 0px;
}
main section.prx_sectionFour .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    padding-left: 100px;
    padding-right: 100px;
}
main section.prx_sectionFour .wrapper .findprtyhd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px;
    margin: 0px 0px 30px 0px;
}
main section.prx_sectionFour .wrapper .findprtyhd h2 {
    font-size: var(--fontsize16px);
    font-weight: 400;
    line-height: 142%;
    letter-spacing: 4.96px;
    text-transform: uppercase;
    margin: 0px;
    position: relative;
    top: -20px;
}
main section.prx_sectionFour .wrapper .findprtyhd p.search {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.25);
}
main section.prx_sectionFour .wrapper .findprtyhd p.search input[type="text"],
main section.prx_sectionFour .wrapper .findprtyhd p.search select {
    background: #fff;
    padding: 20px !important;
    border: 0px;
    border-radius: 0px;
    margin: 0px !important;
    font-size: var(--fontsize14px);
    line-height: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
}
main
    section.prx_sectionFour
    .wrapper
    .findprtyhd
    p.search
    input[type="text"]:placeholder,
main section.prx_sectionFour .wrapper .findprtyhd p.search select:placeholder {
    font-size: var(--fontsize14px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #504b56;
}
main section.prx_sectionFour .wrapper .findprtyhd p.search button {
    width: 62px;
    height: 62px;
    background: #4479ff;
    border: 0px;
}
main section.prx_sectionFour .wrapper .owl-carousel {
    padding: 0px 0px 60px 0px;
    position: relative;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item {
    border: 1px solid rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 0px 0px 30px 0px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    > span.propertypic {
    display: block;
    max-height: 400px;
    overflow: hidden;
    margin: 0px 0px 20px 0px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    > span.propertypic
    img {
    width: 100%;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    > span.location {
    position: absolute;
    top: 300px;
    right: 30px;
    background: #fff url(../images/map.svg) no-repeat calc(100% - 30px) 50%;
    background-size: 24px auto;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    padding: 13px 65px 13px 40px;
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #4479ff;
    z-index: 99;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    h3 {
    font-size: var(--fontsize32px);
    font-weight: 400;
    line-height: normal;
    position: relative;
    margin: 0px 20px 15px 20px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    h3
    span {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    h4 {
    width: 60%;
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px 20px 15px 20px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p.specification {
    margin: 0px 20px 20px 20px;
    padding: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p.specification
    span {
    font-size: var(--fontsize16px);
    font-weight: 700;
    color: #000;
    padding: 5px 0px 5px 45px;
    min-height: 25px;
    margin: 0px 25px 0px 0px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p.specification
    span.bedroom {
    background: url(../images/bed.svg) no-repeat 0% 50%;
    background-size: auto 25px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p.specification
    span.washtub {
    background: url(../images/tub.svg) no-repeat 0% 50%;
    background-size: auto 25px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p.specification
    span.vehicle {
    background: url(../images/vehicle.svg) no-repeat 0% 50%;
    background-size: 40px auto;
    padding: 5px 0px 5px 55px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p.specification
    span.area {
    background: url(../images/area.svg) no-repeat 0% 50%;
    background-size: auto 25px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p.btns {
    margin: 0px 20px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p.btns
    .btn {
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    padding: 13px 40px !important;
    background: #fff;
    color: #4479ff;
    border: 1px solid #4479ff;
    font-size: var(--fontsize16px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
main section.prx_sectionFour .wrapper .owl-carousel#findaproperty .owl-dots {
    position: absolute;
    left: 0px;
    bottom: 20px;
    display: flex;
    justify-content: flex-start;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-dots
    .owl-dot {
    width: 10px;
    height: 10px;
    background: #dde0e4;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    margin: 0px 5px 0px 0px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-dots
    .owl-dot.active {
    background: #4479ff;
}
main section.prx_sectionFour .wrapper .owl-carousel#findaproperty .owl-nav {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-nav
    button {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border: 2px solid #4479ff;
    color: #4479ff;
    margin: 0px 2px;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-nav
    button.active {
    background: #4479ff;
    color: #fff;
}
main
    section.prx_sectionFour
    .wrapper
    .owl-carousel#findaproperty
    .owl-nav
    button
    span {
    font-size: var(--fontsize15px);
}
main section.prx_sectionFour.projects {
    background: #f8f8f8;
}
main section.prx_sectionFour.projects .wrapper h2 {
    font-size: var(--fontsize48px);
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    color: #000;
    margin: 0px 0px 20px 0px;
    top: inherit;
}
main section.prx_sectionFour.featured .wrapper h2 {
    font-size: var(--fontsize64px);
    font-style: normal;
    font-weight: 700;
    line-height: 112%;
    text-align: center;
    margin: 0px 0px 10px 0px;
    color: #000;
}
main section.prx_sectionFour.featured .wrapper h3 {
    font-size: var(--fontsize36px);
    font-weight: 400;
    text-align: center;
    margin: 0px 0px 40px 0px;
}
main section.prx_sectionFive {
    padding: 50px 0px;
}
main section.prx_sectionFive .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
main section.prx_sectionFive .wrapper h2 {
    font-size: var(--fontsize64px);
    font-weight: 700;
    color: #000;
    margin: 0px 0px 16px 0px;
}
main section.prx_sectionFive .wrapper p {
    font-size: var(--fontsize20px);
    line-height: 23px;
    font-weight: 400;
    color: #000;
    margin: 0px 0px 10px 0px;
}
main section.prx_sectionFive .wrapper ul.first {
    display: flex;
    margin: 0px;
    padding: 50px 0px;
    justify-content: space-between;
    align-items: flex-start;
}
main section.prx_sectionFive .wrapper ul.first > li {
    list-style: none;
}
main section.prx_sectionFive .wrapper ul.first > li:nth-child(1) {
    width: 25%;
    padding: 50px 30px 0px 0px;
}
main section.prx_sectionFive .wrapper ul.first > li:nth-child(1) > h3 {
    font-size: var(--fontsize36px);
    font-weight: 400;
    color: #4479ff;
    margin-bottom: 25px;
}
main section.prx_sectionFive .wrapper ul.first > li:nth-child(1) > h3 span {
    font-size: var(--fontsize16px);
    font-weight: 400;
    line-height: 235.3%;
    color: #000;
    display: block;
}
main section.prx_sectionFive .wrapper ul.first > li:nth-child(1) p {
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}
main section.prx_sectionFive .wrapper ul.first > li:nth-child(2) {
    width: 75%;
    margin: 0 60px !important;
}
main section.prx_sectionFive .wrapper ul.first > li:nth-child(2) img {
    width: 100%;
}
main section.prx_sectionFive .wrapper ul.first > li:nth-child(2) video {
    width: 100%;
}
main section.prx_sectionFive .wrapper > h3 {
    font-size: var(--fontsize36px);
    font-weight: 700;
    color: #00181f;
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #4479ff;
}
main section.prx_sectionFive .wrapper .owl-carousel#moretestimonials {
    padding: 20px 80px 60px 0px;
    position: relative;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item {
    position: relative;
    padding: 10px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item:hover {
    background: #4479ff;
    color: #fff !important;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item:hover
    * {
    color: #fff !important;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    span.prfpic {
    display: block;
    max-height: 230px;
    overflow: hidden;
    margin: 0px 0px 25px 0px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    span.prfpic
    img {
    width: 100%;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    h4 {
    font-size: var(--fontsize24px);
    font-weight: 500;
    margin: 0px 20px 10px 0px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    h5 {
    margin: 0px 0px;
    font-size: var(--fontsize16px);
    font-weight: 400;
    line-height: 14px;
    color: #808080;
}
main section.prx_sectionFive .wrapper .owl-carousel#moretestimonials .owl-dots {
    display: none;
}
main section.prx_sectionFive .wrapper .owl-carousel#moretestimonials .owl-nav {
    position: absolute;
    right: 10px;
    top: 70px;
    width: 50px;
    height: 100px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-nav
    button {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border: 2px solid #4479ff;
    color: #4479ff;
    margin: 0px 0px 10px 0px;
    display: block;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-nav
    button.active {
    background: #4479ff;
    color: #fff;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-nav
    button
    span {
    font-size: var(--fontsize15px);
}
main section.prx_sectionFive .wrapper .owl-carousel#testimonials {
    padding: 10px 0px 60px 0px;
    position: relative;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item {
    border: 1px solid #dddddd;
    padding: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    h3 {
    font-size: var(--fontsize32px);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin: 0px 0px 0px 0px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    h4 {
    color: rgba(0, 0, 0, 0.5);
    font-size: var(--fontsize16px);
    font-weight: 400;
    line-height: 30px;
    margin: 0px 0px 15px 0px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0px;
}
main section.prx_sectionFive .wrapper .owl-carousel#testimonials .owl-dots {
    position: absolute;
    left: 0px;
    bottom: 20px;
    display: flex;
    justify-content: flex-start;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-dots
    .owl-dot {
    width: 15px;
    height: 15px;
    background: #dde0e4;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    margin: 0px 15px 0px 0px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-dots
    .owl-dot.active {
    background: #4479ff;
    width: 45px !important;
    border-radius: 12px;
    height: 15px;
}
main section.prx_sectionFive .wrapper .owl-carousel#testimonials .owl-nav {
    position: absolute;
    right: 0px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border: 2px solid #4479ff;
    color: #4479ff;
    margin: 0px 2px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button.active {
    background: #4479ff;
    color: #fff;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button
    span {
    font-size: var(--fontsize15px);
}
section.prx_sectionSix {
    padding: 120px 0px;
}
section.prx_sectionSix.second {
    padding: 100px 0px;
}
section.prx_sectionSix .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    padding-left: 100px;
    padding-right: 100px;
}

section.prx_sectionSix .wrapper > ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
section.prx_sectionSix .wrapper > ul > li {
    list-style: none;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) {
    padding: 0px 30px 0px 0px;
    width: 80%;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) h2 {
    font-size: var(--fontsize64px);
    font-style: normal;
    font-weight: 700;
    line-height: 112%;
    margin: 0px 0px 40px 0px;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) h2 span {
    color: #4479ff;
    font-weight: 700;
    line-height: 112%;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px 0px 40px 0px;
    color: #000;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact span {
    display: block;
    width: 50%;
    font-size: var(--fontsize20px);
    font-weight: 400;
    line-height: 23px;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact span label {
    display: block;
    font-weight: 700;
    margin: 0px 0px 10px 0px;
    font-size: var(--fontsize20px);
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact span a {
    display: block;
    color: #4479ff;
    text-decoration: none;
    margin-top: 15px;
    padding: 0px 0px 1px 30px;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact span a.phone {
    background: url(../images/phone.svg) no-repeat 0% 50%;
    background-size: 20px auto;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact span a.email {
    background: url(../images/email.svg) no-repeat 0% 50%;
    background-size: 20px auto;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.social label {
    font-size: var(--fontsize20px);
    font-weight: 700;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.social span {
    display: block;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0px 0px 0px;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.social span a {
    display: block;
    width: 26px;
    height: 26px;
    margin: 0px 20px 0px 0px;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.social span a.fb {
    background: url(../images/fb.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.social span a.in {
    background: url(../images/insta.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.social span a.ln {
    background: url(../images/linkdn.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) {
    padding: 20px;
    width: 100%;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul {
    margin: 0px;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li {
    list-style: none;
    width: 100%;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li span {
    position: relative;
    display: block;
}
main section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li {
    margin: 0;
    list-style: none;
    width: 100%;
}
section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    input[type="text"],
section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    input[type="email"],
section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    input[type="tel"],
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li span select,
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li span textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.25) !important;
    border-radius: 0px !important;
    padding: 10px !important;
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #373737;
    background: #fff;
}
section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    input[type="text"]:placeholder,
section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    input[type="email"]:placeholder,
section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    input[type="tel"]:placeholder,
section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    select:placeholder,
section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    textarea:placeholder {
    font-size: var(--fontsize20px);
    font-weight: 400 !important;
    color: #373737 !important;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li span textarea {
    min-height: 300px;
    resize: none;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li.full {
    grid-column-start: 1;
    grid-column-end: 3;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li.btns {
    text-align: right;
}
section.prx_sectionSix.sellwith .wrapper > ul > li:nth-child(1) {
    padding: 0px 30px 0px 0px;
}
section.prx_sectionSix.sellwith .wrapper > ul > li:nth-child(1) ul {
    margin: 0px 0px 0px 20px;
}
section.prx_sectionSix.sellwith .wrapper > ul > li:nth-child(1) ul li {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    list-style: disc;
    margin: 0px 0px 20px 0px;
    color: #000;
}
section.prx_sectionSix.sellwith
    .wrapper
    > ul
    > li:nth-child(1)
    p.contact
    span
    a {
    color: #68d7ac;
}
section.prx_sectionSix.sellwith
    .wrapper
    > ul
    > li:nth-child(1)
    p.contact
    span
    a.phone {
    background: url(../images/phone.svg) no-repeat 0% 50%;
    background-size: 20px auto;
}
section.prx_sectionSix.sellwith
    .wrapper
    > ul
    > li:nth-child(1)
    p.contact
    span
    a.email {
    background: url(../images/email.svg) no-repeat 0% 50%;
    background-size: 20px auto;
}
section.prx_sectionSix.sellwith .wrapper > ul > li:nth-child(1) p.social label {
    font-size: var(--fontsize20px);
    font-weight: 700;
}
section.prx_sectionSix.sellwith .wrapper > ul > li:nth-child(1) p.social span {
    display: block;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0px 0px 0px;
}
section.prx_sectionSix.sellwith
    .wrapper
    > ul
    > li:nth-child(1)
    p.social
    span
    a {
    display: block;
    width: 26px;
    height: 26px;
    margin: 0px 20px 0px 0px;
}
section.prx_sectionSix.sellwith
    .wrapper
    > ul
    > li:nth-child(1)
    p.social
    span
    a.fb {
    background: url(../images/fb.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
section.prx_sectionSix.sellwith
    .wrapper
    > ul
    > li:nth-child(1)
    p.social
    span
    a.in {
    background: url(../images/insta.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
section.prx_sectionSix.sellwith
    .wrapper
    > ul
    > li:nth-child(1)
    p.social
    span
    a.ln {
    background: url(../images/linkdn.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
main section.prx_sectionSeven {
    padding: 50px 0px;
}
main section.prx_sectionSeven .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
.prx_sectionSeven .wrapper #companies.owl-carousel .owl-stage-outer .owl-stage,
main
    section.prx_sectionSeven
    .wrapper
    #companies.owl-carousel
    .owl-stage-outer
    .owl-stage {
    display: flex;
    justify-content: center;
    align-items: center;
}
.prx_sectionSeven
    .wrapper
    #companies.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item,
main
    section.prx_sectionSeven
    .wrapper
    #companies.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.prx_sectionSeven
    .wrapper
    #companies.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    img,
main
    section.prx_sectionSeven
    .wrapper
    #companies.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    img {
    max-width: calc(100% - 50px) !important;
}
.prx_sectionSeven .wrapper #companies.owl-carousel .owl-nav,
.prx_sectionSeven .wrapper #companies.owl-carousel .owl-dots,
main section.prx_sectionSeven .wrapper #companies.owl-carousel .owl-nav,
main section.prx_sectionSeven .wrapper #companies.owl-carousel .owl-dots {
    display: none;
}
main section.prx_sectionHeroSub {
    padding: 200px 0px;
}
main section.prx_sectionHeroSub.about {
    background: url(../images/aboutbg.png) no-repeat 50% 50%;
    background-size: cover;
}
main section.prx_sectionHeroSub.contact {
    background: url(../images/contact.png) no-repeat 50% 50%;
    background-size: cover;
}
main section.prx_sectionHeroSub.contact h1 {
    margin: 0px;
    background: url(../images/proximalogo.svg) no-repeat 50px 50%;
    background-size: auto 150px;
    font-weight: 400 !important;
    line-height: normal !important;
    display: inline-block !important;
    height: auto !important;
    color: #fff !important;
    padding: 115px 0px 0px 180px !important;
    width: 60%;
}
main section.prx_sectionHeroSub.contact h1 span {
    font-weight: 700;
}
main section.prx_sectionHeroSub.first {
    padding: 200px 0px 60px 0px;
    background: url(../images/first.png) no-repeat 50% 50%;
    background-size: cover;
}
main section.prx_sectionHeroSub.second {
    padding: 200px 0px 60px 0px;
    background: url(../images/second.png) no-repeat 50% 50%;
    background-size: cover;
}
main section.prx_sectionHeroSub.third {
    padding: 200px 0px 60px 0px;
    background: url(../images/third.png) no-repeat 50% 50%;
    background-size: cover;
}
main section.prx_sectionHeroSub.proximahub {
    padding: 200px 0px 60px 0px;
    background: url(../images/proximahub.png) no-repeat 50% 50%;
    background-size: cover;
}
main section.prx_sectionHeroSub .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
main section.prx_sectionHeroSub .wrapper h1 {
    font-size: var(--fontsize64px);
    font-weight: 700;
    line-height: 140%;
    margin: 0px 0px 1px 0px;
    color: #fff;
}
main section.prx_sectionHeroSub .wrapper h3 {
    font-size: var(--fontsize36px);
    font-weight: 400;
    line-height: 140%;
    color: #fff;
}
main section.prx_sectionHeroSub .wrapper div.breadcrumb {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
}
main section.prx_sectionHeroSub .wrapper div.breadcrumb a {
    text-decoration-line: underline;
    color: #fff;
}
main section.prx_sectionEight .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    position: relative;
    padding-top: 150px;
    padding-left: 100px;
    padding-right: 100px;
}
main section.prx_sectionEight .wrapper:before {
    content: "";
    display: block;
    width: 50%;
    position: absolute;
    right: 0px;
    top: -200px;
    bottom: 0px;
    background: url(../images/subherround.png) no-repeat 100% 0%;
    background-size: calc(100% - 100px) auto;
    height: 1100px;
}
main section.prx_sectionEight .wrapper h2 {
    font-size: var(--fontsize96px);
    font-weight: 400;
    line-height: 101.058%;
    width: 50%;
    margin: 0px 0px 20px 0px;
    color: #000;
    font-family: Work Sans, sans-serif !important;
}
main section.prx_sectionEight .wrapper h2 span {
    color: #4479ff;
    font-weight: 700;
}
main section.prx_sectionEight .wrapper h3 {
    font-size: var(--fontsize36px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
    margin: 0px 0px 20px 0px;
    width: 50%;
    font-family: Work Sans, sans-serif !important;
}
main section.prx_sectionEight .wrapper p {
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #000;
    line-height: 23px;
    margin: 0px 0px 20px 0px;
    width: 50%;
    font-family: Work Sans, sans-serif !important;
}
main section.prx_sectionEight .wrapper p span {
    display: inline-block;
    font-weight: 700;
}
main section.prx_sectionEight .wrapper p a.btn {
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    padding: 14px 40px !important;
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #fff !important;
}
main section.prx_sectionEight.property {
    padding-bottom: 100px;
}
main section.prx_sectionEight.property .wrapper:before {
    top: -150px;
    background: url(../images/propertybg.png) no-repeat 100% 0%;
    background-size: calc(100% - 100px) auto;
}
main section.prx_sectionEight.property .wrapper h3 {
    font-size: var(--fontsize48px);
    font-weight: 400;
    color: #000;
    margin: 0px 0px 40px 0px;
}
main section.prx_sectionEight.property .wrapper h4 {
    font-size: var(--fontsize48px);
    font-weight: 700;
    color: #000;
    margin: 0px 0px 30px 0px;
    width: 50%;
}
main section.prx_sectionEight.property .wrapper p {
    font-size: var(--fontsize20px);
    line-height: 23px;
    font-weight: 400;
    margin: 0px 0px 30px 0px;
}
main section.prx_sectionEight.property .wrapper p span {
    font-size: var(--fontsize20px);
    font-weight: 700;
    color: #000;
}
main section.prx_sectionEight.property.second .wrapper:before {
    top: -350px;
    background: url(../images/secondround.png) no-repeat 100% 0%;
    background-size: calc(95% - 10px) auto;
}
@media screen and (max-width: 1500px) {
    main section.prx_sectionEight.property.second .wrapper:before {
        top: -200px;
    }
}
main section.prx_sectionEight.property.third .wrapper:before {
    top: -350px;
    background: url(../images/thirdround.png) no-repeat 100% 0%;
    background-size: calc(95% - 10px) auto;
    height: 1180px;
}
@media screen and (max-width: 1500px) {
    main section.prx_sectionEight.property.third .wrapper:before {
        top: -200px;
    }
}
main section.prx_sectionNine {
    padding: 100px 0px;
}
main section.prx_sectionNine .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0px auto;
    padding: 0px;
}
main section.prx_sectionNine .wrapper li {
    list-style: none;
    width: 50%;
}
main section.prx_sectionNine .wrapper li:nth-child(1) {
    border-right: 1px solid #4479ff;
    padding: 50px 0px 50px 0px;
}
main section.prx_sectionNine .wrapper li:nth-child(1) img {
    width: calc(100% - 40px);
}
main section.prx_sectionNine .wrapper li:nth-child(2) {
    padding: 20px 0px 30px 40px;
}
main section.prx_sectionNine .wrapper li:nth-child(2) h3 {
    font-size: var(--fontsize50px);
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 62.5px */
    letter-spacing: 1px;
    margin: 0px 0px 20px 0px;
    color: #000;
}
main section.prx_sectionNine .wrapper li:nth-child(2) h3.second {
    margin-top: 100px;
}
main section.prx_sectionNine .wrapper li:nth-child(2) h4 {
    font-size: var(--fontsize24px);
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    color: rgba(0, 0, 0, 0.5);
    margin: 0px 0px 37px 0px;
    max-width: 575px;
}
main section.prx_sectionNine .wrapper li:nth-child(2) p {
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #000;
    max-width: 575px;
}
@media screen and (max-width: 700px) {
    main section.prx_sectionNine .wrapper {
        display: block;
    }
    main section.prx_sectionNine .wrapper li {
        width: 100%;
        padding: 30px 0px !important;
        border: 0px !important;
    }
    main section.prx_sectionNine .wrapper li img {
        width: 100% !important;
    }
    main section.prx_sectionTen .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}
main section.prx_sectionTen {
    padding: 50px 0px;
}
main section.prx_sectionTen .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
main section.prx_sectionTen .wrapper h2 {
    font-size: var(--fontsize64px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #000;
    margin: 0px 0px 10px 0px;
}
main section.prx_sectionTen .wrapper p {
    width: 70%;
    font-size: var(--fontsize24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
}
main section.prx_sectionTen .wrapper ul {
    margin: 0px;
    padding: 50px 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}
@media screen and (max-width: 700px) {
    main section.prx_sectionTen .wrapper ul {
        display: block;
    }
}
main section.prx_sectionTen .wrapper ul li {
    list-style: none;
}
main section.prx_sectionTen .wrapper ul li span {
    display: block;
    margin: 0px 0px 20px 0px;
    margin: 0px 0px 20px 0px;
}
main section.prx_sectionTen .wrapper ul li span img {
    width: 100%;
}
main section.prx_sectionTen .wrapper ul li h3 {
    font-size: var(--fontsize36px);
    font-weight: 700;
    margin: 0px 0px 30px 0px;
    color: #000;
}
main section.prx_sectionTen .wrapper ul li h3 span {
    color: #4479ff;
    display: inline-block;
    font-size: var(--fontsize36px);
    font-weight: 700;
}
main section.prx_sectionTen .wrapper ul li h4 {
    font-size: var(--fontsize24px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px 0px 15px 0px;
}
main section.prx_sectionTen .wrapper ul li p {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    /* line-height: normal; */
    line-height: 26px;
    margin: 0px;
}
main section.prx_buyinvest {
    padding: 100px 0px;
    background: #f8f8f8;
}
main section.prx_buyinvest.second {
    background: #f8f8f8;
}
main section.prx_buyinvest .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    margin: 0px auto;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 1920px) {
    main section.prx_buyinvest .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 700px) {
    main section.prx_buyinvest .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}
main section.prx_buyinvest .wrapper > li {
    list-style: none;
    width: 50%;
}
main section.prx_buyinvest .wrapper > li h2 {
    font-size: var(--fontsize64px);
    font-weight: 700;
    line-height: 112%;
    color: #000;
    margin: 0px 0px 70px 0px;
}
main section.prx_buyinvest .wrapper > li > ul {
    margin: 0px;
    max-width: calc(100% - 50px);
}
main section.prx_buyinvest .wrapper > li > ul li {
    list-style: none;
    margin: 0px 0px 40px 0px;
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #00181f;
    padding: 0px 0px 0px 90px;
}
main section.prx_buyinvest .wrapper > li > ul li:nth-child(1) {
    background: url(../images/buyinvest1.svg) no-repeat 0% 50%;
    background-size: 45px auto;
}
main section.prx_buyinvest .wrapper > li > ul li:nth-child(2) {
    background: url(../images/buyinvest2.svg) no-repeat 0% 50%;
    background-size: 45px auto;
}
main section.prx_buyinvest .wrapper > li > ul li:nth-child(3) {
    background: url(../images/buyinvest3.svg) no-repeat 0% 50%;
    background-size: 45px auto;
}
main section.prx_buyinvest .wrapper > li > ul li span {
    display: inline-block;
    font-size: var(--fontsize20px);
    font-weight: 700;
    color: #00181f;
}

@media screen and (max-width: 700px) {
    main section.prx_buyinvest .wrapper li {
        width: 100%;
    }
    main section.prx_buyinvest .wrapper li > ul > li {
        padding: 80px 0px 0px 0px !important;
        background-position: 50% 0% !important;
    }
}

main section.prx_borrowingcapacity {
    padding: 100px 0px;
}
main section.prx_borrowingcapacity .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    padding-left: 100px;
    padding-right: 100px;
}
@media screen and (max-width: 1920px) {
    main section.prx_borrowingcapacity .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_borrowingcapacity .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 700px) {
    main section.prx_borrowingcapacity .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
}
main section.prx_borrowingcapacity .wrapper h2 {
    font-size: var(--fontsize64px);
    font-weight: 700;
    line-height: 112%;
    color: #000;
    margin: 0px 0px 10px 0px;
}
main section.prx_borrowingcapacity .wrapper h3 {
    font-size: var(--fontsize36px);
    font-weight: 400;
    line-height: normal;
    color: #000;
    margin: 0px 0px 60px 0px;
}
main section.prx_borrowingcapacity .wrapper > ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 1080px) {
    section.prx_sectionSix {
        padding: 70px 0px;
    }
    main section.prx_borrowingcapacity .wrapper > ul {
        flex-direction: column;
        gap: 40px;
    }
    main section.prx_sectionTwo .wrapper .sectionbox {
        width: 65%;
    }
}
main section.prx_borrowingcapacity .wrapper > ul > li {
    margin: 0px;
    list-style: none;
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) {
    width: 40%;
    background: url(../images/borrowingbg.png) no-repeat 50% 0%;
    background-size: cover;
    padding: 100px 80px;
}
@media screen and (max-width: 1600px) {
    main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) {
        width: 45%;
    }
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) ul {
    margin: 0px 0px 30px 0px;
    padding: 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) ul li {
    list-style: none;
    margin: 0px 0px 60px;
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) ul li label {
    font-size: var(--fontsize20px);
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 25px 0px;
    display: block;
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) ul li span {
    display: block;
    max-width: 490px;
    width: 100%;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    span
    input[type="text"],
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    span
    select {
    min-height: 77px;
    width: 100%;
    border: 1px solid #4479ff;
    line-height: normal;
    background: #fff;
    border-radius: 0px;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    p.repayment {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    p.repayment
    span {
    display: block;
    width: 50%;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    p.repayment
    span.amount {
    font-size: var(--fontsize64px);
    font-weight: 600;
    line-height: normal;
    color: #fff;
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) h4 {
    font-size: var(--fontsize36px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    margin: 0px 0px 40px 0px;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    p
    button.btn {
    font-size: var(--fontsize20px);
    padding: 15px 40px;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    background: #fff;
    color: #4479ff;
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) {
    width: 60%;
    padding: 0px 0px 0px 50px;
}
@media screen and (max-width: 1600px) {
    main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) {
        width: 55%;
    }
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) h3 {
    font-size: var(--fontsize36px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px 0px 50px 0px;
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) ul {
    margin: 0px;
    padding: 0px;
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) ul.first {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 70px;
    margin: 0px 0px 100px 0px;
}
@media screen and (max-width: 768.98px) {
    main
        section.prx_borrowingcapacity
        .wrapper
        > ul
        > li:nth-child(2)
        ul.first {
        grid-gap: 30px;
    }
}
@media screen and (max-width: 578.98px) {
    main
        section.prx_borrowingcapacity
        .wrapper
        > ul
        > li:nth-child(2)
        ul.first {
        display: block;
        padding: 50px 0px 0px 0px !important;
    }
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) ul.first li {
    list-style: none;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    label {
    display: block;
    font-size: var(--fontsize20px);
    font-weight: 700;
    margin: 0px 0px 10px 0px;
    color: #000;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    span {
    display: block;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    span
    input[type="text"],
    main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    span
    input[type="number"],
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    span
    select {
    width: 100%;
    border-radius: 0px;
    border: 0px !important;
    border-bottom: 1px solid #4479ff !important;
    max-width: 300px;
    font-size: var(--fontsize24px);
    @media (max-width: 1600px) {
        max-width: 210px;
    }
    @media (max-width: 1199px) {
        max-width: 165px;
    }
}
main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) ul.second {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second
    li {
    list-style: none;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second
    li
    label {
    display: block;
    font-size: var(--fontsize20px);
    font-weight: 700;
    margin: 0px 0px 10px 0px;
    color: #000;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second
    li
    span {
    display: block;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second
    li
    span
    input[type="text"],
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second
    li
    span
    select {
    width: 100%;
    border-radius: 0px;
    border: 0px !important;
    border-bottom: 1px solid #4479ff !important;
    max-width: 170px;
    font-size: var(--fontsize24px);
}
main section.prx_propertylist {
    padding: 100px 0px;
}
main section.prx_propertylist .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    overflow: hidden !important;
}
@media screen and (max-width: 1400px) {
    main section.prx_propertylist .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 700px) {
    main section.prx_propertylist .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}
main section.prx_propertylist .wrapper h2 {
    font-size: var(--fontsize48px);
    font-weight: 400;
    line-height: 112%;
    color: #000;
}
main section.prx_propertylist .wrapper h3 {
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #000;
}
main section.prx_propertylist .wrapper .findprtyhd {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0px;
    margin: 0px 0px 30px 0px;
}
main section.prx_propertylist .wrapper .findprtyhd h2 {
    font-size: var(--fontsize16px);
    font-weight: 400;
    line-height: 142%;
    letter-spacing: 4.96px;
    text-transform: uppercase;
    margin: 0px;
    position: relative;
    top: -20px;
}
main section.prx_propertylist .wrapper .findprtyhd p.search {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.25);
}
main section.prx_propertylist .wrapper .findprtyhd p.search input[type="text"],
main section.prx_propertylist .wrapper .findprtyhd p.search select {
    background: #fff;
    padding: 20px !important;
    border: 0px;
    border-radius: 0px;
    margin: 0px !important;
    font-size: var(--fontsize14px);
    line-height: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
}
main
    section.prx_propertylist
    .wrapper
    .findprtyhd
    p.search
    input[type="text"]:placeholder,
main section.prx_propertylist .wrapper .findprtyhd p.search select:placeholder {
    font-size: var(--fontsize14px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #504b56;
}
main section.prx_propertylist .wrapper .findprtyhd p.search button {
    width: 62px;
    height: 62px;
    background: #4479ff;
    border: 0px;
}
main section.prx_propertylist .wrapper ul {
    margin: 0px;
    padding: 50px 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
main section.prx_propertylist .wrapper ul li {
    border: 1px solid rgba(0, 0, 0, 0.25);
    position: relative;
    padding: 0px 0px 30px 0px;
}
main section.prx_propertylist .wrapper ul li > span.propertypic {
    display: block;
    max-height: 400px;
    overflow: hidden;
    margin: 0px 0px 20px 0px;
}
main section.prx_propertylist .wrapper ul li > span.propertypic img {
    width: 100%;
}
main section.prx_propertylist .wrapper ul li > span.location {
    position: absolute;
    top: 300px;
    right: 30px;
    background: #fff url(../images/map.svg) no-repeat calc(100% - 30px) 50%;
    background-size: 24px auto;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    padding: 13px 65px 13px 40px;
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #4479ff;
    z-index: 99;
}
main section.prx_propertylist .wrapper ul li h3 {
    font-size: var(--fontsize32px);
    font-weight: 400;
    line-height: normal;
    position: relative;
    margin: 0px 20px 15px 20px;
}
main section.prx_propertylist .wrapper ul li h3 span {
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
main section.prx_propertylist .wrapper ul li h4 {
    width: 60%;
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px 20px 15px 20px;
}
main section.prx_propertylist .wrapper ul li p.specification {
    padding: 0px 20px 20px 20px;
    margin: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
main section.prx_propertylist .wrapper ul li p.specification span {
    font-size: var(--fontsize16px);
    font-weight: 700;
    color: #000;
    padding: 5px 0px 5px 45px;
    min-height: 25px;
    margin: 0px 25px 0px 0px;
}
@media screen and (max-width: 1400px) {
    main section.prx_propertylist .wrapper ul li p.specification span {
        margin: 0px 10px 0px 0px;
    }
}
main section.prx_propertylist .wrapper ul li p.specification span.bedroom {
    background: url(../images/bed.svg) no-repeat 0% 50%;
    background-size: auto 25px;
}
main section.prx_propertylist .wrapper ul li p.specification span.washtub {
    background: url(../images/tub.svg) no-repeat 0% 50%;
    background-size: auto 25px;
}
main section.prx_propertylist .wrapper ul li p.specification span.vehicle {
    background: url(../images/vehicle.svg) no-repeat 0% 50%;
    background-size: 40px auto;
    padding: 5px 0px 5px 55px;
}
main section.prx_propertylist .wrapper ul li p.specification span.area {
    background: url(../images/area.svg) no-repeat 0% 50%;
    background-size: auto 25px;
}
main section.prx_propertylist .wrapper ul li p.btns {
    margin: 0px 20px;
}
main section.prx_propertylist .wrapper ul li p.btns .btn {
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    padding: 13px 40px !important;
    background: #fff;
    color: #4479ff;
    border: 1px solid #4479ff;
    font-size: var(--fontsize16px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
main section.prx_propertylist .wrapper p.btnnav {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
main section.prx_propertylist .wrapper p.btnnav a {
    display: block;
    width: 36px;
    height: 36px;
    border: 2px solid #4479ff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    margin: 0px 5px;
}
main section.prx_map {
    padding: 0px 0px 100px 0px;
}
main section.prx_map .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
@media screen and (max-width: 1920px) {
    main section.prx_map .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_map .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
main section.prx_map .wrapper iframe {
    width: 100%;
    height: 800px !important;
}
main section.prx_agentservices {
    background: #f8f8f8;
    padding: 100px 0px;
}
main section.prx_sellwith {
    padding: 100px 0px 20px 0px;
}
main section.prx_sellwith .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 1400px) {
    main section.prx_sellwith .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 700px) {
    main section.prx_sellwith .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}
main section.prx_sellwith .wrapper h3 {
    margin: 0px;
    padding: 10px 30px 10px 0px;
    font-size: var(--fontsize48px);
    font-weight: 400;
    width: 50%;
}
@media screen and (max-width: 700px) {
    main section.prx_sellwith .wrapper h3 {
        width: 100%;
    }
}
main section.prx_sellwith .wrapper p {
    width: 50%;
    padding: 0px 0px 0px 50px;
}
main section.prx_sellwith .wrapper p img {
    width: 100%;
}
@media screen and (max-width: 700px) {
    main section.prx_sellwith {
        padding: 20px 0px;
    }
    main section.prx_sellwith .wrapper {
        display: block;
    }
    main section.prx_sellwith .wrapper p {
        width: 100%;
        padding: 20px;
    }
}
main section.prx_business {
    padding: 100px 0px;
}
main section.prx_business .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
@media screen and (max-width: 1920px) {
    
}
@media screen and (max-width: 1400px) {
    main section.prx_business .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 700px) {
    main section.prx_business .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}
main section.prx_business .wrapper h2 {
    margin: 0px auto 80px auto;
    padding: 0px;
    text-align: center;
    font-size: var(--fontsize64px);
    font-style: normal;
    font-weight: 700;
    line-height: 112%;
    color: #000;
    max-width: 1200px;
}
main section.prx_business .wrapper ul {
    margin: 0px;
    padding: 30px 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
@media screen and (max-width: 991px) {
    main section.prx_business .wrapper ul {
        grid-gap: 25px;
        grid-template-columns: repeat(2, 1fr);
    }
}
main section.prx_business .wrapper ul li {
    list-style: none;
    background: #f8f8f8;
    padding: 40px;
    min-height: 310px;
}
main section.prx_business .wrapper ul li h3 {
    font-size: var(--fontsize24px);
    font-style: normal;
    font-weight: 700;
    line-height: 29px;
    color: #000;
    padding: 0px 0px 30px 60px;
}
main section.prx_business .wrapper ul li p {
    font-size: var(--fontsize20px);
    color: #000;
    font-weight: 400;
    line-height: normal;
}
main section.prx_business .wrapper ul li:nth-child(1) h3 {
    background: url(../images/business3.svg) no-repeat 0% 0px;
    background-size: 32px;
}
main section.prx_business .wrapper ul li:nth-child(2) h3 {
    background: url(../images/business1.svg) no-repeat 0% 0px;
    background-size: 32px;
}
main section.prx_business .wrapper ul li:nth-child(3) h3 {
    background: url(../images/business2.svg) no-repeat 0% 0px;
    background-size: 32px;
}
main section.prx_business .wrapper ul li:nth-child(4) h3 {
    background: url(../images/business4.svg) no-repeat 0% 0px;
    background-size: 32px;
}
main section.prx_business .wrapper ul li:nth-child(5) h3 {
    background: url(../images/business5.svg) no-repeat 0% 0px;
    background-size: 32px;
}
main section.prx_business .wrapper ul li:nth-child(6) h3 {
    background: url(../images/business6.svg) no-repeat 0% 0px;
    background-size: 32px;
}
main section.prx_marketingsupport {
    padding: 100px 0px;
}
main section.prx_marketingsupport .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
@media screen and (max-width: 1920px) {
    main section.prx_business .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_marketingsupport .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_marketingsupport .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
main section.prx_marketingsupport .wrapper > ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-between;
}
main section.prx_marketingsupport .wrapper > ul > li {
    list-style: none;
}
main section.prx_marketingsupport .wrapper > ul > li:nth-child(1) {
    width: 50%;
}
@media screen and (max-width: 700px) {
    main section.prx_marketingsupport .wrapper > ul > li:nth-child(1) {
        padding: 0px 20px;
        width: 100%;
    }
}
main section.prx_marketingsupport .wrapper > ul > li:nth-child(1) h2 {
    font-size: var(--fontsize64px);
    font-weight: 700;
    color: #000;
    margin: 0px 0px 40px 0px;
}
main section.prx_marketingsupport .wrapper > ul > li:nth-child(1) h3 {
    font-size: var(--fontsize48px);
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    margin: 0px 0px 70px 0px;
}
main section.prx_marketingsupport .wrapper > ul > li:nth-child(1) h3 span {
    font-size: var(--fontsize48px);
    font-weight: 700;
    padding: 0px 0px 20px 0px;
    background: url(../images/have.svg) no-repeat 0% 100%;
    background-size: auto 18px;
}
main section.prx_marketingsupport .wrapper > ul > li:nth-child(1) p {
    font-size: var(--fontsize24px);
    font-weight: 400;
    line-height: 30px;
    max-width: 90%;
}
main section.prx_marketingsupport .wrapper > ul > li:nth-child(2) {
    width: 50%;
    padding: 0px 0px 0px 50px;
}
@media screen and (max-width: 700px) {
    main section.prx_marketingsupport .wrapper > ul > li:nth-child(2) {
        padding: 0px 20px;
        width: 100%;
    }
}
main section.prx_marketingsupport .wrapper > ul > li:nth-child(2) p {
    margin: 0px;
    padding: 0px;
}
main section.prx_marketingsupport .wrapper > ul > li:nth-child(2) p img {
    width: 100%;
}
main section.prx_marketingsupport .wrapper #marketing.owl-carousel {
    padding: 100px 0px;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer {
    padding: 20px 0px;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item {
    opacity: 0.5;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item {
    border-radius: 10px;
    background: #fff;
    box-shadow: -2px 2px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 310px 47px 36px 47px;
    position: relative;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    .topbox {
    min-height: 275px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    flex-direction: column;
    padding: 40px;
    top: 0px;
    left: 0px;
    right: 0px;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    .topbox
    span {
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    overflow: hidden;
    z-index: 1;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    .topbox
    span
    img {
    height: 100%;
    width: 100%;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    .topbox
    h2 {
    font-size: var(--fontsize40px);
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 3;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    .topbox
    h3 {
    font-size: var(--fontsize24px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #fff;
    position: relative;
    z-index: 3;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    p {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    ul {
    margin: 0px;
    padding: 10px 0px;
    display: block;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    ul
    li {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* display: block; */
    display: list-item;
    margin: 0px 0px 10px 20px;
    list-style: disc !important;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item.active {
    opacity: 1;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item.active
    + .owl-item {
    opacity: 1;
}
main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-dots {
    position: absolute;
    left: 20%;
    bottom: 20px;
    display: flex;
    justify-content: flex-start;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-dots
    .owl-dot {
    width: 10px;
    height: 10px;
    background: #dde0e4;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    margin: 0px 5px 0px 0px;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-dots
    .owl-dot.active {
    background: #4479ff;
}
main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-nav {
    position: absolute;
    right: 20%;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-nav
    button {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border: 2px solid #4479ff;
    color: #4479ff;
    margin: 0px 2px;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-nav
    button.active {
    background: #4479ff;
    color: #fff;
}
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-nav
    button
    span {
    font-size: var(--fontsize15px);
}
main section.prx_outcomes {
    padding: 100px 0px;
}
main section.prx_outcomes .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 1920px) {
    main section.prx_outcomes .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_outcomes .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 700px) {
    main section.prx_outcomes .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
}
main section.prx_outcomes .wrapper h3 {
    width: 50%;
    font-size: var(--fontsize64px);
    font-weight: 700;
    line-height: 112%;
}
@media screen and (max-width: 700px) {
    main section.prx_outcomes .wrapper h3 {
        width: 100%;
    }
}
main section.prx_outcomes .wrapper .accordion {
    width: 70%;
    padding: 0px 0px 0px 40px;
}
@media screen and (max-width: 700px) {
    main section.prx_outcomes .wrapper .accordion {
        width: 100%;
    }
}
main section.prx_outcomes .wrapper .accordion .accordion-item {
    border: 0px !important;
    box-shadow: none !important;
    border-bottom: 1px solid #cccccc !important;
}
main
    section.prx_outcomes
    .wrapper
    .accordion
    .accordion-item
    h2
    button.accordion-button {
    font-size: var(--fontsize36px);
    font-style: normal;
    font-weight: 700;
    line-height: 112%;
    background: none;
    color: #000;
    border: 0px !important;
    box-shadow: none !important;
}
main section.prx_outcomes .wrapper .accordion .accordion-item .accordion-body {
    border: 0px !important;
    box-shadow: none !important;
}
main section.prx_outcomes .wrapper .accordion p.btns {
    padding: 20px 0px;
    text-align: right;
}
main section.prx_devlist {
    padding: 100px 0px;
    position: relative;
    z-index: 1;
}
main section.prx_devlist .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
@media screen and (max-width: 1920px) {
    main section.prx_devlist .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_servicetodevelopers .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_devlist .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
    main section.prx_servicetodevelopers .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}


main section.prx_devlist .wrapper li {
    list-style: none;
    background: #f9f9f9;
    padding: 45px;
}
main section.prx_devlist .wrapper li h3 {
    font-size: var(--fontsize24px);
    font-weight: 700;
    line-height: 36px;
    padding: 55px 0px 20px 0px;
    margin: 0px;
}
main section.prx_devlist .wrapper li p {
    font-size: var(--fontsize20px);
    font-weight: 400;
    margin: 0px;
}
main section.prx_devlist .wrapper li:nth-child(1) h3 {
    background: url(../images/brand1.svg) no-repeat 0% 0%;
    background-size: 32px auto;
}
main section.prx_devlist .wrapper li:nth-child(2) h3 {
    background: url(../images/brand2.svg) no-repeat 0% 0%;
    background-size: 32px auto;
}
main section.prx_devlist .wrapper li:nth-child(3) h3 {
    background: url(../images/brand3.svg) no-repeat 0% 0%;
    background-size: 32px auto;
}
main section.prx_servicetodevelopers {
    padding: 100px 0px;
}
main section.prx_servicetodevelopers .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
main section.prx_servicetodevelopers .wrapper > li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
main section.prx_servicetodevelopers .wrapper > li .details {
    width: 50%;
    padding: 10px 50px 10px 0px;
}
main section.prx_servicetodevelopers .wrapper > li .details h3 {
    font-size: var(--fontsize50px);
    font-weight: 700;
    line-height: 125%;
    /* 62.5px */
    letter-spacing: 1px;
    color: #000;
    padding: 60px 0px 0px 0px;
    margin: 0px 0px 10px 0px;
}
main section.prx_servicetodevelopers .wrapper > li .details h4 {
    font-size: var(--fontsize24px);
    font-weight: 400;
    color: #000;
    line-height: 24px;
    line-height: normal;
    margin: 0px 0px 20px 0px;
}
main section.prx_servicetodevelopers .wrapper > li .details p {
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #000;
    line-height: 23px;
    margin: 0px 0px 20px 0px;
}
main section.prx_servicetodevelopers .wrapper > li .details p span {
    font-size: var(--fontsize20px);
    font-weight: 700;
}
main section.prx_servicetodevelopers .wrapper > li > p {
    margin: 0px;
    padding: 10px;
    width: 50%;
}
main section.prx_servicetodevelopers .wrapper > li > p img {
    width: 100%;
}
main section.prx_servicetodevelopers .wrapper > li:nth-child(even) .details {
    padding: 10px 0px 10px 50px;
}
main section.prx_servicetodevelopers .wrapper > li:nth-child(1) .details h3 {
    background: url(../images/dev1.svg) no-repeat 0% 0%;
    background-size: 42px auto;
}
main section.prx_servicetodevelopers .wrapper > li:nth-child(2) .details h3 {
    background: url(../images/dev2.svg) no-repeat 0% 0%;
    background-size: 42px auto;
}
main section.prx_servicetodevelopers .wrapper > li:nth-child(3) .details h3 {
    background: url(../images/commission_loan_services_icon.png) no-repeat 0% 0%;
    background-size: 42px auto;
}
main section.prx_servicetodevelopers .wrapper > li:nth-child(4) .details h3 {
    background: url(../images/dev3.svg) no-repeat 0% 0%;
    background-size: 42px auto;
}
main section.prx_proximahub {
    padding: 210px 0px 100px 0px;
    position: relative;
}
main section.prx_proximahub .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
@media screen and (max-width: 1920px) {
    main section.prx_proximahub .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_proximahub .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
main section.prx_proximahub .wrapper h2 {
    font-size: var(--fontsize64px);
    font-style: normal;
    font-weight: 700;
    line-height: 112%;
    text-align: center;
    color: #000;
}
main section.prx_proximahub .wrapper > p {
    font-size: var(--fontsize20px); 
    font-weight: 400;
    text-align: center;
    max-width: 830px;
    margin: 20px auto;
}
main section.prx_proximahub .wrapper .tabbox {
    padding: 40px 0px 0px 0px;
}
main section.prx_proximahub .wrapper .tabbox p.tab {
    border: 1px solid #4479ff;
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0px 0px 20px 0px;
}
main section.prx_proximahub .wrapper .tabbox p.tab button {
    padding: 13px 40px;
    border-radius: 61px;
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #00181f;
    background: #fff;
    border: 0px;
}
main section.prx_proximahub .wrapper .tabbox p.tab button.developers.active {
    background: #9900ff !important;
    color: #fff !important;
}
main section.prx_proximahub .wrapper .tabbox p.tab button.agents.active {
    background: #68d7ac !important;
    color: #00181f !important;
}
main section.prx_proximahub .wrapper .tabbox p.tab button.industry.active {
    background: #ea7b10 !important;
    color: #00181f !important;
}
main section.prx_proximahub .wrapper .tabbox p.tab button.community.active {
    background: #f6e586 !important;
    color: #00181f !important;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent {
    display: none;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent.active {
    display: block;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul {
    margin: 0px;
    padding: 40px 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 40px;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul li {
    list-style: none;
    padding: 20px 0px;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul li > span {
    display: block;
    position: relative;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul li > span img {
    width: 65px;
    position: relative;
    z-index: 3;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul li > span:before {
    content: "";
    height: 2px;
    position: absolute;
    left: 80px;
    right: 10px;
    top: calc(50% - 1px);
    border-top: 1px dashed;
    z-index: 1;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul li h3 {
    padding: 20px 0px 10px 0px;
    margin: 0px 0px 23px 0px;
    font-size: var(--fontsize40px);
    font-weight: 700;
    line-height: 112%;
    color: #282938;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul li p {
    font-size: var(--fontsize24px);
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #000;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent h4 {
    font-size: var(--fontsize48px);
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    text-align: center;
    margin: 0px 0px 20px 0px;
    color: #000;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent > p.btns {
    text-align: center;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent#Developers {
    display: block;
}
main
    section.prx_proximahub
    .wrapper
    .tabbox
    .tabcontent#Developers
    ul
    li
    > span:before {
    border-color: #9900ff;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent#Developers .btn {
    background: #9900ff !important;
    color: #fff !important;
}
main
    section.prx_proximahub
    .wrapper
    .tabbox
    .tabcontent#Agents
    ul
    li
    > span:before {
    border-color: #68d7ac;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent#Agents .btn {
    background: #68d7ac !important;
    color: #00181f !important;
}
main
    section.prx_proximahub
    .wrapper
    .tabbox
    .tabcontent#Industrypartners
    ul
    li
    > span:before {
    border-color: #ea7b10;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent#Industrypartners .btn {
    background: #ea7b10 !important;
    color: #00181f !important;
}
main
    section.prx_proximahub
    .wrapper
    .tabbox
    .tabcontent#Forthecommunity
    ul
    li
    > span:before {
    border-color: #f6e586;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent#Forthecommunity .btn {
    background: #f6e586 !important;
    color: #00181f !important;
}
main section.prx_proximahub.advantages {
    background: #f8f8f8;
}
main section.prx_advantage .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
@media screen and (max-width: 1920px) {
    main section.prx_advantage .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_advantage .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 700px) {
    main section.prx_advantage .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}
main section.prx_advantage .wrapper ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0px;
    padding: 0px;
}
main section.prx_advantage .wrapper ul li {
    width: 50%;
    list-style: none;
    padding: 50px 0px;
}
main section.prx_advantage .wrapper ul li h3 {
    font-size: var(--fontsize48px);
    font-weight: 400;
    margin: 0px 0px 40px 0px;
    padding: 0px 50px 0px 0px;
    max-width: 550px;
}
main section.prx_advantage .wrapper ul li h3 span {
    font-size: var(--fontsize48px);
    font-weight: 700;
}
main section.prx_advantage .wrapper ul li h3 span.green {
    color: #68d7ac;
}
main section.prx_advantage .wrapper ul li p {
    margin: 0px;
    font-size: var(--fontsize20px);
    font-weight: 400;
}
main section.prx_advantage .wrapper ul li p.txt {
    max-width: 550px;
}
main section.prx_advantage .wrapper ul li p img {
    width: calc(100% - 50px);
}
main section.prx_advantage .wrapper ul li p.bld {
    font-size: var(--fontsize24px);
    font-weight: 700;
    margin: 30px 0px;
}
main section.prx_advantage .wrapper ul li p.btns button {
    margin: 0px 10px 0px 0px;
}
main section.prx_advantage .wrapper ul li p.btns button.grnoutline {
    border: 1px solid #68d7ac;
    background: #fff;
    color: #003530;
}
footer {
    background: #000 !important;
    padding: 100px 0px;
}
footer ul {
    max-width: 1920px;
    margin: 0px auto;
    padding: 0px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
footer {
    background: #000;
    padding: 100px 0px;
}
footer ul {
    max-width: 1920px !important;
    margin: 0px auto !important;
    padding: 0px !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-gap: 20px !important;
}
@media screen and (max-width: 1400px) {
    footer ul {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}
@media screen and (max-width: 700px) {
    footer ul {
        padding-left: 0px;
        padding-right: 0px;
        grid-gap: 0 !important;
    }
}
footer ul li {
    list-style: none;
    color: #fff;
}
@media screen and (max-width: 700px) {
    main footer ul {
        display: block;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}
footer ul li span.logo {
    display: block;
    width: 200px;
    margin: 0px 0px 50px 0px;
}
footer ul li span.logo img {
    width: 100%;
}
footer ul li h3 {
    font-size: var(--fontsize20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #fff;
    margin: 0px 0px 30px 0px;
}
footer ul li p {
    font-size: var(--fontsize14px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0px 0px 30px 0px;
    max-width: 400px;
}
footer ul li p.subscribe {
    margin: 0px 0px 20px 0px;
}
footer ul li p.subscribe span {
    display: block;
    padding: 5px;
}
footer ul li p.subscribe span select,
footer ul li p.subscribe span input[type="email"] {
    background: none;
    border-radius: 0px;
    border: 0px !important;
    border-bottom: 2px solid #fff !important;
    width: 100%;
    max-width: 300px;
    padding: 10px;
    color: #fff !important;
    font-size: var(--fontsize16px);
    font-weight: 400 !important;
}
footer ul li p.subscribe span select:placeholder,
footer ul li p.subscribe span input[type="email"]:placeholder {
    color: #fff !important;
    font-size: var(--fontsize16px);
    font-weight: 400 !important;
    opacity: 1 !important;
}
footer ul li p.links span {
    display: block;
    margin: 0px 0px 25px 0px;
}
footer ul li p.links span a {
    display: block;
    font-size: var(--fontsize16px);
    font-weight: 400;
    color: #fff;
}
footer ul li p.address {
    margin: 0px 0px 30px 0px;
    max-width: 50%;
}
footer ul li p.social label {
    font-size: var(--fontsize20px);
    font-weight: 700;
}
footer ul li p.social span {
    display: block;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0px 0px 0px;
}
footer ul li p.social span a {
    display: block;
    width: 26px;
    height: 26px;
    margin: 0px 20px 0px 0px;
}
footer ul li p.social span a.fb {
    background: url(../images/fb_w.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
footer ul li p.social span a.in {
    background: url(../images/insta_w.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
footer ul li p.social span a.ln {
    background: url(../images/linkdn_w.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}
/* footer ul li h3 {
          font-size: var(--fontsize20px);
          font-weight: 400;
          color: #fff;
          margin: 0px 0px 10px 0px; } */

/* This used to work for the parent element of button divs */
/* But it does not work with newer browsers, the below doesn't hide the play button parent div */
*::-webkit-media-controls-panel {
    display: none !important;
    -webkit-appearance: none;
}

/* Old shadow dom for play button */
*::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
}

/* New shadow dom for play button */
/* This one works! */
*::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

/*Style for additional pages*/
main section.prx_connect .wrapper {
    max-width: 1920px;
    margin: 0px auto;
    position: relative;
    padding-top: 50px;
    padding-bottom: 200px;
}
@media screen and (max-width: 700px) {
    main section.prx_connect .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}
main section.prx_connect .wrapper:before {
    content: "";
    display: block;
    width: 50%;
    position: absolute;
    right: 0px;
    top: -150px;
    bottom: 0px;
    background: url(../images/connectround.png) no-repeat 100% -150px;
    background-size: calc(100% - 100px);
}
main section.prx_connect .wrapper h2 {
    font-size: var(--fontsize64px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 50%;
    margin: 0px 0px 20px 0px;
}
main section.prx_connect .wrapper h2 span {
    color: #067df4;
    font-weight: 700;
}
main section.prx_connect .wrapper p {
    font-size: var(--fontsize48px);
    font-weight: 400;
    color: #000;
    margin: 0px 0px 20px 0px;
    width: 50%;
    max-width: 850px;
}
main section.prx_connect .wrapper p span {
    display: inline-block;
    font-weight: 700;
}
main section.prx_connect .wrapper p a.btn {
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    padding: 14px 40px !important;
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #fff !important;
}
main section.prx_news {
    background: #f8f8f8;
    padding: 100px 0px;
}
main section.prx_news .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
@media screen and (max-width: 1920px) {
    main section.prx_news .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_news .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
main section.prx_news .wrapper .search h2 {
    font-size: var(--fontsize64px);
    font-style: normal;
    font-weight: 700;
    line-height: 112%;
    margin: 0px 0px 20px 0px;
    text-align: center;
}
main section.prx_news .wrapper .search p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
    max-width: 900px;
}
main section.prx_news .wrapper .search p span {
    display: block;
}
main section.prx_news .wrapper .search p span:nth-child(1) {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}
main
    section.prx_news
    .wrapper
    .search
    p
    span:nth-child(1)
    input[type="search"] {
    width: calc(100% - 60px);
    border: 1px solid #067df4;
    border-radius: 0px;
    background: #fff;
    padding: 10px;
    height: 60px;
    margin: 0px !important;
}
main section.prx_news .wrapper .search p span:nth-child(1) button {
    width: 60px;
    height: 60px;
    background: #067df4;
    border: 0px;
}
main section.prx_news .wrapper .search p span:nth-child(2) {
    padding: 0px 0px 0px 20px;
    width: 35%;
}
main section.prx_news .wrapper .search p span:nth-child(2) select {
    width: calc(100% - 40px);
    border: 1px solid #067df4;
    border-radius: 0px;
    background: #fff;
    padding: 10px;
    height: 60px;
    margin: 0px !important;
}
main section.prx_news .wrapper ul {
    margin: 0px;
    padding: 80px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
main section.prx_news .wrapper ul li {
    list-style: none;
}
main section.prx_news .wrapper ul li:nth-child(1) {
    width: 40%;
}
main section.prx_news .wrapper ul li:nth-child(1) span {
    font-size: var(--fontsize20px);
    font-weight: 400;
    display: block;
    margin: 0px 0px 10px 0px;
}
main section.prx_news .wrapper ul li:nth-child(1) h2 {
    font-size: var(--fontsize40px);
    font-weight: 700;
    margin: 0px 0px 20px 0px;
}
main section.prx_news .wrapper ul li:nth-child(1) p {
    font-size: var(--fontsize20px);
    font-weight: 400;
}
main section.prx_news .wrapper ul li:nth-child(1) p button {
    border-radius: 60px;
    padding: 14px 40px;
    border: 1px solid #067df4;
    color: #067df4;
    font-size: var(--fontsize20px);
    background: #fff;
    font-weight: 400;
}
main section.prx_news .wrapper ul li:nth-child(2) {
    width: 60%;
}
main section.prx_news .wrapper ul li:nth-child(2) p {
    margin: 0px;
    text-align: right;
}
main section.prx_news .wrapper ul li:nth-child(2) p img {
    width: calc(100% - 50px);
}
main section.prx_newslist {
    padding: 100px 0px;
}
main section.prx_newslist .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
@media screen and (max-width: 1920px) {
    main section.prx_newslist .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}
@media screen and (max-width: 1400px) {
    main section.prx_newslist .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
}
@media screen and (max-width: 700px) {
    main section.prx_newslist .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}
main section.prx_newslist .wrapper ul {
    margin: 0px;
    padding: 0px;
}
main section.prx_newslist .wrapper ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 30px 0px;
}
main section.prx_newslist .wrapper ul li .details {
    width: 55%;
    padding: 0px 80px 0px 0px;
}
main section.prx_newslist .wrapper ul li .details span {
    font-size: var(--fontsize20px);
    font-weight: 400;
    display: block;
    margin: 0px 0px 10px 0px;
}
main section.prx_newslist .wrapper ul li .details h2 {
    font-size: var(--fontsize40px);
    font-weight: 700;
    margin: 0px 0px 20px 0px;
}
main section.prx_newslist .wrapper ul li .details p {
    font-size: var(--fontsize20px);
    font-weight: 400;
    width: 100%;
}
main section.prx_newslist .wrapper ul li .details p button {
    border-radius: 60px;
    padding: 14px 40px;
    border: 1px solid #067df4;
    color: #067df4;
    font-size: var(--fontsize20px);
    background: #fff;
    font-weight: 400;
}
main section.prx_newslist .wrapper ul li p {
    width: 45%;
}
main section.prx_newslist .wrapper ul li p img {
    width: calc(100% - 20px);
}
main section.prx_newsdetails {
    padding: 100px 0px;
}
main section.prx_newsdetails .wrapper {
    max-width: 1920px;
    margin: 0px auto;
}
@media screen and (max-width: 700px) {
    main section.prx_newsdetails .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}
main section.prx_newsdetails .wrapper ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0px;
    padding: 0px;
}
main section.prx_newsdetails .wrapper ul li {
    list-style: none;
}
main section.prx_newsdetails .wrapper ul li:nth-child(1) {
    width: 70%;
    padding: 0px 50px 0px 0px;
}
main section.prx_newsdetails .wrapper ul li:nth-child(1) span {
    font-size: var(--fontsize20px);
    font-weight: 400;
    display: block;
    margin: 0px 0px 20px 0px;
}
main section.prx_newsdetails .wrapper ul li:nth-child(1) h2 {
    font-size: var(--fontsize64px);
    font-weight: 700;
    margin: 0px 0px 30px 0px;
}
main section.prx_newsdetails .wrapper ul li:nth-child(1) h3 {
    font-size: var(--fontsize40px);
    font-weight: 700;
    margin: 0px 0px 30px 0px;
}
main section.prx_newsdetails .wrapper ul li:nth-child(1) p {
    margin: 0px 0px 20px 0px;
    font-size: var(--fontsize20px);
    font-weight: 400;
}
main section.prx_newsdetails .wrapper ul li:nth-child(1) p img {
    width: 100%;
}
main section.prx_newsdetails .wrapper ul li:nth-child(2) {
    width: 30%;
    padding: 50px;
    background: #f8f8f8;
}
main section.prx_newsdetails .wrapper ul li:nth-child(2) > p.media {
    font-size: var(--fontsize20px);
    font-weight: 400;
    color: #067df4;
    margin: 0px 0px 80px 0px;
    padding: 5px 0px 5px 50px;
    background: url(../images/tag.svg) no-repeat 0% 50%;
    background-size: 30px auto;
}
main section.prx_newsdetails .wrapper ul li:nth-child(2) h4 {
    font-size: var(--fontsize20px);
    font-weight: 500;
    margin: 0px 0px 10px 0px;
}
main section.prx_newsdetails .wrapper ul li:nth-child(2) ul {
    margin: 0px;
    padding: 0px;
    display: block;
}
main section.prx_newsdetails .wrapper ul li:nth-child(2) ul li {
    list-style: none;
    width: 100% !important;
    margin: 0px 0px 70px 0px;
    padding: 0px !important;
}
main section.prx_newsdetails .wrapper ul li:nth-child(2) ul li span {
    font-size: var(--fontsize16px);
    font-weight: 400;
    display: block;
    margin: 0px 0px 10px 0px;
}
main section.prx_newsdetails .wrapper ul li:nth-child(2) ul li p {
    font-weight: 400;
    display: block;
}
main section.prx_newsdetails .wrapper ul li:nth-child(2) ul li p img {
    width: 100%;
}
main section.prx_news_single {
  padding: 100px 0px;
}
main section.prx_news_single .wrapper {
  max-width: 1920px;
  margin: 0px auto;
}
@media screen and (max-width: 1920px) {
  main section.prx_news_single .wrapper {
      padding-left: 80px;
      padding-right: 80px;
  }

}
@media screen and (max-width: 700px) {
  main section.prx_news_single .wrapper {
      padding-left: 20px;
      padding-right: 20px;
  }
}
main section.prx_news_single .wrapper > span {
  display: block;
  color: #000;
  font-size: var(--fontsize20px); 
  font-weight: 400;
}
main section.prx_news_single .wrapper h2 {
  padding: 25px 0px;
  font-size: var(--fontsize36px); 
  font-weight: 700;
  color: #000;
  margin: 0px;
}
main section.prx_news_single .wrapper h3 {
  font-size: var(--fontsize36px); 
  font-weight: 400;
  color: #000;
  margin: 0px;
  padding: 0px 0px 25px 0px;
}
main section.prx_news_single .wrapper h4 {
  font-size: var(--fontsize24px); 
  font-style: italic;
  font-weight: 600;
  line-height: normal;
  color: #000;
  margin: 0px;
  padding: 0px 0px 25px 0px;
}
main section.prx_news_single .wrapper h5 {
  font-size: var(--fontsize36px); 
  color: #000;
  font-weight: 700;
  line-height: normal;
  margin: 0px;
  padding: 25px 0px 25px 0px;
}
main section.prx_news_single .wrapper h6 {
  color: #000;
  font-size: var(--fontsize24px); 
  font-weight: 700;
  line-height: normal;
  padding: 25px 0px 25px 0px;
}
main section.prx_news_single .wrapper ul.programme {
  margin: 0px;
  padding: 0px 0px 25px 0px;
}
main section.prx_news_single .wrapper ul.programme li {
  list-style: none;
  margin: 0px 0px 15px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
main section.prx_news_single .wrapper ul.programme li label {
  display: block;
  color: #000;
  font-size: var(--fontsize20px); 
  font-weight: 700;
  line-height: normal;
  margin: 0px;
  min-width: 150px;
}
main section.prx_news_single .wrapper ul.programme li span {
  display: block;
  color: #000;
  font-size: var(--fontsize20px); 
  font-weight: 400;
  width: 25%;
}
main section.prx_news_single .wrapper ul.topics {
  margin: 0px;
  padding: 0px 0px 0px 30px;
}
main section.prx_news_single .wrapper ul.topics li {
  font-size: var(--fontsize20px); 
  margin: 0px 0px 20px 0px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
main section.prx_news_single .wrapper p button {
  background: #067df4;
  padding: 14px 40px;
  border-radius: 60px;
  color: #fff;
  font-size: var(--fontsize20px); 
  font-weight: 400;
  border: 0px;
}
main section.prx_news_single .wrapper .video {
  max-width: 1100px;
}
main section.prx_news_single .wrapper .video img {
  width: 100%;
}
main section.prx_news_single .wrapper .video iframe {
  width: 100%;
  height: 600px;
}
/*/tallawong-village-m css*/
body.proximanew-style.catalog-category-view .search-list .location .form-group label{
  display:none;
}
body.proximanew-style.catalog-category-view .search-list .type .form-group label{
    display:none;
  }
  body.proximanew-style.catalog-category-view .SearchBtn .form-group .empty-label{
    display:none;
  }
  body.proximanew-style.page-with-filter.page-products .proxima-project-list.overview-project-list {
    margin-top: 0px !important;
}
body.proximanew-style.catalog-category-view .proxima-product-grid .product-item .product-item-photo .product-image-container .location-box {
    right: 0.4rem;
    color: #4479ff;
}

/*custom css style*/
body.proximanew-style .page-main {
    background-color: #fff !important;
}
body.proximanew-style .proxima-project-list {
    background-color: #fff !important;
    padding-top: 0rem !important;
}
body.proximanew-style .flex-layout {
    flex-wrap: nowrap !important;
}
body.proximanew-style .page-main {
    background-color: transparent !important;
}
body.proximanew-style .propertylocations h2 {
    display: none;
}
body.proximanew-style .propertylocations {
    padding: 80px 80px 120px 80px;
}
body.proximanew-style .prx_sectionHeroSub.first .wrapper {
    padding-left: 80px;
    padding-right: 80px;
}
body.proximanew-style .header-container .header.links .language select {
    margin-right: 2rem !important;
    margin-top: 0.25rem;
}
body.proximanew-style .prx_sectionHeroSub.first h1 {
    line-height: 1.5;
    font-size: var(--fontsize96px);
    font-weight: 700;
    margin: 0px 0px 1px 0px;
    color: #fff;
}
body.proximanew-style .prx_sectionHeroSub.first h3 {
    font-size: var(--fontsize48px);
    font-weight: 400;
    color: #fff;
}
body.proximanew-style .ui-menu-item.level0 .level-top {
    text-transform: capitalize !important;
}
body.proximanew-style .main-nav li {
    list-style: none;
    padding: 0px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
body.proximanew-style .btn.signin-btn {
    background: #4479ff !important;
    color: #fff !important;
}
body.proximanew-style
    .nav-open
    body
    .proxima-header
    .navigation
    .submenu.level0
    .subchildmenu
    a,
body.proximanew-style .navigation .level0 > .level-top {
    text-transform: capitalize !important;
    font-weight: 500 !important;
    font-size: var(--fontsize14px) !important;
}

body.proximanew-style .search-block.project-search {
    padding: 100px 0 0 50px;
}
body.proximanew-style .proxima-header .navigation .level0 {
    margin-right: 0rem !important;
}
body.proximanew-style footer ul li p.subscribe span input[type="email"] {
    border-radius: 0px !important;
}
body.proximanew-style footer ul li p.subscribe span select {
    background-color: transparent !important;
}
body.proximanew-style footer ul li p.subscribe span select{
  background-image: url(../images/footer-dropdown.svg);
  background-repeat: no-repeat;
  background-position: right;
}
body.proximanew-style footer ul li img {
    display: block;
    width: 200px;
    margin: 0px 0px 50px 0px;
}
body.proximanew-style .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 10px;
}
body.proximanew-style .page-footer ul .links {
    margin: 0px 0px 0px 0px;
}

body.proximanew-style .proxima-product-overview-section .wrapper h1 {
    font-size: var(--fontsize96px);
    font-weight: 700;
    line-height: 140%;
    margin: 0px 0px 1px 0px;
    color: #fff;
}
body.proximanew-style
    .proxima-header
    .navigation
    ul
    > div:nth-child(2)
    ul
    li:last-child {
    border-right: 0 !important;
}
body.proximanew-style .proxima-product-overview-section .wrapper h3 {
    font-size: var(--fontsize48px);
    font-weight: 400;
    color: #fff;
}
body.proximanew-style footer ul li p.social label {
    font-size: var(--fontsize20px);
    font-weight: 700;
    color: #fff;
}
body.proximanew-style .proxima-product-overview-section .wrapper {
    padding-left: 40px;
    padding-right: 40px;
}
body.proximanew-style footer ul li h6 {
    font-size: var(--fontsize20px);
    font-weight: 700;
    color: #fff;
    margin: 0px 0px 10px 0px;
    text-transform: capitalize;
}
body.proximanew-style .btn:hover {
    background: #4479ff !important;
    border: 1px solid #4479ff !important;
    color: #ffffff;
}
.sectionbox p.btn {
    background-color: #4479ff !important;
    color: #fff;
    font-size: var(--fontsize20px);
}
body.proximanew-style main section.prx_sectionThree .wrapper ul li p.btns a {
    text-decoration: none;
}
body.proximanew-style .prx_sectionThree .btns .agent {
    color: #003530;
    background: #68d7ac;
}
body.proximanew-style .btns .buyers {
    color: #003530;
}
body.proximanew-style .btns .partners {
    color: #003530;
}
body.proximanew-style .contact-form .full.btns .btn {
    background-color: #4479ff;
    color: #fff;
    font-size: 20px !important;
    font-weight: 400;
    padding: 13px 41px !important;
}
body.proximanew-style .level-top.ui-state-active + .submenu.opened {
    display: block;
}
body.proximanew-style .level-top + .submenu {
    display: none;
}
body.proximanew-style main section.prx_sectionNine .wrapper li:nth-child(2) p {
    line-height: 23.46px;
    color: #000;
}
body.proximanew-style
    main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item {
    border: 2px solid #dddddd;
    min-height: 350px;
    height: calc(100%);
}
body.proximanew-style
    main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item:hover {
    border: 2px solid #4479ff;
}

#ajaxsuite-popup-wrapper {
    display: none;
}
#quickview-popup-wrapper {
    display: none;
}
body.proximanew-style main .prx_sectionTwo .sectionbox .btn {
    background-color: #4479ff;
    color: #fff;
    border: 1px solid #4479ff !important;
}
body.proximanew-style main .prx_sectionFive .video-section iframe {
    width: 100%;
    height: 719px;
}
body.proximanew-style main .search-block.project-search h5 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000 !important;
    text-transform: capitalize;
}
body.proximanew-style main .search-block-inner {
    border: none;
}
body.proximanew-style main .search-block.project-search .search-block-inner {
    padding: 0;
    top: 0;
}
body.proximanew-style main .search-block.project-search {
    margin-top: 3rem;
}
body.proximanew-style main .search-block .search-list li {
    margin-left: 0;
}
body.proximanew-style .search-block.project-search h5 {
    font-size: var(--fontsize48px);
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 0.5rem !important;
    margin-top: 0 !important;
    color: #000 !important;
    text-transform: capitalize;
}
body.proximanew-style .search-block.project-search .container {
    float: left;
}
body.proximanew-style .search-block .search-list li {
    margin-left: 0;
    margin-bottom: 0;
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    h2 {
    font-size: var(--fontsize64px);
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    p {
    font-size: var(--fontsize20px);
}
body.proximanew-style .contact .prx_sectionSix .contact span:nth-child(2) {
    line-height: 23px;
}
body.proximanew-style .search-block-main .search-block-inner {
    padding: 0;
    top: 0;
    background-color: transparent;
    border: none;
    position: relative;
}
body.proximanew-style .search-block-main .search-block-inner .breadcrumb {
    padding: 24px 0 20px 0;
}
body.proximanew-style .search-list .SearchBtn .main-search-button {
    background-color: #4479ff !important;
    border-radius: 0 !important;
    max-width: min-content;
    border: 2px solid #4479ff !important;
    padding: 5px 10px !important;
    box-shadow: 4px 4px 8px 0px #00000040 !important;
    min-height: 62px;
    min-width: 64px;
}
body.proximanew-style .search-list .text-input,
.dropdown-check-list2 {
    color: #000;
    border-radius: 00 !important;
    min-height: 62px;
    border: none !important;
}
body.proximanew-style .search-list li.type {
    width: auto !important;
    z-index: 9;
}
body.proximanew-style .search-list li.location {
    width: auto !important;
    min-height: 62px;
    max-height: 62px;
    box-shadow: 0px 4px 8px 0px #00000040 !important;
    min-width: 320px;
}
body.proximanew-style.cms-find-a-property .search-list {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
body.proximanew-style.cms-find-a-property
    .search-list
    .location
    .form-group
    label {
    display: none;
}
body.proximanew-style .dropdown-check-list2 .anchor2,
.dropdown-check-list .anchor {
    position: relative;
    cursor: pointer;
    display: inline-block;
    box-shadow: 1px 4px 8px 0px #00000040 !important;
    padding: 1.7rem 1rem 1rem 1rem !important;
    justify-content: center;
    min-width: 228px;
    border: none !important;
    min-height: 62px;
    max-width: 228px;
    font-size: 14px;
    text-transform: capitalize;
    background-color: #fff;
}
body.proximanew-style .dropdown-check-list .anchor {
   max-width: 228px;
   box-shadow: 1px 4px 8px 0px #00000040!important;
   color: #000;
   font-size: 16px;
}
body.proximanew-style .location .location-input .text-input {
    /* for responsive issue fix
    max-width: 408px;
    width: 408px !important; */
    font-size: 14px;
}
body.proximanew-style .location .location-input .text-input::placeholder {
  color: #000;
  }
body.proximanew-style .dropdown-check-list2 .anchor2:after{
  position: absolute;
  content: "";
  border-left: 1px solid black;
  border-top: 1px solid black;
  padding: 5px;
  right: 10px;
  top: calc(50% - 7.78px);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
body.proximanew-style .dropdown-check-list .anchor:after {
    position: absolute;
    content: "";
    border-left: 1px solid black;
    border-top: 1px solid black;
    padding: 5px;
    right: 10px;
    top: 34%;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
body.proximanew-style .budget .budget-input.select-input i {
    position: relative;
    top: -25px;
    bottom: 0;
    /* left: 5.35rem; */
    float: right;
    width: auto;
    padding-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #b8becc;
    font-size: 1.125rem;
    z-index: 5;
}
body.proximanew-style .dropdown-check-list2.visible {
    /* removed for responsive max-width: 228px; */
    position: relative;
}
body.proximanew-style
    .dropdown-check-list2.visible
    .items
    .range-slider
    .track--included {
    background: #0094ff;
}
body.proximanew-style .dropdown-check-list2.visible .anchor2 {
    color: #000;
}
body.proximanew-style .search-list .budget .range-slider {
    padding-top: 1rem;
}
body.proximanew-style .search-list .budget .items li:nth-child(1) {
    padding-bottom: 1rem;
}
body.proximanew-style .search-list .budget .items li:nth-child(2) {
    display: inline-flex;
    margin-bottom: 1rem;
}
body.proximanew-style #range_one_id {
    border-radius: 20px !important;
    margin-right: 10px !important;
}
body.proximanew-style .search-list .budget .items #range_two_id {
    border-radius: 20px !important;
    margin-left: 10px !important;
}
body.proximanew-style .search-list .budget .items li:nth-child(2) span {
    position: relative;
    top: 1rem;
}
body.proximanew-style .search-list .budget .items .range-slider .range-left {
    top: 10px;
    left: -1px;
}
body.proximanew-style .dropdown-check-list2 ul.items {
  padding: 13px;
  position: absolute;
  z-index: 99;
  background-color: #fff;
}
body.proximanew-style .dropdown-check-list ul.items {
    padding: 13px;
    z-index: 9;
    background-color: #fff;
    position: absolute;
}
body.proximanew-style .search-list .budget .items .range-slider .range-right {
    top: -5px;
    right: -1px;
}
/* body.proximanew-style main .prx_sectionHeroSub.second .wrapper h1 {
  font-size: var(--fontsize36px); 
}
body.proximanew-style main .prx_sectionHeroSub.second .wrapper h3 {
  font-size: var(--fontsize36px); 
} */
body.proximanew-style main .prx_sectionHeroSub.contact .wrapper h1 {
    font-size: var(--fontsize48px);
}
body.proximanew-style .prx_sectionEight.property.second .btn.green {
    color: #003530 !important;
}
body.proximanew-style .prx_sectionThree .btn.green {
    color: #003530 !important;
}
body.proximanew-style
    .form.contact.contact-form
    input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    font-size: var(--fontsize20px) !important;
}
body.proximanew-style .form.contact.contact-form select {
    font-size: var(--fontsize20px) !important;
}
/* body.proximanew-style.cms-agent_services
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    h2
    span {
    color: #68d7ac;
} */
body.proximanew-style.cms-agent_services
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    p.contact
    span
    a {
    color: #68d7ac;
}
body.proximanew-style .SearchBtn .btn-search.main-search-button .fa-search {
    font-size: 16px;
    color: #fff;
}
body.proximanew-style
    .SearchBtn
    .btn-search.main-search-button
    .fa-search:hover {
    color: #fff;
}
body.proximanew-style .header-container .header.links li select option {
    background-color: #7c7c7c !important;
    color: #fff !important;
}
body.proximanew-style
    section.prx_servicetodevelopers
    .wrapper
    > li:nth-child(3) {
    align-items: center;
}
body.proximanew-style.cms-find-a-property .bg-theme {
    background-color: #f8f8f8 !important;
    margin-top: -2rem;
}
body.proximanew-style.cms-find-a-property .SearchBtn .form-group .empty-label {
    display: none;
}
body.proximanew-style .featured-products-section h3.text-white.fw-700 {
    display: none;
}
body.proximanew-style input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    background-color: #0094ff !important;
    height: 15px;
    width: 15px;
}
body.proximanew-style .product_details .price-details{
  line-height: 2;
}
#property_types_main{
  max-width: 228px;
    box-shadow: 4px 4px 8px 0px #00000040!important;
    color: #000;
    font-size: 16px;
}
body.proximanew-style.catalog-category-view .search-block .search-list {
  margin-top: 20px;
}
/* find-a-property */
body.proximanew-style.cms-find-a-property .search-list .location .location-input .text-input::placeholder{
    color: #504A55;
    font-size: 14px;
    font-weight: 400;
    }
    body.proximanew-style.cms-find-a-property .search-list .dropdown-check-list2 .anchor2{
      font-size: 16px;
    }
    
    body.proximanew-style.cms-find-a-property .featured-product-owl .item-conainer .details-box h4 {
      font-size: 20px;
      font-weight: 500;
      color: #ffffff;
  }
  body.proximanew-style.cms-find-a-property .featured-product-owl .item-conainer .details-box h5, .featured-product-owl .item-conainer .details-box h5 a {
      margin-top: 0rem !important;
      margin-bottom: 0rem !important;
      font-size: var(--fontsize30px) !important;
      line-height: 112%;
      font-weight: 600;
      color: #ffffff !important;
  }
  body.proximanew-style .featured-products-section .price-details{
    font-size: 20px;
    padding: 10px 0;
    line-height: 2;
  }
.cms-find-a-property .featured-products-section.bg-theme .item-conainer .details-box {
    background: #0000004a;
    position: absolute;
    bottom: 0;
    color: #fff;
    bottom: 0.75rem!important;
    left: 0.75rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #fff !important;
    padding: 0.75rem 1rem;
    z-index: 5;
    border-radius: 20px;
    border: 0;
    width: 90%;
}
  /* find-a-property */

  /*sign-in*/
  body.customer-account-login .block-customer-login .block-content{
    padding-top: 1rem;
  }
  body.customer-account-login .login-container .block .block-content .fieldset>.field>.label{
    padding-bottom: 10px !important;
  }
  body.customer-account-login .login-container .block .block-content .field.note {
    padding-bottom: 2rem !important;
}
body.customer-account-login .login-container .block .block-content .fieldset>.field {
    padding-bottom: 1rem !important;
}
body.customer-account-login .login-container .block .block-content .actions-toolbar .secondary a:nth-child(1) {
    text-decoration: none;
    padding-bottom: 10px;
    padding-top: 6px;
}

body.cms-find-a-property .page-wrapper p .btn.blue{
    z-index: 9999999999 !important;
    position: relative;
}
/*ipad*/
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    body.proximanew-style main .prx_sectionHeroSub.contact .wrapper h1 {
        background-size: auto 78px;
        padding: 70px 0px 0px 120px !important;
        font-size: var(--fontsize24px);
    }
    body.proximanew-style main section.prx_sectionHeroSub .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    body.proximanew-style main section.prx_sectionTen .wrapper ul {
        grid-template-columns: repeat(2, 1fr);
    }
    body.proximanew-style main section.prx_sectionEight .wrapper h2 {
        width: 100%;
    }
    /* body.proximanew-style main section.prx_sectionEight .wrapper h3 {
        width: 100%;
    } */
    body.proximanew-style main section.prx_sectionEight .wrapper p {
        width: 100%;
    }
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation: landscape) {
    body.proximanew-style main .prx_sectionHeroSub.contact .wrapper h1 {
        background-size: auto 78px;
        padding: 70px 0px 0px 120px !important;
        font-size: var(--fontsize24px);
    }
    body.proximanew-style main section.prx_sectionHeroSub .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    body.proximanew-style main section.prx_sectionTen .wrapper ul {
        grid-template-columns: repeat(2, 1fr);
    }
    body.proximanew-style main section.prx_sectionEight .wrapper h2 {
        width: 100%;
    }
    body.proximanew-style main section.prx_sectionEight .wrapper p {
        width: 100%;
    }
}

/*owl carousel button*/
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button {
    transform: unset !important;
    position: unset !important;
    -webkit-transform: unset !important;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button {
    color: #4479ff;
    -webkit-text-fill-color: #4479ff;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button:active,
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button:focus,
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button:hover {
    background-color: #4479ff !important;
    color: #fff;
    -webkit-text-fill-color: #fff !important;
}
/* main section.prx_sectionFive .wrapper .owl-carousel#testimonials .owl-dots, */
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-nav
    button
    span {
    display: none;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-nav
    button {
    transform: unset !important;
    position: unset !important;
    -webkit-transform: unset !important;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-nav
    button.owl-prev {
    display: none !important;
}
main section.prx_sectionFive .wrapper .owl-carousel#moretestimonials .owl-nav {
    top: 115px;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#testimonials
    .owl-dots
    .owl-dot
    span {
    display: none;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-nav
    button {
    background-image: url("../images/rightarrow.svg");
    border: none;
    background-repeat: no-repeat;
    background-size: contain;
    color: #4479ff;
}
main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-nav
    button::before {
    display: none;
}
/* owl-carousel style fix */

/* What is my borrowing capacity new style */
body.proximanew-style section.prx_borrowingcapacity .wrapper h2 {
    font-family: "Work Sans", sans-serif !important;
    color: #00181f;
  }
  body.proximanew-style
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    span
    input[type="text"],
    body.proximanew-style
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    span
    input[type="number"],
    body.proximanew-style
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    span
    select,
  main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second
    li
    span
    input[type="text"] {
    border-bottom: 1px solid #4479ff !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    line-height: normal;
  }
  body.proximanew-style
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.first
    li
    span
    div#errorMessages_rate {
    display: inline;
  }
  
/* What is my borrowing capacity new style */

/* for outcomes */
main section.prx_outcomes .wrapper h3 {
    margin: 0px;
    font-size: var(--fontsize64px);
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 0em;
    text-align: left;
    width: 29%;
}
main section.prx_outcomes .wrapper > div {
    width: 50%;
}
main section.prx_outcomes .wrapper > div h2 {
    font-size: var(--fontsize36px);
    font-weight: 700;
    margin-bottom: 15px;
}
main section.prx_outcomes .wrapper > div p {
    line-height: 23px;
    font-size: var(--fontsize20px);
    font-weight: 400;
}
/* for outcomes */
body.proximanew-style .logo-site .logo {
    position: relative;
    top: 5px;
    width: 130px;
}

/* Header new style */
.proximanew-style .proxima-header .right-main-nav ul li .signin-btn {
    background-color: #4479ff !important;
    border-radius: 61px !important;
    font-size: var(--fontsize20px) !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: unset !important;
    padding: 6px 41px !important;
    height: 35px !important;
    max-height: 35px !important;
    border: 0 !important;
    color: #fff !important;
}
.proximanew-style
    .proxima-header
    .right-main-nav
    ul
    li
    .signin-btn::first-letter {
    text-transform: uppercase !important;
}
.proximanew-style
    .header-container
    .header.links
    li.ui-menu-item:is(:nth-child(4))
    a.signin-btn:hover,
.proximanew-style .proxima-header .right-main-nav ul li .signin-btn:hover {
    background-color: #fff !important;
    color: #4479ff !important;
    border: 0px solid #fff !important;
}
.proximanew-style
    .header-container
    .header.links
    li.ui-menu-item:is(:nth-child(3))
    a.signin-btn {
    background-color: #fff !important;
    color: #4479ff !important;
}
/* .proxima-header .right-main-nav ul li.letstalk .btn{
  background-color: #FFF !important;
    color: #000000 !important;
    font-size: var(--fontsize15px) ;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: unset !important;
    padding: 6px 30px !important;
    height: 26px !important;
    max-height: 26px !important;
}
.proxima-header .right-main-nav ul li.letstalk .btn::first-letter{
  text-transform: uppercase !important;
}
.proxima-header .right-main-nav ul li.letstalk .btn:hover{
  color: #FFF;
  background-color: #000000;
} */
/* Header new style */

/* New style change after html implementation */
.btn.blue {
    background-color: #4479ff !important;
}
.btn.blue:hover {
    background-color: #4479ff !important;
}
/* New style change after html implementation */



body.proximanew-style .proxima-header .navigation .level0 a.active,
body.proximanew-style .proxima-header .navigation .level0 a:active,
body.proximanew-style .proxima-header .navigation .level0 a:hover {
    color: #fff !important;
}
/* header menu style */

/* 
Header dropdown alignment and header section*/
body.proximanew-style .proxima-header .navigation .level0 .submenu li {
    border: 0;
}
body.proximanew-style main.page-main-full-width a#contentarea {
    display: none;
}
body.proximanew-style .proxima-header .logo-container {
    padding-right: 25px;
}
body.proximanew-style .proxima-header .sticky-header {
    width: 100%;
}
body.proximanew-style .proxima-header .sticky-header .for-full-width-menu {
    justify-content: flex-start;
}
body.proximanew-style .proxima-header .panel.custom-container {
    max-width: 1850px !important;
    width: 95% !important;
    padding: 0 !important;
}
body.proximanew-style .proxima-header .navigation ul > li > a.level-top {
    font-family: "Work Sans", sans-serif !important;
}
@media (min-width: 1200px) and (max-width: 1510px) {
  body.proximanew-style .proxima-header .sticky-header{
    position: absolute;
    top: 45px;
  }
  body.proximanew-style .flex-layout.for-full-width-menu{
  padding: 0.5rem 0 !important;}
  body.proximanew-style .flex-layout.menu-container{
    padding: 1.5rem 0 !important;
  }
  body.proximanew-style .proxima-header{
    height: 8rem !important;
  }
  main section.prx_sectionHeroSub .wrapper div.breadcrumb .pagination ,
  main section.prx_sectionHeroSub .wrapper div.breadcrumb,
main section.prx_sectionHeroSub .wrapper div.breadcrumb .pagination li{
    margin: 0;
}
}


/* 
  Header dropdown alignment and header section*/
main section.prx_sectionHero .wrapper h1 span {
    z-index: 0;
    position: relative;
}
main section.prx_sectionHero .wrapper h1 span::after {
    content: "";
    background: url(../images/underlineblue.svg) no-repeat;
    z-index: -1;
    background-size: 100%;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 1rem;
    left: 0;
    bottom: -6px;
}
/* 
  animation slider home page */
@keyframes rotate-image {
    0% {
        background: url(../images/heroround.png) no-repeat 100% 100%;
        background-size: calc(100% - 80px) auto;
    }
    50% {
        background: url(../images/heroround2.png) no-repeat 100% 100%;
        background-size: calc(100% - 80px) auto;
    }
    100% {
        background: url(../images/heroround3.png) no-repeat 100% 100%;
        background-size: calc(100% - 80px) auto;
    }
}
/* 
  animation slider home page */

/*about page new style*/
body.proximanew-style section.prx_sectionEight .wrapper p a.btn {
    margin-top: 45px;
}
body.proximanew-style section.prx_sectionFive .wrapper h2 {
    font-size: var(--fontsize64px);
}
body.proximanew-style
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    input::placeholder {
    color: #373737;
    font-size: var(--fontsize20px); 
    font-weight: 400;
}
main section.prx_sectionNine .wrapper li:nth-child(2) h4:nth-of-type(1) {
    max-width: max-content;
}
/*about page new style*/

main
    section.prx_sectionFive
    .wrapper
    .owl-carousel#moretestimonials
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    span.prfpic
    iframe {
    width: 100%;
}

main section.prx_sectionHeroSub.connect {
    padding: 200px 0px 60px 0px;
    background: url(../images/connect.png) no-repeat 50% 50%;
    background-size: cover;
}
main section.prx_sectionHeroSub.news {
    padding: 200px 0px 60px 0px;
    background: url(../images/news.png) no-repeat 50% 50%;
    background-size: cover;
}

/* @media screen and (min-width: 767px){ 
        main section.prx_sectionHero .wrapper h1{
          background-size: auto 95px !important;
          padding: 111px 0px 0px 135px !important;
        }
       } */

/* media query css for new pages */

/* breadcrumb section */
main section.prx_sectionHeroSub .wrapper div.breadcrumb span.active-tab {
    text-decoration: underline;
    cursor: pointer;
}
main section.prx_sectionHeroSub .wrapper div.breadcrumb span.crumb-arrow {
    padding: 0px 10px;
}
/* breadcrumb section */
/* accordion section */
main
    section.prx_outcomes
    .wrapper
    .accordion
    .accordion-item
    h2
    .accordion-button:not(.collapsed),
main
    section.prx_outcomes
    .wrapper
    .accordion
    .accordion-item
    h2
    button.accordion-button:hover {
    color: #000 !important;
}
/* accordion section */
.proximanew-style .proxima-product-banner {
    background-position: bottom;
    padding: 150px 0 85px 0 !important;
    background-repeat: repeat;
}

.position-rel {
    position: relative;
}
.prx_borrowingcapacity .wrapper ul li ul li span.position-rel img {
    position: absolute;
    right: 40px;
    top: 25px;
}
/* new button style change */
main section button.btn-tag a {
    text-decoration: none;
    font-weight: 400;
    font-size: var(--fontsize16px);
    line-height: 16px;
    color: inherit;
}
main section button.btn-tag a:visited {
    color: inherit;
}
main section button.btn-tag {
    color: #4479ff;
    background-color: #fff;
    padding: 0.813rem 2.563rem;
    border-radius: 3.813rem;
    border: 1px solid;
    border-color: transparent;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    text-transform: capitalize;
}
main section button.btn-tag {
    background: #4479ff;
    color: #fff;
}
main section button.btn-tag:hover {
    color: #fff;
    background-color: #4479ff;
    font-weight: 600;
}
main section button.btn-tag.blue {
    color: #fff;
    background-color: #4479ff;
}
main section button.btn-tag.blue:hover {
    color: #4479ff;
    background-color: #fff;
    border-color: #4479ff;
}
main.agent-tab section button.btn-tag {
    color: #fff;
    background: #68d7ac;
}
main.agent-tab section button.btn-tag:hover {
    color: #68d7ac;
    background: #fff;
    border-color: #68d7ac;
}
main.developer-tab section button.btn-tag {
    color: #fff;
    background: #9900ff;
}
main.developer-tab section button.btn-tag:hover {
    color: #9900ff;
    background: #fff;
    border-color: #9900ff;
}
main.buyer-tab section button.btn-tag {
    color: #fff;
    background: #f6e586;
}
main.buyer-tab section button.btn-tag:hover {
    color: #f6e586;
    background: #fff;
    border-color: #f6e586;
}
main.partner-tab section button.btn-tag {
    color: #fff;
    background: #ea7b10;
}
main.partner-tab section button.btn-tag:hover {
    color: #ea7b10;
    background: #fff;
    border-color: #ea7b10;
}
/* new button style change */
main
    section.prx_marketingsupport
    .wrapper
    #marketing.owl-carousel
    .owl-dots
    .owl-dot
    span {
    display: none;
}
main section .wrapper .owl-carousel:is(#testimonials, #marketing) .owl-nav {
    gap: 8px !important;
}
main
    section
    .wrapper
    .owl-carousel:is(#testimonials, #marketing)
    .owl-nav
    button::before {
    content: "\e626";
    font-weight: 600;
    font-size: 15px;
    color: #4479ff;
}

/* new changes 24/10/23 */
main section.prx_sectionTwo .wrapper .sectionbox p {
    max-width: 470px;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    span
    input[type="text"] {
    font-size: var(--fontsize36px);
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    span
    select {
    font-size: var(--fontsize20px);
}
main section.prx_sectionThree .wrapper ul li p:nth-of-type(1) {
    padding: 25px 0px 0px 0px;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li span select,
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li span input {
    min-height: 77px;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li span textarea {
    padding: 30px 10px !important;
}
.prx_sectionSeven
    .wrapper
    #companies.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    img,
main
    section.prx_sectionSeven
    .wrapper
    #companies.owl-carousel
    .owl-stage-outer
    .owl-stage
    .owl-item
    .item
    img {
    height: 110px;
    object-fit: contain;
}
main section.prx_sectionHeroSub.banner-height {
    display: flex;
    margin: 0;
    padding: 0;
    min-height: 355px;
}
main section.prx_sectionHeroSub.banner-height .wrapper {
    padding: 0;
    margin: 0 auto;
    margin-left: 6.25rem;
    padding-top: 3.125rem;
}
body.proximanew-style .form.contact.contact-form div.arrow-down {
    width: 0px;
    height: 0px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #000;
    position: absolute;
    right: 15px;
    top: calc(100% - 45px);
}
main
    section.prx_outcomes
    .wrapper
    .accordion
    .accordion-item
    h2
    button.accordion-button::before {
    content: "\e616";
    transition: transform 0.2s ease-in-out;
    transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    font-size: 40px;
    color: #000;
    font-family: "icons-blank-theme";
    position: absolute;
    right: 0;
}
main
    section.prx_outcomes
    .wrapper
    .accordion
    .accordion-item
    h2
    button.accordion-button.collapsed::before {
    content: "\e616";
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: transform 0.2s ease-in-out;

}
main
    section.prx_outcomes
    .wrapper
    .accordion
    .accordion-item
    h2
    button.accordion-button::after {
    display: none;
}

/* featured-products-section  new design change */
.proximanew-style .featured-products-section.bg-theme {
    background-color: #f8f8f8 !important;
}
.proximanew-style
    .featured-products-section.bg-theme
    .featured-product-slider-container::before {
    background-color: #f8f8f8 !important;
}
.proximanew-style
    .featured-products-section.bg-theme
    .item-conainer
    .location-text {
    position: relative;
    top: -25px;
    display: inline-block;
    left: calc(100% - 285px);
    padding: 13px 41px 13px 41px;
    border-radius: 61px;
    background-color: #fff;
    font-size: var(--fontsize20px); 
    font-weight: 400;
}
.proximanew-style
    .featured-products-section.bg-theme
    .item-conainer
    .details-box {
    padding: 28px 29px 35px 30px;
}
.proximanew-style
    .featured-products-section.bg-theme
    .item-conainer
    .details-box
    h3 {
    font-size: var(--fontsize32px);
    font-weight: 400;
    margin: 0 0px 10px 0px !important;
}
.proximanew-style
    .featured-products-section.bg-theme
    .item-conainer
    .details-box
    h3
    span {
    float: right;
    font-weight: 700;
    font-size: var(--fontsize20px);
}
.proximanew-style
    .featured-products-section.bg-theme
    .item-conainer
    .details-box
    h5
    a {
    color: #000;
    text-decoration: none;
    font-size: var(--fontsize20px);
    width: 100%;
}
.proximanew-style
    .featured-products-section.bg-theme
    .item-conainer
    .details-box
    .property-features
    .specifications-list {
    align-items: center;
}
.proximanew-style
    .featured-products-section.bg-theme
    .item-conainer
    .details-box
    .property-features
    .list-inline-item {
    font-size: var(--fontsize16px);
}
.proximanew-style .featured-products-section.bg-theme .item-conainer .location-text{
  position: relative;
  top: -82px;
  display: inline-block;
  left: calc(100% - 277px);
  padding: 13px 41px 13px 41px;
  border-radius: 61px;
  background-color: #fff;
  font-size: 20px;
  font-weight: 400;
  color:#4479FF;
}
.proximanew-style .featured-products-section.bg-theme .item-conainer .location-text .fa-map-marker-alt{
 padding-left:5px;
}
.proximanew-style .featured-products-section.bg-theme .item-conainer .details-box{
  padding: 28px 28px 28px 28px;
  border: 1px solid #00000040
}

.proximanew-style .featured-products-section.bg-theme .item .item-conainer{
  background-color: #fff;
  width: calc(100% - 1.875rem);
  overflow: hidden;
}
.proximanew-style .featured-products-section.bg-theme .img-box{
    /* max-height: 554px; */
    height: 380px 
  }
  .featured-product-owl .item-conainer img{
    width: 100%;
    object-fit: cover;
    height: 100%;
  }
.proximanew-style .featured-products-section {
  padding: 0; 
}
/* featured-products-section  new design change */
main.connect-tab section.prx_proximahub .wrapper .tabbox p.tab .tablinks.active {
  background-color: #EA7B104D;
}
main.connect-tab section.prx_proximahub .wrapper .tabbox p.tab{
  border: 1px solid #000;
  justify-content: center;
  align-items: center;
  margin: 0px auto 20px auto;
  width: fit-content;
  gap: 44px;
  border-radius: 71px;
}
main.connect-tab section.prx_proximahub .wrapper .tabbox .tabcontent ul{
  grid-template-columns: repeat(2, 1fr);
}
main.connect-tab  section.prx_proximahub .wrapper .tabbox .tabcontent ul li > ul{
  display: block;
  padding: 2.188rem 0px 0px 2.188rem;
}
main.connect-tab section.prx_proximahub .wrapper .tabbox .tabcontent ul li > ul li{
  padding: 0 !important;
  margin: 0 0px 5px 0px !important;
  font-size: var(--fontsize24px);
  font-weight: 400;
  list-style: disc;
  line-height: 26px;
}
.cms-proxima-hub main section.prx_proximahub .wrapper .tabcontent > h2{
  position: absolute;
    top: 0;
    left: 0;
    padding: 0px 100px !important;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul li > p:nth-of-type(2){
  padding-top: 10px;
}
main.connect-tab .btn-tag{
  background: #EA7B10;
    color: #003530;
}
main.connect-tab .btn-tag:hover{
  background: #fff !important;
    color: #EA7B10;
    border-color: #EA7B10 !important;
}
/* Projects for sale search*/
body.proximanew-style .dropdown-check-list .anchor{
    min-width: 228px;
    width: 100%;
}
body.proximanew-style .dropdown-check-list2 .anchor2{
    min-width: 275px;
    width: 100%;
}
body.proximanew-style .location .location-input .autocomplete{
    min-width: 408px;
    width: 100%;
}
body.proximanew-style .dropdown-check-list .anchor,
body.proximanew-style .dropdown-check-list2 .anchor2{
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
}
body.proximanew-style .dropdown-check-list .anchor input,
body.proximanew-style .dropdown-check-list2 .anchor2 input{
    border: 0;
}
body.proximanew-style .dropdown-check-list2 .anchor2 input::placeholder{
    color: #000 !important;
}








main section.prx_marketingsupport .wrapper {
    padding-left: 0px;
    padding-right: 0px;
}
main section.prx_marketingsupport .wrapper > ul {
    display: block;
}


/*New footer internal css*/

textarea{
    line-height: 110%;
}
select, input{
    line-height: 110%;
}
a{
    text-decoration: unset;
}

.btn.green {
    color: #fff !important;
    background-color: #68D7AC !important;
}

.semi-highlight {
    font-weight: bold;
}

.semi-p {
    width: 65%;
}

main section.prx_news_single .wrapper p button {
    background: #4479ff;

}
main section.prx_news_single .wrapper p button a{
    font-size: var(--fontsize20px);
    line-height: 20px;
}
.btn-proxima-primary {
    background-color: #4479FF;
    color: #fff;
    border: 1px solid #4479FF!important;
}

a.btn.green {
    color: #000;
}
.elmt-header.proxima-header .right-main-nav .language{
    display: none;
}

body.proximanew-style .proxima-header .navigation ul > div:nth-child(2) ul li:last-child {
    border-right: 0 !important;
}
body.proximanew-style .navigation .level0:nth-child(6){
    border-right: 0 !important;
}

body.proximanew-style.cms-agent_services section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact span a {
    color: #4479ff;
}
.proximanew-style .header-container .header.links li.ui-menu-item:is(:nth-child(3)) a.signin-btn {
    background-color: #fff !important;
    color: #000 !important;
}
.proximanew-style .header-container .header.links li.ui-menu-item:is(:nth-child(3)) a.signin-btn:hover {
    background-color: #4479ff !important;
    color:  #fff!important;
}
.proximanew-style .header-container .header.links li.ui-menu-item:is(:nth-child(4)) a.signin-btn {
    background-color: #fff !important;
    color: #000 !important;
}


main section.prx_sectionTwo .wrapper .sectionbox p {
    max-width: unset;
}

main section.prx_sectionTwo .wrapper .sectionbox .semi-highlight{
    display: block;
}

/* main section.prx_sectionTwo .wrapper:before {
    width: 55%;
} */

main section.prx_sectionThree {
    padding: 15rem 10px 100px 0px;
}

/* main section.prx_sectionTwo .wrapper .sectionbox h3 {
    font-size: var(--fontsize32px);
} */

main section.prx_sectionTwo .wrapper .sectionbox h2 span {
    max-width: 100%;
}

main section.prx_sectionTwo .wrapper .sectionbox h2 span {
    font-size: var(--fontsize48px);
    line-height: 112%;
    margin-top: 10px;
}
main section.prx_sectionTwo .wrapper .sectionbox p {
line-height: 24px;
width: 93%;
}
main section.prx_sectionTwo .wrapper { 
padding: 220px 0px 0px 0px;
}
 

/* main section.prx_sectionTwo .wrapper .sectionbox p {
    font-size: var(--fontsize22px);
} */

/* main section.prx_sectionThree .wrapper h2 {
    font-size: var(--fontsize60px);
} */

/* main section.prx_sectionThree .wrapper p {
    font-size: var(--fontsize20px);
} */

/* main section.prx_sectionThree .wrapper ul li h3 span {
    font-size: var(--fontsize20px);
} */

/* main section.prx_sectionFive .wrapper ul.first>li:nth-child(1) p {
    font-size: var(--fontsize24px);
} */

main section.prx_sectionFive .wrapper .owl-carousel#moretestimonials .owl-stage-outer .owl-stage .owl-item .item:hover * {
    color: #000 !important;
}

main section.prx_sectionFive .wrapper .owl-carousel#testimonials .owl-stage-outer .owl-stage .owl-item .item h4 {
    font-size: var(--fontsize18px);
}


/** About page */
main section.prx_sectionEight .wrapper p span {
    display: inline;
    font-weight: bold;
}

/* main section.prx_sectionNine .wrapper li:nth-child(2) h4 {
    max-width: 580px;
} */

main section.prx_sectionNine .wrapper li:nth-child(2) p {
    max-width: 500px;
}

main section.prx_sectionNine .wrapper li:nth-child(2) h3.second {
    margin-top: 85px;
}

main section.prx_sectionTen .wrapper ul li h4 {
    font-size: var(--fontsize25px);
}

/* main section.prx_sectionEight .wrapper h2 {
font-size: var(--fontsize64px);
}
main section.prx_sectionEight .wrapper h3 {
font-size: var(--fontsize28px);
}
main section.prx_sectionEight .wrapper p {
font-size: var(--fontsize16px);
}

main section.prx_sectionEight .wrapper p a.btn {
padding: 10px 30px !important;
}
main section.prx_sectionNine .wrapper li:nth-child(2) h3 {
font-size: var(--fontsize36px);
margin: 0px 0px 10px 0px;
}
main section.prx_sectionNine .wrapper li:nth-child(2) h4 {
font-size: var(--fontsize18px);
margin: 0px 0px 25px 0px;
}
main section.prx_sectionNine .wrapper li:nth-child(2) p {
font-size: var(--fontsize16px); 
width: 70%;
}
main section.prx_sectionEight .wrapper {
padding-top: 6rem;
}
main section.prx_sectionNine .wrapper li:nth-child(2) h3.second {
margin-top: 3rem;
}
main section.prx_sectionNine .wrapper li:nth-child(2) h4 {
width: 69%;
} */

/** For Project page */
.proxima-product-banner {
    padding: 0rem 0rem 0rem 0rem !important;
    /* min-height: 60vh; */
    background-size: 100%;
    background-repeat: no-repeat;
    height: auto;
    min-height: unset;
}


body.page-products.categorypath-projects.category-projects .product-item .details-inner .product-item-name a {
    font-size: 30px;
}
body.proximanew-style .product_details .price-details { 
    font-size: 20px;
    padding: 10px 0;
}
body.proximanew-style .product_details .location-box{
    font-size: 20px;

}
/* .prx_sectionHeroSub.first .wrapper {
    padding-top: 200px;
    padding-bottom: 60px;
} */

body.proximanew-style .prx_sectionHeroSub.first h1 {
    font-size: var(--fontsize60px);
}

body.proximanew-style .prx_sectionHeroSub.first h3 {
    font-size: var(--fontsize36px);
}

.proxima-product-banner:before {
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%);
}

.search-block .select-input select option {
    background-color: #fff;
}

main section.prx_buyinvest .wrapper>li h2 {
    font-size: var(--fontsize50px);
}

main section.prx_buyinvest .wrapper>li>ul {
    padding-left: 0;
}

body.page-products.categorypath-projects.category-projects .proxima-project-list .product-items .product-item .product-item-info .product-item-photo::after {
    background: transparent !important;
}
body.page-products.categorypath-projects.category-projects .proxima-project-list .product-items .product-item-info .product_details {    
background-color: #0000004a !important;
}

/** Other pages */
#contact-form .btn-tag.blue{
    background-color: #4479ff !important;
}
main section.prx_advantage .wrapper ul li h3 {
    font-size: var(--fontsize60px);
    max-width: unset;
}

main section.prx_advantage .wrapper ul li h3 span {
    font-size: var(--fontsize60px);
}

main section.prx_proximahub .wrapper .tabbox .tabcontent ul li h3 {
    font-size: var(--fontsize50px);
}

main section.prx_advantage .wrapper ul li h3 {
    font-size: var(--fontsize64px);
}

main section.prx_advantage .wrapper ul li p.bld {
    font-size: var(--fontsize26px);
}

main section.prx_advantage .wrapper ul li p.btns .btn.grnoutline {
    border: 1px solid #68D7AC;
    background: #fff;
    color: #003530;
}

main section.prx_sellwith .wrapper p {
    width: 70%;
}

main section.prx_sellwith .wrapper h3 {
    font-size: var(--fontsize48px);
}


main section.prx_sellwith .wrapper p {
    width: 88%;
}
.copy-right-section p,
.copy-right-section p a {
    font-weight: 500;
    font-size: 1.25rem;
    color: #fffafa;
    margin-bottom: 0;
}
main section.prx_business .wrapper h2 {
    max-width: 1240px;
}

main section.prx_business .wrapper ul li p {
    font-size: var(--fontsize22px);
}

main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
}

main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-dots .owl-dot.active {
    background: #4479FF;
    width: 45px !important;
    border-radius: 12px;
    height: 15px;
}

main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-dots {
    left: 0;
}

main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-nav {
    right: 0;
}

main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-nav button {
    position: unset;
    -webkit-transform: unset !important;
}

main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-nav button {
    position: unset;
    -webkit-transform: unset !important;
}

main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-nav button span,
main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-nav button span,
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    display: none;
}

main section.prx_marketingsupport .wrapper #marketing.owl-carousel .owl-nav button:hover {
    background-color: #4479FF !important;
    color: #fff;
    -webkit-text-fill-color: #fff !important;
}

body.proximanew-style.cms-find-a-property .bg-theme {
    background-color: #f8f8f8 !important;
    margin-top: 6rem;
}
.cms-find-a-property  .featured-products-section.bg-theme .item-conainer .details-box {
    background: #0000004a;
    position: absolute;
    bottom: 0;
    color: #fff;
}

main section button.btn-tag.blue:hover {
    color: #fff!important;
    border-color: #4479ff!important;
}
main section button.btn-tag.blue.blue-hover:hover{
    background-color: #4479ff!important
}
main section button.btn-tag.blue:hover a{
    color: #fff!important;
}
.cms-find-a-property  .icon-details .fas.fa-pencil-ruler{
    display: none;
}
.cms-find-a-property  .icon-details  .fa-map-marker-alt.text-primary{
    color: #fff !important;
}
body.microsite-agent-website .proxima-header-page-layout .wrapper ,
  body.microsite-agent-website .proxima-header-page-layout.sticky .wrapper {
    padding-left: 80px !important;
    padding-right: 80px !important;

  }
  body.microsite-agent-website .proxima-header-page-layout .wrapper  .microsite_logo_image img,
  body.microsite-agent-website .proxima-header-page-layout.sticky .wrapper  .microsite_logo_image img{
    max-height: 100% !important;
    background: transparent !important;
  }


  main section.prx_proximahub .wrapper .tabbox .tabcontent ul li > p:nth-of-type(2){
    padding-top: 30px !important;
}
  .cms-proxima-hub main section.prx_proximahub .wrapper .tabcontent > h2{
    padding: 0px 100px;
  }
  /*Project for sale*/
body.proximanew-style .product_details .price-details {
padding: 6px;
}

body.proximanew-style.page-products.categorypath-projects.category-projects .proxima-product-grid .product-item {
min-height: 300px !important;
}

body.proximanew-style section.prx_borrowingcapacity .wrapper>ul>li:nth-child(2) ul.first li span input[type="number"] {
border-bottom: 1px solid #4479ff !important;
border-bottom-left-radius: 0 !important;
border-bottom-right-radius: 0 !important;
line-height: normal;
border: none;
}

.featured-products-section .featured-product-slider-container:after {
position: absolute;
content: "";
top: 0;
left: 100%;
width: 100%;
height: 100%;
background-color: #f8f8f8 !important;
z-index: 10;
}

body.proximanew-style.page-products.categorypath-projects section.prx_borrowingcapacity .wrapper>ul>li:nth-child(2) ul.first li:nth-child(2) span {
display: inline-flex;
}

body.proximanew-style.page-products.categorypath-projects section.prx_borrowingcapacity .wrapper>ul>li:nth-child(2) ul.first li:nth-child(2) span img {
height: 22px;
position: relative;
top: 1rem;
}

body.proximanew-style.page-products.categorypath-projects .prx_borrowingcapacity ul .first span .input-type_type {
position: relative;
top: 1rem;
left: -8rem !important;
}


/*Sell with Proxima*/
body.proximanew-style #accordionExample p.btns button.btn-tag.blue:hover a {
color: #4479ff !important;
border-color: #4479ff !important;
}


/*interest rate style*/
body.proximanew-style.cms-find-a-property section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) ul.first li:nth-child(2) span {
display: inline-flex;
}
body.proximanew-style.cms-find-a-property section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) ul.first li:nth-child(2) span img{
height: 22px;
position: relative;
top: 1rem;
}
body.proximanew-style.cms-find-a-property .prx_borrowingcapacity ul .first span .input-type_type{
position: relative;
top: 1rem;
left: -8rem!important;
}

/*project card font size*/


main section.prx_connect .wrapper {
    padding-bottom: 100px !important;
}

body.proximanew-style main section.prx_buyinvest .wrapper>li>ul {
    height: auto !important;

}
body:not(.microsite-agent-website) > .main-container section:is(.prx_four, .prx_six, .prx_eight, .prx_one){
    background-size: 70% !important;
}
.products.wrapper~.toolbar .limiter .limiter-text{
    display: none !important;
}

/*Footer Section*/
footer {
    padding: 100px 0px!important;
}
body.proximanew-style footer ul li p button#newsletter-validate-detail {
    background-color: #ffffff;
    color: #000000;
    font-family: "Work Sans", sans-serif;
    font-size: var(--fontsize20px);
    font-weight: 400;
    text-align: right;
    padding: 6px 41px !important;
}
body.proximanew-style footer ul li:nth-child(2) div {
    display: flex;
    justify-content: center;
    margin-top: 107px;
}
body.proximanew-style footer ul li h6:nth-child(1) {
    margin-top: 107px;
}
body.proximanew-style footer ul li p.links span a {
    text-decoration: none;
}
body.proximanew-style footer ul li p.subscribe span select option {
    color: #000 !important;
    font-size: var(--fontsize16px);
    font-weight: 400 !important;
}
#newsletter-validate-detail:hover{
    color: #ffffff!important;
    }
/*Footer Section*/


main section.prx_borrowingcapacity .wrapper .Disclaimer{
    margin: 40px 0;
    max-width: fit-content;
}
main section.prx_borrowingcapacity .wrapper .Disclaimer p{
    line-height: 25px;
    font-size: 16px;
    font-weight: 500;
}
main section.prx_borrowingcapacity .wrapper .Disclaimer span{
    font-weight: 700;
    font-size: 18px !important;
    margin-right: 10px;
}
/* Disclaimer style fix */
body.cms-agent_services .prx_sectionThree .wrapper a{
    text-decoration: none;
    }
body.cms-developer_services  .prx_sectionThree.devlpment {
      padding: 0rem 10px 100px 0px;
}
body.cms-developer_services .prx_sectionThree .wrapper a{
    text-decoration: none;
    }
    .cms-find-a-property .icon-details .fa-map-marker-alt.text-primary::before{
        margin-right: 5px;
    }
    body.proximanew-style footer ul li p.subscribe span input[type="email"]::placeholder{
        color: #fff;
    }
/*mediaquery sections*/
/*mediaquery for 1200 above*/
@media (min-width: 1200px) {
    body.proximanew-style .proxima-header .navigation > ul {
        height: 20px !important;
    }
    body.proximanew-style .proxima-header .navigation .submenu {
        width: max-content;
        min-width: max-content;
        left: -30px;
        background: rgba(0, 0, 0, 0.5) !important;
    }
    body.proximanew-style .proxima-header .navigation ul .parent .submenu {
        min-width: 175px;
        padding: 10px 15px !important;
    }
    body.proximanew-style .proxima-header .navigation .submenu > div {
        width: fit-content;
    }
    body.proximanew-style .proxima-header .navigation .submenu ul.subchildmenu {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .menu-item-has-children.parent {
        position: relative;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .menu-item-has-children.parent:hover {
        border: none !important;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .submenu
        ul.subchildmenu
        li.ui-menu-item {
        width: 100%;
        border-right: 0 !important;
    }
    body.proximanew-style .proxima-header .navigation ul > li > a.level-top {
        font-size: 1rem !important;
        gap: 10px;
        font-weight: 300 !important;
        display: inline-flex;
        align-items: center;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        ul
        > li
        > a.level-top:hover::after {
        transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .level0:hover
        > .level-top,
    body.proximanew-style
        .proxima-header
        .navigation
        ul
        > li
        > a.level-top:hover {
        font-weight: 600 !important;
        color: #fff !important;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .level0.menu-item-has-children.parent:hover
        > .level-top {
        padding-bottom: 30px !important;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .menu-item-has-children.parent
        > a.level-top::after {
        content: "";
        background: url(../images/new-proxima-header-icon.svg) no-repeat;
        display: inline-block;
        height: 9px;
        width: 17px;
        background-size: 17px;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .submenu
        ul.subchildmenu
        li.ui-menu-item
        > a:hover
        span {
        font-weight: 600;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .submenu
        ul.subchildmenu
        li.ui-menu-item
        > a {
        text-decoration: none;
        border-bottom: 1px solid #fff;
        padding-bottom: 15px !important;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .submenu
        ul.subchildmenu
        li.ui-menu-item:last-child
        > a {
        border-bottom: 0 !important;
    }
    body.proximanew-style
        .proxima-header
        .navigation
        .submenu
        ul.subchildmenu
        li.ui-menu-item
        > a:hover {
        -moz-transform: translateX(1px);
        -webkit-transform: translateX(1px);
        -o-transform: translateX(1px);
        -ms-transform: translateX(1px);
        transform: translateX(1px);
    }
}
/*mediaquery for 1200 above*/

/*mediaquery for 1280 above*/
@media screen and (min-width: 1280px){
    body.cms-find-a-property main section.prx_buyinvest .wrapper{
        position: relative;
        
    }
    body.cms-find-a-property main section.prx_buyinvest .wrapper li p{
        position: absolute;
        bottom: 0;
        
    }
}
/*mediaquery for 1280 above*/

/*mediaquery for 1920 above*/
@media screen and (min-width: 1440px) {
    main section.prx_sectionHero .wrapper:after{
        top: 100px;
    }
}
/*mediaquery for 1400 above*/

/*mediaquery for 1920 above*/
@media screen and (min-width: 1920px) {
    main section.prx_sectionEight .wrapper:before{
        background-size: 50%;
    }
    body.proximanew-style .proxima-header .panel.custom-container {
        margin-left: 50px;
    }
    main section.prx_sectionFive .wrapper .owl-carousel#moretestimonials {
        padding-bottom: 110px;
    }
    main section.prx_sectionTwo .wrapper:before {
        width: 940px;
        max-width: 940px;
    }
    main section.prx_sectionTen .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_sectionEight .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
  main section.prx_sectionTwo .wrapper:before {
        width: 56%;
        max-width: unset;
    }
    header .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    }

/*mediaquery for 1920*/
@media screen and (max-width: 1920px){
    main section.prx_sellwith .wrapper { 
        padding-left: 100px; 
        padding-right: 100px; }
   main section.prx_connect .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_propertylist .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_sectionHeroSub .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_newsdetails .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
   main section.prx_sectionHero .wrapper {
        padding-left: 45px;
        padding-right: 45px;
    }
   main section.prx_sectionTwo .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_sectionThree .wrapper {
      padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_sectionFour .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    main section.prx_sectionFive .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    section.prx_sectionSix .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
    body.proximanew-style .proxima-project-list .custom-container {
    padding-left: 67px!important;
    padding-right: 79px!important;
    max-width: 1920px !important;
    }
  main section.prx_sectionNine .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
   header .wrapper .logo {
        left: 80px;
    }
    body.proximanew-style .proxima-project-list .custom-container {
        padding-left: 100px;
        padding-right: 100px;
        max-width: 1920px !important;
    }
    footer ul {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
    main section.prx_marketingsupport .wrapper {
        padding-left: 100px;
        padding-right: 100px;
      }
    }

/*mediaquery for 1500*/
@media screen and (max-width:1500px) {
    main section.prx_connect .wrapper:before {
        background-size: calc(100% - 10px) !important;
        top: -200px !important;
    }

    section.prx_sectionSix {
        padding: 40px 0px;
    }

    main section.prx_sectionSeven {
        padding: 30px 0;
    }

    body.proximanew-style .featured-products-section .price-details {
        font-size: 16px;
    }

    .featured-product-owl .item-conainer .details-box h5,
    .featured-product-owl .item-conainer .details-box h5 a {
        font-size: 20px;
    }

    .cms-find-a-property .icon-details .fa-map-marker-alt.text-primary span {
        font-size: 16px;
    }
    body.page-products.categorypath-projects.category-projects .product-item .details-inner .product-item-name a{
        font-size: 20px;
    }
    body.proximanew-style .product_details .price-details{
        font-size: 16px;
    }
    body.proximanew-style .product_details .location-box{
        font-size: 16px !important;
    }
    body.page-products.categorypath-projects.category-projects .proxima-product-grid .product-item{
        min-height: 300px;
    }
}

/*mediaquery for 1440*/
@media screen and (max-width: 1440px) {
  main section.prx_connect .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }
    .cms-find-a-property  .featured-products-section.bg-theme .item-conainer .details-box {
    padding: 16px 16px 16px 16px;
    }
    body.proximanew-style .featured-products-section .price-details{
     font-size:15px!important;
     padding:10px 0!important;
    }
    .featured-product-owl .item-conainer .details-box h4 {
    font-size: 15px!important;
    }
    body.proximanew-style.page-products.categorypath-projects.category-projects .product-item .details-inner .product-item-name a {
        font-size: 20px;
        }
        body.proximanew-style .product_details .price-details {
        font-size: 15px;
        padding: 2px;
        }
        body.proximanew-style .product_details .location-box {
        font-size: 15px;
        }
        body.proximanew-style .featured-products-section .price-details {
            font-size: 16px;
            padding: 10px 0;
        }
        
        .proximanew-style.featured-products-section.bg-theme .item-conainer .details-box h5 a {
            font-size: var(--fontsize16px);
        }
        
        .featured-product-owl .item-conainer .details-box h4 {
            font-size: 16px;
            font-weight: 500;
            color: #ffffff;
        }
        main section.prx_sectionHero .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        body.proximanew-style.page-products.categorypath-projects.category-projects .product-item .details-inner .product-item-name a {
            font-size: 18px;
        }
        
        body.proximanew-style .product_details .price-details {
            font-size: 16px;
            padding: 2px;
        }
        
        body.proximanew-style .product_details .location-box {
            font-size: 16px;
        }
        header .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
      .proximanew-style .featured-products-section.bg-theme .img-box{
        /* max-height: 350px; */
        height: 270px;
      }
      .proximanew-style .featured-products-section.bg-theme .img-box img{
        width: 100%;
        object-fit: cover;
        height: 100%;
      }
     
      .proximanew-style .featured-products-section.bg-theme .item-conainer .location-text{
        top: -82px;
        left: calc(100% - 172px);
        padding: 10px 18px 10px 25px;
        font-size: 14px;
      }
      .proximanew-style
        .featured-products-section.bg-theme
        .item-conainer
        .details-box
        h3 {
        font-size: var(--fontsize22px);
    }
    .proximanew-style
        .featured-products-section.bg-theme
        .item-conainer
        .details-box
        h5
        a {
        font-size: var(--fontsize16px)!important;
        width: 100%;
    }
    .proximanew-style .featured-products-section.bg-theme .item-conainer .details-box{
      padding: 16px 16px 0px 16px;
    }
        body.proximanew-style main .prx_sectionFive .video-section iframe {
            height: revert-layer;
        }
        main section.prx_sectionTwo .wrapper .sectionbox h2 {
            font-size: 80px;
        }
        main section.prx_sectionThree .wrapper ul li h3 {
            font-size: var(--fontsize30px);
        }
        main section.prx_sectionThree .wrapper ul li h3 {
            font-size: var(--fontsize20px);
        }
        main section.prx_sectionThree .wrapper ul li p.btns a {
            font-size: var(--fontsize16px);
        }
        main section.prx_sectionFive .wrapper ul.first > li:nth-child(2) {
            margin: 0 !important;
            width: 100%;
        }
        main section.prx_sectionFive .wrapper ul.first > li:nth-child(1) {
            width: 80% !important;
            padding: 0;
        }
        main section.prx_sectionHero .wrapper h1 {
            background-size: auto 130px;
            padding: 120px 0px 0px 160px;
            font-size: var(--fontsize24px);
            width: 100%;
        }
        main section.prx_sectionTwo .wrapper {
            padding: 150px 0 0 0 !important;
        }
        main section.prx_sectionTwo .wrapper .sectionbox h2 {
            font-size: var(--fontsize60px);
            margin: 0px 0px 30px 0px;
        }
        main section.prx_sectionTwo .wrapper .sectionbox h2 span {
            font-size: var(--fontsize22px);
        }
        main section.prx_sectionTwo .wrapper .sectionbox h3 {
            font-size: var(--fontsize26px);
        }
        section.prx_sectionSix .wrapper > ul > li:nth-child(1) h2 {
            font-size: var(--fontsize40px);
        }
        section.prx_sectionSix .wrapper > ul > li:nth-child(1) {
            width: 70%;
        }
        section.prx_sectionSix .wrapper > ul > li:nth-child(2) {
            width: 100%;
        }
        section.prx_sectionSix .wrapper > ul > li:nth-child(1) p {
            font-size: var(--fontsize16px);
        }
        section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(1)
            p.contact
            span
            a.phone {
            font-size: var(--fontsize16px);
        }
        section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact span {
            font-size: var(--fontsize16px);
        }
        main section.prx_sectionThree {
            padding: 100px 0px 60px;
        }
        body.proximanew-style main .prx_sectionHeroSub.contact .wrapper h1 {
            background-size: auto 130px;
            padding: 120px 0px 0px 160px !important;
            font-size: var(--fontsize24px);
            width: 100%;
        }
        body.proximanew-style .prx_sectionHeroSub.first h1 {
            font-size: var(--fontsize64px);
        }
    
        body.proximanew-style .prx_sectionHeroSub.first h3 {
            font-size: var(--fontsize24px);
        }
        body.proximanew-style
            .contact
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(1)
            h2 {
            font-size: 30px;
        }
        body.proximanew-style
            .contact
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(1)
            p {
            font-size: 17px;
        }
        body.proximanew-style
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(2)
            ul
            li
            span
            input[type="text"] {
            font-size: 16px !important;
        }
        body.proximanew-style
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(2)
            ul {
            grid-gap: 9px;
        }
        body.proximanew-style
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(2) {
            width: 100%;
        }
        body.proximanew-style
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(2)
            ul
            li {
            margin-bottom: 0;
        }
        body.proximanew-style
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(1) {
            padding: 0px 10px 0px 0px;
        }
        body.proximanew-style
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(1)
            p.contact
            span {
            font-size: var(--fontsize17px);
        }
        section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.social span a {
            width: 20px;
            height: 20px;
            margin: 0px 15px 0px 0px;
        }
    }
/*mediaquery for 1400*/
@media screen and (max-width:1400px) {
 header .wrapper .logo {
            left: 40px;
        }
        main section.prx_news_single .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_newsdetails .wrapper {
          padding-left: 40px;
          padding-right: 40px;
      }
        main section.prx_sectionTwo .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        section.prx_sectionSix .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_sectionThree .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_buyinvest .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_sectionTen .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_sectionNine .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_sectionEight .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_sectionHeroSub .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_sectionFour .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
        main section.prx_sectionFive .wrapper {
            padding-left: 40px;
            padding-right: 40px;
        }
    }
    /*mediaquery for 1200*/
    @media (max-width: 1200px) {
        main section.prx_devlist {
            padding: 0 !important;
        }
        main section.prx_sectionEight.property.third .wrapper:before {
            top: -265px;
        }
        body.proximanew-style
            section.prx_sectionSix
            .wrapper
            > ul
            > li:nth-child(2) {
            padding: 0 !important;
        }
        section.prx_sectionSix .wrapper > ul > li:nth-child(1) {
            width: 100% !important;
        }
        section.prx_sectionSix .wrapper > ul {
            flex-direction: column !important;
        }
        main section.prx_sectionThree .wrapper ul {
            grid-template-columns: repeat(2, 1fr);
        }
        main section.prx_sectionFive .wrapper ul.first {
            flex-direction: column;
        }
        body.proximanew-style main .prx_sectionFive .video-section iframe {
            height: revert-layer;
        }
        main section.prx_sectionFive .wrapper ul.first > li:nth-child(2) {
            width: 100% !important;
        }
        main section.prx_sectionHero .wrapper h1 {
            background-size: auto 123px;
        }
        body.proximanew-style .nav-open .nav-toggle:after {
            height: 100vh;
        }

    }
/* mediaquery for 1080.89 */
@media screen and (max-width: 1080.98px) {
    main section.prx_sectionHero {
        height: 60vh;
    }
    main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) {
        width: 100%;
    }
    main
        section.prx_sectionTen
        .wrapper
        ul
        main
        section.prx_sectionTwo
        .wrapper
        .sectionbox {
        padding: 100px 20px 0 0;
        width: 65%;
    }
    main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(2) {
        width: 100%;
        padding: 0px 20px !important;
    }
    main section.prx_sectionTwo .wrapper:before {
        width: 35%;
    }
    main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) {
        padding: 60px 40px;
    }
    main section.prx_borrowingcapacity .wrapper > ul > li:nth-child(1) ul li {
        margin: 0px 0px 20px;
    }
    main section.prx_sectionTen .wrapper ul {
        grid-template-columns: repeat(2, 1fr);
    }
    main.connect-tab section.prx_proximahub .wrapper .tabbox .tabcontent ul{
      grid-template-columns: repeat(1, 1fr);
    }
}
/* common responsive for 600- 1080 view */
@media (min-width: 600px) and (max-width: 1080px) {
    body.proximanew-style main section.prx_sectionTwo .wrapper:before {
        width: 30%;
    }
  }
    /*mediaquery for ipad*/
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
    body.proximanew-style main .prx_sectionHeroSub.contact .wrapper h1 {
        background-size: auto 78px;
        padding: 70px 0px 0px 120px !important;
        font-size: var(--fontsize24px);
    }
    body.proximanew-style main section.prx_sectionHeroSub .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    body.proximanew-style main section.prx_sectionTen .wrapper ul {
        grid-template-columns: repeat(2, 1fr);
    }
    body.proximanew-style main section.prx_sectionEight .wrapper h2 {
        width: 100%;
    }
    body.proximanew-style main section.prx_sectionEight .wrapper h3 {
        width: 100%;
    }
    body.proximanew-style main section.prx_sectionEight .wrapper p {
        width: 100%;
    }
}
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation: landscape) {
    body.proximanew-style main .prx_sectionHeroSub.contact .wrapper h1 {
        background-size: auto 78px;
        padding: 70px 0px 0px 120px !important;
        font-size: var(--fontsize24px);
    }
    body.proximanew-style main section.prx_sectionHeroSub .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    body.proximanew-style main section.prx_sectionTen .wrapper ul {
        grid-template-columns: repeat(2, 1fr);
    }
    body.proximanew-style main section.prx_sectionEight .wrapper h2 {
        width: 100%;
    }
    body.proximanew-style main section.prx_sectionEight .wrapper p {
        width: 100%;
    }
}

/*mediaquery for 991*/
@media screen and (max-width:991px) {
    main section.prx_servicetodevelopers .wrapper > li > :is(p , .details){
        width: 100%;
    }
  body.proximanew-style section.prx_sellwith .wrapper iframe {
    width: 60%;
  }
   body.proximanew-style section.prx_sellwith .wrapper h3 {
        width: 40%;
  }
    main section.prx_servicetodevelopers .wrapper {
        padding: 0 15px !important;
    }
    main section.prx_servicetodevelopers .wrapper > li {
        flex-direction: column;
    }
    main section.prx_outcomes .wrapper h3 {
        line-height: 50px;
    }
    main section.prx_outcomes .wrapper,
    main section.prx_sellwith .wrapper {
        padding: 0 15px !important;
    }
    main section.prx_sellwith {
        padding-bottom: 40px;
    }
    main section.prx_outcomes {
        padding-top: 0 !important;
    }
    main section.prx_outcomes .wrapper {
        flex-direction: column;
    }
    main section.prx_outcomes .wrapper h3,
    main section.prx_outcomes .wrapper div {
        width: 100% !important;
    }
    main section.prx_sellwith .wrapper {
        flex-direction: column;
    }
    main section.prx_sellwith .wrapper p,
    main section.prx_sellwith .wrapper h3 {
        width: 100% !important;
    }
    main section.prx_sellwith .wrapper p {
        padding: 0;
    }
    main section.prx_proximahub .wrapper {
        padding: 0 15px !important;
    }
    main section.prx_proximahub .wrapper .tabbox .tabcontent > ul {
        grid-template-columns: repeat(2, 1fr);
    }
    main section.prx_advantage .wrapper ul {
        flex-direction: column;
    }
    main section.prx_advantage .wrapper ul li {
        width: 100%;
    }
    main section.prx_connect .wrapper {
        padding-bottom: 20px !important;
    }
    body.cms-proxima-hub section.prx_sellwith .wrapper h3 {
        width: 100%;
    }
    main.connect-tab section.prx_proximahub .wrapper .tabbox p.tab {
        width: 100% !important;
        margin: 0 !important;
    }

    main section.prx_proximahub {
        padding: 20px 0px 50px 0px !important;
    }

    section.prx_sectionSix {
        padding: 20px 0px !important;
    }

    main section.prx_proximahub .wrapper .tabbox .tabcontent ul {
        padding: 0px 0px;
    }

    section.prx_sectionSix {
        padding: 20px 0px !important;
    }

    main section.prx_servicetodevelopers {
        padding: 20px 0px !important;
    }

    main section.prx_sectionSeven {
        padding: 30px 0px !important;
    }

    main section.prx_sectionFive {
        padding: 30px 0px !important;
    }

    main section.prx_sectionEight.property .wrapper p {
        margin: 0px 0px 10px 0px !important;
    }

    body.proximanew-style section.prx_sectionEight .wrapper p a.btn {
        margin-top: 15px !important;
    }

    main section.prx_borrowingcapacity .wrapper>ul>li:nth-child(2) ul.first {
        margin-bottom: 40px !important;
    }

    main section.prx_borrowingcapacity {
        padding: 50px 0px 20px !important;
    }

    body.proximanew-style .featured-products-section .price-details {
        font-size: 14px !important;
    }

    .featured-product-owl .item-conainer .details-box h5,
    .featured-product-owl .item-conainer .details-box h5 a {
        font-size: 18px !important;
    }

    .cms-find-a-property .icon-details .fa-map-marker-alt.text-primary span {
        font-size: 14px !important;
    }
    body.page-products.categorypath-projects.category-projects .proxima-product-grid .product-item{
        min-height: auto !important;
    }
    body:not(.microsite-agent-website) > .main-container section:is(.prx_four, .prx_six, .prx_eight, .prx_one){
        background-size: 90% !important;
    }
     /*Project for sale search bar*/
    body.proximanew-style .dropdown-check-list .anchor{
        min-width: 200px;
        width: 100%;
    }
    body.proximanew-style .dropdown-check-list2 .anchor2{
        min-width: 200px;
        width: 100%;
    }
    body.proximanew-style .location .location-input .autocomplete{
        min-width: 280px;
        width: 100%;
    }
     /*Project for sale search bar*/
}

/*mediaquery for 800*/
@media screen and (max-width: 800px) {
    header .wrapper nav {
        position: fixed;
        top: 80px;
        right: -300px;
        width: 300px;
        z-index: 99;
        background: rgba(0, 0, 0, 0.5);
        bottom: 0px;
        transition: all ease 0.5s;
    }
    header .wrapper nav.open {
        right: 0px;
        transition: all ease 0.5s;
    }
    header .wrapper nav ul {
        display: block;
    }
    header .wrapper nav ul li {
        display: block;
    }
    header .wrapper nav ul li a {
        padding: 10px 0px 10px 10px;
    }
    header .wrapper .rightsection {
        display: none;
    }
}
/*mediaquery for 769*/
@media screen and (max-width: 769px) {
    main section.prx_sectionTwo .wrapper .sectionbox h2 span {
        font-size: var(--fontsize28px);
    }

    main section.prx_sectionTwo .wrapper .sectionbox h3 {
        font-size: var(--fontsize22px);
    }

    main section.prx_sectionTwo .wrapper .sectionbox p {
        font-size: var(--fontsize18px);
        margin: 0px 0px 10px 0px;
    }

    main section.prx_sectionThree {
        padding: 0rem 10px 0px 0px;
    }
    main section.prx_business .wrapper ul {
        padding: 0px 15px;
        grid-gap: 15px;
        grid-template-columns: repeat(1, 1fr);
    }
}

/* mediaquery for 768.8 */
@media screen and (max-width: 768.98px) {
    main section.prx_buyinvest .wrapper > li {
        width: 100%;
    }
    main section.prx_buyinvest .wrapper > li p {
        text-align: right;
    }
    main section.prx_buyinvest .wrapper > li > ul li {
        padding: 15px 0px 10px 70px;
        margin: 0px 0px 20px 0px;
    }
    main section.prx_buyinvest .wrapper {
        display: block;
    }
    main.connect-tab section.prx_proximahub .wrapper .tabbox p.tab .tablinks{
      padding: 10px;
    }
    main.connect-tab section.prx_proximahub .wrapper .tabbox p.tab{
      gap: 20px;
    }
   
}
/*mediaquery for 767*/
@media (max-width: 767px) {
  main section.prx_sectionTwo .wrapper .sectionbox {
        padding: 50px 20px !important;
           width: 85%;
    }
    header .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    main section.prx_connect .wrapper p {
        font-size: var(--fontsize35px);
    }
    body.proximanew-style main section.prx_buyinvest .wrapper > li p{
        margin-top: 5rem !important;
    }
    body.proximanew-style .search-list .SearchBtn .main-search-button{
        width: 100% !important;
        min-width: 100% !important;
    }
    body:not(.microsite-agent-website) > .main-container section:is(.prx_four, .prx_six, .prx_eight, .prx_one){
        min-height: 25vh !important;
    }
    main section.prx_marketingsupport .wrapper{
        padding-left: 15px  !important;
        padding-right: 15px  !important;
   }
   .cms-proxima-hub main section.prx_proximahub .wrapper .tabcontent > h2{
    padding: 0 !important;
}
main section.prx_proximahub .wrapper .tabbox p.tab{
    flex-direction: column;
}
main section.prx_proximahub{
    padding: 150px 0px 30px 0px !important;
}
main section.prx_sellwith .wrapper iframe{
    width: 100% !important;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent h4{
    text-align: left;
}
section.prx_sectionSix{
    padding: 0 0 70px !important;
}
main section.prx_sellwith .wrapper h3{
    padding: 20px 0px !important;
}
main section.prx_connect .wrapper{
    padding-bottom: 0 !important;
}
main section.prx_proximahub{
    padding: 60px 0px 30px 0px !important; 
}
main.connect-tab section.prx_proximahub .wrapper .tabbox p.tab{
    width: 100% !important;
}
    .cms-proxima-hub main section.prx_proximahub .wrapper .tabcontent > h2{
        padding: 0 !important;
    }
    main section.prx_proximahub .wrapper .tabbox p.tab{
        flex-direction: column;
    }
    main section.prx_proximahub{
        padding: 150px 0px 30px 0px !important;
    }
    main section.prx_sellwith .wrapper iframe{
        width: 100%;
    }
    main section.prx_proximahub .wrapper .tabbox .tabcontent h4{
        text-align: left;
    }
    section.prx_sectionSix{
        padding: 0 0 70px !important;
    }
    main section.prx_sellwith .wrapper h3{
        padding: 20px 0px !important;
    }
    main section.prx_connect .wrapper{
        padding-bottom: 0 !important;
    }
    main section.prx_proximahub{
        padding: 60px 0px 30px 0px !important; 
    }
    main.connect-tab section.prx_proximahub .wrapper .tabbox p.tab{
        width: 100% !important;
    }
    main section.prx_sectionTwo .wrapper .sectionbox {
        padding: 50px 20px !important;
           width: 85%;
    }
    header .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    main section.prx_connect .wrapper p {
        font-size: var(--fontsize35px);
    }
    body.proximanew-style main section.prx_buyinvest .wrapper > li p{
        margin-top: 5rem !important;
    }
    body.proximanew-style .search-list .SearchBtn .main-search-button{
        width: 100% !important;
        min-width: 100% !important;
    }
    body:not(.microsite-agent-website) > .main-container section:is(.prx_four, .prx_six, .prx_eight, .prx_one){
        min-height: 25vh !important;
    }
    main section.prx_marketingsupport .wrapper{
        padding-left: 15px  !important;
        padding-right: 15px  !important;
   }
   body.proximanew-style .prx_buyinvest .wrapper > li p {
    margin-top: 4rem!important;
    text-align: center!important;
    }
    main section.prx_buyinvest .wrapper>li>ul {
        height: auto;
    }
    body.proximanew-style .prx_buyinvest .wrapper > li p {
        margin-top: 4rem!important;
        text-align: center!important;
        }
     /*home page style change*/
    body.proximanew-style .prx_sectionTwo .wrapper .sectionbox p:last-child {
        margin-bottom: 40px;
    }
     
    body.proximanew-style section.prx_sectionThree .wrapper h2 {
        padding-top: 0x;
    }
    /*Projects For Sale style change*/
    body.proximanew-style section.prx_sectionNine .wrapper li:nth-child(2) h3.second {
        margin-top: 20px;
   }
    
   body.proximanew-style main section.prx_sectionNine .wrapper li {
           padding: 30px 0 0 0 !important;
           margin-bottom: 0;   
   }
   body.proximanew-style main section.prx_sectionNine .wrapper li:nth-child(2) p:last-child{
           margin-bottom: 0rem;
   }
   body.proximanew-style section.prx_sectionNine {
           padding: 20px 0px;
   }
   main section.prx_sectionNine .wrapper li:nth-child(2) h4{
       margin: 0px 0px 25px 0px;
   }
   /*footer*/
    body .page-footer {
        padding-bottom: 50px !important;
        padding: 50px 0 !important;
    }
    body .copy-right-section {
        margin: 1.075rem 0;
    }
    footer ul li {
        margin-bottom: 0 !important;
    }
    footer ul li p {
        margin: 0px 0px 15px 0px;
    }
    /*Project for sale search bar*/
    body.proximanew-style  .search-block .search-list li .form-group div{
        display: block;
    }
    body.proximanew-style .search-block .search-list li .form-group .price-input > .field,
    body.proximanew-style .search-block .search-list li .form-group .separator,
    body.proximanew-style .search-block .search-list li .form-group .price-input{
        display: flex;
    }
    body.proximanew-style .dropdown-check-list .anchor,
    body.proximanew-style .dropdown-check-list2 .anchor2,
    body.proximanew-style .location .location-input .autocomplete{
        min-width: 100%;
        max-width: 100%;
    }
    .proximanew-style .search-block:after{
        background-color: transparent !important;
    }
     /*Project for sale search bar*/
}

/*mediaquery for 756*/
@media screen and (max-width: 756px) {
    main section.prx_buyinvest .wrapper>li>ul {
        height: auto;
    }
    body.proximanew-style .prx_buyinvest .wrapper > li p {
        margin-top: 4rem!important;
        text-align: center!important;
        }
        main section.prx_sectionHeroSub {
            padding: 150px 0px 50px 0px !important;
        }
        main section.prx_news .wrapper {
            padding-left: 15px;
            padding-right: 15px;
        }
        main
        section.prx_sectionFive
        .wrapper
        .owl-carousel#moretestimonials
        .owl-nav {
        display: block !important;
    }
    section.prx_sectionSix .wrapper > ul {
        flex-direction: column;
    }
    section.prx_sectionSix .wrapper > ul li {
        width: 100% !important;
    }
    body.proximanew-style
        section.prx_sectionSix
        .wrapper
        > ul
        > li:nth-child(1) {
        width: 100% !important;
        padding: 0 !important;
    }
    main section.prx_sectionTwo .wrapper .sectionbox h2 {
        margin: 40px 0 30px 0 !important;
      }
   main section.prx_sectionHero .wrapper h1 {
     padding: 250px 0px 70px 0px !important;
   }
   main section.prx_sectionTwo .wrapper .sectionbox{
    padding: 0 20px !important;
    width: 100%;
   }
   main section.prx_sectionFive .wrapper ul.first > li:nth-child(1){
    width: 100% !important;
   }
   main section.prx_sectionFive .wrapper ul.first > li:nth-child(2){
    margin: 0 !important;
   }
   section.prx_sectionSix .wrapper > ul > li:nth-child(2){
    width: 100% !important;
    padding: 0 !important;
   }
   body.proximanew-style .contact-form .full.btns .btn{
    margin-top: 30px !important;
   }
   .prx_sectionSeven .wrapper #companies.owl-carousel .owl-stage-outer .owl-stage .owl-item .item img, main section.prx_sectionSeven .wrapper #companies.owl-carousel .owl-stage-outer .owl-stage .owl-item .item img{
    max-width: calc(100% - 90px) !important;
   }
   body.customer-account-login #proxima-header .panel.wrapper{
    display: none;
      }
     body.customer-account-login .page-main .page-title-wrapper {
        margin: 4rem 0rem 3rem 0rem !important;
    }
    body.customer-account-login .footer-section {
        padding: 2.9375rem 0 3.625rem 0;
    }
.cms-proxima-hub main section.prx_proximahub .wrapper > h2{

  padding: 0px 40px !important;
}
section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul li span select,
body.proximanew-style
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li
    span
    input[type="text"] {
    margin-bottom: 0 !important;
}
main section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
}
.proximanew-style .proxima-header .right-main-nav ul li .signin-btn {
    padding: 6px 20px !important;
}
main section.prx_advantage .wrapper ul {
    flex-direction: column;
}
main section.prx_advantage .wrapper ul li {
    width: 100%;
}
main section.prx_advantage .wrapper ul li p img {
    width: 100%;
}
main section.prx_sectionEight.property {
    padding-bottom: 20px;
}
main section.prx_proximahub .wrapper .tabbox .tabcontent ul li {
    padding: 20px;
}
main section.prx_sectionThree .wrapper ul,
main section.prx_business {
    padding: 20px 0px;
}
main section.prx_business .wrapper ul li {
    min-height: auto;
}
main section.prx_sectionHero {
    height: auto;
}
main section.prx_business .wrapper h2 {
    text-align: left;
    padding: 0px 15px;
    margin-bottom: 20px;
}
body.proximanew-style main .prx_sectionHeroSub.contact .wrapper h1 {
    background-size: auto 78px;
    padding: 70px 0px 0px 35px !important;
    font-size: var(--fontsize24px);
}
body.proximanew-style footer ul li h6:nth-child(1) {
    margin-top: 0;
}
main section.prx_sectionThree {
    padding: 50px 0px;
}
main section.prx_sectionFive .wrapper h2 {
    font-size: 31px;
}
main section.prx_sectionThree .wrapper ul li p.btns a {
    padding: 12px 33px;
    font-size: 14px;
}
footer ul {
    grid-template-columns: repeat(1, 1fr) !important;
}
body.proximanew-style footer ul li:nth-child(2) div {
    display: flex;
    justify-content: flex-start !important;
    margin-top: 0 !important;
}
body.proximanew-style footer ul li h6:nth-child(1) {
    margin-top: 0 !important;
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    h2 {
    font-size: var(--fontsize28px);
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    p {
    font-size: var(--fontsize16px);
}
body.proximanew-style .contact section.prx_sectionSix .wrapper > ul {
    display: flex;
    flex-flow: column;
}
body.proximanew-style .contact section.prx_sectionSix .wrapper > ul > li {
    width: 100%;
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    p.contact {
    display: flex;
    flex-direction: column;
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    p.contact
    span {
    width: 100%;
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(1, 1fr);
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li {
    width: 100%;
    /* margin-bottom: 12px; */
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    p.contact
    span
    a {
    padding: 10px 0px 12px 30px;
    font-size: var(--fontsize15px);
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(1)
    p.contact
    span {
    font-size: var(--fontsize16px);
}
body.proximanew-style .contact .prx_sectionSix .contact span:nth-child(2) {
    padding-top: 2rem;
    line-height: 26px;
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2) {
    padding: 0;
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul {
    grid-gap: 15px;
}
body.proximanew-style
    .contact
    section.prx_sectionSix
    .wrapper
    > ul
    > li:nth-child(2)
    ul
    li.btns {
    margin-top: 1rem;
}
body.proximanew-style .prx_sectionHeroSub.first h1 {
    font-size: 37px;
}
body.proximanew-style .prx_sectionHeroSub.first h3 {
    font-size: var(--fontsize17px);
}
body.proximanew-style .search-block:after {
    background-color: #fff !important;
}
body.proximanew-style .search-block.project-search {
    padding: 80px 0 0 8px;
}
body.proximanew-style .search-block.project-search h5 {
    font-size: var(--fontsize27px);
}
body.proximanew-style
    .project-search
    .search-block-main
    .search-block-inner
    .breadcrumb {
    padding: 10px 0 9px 0;
    font-size: 11px;
}
body.proximanew-style .propertylocations {
    padding: 35px 20px 60px 20px;
}
body.proximanew-style main section.prx_buyinvest {
    padding: 44px 20px;
    background: #f8f8f8;
}
body.proximanew-style main section.prx_buyinvest .wrapper > li h2 {
    font-size: 30px;
    margin: 0px 0px 35px 0px;
}
main section.prx_buyinvest .wrapper > li > ul li span {
    font-size: var(--fontsize24px);
    padding-right: 5px;
}
body.proximanew-style main section.prx_buyinvest .wrapper > li > ul {
    max-width: 100%;
    padding: 0;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    p.repayment
    span {
    width: 100%;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(1)
    ul
    li
    p.repayment {
    display: block;
}
body.proximanew-style .prx_sectionHeroSub.first .wrapper {
    padding-left: 20px;
    padding-right: 20px;
}
main section.prx_news_single{
  padding-top: 50px;
}
   footer ul{
    padding: 0 20px !important;
   }
}

/*mediaquery for 700*/
@media screen and (max-width: 700px) {
    main section.prx_sectionFour .wrapper .findprtyhd p.search {
        display: block;
    }
    main section.prx_sectionHeroSub .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    main section.prx_proximahub .wrapper .tabbox .tabcontent ul {
        display: block;
    }
    main section.prx_sectionNine .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    main section.prx_propertylist .wrapper .findprtyhd {
        display: block;
    }
    main section.prx_propertylist .wrapper ul {
        display: block;
    }
    main section.prx_propertylist .wrapper ul li {
        margin: 0px 0px 20px 0px;
    }
    main section.prx_propertylist .wrapper ul li span.location {
        top: 10%;
        bottom: inherit;
    }
    main section.prx_map .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    main section.prx_sectionFive .wrapper ul.first > li:nth-child(1) {
        width: 100%;
    }
    main section.prx_sectionHeroSub .wrapper h1 {
        width: 100%;
        font-size: var(--fontsize40px);
    }
    main section.prx_sectionHeroSub .wrapper h3 {
        width: 100%;
        font-size: var(--fontsize28px);
    }
     main section.prx_sectionEight .wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
    main section.prx_sectionHeroSub.contact h1 {
        display: block;
        background: url(../images/proximalogo.svg) no-repeat 50% 0%;
        background-size: auto 60px;
        font-size: var(--fontsize20px);
        padding: 90px 0px 0px 0px !important;
        width: 100%;
        font-size: var(--fontsize24px);
        text-align: center;
    }
    main section.prx_sectionSix.second {
        padding: 20px 0px;
    }
    main section.prx_sectionSix .wrapper {
        display: block;
    }
    main section.prx_sectionSix .wrapper > ul {
        display: block;
    }
    main section.prx_sectionSix .wrapper > ul > li {
        width: 100%;
    }
    main section.prx_sectionSix .wrapper > ul > li h2 {
        font-size: var(--fontsize30px);
        width: 100%;
    }
    main section.prx_sectionSix .wrapper > ul > li:nth-child(2) ul {
        display: block;
    }
    main section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact span {
        margin-bottom: 10px;
        width: 100%;
    }
    main section.prx_sectionSix .wrapper > ul > li:nth-child(1) p.contact {
        display: block;
    }
    main
        section.prx_sectionFour
        .wrapper
        .findprtyhd
        p.search
        input[type="text"],
    main section.prx_sectionFour .wrapper .findprtyhd p.search select {
        display: block;
        width: 100%;
        margin: 0px 0px 10px 0px !important;
        border: 1px solid #f2f2f2;
        box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.25);
    }
    main section.prx_sectionFive .wrapper ul.first {
        display: block;
    }
    main section.prx_sectionFour .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    main section.prx_sectionThree.devlpment .wrapper ul {
        display: block;
    }
    main section.prx_sectionFive .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    main section.prx_sectionThree .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    /* main section.prx_sectionTwo .wrapper .sectionbox h2 {
        font-size: 70px;
    }
    for responsive homee
    main section.prx_sectionTwo .wrapper .sectionbox h2 span {
        font-size: 35px;
    } */
    main section.prx_sectionTwo .wrapper .sectionbox {
        width: 100%;
    }
    main section.prx_sectionThree .wrapper ul {
        display: block;
    }
    main section.prx_sectionThree .wrapper ul li {
        margin: 0px 0px 35px 0px;
        padding: 0px;
    }
    main section.prx_sectionThree .wrapper ul li span.sectionPic {
        margin: 0px 0px 10px 0px;
        height: auto !important;
    }
    main section.prx_sectionThree .wrapper ul li p {
        margin: 0px 0px 10px 0px;
    }
    main section.prx_sectionThree .wrapper ul li p.btns {
        position: relative;
        bottom: inherit;
    }
    main section.prx_sectionThree .wrapper ul li p.btns a {
        text-align: center;
    }
    main section.prx_sectionTwo .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    main section.prx_sectionFour .wrapper .findprtyhd {
        display: block;
    }
    main section.prx_marketingsupport .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    main section.prx_marketingsupport .wrapper > ul {
        display: block;
    }
    main section.prx_connect .wrapper {
        padding-top: 50px !important;
    }
    main section.prx_connect .wrapper:before {
        display: none;
    }
    main section.prx_connect .wrapper h2 {
        width: 100%;
        font-size: var(--fontsize45px);
        font-weight: 400;
        line-height: 101.058%;
    }
    main section.prx_connect .wrapper h3 {
        font-size: var(--fontsize25px);
        width: 100%;
    }
    main section.prx_connect .wrapper p {
        width: 100%;
    }
    main section.prx_sectionFive .wrapper ul.first > li:nth-child(2) {
        width: 100%;
    }
    main
        section.prx_sectionFour
        .wrapper
        .owl-carousel#findaproperty
        .owl-stage-outer
        .owl-stage
        .owl-item
        .item
        span.location {
        bottom: inherit;
        top: 30%;
    }
    main section.prx_servicetodevelopers .wrapper > li .details {
        width: 100%;
        padding: 10px 0px;
    }
    main section.prx_devlist .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    main section.prx_devlist .wrapper {
        display: block;
    }
    main section.prx_devlist .wrapper li {
        margin: 0px 0px 20px 0px;
    }
    main section.prx_devlist {
        padding: 20px 0px;
    }
    main section.prx_outcomes {
        padding: 20px 0px;
    }
    main section.prx_outcomes .wrapper {
        display: block;
    }
    main section.prx_outcomes .wrapper h3,
    main section.prx_outcomes .wrapper .accordion {
        width: 100%;
        padding: 20px 0px;
    }
    main section.prx_servicetodevelopers .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    main section.prx_servicetodevelopers .wrapper > li > p {
        width: 100%;
    }
    main
        section.prx_servicetodevelopers
        .wrapper
        > li:nth-child(even)
        .details {
        padding: 10px 0px;
    }
    main section.prx_proximahub .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    main section.prx_sectionHero .wrapper {
        padding-left: 0px;
        padding-right: 0px;
    }
    main section.prx_sectionHero {
        height: auto;
    }
    main section.prx_sectionHero .wrapper {
        display: block;
        height: auto;
    }
    main section.prx_sectionHero .wrapper:after {
        display: none;
    }
    main section.prx_sectionHero .wrapper h1 {
        width: 100%;
        background-size: 80% auto !important;
        background: url(../images/proximalogo.svg) no-repeat 50% 50%;
        font-size: var(--fontsize25px);
        padding: 250px 0px 70px 0px;
        text-align: center;
    }
    main section.prx_sectionTwo {
        top: 0px;
    }
    main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second {
    display: block;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second
    li {
    margin: 0px 0px 20px 0px;
}
main
    section.prx_borrowingcapacity
    .wrapper
    > ul
    > li:nth-child(2)
    ul.second
    li
    span
    input[type="text"] {
    max-width: 100%;
}
main section.prx_sectionEight .wrapper {
    padding-top: 50px !important;
}
main section.prx_sectionEight .wrapper:before {
    display: none;
}
main section.prx_sectionEight .wrapper h2 {
    width: 100%;
    font-size: var(--fontsize45px);
    font-weight: 400;
    line-height: 101.058%;
}
main section.prx_sectionEight .wrapper h3 {
    font-size: var(--fontsize25px);
    width: 100%;
}
main section.prx_sectionEight .wrapper p {
    width: 100%;
}
body.proximanew-style .logo-site .logo {
    margin-left: 15px;
}
main section.prx_sectionHeroSub.contact h1 {
    width: 100%;
}
main section.prx_newsdetails .wrapper ul {
    display: block;
}
main section.prx_newsdetails .wrapper ul li {
    width: 100% !important;
    padding: 0px 20px !important;
}
section.prx_sectionSix .wrapper {
    padding-left: 20px;
    padding-right: 20px;
}
}
/*mediaquery for 578*/
@media screen and (max-width: 578px) {

    .proxima-signup{
        display: none;
    }
    .proximanew-style .proxima-header .right-main-nav ul li .signin-btn {
        height: 29px !important;
    }
}

/*mediaquery for 480*/
@media screen and (max-width: 480px) {
    .proxima-signup{
        display: none;
    }
    .dropbtn {
        padding: 7px 12px 7px 12px!important;
        min-width: 6.0625rem;			
        max-height: 4.375rem;		
    }


    main section.prx_sectionTwo .wrapper .sectionbox h2 {
        margin-top: -120px !important;
        margin-left: 150px !important;
        margin-bottom: 60px !important;
    }

    main section.prx_sectionThree .wrapper h2 {
        font-size: var(--fontsize30px);
    }
    main section.prx_sectionTwo .wrapper .sectionbox { 
        width: 100%;
    }

    body.proximanew-style section.prx_sectionFive .wrapper h2 {
        font-size: var(--fontsize30px);
    }

    body.proximanew-style .nav-open body .proxima-header .navigation .submenu.level0 .subchildmenu a,
    body.proximanew-style .navigation .level0>.level-top {
        font-size: var(--fontsize30px) !important;
    }
    .nav-open body .proxima-header .navigation .submenu.level0 .subchildmenu a {
        font-size: 16px !important;
    }

    main section.prx_sectionNine {
        padding: 25px 0px;
    }

    main section.prx_sectionTen {
        padding: 0px 0px;
    }

    .proxima-product-banner {
        background-size: cover;
    }

    .prx_sectionHeroSub.first .wrapper {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    body.proximanew-style .prx_sectionHeroSub.first h1 {
        font-size: var(--fontsize48px);
    }

    body.proximanew-style .prx_sectionHeroSub.first h3 {
        font-size: var(--fontsize28px);
    }

    body.proximanew-style main .prx_sectionHeroSub.second .wrapper h1 {
        font-size: 28px;
    }

    /* body.proximanew-style main .prx_sectionHeroSub.second .wrapper h3 {
        font-size: 28px;
    } */

    main section.prx_sectionEight.property .wrapper h3 {
        font-size: var(--fontsize36px);
    }

    main section.prx_advantage .wrapper ul li h3 {
        font-size: var(--fontsize36px);
    }

    main section.prx_advantage .wrapper ul li h3 span {
        font-size: var(--fontsize36px);
    }

    main section.prx_proximahub .wrapper h2 {
        font-size: var(--fontsize38px);
    }

    main section.prx_proximahub .wrapper .tabbox .tabcontent ul li h3 {
        font-size: var(--fontsize36px);
    }

    main section.prx_advantage .wrapper ul li h3 {
        font-size: var(--fontsize32px);
    }

    main section.prx_advantage .wrapper ul li h3 span {
        font-size: var(--fontsize32px);
    }

    main section.prx_sellwith .wrapper h3 {
        font-size: var(--fontsize32px);
    }

    main section.prx_business .wrapper h2 {
        font-size: var(--fontsize38px);
        margin: 0px auto 15px auto;
    }

    main section.prx_business {
        padding: 0px 0px;
    }

    main section.prx_marketingsupport {
        padding: 0px 0px;
    }

    main section.prx_marketingsupport .wrapper>ul>li:nth-child(1) h2 {
        font-size: var(--fontsize38px);
        margin: 0px 0px 0px 0px;
    }

    main section.prx_marketingsupport .wrapper>ul>li:nth-child(1) h3 {
        font-size: var(--fontsize36px);
    }

    main section.prx_marketingsupport .wrapper>ul>li:nth-child(1) h3 span {
        font-size: var(--fontsize36px);
        padding: 0px 0px 0px 0px;
    }

    main section.prx_marketingsupport .wrapper>ul>li:nth-child(1) h3 {
        margin: 0px 0px 15px 0px;
    }

    main section.prx_sellwith .wrapper h3 {
        padding: 20px 20px;
    }

    main section.prx_business .wrapper h2 {
        max-width: 90vw;
    }

    /* main section.prx_marketingsupport .wrapper #marketing.owl-carousel {
        display: none;
    } */

    section.prx_sectionSix .wrapper>ul>li:nth-child(1) p {
        font-size: var(--fontsize20px);
        margin: 0px 0px 15px 0px;
    }

    .featured-product-owl .item-conainer .details-box h5, .featured-product-owl .item-conainer .details-box h5 a {
        font-size: 20px !important;
        line-height: 100%;
    }
    .cms-find-a-property .featured-products-section.bg-theme .item-conainer .details-box{
        padding: 0.75rem;
        bottom: 0.3rem!important;
        width: 80%;
    }


    body.proximanew-style .featured-products-section .price-details {
        font-size: 16px;
        line-height: 100%;

    }
    .cms-find-a-property .featured-product-owl .item-conainer .details-box h4{
        font-size: 16px;
        line-height: 100%;

    }
    .cms-find-a-property .featured-products-section .container { 
        padding-left: 1.5rem !important;
    }
    main section.prx_sectionEight.property .wrapper h4{
        width:100%;
    }

    main section.prx_buyinvest .wrapper > li:last-child{
        margin-top: 5rem;
    }
    main section.prx_buyinvest .wrapper > li p{
        margin-top: 18rem;

    }

    body.proximanew-style .dropdown-check-list2 .anchor2, .dropdown-check-list .anchor{
        max-width: 100%;
        width: 100%;
    }
    body.proximanew-style .dropdown-check-list .anchor{
        max-width: 100%;
        width: 100%;
    }
    .dropdown-check-list2, .dropdown-check-list{
        width: 100%;
    }
    .cms-proxima-hub main section.prx_proximahub .wrapper .tabcontent > h2 {
        
        padding: 0px 15px !important;
    }
    main section.prx_proximahub .wrapper .tabbox p.tab button {
        padding: 10px 10px;
        border-radius: 20px;
    }
    main section.prx_news_single .wrapper ul.programme li span {			
        width: 45%;
    }
    .microsite-agent-website header { 
        padding: 0px;
    }
}
/*mediaquery for 417*/
@media (max-width: 417px){
    main section.prx_sectionTwo .wrapper .sectionbox {
        padding: 0px 20px !important;
        width: 95%;
    }
}
@media screen and (min-width: 1920px){
    body.proximanew-style .proxima-header .panel.custom-container {
        margin: 0 auto !important;
    }
    }

    body .form-section .contact-form p.btns{
        text-align: right;
        max-width: 100%;
        
    }

    /* change in placeholder and button contact form _ start */
    #html-body section.prx_sectionSix .contact-form select,
    #html-body section.prx_sectionSix .contact-form textarea::placeholder,
    #html-body section.prx_sectionSix .contact-form input::placeholder{
        font-size: 20px !important;
    }
    main section.prx_sectionSix .wrapper > ul > li:nth-child(2) .contact-form  ul li.btns button {
        height: 50px;
        min-width: 153px;
        font-size: 20px;
        padding: 0 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    main section.prx_sectionSix .wrapper > ul > li:nth-child(2) .contact-form  ul li.btns button a{
        font-size: inherit;
    }
    /* change in placeholder and button contact form _ end */
    
    .proxima-news-events * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        -webkit-tap-highlight-color: transparent;
        -webkit-text-size-adjust: none;
           -moz-text-size-adjust: none;
                text-size-adjust: none;
        word-break: break-word;
      }
      
      .proxima-news-events {
        font-size: 16px;
        scroll-behavior: smooth;
        font-family: "Work Sans";
        color: #000;
        margin: 0;
        font-weight: 400;
        overflow-x: hidden;
      }
      .proxima-news-events ul,
      .proxima-news-events ol {
        margin: 0;
        padding: 0;
      }
      .proxima-news-events ul li,
      .proxima-news-events ol li {
        list-style: none;
      }
      .proxima-news-events p {
        font-size: 1em;
        line-height: 1.125;
        margin: 0 0 1.25rem;
      }
      .proxima-news-events p:last-of-type {
        margin: 0;
      }
      .proxima-news-events p:empty {
        display: none;
      }
      .proxima-news-events img {
        display: block;
        max-width: 100%;
        height: auto;
      }
      .proxima-news-events button {
        cursor: pointer;
        background-color: transparent;
        outline: none;
        border: 0;
        -webkit-appearance: none;
      }
      .proxima-news-events .container {
        max-width: 120rem;
        margin: 0 auto;
        padding: 0 1rem;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .container {
          padding: 0 1.5rem;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .container {
          padding: 0 2.5rem;
        }
      }
      @media screen and (min-width:1199px) {
        .proxima-news-events .container {
          padding: 0 3.125rem;
        }
      }
      @media screen and (min-width:1360px) {
        .proxima-news-events .container {
          padding: 0 2.5rem;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .container {
          padding: 0 3.75rem;
        }
      }
      @media screen and (min-width:1600px) {
        .proxima-news-events .container {
          padding: 0 6.25rem;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .is--mobile {
          display: none !important;
        }
      }
      .proxima-news-events .is--desktop {
        display: none !important;
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .is--desktop {
          display: block !important;
        }
      }
      .proxima-news-events .l-btn {
        padding: 0.3125rem 1.25rem;
        border-radius: 61px;
        background: rgb(68, 121, 255);
        color: #fff;
        font-size: 0.8125em;
        line-height: 1.5769230769;
        text-decoration: none;
        display: inline-block;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .l-btn {
          padding: 0.3125rem 1.875rem;
          font-size: 0.875em;
          line-height: 1.8928571429;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .l-btn {
          padding: 0.8125rem 2.625rem;
          font-size: 1.25em;
          line-height: 1.3;
        }
      }
      
      .proxima-news-events .pne.banner {
        background-image: url("../images/banner.png");
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        padding: 3.125rem 0;
        background-color: #19248e;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .pne.banner {
          padding: 4.6875rem 0;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.banner {
          padding: 6.25rem 0;
        }
      }
      .proxima-news-events .pne.banner::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: rgb(68, 121, 255);
        background: linear-gradient(97.21deg, rgba(0, 0, 0, 0.4) 1.05%, rgba(0, 0, 0, 0) 100%);
        opacity: 0.15;
      }
      .proxima-news-events .pne.banner h1 {
        color: #fff;
        font-size: 1.875em;
        line-height: 1.356;
        font-weight: 700;
        z-index: 9;
        position: relative;
        margin-bottom: 0;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .pne.banner h1 {
          font-size: 2.5em;
          line-height: 1.367;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.banner h1 {
          font-size: 3.125em;
          line-height: 1.0936;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.banner h1 {
          font-size: 4em;
          line-height: 1.010625;
        }
      }
      .proxima-news-events .pne.news {
        padding: 2.5rem 0 1.875rem;
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news {
          padding: 3.125rem 0 2.5rem;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news {
          padding: 6.25rem 0 9.375rem;
        }
      }
      .proxima-news-events .pne.news .news__box {
        margin-bottom: 1rem;
        display: flex;
        flex-direction: column-reverse;
      }
      .proxima-news-events .pne.news .news__box:last-child {
        margin-bottom: 0;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .pne.news .news__box {
          margin-bottom: 2.5rem;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news .news__box {
          flex-direction: row;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__box {
          margin-bottom: 7rem;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news .news__wrap article {
          width: 55%;
          flex: 0 0 55%;
          padding-right: 6.125rem;
        }
      }
      @media screen and (min-width:1360px) {
        .proxima-news-events .pne.news .news__wrap article {
          padding-right: 3.625rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article small {
        font-size: 1em;
        line-height: 1.40375;
        color: #000;
        margin-bottom: 0.5rem;
        display: block;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article small {
          font-size: 1.25em;
          line-height: 1.173;
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article h1 {
        font-size: 1.75em;
        line-height: 1.5;
        margin-bottom: 0.5rem;
        font-weight: 700;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .pne.news .news__wrap article h1 {
          font-size: 1.875em;
          line-height: 1.2666666667;
          margin-bottom: 1.125rem;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news .news__wrap article h1 {
          font-size: 2.75em;
          line-height: 1.3181818182;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article h1 {
          font-size: 4em;
          line-height: 1.17296875;
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article h2 {
        font-size: 1.5em;
        line-height: 1.1666666667;
        margin-bottom: 0.5rem;
        font-weight: 700;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .pne.news .news__wrap article h2 {
          font-size: 1.75em;
          line-height: 1.2142857143;
          margin-bottom: 1.125rem;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news .news__wrap article h2 {
          font-size: 2.125em;
          line-height: 1.1176470588;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article h2 {
          font-size: 2.5em;
          line-height: 1.173;
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article h3 {
        font-size: 1.375em;
        line-height: 1.2727272727;
        margin-bottom: 0.5rem;
        font-weight: 700;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .pne.news .news__wrap article h3 {
          font-size: 1.625em;
          line-height: 1.3076923077;
          margin-bottom: 1.125rem;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news .news__wrap article h3 {
          font-size: 2em;
          line-height: 1.1875;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article h3 {
          font-size: 2.25em;
          line-height: 1.1730555556;
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article h3.fw-400 {
        font-weight: 400;
      }
      .proxima-news-events .pne.news .news__wrap article h4 {
        font-size: 1.125em;
        line-height: 1.3333333333;
        margin-bottom: 0.5rem;
        font-weight: 600;
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .pne.news .news__wrap article h4 {
          font-size: 1.25em;
          line-height: 1.2075;
          margin-bottom: 1.125rem;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article h4 {
          font-size: 1.5em;
          line-height: 1.1729166667;
        }
      }
      .proxima-news-events .pne.news .news__wrap article h4.fw-700 {
        font-weight: 700;
      }
      .proxima-news-events .pne.news .news__wrap article ul {
        margin-bottom: 1.125rem;
        padding-left: 1.5625rem;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article ul {
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article ul li {
        font-size: 1em;
        line-height: 1.46625;
        list-style-type: disc;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article ul li {
          font-size: 1.25em;
          line-height: 1.173;
        }
      }
      .proxima-news-events .pne.news .news__wrap article p {
        font-size: 1em;
        line-height: 1.46625;
        margin-bottom: 1.125rem;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article p {
          font-size: 1.25em;
          line-height: 1.173;
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article a {
        color: #000;
        text-decoration: underline;
      }
      .proxima-news-events .pne.news .news__wrap article .l-btn {
        color: #fff;
        text-decoration: none;
        margin-bottom: 0.5rem;
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news .news__wrap article .l-btn {
          margin-bottom: 1.125rem;
        }
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article .l-btn {
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article table {
        width: 100%;
        table-layout: fixed;
        border-collapse: collapse;
        margin-bottom: 1.125rem;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap article table {
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news .news__wrap article table tr th {
        border: 1px solid #000;
        background-color: #000;
        color: #fff;
        font-weight: 400;
        padding: 0.1875rem;
        text-align: left;
      }
      .proxima-news-events .pne.news .news__wrap article table tr td {
        border: 1px solid #000;
        padding: 0.1875rem;
      }
      .proxima-news-events .pne.news .news__wrap figure {
        margin-bottom: 0.75rem;
      }
      .proxima-news-events .pne.news .news__wrap figure figcaption {
        margin-top: 0.625rem;
        text-align: center;
        margin-bottom: 1.125rem;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news .news__wrap figure figcaption {
          margin-bottom: 1.75rem;
        }
      }
      @media screen and (min-width:768px) {
        .proxima-news-events .pne.news .news__wrap figure img {
          max-width: 37.5rem;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news .news__wrap figure img {
          max-width: 100%;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news .news__wrap figure {
          width: 45%;
          flex: 0 0 45%;
          margin-bottom: 0;
        }
      }
      @media screen and (min-width:992px) {
        .proxima-news-events .pne.news--events2 .news__wrap article {
          width: 68%;
          flex: 0 0 68%;
          padding-right: 0;
        }
      }
      .proxima-news-events .pne.news--events2 .news__wrap article p {
        font-size: 1em;
        line-height: 1.46625;
        margin-bottom: 1.125rem;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news--events2 .news__wrap article p {
          font-size: 1.5em;
          line-height: 1.1729166667;
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .pne.news--events2 .news__wrap article .box {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0.5rem;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news--events2 .news__wrap article .box {
          margin-bottom: 1.125rem;
        }
      }
      .proxima-news-events .pne.news--events2 .news__wrap article .box span {
        margin-right: 0.3125rem;
        font-weight: 700;
        min-width: 5rem;
        font-size: 1em;
        line-height: 1.46625;
        display: block;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news--events2 .news__wrap article .box span {
          font-size: 1.25em;
          line-height: 1.173;
          min-width: 6.25rem;
        }
      }
      .proxima-news-events .pne.news--events2 .news__wrap article .box p {
        flex: 1;
        font-size: 1em;
        line-height: 1.46625;
        margin-bottom: 0;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .pne.news--events2 .news__wrap article .box p {
          font-size: 1.25em;
          line-height: 1.173;
        }
      }
      .proxima-news-events .pne.news--events2 .news__wrap figure {
        width: 100%;
        flex: 0 0 100%;
      }
      .proxima-news-events .video_wrapper {
        position: relative;
        margin-bottom: 1.125rem;
      }
      @media screen and (min-width:1440px) {
        .proxima-news-events .video_wrapper {
          margin-bottom: 1.75rem;
        }
      }
      .proxima-news-events .videoPoster {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        background-image: url("../images/video-poster.png");
        background-size: 100%;
        border: none;
        text-indent: -999em;
        overflow: hidden;
        opacity: 1;
        background-repeat: no-repeat;
        background-size: cover;
        transition: opacity 800ms, height 0s;
        transition-delay: 0s, 0s;
      }
      .proxima-news-events .videoPoster:hover {
        cursor: pointer;
      }
      .proxima-news-events .videoPoster:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-image: url("../images/video-btn.png");
        background-size: contain;
        background-repeat: no-repeat;
        width: 3.75rem;
        height: 3.75rem;
      }
      .proxima-news-events .videoPoster:hover:before,
      .proxima-news-events .videoPoster:focus:before {
        border-color: #9b9b9b;
      }
      .proxima-news-events .videoWrapperActive .videoPoster {
        opacity: 0;
        height: 0;
        transition-delay: 0s, 800ms;
      }
      body.proximanew-style .proxima-header:not(.sticky) ~ main .columns .section--banner .pne.banner{
        padding-top: 8rem;
      }
      /*# sourceMappingURL=main.css.map */