@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Poppins:wght@400;500;700&display=swap");
:root {
  --bodyText: #222222;
  --lightText: #fff;
  --lightYellow: #ffe7c9;
  --lightBrown: #d5c8ab;
  --lightGray: #f6f6f6;
  --fadedGreen: #d8e0e3;
  --footerText: #7e7e7e;
  --copyrightText: #333333;
  --placeholder: #cccccc;
}

/* css reset */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body,
html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 100%;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;

  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
ul {
  list-style: none;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: var(--bodyText);
}
a {
  color: var(--lightText);
  transition: all 0.3s;
  text-decoration: none;
}
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.btn {
  cursor: pointer;
  border-radius: 2em;
  padding: 0.6em 2.5em;
  text-align: center;
  transition: all 0.3s;
}
.whiteBtn {
  border: 1px solid var(--lightText);
  color: var(--lightText);
  text-shadow: none;
}
.whiteBtn:hover {
  background-color: var(--lightText);
  color: var(--bodyText);
}
.brownBtn {
  border: 1px solid var(--lightBrown);
  color: var(--bodyText);
}
.darkBtn {
  border: 1px solid var(--bodyText);
  color: var(--bodyText);
  margin-top: 30px;
  font-size: 1.5em;
}
.darkBtn:hover {
  background-color: var(--bodyText);
  color: var(--lightText);
}
.brownBtn:hover {
  border: 1px solid var(--lightBrown);
  color: var(--lightText);
  background-color: var(--lightBrown);
}
.scrolled .line {
  background-color: var(--bodyText) !important;
}
.scrolled {
  background-color: var(--lightText) !important;
}
main {
  width: 100% !important;
  margin: 0 auto;
}
header {
  position: fixed;
  display: flex;
  align-items: center;
  padding: 40px;
  justify-content: space-between;
  top: 10px;
  z-index: 100;
  width: 100%;
  transition: all 0.3s;
}
header img {
  width: 122px;
  height: 25px;
}
.scrolled {
  background-color: rgba(0, 0, 0, 0.336) !important;
  transition: all 0.3s;
  padding: 0;
  top: 0;
}

.navbar {
  overflow: hidden;
}

.navbar a {
  float: left;
  font-size: 13px;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 13px;
  border: none;
  outline: none;
  color: white;
  display: block;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--lightText);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a:not(.dropbtn) {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
section {
  min-height: 800px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  position: relative;
}
#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: url("img/bgd.jpg") center center no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 100%;
}

#heroMiddle {
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.4);
  text-align: center;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#heroMiddle span {
  color: var(--lightText);
}
#heroMiddle p {
  color: var(--lightYellow);
}
#heroMiddle .btn {
  margin-top: 3em !important;
}
#hero::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 0;
}
h1 {
  font-family: "Cinzel", serif;
  color: var(--lightText);
  text-transform: none;
  font-weight: 500;
  margin-top: 15px;
  font-size: 4em;
  text-align: center;
}
h2 {
  font-variant-ligatures: none;
  font-family: "Cinzel", serif;
  font-weight: 500;

  font-size: 3em;
  text-align: center;
  padding: 0;
  margin-bottom: 30px;
}
#testimonials {
  margin-top: 30px;
}
section#quotes {
  min-height: inherit;
  background-color: var(--lightGray);
}
#quotes .wrap {
  width: 70%;
}
.quote {
  font-family: "Gurajada", serif;
  text-align: center;
  font-size: 24px;
  border-top: 1px solid var(--lightBrown);
  border-bottom: 3px solid var(--lightBrown);
  color: var(--bodyText) !important;
  padding: 30px;
  display: block;
  width: 60%;
  margin: 0px auto;
  margin-bottom: 20px;
  line-height: 1.2em;
}
.quote em {
  display: block;
  text-align: center;
  padding-top: 1em;
  font-style: normal;
  font-weight: 500;
  font-family: "Poppins", sans-serif !important;
  font-size: 1.2em;
}
#stepForm {
  background: var(--lightGray);
  position: relative;
  overflow: hidden;
}
#progress {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
}
#progress span {
  text-align: center;
  padding: 10px 0;
}
#bars {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.active {
  opacity: 1 !important;
}
.bar {
  width: 30%;
  height: 3px;
  border-radius: 20px;
  background-color: var(--lightBrown);
  opacity: 0.2;
  transition: all 0.3s;
}
.step {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.realEstateStep,
.autoCareStep,
.landscapeStep,
.boatsPlanesStep,
.formStep #boatsPlanes {
  display: none;
}
.card {
  color: var(--bodyText);
  background: var(--lightText);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s;
  margin: 20px 0;
  cursor: pointer;
  max-width: 290px;
  min-height: 250px;
}
.card h3 {
  font-weight: 600;
  font-size: 1em;
  padding: 1em 0;
}
.card img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
}
.card p {
  font-size: 0.875em;
}
.card .btn {
  padding: 0.3em 2.5em;
  transition: all 0.3s;
  margin-top: 2em;
}
.stepTwo,
.stepThree {
  display: none;
}
.card:hover {
  box-shadow: 0px 8px 40px 0px rgba(36, 37, 38, 0.15);
}

#phoneBar {
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  padding: 30px 0;
  color: var(--lightBrown);
  font-weight: 400;
}
#phoneBar img {
  width: 17px;
  height: 20px;
  margin-right: 20px;
}
#phoneBar a {
  padding: 0;
  color: var(--lightBrown);
}
.inner #phoneBar a {
  color: var(--bodyText);
  padding: 10px 60px;
}
.inner #phoneBar a:hover {
  color: var(--lightText);
}
.text {
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.text span {
  color: var(--lightText);
}
.text p {
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  line-height: 32px;

  width: 70%;
  text-align: center;
}
.text p:first-of-type {
  margin-bottom: 40px;
}
.text .btn {
  margin-top: 3em !important;
}
#whyMain {
  background-color: var(--lightGray);
}
#areas {
  background-color: var(--fadedGreen);
  align-items: center;
  justify-content: center;
}
#areaContainer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
#areaContainer > div {
  box-shadow: 0px 8px 40px 0px rgba(36, 37, 38, 0.15);
  min-height: 400px;
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  flex-grow: 1;
}
#areaContainer > div h3 {
  text-align: center;
  padding: 0px;
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--bodyText);
  text-transform: uppercase;
}
#north {
  background-color: var(--lightText);
}
#south {
  background-color: var(--lightBrown);
  color: var(--lightText);
}
.left {
  min-height: 100%;
  width: 50%;
  min-width: 200px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
  width: 50%;
}
.left {
  background: url("img/south_locations.jpg") center center no-repeat;
  background-size: cover;
}
.whyprcc .left {
  background: url("img/bg_planeandpilot.jpg") center center no-repeat;
  background-size: cover;
}
.aboutus .left {
  background: url("img/bg_yatches.jpg") center center no-repeat;
  background-size: cover;
}
.ourServices .left {
  background: url("img/bg_lajolla.jpg") center center no-repeat;
  background-size: cover;
}

#footer {
  min-height: 200px;
  background-color: var(--bodyText);
  color: var(--footerText);
}
#footer .wrap {
  display: flex;
  align-items: center;
}
#footer h4 {
  font-size: 1.3em;
}
#footer a {
  color: var(--footerText);
}
.footerBlock {
  width: 50%;
}
footer {
  background-color: #191919;
  padding: 5px;
  text-align: center;
  color: var(--copyrightText);
}
.footerNav a:hover {
  color: var(--lightBrown) !important;
}
.hideItem {
  display: none;
}
/***** inner pages *****/
#pastProjects {
  background-color: var(--lightGray);
  min-height: inherit;
}
#pastProjects h3 {
  padding: 10px 0;
}
.carousel > div {
  width: 100%;
}
.carousel img {
  width: 100%;
  height: auto;
}
.slick-prev:before,
.slick-next:before {
  color: var(--bodyText) !important;
}
.inner .innerSection {
  justify-content: inherit;
  min-height: auto;
}
.inner header {
  height: inherit;
}
.inner #hero {
  padding: 200px;
  height: auto;
}
.inner .innerSection #phoneBar {
  position: relative;
  padding-top: 0;
  margin-bottom: 10px;
}
.inner .innerSection img {
  width: 50px;
  height: auto;
}

.inner .innerSection .text p {
  width: 100%;
  margin-bottom: 50px;
  font-family: "Poppins", sans-serif !important;
  font-style: normal;
  font-size: 1em;
  vertical-align: middle;
  font-weight: 400;
  text-align: center;
}
.inner .innerSection .text ul {
  list-style: disc;
  text-align: left;
  margin-bottom: 40px;
}
.inner .innerSection .text ul a {
  color: var(--bodyText);
}

.realEstate #hero {
  background-image: url("img/bgd_realestate.jpg");
}

.aboutus #hero {
  background-image: url("img/bgd_aboutus.jpg");
}

.whyprcc #hero {
  background-image: url("img/bgd_why.jpg");
}
.construction #hero {
  background-image: url("img/bgd_construction.jpg");
}

.autoBoatPlane #hero {
  background-image: url("img/bgd_auto.jpg");
}
.areas #hero {
  background-image: url("img/bgd_areas.jpg");
}
.areas .innerSection {
  min-height: inherit;
  margin-bottom: 0;
  padding-bottom: 0;
}
.conciergeServices #hero {
  background-image: url("img/bgd_conciergeServices.jpg");
  background-position: top center;
}
.contactUs #hero {
  background-image: url("img/bgd_contactus.jpg");
}
.ourServices #hero {
  background-image: url("img/bgd_ourServices.jpg");
}
.g-recaptcha {
  width: 304px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.formy:focus {
  outline: none;
  border: 1px solid var(--lightBrown);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.formy {
  font-family: "Poppins", sans-serif;
  transition: all 0.5s;
  min-height: 40px;
  border-radius: 5px;
  padding: 15px;
  border: 1px solid #ececec;
  font-size: 15px;
  color: var(--bodyText);
  letter-spacing: 0.5px;
  box-shadow: none;
  margin-top: 3px;
  margin-bottom: 15px;
  background-color: #fff;
  width: 100%;
}
textarea {
  font-family: "Poppins", sans-serif;
}
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input.brownBtn {
  padding: 20px;
  background-color: var(--lightText);
}
.formy::-webkit-input-placeholder {
  color: var(--placeholder);
}
.formy::-moz-placeholder {
  color: var(--placeholder);
}
.formy:-ms-input-placeholder {
  color: var(--placeholder);
}
.formy::-ms-input-placeholder {
  color: var(--placeholder);
}
.formy::placeholder {
  color: var(--placeholder);
}
.fa {
  color: #fff;
}

.error {
  font-size: 12px;
  color: red;
}

#ContactName.error,
#ContactEmail.error,
#ContactComment.error,
#ContactPhone-error.error {
  background: #ffeaea;
}
small {
  display: block;
  text-align: center;
}
small a {
  color: var(--lightBrown);
}
label.error {
  font-size: 12px;
  color: red;
}
section#map {
  padding: 0;
}
.formContainer {
  padding: 20px;
}
.mapContainer {
  width: 100%;
  height: 800px;
}
/* Nav landscape scroll fix */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (orientation: portrait) {
  .block {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    position: fixed;
  }
  .navbar {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 992px) {
  .realEstate #hero {
    background-image: url("img/bgm_realestate.jpg");
    background-position: bottom center;
  }

  .aboutus #hero {
    background-image: url("img/bgd_aboutus.jpg");
  }

  .whyprcc #hero {
    background-image: url("img/bgd_why.jpg");
  }
  .construction #hero {
    background-image: url("img/bgd_construction.jpg");
  }
  .landscape #hero {
    background-image: url("img/bgm_landscape.jpg");
  }
  .autoBoatPlane #hero {
    background-image: url("img/bgm_auto.jpg");
  }
  .areas #hero {
    background-image: url("img/bgd_areas.jpg");
  }
  header {
    padding: 0;
    flex-direction: column;
    position: absolute;
    top: 30px;
  }
  header img {
    display: block;
  }
  h1 {
    font-size: 2.1em;
  }
  #heroMiddle p {
    font-size: 0.875em;
  }
  #heroMiddle {
    min-width: 90%;
  }
  img#mobileLogo {
    width: 170px;
    height: 54px;
    display: none !important;
  }
  img#mobileLogo {
    display: none;
  }

  #hamburger {
    display: block;
    cursor: pointer;
    z-index: 10;
    margin-right: 0px;
    width: 40px;
    height: 35px;
    position: absolute;
    right: 20px;
    top: 0px;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
  }

  #hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--lightText);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }

  #hamburger span:nth-child(1) {
    top: 0px;
  }

  #hamburger span:nth-child(2),
  #hamburger span:nth-child(3) {
    top: 15px;
  }

  #hamburger span:nth-child(4) {
    top: 30px;
  }
  #hamburger.open span {
    background-color: var(--bodyText);
  }

  #hamburger.open span:nth-child(1) {
    top: 15px;
    width: 0%;
    left: 50%;
  }

  #hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
  }

  #hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  #hamburger.open span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
  }
  /*****
  #hamburger {
    display: none;
    margin-right: 0px;
  }
  #hamburger .line {
    width: 30px;
    height: 3px;
    background: var(--lightText);
    display: block;
  }
  #hamburger .line:nth-child(2) {
    margin: 5px 0;
  }*/
  .block {
    display: block !important;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    flex-direction: column;
    justify-content: flex-start;
    width: 100% !important ;
    height: 100vh;
    background-color: var(--lightText);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .navbar {
    display: none;
    width: 100%;
    padding-bottom: 70px;
  }
  .navbar a {
    border-bottom: 1px solid var(--lightBrown);
  }
  .navbar a:hover {
    background-color: var(--lightBrown);
    color: var(--lightText);
  }
  .overflowHidden {
    overflow: hidden;
  }
  a {
    color: var(--bodyText);
    display: block;
    width: 100%;
  }
  .dropdown {
    color: var(--bodyText);
    float: none;
    clear: both;
    text-align: center;
  }
  .dropdown .dropbtn {
    color: var(--bodyText);
    float: none;
    clear: both;
    width: 100%;
  }
  .dropdown-content {
    display: block;
    position: relative;
    box-shadow: none;
  }
  .dropdown-content a {
    display: block;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--lightGray);
    color: var(--footerText);
    background: none;
  }

  #phoneBar {
    position: relative;
    padding-top: 0;
    border: none;
  }
  .inner .innerSection #phoneBar {
    margin-bottom: 30px;
  }
  .areas .inner .innerSection #phoneBar {
  margin-bottom: 0px !important;
  }
  #phoneBar a {
    padding: 5px 0;
    width: 100%;
    color: var(--bodyText);
    display: inline;
  }

  .inner #hero {
    padding: 200px 20px;
    min-height: 500px;
  }
  #testimonials {
    margin-top: 0px;
  }
  .text p {
    width: 80%;
    word-break: keep-all;
  }
  .inner .innerSection .text p {
    width: 100%;
    margin-bottom: 50px;
    font-family: "Poppins", sans-serif !important;
    font-style: normal;
    font-size: 1em;
    font-weight: 400;
    text-align: center;
  }
  .areas .innerSection .text p {
    text-align: center;
  }
  .areas #quotes h2 {
    margin-bottom: 0;
  }
  #quotes .wrap {
    width: 100%;
  }
  .quote {
    font-size: 20px;
    text-align: center;
    padding: 30px 0;
    width: 100%;
  }
  .quote em {
    text-align: center;
    padding-top: 1em;
  }
  .card {
    width: calc(50% - 20px);
    padding: 20px;
    margin: 10px;
    max-width: 100%;
    min-height: 270px;
  }
  .card p {
    font-size: 0.75em;
  }
  .card h3 {
    font-size: 0.875em;
  }
  .card img {
    width: 80px;
    height: 80px;
  }
  #stepForm h2 {
    padding: 20px;
    font-size: 1.6em;
  }
  #stepForm {
    padding: 20px 0;
  }
  #areaContainer {
    flex-direction: column;
  }
  #areaContainer > div {
    width: 100%;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .left {
    min-height: 200px;
    width: 100%;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
  }
  .right {
    width: 100%;
  }
  #areaContainer > div h3 {
    padding-top: 0;
    padding-left: 0;
  }
  #areaContainer ul li {
    display: inline-block;
    margin: 5px;
    padding: 5px;
    border: 1px solid var(--fadedGreen);
  }
  #footer .wrap {
    flex-direction: column;
  }
  .footerNav a {
    border: none;
    text-align: left;
  }
  .footerBlock {
    width: 100%;
  }

  #footerLogo {
    text-align: center;
    margin-top: 40px;
  }
  .scrolled {
    background: none;
  }
}

@media only screen and (max-width: 375px) {
  section {
    padding: 20px;
    min-height: auto;
  }
  .text p {
    width: 100%;
    font-size: 1em;
  }
}
