/* Paul */
@font-face {
	font-family: "Avenir";
	src: url("../fonts/Avenir Book.ttf");
}

@font-face {
	font-family: "Avenir Heavy";
	src: url("../fonts/Avenir Heavy.ttf");
}

@font-face {
	font-family: "Avenir Black";
	src: url("../fonts/Avenir Black.ttf");
}

@font-face {
	font-family: "Avenir Light";
	src: url("../fonts/Avenir Light.ttf");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

.mobile-only {
	display: none;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-x: hidden;
}


/* HEADER */
header {
	z-index: 99;
	height: 101px;
	width: 100%;
	max-width: 1440px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	background-color: #29292966;
	-webkit-backdrop-filter: blur(19px) brightness(107%);
	backdrop-filter: blur(19px) brightness(107%);
	position: relative;
}

.header__container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	/* padding: 0 146px 0 146px; */
}

.header__menu {
	display: flex;
	align-items: center;
}

.header__menu ul {
	display: flex;
	list-style: none;
	justify-content: space-between;
	width: 100%;
	margin-right: 20px;
}

.header__menu-item {
	padding: 0 18px;
}

.header__menu-item a {
	color: #FFF;
	font-family: Avenir Black;
	/* font-weight: 900; */
	font-size: 20px;
	white-space: nowrap;
}

/* HAMBURGER */
.hamburger {
	width: 3em;
	height: 45px;
	z-index: 5;
	cursor: pointer;
	margin-left: 20px;
}

.hamburger div {
	position: relative;
	width: 2.5em;
	height: 5px;
	border-radius: 3px;
	background-color: #FFF;
	margin-top: 8px;
	transition: all 0.3s ease-in-out;
}

#toggle {
	display: none;
}

#toggle:checked+.hamburger .top-bun {
	transform: rotate(-45deg);
	margin-top: 25px;
}

#toggle:checked+.hamburger .bottom-bun {
	opacity: 0;
	transform: rotate(45deg);
}

#toggle:checked+.hamburger .meat {
	transform: rotate(45deg);
	margin-top: -5px;
}

#toggle:checked+.hamburger+.nav {
	top: 0;
	transform: scale(1);
}

.header__menu-internal {
	background-color: #FFF;
	max-width: 1440px;
	width: 100%;
	height: 454px;
	position: absolute;
	display: none;
	z-index: 99;
	top: 101px;
	left: 0;
	padding: 50px 100px;
	box-shadow: 0px 3px 7px rgba(0,0,0,0.1)
}


.header__menu-internal.show {
	display: block;
}

.header__menu-internal > div {
	height: min-content;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.header__menu-column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.header__menu-group {
	min-height: 165px;
    margin-bottom: 50px;
}

.header__menu-group--small {
	min-height: 130px;
}

.header__menu-group-header {
	white-space: nowrap;
	font-family: Avenir Black;
	font-size: 20px;
	text-transform: uppercase;
	color: #599B59;
	letter-spacing: 2.3px;
	line-height: 25px;
	margin-bottom: 12px;
}

.header__menu-group-header > a {
	text-decoration: none;
	color: inherit;
}

.header__menu-group-list {
	list-style: none;
}

.header__menu-group-list li {
	margin-bottom: 5px;
}

.header__menu-group-list a {
	color: #005001;
	font-family: Avenir Light;
	font-size: 14px;
	letter-spacing: 1.2px;
	line-height: 25x;
	text-transform: uppercase;
}


/* FOOTER */
footer {
	height: 460px;
	width: 100%;
	max-width: 1440px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #335D33;
	padding: 0 60px;
	position: relative;
}

.footer__container {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 46px 80px 0 80px;
}

.footer__column {
	display: flex;
}

.footer__column:nth-child(1) {
	align-items: center;
	flex-direction: column;
}

.footer__column:nth-child(2) {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	width: 100%;
}

.footer__logo {
	margin-bottom: 46px;
}

.footer__address {
	display: flex;
	flex-direction: row;
	margin-bottom: 60px;
	justify-content: space-evenly;
	max-width: 308px;
}

.footer__address img {
	margin-right: 14px;
}

.footer__address span {
	font-family: Avenir;
	font-size: 15px;
	font-weight: 300;
	color: #FFF;
	letter-spacing: 1.5px;
	line-height: 20px;
}

.footer__socmed {
	width: 138px;
	display: flex;
	justify-content: space-between;
}

.footer__group {
	display: flex;
	flex-direction: column;
	height: 144px;
	margin-bottom: 32px;
}

.footer__group-header {
	font-family: Avenir;
	font-size: 23px;
	font-weight: 800;
	text-transform: uppercase;
	color: #FFF;
	letter-spacing: 2.3px;
	line-height: 25px;
	margin-bottom: 8px;
}

.footer__group-list {
	list-style: none;
}

.footer__group-list a {
	color: #FFF;
	font-family: Avenir;
	font-size: 12px;
	/* font-weight: 200; */
	letter-spacing: 1.2px;
	line-height: 16px;
}

.footer__group-list li:before {
	content: '> ';
	color: #599B59;
}

.footer__hr {
	border: 1px solid #599B59;
	width: 100%;
}

.footer__note {
	padding: 22px 0;
}

.footer__note span {
	font-family: Avenir Light;
	font-size: 15px;
	/* font-weight: 200; */
	color: #599B59;
}

/* BANNER */
.home__banner {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: -101px;
}

.home__banner>div {
	max-width: 1440px;
	width: 100%;
	height: 810px;
	/* background-image: ; */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0 149px 89px 146px;
}

.home__banner_group {
	display: flex;
	flex-direction: column;
}

.home__banner_title {
	font-family: Avenir Black;
	font-size: 50px;
	/* font-weight: 900; */
	color: #FFF;
	letter-spacing: 4.5px;
	line-height: 40px;
}

.home__banner_tagline {
	font-family: Avenir Light;
	font-size: 30px;
	/* font-weight: 200; */
	color: #FFF;
	letter-spacing: 2.4px;
	line-height: 40px;
}

/* SECTION - HOME - FEATURED */
.home__featured {
	background-color: #FFF;
	height: 832px;
	padding: 48px 88px 60px 88px;
	max-width: 1440px;
	width: 100%;
}

.home__featured>div {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.home__section_title {
	font-family: Avenir Black;
	font-size: 50px;
	/* font-weight: 900; */
	color: #005001;
	letter-spacing: 2.5px;
	line-height: 68px;
	text-transform: uppercase;
}

.home__section_paragraph {
	font-family: Avenir;
	font-size: 20px;
	font-weight: 300;
	color: #4D4D4D;
	letter-spacing: 2px;
	line-height: 28px;
	max-width: 904px;
	margin-bottom: 90px;
}

.home__featured_cards {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}

.home__featured_card {
	display: flex;
	flex-direction: column;
	max-width: 360px;
}

.home__featured_card>div {
	position: relative;
	margin-bottom: 32px;
}

.home__featured_card img {
	height: 359px;
	width: 359px;
	object-fit: cover;
	filter: brightness(0.55);
}

.home__featured_card a {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: Avenir;
	font-size: 30px;
	font-weight: 300;
	color: #FFF;
	letter-spacing: 3px;
	line-height: 35px;
	text-decoration: none;
}

.home__featured_card p {
	font-family: Avenir;
	font-weight: 300;
	font-size: 15px;
	letter-spacing: 0px;
	line-height: 23px;
	color: #919191;
}


.home__carousel {
	background-color: #F8F8F8;
/* 	height: 792px; */
	height: 730.24px;
	display: flex;
	max-width: 1440px;
	width: 100%;
	position: relative;
}

.home__carousel_container {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
	align-items: center;
	padding: 0 0 0 46px;
}

.home__carousel_details {
	display: flex;
	flex-direction: column;
	max-height: min-content;
	max-width: 350px;
	margin-right: 70px;
}

.carousel__property_name {
	font-family: Avenir Black;
	font-size: 50px;
	/* font-weight: 900; */
	color: #005001;
	letter-spacing: 2.5px;
	line-height: 35px;
	text-transform: uppercase;
	white-space: nowrap;
	margin-bottom: 5px;
}

.carousel__property_altname {
	font-family: Avenir;
	font-size: 30px;
	font-weight: 300;
	color: #005001;
	letter-spacing: 3px;
	line-height: 35px;
	text-transform: uppercase;
	margin-bottom: 13px;
}

.carousel__property_area {
	font-family: Avenir;
	font-size: 20px;
	font-weight: 300;
	color: #4D4D4D;
	letter-spacing: 2px;
	line-height: 27px;
	text-transform: uppercase;
	margin-bottom: 21px;
}

.carousel__property_description {
	font-family: Avenir;
	font-size: 17px;
	font-weight: 300;
	color: #4D4D4D;
	letter-spacing: 1.7px;
	line-height: 28px;
	margin-bottom: 38px;
}

.home__carousel_main {
	max-height: 730.24px;
	height: 100%;
	width: 100%;
	background-color: #000;
}

/* .home__carousel_main > div {
	height: 100%;
} */


.carousel-cell > img {
	max-height: 730.24px;
	max-width: 974px;
	height: 100%;
	width: 100%;
}

.carousel-cell {
	width: 100%;
	height: 730.24px;
	flex: 1;
}

.flickity-button {
	border: solid 5px #FFF;
	background: transparent;
	height: 60px;
	width: 60px;
}

.flickity-button-icon {
	fill: white;
}

.flickity-prev-next-button.previous {
	left: 30px;
}
.flickity-prev-next-button.next {
	right: 30px;
}

.flickity-page-dots {
	bottom: 36px;
}

.flickity-page-dots .dot {
	width: 13px;
	height: 13px;
	opacity: 1;
	background: #005001;
}

.flickity-page-dots .dot.is-selected {
	background: #FFF;
}


.home__properties {
	height: min-content;
	max-width: 1440px;
	width: 100%;
	padding: 50px 50px 71px 50px;
}

.home__properties>div {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.home__properties_cards {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 52px;
	justify-content: space-between;
}

.home__properties_card {
	flex-basis: 50%;
	flex-grow: 1;
}


.home__properties_card > div {
	position: relative;
	margin-bottom: 32px;
}

.home__properties_card img {
	filter: brightness(0.55);
	height: 318px;
	width: 648px;
	object-fit: cover;
}

.home__properties_card a {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: Avenir;
	font-size: 30px;
	font-weight: 300;
	color: #FFF;
	letter-spacing: 3px;
	line-height: 35px;
	text-decoration: none;
}

.home__properties_card p {
	font-family: Avenir;
	font-weight: 300;
	font-size: 15px;
	letter-spacing: 0px;
	line-height: 23px;
	color: #919191;
}

.home__about {
	display: flex;
	background-color: #005001;
	height: 668px;
	width: 1440px;
}

.home__about>div {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.home__about img {
	height: 668px;
	width: 878px;
	object-fit: cover;
}

.home__about_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0 77px;
}

.home__about_content h1 {
	font-family: Avenir Black;
	font-size: 50px;
	/* font-weight: 900; */
	color: #599B59;
	letter-spacing: 2.5px;
	line-height: 60px;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.home__about_content h3 {
	font-family: Avenir Black;
	font-size: 40px;
	/* font-weight: 900; */
	color: #FFF;
	letter-spacing: 4px;
	line-height: 60px;
	margin-bottom: 15px;
}

.home__about_content p {
	font-family: Avenir;
	font-size: 17px;
	font-weight: 300;
	color: #FFF;
	letter-spacing: 1.7px;
	line-height: 30px;
	margin-bottom: 45px;
}



.home__contacts {
	display: flex;
	background-color: #FFF;
	height: min-content;
	max-width: 1440px;
	width: 100%;
}

.home__contacts > div {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}

.home__contacts_img {
	height: 100%;
	width: 562px;
	object-fit: cover;
}

.home__contacts_content {
	display: flex;
	padding: 98px 114px 90px 114px;
}

/* BUTTONS */

.btn {
	border-radius: 11px;
	border: #FFF 1px solid;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: auto;
	letter-spacing: 0.8px;
	line-height: 27px;
	white-space: nowrap;
}

.btn__alt {
	border-radius: 11px;
	border: #204F12 1px solid;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: auto;
	letter-spacing: 0.8px;
	line-height: 27px;
}

.btn__alt_white {
	border-radius: 11px;
	border: #FFF 1px solid;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: auto;
	letter-spacing: 0.8px;
	line-height: 27px;
}

.btn__reserve {
	height: 36px;
	width: 187px;
	background-color: #FFF;
	color: #599B59;
	font-family: Avenir Black;
	font-size: 17px;
	padding: 0 18px;
	/* font-weight: 900; */
}

.btn__view {
	height: 46px;
	width: 238px;
	background-color: #599B59;
	backdrop-filter: blur(5px) brightness(114%);
	color: #FFF;
	font-family: Avenir Light;
	font-size: 20px;
	/* font-weight: 200; */
}

.btn__contact {
	height: 42px;
	width: 178px;
	background-color: #FFF;
	color: #005001;
	font-family: Avenir Black;
	font-size: 18px;
	/* font-weight: 900; */
	box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16);
}

.btn__property_learn {
	height: 42px;
	width: 193px;
	background-color: transparent;
	color: #005001;
	font-family: Avenir Book;
	font-size: 20px;
}

.btn__about_learn {
	height: 42px;
	width: 193px;
	background-color: transparent;
	color: #FFF;
	font-family: Avenir;
	font-size: 20px;
	font-weight: 300;
}

.btn__book {
	height: 42px;
	width: 290px;
	background-color: #005001;
	color: #FFF;
	font-family: Avenir;
	font-size: 20px;
	font-weight: 300;
}



/* CONTACT FORM */
.home__contacts_content {
	display: flex;
	flex-direction: column;
}

.home__contacts_content .home__section_title {
	margin-bottom: 42px;
}

.home__contacts_content>div {
	display: flex;
	flex-direction: row;
}

.home__contacts_cform {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 390px;
	padding: 0 56px 0 0;
	position: relative;
}

.home__contacts_cform:after {
	content: "";
	position: absolute;
	height: 260px;
	width: 0px;
	border: #707070 solid;
	border-width: 0 0.8px 0 0;
	right: 0;
	top: 0;
}

.home__contacts_cform form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home__contacts_select {
	background-color: #FFF;
	border: #D6D6D6 solid 1px;
	border-radius: 23px;
	height: 38px;
	width: 204px;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.09);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	margin-bottom: 25px;
	position: relative;
}

.home__contacts_select select {
	background-color: #FFF;
	border: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-family: Avenir Light;
	/* font-weight: 200; */
	font-size: 17px;
	letter-spacing: 1.19px;
	line-height: 33px;
	color: #599B59;
	outline: none;
	cursor: pointer;
}

.home__contacts_cform .btn {
	margin-top: 42px;
}


.home__contacts_select .home__contacts_icon {
	height: 23px;
	width: 23px;
	/* transform: rotate(0deg); */
}

/* .home__contacts_select > select: + img {
    transform: rotate(20deg);
}

.home__contacts_select > select:focus + img {
    transform: rotate(20deg);
} */


.home__contacts_input {
	width: 100%;
	margin-bottom: 24px;
}

.home__contacts_input>div {
	width: 100%;
	border-bottom: solid #7E7E7E;
	border-width: 0 0 0.5px 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.home__contacts_input input {
	width: 100%;
	height: 27px;
	border: none;
	outline: none;
	font-family: Avenir Light;
	/* font-weight: 200; */
	font-size: 15px;
	letter-spacing: 0.75px;
	line-height: 20px;
	color: #919191;
}

.home__contacts_input .home__contacts_icon {
	height: 16px;
	width: 16px;
	margin-right: 16px;
}

.home__contacts_details {
	display: flex;
	flex-direction: column;
	padding: 42px 0 0 56px;
}

.home__contacts_details p {
	font-family: Avenir;
	font-weight: 400;
	font-size: 17px;
	letter-spacing: 1.19px;
	line-height: 35px;
	color: #599B59;
}

.home__contacts_socmed {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	width: 132px;
	justify-content: space-between;
}

.home__contacts_socmed a {
	text-decoration: none;
}

/* CF7 CUSTOM CSS */
.wpcf7-not-valid-tip {
	position: absolute;
	bottom: -20px;
}

.home__contacts_select .wpcf7-not-valid-tip {
	position: absolute;
	bottom: -24px !important;
	width: 100%;
	white-space: nowrap;
}

.wpcf7-response-output {
	border: none !important;
	margin: 5px 0!important; 
	position: absolute;
	top: -30px;
	width: 100%;
	left: 10px;
}

.wpcf7-not-valid-tip, .wpcf7-response-output {
	font-size: 14px !important;
	color: #dc3545 !important;
}

/* GMAP */
.home__map {
	display: flex;
	background-color: #FFF;
	height: 578px;
	width: 1440px;
	position: relative;
}

.home__map > div {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.home__maps_img {
	max-width: 722px;
	width: 100%;
}

.home__maps_select {
	background-color: #FFF;
	border: #D6D6D6 solid 1px;
	border-radius: 23px;
	height: 38px;
	width: 293px;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.09);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	margin: 46px auto 0;
	position: relative;
	z-index: 99;
}

.home__maps_select select {
	background-color: #FFF;
	border: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-family: Avenir Light;
	/* font-weight: 200; */
	font-size: 17px;
	letter-spacing: 1.19px;
	line-height: 33px;
	color: #599B59;
	outline: none;
	cursor: pointer;
	width: 100%;
}

.home__maps_select > img {
	height: 23px;
	width: 23px !important;
}

.gmap {
	max-width: 718px;
/* 	position: absolute; */
	height: 578px;
	width: 100%;
	z-index: 2;
}

/* GMAP MARKERS */
/*
 * Property styles in unhighlighted state.
 */
.property {
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  color: #263238;
  display: flex;
  font-size: 14px;
  gap: 15px;
  justify-content: center;
  padding: 4px;
  position: relative;
  position: relative;
  transition: all 0.3s ease-out;
  height: 30px;
  width: 30px;
}

.property::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFFFFF;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 95%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}

.property .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
	height: min-content;
}

.property .icon svg {
  height: 30px;
  width: auto;
}

.property .details {
  display: none;
  flex-direction: column;
  flex: 1;
}

.property .name {
  color: #000000;
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: 5px;
}

.property .address {
  color: #333333;
  font-size: 12px;
  margin-bottom: 10px;
}

.property .features {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.property .features > div {
  align-items: center;
  background: #F5F5F5;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: flex;
  font-size: 10px;
  gap: 5px;
  padding: 5px;
}

/*
 * Property styles in highlighted state.
 */
.property.highlight {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  height: 70px;
  padding: 8px 15px;
  width: auto;
}

.property.highlight::after {
  border-top: 9px solid #FFFFFF;
}

.property.highlight .details {
  display: flex;
}

.property.highlight .icon svg {
  width: 50px;
  height: 50px;
}

/*
 * Building icon colors.
 */
.property.highlight:has(.fa-building) .icon {
  color: #005001;
}

.property:not(.highlight):has(.fa-building) {
  background-color: #005001;
	height: 45px;
	width: 45px;
	box-shadow: 3px 4px 4px rgba(0,0,0,0.2);
}

.property:not(.highlight):has(.fa-building)::after {
  border-top: 12px solid #005001;
}


/* RESPONSIVENESS */

@media only screen and (max-width: 992px) {

	.mobile-only {
		display: block;
	}
	
	.desktop-only {
		display: none;
	}

	.header__menu {
		display: none;
	}

	.header__container {
		justify-content: space-between;
		width: 100%;
		padding: 0 32px;
	}

	.header__menu-internal {
		height: min-content;
		position: absolute;
		padding: 40px 20px;
	}

	.header__menu-internal > div {
		flex-direction: column;
		justify-content: flex-start;
	}

	.header__menu-group {
		min-height: min-content !important;
		margin-bottom: 30px;
	}

	.home__banner>div {
		height: 810px;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding: 185px 24px 0 24px;
		background-image: linear-gradient(0deg, transparent, transparent, rgba(1, 61, 11, 0.06), rgba(17, 69, 1, 0.9)), url('../images/home_banner.jpg');
	}

	.home__banner_group {
		height: 90px !important;
	}

	.home__banner_title {
		font-size: 40px;
		letter-spacing: 3.6px;
		line-height: 25px;
		text-align: center;
		margin-bottom: 10px;
	}

	.home__banner_tagline {
		font-size: 20px;
		letter-spacing: 1.6px;
		line-height: 25px;
		text-align: center;
	}

	.home__featured {
		height: min-content;
		padding: 32px 22px 37px;
	}

	.home__featured .home__section_paragraph {
		margin-bottom: 42px;
	}

	.home__featured_cards {
		flex-direction: column;
		align-items: center;
	}

	.home__featured_card {
		margin-bottom: 60px;
	}

	footer {
		height: min-content;
		padding: 0 42px;
	}

	.footer__container {
		justify-content: center;
		padding: 36px 14px 0 14px;
	}

	.footer__column:nth-child(1) {
		margin-bottom: 69px;
	}

	.footer__logo {
		margin-bottom: 27px;
	}

	.footer__address {
		margin-bottom: 32px;
	}

	.footer__container,
	.footer__column:nth-child(2) {
		flex-direction: column;
	}

	.footer__group {
		height: min-content;
		margin-bottom: 45px;
	}


	.home__carousel {
		height: 100%;
	}
	


	.home__carousel_container {
		flex-direction: column;
		padding: 50px 0 0 0px;
	}

	.home__carousel_main {
		max-height: 100%;
		background-color: #FFF;
	}

	.home__carousel_details {
		align-items: center;
		margin-right: 0px;
		margin-bottom: 50px;
	}

	.carousel-cell {
		height: auto;
		width: 100%;
	}

	.carousel-cell img {
		height: auto;
		width: 100%;
	}

	.flickity-viewport {
		width: 100%;
	}

	.flickity-button {
		height: 42px;
		width: 42px;
	}
	
	.home__properties {
		height: min-content;
		padding: 50px 0px 0px 0px !important;
	}
	
	.home__properties > div {
		padding: 0px;
	}

	.home__properties_cards {
		width: 100%;
		flex-direction: column;
	}
	
	.home__properties_card > div {
		margin-bottom: 0px;
		height: min-content;
	}

	.home__properties_card img {
		margin-bottom: -5px;
		width: 100%;
	}
	
	.home__section_title {
		font-size: 40px;
		width: min-content;
		line-height: 40px;
	}
	
	.home__about {
		height: min-content;
		width: 100%;
	}

	.home__about > div {
		flex-direction: column-reverse;
		justify-content: center;
		width: 100%;
	}

	.home__about img {
		height: 328px;
		width: 100%;
	}

	.home__about_content {
		padding: 48px 37px;
		align-items: center;
		text-align: center;
	}

	.home__about_content h1 {
		font-size: 40px;
		margin-bottom: 14px;
	}

	.home__about_content h3 {
		font-size: 35px;
		margin-bottom: 7px;
	}

	.home__about_content p {
		margin-bottom: 25px;
	}

	.home__contacts {
		height: min-content;
	}

	.home__contacts_content {
		height: min-content;
		width: 100%;
		padding: 30px 0 0 0;
		text-align: center;
	}

	.home__contacts_content .home__section_title {
		width: 90%;
		margin: 0 auto 24px auto;
	}
	
	.home__contacts_content>div {
		flex-direction: column;
	}

	.home__contacts_cform {
		margin: 30px auto 0;
		padding: 0 0 30px 0;
		width: 90%;
	}

	.home__contacts_cform:after {
		display: none;
	}

	.home__contacts_details {
		padding: 35px 0;
		align-items: center;
		background-color: #F8F8F8;
	}

	.home__map {
		height: min-content;
		width: 100%;
	}

	.gmap {
		height: 100%;
		width: 100%;
	}
	

	.carousel__property_name {
		font-size: 40px;
	}

}


@media only screen and (max-width: 430px) {
	.home__banner>div {
		height: 873px;
	}

	.home__featured_card img {
		height: 319px;
		width: 319px;
		object-fit: cover;
	}

	.home__properties_card img {
		width: 100%;
	}
	
	

	.home__map {
		height: 365px;
	}

	.wpcf7-response-output {
		top: -45px;
	}
	
}



/* END - Paul */











/* Simon */

.paragraph-intro {
  font-weight: 600;
}

.mgt-group {
  /*   display: grid; */
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  width: 100%;
  max-height: 746px;
  overflow-y: auto;
}

.mgt-team-2-group {
  line-height: 2.5;
}

.page__container {
  width: 100%;
  max-width: 1440px;
}

/* p, li */
.custom-font-size-1 {
  font-family: "Avenir";
  font-size: 17px;
}

/* h2 */
.custom-font-size-2 {
  font-family: "Avenir Black";
  font-size: 40px;
  /*   text-transform: uppercase; */
  margin: 0;
}

.properties-banner__inner__container h2 {
  text-transform: uppercase;
}

/* h3 */
.custom-font-size-3 {
  text-transform: uppercase;
  font-family: "Avenir Black";
  font-size: 30px;
}

.custom-scroll {
  overflow-y: auto;
  padding: 0 10px;
}

.header-size__custom {
  font-size: 30px;
}

h2 {
  font-family: "Avenir Black";
}

.btn-style {
  font-family: "Avenir Light";
  text-transform: uppercase;
  text-decoration: none;
  padding-top: 20px;
  font-size: 21px;
}

.header-green,
.residence-header {
  color: #005001;
}

.header-light-green {
  color: #599b59;
}

.header-white,
.text-white,
.residence-header-2,
.residence-text {
  color: #fff;
}

.residence-header-light {
  color: #599b59;
}

.fit-content {
  width: fit-content;
}

.overlay {
  width: 100%;
  height: 850px;
  opacity: 0.7;
  background-color: #005001;
  margin-top: -101px;
}

/*this h3 font family is different compared to the other pages */
.properties-banner__inner__group h3,
.properties-section-2__inner__group h3,
.leisure__container h3,
.office__container h3 {
  font-family: "Avenir";
  padding-bottom: 20px;
  letter-spacing: 5px;
}

.leisure__container h3 {
  color: #0b2e00;
}

.properties-banner__inner__group h3,
.properties-section-2__inner__group h3 {
  color: #dcffd1;
  letter-spacing: 5px;
}

.about-banner,
.about-section-4 {
  /*   height: 100vh; */
  height: 850px;
  width: 100%;
  background-size: cover !important;
}

.about-section-5 {
  height: 630px;
}

.about-section-1,
.about-section-2 {
  height: 547px;
  width: 100%;
  background-size: cover !important;
}

/* About page background image style */
.about-background-image,
.about-background-image-2 {
  width: 100%;
  max-width: 1440px;
  position: absolute;
}

.about-background-image-2 {
  object-fit: cover;
  height: 547px;
}

.about-background-image {
  object-fit: none;
  /*   height: 100%; */
  height: 850px;
  /*   max-height: 850px; */
}

.about-banner .about-background-image {
  height: 850px;
}

.about-banner__inner__container {
  z-index: 1;
  color: #fff;
  text-align: center;
  bottom: 50%;
  position: relative;
  margin: auto;
}

.about-banner__inner__container h2 {
  text-transform: uppercase;
  margin: 0;
}

.about-section-1__inner__container {
  background-color: #f8f8f8;
}

.about-section-2__inner__container {
  background-color: #599b59;
  color: #ffffff;
}

.about-section-1__inner__container,
.about-section-2__inner__container {
  opacity: 0.9;
  margin: auto;
  top: 3%;
  max-width: 90%;
  height: 95%;
  position: relative;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section-3 h2 {
  text-align: center;
}

.core-values__container {
  gap: 50px 100px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 50px 0;
  align-items: center;
}

.cv-1 {
  max-width: 265px;
}

.cv-1 h3 {
  color: #005001;
  text-transform: uppercase;
}

.cv-1 img {
  width: fit-content;
}

.reversed-image {
  transform: scaleX(-1);
}

/* .about-section-4 .about-background-image {
	height: 850px;
} */

.about-section-4__inner__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f8f8f8;
  opacity: 0.8;
  max-width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  margin: auto;
}

.about-section-4__inner__container h2 {
  text-align: center;
  font-size: 36px;
}

.about-section-4__group {
  display: flex;
  flex-direction: column;
}

.about-section-4__images {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.about-section-4__images__description {
  max-width: 50%;
  font-size: 17px;
  align-self: center;
}

.about-section-4__images__description ul {
  padding-left: 15px;
}

.about-section-5__inner__container {
  position: relative;
  display: flex;
  max-width: 100%;
  height: 100%;
  margin: auto;
  background-color: #599b59;
  opacity: 0.8;
}

.about-section-5__group img {
  width: 80%;
  align-self: center;
}

.about-section-5__group {
  gap: 30px;
  display: flex;
  flex-direction: column;
  align-self: center;
  color: #fff;
}

.about-section-5__group ol {
  text-align: center;
  list-style-position: inside;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.about-section-5__group p,
.about-section-5__group ol {
  padding: 0 20px;
}

.about-section-6 .about-background-image {
  /* 	max-height: 100%; */
  height: 890px;
}

.about-section-6 .overlay {
  height: 100%;
  background-color: #f8f8f8;
  opacity: 0.9;
  margin-top: 0;
}

.properties-banner__container {
  margin-top: -101px;
}

.properties-banner__container,
.properties-section-1__container,
.properties-section-2__container,
.properties-section-3__container {
  display: flex;
}

.page-padding {
  padding: 0 55px;
}

.page-padding-2 {
  padding: 25px 25px 50px;
  box-sizing: border-box;
}

.properties-banner__inner__container {
  background-color: #599b59;
  padding-top: 200px;
}

.properties-section-1__inner__container {
  background-color: #f8f8f8;
}

.properties-section-2__inner__container {
  background-color: #005001;
  padding-top: 50px;
}

.properties-banner__inner__container,
.properties-section-2__inner__container {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.residence-header-btn {
  text-transform: capitalize;
  padding-top: 0;
  border-radius: 250px;
  border: #599b59 solid 2px;
  color: #599b59;
  width: 200px;
  display: flex;
  text-align: center;
  justify-content: center;
  margin: auto;
}

.properties-transparent_btn {
  display: flex;
  padding: 7px 36px 11px 23px;
  font-size: 20px;
  width: 230px;
  color: #fff;
  border-radius: 15px;
  border: #fff solid 1px;
  background-color: transparent;
  margin: 30px auto 0;
}

.residence-btn-2 {
  background-color: transparent;
  padding: 10px 15px;
  width: 80%;
  max-width: 250px;
  color: #fff;
  border-radius: 10px;
  border: #fff solid 1px;
}

.properties-green_btn {
  display: flex;
  color: #005001;
  border-radius: 15px;
  border: #005001 solid 1px;
  background-color: transparent;
  padding: 7px 36px 11px 23px;
  font-size: 20px;
  width: 230px;
  margin: 30px auto 0;
}

.residence-btn {
  background-color: transparent;
  padding: 10px 15px;
  max-width: 250px;
  width: 80%;
  color: #005001;
  border-radius: 10px;
  border: #005001 solid 1px;
}

.properties-banner-image,
.township-image {
  position: relative;
  top: 80px;
  width: 100%;
}

.properties-section-1__container,
.properties-section-3__container {
  width: 100%;
  padding-top: 150px;
}

.properties-section-1__inner__container,
.properties-section-3__inner__container {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding-top: 50px;
}

.leisure-images__container,
.office-images__container {
  padding: 50px 0 80px 0;
  display: flex;
}

.leisure-image-overlay,
.office-image-overlay {
  width: 150px;
  background-color: #599b59;
  height: 300px;
  position: absolute;
  opacity: 0.8;
}

.leisure-image-1,
.office-image-1 {
  width: 150px;
  object-fit: cover;
  height: 300px;
}

.leisure-image-2,
.office-image-2 {
  width: 80%;
  height: 250px;
  position: relative;
  top: 25px;
  right: 138px;
  object-fit: cover;
}

.properties-section-3__inner__container {
  background-color: #dcffd1;
}

/* RESIDENTIAL */

.residential-section-1__container,
.residential-section-2__container,
.residential-section-3__container,
.residential-section-4__container {
  display: flex;
  flex-direction: column-reverse;
}

.residential__container {
  text-align: center;
}

.residential-section-1__inner_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.residential-section-2__container {
  background-color: #005001;
}

.residential-section-4__container {
  background-color: #599b59;
}

.residential-banner__container {
  padding: 50px 0;
}

.residential-green_btn {
  background-color: transparent;
  padding: 5px 15px;
  width: 50%;
  color: #005001;
  border-radius: 10px;
  border: #005001 solid 1px;
}

.custom-img-size {
  width: 100%;
  object-fit: cover;
}

.custom-img-size-2 {
  width: 100%;
  display: flex;
}

.design-filler {
  background: #62be64;
  width: 70%;
  height: 60px;
  position: relative;
  bottom: 40px;
  opacity: 0.9;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.design-filler-2 {
  background: #005001;
  width: 8%;
  height: 150px;
  position: absolute;
  left: 10px;
  opacity: 0.9;
  display: flex;
  align-self: center;
}

.residential-section-3-img__container {
  display: flex;
  flex-direction: row-reverse;
  padding-bottom: 50px;
}

.residential-section-1__inner_container,
.residential-section-2__inner_container,
.residential-section-3__inner_container,
.residential-section-4__inner_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mgt-name-2 {
  text-transform: uppercase;
}

@media (min-width: 320px) and (max-width: 1199px) {
  /* Crelly Management Slider Custom Style For Mobile and Tab */

  .mgt-team-padding {
    padding: 20px 15px 30px 15px !important;
    left: 0 !important;
    width: 90% !important;
    position: relative !important;
    margin: auto !important;
  }

  .mgt-name {
    font-size: 30px !important;
    line-height: 2.5;
    font-family: Avenir Black;
    color: #62be64;
  }

  .mgt-description {
    font-size: 17px !important;
    line-height: 2.5;
  }

  .mgt-title {
    line-height: 20px !important;
    font-size: 20px !important;
    padding: 25px 0 !important;
    text-transform: uppercase;
  }

  .mgt-title,
  .mgt-description {
    font-family: Avenir Light;
    color: #919191;
  }

  .mgt-name,
  .mgt-title {
    text-align: center;
  }

  .mgt-header {
    line-height: 1.5 !important;
    font-family: Avenir Black;
    color: #005001;
    font-size: 40px !important;
    text-align: center;
    /* text-wrap: wrap; */
    padding-bottom: 30px;
    margin: auto;
  }

  .mgt-name-2 {
    font-size: 17px !important;
    color: #599b59;
  }

  .mgt-team-list {
    max-height: 60%;
    overflow-y: scroll;
  }

  .mgt-position {
    font-size: 14px !important;
    color: #599b59;
    padding: 10px 0 !important;
  }

  .mgt-font-color {
    left: 0 !important;
  }

  .crellyslider-slider-management_team_2 .crellyslider > .cs-navigation,
  .crellyslider > .cs-navigation > .cs-slide-link.cs-active,
  .crellyslider > .cs-navigation > .cs-slide-link {
    opacity: 0 !important;
  }

  .crellyslider-slider-management_team .crellyslider > .cs-navigation,
  .crellyslider > .cs-navigation > .cs-slide-link.cs-active,
  .crellyslider > .cs-navigation > .cs-slide-link {
    opacity: 1 !important;
  }

  .crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
    .cs-next,
  .crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
    .cs-previous {
    display: none !important;
  }

  /* Crelly Management Slider Custom Style For Mobile and Tab End */
}

@media (min-width: 600px) {
  .design-filler-2 {
    width: 8%;
    height: 250px;
  }
}

@media (min-width: 992px) {
  .properties-section-1__container,
  .properties-section-3__container {
    padding-top: 0;
  }

  .properties-section-1__inner__container,
  .properties-section-3__inner__container {
    flex-direction: row;
    gap: 50px;
    background-color: #f8f8f8;
    text-align: left;
  }

  .properties-banner__container {
    justify-content: end;
  }

  .properties-banner__group,
  .properties-section-2__group {
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    padding: 100px 0 200px 0;
  }

  .properties-banner__inner__group,
  .properties-section-2__inner__group {
    text-align: left;
    padding-right: 50px;
  }

  .properties-banner-image,
  .township-image {
    position: relative;
    top: initial;
    width: 739px;
    height: 429px;
    object-fit: cover;
  }

  .properties-section-2__container {
    justify-content: end;
  }

  .properties-banner__inner__container {
    max-width: 80%;
    padding-bottom: 100px;
  }

  .properties-section-2__inner__container {
    flex-direction: row-reverse;
    gap: 50px;
    max-width: 80%;
    padding-bottom: 150px;
  }

  .properties-banner__inner__container.page-padding,
  .properties-section-2__inner__container.page-padding {
    padding: 0;
  }

  .properties-banner__inner__container h2 {
    padding-top: 150px;
  }
}

@media (min-width: 1200px) {
  .custom-font-size-2 {
    font-size: 50px;
  }

  .about-section-4__inner__container h2 {
    font-size: 50px;
  }

  .custom-font-size-1 {
    font-size: 20px;
  }

  .header-size__custom {
    font-size: 40px;
  }

  .fit-content {
    width: fit-content;
  }

  .properties-banner__group,
  .properties-section-2__group {
    gap: 0;
    padding: 100px 0 200px 0;
  }
  .about-section-1,
  .about-section-2 {
    height: 931px;
  }

  .about-background-image,
  .about-background-image-2 {
    height: 931px;
  }

  .about-section-5 .about-background-image {
    object-position: bottom;
    height: 630px;
  }

  .about-section-1__inner__container,
  .about-section-2__inner__container {
    margin: initial;
    top: 10%;
    max-width: 35%;
    height: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .about-section-6 .about-background-image {
    object-fit: cover;
    height: 700px;
    max-height: 700px;
  }

  /*   .overlay {
    height: 100vh;
  } */

  /*   .about-banner,
  .about-section-4,
  .about-section-5,
  .about-section-6 {
    height: 100vh;
  } */

  .about-section-1__inner__container {
    margin-left: 2%;
  }

  .about-section-2__inner__container {
    margin-left: 63%;
  }

  .about-section-3 {
    padding: 50px 0;
  }

  .about-section-4__inner__container {
    max-width: 35%;
    height: 70%;
    padding: 30px;
    margin: initial;
  }

  .about-section-4__images__description {
    gap: 50px;
    display: flex;
    flex-direction: column;
    width: 40%;
    font-size: 20px;
    align-self: center;
  }

  .core-values__container {
    gap: 50px 100px;
    display: grid;
    grid-template-columns: auto auto auto auto;
    text-align: center;
    justify-content: center;
    padding: 50px 0;
  }

  .about-section-4__inner__container {
    opacity: 0.6;
    padding: 30px;
    top: 10%;
    max-width: 40%;
    height: 70%;
    left: 50px;
  }

  .about-section-4__images {
    align-items: center;
    flex-direction: column;
    width: 50%;
  }

  .about-section-4__group {
    flex-direction: row;
  }

  .about-section-5__inner__container {
    top: 5%;
    display: flex;
    max-width: 100%;
    height: auto;
    margin-left: 60%;
    background-color: #599b59;
    opacity: 0.9;
    right: 30px;
  }

  .about-section-5__group {
    padding: 80px;
  }

  .about-section-5__group p,
  .about-section-5__group ol {
    padding: 0;
  }

  .about-section-5__group ol {
    text-align: initial;
    list-style-position: initial;
  }

  .about-section-6 .overlay {
    background-color: #005001;
    margin-top: 0;
    height: 700px;
  }

  .properties-township-image__container {
    width: 70%;
  }

  .properties-section-2__inner__container {
    gap: 0;
  }

  .properties-section-2__inner__group {
    position: relative;
    /*     top: 50px; */
    max-width: 50%;
  }

  .custom-img-size {
    width: 1296px !important;
    max-height: 653.08px;
    object-fit: cover;
    /*     width: 90% !important; */
    /*     height: initial; */
    display: flex;
  }

  .custom-img-size-2 {
    width: 816px;
    height: 604px;
    object-fit: cover;
  }

  .residence-header,
  .residence-text-2 {
    color: #fff;
  }

  .residence-header-2 {
    color: #599b59;
  }
  .residence-text {
    color: #62be64;
  }

  .design-filler,
  .design-filler-2 {
    display: none;
  }

  .design-filler-3 {
    background: #005001;
    width: 5%;
    height: 200px;
    position: relative;
    opacity: 0.9;
    display: flex;
    right: 20px;
    align-self: center;
    z-index: 1;
    bottom: 170px;
  }

  .design-filler-4 {
    background: #62be64;
    width: 30%;
    height: 50px;
    position: relative;
    bottom: 30px;
    opacity: 0.9;
    display: flex;
    margin-left: 60%;
  }

  .residential-section-1__container,
  .residential-section-3__container {
    flex-direction: row;
  }

  .residential-section-1__inner_container,
  .residential-section-3__inner_container {
    position: absolute;
    background: #005001;
    right: 0;
    align-self: center;
    text-align: left;
    align-items: start;
    width: 480px;
    display: flex;
    flex-direction: column;
  }

  .residential-section-3__inner_container {
    background: #599b59;
  }

  .residence-btn {
    background-color: transparent;
    padding: 10px 15px;
    width: 205px;
    color: #fff;
    border-radius: 10px;
    border: #fff solid 1px;
    text-align: center;
  }

  .residence-btn-2 {
    background-color: transparent;
    padding: 10px 15px;
    width: 205px;
    color: #62be64;
    border-radius: 10px;
    border: #599b59 solid 1px;
    text-align: center;
  }

  .residential-section-2__container,
  .residential-section-4__container {
    flex-direction: row-reverse;
    background-color: #fff;
    padding: 60px 0;
  }

  .residential-section-2__container {
    padding: 60px 0 0;
  }

  .residential-section-2__inner_container,
  .residential-section-4__inner_container {
    align-items: initial;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-self: center;
  }

  .residential-section-3-img__container {
    display: initial;
  }

  .residential-section-4-img__container {
    position: relative;
  }

  .hide-on-wide {
    display: none;
  }

  .leisure__container p,
  .office__container p {
    color: #599b59;
  }

  .properties-transparent_btn,
  .properties-green_btn {
    margin: 30px 0 0 0;
  }

  /* Crelly Management Slider Custom Style For Larger Screens */
  .mgt-name {
    font-size: 40px !important;
    line-height: 2.5;
    font-family: Avenir Black;
    color: #005001;
  }

  .mgt-description {
    font-size: 17px !important;
    line-height: 2.5;
  }

  .mgt-title {
    font-size: 30px !important;
    padding: 0 !important;
    text-transform: uppercase;
  }

  .mgt-title,
  .mgt-description {
    font-family: Avenir Light;
    color: #919191;
  }

  .mgt-name,
  .mgt-title {
    text-align: center;
  }

  .mgt-group {
    grid-template-columns: 1fr 1fr;
    display: grid;
    /* 	flex-direction: initial; */
    width: 1440px;
    height: 746px;
  }

  .mgt-team-padding {
    padding: 20px 15px 30px 30px !important;
  }

  .mgt-header {
    font-family: Avenir Black;
    color: #fff;
    font-size: 50px !important;
    text-align: center;
    /* text-wrap: wrap; */
    width: 100%;
    padding-bottom: 30px;
    margin: auto;
  }

  .mgt-name-2 {
    font-size: 17px !important;
    color: #fff;
  }

  .mgt-position {
    font-size: 14px !important;
    color: #fff;
    margin: -10px 0 0 0 !important;
  }

  .crellyslider-slider-management_team_2 .crellyslider > .cs-navigation,
  .crellyslider > .cs-navigation > .cs-slide-link.cs-active,
  .crellyslider > .cs-navigation > .cs-slide-link {
    opacity: 1 !important;
  }

  .crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team_2
    .cs-navigation {
    bottom: 200px !important;
  }

  .crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
    .cs-navigation {
    opacity: 0 !important;
  }

  /* Crelly Management Slider Custom Style For Larger Screens End */
}

@media (min-width: 1400px) {
  .page-padding {
    padding: 250px 0 250px 55px;
  }

  .properties-banner__group,
  .properties-section-2__group {
    align-items: center;
    gap: 50px;
    padding: 100px 0;
  }

  .properties-section-1__inner__container,
  .properties-section-3__inner__container {
    align-items: center;
  }

  .properties-banner-image,
  .township-image {
    height: 429px;
  }

  .leisure-images__container,
  .office-images__container {
    padding: 0;
  }

  .properties-banner__inner__group p,
  .properties-section-2__inner__group p {
    width: 480px;
  }

  .leisure-image-1,
  .office-image-1 {
    width: 300px;
    height: 500px;
    object-fit: cover;
  }

  .leisure-image-2,
  .office-image-2 {
    width: 80%;
    height: 450px;
    top: 25px;
  }

  .leisure-image-overlay,
  .office-image-overlay {
    width: 300px;
    height: 500px;
  }

  .leisure__container,
  .office__container {
    width: 45%;
  }
}

@media (min-width: 1441px) {
  .residential-section-1__inner_container,
  .residential-section-3__inner_container {
    position: absolute;
    margin-left: 50%;
    right: initial;
  }
}

/* Crelly Slider Arrow and Navigation Style */

/* #crellyslider-4 .cs-next,
#crellyslider-4 .cs-previous {
  bottom: 190px;
  background-color: transparent;
  box-shadow: none;
} */

.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
  .cs-next,
.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
  .cs-previous {
  bottom: 190px;
  background-color: transparent;
  box-shadow: none;
}

/* #crellyslider-4 .cs-next {
  background-image: url(http://datalandqa.uatdemo.link/wp-content/uploads/2023/07/arrow-next-white.png);
  right: 200px;
  display: block;
} */

.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
  .cs-next {
  background-image: url(http://datalandqa.uatdemo.link/wp-content/uploads/2023/07/arrow-next-white.png);
  right: 200px;
  display: block;
}

.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
  .cs-next.disabled:hover {
  color: grey;
}

/* #crellyslider-4 .cs-next.disabled:hover {
  color: grey;
} */

/* #crellyslider-4 .cs-previous {
  background-image: url(http://datalandqa.uatdemo.link/wp-content/uploads/2023/07/arrow-previous-white.png);
  left: 200px;
} */

.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
  .cs-previous {
  background-image: url(http://datalandqa.uatdemo.link/wp-content/uploads/2023/07/arrow-previous-white.png);
  left: 200px;
}

/* #crellyslider-2 .cs-next,
#crellyslider-2 .cs-previous {
  display: none;
} */

.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team_2
  .cs-next,
.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team_2
  .cs-previous {
  display: none;
}

.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
  .cs-next,
.crellyslider-slider.crellyslider-slider-full-width.crellyslider-slider-management_team
  .cs-previous {
  opacity: 1;
}

.crellyslider > .cs-controls {
  opacity: 1 !important;
}

.crellyslider > .cs-navigation > .cs-slide-link.cs-active {
  background: #62be64;
}

/* Crelly Slider Arrow and Navigation Style End */

/* END - Simon */



