@import url('color.css');
@import url('font.css');
@import url('icon.css');
@import url('responsive.css');

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--primary-bg-color);
  margin: 0;
  color: var(--color-white);
  font-family: "mukta-mahee",sans-serif;
  font-weight: 100;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  margin-top: 0;
}

h1, button, a {
  font-family: "minerva-modern",sans-serif;
}

h1 {
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 100;
  filter: drop-shadow(1.2px 1.2px 0.5px rgba(0,0,0,0.45));
  margin-bottom: 8px;
  line-height: 32px;
}

h2 {
  font-size: 29px;
  font-family: "mencken-std-head-narrow",sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 2px;
  filter: drop-shadow(1.2px 1.2px 0.5px rgba(0,0,0,0.45));
  margin-bottom: 18px;
}

h3 {
  font-size: 28px;
  font-family: "mencken-std-head-narrow",sans-serif;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 3px;
  filter: drop-shadow(1.2px 1.2px 0.5px rgba(0,0,0,0.45));
  color: var(--text-color);
}

a {
  color: var(--primary-color);
  cursor: pointer;
  font-weight: bold !important;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
}

a[disabled] {
  cursor: default;
  pointer-events: none;
}

p {
  font-size: 16px;
  letter-spacing: 0.3px;
  color: var(--text-color);
}

button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  width: auto;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 1px;
  color: #000 !important;
  font-size: 16px !important;
  font-weight: bold;
  box-shadow: 1px 1px 2px 1px rgba(0,0,0,0.15);
  cursor: pointer;
  letter-spacing: 1.6px;
  padding: 30px 16px !important;
  text-transform: uppercase;
  line-height: 1px;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
  transition: background-color 300ms ease 0ms;
}

button:hover {
  color: var(--color-dark-gray);
  background-color: var(--text-color);
  transition: all 300ms ease 0ms;
}

.button.submit {
  margin: 20px 0 50px 0;
  display: block;
  text-decoration: none;
}
.button.submit button {
  min-width: 260px !important;
}

.hide {
  display: none;
}

.flex {
  display: flex;
}

::selection {
  background: var(--primary-color);
  color: var(--color-white);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--color-white);
}

header {
  /* border: 3px solid yellow; */
  overflow: hidden;
  text-align: center;
  /* max-height: 600px; */
}

header .main-info {
  /* border: 3px solid lime; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  box-sizing: border-box;
  padding: 70px 10vw 6vw 10vw;
  
}

header .main-info .logo {
  width: 220px;
  min-width: 130px;
  max-width: 250px;
  filter: drop-shadow(1.2px 1.2px 0.5px rgb(0 0 0 / 0.45));
}

header .main-info .main-info-cta {
  text-align: left;
  position: relative;
  top: 35vw;
  z-index: 8;
}

header.minimal .main-info .main-info-cta {
  top: 220px;
}

header.minimal {
  max-height: 480px;
}

header video {
  width: auto;
  max-height: 600px;
  user-select: none;
  -webkit-user-select: none;
  box-sizing: border-box;
  min-height: 580px;
}

.logo-nav {
  background: url(../images/logo-peregrine.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 3px;
  margin: 20px 0;
  /* max-width: 256px; */
  background-position-y: center;
  background-position-x: center;
  filter: drop-shadow(1.2px 1.2px 0.5px rgb(0 0 0 / 0.25));
}

.nav-checkbox {
  display: none;
}

.nav-checkbox:checked ~ .nav-list {
  display: block !important;
}

.global-nav .nav-toggle {
  color: var(--color-white);
  /* display: inherit; */
  position: fixed;
  text-align: right;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  z-index: 9;
  cursor: pointer;
}

.global-nav .nav-toggle img {
  filter: drop-shadow(1.2px 1.2px 0.5px rgb(0 0 0 / 0.45));
  width: 100%;
}

.global-nav .nav-list::-webkit-scrollbar {
  display: none;
}

.global-nav .nav-list {
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: none;
  margin: 0;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 10px 10px 100vh 10px;
  box-sizing: border-box;
  z-index: 8;
  background-color: var(--primary-color);
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 500px;
  box-shadow: 0px 0px 40px 20px rgba(0,0,0,0.4);
}

.global-nav li {
  display: grid;
  margin-top: 40px;
}

.global-nav li a {
  padding: 20px 5px 0 4px;
  color: var(--color-white);
  text-align: center;
  /* border: 1px solid red; */
  font-size: 15px;
  /* min-width: 132px; */
  height: 42px;
  font-weight: bold;
  background-color: transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}


.features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0;
  background: url(../images/icon-gates-transparent.svg) no-repeat top left;
  backdrop-filter: opacity(20%);
  background-size: 380px;
  box-sizing: border-box;
  padding: 0px;
  background-position-x: 40px;
  background-position-y: -60px;
}

.features-text {
  padding: 120px 30px 0 30px;
}

.features p {
  max-width: 960px;
}

.features h1 {
  color: var(--tertiary-color);
  font-size: 34px;
}

.features .gallery.one {
  align-self: end;
  margin: 30px 0;
  background: url(../images/backg-slider.svg) repeat-x bottom left;
  background-size: 481px;
  padding: 50px 0 80px 36vw;
  background-position-x: 100vw;
  background-position-y: 180px;
}

.features .gallery-slider {
  width: 100%;
  /* border: 1px solid yellow; */
  position: relative;
  height: 440px;
  gap: 24px;
}
.features .gallery-slider li {
  min-width: 100%;
  height: inherit !important;
}




.availability {
  /* border: 1px solid lime; */
  background-image: url(../images/terrain-bg.png);
  background-size: cover;
  background-repeat:  no-repeat;
  background-position: left center;
  
  display: flex;
  flex-direction: column;
}
/* .availability::after {
  position: absolute;
  content: "";
  width:100%;
  height: 500px;
  background: linear-gradient(to top, rgba(0,0,0,0), var(--primary-bg-color));
} */

.availability h1 {
  color: var(--tertiary-color);
  font-size: 34px;
}

.availability-text {
  padding: 0 30px 0 30px;
  filter: drop-shadow(1.2px 1.2px 0.5px rgba(0,0,0,0.7));
  /* background-image: linear-gradient(to top, rgba(0,0,0,0), var(--primary-bg-color)); */
}

.availability-text img {
  filter: brightness(3);
  opacity: 0.15;
  width: 300px;
}

.availability-map img {
  text-align: center;
  width: 100%;
}

.availability-map {
  /* border: 4px solid red; */
  height: 500px;
  padding: 20px;
  margin-top: 50px;
  height: 890px;
  width: 100%;
  box-sizing: border-box;
  background: url(../images/terrain-map.png) no-repeat top center var(--primary-bg-color);
  background-size: contain;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  background: url(../images/backg-slider.svg) no-repeat left top;
  background-size: contain;
}

.about .about-info {
  order: 1;
  padding: 30px 30px 80px 30px;
}

.about h1 {
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.lifestyle {
  padding: 30px;
}

.lifestyle h1 {
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.lifestyle-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px 0;
  box-sizing: border-box;
  padding: 0px;
  background: none;
}

.lifestyle-gallery .gallery.one {
  align-self: center;
  margin: 30px 0;
  background: url(../images/backg-slider.svg) repeat-x bottom left;
  background-size: 481px;
  padding: 50px 0 80px 0px;
  background-position-x: 100vw;
  background-position-y: 180px;
}

.lifestyle-gallery .gallery-slider {
  width: 100%;
  /* border: 1px solid yellow; */
  position: relative;
  height: 440px;
  gap: 24px;
}
.lifestyle-gallery .gallery-slider li {
  min-width: 100%;
  height: inherit !important;
}

.gallery {
  width: 100%;
  order: 2;
  /* overflow: hidden; */
}

.gallery.one {
  display: flex;
  align-self: center;
  justify-content: end;
}

.gallery-btn {
  position: sticky;
  z-index: 5;
  border-radius: 30px;
  color: #fff;
  padding: 16px;
  cursor: pointer;
}

.gallery-btn.prev {
  left: 6px;
}

.gallery-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-btn.next {
  right: 6px;
}

.gallery-slider::-webkit-scrollbar {
  display: none;
}

.gallery-slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  /* gap: 20px; */
  overflow-y: hidden;
  align-items: center;
}

.gallery-slider li {
  scroll-snap-align: start;
  text-indent: 0;
  width: 100%;
  /* min-width: 300px;
  max-width: 450px; */
  height: 400px;
  display: flex;
  /* overflow: hidden; */
  min-width: 100vw;
  box-sizing: border-box;
}

.gallery-slider li .DISABLED {
  scroll-snap-align: start;
  text-indent: 0;
  width: -webkit-fill-available;
  width: fill-available;
  display: flex;
}

.gallery-slider li img {
  width: inherit;
}

.highlights {
  padding: 0 30px;
}

.highlights h3 {
  color: var(--tertiary-color);
  font-size: 30px;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
}


.highlights-list.lifestyle-page {
  display: flex;
  gap: 60px;
  grid-template-columns: repeat(1, 100vw);
  margin: 0px 0 80px 0;
}

.highlights-list.lifestyle-page li {
  background: url(../images/amenities-bg.png) no-repeat; 
  padding: 60px 0px 0px 72px;
  background-size: 150px;
  width: auto;
}

.highlights-list.lifestyle-page li h1 {
  margin-bottom: 0;
  color: var(--tertiary-color) !important;
  /* border: 1px solid red; */
  overflow: hidden;
  text-overflow: ellipsis;
}

.highlights-list.lifestyle-page li h3 {
  margin-bottom: 0;
  color: var(--color-white);
}

.highlights-list li img {
 display: block;
 width: 170px;
 margin-bottom: 20px;
}

.interactive-map {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 80px;
}

.team {
  text-align: center;
  padding: 30px 10vw 0px 10vw;
}

.team h1 {
  color: var(--tertiary-color) !important;
}

.team h3 {
  border: 0.2px solid var(--text-color) !important;
  padding: 10px;
  margin: 46px 0;
}

.team p {
  text-align: left;
}

.team .team-members {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 120px;
}

.team .team-members .member {
  text-align: -webkit-center;
}

.team .team-members .member a {
  display: block;
  color: var(--color-white);
  margin: 8px 0;
}

.team .team-members .member .member-photo {
  display: block;
  /* border: 1px solid red; */
  max-width: 215px;
  color: var(--color-white);
}

.team .team-members .member .member-name {
 font-size: 18px;
}

.team .team-members img {
  width: 100%;
  max-width: inherit;
}



.team .designer {
  margin-bottom: 100px;
}

.team .designer hr {
  width: 120px;
  position: relative;
  top: 30px;
  border: none;
  height: 0.5px;
  background: var(--text-color);
  margin: 0 0;
  text-align: inherit;
  display: inline-flex;
  opacity: 0.4;
}

.footer-section {
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
  text-align: center;
  gap: 50px;
}


.footer-section .company {
  text-align: center;
}

.footer-section .legal {
  text-align: left;
}


.footer-section .logo {
  width: 100%;
  min-width: 200px;
  max-width: 380px;
}

.footer-section .ev-logo {
  filter: invert(1);
  width: 200px;
}

.footer-contact-links a {
  color: #000 !important;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
}
.footer-contact-address {
  font-size: 0.9rem !important;
  font-weight: 200;
  margin-top: 20px;
}

.social-media-links {
  color: var(--color-white);
  display: flex;
  gap: 20px;
  width: 100%;
  /* border: 1px solid red; */
  justify-content: center;
  margin: 10px 0;
}

.social-media-links a {
  background: #747b5b;
  color: #dfddd8;
  padding: 10px;
}

footer {
  background-color: #dfdcd6;
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  color: var(--color-light-black) !important;
  padding: 20px 5vw 20px 5vw;
  box-sizing: border-box;
  font-size: 0.7rem;
}

footer p {
  color: var(--color-gray) !important;
  font-size: 13px;
  line-height: 18px;
  font-family: "mukta-mahee",sans-serif;
  letter-spacing: 1px;
}

footer a {
  color: var(--color-light-black);
  text-decoration: none;
}

.footer-section .partners {
  text-align: center;
}

.equal-housing-logo {
  width: 14px;
  margin-top: 2px;
  filter: invert(1);
  opacity: 0.4;
}


iframe  {
  border: none;
  margin: 0;
  padding: 0;
}

textarea {
  margin-top: 34px;
  width: 100%;
  min-height: 200px;
  box-sizing: border-box;
}

.contact {
  display: flex;
  margin: 70px 0 0 0;
  flex-direction: column;
  justify-content: flex-end;
  background: url(../images/backg-form.svg) no-repeat center;
  background-size: cover;
  gap: 4vw;
}

.contact .contact-form-container {
  padding: 30px;
}

.contact h1 {
  color: var(--tertiary-color);
  margin: 40px 0;
}

.contact h3 {
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--text-color);
}

.contact h3 a {
  color: var(--text-color);
  font-family: "mencken-std-head-narrow",sans-serif;
  text-decoration: none;
  font-weight: normal !important;
  overflow-wrap: break-word;
  
}

.contact-form {
  box-sizing: border-box;
  text-align: left;
  margin-top: 36px;
}

.contact-form .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 40px;
  grid-auto-rows: minmax(80px, auto);
  /* margin-bottom: 20px; */
  align-items: flex-start;
}

.contact-form .form-item label {
  position: absolute;
  margin-top: 31px;
  font-size: 13px;
  font-family: "mukta-mahee",sans-serif;
  letter-spacing: 0.8px;
  opacity: 0.8;
}

.contact-form label {
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.6;
  display: block;
  min-width: 100px;
  max-width: 340px;
}

.contact-form .form-item{
  /* margin: 10px 0; */
}

.answers.row{
  margin: 0 0 50px 0;
}

.answer .checkbox{
  display: flex;
}


input::-webkit-input-placeholder {
  color: var(--text-color);
  opacity: 0.6 !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.7px;
  font-weight: normal;
}

input:-ms-input-placeholder {
  color: var(--text-color);
  opacity: 0.6 !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.7px;
  font-weight: normal;
}

input::placeholder {
  color: var(--text-color);
  opacity: 0.6 !important;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.7px;
  font-weight: normal;
}

input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0)) !important;
  color: var(--primary-color) !important;
  font-weight: bold;
  background-color: transparent !important;
}

input:autofill {
  background-color:  rgba(0,0,0,0.001) !important;
  color: var(--primary-color) !important;
  font-weight: bold;
}

input[type=tel]:-webkit-autofill,
input[type=text]:-webkit-autofill,
input[type=email]:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0px 9999px var(--primary-bg-color);
  background: none;
  color: var(--text-color) !important;
  font-weight: bold;
  -webkit-text-fill-color: var(--text-color) !important;
}


.contact-form .form-item input, #contact_brokerage_name {
  background-color: transparent;
  width: -webkit-fill-available;
  /* max-width: 50vw; */
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-bottom: 1px solid var(--text-color);
  padding: 0px;
  border-radius: 0 !important;
  font-size: 14px;
    font-family: "mukta-mahee",sans-serif;
  color: var(--text-color) !important;
  font-weight: normal;
	    opacity: 0.6;
	    text-transform: uppercase;
	line-height: 20px;
}

/* .contact-form .form-item input {
  width: 100%;
} */


.answer .checkbox {
  display: flex !important;
}
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #ccc;
  background-color: var(--color-white);
  width: 30px !important;
  height: 30px !important;
  margin-right: 10px !important;
}
input[type="checkbox"] ~ label {
  display: inline-flex;
  align-items: center;
}

.contact-form .form-item input:focus, select:focus, #contact_brokerage_name:focus {
  border-bottom: 1px solid var(--color-white);
  outline: none;
  /* padding-left: 0px !important;
  filter: drop-shadow(1.2px 3.2px 0.5px  var(--primary-bg-color));
  text-shadow: 0 -3px 0px var(--primary-bg-color); */
}

select {
  background-color: transparent;
  /* width: 100%; */
  /* max-width: 50vw; */
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-bottom: 1px solid var(--text-color);
  padding: 0px;
  border-radius: 0 !important;
  /* margin-bottom: 40px; */
  font-size: 14px;
  font-family: "mukta-mahee",sans-serif;
  width: 100%;
  color: var(--text-color);
  font-weight: normal;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.6;
	line-height: 20px;
}

.agent-multi-wrapper select {
  margin-bottom: 20px;
  padding: 0 0 0 0;
}

.Agent {
  display: flex;
  gap: 30px;
}

/* .contact-form .form-item input {
  padding: 0 !important;
} */