:root{
    font-size: 62.5%;
    --primery-color: #009d7e;
    --secound-color: #434444;
    --third-color: #76c7a0;

    --primery-heading: 2.6rem;
    --font-h3: 2.1rem;
    --primery-family: stag-book;
    scroll-behavior: smooth;
}

@font-face {
    font-family: var(--primery-family);
    font-weight: 300;
    font-style: normal;
    src: url(../fonts/STAG-LIGHT.OTF);
}
@font-face {
    font-family: var(--primery-family);
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/STAG-BOOK.OTF);
}
@font-face {
    font-family: var(--primery-family);
    font-weight: 500;
    font-style: normal;
    src: url(../fonts/STAG-MEDIUM.OTF);
}
@font-face {
    font-family: var(--primery-family);
    font-weight: 600;
    font-style: normal;
    src: url(../fonts/STAG-SEMIBOLD.OTF);
}
@font-face {
    font-family: var(--primery-family);
    font-weight: 700;
    font-style: normal;
    src: url(../fonts/STAG-BOLD.OTF);
}

p{
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}
a{
    transition: .2s linear;
}
a:hover{
    color: var(--primery-color);
}
p:last-child{
    margin-bottom: 0;
}
.d-block{
    display: block;
}
.w-100{
    width: 100%;
}
.center{
    text-align: center;
}
.primery-heading{
    font-size: var(--primery-heading);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    color: var(--secound-color);
    padding-bottom: 2.5rem;
    font-family: var(--primery-family);
    font-weight: 600;
}
.bold{
    font-weight: 700;
}
.padding-lg-start-70{
    padding-left: 7rem;
}
.padding-lg-end-30{
    padding-right: 3rem;
}
.padding-top-lg-70{
    padding-top: 7rem;
}
.margin-top-lg-70{
    margin-top: 7rem;
}
.primery-color{
    color: var(--primery-color);
}
.font-h3{
    font-size: var(--font-h3);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 400;
    font-family: var(--primery-family);
}
.who-we-are .right-column li .title.font-h3 {
	margin-bottom: 5px;
    letter-spacing: 1px;
}
.border-bottom{
    border-bottom: 1px solid var(--secound-color);
}
.border-top{
    border-top: 1px solid var(--secound-color);
}
.margin-lg-top125 {
    margin-top: 12.5rem;
}
.padding-lg-top125{
    padding-top: 12.5rem;
}
.margin-lg-top100 {
    margin-top: 10rem;
}
.padding-lg-top100{
    padding-top: 10rem;
}
.mb-0{
    margin-bottom: 0;
}
.m-0{
    margin: 0;
}
.p-0{
    padding: 0;
}
.pb-0{
    padding-bottom: 0;
}
.pb-20 {
    padding-bottom: 20px;
}
.mb-40{
    margin-bottom: 4rem;
}
.list-style-none{
    list-style: none;
}
.light-weight{
    font-weight: 400;
}
.position-relative{
    position: relative;
}
.absolute-content{
    position: absolute;
}
.color-wight{
    color: #fff;
}
.pr-40{
    padding-right: 4rem;
}
.pl-40{
    padding-left: 4rem;
}
.pr-15{
    padding-right: 1.5rem;
}
.pl-15{
    padding-left: 1.5rem;
}
.justify-content-right{
    justify-content: right;
}
.mt-30{
    margin-top: 3rem;
}
h1{
    font-size: 4rem;
    margin-top: 0;
    margin-bottom: 2rem;
}
h2{
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
}
h3{
    font-size: 3rem;
    margin-top: 0;
    margin-bottom: 2rem;
}
h4{
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 2rem;
}
h5{
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
}
h6{
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}
a{
    text-decoration: none;
    color: inherit;
    font-size: 1.6rem;
}

body{
    font-size: 1.6rem;
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
}
a:visited{
    color: inherit;
}
.primery-bg{
	background: var(--primery-color);
}

.col-1{
    width:8.33%;
}
.col-2{
    width:16.67%;
}
.col-3{
    width: 25%;
}
.col-4{
    width:33.33%;
}
.col-5{
    width:41.67%;
}
.col-6{
    width:50%;
}
.col-7{
    width:58.33%;
}
.col-8{
    width:66.67%;
}
.col-9{
    width:75%;
}
.col-10{
    width:83.33%;
}
.col-11{
    width:91.67%;
}
.col-12{
    width:100%;
}

.post, .page{
    margin-bottom: 0;
}
.cus-flex{
	display: flex;
} 
.cus-wrap{
	flex-wrap: wrap;
}
.cus-block{
	display: block;
}
.container{
    max-width: 1730px;
    width: 100%;
    margin: auto;
	padding: 0 20px;
}

.site-header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	animation: scrolltop .2s linear;
	width: 100%;
	backdrop-filter: blur(10px);
	background-color: rgba(67, 68, 68, 0.7);
}
.site-header .site-branding img, .site-header .site-branding a{
	display: block;
}
 @keyframes scrolltop {
    0% { top: -100px; opacity: .4; }
    100% { top: 0; opacity: 1; }
 }
 .site-header {
	background-color: rgb(67, 68, 68, 1);
	padding: 20px 0px;
    z-index: 99999;
}
.site-header .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.site-header .main-navigation {
	width: auto;
}
.main-navigation a {
	color: #fff;
	font-size: 1.6rem;
	text-transform: uppercase;
    outline: none !important;
}
.main-navigation a:hover{
    color: var(--primery-color);
}
.main-navigation a:focus-visible{
    outline: none;
}
.main-navigation li:not(:last-child) {
	padding-right: 40px;
}
.mt-50{
	margin-top: 5rem;
}
section{
	margin-top: 5rem;
}

/* Banner Start */
.banner img {
	opacity: .3;
	filter: brightness(1.3);
}
.banner .col-4 {
	padding-top: 8rem;
	padding-left: 4rem;
	padding-right: 6rem;
}
.banner .title {
	font-size: 4rem;
	color: #fff;
	font-weight: 400;
	font-style: italic;
	line-height: 1.1;
	margin-bottom: 0;
	border-bottom: 2px solid #fff;
	border-top: 2px solid #fff;
	padding: 2rem 0;
    font-family: var(--primery-family);
}
.banner .title b{
    font-weight: 700;
}
.banner .sub-title {
	font-size: 2rem;
	margin-bottom: 8rem;
	color: #fff;
    font-family: var(--primery-family);
    font-weight: 400;
}
/* Banner End */

/* 1505 - 1523 33 AVE SW Start */
.ave-sw .content {
	line-height: 1.7;
}
/* 1505 - 1523 33 AVE SW End */

/* Who We Are Start */
.who-we-are ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.who-we-are .left-column ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 1.8rem;
	grid-row-gap: 8rem;
}
.who-we-are .right-column li {
	margin-bottom: 4rem;
}
.who-we-are .right-column li:last-child{
    margin-bottom: 0;
}
.who-we-are .primery-heading {
	margin-bottom: 5rem;
}
/* Who We Are End */

/* Redevelopment Start */
.redevelopment-sec .left-column li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.redevelopment-sec .left-column li .image {
	width: 50%;
}
.redevelopment-sec .left-column .tit-content {
	padding-left: 3.5rem;
	width: 50%;
}
.redevelopment-sec .left-column .title{
    font-weight: 600;
}
.redevelopment-sec .left-column li:last-child {
	padding-bottom: 0;
    border-bottom: 0;
}
.redevelopment-sec .right-column{
    padding-right: 1.1rem;
}
.redevelopment-sec .right-column b{
    font-weight: 400;
}
.redevelopment-sec .right-column .title, .redevelopment-bottom .title{
	margin-bottom: 5px;
}
.redevelopment-sec a {
	color: var(--primery-color);
}
.redevelopment-sec a:hover {
	color: var(--third-color);
}
/* Redevelopment End */

/* Redevelopment Bottom Start */
.redevelopment-bottom ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10rem;
    grid-row-gap: 5rem;
}

/* Redevelopment Bottom End */

/* Why MU Start */
.why-mu .top-title{
    margin-bottom: 6.8rem;
}
.why-mu .content{
    line-height: 1.7;
}
.why-mu .bottom-title {
	border: 0;
	margin-bottom: 0;
	padding-bottom: 0;
	font-size: 10rem;
	line-height: 1;
    margin-top: auto;
}
.why-mu .col-3 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.why-mu .absolute-content {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.why-mu .col-3 {
	padding-right: 9rem;
}
.why-mu .col-9 {
	padding-left: 1rem;
}
.why-mu .col-9 .right-content p {
	font-weight: 600;
	margin-bottom: 3.5rem;
}
.why-mu .col-9 .right-content{
    padding: 6rem 8rem;
}
.why-mu .col-9 .right-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
    counter-reset: my-counter;
    margin-left: 2.5rem;
}
.why-mu .col-9 .right-content ul li{
    position: relative;
    padding-left: 4.3rem;
    padding-bottom: 1.5rem;
    line-height: 1.5;
}
.why-mu .col-9 .right-content ul li:last-child{
    padding-bottom: 0;
}
.why-mu .col-9 .right-content ul li::before {
	content: counter(my-counter);
	counter-increment: my-counter;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #fff;
	border-radius: 50%;
	height: 2.5rem;
	width: 2.5rem;
	color: var(--primery-color);
	display: flex;
	justify-content: center;
	align-items: center;
}
.why-mu .col-9 .right-content .col-6:first-child {
	padding-right: 3rem;
	border-right: 1px solid #fff;
}
.why-mu .col-9 .right-content .col-6:last-child {
	padding-left: 3rem;
}
/* Why MU End */

/* Location Context Start */
.location-context .col-7 {
	padding-left: 7rem;
}
.location-context .col-7 .content{
    margin-top: 6rem;
}

/* Location Context End */

/* Amenity Access Start */
.amenity-access .col-3{
    padding-right: 9rem;
}
.amenity-access .col-9{
    padding-left: 1rem;
}
.mb-60{
    margin-bottom: 6rem;
}
/* Amenity Access End */

/* Guiding Policy Start */
.guiding-policy .arrow-content {
	max-width: 448px;
	margin: auto;
	background: url(../images/down-arrow.png);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
	width: 100%;
    position: relative;
}
.guiding-policy .arrow-content > .content {
	padding: 0 90px;
	padding-bottom: 230px;
    padding-top: 40px;
}
.guiding-policy .arrow-content > .content ul, .guid-main-boxes .main-box ul{
	margin: 0;
	padding: 0;
	margin-left: 20px;
}
.guiding-policy .arrow-content > .content p {
	text-align: center;
    line-height: normal;
}
.guiding-policy .arrow-content > .content a, .guid-main-boxes .main-box a {
	color: var(--primery-color);
}
.guiding-policy .arrow-content > .content a:hover,.guid-main-boxes .main-box a:hover{
    columns: var(--third-color);
}
.guiding-policy .arrow-content .rounded-box {
	height: 11.4rem;
	width: 11.4rem;
	background: var(--primery-color);
	color: #fff;
	font-weight: 600;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
    font-size: 2rem;
}
.guiding-policy .arrow-content .rounded-box-outer {
	position: absolute;
	bottom: 50px;
	justify-content: center;
	width: 100%;
}
.guiding-policy .arrow-content > .content ul li {
	line-height: normal;
    margin-bottom: 5px;
    font-style: italic;
}
.guiding-policy .arrow-content .rounded-box-outer .right-content {
	justify-content: space-between;
}

.guiding-policy .guid-main-boxes {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 4rem;
    margin-top: 40px;
}
.guid-main-boxes .main-box {
	border: 5px solid var(--primery-color);
	border-radius: 20px;
	padding: 2rem 3rem;
    position: relative;
}
.guid-main-boxes .main-box ul{
    line-height: normal;
}
.guid-main-boxes .main-box ul li,.guid-main-boxes .main-box p {
	margin-bottom: 5px;
	font-size: 14px;
}
.guid-main-boxes .main-box ul li:last-of-type{
    margin-bottom: 0;
}
.guid-main-boxes .main-box h4 {
	font-weight: 400;
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.3;
    margin-bottom: 1.3rem;
}
.guid-main-boxes .main-box:first-child h4, .guid-main-boxes .main-box:nth-child(2) h4, .guid-main-boxes .main-box:nth-child(4) h4 {
	color: var(--primery-color);
}
.guid-main-boxes .main-box:not(:last-child)::after {
	content: '';
	border-top: 2rem solid transparent;
	border-bottom: 2rem solid transparent;
	border-left: 2rem solid var(--primery-color);
	width: 2.2rem;
	height: 4.1rem;
	display: block;
	position: absolute;
	top: 50%;
	right: -2.7rem;
	transform: translateY(-50%);
}


/* Guiding Policy End */

/* policy-context Start */
.policy-context .col-3 {
	padding-right: 9rem;
}
.policy-context .col-9 {
	padding-left: 1rem;
}
.policy-context .col-9 .content ul {
	margin: 0;
	padding: 0;
	margin-left: 5rem;
}
.policy-context .col-9 .content ul li:not(:last-child){
    margin-bottom: 1rem;
}
.policy-context .col-9 .content ul li {
	font-style: italic;
}
.policy-context .col-9 .col-6:first-child{
    padding-right: 1.5rem;
}
.policy-context .col-9 .col-6:last-child{
    padding-left: 1.5rem;
}
.policy-context .col-9 .col-6 h3{
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    font-family: var(--primery-family);
    font-weight: 600;
}
/* Policy Context End */

/* Globel Form Design Start */
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea{
	color: var(--secound-color);
	border: 1px solid var(--secound-color);
	padding: 1rem;
    font-size: 1.6rem;
    height: 40px;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    border-radius: 0;
    transition: .2s linear;
}
input::placeholder, textarea::placeholder{
    font-size: 1.6rem;
    opacity: 1;
    color: var(--secound-color);
    font-family: 'Roboto', sans-serif;
}
input[type="submit"] {
	background-color: var(--primery-color);
	height: 3.9rem;
	width: 14.6rem;
	font-size: 1.6rem;
	color: #fff;
	text-transform: uppercase;
	border: 0;
	padding: 0;
	border-radius: 0;
	line-height: normal;
	cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: .2s linear;
}
input[type="submit"]:hover{
    background-color: var(--secound-color);
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900;
	text-align: center;
}
.wpcf7-spinner {
	position: absolute;
}
.wpcf7-form-control-wrap {
	display: block;
	margin-bottom: 1.2rem;
}
input:focus-visible,textarea:focus-visible{
    outline: none;
}

/* Reports start */
.reports_sec .inner-box {
	border: 5px solid var(--primery-color);
	border-radius: 20px;
	padding: 7rem 2rem;
	position: relative;
	width: calc(20% - 4rem);
}
.reports_sec .inner-box::after {
    content: '';
    border-top: 2rem solid transparent;
    border-bottom: 2rem solid transparent;
    border-left: 2rem solid var(--primery-color);
    width: 2.2rem;
    height: 4.1rem;
    display: block;
    position: absolute;
    top: 50%;
    right: -2.7rem;
    transform: translateY(-50%);
}
.reports_sec a {
   color: var(--primery-color);
   font-size: 2rem;
   font-weight: 500;
   line-height: normal;
   text-align: center;
   display: block;
}
.reports_sec .outer-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4rem;
}
.reports_sec .content{
    text-align: center;
}
.reports_sec .top-content{
    text-align: center;
}
.reports_sec .top-content p {
	font-size: inherit;
}
.reports_sec .top-content {
	text-align: center;
	font-family: var(--primery-family);
	color: var(--primery-family);
	font-weight: 500;
	font-size: 2.3rem;
    line-height: 1.3;
}
/* Reports end */

/* Frequently Asked Questions Start */
.faqs .content strong,.faqs .content b,.faqs .content span{
    font-weight: 500;
    line-height: 1;
}
/* Frequently Asked Questions End */

/* Home Comments Section Start */
.comments textarea {
	height: 18.1rem;
}
.comments textarea::placeholder{
    text-transform: uppercase;
}
.comments input[type="submit"] {
	margin-top: 1rem;
	text-align: center;
	margin-left: auto;
	display: flex;
	margin-right: auto;
    justify-content: center;
}
/* Home Comments Section End */

/* Open House Start */
#popup-container {
    display: none;
    z-index: 999999;
    position: relative;
    
}
.popup-button {
	margin: 30px 0;
	background: var(--primery-color);
	color: #fff !important;
	padding: 10px 30px;
	font-size: 1.6rem;
	line-height: normal;
	border: 0;
	border-radius: 0;
    transition: .3s linear;
}
.popup-button:hover{
    background-color: var(--secound-color);
}
#open-popup {
	cursor: pointer;
	color: var(--primery-color);
}
#popup-container .overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(67, 68, 68, 0.7);
    z-index: 999999;
    cursor: pointer;
}
#popup-content {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	text-align: center;
	position: fixed;
	top: 50%;
	left: 50%;
	width: auto;
	transform: translate(-50%, -50%);
	z-index: 9999999;
	width: 500px;
	margin: 0;
}
#close-popup {
	margin-top: 10px;
	background-color: var(--primery-color);
	color: #fff;
	border: none;
	padding: 0;
	border-radius: 0px;
	cursor: pointer;
	position: absolute;
	top: -10px;
	right: 0px;
	height: 30px;
	width: 30px;
	z-index: 9;
	font-weight: 700;
    transition: .3s linear;
}
#close-popup:hover {
	background: var(--secound-color);
}
#popup-content form textarea{
    overflow: hidden;
    resize: vertical;
}
/* Open House End */

/* Footer Start */
.site-footer {
	text-align: center;
    margin-bottom: 13.5rem;
}
.site-footer form {
	max-width: 730px;
	margin: auto;
	margin-top: 3rem;
	margin-bottom: 9rem;
}
.site-footer input::placeholder{
    text-transform: uppercase;
}
.site-footer textarea{
    overflow: hidden;
    line-height: normal;
}
/* Footer End */

/* Mobile Menu */
.mobile-button {
	display: none;
	background: var(--primery-color);
	padding: 0;
	border: 0;
	border-radius: 5px;
	cursor: pointer;
	z-index: 99;
	height: 34px;
	width: 44px;
}
.mobile-button span {
	height: 2px;
	width: 20px;
	background: #fff;
	display: block;
	margin-bottom: 4px;
	transition: .3s linear;
}
.mobile-button span:last-child{
    margin-bottom: 0;
}
.mobile-button.button-active span:first-child {
	transform: rotate(50deg);
}
.mobile-button.button-active span:nth-child(2) {
	display: none;
}
.mobile-button.button-active span:nth-child(3) {
	transform: rotate(-50deg);
	margin-top: -6px;
}

/* Application Recap Start */

.mt-0 {
    margin-top: 0;
}
.application-recap table tr:nth-child(even) {
    background: #f0f0f0;
}
.application-recap table tr:last-child td {
	padding-bottom: 30px;
}

table {
	margin: 0;
	width: 100%;
	border: 1px solid #ccc;
	border-collapse: collapse;
}
td, th{
	border: 1px solid #ccc;
	padding: 8px 10px;
	padding-left: 20px;
    text-align: left;
    color: var(--secound-color);
}
th {
    font-family: var(--primery-family);
    font-weight: 600;
    font-size: 20px;
}

/* Application Recap End */

.shadowing .inner-title {
	margin-bottom: 0;
}


/* Responsive Start */
@media (max-width: 1600px){
	:root{font-size: 61%;}
    .redevelopment-sec .left-column .title {font-size: 20px;}
}
@media (max-width: 1480px){
	:root{font-size: 57%;}
    .margin-mid-top70{margin-top: 7rem;}
    .padding-mid-top70{padding-top: 7rem;}
    .site-footer {margin-bottom: 10rem;}

    .ave-sw .secound-column {padding-left: 4rem;}

    .guiding-policy .arrow-content > .content {padding: 0 110px;padding-bottom: 230px;padding-top: 40px;}
    .guid-main-boxes .main-box{padding: 2rem 2rem;}

}
@media (max-width: 1366px){
	:root{font-size: 54%;}

    .redevelopment-sec .left-column .title br {display: none;}
    
    .why-mu .col-3 {padding-right: 5rem;}
    .why-mu .bottom-title{margin-top: 2rem;font-size: 7rem;}
    .why-mu .col-9 .right-content {padding: 4rem 5rem;}
    .why-mu .top-title {margin-bottom: 4rem;}

    .location-context .col-7 .content {margin-top: 4rem;}

    .guiding-policy .guid-main-boxes{grid-gap: 3rem;}
}
@media (max-width: 1190px){
	:root{font-size: 62.5%;--primery-heading: 2.5rem;}
    .grecaptcha-badge {visibility: hidden;opacity: 0;}
    .main-navigation a{font-size: 1.4rem;}
    /* Banner */
	.banner .col-4 {padding: 2rem;display: flex;flex-wrap: wrap;flex-direction: column;justify-content: center;}
	.banner .title br {display: none;}
	.banner .sub-title {font-size: 1.6rem;margin-bottom: 5rem;}
	.banner .title {font-size: 3rem;}
    .margin-sm-top50{margin-top: 5rem;}
    .padding-sm-top50{padding-top: 5rem;}
    .primery-heading{margin-bottom: 2rem;padding-bottom: 2rem;}

    .ave-sw .first-column {padding-right: 1rem;}
    .ave-sw .secound-column {padding-left: 2rem;}

    .who-we-are .left-column ul{grid-column-gap: 1rem;grid-row-gap: 5rem;}
    .who-we-are .font-h3 {font-size: 1.6rem;}
    .who-we-are .primery-heading {margin-bottom: 3rem;}
    .who-we-are .right-column li {margin-bottom: 2rem;}

    .redevelopment-sec .middel-column {display: none;}
    .redevelopment-sec .left-column{width: 73%;padding-right: 3rem;}
    .redevelopment-sec .right-column{width: 27%;}

    .redevelopment-sec .right-column .title, .redevelopment-bottom .title {padding-bottom: 0;}

    .guiding-policy .guid-main-boxes{grid-template-columns: repeat(2, 1fr);}
    .guid-main-boxes .main-box:not(:last-child)::after {top: auto;right: auto;bottom: -35px;transform: rotate(90deg);left: calc(50% - 2.2rem);}
    .guid-main-boxes .main-box:last-child {grid-column: span 2;}
    .guid-main-boxes .main-box:last-child h4 {margin-bottom: 0;}

    .reports_sec .inner-box{width: calc(33.333% - 4rem);}
    .reports_sec .top-content {font-size: 2rem;}
    .main-navigation li:not(:last-child) {padding-right: 26px;}

    .application-recap .col-4.pr-40 {padding-right: 15px;}
    .application-recap .col-8.pl-40 {padding-left: 15px;}
    th {font-size: 18px;}
    td, th {padding-left: 10px;}
	
}
@media (max-width: 1024px){
    .ave-sw .first-column {padding-right: 0rem;width: 100%; margin-bottom: 2rem;}
    .ave-sw .secound-column{width: 100%;padding-left: 0;}

    .redevelopment-bottom ul{grid-column-gap: 5rem;}

    .why-mu .col-3 {padding-right: 0;width: 100%;}
    .why-mu .col-9 {padding-left: 0;width: 100%;margin-top: 5rem;}
    .why-mu .bottom-title {margin-top: 2rem;font-size: 6rem;}

    .location-context .col-7 .content p br {display: none;}

    .amenity-access .col-3, .policy-context .col-3{padding-right: 1rem;}
    .policy-context .col-9 .margin-lg-top100 {margin-top: 5rem;}

    .faqs .col-4 {width: 50%;}
    .faqs .col-4:first-child{display: none;}

    .comments .col-3:first-child {width: 40%;}
    .comments .col-1 {display: none;}
    .comments .col-5 {width: 60%;padding-left: 2rem;}

    .guiding-policy .arrow-content .rounded-box {height: 10rem;width: 10rem;font-size: 1.6rem;}
    .guiding-policy .arrow-content > .content{padding-bottom: 170px;}
}

@media (max-width: 992px){
    .site-header .site-branding img {max-width: 110px;}
    .site-branding {display: flex;align-items: center;}

    .main-navigation li:not(:last-child) {padding-right: 10px;}
    
    .who-we-are .left-column ul{grid-template-columns: repeat(2, 1fr);}

    .redevelopment-sec .left-column {width: 100%;padding-right: 0;margin-bottom: 3rem;}
    .redevelopment-sec .right-column {width: 100%;padding-right: 0;}

    .why-mu .absolute-content img {max-width: 100px;}
    .why-mu .col-9 .right-content {padding: 3rem 2rem;}
    .why-mu .bottom-title {font-size: 4rem;}

    .amenity-access .col-3,.policy-context .col-3{padding-right: 0;margin-bottom: 3rem;width: 100%;}
    .amenity-access .col-9,.policy-context .col-9{padding-left: 0;width: 100%;}
    .site-header .container{padding: 0 10px;}
}

@media (max-width: 767px){
    .col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12{width: 100%;}

    .site-header{padding: 10px 0px;}
    .banner .col-4 {padding: 1.5rem;}
    .banner .sub-title {margin-bottom: 3rem;}
    .ave-sw .content p br {display: none;}
    
    .who-we-are .right-column {margin-top: 2rem;}
    .who-we-are .left-column ul {grid-row-gap: 3rem;}

    .redevelopment-bottom ul{grid-template-columns: 1fr;grid-gap: 3rem;}
    .redevelopment-bottom{margin-top: 3rem;}

    .why-mu .col-9 .right-content p{margin-bottom: 2rem;}
    .why-mu .absolute-content img {max-width: 40px;}
    .why-mu .col-9 .right-content .col-6:first-child {padding-right: 0;border-right: 0;margin-bottom: 3rem;}
    .why-mu .col-9 .right-content .col-6:last-child {padding-left: 0;}
    .why-mu .col-9 .right-content ul{margin-left: 0;}

    .location-context .col-7 {padding-left: 0;margin-top: 3rem;}
    .location-context .col-7 .content {margin-top: 2rem;}
    

    .policy-context .col-9 .margin-lg-top100 {margin-top: 3rem;}
    .policy-context .col-9 .content ul{margin-left: 3rem;}
    .policy-context .col-9 .col-6:first-child, .faqs .col-4:not(:last-child){padding-right: 0;margin-bottom: 3rem;}
    .policy-context .col-9 .col-6:last-child,.proposed-design .col-6.pl-40{padding-left: 0;}

    .proposed-design .col-6.pr-40{padding-right: 0; margin-bottom: 3rem;}
    .proposed-design .content.mt-30 {margin-top: 1rem;}

    .faqs .col-4 {width: 100%;padding-left: 0;}

    .comments .col-3:first-child {width: 100%;margin-bottom: 3rem;}
    .comments .col-5 {width: 100%;padding-left: 0;}
    .comments .primery-heading {margin-bottom: 1rem;padding-bottom: 1rem;}
    .comments form {text-align: center;}

    .margin-top-lg-70 {margin-top: 5rem;}
    .padding-top-lg-70 {padding-top: 5rem;}
    
    .site-footer {margin-bottom: 5rem;}

    /* Menu Navigation */
    .mobile-button {display: flex;align-items: center;justify-content: center;flex-wrap: wrap;flex-direction: column;}
    header .main-navigation {padding: 0 0;overflow-x: hidden;}
    .site-header .main-navigation {position: absolute;top: 0;left: -1000px;height: 100vh;width: 80%;z-index: 99;background-color: var(--primery-color);transition: .3s linear;}
    .main-navigation.menu-open {left: 0;}
    .main-navigation ul {display: block;}
    .main-navigation li:not(:last-child) {padding-right: 0;}
    .main-navigation li a {padding: 1rem 3rem;border-bottom: 1px solid #fff;}
    .main-navigation li:last-child a {border-bottom: none;}
    .main-navigation li a:hover {background: var(--secound-color);color: #fff;}
    /* Menu Navigation End*/

    .popup-title {font-size: 2.4rem;}
    .reports_sec .inner-box::after{top: auto;right: auto;bottom: -35px;transform: rotate(90deg);left: calc(50% - 2.2rem);}
    .reports_sec .inner-box{width: 100%;padding: 4rem 2rem;}
    .reports_sec .inner-box:last-child::after {display: none;}

    .application-recap .col-8 {margin-top: 20px;}
    .application-recap .col-8.pl-40 {padding-left: 0px;}
    .application-recap .col-4.pr-40 {padding-right: 0;}

    .shadowing .col-6 {margin-top: 20px;padding: 0;}
    .shadowing .col-4:not(:first-child) {margin-top: 20px;}


}
@media (max-width: 520px){
    .banner .title {font-size: 2.7rem;}
    .who-we-are .left-column ul {grid-template-columns: repeat(1, 1fr);}

    .redevelopment-sec .left-column li{padding-top: 2rem;padding-bottom: 2rem;}
    .redevelopment-sec .left-column .tit-content {padding-left: 0;width: 100%;margin-top: 1rem;}
    .redevelopment-sec .left-column li .image {width: 100%;}
    .redevelopment-sec .left-column .title {margin-bottom: 0;padding-bottom: 0;}


    .guiding-policy .guid-main-boxes {grid-template-columns: repeat(1, 1fr);grid-gap: 3rem;}
    .guid-main-boxes .main-box:last-child {grid-column: span 1;}
    .guid-main-boxes .main-box:not(:last-child)::after {left: 46%;}
    .guiding-policy .arrow-content > .content {padding-bottom: 230px;padding-top: 30px;padding-bottom: 20px;padding-left: calc(52px + (140 - 52) * ((100vw - 320px) / (520 - 320)));
        padding-right: calc(52px + (140 - 52) * ((100vw - 320px) / (520 - 320)));}
    .guiding-policy .arrow-content .rounded-box-outer {position: relative;bottom: 0;}
    .guiding-policy .arrow-content > .content p,.guiding-policy .arrow-content > .content ul li{font-size: 13px;}
    .guiding-policy .arrow-content .rounded-box {height: 8rem;width: 8rem;font-size: 1.4rem;}
    .guiding-policy .arrow-content .rounded-box-outer .right-content {max-width: 66%;margin: auto;}

    td, th {line-height: normal;}
    .application-recap .col-8 {overflow: auto;overflow-y: hidden;}
    .application-recap td, .application-recap td p {font-size: 13px;}
}
@media (max-width: 520px){
    .guiding-policy .arrow-content .rounded-box-outer .right-content {max-width: 100%;}
    #popup-content{width: 300px;}
}