/*
================== Global Variables
*/
:root {
  --base-color: #34157f;
  --primary-color: #0fc9f2;
  --light-purple: #522ab1;
  --dark-purple: #200D4D;
  --white: #fff;
  --black: #000;
  --global-font: "Satoshi Variable", sans-serif;
  --font-color: #374151;
  --light-gray: rgba(243, 244, 246, 1);
}

/*
	================== Global Style
*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
html {
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  font-family: var(--global-font);
  font-weight: 400;
  color: var(--dark-purple);
  font-size: 1.6rem;
}

#primary.content-area {
  padding-top: 66px;
}

a {
  text-decoration: none;
  color: var(--black);
}

a:focus {
  outline: none;
}

a:hover {
  color: var(--black);
  transition: all ease 0.3s;
}

strong {
  font-weight: 500;
}

video {
  width: 100%;
  display: block;
}

*:focus {
  outline: 0;
}

:focus-visible {
  outline: 0;
}

::-webkit-input-placeholder {
  color: #767676;
}

::-moz-placeholder {
  color: #767676;
}

:-ms-input-placeholder {
  color: #767676;
}

:-moz-placeholder {
  color: #767676;
}

img {
  height: auto;
  display: block;
}

p {
  font-size: 1.4rem;
  line-height: 1.428;
  font-weight: 400;
  color: #374151;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--font-color);
}

ul {
  padding-left: 0px;
  margin-left: 0px;
}

li {
  list-style-type: none;
}

.text-center {
  text-align: center;
}

.nopost {
  text-align: center;
  padding: 20px;
}

.font48 {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
}

.btn {
  color: var(--white);
  padding: 15px 25px;
  display: block;
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.31;
  border-radius: 0;
  border-color: var(--light-purple);
  width: fit-content;
}

.btn-primary {
  background-color: var(--light-purple);
}

.btn-primary:hover {
  background-color: var(--white);
  border-color: var(--light-purple);
  color: var(--light-purple);
}

.btn-primary.dark-btn {
  background-color: var(--dark-purple);
}

.btn-primary.dark-btn:hover {
  background-color: var(--white);
  border-color: var(--dark-purple);
  color: var(--dark-purple);
}

.btn-primary:hover svg path {
  fill: var(--light-purple);
}

.btn-primary.dark-btn:hover svg path {
  fill: var(--dark-purple);
}

.btn svg {
  width: 14px;
}

.btn-white {
  background-color: var(--white);
  color: var(--light-purple);
  border: 0;
}

.btn-white:hover {
  background-color: var(--dark-purple);
  color: var(--white);
}

.btn-white svg path {
  fill: var(--light-purple);
}

.btn-white:hover svg path {
  fill: var(--white);
}

.btn.btn-sm {
  font-size: 14px;
  font-weight: 900;
  padding: 7px 11px 7px 9px;
  text-transform: none;
}

input[type="submit"] {
  color: var(--white);
  padding: 10px 20px;
  display: block;
  display: flex;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.31;
  border: none;
  border-radius: 0;
  width: fit-content;
  background-color: var(--light-purple);
}

/*
	================== Header Style
*/
header.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
}

.site-branding img {
  max-width: 100px;
}

.main-menu {
  display: flex;
}

.main-menu .main-navigation ul {
  justify-content: end;
}

.main-menu .main-navigation ul li {
  position: relative;
}

.main-menu .main-navigation ul li a {
  color: var(--white);
  padding: 10px 15px;
  display: block;
  font-size: 2.4rem;
  line-height: 1.167;
  font-weight: 500;
}

.main-menu .main-navigation ul li a:hover {
  color: var(--primary-color);
}

.main-menu .main-navigation ul li.current-menu-item> {
  font-weight: 900;
}

.main-menu .main-navigation ul li ul.sub-menu {
  padding-left: 20px;
  display: none;
}

.main-menu .main-navigation .menu-main-menu-container ul.menu li.menu-item-has-children.active-menu ul.sub-menu {
  display: block;
}

.main-menu .main-navigation .menu-main-menu-container ul.menu li.menu-item-has-children span {
  position: absolute;
  width: 10px;
  height: 10px;
  padding: 20px;
  background-image: url(../images/white-down-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  top: 6px;
  transform: rotate(-90deg);
  transition: var(--transition4s);
  z-index: 1;
  cursor: pointer;
}

.main-menu .main-navigation .menu-main-menu-container ul.menu li.menu-item-has-children.active-menu span {
  transform: rotate(0deg);
}

.hamburger {
  width: 40px;
  padding: 12px 7px;
  border: none;
  cursor: pointer;
  background: transparent;
  border-radius: 0;
  margin-right: 0;
  position: relative;
  z-index: 2;
}

.hamburger:focus-visible {
  outline: none;
}

.lines {
  width: 100%;
  height: 2px;
  margin: 0 auto 7px;
  display: block;
  background-color: var(--white);
  transition: all ease 0.3s;
}

.lines:last-child {
  margin-bottom: 0;
}

.open .lines {
  background-color: var(--white);
}

.open.hamburger .lines:nth-child(2) {
  display: none;
}

.open.hamburger .lines:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.open.hamburger .lines:nth-child(3) {
  transform: rotate(-45deg);
}

.main-menu .main-navigation {
  transform: translateX(-100%);
  transition: all ease 0.5s;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  width: 86%;
  background: var(--base-color);
  top: 0;
  height: 100vh;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 15px;
  z-index: 9;
}

.main-menu.active-nav .main-navigation {
  transform: translateX(0);
}

.mobile-logo {
  padding: 25px;
}

body.active-data {
  overflow: hidden;
}

body.active-data:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 3;
}

/*
	================== Home Banner Style
*/
.home-banner {
  background-color: var(--base-color);
  padding-top: 140px;
  padding-bottom: 24px;
}

.banner-image {
  text-align: center;
}

.banner-image img {
  max-width: 370px;
  width: 100%;
  height: auto;
  margin: 0px auto;
}

.banner-main-content {
  margin-bottom: 4px;
  padding-left: 32px;
}

.banner-main-content p {
  color: var(--white);
  opacity: 0.5;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}

.banner-text {
  line-height: 1.5;
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 700;
  position: relative;
  padding-left: 32px;
  text-transform: uppercase;
}

.banner-text:after {
  position: absolute;
  color: var(--white);
  content: '+';
  margin-left: 10px;
}

.whychoose-section {
  background-color: var(--dark-purple);
  padding-top: 40px;
  padding-bottom: 40px;
}

.whychoose-outer {
  background-color: #1f0d4d;
  position: relative;
  z-index: 2;
  padding: 0px 35px;
}

.whychoose-outer h2 {
  color: var(--white);
  font-size: 3.2rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.whychoose-para {
  margin-bottom: 25px
}

.whychoose-para p {
  color: var(--white);
}

.whychoose-outer .btn {
  font-size: 1.2rem;
  color: var(--base-color);
  padding: 5px 10px;
  font-weight: 900;
  border-radius: 2px;
}

.site-footer {
  position: relative;
}

.whychoose-section,
.footer-section {
  position: relative;
  z-index: 1;
}

.whychoose-section:after {
  position: absolute;
  content: '';
  background-color: #1f0d4d;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 1;
}

.footer-section {
  background-color: #512ab1;
  padding-top: 52px;
  padding-bottom: 52px;
}

.pricehike-section {
  background: var(--dark-purple);
  opacity: 1;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}

.pricehike-outer {
  position: relative;
  padding: 3px 36px;
}

.pricehike-image img {
  width: 100%;
  height: 162px;
  object-fit: cover;
}

.pricehike-content h2 {
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  border-bottom: solid 1px var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
}

.bottom-hbi-text p {
  color: var(--white);
}

.bottom-hbi-text .book-btn {
  color: var(--primary-color);
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 4px;
}

.bottom-hbi-text .book-btn svg {
  width: 12px;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #fff;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #fff;
}

button.hide-btn {
  background: transparent;
  color: #43425d;
  border: 0;
  padding: 0;
  position: absolute;
  top: 0px;
  right: 0;
  align-items: center;
  gap: 3px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact {
  background-color: #512ab1;
  padding: 0px 35px;
}

.footer-outer:after {
  position: absolute;
  content: '';
  background-color: #421f97;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  display: none;
}

.footer-outer .row {
  z-index: 1;
  position: relative;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-address {
  max-width: 150px;
}

.footer-contact h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
}

.footer-address p {
  font-size: 1.2rem;
  color: var(--white);
}

.footer-address p strong {
  font-weight: 700;
}

.contact-foot-details {
  margin-top: 16px;
  flex-direction: column;
}

.contact-foot-details a {
  font-size: 1.2rem;
  color: var(--white);
}

.footer-menu ul.menu li a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.bottom-footer {
  padding: 16px 0;
}

.bottom-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-text {
  padding-left: 20px;
}

.bottom-footer-inner p {
  margin-bottom: 0;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.5px;
  text-align: right;
  line-height: 16px;
}

/* project-image */
.project-section {
  background-color: var(--dark-purple);
  padding-top: 20px;
  padding-bottom: 100px;
}

.odd-box,
.even-box {
  width: 328px;
}

.even-box {
  margin-left: auto;
}

.project-detail-content {
  background: var(--white);
}

.project-image img {
  width: 100%;
  height: 327px;
  display: block;
  object-fit: cover;
}

.project-btn {
  display: flex;
}

.project-btn .btn {
  font-weight: 900;
  padding: 22px 33px;
}

.proBox-details ul {
  grid-template-columns: repeat(3, 1fr);
}

.proBox-details ul li {
  background-color: var(--primary-color);
  border-bottom: solid 1px #96E0F1;
  height: 115px;
  width: 109px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  line-height: 1.167;
  color: var(--base-color);
  font-weight: 700;
  position: relative;
}

.proBox-details.bottom-box ul li:last-child {
  background: #96E0F1;
}

.proBox-details ul li:after {
  position: absolute;
  content: '+';
  top: 12px;
  left: 12px;
  color: var(--base-color);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 0.6;
  width: 19px;
  height: 19px;
}

.proBox-details ul li span {
  margin-top: auto;
}

.proBox-details.bottom-box ul li {
  border-right: solid 1px #96E0F1;
  border-bottom: 0;
}

.proBox-details.bottom-box ul li:last-child {
  border: none;
}

.project-text {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
}

.top-detail {
  display: flex;
  flex-direction: column;
}

.top-detail h4 {
  color: var(--dark-purple);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 14px;
}

.top-detail p {
  line-height: 1.33;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark-purple);
  margin-bottom: 5px;
}

.top-detail p.proprice {
  font-weight: 500;
}

.bottom-detail {
  margin-top: auto;
}

.bottom-detail h5 {
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 900;
  color: var(--dark-purple);
  text-transform: uppercase;
}

.proBox-details.bottom-box ul li:nth-child(3),
.proBox-details.upper-box ul li:nth-child(1) {
  display: none;
}

.static-logo {
  margin-bottom: 7px;
}

.static-logo img {
  display: inline-block;
  height: 20px;
}

.commercial-section {
  overflow: hidden;
  padding: 56px 0 100px 35px;
}

.commercial-section .owl-stage-outer {
  overflow: visible;
}

.commercial-section .owl-stage {
  padding-left: 0 !important;
}

.commercial-section .owl-item {
  position: relative;
}

.commercial-section .owl-item:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}

.commercial-section .owl-item.active:after {
  display: none;
}

.commercial-section .owl-item .commercial-image img {
  height: 250px;
  object-fit: cover;
  display: block;
}

.commercial-content {
  padding: 24px;
  position: relative;
}

.commercial-content:after {
  position: absolute;
  content: '';
  top: 30px;
  right: 0;
  height: 60%;
  border: solid 1px var(--base-color);
}

.commercial-card h6 {
  font-size: 1.8rem;
  line-height: 1.333;
  margin-top: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--dark-purple);
}

.commercial-card h6 a {
  color: var(--dark-purple);
}

.commercial-card .static-logo img {
  width: auto;
  display: block;
}

.commercial-card .post-content {
  margin-bottom: 0;
}

.commercial-card .post-content p {
  font-weight: 500;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.heading-wrap {
  margin-bottom: 40px;
}

.heading-wrap h2 {
  color: var(--base-color);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0px;
}

.update-section {
  background-color: #E5E7EB;
  padding-top: 37px;
  padding-bottom: 96px;
  padding-left: 35px;
  overflow: hidden;
}

.update-slider .owl-stage {
  padding-left: 0 !important;
}

.update-slider .owl-stage-outer {
  overflow: visible;
}

.update-slider .owl-item:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(229, 231, 235, 0.8);
}

.update-slider .owl-item.active:after {
  display: none;
}

.post-card .post-image img {
  height: 253px;
  object-fit: cover;
  display: block;
}

.post-content-wrap {
  padding: 16px;
}

.post-content-wrap h6 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark-purple);
  margin-top: 0;
  margin-bottom: 16px;
}

.post-content-wrap h6 a {
  color: var(--dark-purple);
}

.post-content {
  margin-bottom: 24px;
}

.post-content p {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.post-card .btn {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
  width: fit-content;
  padding: 8px 10px;
}

/* project detail style */
.project-banner img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.project-banner {
  position: relative;
}

.project-slider .slider-items {
  position: relative;
}

.project-slider .slider-items:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 7, 18, 0.75);
}

.project-slider .slider-items img {
  display: block;
  /* -webkit-filter: grayscale(1);
  filter: grayscale(1); */
}

.project-slider .owl-item.center .slider-items img {
  filter: none;
}

.project-slider .owl-item.center .slider-items:after {
  display: none;
}

.project-slider .owl-nav {
  position: absolute;
  bottom: 33px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #030712;
  padding: 3px;
  width: 113px;
  display: none;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0 -23px;
}

.fancybox__toolbar__column.is-right .f-button[title="Toggle full-screen mode"],
.fancybox__toolbar__column.is-right .f-button[title="Toggle zoom level"] {
  display: none;
}

.project-slider .owl-nav [class*=owl-]:hover {
  background-color: transparent;
}

.project-slider .owl-nav button img {
  width: 13px;
  height: auto;
}

.owl-nav .drag-line {
  height: 2px;
  background: rgba(255, 255, 255, 30%);
  width: 50%;
}

.project-slider .owl-prev {
  transform: rotate(180deg);
}

.slider-items .fullimage {
  position: absolute;
  bottom: 20px;
  right: 0;
  transform: translateX(-50%);
  background-color: var(--white);
  width: 24px;
  height: 24px;
  margin-left: 50px;
  display: none;
  align-items: center;
  justify-content: center;
}

.project-slider .owl-item.center .slider-items .fullimage {
  display: flex;
}

.customNavigation {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 30px;
  z-index: 2;
  right: 25px;
}

.customNavigation .drag-line {
  height: 2px;
  background: rgba(255, 255, 255, 30%);
  width: 100%;
}

.customNavigation .prev_next img {
  width: 13px;
  height: auto;
}

.customNavigation .prev_next {
  display: flex;
  gap: 5px;
  background-color: #030712;
  padding: 6px;
  width: 113px;
  align-items: center;
  justify-content: space-between;
}

.customNavigation .prev_next a {
  display: block;
}

.customNavigation .prev_next .custom-prev {
  transform: rotate(180deg);
}

.customNavigation .fullimage {
  background-color: var(--white);
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  display: none;
}

.customNavigation .fullimage.active {
  display: flex;
}

.project-single-detail {
  padding: 32px 0;
}

.project-detail .static-logo img {
  height: 31px;
}

.project-detail h2 {
  font-size: 4rem;
  line-height: 1;
  font-weight: 900;
  margin-top: 7px;
  margin-bottom: 32px;
}

.apprt-detail {
  font-size: 2.4rem;
  line-height: 1.167;
  font-weight: 500;
}

.apprt-detail h4 {
  font-size: 2.4rem;
  line-height: 1.167;
}

.place-rice p {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 5px;
}

.project-navigation {
  background-color: #F3F4F6;
  border-bottom: solid 1px #D1D5DB;
  position: sticky;
  top: 0;
  z-index: 3;
}

.close-plan {
  margin-left: 26px;
  margin-bottom: 43px;
  display: inline-block;
}

.masterplan-tab {
  position: fixed;
  background-color: #F3F4F6;
  z-index: 2;
  width: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  height: 100vh;
  transform: translateX(-100%);
  transition: all ease 0.3s;
}

.masterplan-tab.active {
  transform: translateX(0);
}

.master-wrap {
  gap: 10px;
}

.plan-icon {
  cursor: pointer;
}

.plan-icon span {
  width: 16px;
  height: 2px;
  background: var(--dark-purple);
  display: flex;
  margin: 7px;
}

.master-btn a {
  padding: 20px;
  display: block;
  background-color: var(--white);
  border-bottom: 1px solid #522AB2;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.778;
  color: var(--dark-purple);
}

.masterplan-tab ul {
  margin: 0;
}

.masterplan-tab ul li a {
  padding: 14px 15px 14px 35px;
  display: block;
  color: #374151;
  background-color: #F3F4F6;
  border-bottom: 1px solid #F3F4F6;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.556;
}

.masterplan-tab ul li.active a {
  color: var(--dark-purple);
  background-color: rgba(255, 255, 255, 50%);
  border-bottom: 1px solid #522AB2;
  font-weight: 700;
}

.masterplan-tab ul li:last-child a {
  border-bottom: none;
}

.masterplan-tab ul li a.cont-btn {
  background-color: #522AB2;
  color: var(--white);
  font-weight: 700;
}

.project-menu-footer {
  padding: 50px 35px;
}

.project-menu-footer .static-logo img {
  height: 40px;
}

.project-menu-footer h3 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 0;
}

.para p {
  color: #374151;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

.feature-single-content-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.feature-single-content-section .two-column-row {
  margin-top: 0;
}

.feature-single-content-section .two-column-row .heading-content {
  margin-bottom: 0;
}

.single-image-content {
  background-color: #F9FAFB;
  padding-bottom: 20px;
}

.image-details img {
  width: 100%;
  display: block;
}

.border-image-wrap {
  padding: 16px;
  background-color: var(--white);
}

.view-btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #6B7280;
}

.view-btn svg path {
  fill: #6B7280;
}

.border-image img {
  height: 399px;
  object-fit: cover;
}

.single-image-content h2 {
  font-size: 3.2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.morebtn {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 8px;
  display: flex;
  align-items: center;
  width: fit-content;
  text-transform: uppercase;
}

.single-content {
  margin-top: 24px;
}

.single-content p {
  font-size: 1.8rem;
  line-height: 1.333;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0;
}

.two-image-content {
  padding-top: 20px;
  background-color: #F9FAFB;
}

.mobile-section {
  max-width: 294px;
  margin: 0px auto;
}

.image-with-icon {
  position: relative;
  margin-bottom: 40px;
}

.image-with-icon img {
  width: 100%;
}

.image-icon {
  position: absolute;
  left: -19px;
  bottom: -19px;
  border-radius: 50%;
  overflow: hidden;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.image-icon img {
  width: auto !important;
  height: auto !important;
}

.image-content-repeater .image-icon {
  left: -20px;
}

.heading-content {
  position: relative;
  margin-bottom: 66px;
}

.heading-content h3 {
  font-size: 2.4rem;
  line-height: initial;
  font-weight: 700;
  margin-bottom: 20px;
  color: #374151;
}

.video-content-section {
  background-color: #1F2937;
  overflow: hidden;
}

.video-content-section iframe {
  width: 100%;
  height: 229px;
  object-fit: cover;
  display: block;
}

.video-content {
  padding: 40px 78px 40px 48px;
}

.video-content p {
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1.167;
  font-weight: 700;
  margin: 0;
}

.full-image-content-section {
  padding-top: 32px;
  padding-bottom: 20px;
  background-color: #F9FAFB;
}

.full-image-content-outer .image-details .full-image img {
  height: 206px;
  object-fit: cover;
}

.full-image-content-outer h2 {
  font-size: 3.2rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 12px;
}

.two-column-row {
  margin-top: 50px;
}

.two-column-row img {
  width: 100%;
  height: 223px;
}

.heading-content .image-icon {
  position: static;
}

.two-column-row .image-with-icon {
  margin-bottom: 60px;
}

.two-column-row .image-with-icon .image-icon.big-icon {
  left: 33px;
  bottom: -40px;
}

.two-column-row .heading-content {
  max-width: 288px;
  margin: 0px auto 50px auto;
}

.image-content-repeater .para {
  margin-top: 16px;
}

.image-content-repeater {
  max-width: 288px;
  margin: 0px auto;
}

.image-content-repeater .heading-content {
  margin-bottom: 50px;
}

.brochure-form-section {
  background-color: #130B26;
  overflow: hidden;
}

.brochure-image img {
  width: 100%;
}

.brochure-form {
  max-width: 312px;
  margin-left: auto;
  padding: 39px 17px 39px 0;
}

.field label {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
}

.field p {
  margin: 0;
}

.field {
  margin-bottom: 30px;
}

.field input {
  width: 100%;
  padding: 10px 10px 10px 0;
}

.dark-form .field input,
.dark-form .field select {
  border-bottom: 1px solid var(--white);
  border-top: none;
  border-right: none;
  border-left: none;
  background: transparent;
  color: #8d8d8d;
  width: 100%;
  padding: 13px 0;
  border-radius: 0;
}

.dark-form .field select {
  background: url('../images/white-down-arrow.svg') no-repeat 99% center;
  appearance: none;
}

.acceptance p {
  display: flex;
  position: relative;
  color: #D1D5DB;
  padding-left: 20px;
  font-size: 1rem;
}

.acceptance>p input {
  position: absolute;
  left: -20px;
  top: 2px;
}

.acceptance p span {
  margin: 0 !important;
  display: block;
}

.submit-field {
  margin-top: 22px;
}

.submit-field p {
  display: flex;
  align-items: center;
}

.submit-field input {
  border: 0;
  padding: 10px 40px 10px 10px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 900;
}

.dark-form .submit-field input {
  background: #522AB2 url(../images/white-arrow-right.svg) no-repeat;
  background-position: 85% center;
  color: var(--white);
}

.phonewidcode .intl-tel-input .selected-flag .iti-flag {
  display: none;
}

.phonewidcode .intl-tel-input.separate-dial-code .selected-flag {
  width: 55px !important;
  background: transparent;
  padding: 0 15px 0 0;
  position: relative;
}

.phonewidcode .intl-tel-input.separate-dial-code .selected-dial-code {
  padding-left: 0;
  color: #4B5563;
}

.phonewidcode input.wpcf7-form-control {
  padding-left: 64px !important;
}

.acceptance p input {
  position: absolute;
  left: -20px;
  top: 2px;
}

.amenities-section {
  padding-bottom: 30px;
  background-color: #F9FAFB;
}

.outdoor-details .heading-content {
  margin-bottom: 40px;
}

.amenitie-map-image img {
  width: 100%;
}

.outdoor-details-wrap {
  margin-top: 14px;
}

.outdoor-details .heading-content h3 {
  font-size: 3.2rem;
  text-transform: uppercase;
  color: #374151;
  font-weight: 500;
}

.outdoor-details .heading-content .para {
  margin-top: 28px;
}

.outdoor-details .heading-content .para p {
  font-size: 1.8rem;
  line-height: 1.333;
  font-weight: 500;
}

.amenities-list h3 {
  font-size: 2.4rem;
  line-height: 1.333;
  font-weight: 700;
  color: #6B7280;
  border-bottom: solid 1px #6B7280;
  padding: 15px 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.amenities-list .amenities-card.active h3 {
  color: var(--base-color);
  border-color: var(--base-color);
}

.amenities-list .amenities-card.active h3 svg path {
  stroke: var(--base-color);
}

.list {
  margin-top: 40px;
}

.list ul {
  margin: 0;
}

.list ul li {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #374151;
  margin-bottom: 10px;
}

.basement-parking-section {
  padding-top: 30px;
  padding-bottom: 26px;
  background-color: var(--white);
  overflow: hidden;
}

.parking-map-image img {
  width: 100%;
}

.parking-details-wrap {
  margin-top: 56px;
}

.parking-details-wrap .heading-content {
  margin-bottom: 34px;
}

.parking-details-wrap .heading-content h3 {
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 37px;
}

.parking-details-wrap .para p {
  font-size: 1.8rem;
  font-weight: 500;
}

.parking-details ul {
  border: solid 1px #6B7280;
  padding: 12px 28px;
  margin-bottom: 32px;
}

.parking-details ul li {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.333;
  padding-bottom: 15px;
  border-bottom: solid 1px var(--base-color);
  margin-bottom: 15px;
  color: var(--base-color);
}

.parking-details ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.parking-details .para {
  max-width: 293px;
  margin-left: 35px;
}

.parking-details .para p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

.parking-detail-section {
  background-color: #F3F4F6;
  padding: 40px 0;
}

.parking-detail-section {
  padding-top: 40px;
  padding-bottom: 50px;
}

.parking-detail-outer {
  max-width: 294px;
  margin-left: 35px;
}

.parking-detail {
  position: relative;
}

.parking-detail .image-icon {
  bottom: -40px;
  left: 0;
}

.parking-detail ul {
  border: solid 1px #6B7280;
  padding: 26px 24px;
  max-width: 294px;
  margin: 0px auto;
  margin-bottom: 50px;
}

.parking-detail ul li {
  border-bottom: solid 1px var(--base-color);
  display: flex;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--base-color);
}

.parking-detail ul li strong {
  font-size: 2rem;
  font-weight: 700;
}

.parking-detail ul li span {
  padding: 8px;
  width: 50%;
  border-right: solid 1px var(--base-color);
}

.parking-detail ul li:last-child {
  border-bottom: none;
}

.parking-detail ul li span:nth-child(2n) {
  border-right: 0;
}

.parking-detail-outer .heading-content {
  margin-bottom: 0;
}

.image-content-section {
  padding-top: 64px;
  padding-bottom: 0;
}

.image-content-outer {
  max-width: 294px;
  margin: 0px auto;
}

.image-content-outer .para {
  margin-top: 13px;
}

.schedule-content {
  position: relative;
  padding: 64px 60px;
  background-color: #F3F4F6;
}

.schedule-form {
  position: relative;
  padding: 64px 60px;
  background-color: #130B26;
}

.schedule-content .apprt-detail p {
  font-size: 2rem;
  font-weight: 900;
}

.schedule-content .place-rice {
  margin-top: 56px;
  margin-bottom: 56px;
}

.schedule-content .place-rice p {
  font-size: 2rem;
  font-weight: 400;
}

.schedule-content.project-detail .logo-title h2 {
  font-size: 2rem;
  margin-bottom: 0;
}

.schedule-content .apprt-detail h4 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 11px;
}

.schedule-content .apprt-detail p {
  font-size: 2rem;
  font-weight: 900;
}

.schedule-content .place-rice {
  margin-top: 56px;
  margin-bottom: 56px;
}

.schedule-content .place-rice p {
  font-size: 2rem;
  font-weight: 400;
}

.schedule-content.project-detail .logo-title h2 {
  font-size: 2rem;
  margin-bottom: 0;
}

.schedule-call-wrap {
  margin-bottom: 16px;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-btn span {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
}

.cta-btn a {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: underline;
  color: var(--white);
}

.schedule-call-wrap span.or {
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 700;
  color: #522AB2;
  text-transform: uppercase;
}

.form-wrap h3 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
  margin-top: 0;
  margin-bottom: 35px;
}

.search header.site-header,
.error404 header.site-header,
.single-post header.site-header {
  background-color: var(--base-color);
}

.site-main .default-page-wrap {
  padding-top: 112px;
  padding-bottom: 100px;
}

.search-results .post .post-thumbnail img {
  width: 100%;
}

/*
Floor Plan Design Start
*/
.floorplan-section {
  padding: 40px 0;
}

.floorplan-outer .heading-content h2 {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 10px;
  color: #34157F;
}

.floorplan-outer h3 {
  font-size: 1.8rem;
  line-height: 1.333;
  font-weight: 700;
}

.floorplan-outer h3.fptextl {
  color: #34157F;
}

.floor-plan-form-wrap {
  display: none;
  background-color: #130B26;
  padding: 20px 32px;
  position: relative;
}

.floor-plan-form-wrap h4 {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 24px;
}

.floor-close-plan {
  content: '';
  position: absolute;
  right: 15px;
  top: 12px;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  z-index: 1;
  cursor: pointer;
  /* background-color: #fff; */
}

.hide-floor.show-floor-plan-form {
  display: block;
}

.highlight-text {
  margin-top: 42px;
}

.highlight-text h4 {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 700;
  color: #34157F;
  margin-bottom: 24px;
}

.highlight-text ul {
  display: grid;
  grid-template-columns: 221px 221px;
  column-gap: 72px;
  row-gap: 30px;
}

.highlight-text ul li {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
}

.virtual-tour-form-wrap {
  display: none;
  background-color: #130B26;
}

.virtual-tour-section {
  position: relative;
  height: 650px !important;
}

.virtual-tour-section>iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.virtual-tour-outer {
  height: 100%;
  opacity: 1;
  background-image: linear-gradient(0deg, rgba(19, 11, 38, 0.6) 0%, rgba(52, 21, 127, 0.6) 100%);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.virtual-tour-inner {
  width: 100%;
}

/* Floor Plan Design End
*/

.virtual-tour-inner h2 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin: 21px 0;
}

.virtual-tour-form-wrap {
  padding: 25px 32px;
  width: 104%;
  margin-left: -10px;
}

.mini-gallery-section {
  padding-top: 106px;
  padding-bottom: 20px;
}

.mini-gallery-outer h2 {
  font-size: 3.2rem;
  font-weight: 500;
}

.mini-gallery-outer p {
  font-size: 1.8rem;
  line-height: 1.333;
  font-weight: 500;
}

.mini-gallery-slider .item img {
  height: 188px;
  object-fit: cover;
}

.mini-gallery-slider .owl-nav {
  margin: 0;
  position: absolute;
  right: 0;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.club_intro-section {
  padding-top: 20px;
  padding-bottom: 25px;
}

.club-intro-outer .club-upper-image img {
  height: 349px;
  object-fit: cover;
  width: 100%;
}

.club-intro-outer .club-bottom-image img {
  height: 295px;
  object-fit: cover;
}

.club-intro-outer h2 {
  font-size: 3.2rem;
  font-weight: 500;
  color: #374151;
}

.club-intro-outer p {
  font-size: 2.4rem;
  line-height: 1.333;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0;
}

.club-intro-outer .club-repeater h2 {
  font-weight: 400;
  font-size: 3.2rem;
}

.club-repeater h3 {
  font-size: 2.4rem;
  line-height: 1.333;
  font-weight: 700;
  color: #374151;
}

.club-intro-outer .club-repeater p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #374151;
  margin-bottom: 20px;
}

.club-intro-outer .club-repeater p:last-child {
  margin-bottom: 0;
}

.youtube-section {
  padding-top: 20px;
  padding-bottom: 30px;
}

.youtube-inner {
  border-bottom: solid 1px #6B7280;
  padding-bottom: 36px;
}

.youtube-color-inner h2 {
  color: #E5E7EB;
  font-size: 2.8rem;
  font-weight: 500;
}

.youtube-color-inner p {
  color: #E5E7EB;
  font-size: 1.8rem;
  line-height: 1.333;
  font-weight: 500;
}

.youtube-color-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.purple-font {
  color: #522AB2;
  font-size: 1.8rem;
  line-height: 1.333;
  font-weight: 500;
}

.youtube-inner h2 {
  font-size: 2.8rem;
  font-weight: 500;
}

ul.single-col {
  margin-bottom: 20px;
}

ul.single-col li {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #374151;
}

.youtube-inner ul {
  max-width: 590px;
  flex-wrap: wrap;
  column-gap: 64px;
  row-gap: 10px;
}

.youtube-inner ul li {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #374151;
  width: 100%;
  position: relative;
  padding-left: 20px;
}

.youtube-inner ul li::before {
  position: absolute;
  content: '';
  background-image: url('../images/bullet.svg');
  background-repeat: repeat;
  width: 10px;
  height: 10px;
  top: 6px;
  left: 0;
}

.youtube-inner ul.double-col li {
  width: 40%;
  padding-left: 0;
}

.youtube-inner ul.double-col li::before {
  display: none;
}

.mini-gallery-outer {
  overflow: hidden;
}

.mini-gallery-slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.location-list-section {
  padding-top: 79px;
  padding-bottom: 225px;
}

.mini-gallery-slider.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.location-list-section {
  padding-top: 79px;
  padding-bottom: 225px;
}

.location-list-outer h2 {
  font-size: 4rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 24px;
}

.location-image {
  margin-bottom: 40px
}

.location-image img,
.location-image iframe {
  /* height: 337px;
  object-fit: cover; */
  width: 100%;
  display: block;
}

.location-list-outer h4 {
  font-size: 3.2rem;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 24px;
}

.location-list-outer p {
  font-size: 1.6rem;
  line-height: 1.25;
  margin-bottom: 32px;
}

.location-list {
  margin-top: 54px;
}

.list-dott {
  display: flex;
  flex-direction: column;
}

.list-dott span {
  width: 24px;
  height: 24px;
  border-radius: 16px;
  background-color: #0FC9F2;
  color: #200D4D;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.list-dott p {
  font-size: 1.8rem;
  line-height: 1.333;
  font-weight: 500;
  max-width: 267px;
}

.address-outer {
  padding-top: 40px;
  padding-bottom: 50px;
}

.address-outer h3 {
  font-size: 2.4rem;
  line-height: 1.667;
  font-weight: 500;
  margin-bottom: 0;
  color: #34157F;
}

.address-outer h5 {
  font-size: 1.8rem;
  line-height: 1.556;
  font-weight: 700;
  margin-bottom: 13px;
  color: #374151;
}

.address-outer p {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
}

.address-outer {
  padding-top: 40px;
  padding-bottom: 50px;
}

.address-outer h3 {
  font-size: 2.4rem;
  line-height: 1.667;
  font-weight: 500;
  margin-bottom: 0;
  color: #34157F;
}

.address-outer h5 {
  font-size: 1.8rem;
  line-height: 1.556;
  font-weight: 700;
  margin-bottom: 13px;
  color: #374151;
}

.address-outer p {
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 500;
}

.comparison-list-section {
  padding: 30px 0 60px 0;
}

.comparison-list-outer h3 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.comparison-list-outer table.table {
  border-top: solid 1px #374151;
}

.comparison-list-outer table.table th,
.comparison-list-outer table.table td {
  padding: 27px 16px;
}

.comparison-list-outer table.table thead tr th {
  font-size: 2rem;
  font-weight: 700;
  color: #6B7280;
}

.comparison-list-outer table.table thead tr th.color-col,
.comparison-list-outer table.table tbody tr td.color-col {
  color: #34157F;
}

.comparison-list-outer table.table tbody th,
.comparison-list-outer table.table tbody td {
  font-size: 1.4rem;
  color: #6B7280;
  font-weight: 500;

}

.comparison-list-outer table.table tbody th {
  color: #000;
  text-transform: uppercase;
  line-height: 2.286;
  font-weight: 700;
  padding-left: 0;
}

.comparison-list-outer table.table tbody td:last-child {
  padding-right: 0;
}

.comparison-list-outer table.table tbody th span {
  display: inline-block;
  width: 150px;
}

.comparison-list-outer table.table tbody td span {
  display: inline-block;
  width: 245px;
}

@media screen and (min-width:768px) {
  .hamburger {
    display: none;
  }

  .main-menu .main-navigation {
    position: static;
    padding: 0;
    margin: 0;
    transform: none;
    height: auto;
    width: 100%;
    background: transparent;
  }

  .main-menu .main-navigation ul {
    justify-content: end;
    display: flex;
  }

  .main-menu .main-navigation ul li a {
    padding: 10px 13px;
    font-size: 1.6rem;
    line-height: 1.33;
    text-transform: uppercase;
  }

  .main-menu .main-navigation ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 0;
    background-color: #512ab1;
  }

  .main-menu .main-navigation .menu-main-menu-container ul.menu li.menu-item-has-children span {
    transform: rotate(0);
    width: 3px;
    height: 3px;
    padding: 10px;
    right: -5px;
    top: 11px;
  }

  .main-menu .main-navigation .menu-main-menu-container ul.menu li.menu-item-has-children.active-menu span {
    transform: rotate(-180deg);
  }

  .banner-image img {
    max-width: 580px;
  }

  .banner-main-content p {
    font-size: 2.4rem;
    line-height: 1.167;
  }

  .banner-main-content {
    padding-left: 0;
    margin-bottom: 24px;
  }

  .banner-text {
    line-height: 1;
    font-size: 4.8rem;
    padding-left: 0;
  }

  .pricehike-outer {
    padding: 0;
  }

  .bottom-hbi-text .book-btn {
    justify-content: end;
  }

  .font48 {
    font-size: 4.8rem;
    line-height: 1;
  }

  .home-banner {
    padding-bottom: 59px;
  }

  .odd-box,
  .even-box {
    width: 100%;
  }

  .even-box .project-btn {
    justify-content: flex-end;
  }

  .project-image {
    height: 100%;
  }

  .project-image img {
    height: 100%;
  }

  .proBox-details ul li {
    width: 116px;
  }

  .proBox-details.bottom-box ul li {
    width: 100%;
  }

  .owl-carousel.custom-slide .owl-nav button {
    background-color: #9CA3AF;
    opacity: 1;
    width: 36px;
    border-radius: 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .owl-carousel.custom-slide .owl-nav button:hover {
    background-color: var(--light-purple);
  }

  .owl-carousel.custom-slide .owl-nav button svg {
    width: 18px;
  }

  .owl-carousel.custom-slide .owl-nav button.disabled,
  .owl-carousel.custom-slide .owl-nav.disabled {
    /* display: none; */
    opacity: 0;
  }

  .owl-carousel.custom-slide .owl-nav {
    margin: 0;
    position: absolute;
    right: 0;
    top: -90px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .owl-carousel.custom-slide .owl-nav .owl-prev {
    transform: rotate(180deg);
  }

  .owl-carousel.custom-slide .owl-nav .drag-line {
    width: 96px;
    background: #9CA3AF;
    height: 5px;
    border-radius: 2px;
  }

  .heading-wrap h2 {
    text-align: left;
  }

  .update-section {
    padding-bottom: 121px;
  }

  .whychoose-para {
    max-width: 399px;
  }

  .footer-section {
    padding: 0;
  }

  .footer-outer:after {
    background-color: #512ab1;
    display: block;
    right: 70%;
    left: auto;
  }

  .footer-section {
    background-color: var(--dark-purple);
    border-top: solid 1px #512ab1;
  }

  .footer-contact {
    background-color: #512ab1;
    padding: 52px 0px;
    position: relative;
    z-index: 2;
  }

  .footer-menu-wrap {
    padding: 52px 0px 52px 92px;
  }

  .whychoose-outer {
    padding: 0;
  }

  .commercial-section,
  .update-section {
    padding-left: 0;
  }

  .project-banner img {
    height: 572px;
  }

  .customNavigation {
    right: 35px;
  }

  .masterplan-tab {
    position: static;
    background-color: #F3F4F6;
    transform: translateX(0);
    transition: none;
    padding-top: 0;
    height: auto;
  }

  .masterplan-tab ul li a {
    padding: 8px;
    font-size: 1.3rem;
    line-height: 2.667;
    letter-spacing: 0.33px;
  }

  .apprt-detail {
    margin-bottom: 15px;
  }

  .single-image-content {
    padding-top: 16px;
  }

  .mobile-section {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .project-detail h2 {
    font-size: 5.6rem;
  }

  /* .image-content-card .image-with-icon img {
    height: 233px;
  } */
  .two-image-content .image-icon {
    left: auto;
    right: -20px;
    bottom: auto;
    top: 40px;
  }

  .two-image-content .heading-content {
    padding-left: 10px;
  }

  .video-content {
    padding: 0 30px 0 0px;
  }

  .video-content-section iframe {
    height: 185px;
  }

  .video-content-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .video-content-outer {
    padding: 0 16px;
  }

  .full-image-content-outer .image-details .full-image img {
    height: 361px;
  }

  .full-image-content-outer .single-content {
    max-width: 522px;
  }

  .heading-content {
    padding-left: 0;
  }

  .two-column-row .heading-content {
    max-width: 100%;
    margin: 0px auto 50px auto;
    padding-right: 45px;
  }

  .two-column-row .image-with-icon img {
    height: 259px;
    object-fit: cover;
  }

  .image-content-repeater {
    max-width: 584px;
    margin: 0px 0 0px auto;
  }

  /* .image-with-icon img{
    height: 295px;
  } */
  .image-content-repeater .image-with-icon img {
    height: 233px;
  }

  .image-content-repeater .image-icon {
    left: -21px;
  }

  .brochure-image {
    margin-left: -23%;
  }

  .outdoor-details-wrap {
    margin-top: -20%;
  }

  .outdoor-details .heading-content h3 {
    max-width: 319px;
  }

  .amenities-section {
    padding-bottom: 70px;
  }

  .amenities-list h3 {
    color: var(--base-color);
    padding: 0;
    margin-bottom: 46px;
    border: none;
  }

  .amenities-list h3 svg {
    display: none;
  }

  .basement-parking-section {
    padding-bottom: 50px;
    padding-top: 0;
  }

  .parking-detail .image-icon {
    bottom: auto;
    top: 80px;
    left: -45px;
  }

  .parking-detail-outer {
    max-width: 100%;
    padding-left: 45px;
  }

  .parking-detail ul {
    margin-bottom: 0;
  }

  .image-content-outer {
    padding-left: 90px;
    max-width: 100%;
  }

  .parking-detail-outer .heading-content {
    padding-left: 35px;
  }

  .image-content-card {
    padding: 0 10px;
  }

  .image-content-card .heading-content h3 {
    margin-bottom: 10px;
  }

  .schedule-section {
    overflow: hidden;
  }

  .schedule-content.project-detail h2 {
    font-size: 2rem;
  }

  .schedule-form {
    padding: 64px 0 64px 60px;
  }

  .brochure-form {
    max-width: 100%;
    margin-left: 0;
    padding: 39px 0px 39px 15px;
  }

  .schedule-content {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .schedule-content .logo-title {
    margin-top: auto;
  }

  .schedule-content:before {
    position: absolute;
    content: '';
    right: 100%;
    top: 0;
    background-color: #F3F4F6;
    width: 50%;
    height: 100%;
  }

  .schedule-form:before {
    position: absolute;
    content: '';
    left: 100%;
    top: 0;
    background-color: #130B26;
    width: 50%;
    height: 100%;
  }

  .site-main .default-page-wrap {
    padding-top: 160px;
  }

  .floorplan-section {
    padding: 54px 0 84px 0;
  }

  .floorplan-outer .heading-content h2 {
    font-size: 4.8rem;
    line-height: 1;
  }

  .floorplan-inner {
    border-bottom: solid 1px #6B7280;
    padding-bottom: 43px;
  }

  .floorplan-outer h3 {
    font-size: 2.4rem;
    line-height: 1.333;
  }

  .virtual-tour-outer {
    height: 750px;
  }

  .virtual-tour-logo img {
    display: inline-block;
  }

  .virtual-tour-inner .btn {
    margin: 0px auto;
  }

  .virtual-tour-inner h2 {
    margin-bottom: 37px;
  }

  .virtual-tour-form-wrap {
    width: 100%;
    margin-left: 0px;
  }

  .mini-gallery-section {
    padding-top: 37px;
    padding-bottom: 30px;
  }

  .mini-gallery-slider .item img {
    height: 363px;
  }

  .club-intro-outer .club-upper-image img {
    height: 552px;
  }

  .club-intro-outer .club-bottom-image img {
    height: 328px;
  }

  .club-intro-outer h2 {
    font-size: 4rem;
  }

  .club-intro-outer p {
    max-width: 411px
  }

  .youtube-inner h2 {
    font-size: 4rem;
  }

  .location-list-section {
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .location-list-outer h2 {
    font-size: 4.8rem;
    margin-bottom: 32px;
  }

  .location-image {
    margin-bottom: 32px;
  }

  /* .location-image img, .location-image iframe{
    height: 542px;
  } */
  .list-dott {
    flex-direction: unset;
    gap: 10px;
    margin-bottom: 32px;
  }

  .list-dott p {
    margin-bottom: 0;
  }

  .comparison-list-outer table.table th,
  .comparison-list-outer table.table td {
    padding: 16px;
  }

  .virtual-tour-section {
    height: 750px !important;
  }

}

@media screen and (min-width: 992px) {
  .home-banner {
    padding-bottom: 68px;
  }

  .banner-main-content {
    padding-left: 0;
  }

  .banner-image img {
    max-width: 100%;
  }

  .banner-main-content p {
    font-size: 2.8rem;
    line-height: 1.142;
  }

  .banner-text {
    line-height: 0.75;
    font-size: 6.4rem;
  }

  .bottom-hbi-text p {
    font-size: 1.8rem;
  }

  .pricehike-content h2 {
    font-size: 2.4rem;
  }

  .project-section {
    padding-top: 50px;
  }

  .customNavigation {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

  .project-image {
    height: auto;
  }

  .project-image img {
    height: auto;
  }

  .proBox-details ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .proBox-details ul li {
    border-right: solid 1px #96E0F1;
    border-bottom: solid 1px #96E0F1;
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.125;
    height: 144px;
  }

  .proBox-details.upper-box ul li:last-child {
    background-color: #96E0F1;
  }

  .top-detail h4 {
    font-size: 2.4rem;
  }

  .top-detail p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .commercial-section {
    padding-top: 40px;
    padding-bottom: 45px;
  }

  .heading-wrap h2 {
    font-size: 4.8rem;
  }

  .commercial-card h6 {
    font-size: 2.4rem;
  }

  .commercial-card .post-content p {
    font-size: 1.6rem;
  }

  .update-section {
    padding-bottom: 101px;
  }

  .whychoose-section {
    padding: 0;
    background-color: #E5E7EB;
  }

  .whychoose-outer {
    padding: 40px 0 65px 60px;
    margin-left: 7%;
  }

  .footer-outer {
    margin-left: 7%;
  }

  .footer-outer:after {
    background-color: #421f97;
  }

  .footer-contact {
    padding: 52px 16px;
  }

  .owl-carousel.custom-slide .owl-nav {
    top: 90px;
  }

  .owl-carousel.custom-slide .owl-nav button {
    background-color: var(--white);
  }

  .owl-carousel.custom-slide .owl-nav button svg path {
    fill: var(--base-color);
  }

  .owl-carousel.custom-slide .owl-nav button:hover svg path {
    fill: var(--white);
  }

  .masterplan-tab ul li a {
    padding: 20px 23px;
  }

  .project-detail h2 {
    font-size: 6.4rem;
  }

  .apprt-detail {
    margin-bottom: 24px;
  }

  .apprt-detail h4 {
    font-size: 3.2rem;
    line-height: 1;
  }

  .single-image-content {
    padding-top: 87px;
  }

  .single-image-content .border-image img {
    height: 618px;
  }

  .two-image-content .desktop-section .image-with-icon img {
    height: auto;
  }

  .two-image-content .heading-content {
    margin-bottom: 50px;
  }

  .ticicon-left .image-with-icon {
    height: 100%;
  }

  .ticicon-left .image-with-icon img {
    height: 100%;
  }

  .two-image-center-content {
    padding: 0 25px;
  }

  .two-image-content .image-icon {
    left: -20px;
    right: auto;
    top: 30px;
  }

  .two-image-content .ticicon-left {
    position: relative;
  }

  .two-image-content .ticicon-left .image-icon {
    left: auto;
    right: -20px;
    top: auto;
    bottom: 35%;
  }

  .two-image-content .heading-content:last-child {
    margin-bottom: 0;
  }

  .two-image-content {
    padding-bottom: 72px;
  }

  .video-content-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .video-content-section iframe {
    height: 263px;
  }

  .video-content p {
    font-size: 3.2rem;
    line-height: 1.25;
  }

  .full-image-content-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .content-more-btn {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .content-more-btn .morebtn {
    margin-top: 30px;
    width: 72px;
  }

  .two-column-row {
    margin-top: 60px;
  }

  .full-image-content-outer h2 {
    font-size: 4.8rem;
    max-width: 700px;
  }

  .full-content-wrap .single-content p {
    font-size: 2.4rem;
  }

  .two-column-row .image-with-icon img {
    height: 331px;
  }

  .two-column-row .image-with-icon {
    margin-bottom: 96px;
  }

  .two-column-row .heading-content {
    padding-right: 0;
  }

  .image-content-repeater {
    max-width: 100%;
  }

  .two-column-row .para {
    margin-bottom: 18px;
  }

  .brochure-image {
    margin-left: 0;
    position: relative;
  }

  .brochure-image img {
    position: relative;
    z-index: 2;
  }

  .brochure-image:before {
    position: absolute;
    content: '';
    right: 80%;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: var(--dark-purple);
    z-index: 1;
  }

  .brochure-form {
    padding: 48px 0px 39px 15px;
  }

  .outdoor-details .heading-content h3 {
    max-width: 519px;
    font-size: 4.8rem;
  }

  .outdoor-details .heading-content .para p {
    font-size: 2.4rem;
  }

  .basement-parking-section {
    padding-bottom: 56px;
  }

  .amenities-list {
    margin-top: 30px;
  }

  .list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
  }

  .parking-details-wrap {
    margin-top: 64px;
  }

  .parking-detail {
    display: flex;
    gap: 30px;
  }

  .parking-details .para {
    max-width: 100%;
    margin-left: 0;
  }

  .parking-detail .image-icon {
    position: static;
    margin-top: 40px;
  }

  .parking-detail-outer .heading-content {
    padding-left: 45px;
  }

  .image-content-card {
    padding: 0;
  }

  .image-content-outer {
    padding-left: 0;
  }

  .image-content-card .heading-content {
    margin-bottom: 0;
  }

  .image-content-section {
    padding-top: 40px;
    padding-bottom: 125px;
  }

  .schedule-content {
    background-color: var(--white);
  }

  .schedule-outer {
    margin-left: 7%;
  }

  .project-slider .owl-nav {
    display: flex;
  }

  .cta-btn a {
    font-size: 3.2rem;
  }

  .slider-items .fullimage {
    bottom: 33px;
    right: auto;
    left: 50%;
    width: 28px;
    height: 28px;
  }

  .parking-details-wrap .heading-content h3 {
    font-size: 4.8rem;
  }

  .form-wrap h3 {
    font-size: 3.2rem;
  }

  .club-intro-outer .club-upper-image img {
    height: 615px;
  }

  .club-intro-outer .club-bottom-image img {
    height: 348px;
  }

  .mini-gallery-outer p {
    font-size: 2.4rem;
  }

  .club-intro-outer h2 {
    font-size: 4.8rem;
    max-width: unset;
  }

  .purple-font {
    font-size: 2.4rem;
  }

  .location-list-section {
    padding-top: 58px;
    padding-bottom: 80px;
  }

  .location-image {
    margin-bottom: 0;
  }

  .location-list {
    margin-top: 80;
  }

  .address-outer {
    padding-top: 48px;
    padding-bottom: 120px;
  }

  .comparison-list-outer table.table tbody th,
  .comparison-list-outer table.table tbody td {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .comparison-list-outer table.table tbody th span {
    display: inline-block;
    width: 200px;
  }

  .comparison-list-outer table.table tbody td span {
    display: inline-block;
    width: 360px;
  }

  .virtual-tour-section {
    height: 750px !important;
  }
}

@media screen and (min-width: 1200px) {
  .home-banner {
    padding-bottom: 65px;
  }

  .banner-main-content {
    padding-left: 0;
  }

  .banner-image img {
    max-width: 100%;
  }

  .banner-main-content p {
    line-height: 1.142;
    font-size: 2.8rem;
  }

  .banner-text {
    padding-left: 0;
  }

  .pricehike-image img {
    height: 154px;
  }

  .project-section {
    padding-top: 70px;
  }

  .even-box {
    text-align: right;
  }

  .even-box .proBox-details.upper-box ul li {
    text-align: left;
  }

  .even-box .project-content-wrap {
    flex-direction: row-reverse !important;
  }

  .top-detail h4 {
    font-size: 3.2rem;
    margin-bottom: 11px;
  }

  .top-detail p {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .project-outer .odd-box {
    padding-right: 80px;
  }

  .project-outer .even-box {
    padding-left: 80px;
  }

  .proBox-details ul li {
    border-right: solid 1px #96E0F1;
    border-bottom: solid 1px #96E0F1;
  }

  .proBox-details.upper-box ul li {
    width: 128px;
  }

  .proBox-details.upper-box ul li:nth-child(1),
  .proBox-details.bottom-box ul li:nth-child(3) {
    display: flex;
  }

  .proBox-details.upper-box ul li:last-child {
    background-color: var(--primary-color);
  }

  .proBox-details ul {
    grid-template-columns: repeat(4, 1fr);
  }

  .proBox-details.bottom-box ul {
    direction: ltr;
    padding: 0;
  }

  .proBox-details ul li {
    height: 132px;
  }

  .even-box .proBox-details.bottom-box ul {
    direction: rtl;
    text-align: left;
  }

  .even-box .proBox-details.upper-box ul li {
    width: 128px;
  }

  .update-section {
    padding-bottom: 36px;
  }

  .project-detail h2 {
    font-size: 7.2rem;
  }

  .masterplan-tab ul li a {
    font-size: 1.6rem;
  }

  .single-image-content h2 {
    font-size: 4.8rem;
  }

  .single-image-content .single-content {
    max-width: 348px;
  }

  .two-image-center-content {
    padding: 0;
  }

  .two-image-content .two-image-center-content .heading-content h3 {
    font-size: 3.1rem;
  }

  .two-image-content .two-image-center-content .heading-content p {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .ticicon-left .image-with-icon {
    margin-bottom: 0;
  }

  .two-image-content {
    padding-bottom: 64px;
  }

  .video-content-section iframe {
    height: 314px;
  }

  .full-image-content-section {
    padding-top: 96px;
  }

  .full-image-content-outer h2 {
    max-width: 100%;
  }

  .full-image-content-outer .single-content {
    margin-top: 5px;
  }

  .two-column-row .image-with-icon img {
    height: 367px;
  }

  .two-column-row .image-with-icon {
    margin-bottom: 0;
  }

  .image-content-repeater {
    margin-top: 96px;
  }

  .brochure-form {
    padding: 122px 20px 39px 90px;
  }

  .outdoor-details .heading-content .para {
    max-width: 500px;
  }

  .parking-details ul li {
    font-size: 2.4rem;
  }

  .parking-details ul li span {
    max-width: 348px;
    display: block;
  }

  .parking-detail-section {
    background-color: transparent;
  }

  .parking-detail-outer {
    max-width: 100%;
    padding: 45px;
    background-color: #F3F4F6;
  }

  .parking-detail-outer {
    max-width: 761px;
    padding: 43px 51px 43px 63px;
    background-color: #F3F4F6;
    margin: 0px auto;
  }

  .parking-detail .image-icon {
    position: absolute;
    margin-top: 40px;
    left: -105px;
    top: 20px;
  }

  .parking-detail ul {
    margin: 0;
    max-width: 100%;
  }

  .parking-detail ul li span {
    padding: 19px 15px;
  }

  .parking-detail-outer .heading-content {
    padding-left: 0;
  }

  .image-content-card {
    padding: 0 20px;
  }

  .image-content-card .image-icon {
    left: -20px;
  }

  .schedule-form {
    padding: 64px 90px 64px 60px;
  }

  .highlight-text {
    margin-top: 70px;
  }

  .mini-gallery-section {
    padding-top: 96px;
    padding-bottom: 45px;
  }

  .mini-gallery-outer h2 {
    font-size: 4.8rem;
  }

  .youtube-color-section {
    padding-top: 64px;
    padding-bottom: 103px;
  }

  .youtube-color-inner h2 {
    font-size: 4rem;
  }

  .youtube-color-inner p {
    font-size: 2.4rem;
  }

  .embed-container {
    padding-bottom: 46.25%;
  }

  .youtube-inner ul.double-col {
    width: 100%;
  }

  .comparison-list-outer table.table tbody th span {
    display: inline-block;
    width: 285px;
  }

  .comparison-list-outer table.table tbody td span {
    display: inline-block;
    width: 285px;
  }
}

@media screen and (min-width: 1400px) {
  .home-banner {
    padding-bottom: 37px;
  }

  .home-banner-outer {
    padding-left: 80px;
  }

  .banner-text {
    padding-left: 0;
    line-height: 0.667;
    font-size: 7.2rem;
  }

  .project-text {
    padding: 32px;
  }

  .project-detail h2 {
    font-size: 9.6rem;
  }

  .proBox-details.upper-box ul li {
    width: 153px;
    height: 144px;
  }

  .even-box .proBox-details.upper-box ul li {
    width: 152px;
  }

  .project-image img {
    height: 690px;
  }

  .proBox-details ul li {
    border-right: none;
  }

  .update-section {
    padding-bottom: 170px;
  }

  .proBox-details.bottom-box ul {
    direction: ltr;
    padding: 0;
  }

  .even-box .proBox-details.bottom-box ul {
    direction: rtl;
  }

  .whychoose-outer {
    padding-left: 48px;
    margin-left: 7%;
  }

  .single-image-content .border-image img {
    height: 828px;
  }

  .two-image-center-content {
    padding: 0 15px;
  }

  .video-content-section iframe {
    height: 367px;
  }

  .video-content p {
    font-size: 4rem;
    line-height: 1.2;
  }

  .full-image-content-outer .image-details .full-image img {
    height: 564px;
  }

  .two-column-row .heading-content {
    padding-right: 80px;
  }

  .two-column-row .heading-content h3 {
    font-size: 3.2rem;
  }

  .two-column-row .image-with-icon img {
    height: 447px;
  }

  .full-field.acceptance {
    max-width: 340px;
  }

  .outdoor-details .heading-content .para {
    max-width: 520px;
  }

  .parking-details ul li span {
    max-width: 480px;
  }

  .parking-detail-outer .heading-content h3 {
    font-size: 2.4rem;
  }

}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* CSS Written By SSP */

.title-block {
  padding: 128px 0 42px 0;
  background-color: var(--light-gray);
}

.title-block h1 {
  color: var(--light-purple);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.site-header.header-transparent .custom-logo-link {
  display: none;
}

.site-header.header-transparent .main-menu .main-navigation ul li a {
  color: var(--base-color);
  font-weight: 700;
}

.site-header.header-no-background-color {
  background-color: var(--light-gray) !important;
}

.blog-banner {
  background-color: var(--light-gray);
}

.blog-banner-inner {
  padding: 250px 16px 50px;
  background-size: cover;
  background-position: center;
}

.blog-banner-inner h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-date {
  opacity: 0.5;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
}

.blog-navigation {
  background-color: var(--light-gray);
  position: relative;
}

#blogNavs {
  position: relative;
  z-index: 1;
}

.blog-navigation .navbar-expand-md .navbar-nav .nav-link,
.active-item-mobile {
  color: rgba(55, 65, 81, 1);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.44px;
  text-transform: uppercase;
  padding: 19px 28px 21px 24px;
  border-bottom: 2px solid transparent;
  line-height: 2;
}

.blog-navigation .navbar-expand-md .navbar-nav .nav-link.active,
.blog-navigation .navbar-expand-md .navbar-nav .nav-link:hover,
.active-item-mobile {
  color: var(--dark-purple);
  background-color: var(--white);
  border-bottom: 2px solid var(--light-purple);
  font-weight: 700;
}

.blog-navigation .navbar-expand-md .navbar-nav .nav-link:hover:not(.active) {
  font-weight: 400;
}

.blog-navigation::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(209, 213, 219, 1);
}

.blog-listing-wrapper {
  padding: 62px 0 80px;
  background-color: var(--light-gray);
}

.blog-card {
  background-color: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: 0;
  height: 100%;
  transition: all 0.4s ease;
}

.blog-card:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06), 0 0 15px 0 rgba(0, 0, 0, 0.02), 0 0 20px 4px rgba(0, 0, 0, 0.06);
}

.blog-card .card-body {
  padding: 16px;
}

.blog-card .card-thumb {
  height: 206px;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-card .card-title {
  color: rgba(55, 65, 81, 1);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.blog-card .card-text {
  color: rgba(55, 65, 81, 1);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
}

.blog-card .btn {
  margin-top: 16px;
}

.blog-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .card-bottom {
  display: flex;
  flex-direction: column;
  height: calc(100% - 218px);
  justify-content: space-between;
}

.page-navigation {
  margin-top: 48px;
  text-align: center;
}

.page-navigation .pagination {
  justify-content: center;
}

.page-navigation .pagination .page-link {
  color: var(--dark-purple);
  font-weight: 700;
  border: none;
  margin: 0 2px;
  padding: 8px 12px;
  border-radius: 0;
}

.page-navigation .pagination .active>.page-link,
.page-navigation .pagination .page-link.active,
.page-navigation .pagination .page-link:hover {
  background-color: var(--light-purple);
  color: var(--white);
}

.timeline-row {
  border-top: 1px solid rgba(229, 231, 235, 1);
}

.timeline-row:last-child {
  border-bottom: 1px solid rgba(229, 231, 235, 1);
}

.timeline-year {
  font-size: 64px;
  font-weight: 400;
  color: var(--base-color);
  line-height: 1;
}

.timeline-dot {
  width: 13px;
  height: 13px;
  background: var(--base-color);
  border-radius: 50%;
  margin: auto;
}

.project-title {
  font-size: 32px;
  font-weight: 500;
  color: var(--base-color);
  margin-bottom: 20px;
  line-height: 1.25;
}

.badge-custom {
  background: transparent;
  color: var(--base-color);
  font-size: 12px;
  padding: 5px 10px;
  vertical-align: middle;
  border: 1px solid rgba(209, 213, 219, 1);
  border-radius: 8px;
  font-weight: 600;
}

.project-desc {
  max-width: 370px;
}

.project-desc p {
  color: rgba(107, 114, 128, 1);
  font-size: 16px;
  font-weight: 500;
}

.part-project-inner {
  background: linear-gradient(180deg, rgba(243, 244, 246, 1) 0%, rgba(209, 213, 219, 1) 100%);
}

.project-desc-col,
.timeline-year {
  background-color: var(--white);
}

.dot-wrap {
  display: flex;
  height: 100%;
}

.project-desc-col {
  padding: 40px 47px;
}

.image-or-dot-col {
  border-left: 1px solid rgba(209, 213, 219, 1);
  border-right: 1px solid rgba(209, 213, 219, 1);
  padding: 0;
}

.image-or-dot-col img {
  width: calc(100% + 2px);
  margin-left: -1px;
  max-width: initial;
  height: 100%;
  object-fit: cover;
}

.past-projects {
  padding: 48px 0 80px;
}

.past-projects h2 {
  color: rgba(55, 65, 81, 1);
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.yr-text {
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-block.title-blog-details {
  padding: 228px 0 136px;
  background-color: var(--light-gray);
}

.title-blog-details .breadcrumb .breadcrumb-item a,
.title-blog-details .breadcrumb .breadcrumb-item {
  color: rgba(107, 114, 128, 1);
  font-size: 16px;
  font-weight: 900;
}

.title-blog-details .breadcrumb .breadcrumb-item a:hover {
  color: var(--light-purple);
  text-decoration: none;
}

.title-blog-details .breadcrumb {
  margin-bottom: 20px;
}

.title-block.title-blog-details h1 {
  color: var(--base-color);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.article-date {
  color: rgba(82, 42, 178, 1);
  font-size: 14px;
  font-weight: 500;
}

.article-date::before {
  content: '';
  display: block;
  background-color: rgba(82, 42, 178, 1);
  height: 2px;
  width: 57px;
  margin-bottom: 18px;
}

.after-title-block {
  margin-top: -96px;
  margin-bottom: 48px;
}

.blog-detail-image img {
  width: 100%;
}

.blog-detail-image {
  position: relative;
}

.read-artile-target {
  height: 96px;
  background-color: rgba(82, 42, 178, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: end;
  padding: 18px 16px;
}

.read-artile-target a {
  color: var(--white);
  font-weight: 700;
}

.artcle-content-block {
  margin-bottom: 48px;
}

.artcle-content-block h2 {
  color: rgba(55, 65, 81, 1);
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.2;
}
.artcle-content-block h3 {
  color: rgba(55, 65, 81, 1);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}
.artcle-content-block h4 {
  color: rgba(55, 65, 81, 1);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}

.artcle-content-block p,
.artcle-content-block ul li,
.artcle-content-block ol li {
  color: rgba(55, 65, 81, 1);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

.article-image-block {
  margin-bottom: 48px;
}

.article-image-block img {
  width: 100%;
}

.article-image-block.full-image {
  padding: 16px 0;
}

.artcle-content-block ul,
.artcle-content-block ol {
  padding-left: 24px;
  margin-bottom: 32px;
}

.artcle-content-block ul li {
  list-style: disc;
}

.artcle-content-block ol li {
  list-style: decimal;
}

.artcle-content-block a {
  color: var(--light-purple);
  font-weight: 500;
}


@media (max-width: 1199px) {
  .title-block {
    padding: 106px 0 42px 0;
  }

  .title-block h1 {
    font-size: 56px;
  }

  .blog-navigation .navbar-expand-md .navbar-nav .nav-link,
  .active-item-mobile {
    font-size: 12px;
    padding: 10px 16px;
  }

  .blog-listing-wrapper {
    padding: 40px 0 60px;
  }

  .image-or-dot-col {
    display: none;
  }

  .past-projects {
    padding: 24px 0 56px;
  }

  .past-projects h2 {
    font-size: 32px;
  }

  .timeline-year {
    font-size: 56px;
    border-right: 1px solid rgba(209, 213, 219, 1);
  }

  .project-title {
    line-height: 1;
  }

  .title-block.title-blog-details {
    padding: 148px 0 104px;
  }

  .title-blog-details .breadcrumb .breadcrumb-item a,
  .title-blog-details .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }

  .title-blog-details .breadcrumb {
    margin-bottom: 10px;
  }

  .title-block.title-blog-details h1 {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .read-artile-target {
    height: 64px;
  }

  .after-title-block {
    margin-top: -64px;
  }

  .read-artile-target a {
    display: none;
  }

  .artcle-content-block h2 {
    font-size: 40px;
  }

  .artcle-content-block p,
  .artcle-content-block ul li,
  .artcle-content-block ol li {
    font-size: 20px;
  }

  .article-image-block {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .header-transparent .lines {
    background-color: var(--dark-purple);
  }

  header.site-header.header-transparent {
    padding-top: 20px !important;
  }

  .header-transparent .hamburger.open .lines {
    background-color: var(--white);
  }

  .site-header.header-transparent .main-menu .main-navigation ul li a {
    color: var(--white);
  }

  .title-block h1 {
    font-size: 40px;
  }

  .title-block {
    padding: 106px 0 20px 0;
  }

  .blog-banner-inner {
    padding: 200px 16px 24px;
  }

  .blog-banner-inner h2 {
    font-size: 32px;
  }

  #blogNavs {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    background: #fff;
    width: 100%;
  }

  .blog-navigation .navbar-toggler {
    border: none;
    padding: 16px;
    outline: none;
    box-shadow: none;
  }

  .active-item-mobile {
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    padding: 20px 18px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  .blog-listing-wrapper {
    padding: 20px 0 48px;
  }

  .past-projects {
    padding: 10px 0 32px;
  }

  .past-projects h2 {
    margin-bottom: 12px;
  }

  .yr-text {
    justify-content: flex-start;
  }

  .project-desc-col {
    padding: 10px 7.5px 16px;
  }

  .timeline-year {
    padding-top: 30px;
    border-right: 0;
  }

  .project-title {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .project-title span:not(.badge-custom) {
    width: 100%;
    margin-bottom: 10px;
  }

  .past-projects .container,
  .title-block .container,
  .after-title-block .container,
  .artcle-content-block .container,
  .artcle-content-block .container, .article-image-block .container, .blog-banner .container, .blog-listing .container{
    padding-left: 15px;
    padding-right: 15px;
  }

  .title-block.title-blog-details {
    padding: 98px 0 44px;
  }

  .title-block.title-blog-details h1 {
    font-size: 32px;
  }

  .article-date {
    display: none;
  }

  .read-artile-target {
    height: 40px;
  }

  .after-title-block {
    margin-top: -40px;
    margin-bottom: 40px;
  }

  .artcle-content-block h2 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .artcle-content-block p,
  .artcle-content-block ul li,
  .artcle-content-block ol li {
    font-size: 18px;
  }

  .artcle-content-block {
    margin-bottom: 32px;
  }
  .artcle-content-block h3 {
    font-size: 26px;
  }

}