/*
Theme Name: Custome Theme
Author: Custome Theme
Description: A custom lightweight theme optimized for performance and compatibility.
Version: 1.0
*/

:root {
  --mainfont: "Manrope", sans-serif;
  --primary: #25265C;
  --secoundery: #5C0032;
  --hover: #5C0032;
}
body, p, a {
    font-family: var(--mainfont);
    line-height: 30px;
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
h1, h2, h3, h4, h5 {
  font-family: var(--mainfont);
  font-weight: 700;
  color: var(--primary);
  margin-top: 0px;
}
h1, h2 {
  font-size: 45px;
  line-height: 55px !important;
}
h1 span, h2 span {
  color: var(--secoundery);
}
a:hover {
  color: var(--secoundery);
}
a {
  text-decoration: none !important;
}
ul, ol {
    padding: 0;
    margin: 0;
    list-style: none;
}
main#content {
    overflow: hidden;
}
@media (max-width: 2200px) {
  .e-con>.e-con-inner, .cust-container, .inner-header {
    max-width: 1500px !important;
	  position:relative;
  }
}
@media (max-width: 1670px) {
  .e-con>.e-con-inner, .cust-container, .inner-header {
    max-width: 1200px !important;
  }
}
@media (max-width: 1280px) {
	.banner-text h1 {
		font-size: 50px !important;
		line-height: 60px !important;
	}
  .e-con>.e-con-inner, .cust-container, .inner-header {
    max-width: 1150px !important;
  }
}
.cust-container, .inner-header {
  margin: 0 auto;
  padding: 0 0px;
  width: 100%;
}
/* Base menu styles */
.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.main-menu li {
  position: relative;
}
/* Hide dropdowns by default */
.main-menu li ul {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 250px;
  z-index: 999;
  box-shadow: 10px 10px 15px #00000069;
}
nav.main-nav a {
    font-size: 18px;
    color: #000000;
    text-decoration: none;
    padding: 33px 20px;
    position: relative;
}
nav.main-nav a:after {
    position:absolute;
	content:'';
	bottom:20px;
	left:0;
	right:0;
	width:100%;
	height:1px;
	background:#5c003200;
}
nav.main-nav .current-menu-item a:after, nav.main-nav a:hover:after {
    background: #5c0032 !important;
}
.main-menu li ul li a:after {
    display:none !important;
}
/* Show dropdown on hover */
.main-menu li:hover > ul {
    display: block;
}
/* Dropdown menu styles */
.main-menu li ul li {
  width: 100%;
}
.main-menu li ul li a {
  padding: 10px;
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #ddd;
  background: #ffffff;
}
.sub-menu .menu-arrow {
  position: absolute;
  right: 10px;
  top: 21px;
  transform: rotate(-90deg);
}
ul.sub-menu .sub-menu {
  left: auto;
  right: -271px;
  top: 0;
}
header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0px;
  margin: 0 auto;
  width: 100%;
  background: #ffffff;
  z-index: 999999;
  transition: all 0.5s;
  border-bottom: 1px solid #ddd;
}
.scroll-down header {
  top: -120px;
}
.scroll-up header {
  top: 0px;
}
.inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo {
    max-width: 140px;
}
.brand-logo a {
  display: block;
  padding: 10px 0;
}
.brand-logo a img {
  display: block;
  position: relative;
  width:100%;
}
footer {
    background: #DCEBE8;
    padding: 60px 10px 30px;
    overflow: hidden;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
}

/*Hambergur Menu*/
.hambergermenu {
  display: none !important;
}
.hambergermenu {
  width: 35px;
  position: relative;
  height: 22px;
  align-items: center;
  cursor: pointer;
}
.hambergermenu span {
  height: 2px;
  width: 100%;
  background: var(--secoundery);
  display: block;
}
.hambergermenu:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--secoundery);
}
.hambergermenu:after {
  content: '';
  position: absolute;
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--secoundery);
}
.hambergermenumob {
  position: fixed;
  top: 0;
  right: -150%;
  left: auto;
  z-index: 999;
  background: #ebf2f6;
  height: 100%;
  width: 100%;
  max-width: 767px;
  border: 1px solid #ddd;
  box-shadow: 5px 5px 15px #00000029;
  transition: all 0.5s;
  overflow: hidden;
  overflow-y: scroll !important;
}
.activemenu {
    right: 0;
}
.hambergermenu-inner {
    position: relative;
    padding: 0 30px 50px;
    top: 40px;
}
.hambergermenu-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu-item {
    position: relative;
}
.hambergermenu-inner ul li a {
    font-size: 20px;
    color: #000000;
    line-height: 50px;
    border-bottom: 1px solid #dddddd7a;
    display: block;
    position: relative;
}
.hambergermenu-inner ul li a:hover {
    color: var(--secoundery);
}
.closebutton {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: all 0.5s;
    cursor: pointer;
}
.closebutton span {
    position: absolute;
    width: 100%;
    background: #000000;
    height: 2px;
    transition: all 0.5s;
    transform: rotate(45deg);
    top: 15px;
    right: 0;
    left: 0;
}
.closebutton:after {
    width: 100%;
    background: #000000;
    height: 2px;
    transition: all 0.5s;
    transform: rotate(-45deg);
    position: absolute;
    content: '';
    top: 15px;
    left: 0;
    right: 0;
}
.hambergermenumob .accordion-toggle::after {
    content: '+';
    margin-left: 10px;
}
.hambergermenumob .accordion-toggle.active::after {
    content: '-';
}
.hambergermenumob .submenu {
    display: none;
    padding-left: 0;
}
.hambergermenumob .submenu li {
    position: relative;
}
.hambergermenumob .submenu li a {
    font-size: 15px;
    line-height: 40px;
    display: block;
    width: 100%;
    position: relative;
}
.hambergermenumob .submenu.open {
    display: block;
}
.hambergermenumob .accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  float: right;
  width: 100%;
  height: 51px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
ul.submenu.depth-0 .accordion-toggle {
    height: 37px;
}
/*Hambergur Menu*/

.themebtn {
    background: var(--secoundery);
    display: inline-block;
    color: #ffffff;
    padding: 8px 30px;
    font-size: 18px;
}
.themebtn:hover {
	color:#ffffff;
	background: #006941;
}
.legacy-text h4 {
    font-size: 30px;
    color: #272625;
    position: relative;
    margin-left: 350px;
    margin-top: 120px;
}
.legacy-text {
    display: flex;
    align-items: flex-end;
    position: relative;
}
.legacy-text img {
    position: absolute;
    top: -180px;
    left: 0;
}
.project-list {
    position: relative;
}
.project-list ul {
    display: flex;
    width: 100%;
}
.project-list ul li {
    width: 100%;
    position: relative;
	transition: all 0.5s
}
.project-list ul li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	background: #0000008f;
	transition: all 0.5s;
}
.project-list ul li:hover:before {
	background: #0000008f;
}
.project-list ul li img {
    width: 100%;
    display: block;
    height: 90vh;
    object-fit: cover;
    object-position: center;
}
.project-meta {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
	transition: all 0.5s;
}
.project-meta-inner h2 {
    text-align: center;
	transition: all 0.5s;
    color: #ffffff;
    font-weight: 600;
    max-width: 500px;
    margin: 0 auto 20px;
}
.project-meta-inner .themebtn {
	display:none;
}
.project-excerpt {
    color: #ffffff;
    font-size: 18px;
    max-width: 600px;
	transition: all 0.5s;
	display:none;
}
.project-excerpt p {
    text-align: center;
	transition: all 0.5s;
    margin-bottom: 30px;
}
.project-meta-inner {
    text-align: center;
}
.project-cateory {
	transition: all 0.5s;
    color: #ffffff;
    display: block;
    margin: 20px 0;
	display:none;
}
.project-list ul li:hover .project-cateory, .project-list ul li:hover .project-excerpt {
	display: block !important;
}
.project-list ul li:hover .themebtn {
	display: inline-block !important;
}
.customform {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.customform li {
    width: 48%;
    margin-bottom: 15px;
}
input.wpcf7-form-control, select, textarea {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 15px 0;
    margin-bottom: 10px;
    background: transparent;
    font-size: 16px;
    border-bottom: 1px solid #888;
    color: #000000;
}
li.fwidth {
    width: 100%;
}
textarea {
    height: 150px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background: #5C0032;
    display: inline-block !important;
    width: auto;
    color: #ffffff;
    padding: 10px 30px;
    cursor: pointer;
}
.testimonials-item {
    color: #ffffff;
    padding: 45px;
    background: #25265c69;
    /* border: 1px solid #ffffff; */
    position: relative;
}
.testimonials-name {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 30px;
}
.testimonials-item:before {
    position: absolute;
    content: '';
    width: 60px;
    height: 50px;
    background:  url(https://psbuildcon.com/wp-content/uploads/2025/09/quotes.png) no-repeat;
    left: 0px;
    top: 0px;
}
.testimonials-slider {
    padding-bottom: 60px;
}
.testimonials-slider .swiper-slide {
    transition: all 0.5s;
    transform: translateY(0px);
}
.testimonials-slider .swiper-slide.swiper-slide-next {
    transform: translateY(-90px);
}
.footer-inner {
    flex-wrap: wrap;
}
.ftr-col {
    width: 48%;
}
.ftrcta a {
    display: block;
    font-size: 45px;
    font-weight: 600;
    color: #25265C;
    line-height: 50px;
}
.ftrcta a:last-child {
    font-size: 35px;
    line-height: 45px;
}
ul.ftrmenu {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.ftrmenu li {
    width: 50%;
}
.ftrmenu li a {
    color: #121537;
    display: block;
}
.ftr-col.copyright-text {
    width: 100%;
    text-align: center;
    padding: 30px 0 0;
    margin-top: 40px;
    border-top: 1px solid #ffffff;
}
.inner-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.inner-banner img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.mobile-banner {
    display: none !important;
}
.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}
.banner-text h1 {
    font-size: 60px;
    line-height: 70px;
    max-width: 500px;
    line-height: 70px !important;
}
.custom-breadcrumbs {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
}
.abtlegacy img {
    top: 0;
    left: -42px;
}
.abtlegacy {
    justify-content: flex-start;
    width: auto;
    height: 230px;
    align-items: flex-end;
}
.abtlegacy h4 {
    font-size: 30px;
    color: #272625;
    position: relative;
    margin-left: 190px;
    margin-top: 0;
    margin-bottom: 16px;
}
.team-content h3 {
    font-size: 35px;
    margin-bottom: 20px;
}
.team-content p {
    margin-bottom: 15px;
}
.team-content ul {
    list-style: disc;
    padding-left: 20px;
}
.awards-slider figure.swiper-slide-inner {
    background: #E5E5EB;
    padding: 0;
}
.awards-slider figure.swiper-slide-inner img {
    height: 180px;
    padding: 30px 0 0;
}
.awards-slider figcaption.elementor-image-carousel-caption {
    background: #ffffff;
    padding-top: 20px;
}
.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.project-post {
    width: 32%;
    margin-bottom: 60px;
}
.project-post img {
    display: block;
    width: 100%;
}
.project-post h3 {
    font-size: 24px;
    line-height: 35px;
    margin: 25px 0;
}
.residential-pro-sec .project-list {
    margin-top: -200px;
}
.amenitiesslider .swiper-slide.swiper-slide-active, .amenitiesslider .swiper-slide.swiper-slide-active + div, .amenitiesslider .swiper-slide.swiper-slide-active + div + div {
    opacity: 1 !important;
}
.amenitiesslider .swiper-slide {
    opacity: 0;
    transition: all 0.5s;
}
.amenitiesslider .swiper {
    overflow: visible;
}
.amenitiesslider .swiper-slide img {
    width: 100%;
    transition: all 0.5s;
	left: 0px;
    top: 0px;
	position: relative;
}
.amenitiesslider .swiper-slide.swiper-slide-active + div .swiper-slide-image {
    width: 60%;
    left: 30px;
    top: 132px;
}
.amenitiesslider .swiper-slide.swiper-slide-active + div .swiper-slide-image {
    width: 60%;
    left: 30px;
    top: 132px;
}
.amenitiesslider .swiper-slide.swiper-slide-active + div + div .swiper-slide-image {
    left: -110px;
	width: 60%;
    top: 132px;
}
.amenitiesslider figure.swiper-slide-inner {
    display: flex;
}
.customlist li {
    position: relative;
    padding-left: 25px;
}
.amenities-grid.customlist li {
    font-size: 15px;
    line-height: 27px;
}
.customlist li:before {
	position: absolute;
	content: '';
	left: 0;
	top: 11px;
	width: 7px;
	height: 7px;
	background: #5C0032;
}
.customlist.whiteicon li:before {
	background: #ffffff !important;
}
.floor-plan-inner {
    border: 1px solid #707070;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
	width:100%;
	position:relative;
	transition:all 0.5s;
}
.floor-plan-img {
    width: 40%;
}
.floor-plan-img img {
    filter: blur(5px);
}
.floor-plan-text {
    width: 60%;
}
.fp-content h4 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
    max-width: 450px;
}
.fp-content p {
    font-size: 30px;
    line-height: 40px;
    font-weight: 700;
    color: var(--primary);
    margin: 25px 0;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.floor-plan-slider {
    overflow: visible !important;
}
.floor-plan-slider .swiper-slide {
    opacity: 0;
    transition: all 0.5s;
}
.floor-plan-slider .swiper-slide.swiper-slide-active, .floor-plan-slider .swiper-slide.swiper-slide-active + div {
    opacity: 1;
}
.floor-plan-slider .swiper-slide.swiper-slide-active + div .floor-plan-inner {
    width: 80%;
}
.e-n-tab-title {
	cursor:pointer;
}
.nearbyacc .e-n-accordion-item-title-text {
    display: inline-block !important;
    background: #ffffff;
	z-index:2;
	padding-right:20px;
}
.e-n-accordion-item-title-header {
    width: 100%;
    display: block;
	position:relative;
}
.nearbyacc .e-n-accordion-item-title-header:before {
    position: absolute;
    content: '';
    right: 0;
    top: 16px;
    background: #707070;
    width: 100%;
    height: 1px;
    z-index: 1;
}
.elementor-swiper-button, .swiper-button-next, .swiper-button-prev {
    width: 38px !important;
    height: 38px !important;
    border: 2px solid #5C0032;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 100%;
}
html .swiper-button-next, html .swiper-button-prev {
    background-image: url('https://psbuildcon.com/wp-content/uploads/2025/09/next-arrow.svg'); !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
    background-size: 8px !important;
	background-color: #ffffff;
}
html .swiper-button-prev {
    background-image: url('https://psbuildcon.com/wp-content/uploads/2025/09/prevarrow.svg'); !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
    background-size: 8px !important;
	background-color: #ffffff;
}
.elementor-swiper-button:hover {
    background: #ffffff;
}
.swiper-button-next:after, .swiper-button-prev:after {
	display:none !important;
}
/* body.page-id-415 {
    padding-top: 83px;
} */
body.page-id-415 .banner-text {
    display: none;
}
body.page-id-415 .custom-breadcrumbs {
    display: none;
}
.rightbox, .leftbox {
    position: relative;
}
.rightbox:after {
    background: #25265C;
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 515px;
    height: 175px;
}
.leftbox:after {
    background: #25265C;
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 515px;
    height: 175px;
}
.amenitiesslider .elementor-swiper-button {
    right: -70px !important;
    left: auto !important;
    top: 75px !important;
}
.amenitiesslider {
    position: relative;
}
.amenitiesslider .elementor-swiper-button.elementor-swiper-button-next {
    right: -120px !important;
}
.floor-plan-slider .swiper-button-next, .floor-plan-slider .swiper-button-prev {
    right: -70px !important;
    left: auto !important;
	top: auto;
    bottom: 0px !important;
}
.floor-plan-slider {
    position: relative;
}
.floor-plan-slider .swiper-button-next {
    right: -120px !important;
}
.gallerytabs .elementor-swiper-button {
    right: 50px !important;
    left: auto !important;
    top: auto !important;
	bottom: -65px !important;
}
.gallerytabs {
    position: relative;
}
.gallerytabs .elementor-swiper-button.elementor-swiper-button-next {
    right: 0px !important;
}
.hdrcta a {
    background: url(https://psbuildcon.com/wp-content/uploads/2025/09/hdrphone.png) no-repeat center left;
    padding-left: 50px !important;
    margin-left: 50px;
    position: relative;
}
.hdrcta a:before {
    position: absolute;
    content: '';
    left: -25px;
    top: 30px;
    width: 1px;
    height: 30px;
    background: #ddd;
}
.customaccordian svg path {
    fill: #ffffff !important;
}
.ftr-col.ftrabout img {
    margin-top: -85px;
    display: block;
    margin-bottom: 30px;
}
.articletxt {
    padding: 0 80px;
    position: relative;
}
.articletxt:before {
    position: absolute;
    content: '';
    left: 0;
    top: -25px;
    background: url(https://psbuildcon.com/wp-content/uploads/2025/09/leftshape.svg) no-repeat;
    width: 106px;
    height: 210px;
}
.articletxt:after {
    position: absolute;
    content: '';
    right: 0;
    top: -25px;
    background: url(https://psbuildcon.com/wp-content/uploads/2025/09/rightshape.svg) no-repeat;
    width: 106px;
    height: 210px;
}
.csrslider .elementor-swiper-button {
    left: auto !important;
    top: auto !important;
    bottom: 5px !important;
    right: 10px !important;
}
.csrslider .elementor-swiper-button.elementor-swiper-button-prev {
    right: 60px !important;
}
.csrslider .elementor-swiper-button {
    border: 2px solid #ffffff !important;
}
.stickytabs {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

.stickytabs a {
    background: #E5E5EB;
    padding: 15px 20px;
    color: #272625;
    font-weight: 700;
    transition: all 0.5s;
    position: relative;
    border-bottom: 4px solid #5c003200;
}
.stickytabs a:hover {
    border-bottom: 4px solid #5c0032;
}
.stickytabs a.activetabsticky {
    border-bottom: 4px solid #5c0032;
}
.stickysec {
    position: sticky !important;
    top: -30px !important;
    height: 64px !important;
    z-index: 9 !important;
	transition: all 0.5s;
}
.scroll-up .stickysec {
    top: 50px !important;
}

#accordion-image-display {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.accordion-img {
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.righthline h2 {
    display: inline-block;
    background: #e5e5eb;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}
.righthline {
    position: relative;
}
.righthline:after {
    position: absolute;
    content: '';
    right: 0;
    top: 27px;
    width: 100%;
    height: 1px;
    background: #707070;
}

.lefthline h2 {
    background: #e5e5eb;
    padding-left: 40px;
    position: relative;
    z-index: 1;
	margin-left:180px;
}
.lefthline {
    position: relative;
}
.lefthline:after {
    position: absolute;
    content: '';
    right: 0;
    top: 27px;
    width: 100%;
    height: 1px;
    background: #707070;
}

.galleryslider .swiper-slide {
    transition: all 0.5s;
    transform: scale(1);
	right: 0;
    opacity: 0;
}
.galleryslider .swiper-slide.swiper-slide-active {
    transform: scale(1.6);
    position: relative;
    z-index: 9;
	opacity: 1;
}
.galleryslider {
    overflow: visible !important;
}
.galleryslider .swiper-slide.swiper-slide-prev {
    position: relative;
    right: -100px;
    opacity: 1;
}
.galleryslider .swiper-slide.swiper-slide-next {
    left: -100px;
    opacity: 1;
}
.galleryslider .swiper-button-next, .galleryslider .swiper-button-prev {
    left: 0;
    right: 0;
    margin: 0 auto;
    top: auto;
    bottom: -140px;
}
.galleryslider .swiper-button-next {
    right: -60px;
}
.galleryslider .swiper-button-prev {
    left: -60px;
}
.statsboxmob {
    background: #E5E5EB;
    padding: 20px;
    border-radius: 0px;
    width: 47%;
    height: 150px;
    display: flex;
    align-items: center;
}
.statsboxmob span {
    display: block;
    color: #5C0032;
    font-size: 40px;
    width: 100%;
    line-height: 60px;
    font-weight: 700;
}
.amenities-mob-sec {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.statsboxmob p {
    color: #25265C;
    font-size: 26px;
    line-height: 35px;
    font-weight: 600;
}
.amenities-text-sec {
    width: 100%;
    background: url(https://psbuildcon.com/wp-content/uploads/2025/09/amenities.jpg) no-repeat;
    background-size: cover;
    padding: 30px;
    color: #ffffff;
    margin-bottom: 30px;
}
.amenities-text-sec h2 {
    color: #ffffff;
}
.amenities-text-sec .customlist li {
    width: 50%;
}
.amenities-text-sec .customlist {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.homeongsec h2 {
    margin-bottom: 20px;
}
.homeongsec p {
    margin-bottom: 25px;
}


@media(max-width:1024px) {
	.homeongsec {
		position: relative !important;
		max-width: 100% !important;
		width: 100% !important;
		padding: 20px 20px 30px !important;
		right: 0 !important;
		bottom: 0 !important;
		background: #bff2f6;
	}
	.team-content h3 {
		font-size: 25px;
		line-height: 30px;
	}
	.fp-content p {
		font-size: 22px;
		line-height: 32px;
	}
	.fp-content h4 {
		font-size: 30px;
		line-height: 40px;
		max-width: 100%;
	}
	.floor-plan-slider .swiper-button-next, .floor-plan-slider .swiper-button-prev {
		bottom: -70px !important;
	}
	.floor-plan-inner {
		flex-wrap: wrap;
	}
	.floor-plan-img {
		width: 100%;
		text-align: center;
	}
	.floor-plan-text {
		width: 100%;
	}
	.floor-plan-slider .swiper-slide.swiper-slide-active + div .floor-plan-inner {
		width: 100%;
	}
	.rightbox:after, .leftbox:after {
		display:none !important;
	}
	.stickytabs {
		overflow: auto;
		white-space: nowrap;
		width: 100%;
	}
	.articletxt {
		padding: 0;
	}
	.articletxt:before, .articletxt:after, .articletxt br {
		display:none;
	}
	.galleryslider .swiper-button-next, .galleryslider .swiper-button-prev {
    	bottom: -90px;
	}
	.amenitiesslider .swiper-slide.swiper-slide-active + div .swiper-slide-image {
		top: 108px;
	}
	.amenitiesslider .elementor-swiper-button {
		top: 50px !important;
	}
	.inner-banner img {
		height: 400px;
	}
	.banner-text {
		padding: 0 20px;
	}
	.custom-breadcrumbs {
		padding: 0 20px;
	}
	.banner-text h1 {
		font-size:40px !important;
		line-height:50px !important;
		max-width: 400px !important;
	}
	.brand-logo {
		max-width: 120px;
		padding-left: 20px;
	}
	.hambergermenu {
        display: flex !important;
    }
	.theme-main-menu {
		padding-right: 20px;
	}
	footer {
		padding: 30px 20px;
	}
	.ftr-col:first-child {
		display: none;
	}
	.ftr-col.ftrcta {
		width: 100%;
		text-align: center;
	}
	.ftr-col.ftrabout {
		width: 100%;
		text-align: center;
	}
	.ftr-col.ftrlinks {
		width: 100%;
		text-align: center;
	}
	.ftr-col.ftrabout img {
		margin: 30px auto 20px !important;
	}
	.project-list ul li img {
		height: 70vh !important;
	}
	h2 {
		font-size:40px !important;
		line-height:50px !important;
	}
	.tabprel {
		position:relative !important;
		top:0 !important;
		right:0 !important;
		left:0px !important;		
	}
	nav.main-nav {
		display: none;
	}
}
@media(max-width:767px) {
	.page-id-415 .mobile-banner {
		margin-top: 70px;
	}
	html .abtlegacy img {
		position: relative !important;
		margin: 0 auto;
	}
	html .abtlegacy h4 {
		margin-top: 0 !important;
		margin-left: 0 !important;
		text-align: center !important;
		display: block;
		width: 100%;
	}
	.abtlegacy {
		flex-wrap: wrap;
	}
	#homeherobanner {
		background: #ffffff;
	}
	.homebgh2 {
		font-size: 30px !important;
		line-height: 40px !important;
	}
	.mobile-banner {
		display: block !important;
		height: auto !important;
	}
	.desktop-banner {
		display:none !important;
	}
	.floor-plan-slider .swiper-button-next {
		right: -40px !important;
	}
	.floor-plan-slider .swiper-button-prev {
		right: 10px !important;
	}
	.fp-content p {
		font-size: 18px;
		line-height: 28px;
	}
	.fp-content h4 {
		font-size: 25px;
		line-height: 35px;
	}
	.floor-plan-inner {
		gap: 20px;
	}
	.statsboxmob {
		width: 48%;
		margin-bottom: 10px;
		height: auto;
	}
	section.amenities-mob-sec {
		gap: 3%;
	}
	.statsboxmob span {
		font-size: 32px;
	}
	.statsboxmob p {
		font-size: 20px;
		line-height: 25px;
	}
	.amenities-text-sec .customlist li {
		width: 100%;
	}
	.galleryslider .swiper-button-next, .galleryslider .swiper-button-prev {
        bottom: -50px;
    }
	.galleryslider .swiper-slide.swiper-slide-prev {
		right: 0;
	}
	.galleryslider .swiper-slide.swiper-slide-next {
		left: 0px;
	}
	.galleryslider .swiper-slide.swiper-slide-active {
		transform: scale(1);
	}
	.amenitiesslider .elementor-swiper-button {
		top: auto !important;
		bottom: 0px !important;
		right: 65px !important;
	}
	.amenitiesslider .elementor-swiper-button.elementor-swiper-button-next {
		right: 20px !important;
	}
	.lefthline h2 {
		padding-left: 0px;
		margin-left: 0px;
	}
	.righthline h2 {
		padding-right: 0px;
	}
	.residential-pro-sec .project-list {
		margin-top: -100px !important;
	}
	.project-post {
		WIDTH: 100%;
	}
	.banner-text {
		position: relative;
		padding: 0;
	}
	.custom-breadcrumbs {
		position: relative;
		bottom: 0 !important;
	}
	.banner-text h1 {
		font-size: 35px !important;
		line-height: 45px !important;
		margin-bottom: 10px !important;
		margin-top: 15px;
		padding: 0 20px;
	}
	.ftrcta a {
		font-size: 28px;
		line-height: 38px;
	}
	.ftrcta a:last-child {
		font-size: 28px;
		line-height: 38px;
	}
	.testimonials-name {
		font-size: 22px;
		margin-bottom: 10px;
		padding-left: 45px;
	}
	.testimonials-item {
		padding: 25px;
	}
	.project-meta-inner {
		padding: 0 20px;
	}
	.project-meta-inner h2 {
		font-size: 25px !important;
		line-height: 35px !important;
	}
	.project-excerpt {
		font-size: 16px !important;
	}
	.tabs-nav a {
		padding: 10px 15px !important;
	}
	.legacy-text h4 {
        font-size: 25px !important;
        margin-left: 85px !important;
        margin-top: 176px !important;
    }
	.legacy-text img {
        top: -20px !important;
        left: 0 !important;
        width: 250px !important;
    }
	h2 {
		font-size:35px !important;
		line-height:45px !important;
	}
}