@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap");
@import url("https://use.typekit.net/ybb6pao.css");
/**
 * Reset
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/**
 * General
 */
body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilda Display", serif;
  font-weight: 400;
}

h5 {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: #535353;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
}

h2 {
  font-size: 42px;
}

p {
  font-size: 17px;
  line-height: 1.5;
  color: #333333;
  font-family: "Arial", sans-serif;
  font-weight: 400;
}
p a {
  color: #556381;
  font-weight: 600;
}

img {
  max-width: 100%;
  width: 100%;
}

.blueBtn {
  background: #556381;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 17px;
  border: 2px solid #556381;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  min-width: 225px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.blueBtn:hover {
  background: #fff;
  color: #556381;
}
@media screen and (max-width: 1600px) {
  .blueBtn {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

.blackBtn {
  background: #333333;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 17px;
  border: 2px solid #333333;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  min-width: 225px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.blackBtn:hover {
  background: #fff;
  color: #333333;
}

/**
 * Surrounding Areas
 */
.surroundingAreas {
  background: #e5e5e5;
  padding: 50px 0;
}
.surroundingAreas h2 {
  margin-bottom: 20px;
}
.surroundingAreas .areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  height: 500px;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .surroundingAreas .areas {
    height: auto;
  }
}
.surroundingAreas .areas .area {
  width: calc(25% - 25px);
  position: relative;
  height: 450px;
  transition: all 0.3s ease-in-out;
  transition-delay: 0 !important;
  border-radius: 5px;
  overflow: hidden;
}
.surroundingAreas .areas .area:hover {
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .surroundingAreas .areas .area {
    width: 46%;
    height: 250px;
  }
}
.surroundingAreas .areas .area.bottom {
  align-self: flex-end;
}
.surroundingAreas .areas .area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.surroundingAreas .areas .area h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 20px;
  font-size: 22px;
  font-weight: 300;
  text-align: center;
  font-family: "Arial", sans-serif;
  z-index: 2;
  margin: 0;
  background: linear-gradient(
    to bottom,
    rgba(85, 99, 129, 0.4) 0%,
    #556381 70%
  );
}

/**
 * Downloads
 */
.downloads {
  padding: 50px 0;
}
.downloads h2 {
  color: #556381;
  margin-bottom: 10px;
}
.downloads .downloads {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.downloads .downloads .download {
  width: calc(25% - 20px);
}
@media screen and (max-width: 768px) {
  .downloads .downloads .download {
    width: 100%;
  }
}
.downloads .downloads .download .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 15px;
}
.downloads .downloads .download .icon p {
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  color: #333333;
  font-size: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 5px solid #556381;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.downloads .downloads .download .icon i {
  color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #556381;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}
.downloads .downloads .download .info {
  text-align: center;
  padding: 10px;
  border: 1px solid #556381;
  border-radius: 5px;
}
.downloads .downloads .download .info p {
  font-size: 20px;
  color: #535353;
  font-weight: 600;
  line-height: 1.3;
}
.downloads .downloads .download .info a {
  color: #556381;
  font-size: 16px;
  font-style: italic;
}

/**
 * Header
 */
header {
  padding: 20px 0;
}
header .logoBox {
  text-align: right;
}
@media screen and (max-width: 768px) {
  header .logoBox {
    text-align: center;
  }
}
header .logoBox img {
  max-width: 200px;
  width: 100%;
}
header .menuBox {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  header .menuBox {
    height: auto;
    position: absolute;
    z-index: 999;
    top: 175px;
  }
}
header .menuBox ul li a {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  padding: 0 10px;
  color: #333333;
  display: inline;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  margin: 0 10px;
}
@media screen and (max-width: 1600px) {
  header .menuBox ul li a {
    margin: 0 5px;
    padding: 0 5px;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  header .menuBox ul li a {
    font-size: 15px;
  }
}
header .menuBox ul li a:hover {
  color: #556381;
}
header .menuBox ul li a.active {
  color: #556381;
}
header .menuBox ul li a:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  width: 0;
  bottom: -5px;
  background: #556381;
  height: 3px;
  transition: all 0.3s ease-in-out;
}
header .menuBox ul li a:hover:after,
header .menuBox ul li a:focus:after,
header .menuBox ul li a:active:after {
  left: 0;
  right: auto;
  width: 100%;
}
header .buttonBox {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  header .buttonBox {
    padding-top: 20px;
    justify-content: space-between;
  }
}
header .buttonBox .headerBtn {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  color: #556381;
  font-size: 13px;
  font-weight: 800;
  border: 2px solid #556381;
  padding: 12px 15px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
header .buttonBox .headerBtn i {
  margin-left: 5px;
  color: #556381;
  transition: all 0.3s ease-in-out;
}
header .buttonBox .headerBtn:hover {
  background: #556381;
  color: #fff;
}
header .buttonBox .headerBtn:hover i {
  color: #fff;
}

/**
 * Footer
 */
footer {
  background: #556381;
}
footer .footer-top {
  height: 100%;
  padding: 75px 0;
  background: url("/img/footer.svg") no-repeat bottom center/auto 125px scroll;
}
footer .address {
  color: #fff;
  font-size: 18px;
}
footer .footer-bottom {
  background: #313944;
  padding: 10px;
}
footer .footer-bottom p {
  color: #fff;
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
footer .footer-bottom ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
footer .footer-bottom ul li {
  margin: 0 10px;
}
footer .footer-bottom ul li a {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 1600px) {
  footer {
    padding: 50px 0;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 25px 0;
  }
}
footer .logo img {
  max-width: 200px;
  width: 100%;
  margin-bottom: 20px;
}
footer .quickLinks {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  footer .quickLinks {
    padding-top: 20px;
  }
}
footer .quickLinks h4 {
  color: #fff;
}
footer .quickLinks ul {
  padding-left: 0;
  list-style: none;
}
footer .quickLinks ul li {
  margin-bottom: 10px;
}
footer .quickLinks ul li a {
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
}
footer .contactLinks {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  footer .contactLinks {
    padding-top: 20px;
  }
}
footer .contactLinks h4 {
  color: #fff;
}
footer .contactLinks ul {
  padding-left: 0;
  list-style: none;
}
footer .contactLinks ul li {
  margin-bottom: 20px;
}
footer .contactLinks ul li.phone {
  font-family: "Gilda Display", serif;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  footer .contactLinks ul li.phone {
    white-space: normal;
  }
}
footer .contactLinks ul li.phone a {
  font-size: 20px;
  text-decoration: none;
}
footer .contactLinks ul li i {
  color: #fff;
  margin-right: 10px;
  font-size: 24px;
}
footer .contactLinks ul li a {
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  text-decoration: underline;
}
footer .contactLinks ul ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
}

/**
 * Page Head
 */
.pageHead {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.pageHead.dark::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.pageHead .contentBox {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}
.pageHead .contentBox h1,
.pageHead .contentBox h2 {
  color: #fff;
  font-size: 50px;
  font-family: p22-mackinac-pro, serif;
  font-style: italic;
  font-weight: medium;
  margin: 0;
}
.pageHead .contentBox h1.brushberry,
.pageHead .contentBox h2.brushberry {
  font-family: "brushberry-script", sans-serif;
  font-size: 78px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .pageHead .contentBox h1.brushberry,
  .pageHead .contentBox h2.brushberry {
    font-size: 52px;
  }
}
.pageHead .contentBox p {
  color: #fff;
  font-size: 17px;
  font-family: "Arial", sans-serif;
  margin: 20px 0;
}

.home .pageHead {
  min-height: 700px;
  background-image: url("/img/home/banner-bg.jpg");
}
.home .pageHead::before {
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1600px) {
  .home .pageHead {
    min-height: 600px;
  }
}
@media screen and (max-width: 768px) {
  .home .pageHead {
    min-height: 500px;
  }
}
.home .pageHead .contentBox {
  max-width: 1200px;
}
.home .discover {
  padding: 75px 0;
}
@media screen and (max-width: 768px) {
  .home .discover {
    padding: 25px 0;
  }
}
.home .discover .textCol {
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  .home .discover .textCol {
    padding: 15px;
  }
}
.home .discover .textCol img {
  max-width: 175px;
  margin-bottom: 10px;
}
.home .discover .textCol h2 {
  padding-right: 150px;
}
@media screen and (max-width: 768px) {
  .home .discover .textCol h2 {
    padding-right: 0;
  }
}
.home .discover .textCol a {
  margin-right: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .home .discover .textCol a {
    margin-right: 0;
  }
}
.home .discover .imgCol .sideBySide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home .discover .imgCol .sideBySide img {
  max-width: 300px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .home .discover .imgCol .sideBySide img {
    max-width: 50%;
  }
}
.home .discover .imgCol .sideBySide img.down {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .home .discover .imgCol .sideBySide img.down {
    margin-top: 0;
  }
}
.home .discover .imgCol .sideBySide img.up {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .home .discover .imgCol .sideBySide img.up {
    margin-bottom: 0;
  }
}

.home .featuredHomes {
  background: #e5e5e5;
  padding: 25px 0;
}
.home .featuredHomes h1 {
  font-size: 32px;
}
.home .featuredHomes .container {
  max-width: 1200px;
}
.home .featuredHomes .homeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.home .featuredHomes .homeRow .singleHome {
  position: relative;
  width: calc(33.3333333333% - 25px);
  border-radius: 5px;
  overflow: hidden;
  /* 3 columns on top */
}
.home .featuredHomes .homeRow .singleHome:nth-child(n + 4) {
  width: calc(50% - 25px);
}
.home .featuredHomes .homeRow .singleHome:nth-child(n + 4) img {
  height: 350px;
}
@media screen and (max-width: 768px) {
  .home .featuredHomes .homeRow .singleHome:nth-child(n + 4) {
    width: 100%;
  }
}
.home .featuredHomes .homeRow .singleHome:nth-child(n + 4) h4 {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .home .featuredHomes .homeRow .singleHome {
    width: 100%;
  }
  .home .featuredHomes .homeRow .singleHome img {
    height: 350px;
  }
}
.home .featuredHomes .homeRow .singleHome img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .home .featuredHomes .homeRow .singleHome img {
    height: 350px;
  }
}
.home .featuredHomes .homeRow .singleHome h4 {
  position: absolute;
  bottom: 10%;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 300px;
  padding: 20px;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  font-family: "Arial", sans-serif;
  transition: width 0.3s ease-in-out;
  z-index: 2;
  border-radius: 0 5px 5px 0;
}
.home .featuredHomes .homeRow .singleHome button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 5px;
  font-size: 17px;
  border-radius: 5px;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  z-index: 2;
}
.home .featuredHomes .homeRow .singleHome::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(85, 99, 129, 0);
  transition: background 0.3s ease-in-out;
}
.home .featuredHomes .homeRow .singleHome:hover img {
  filter: brightness(100%);
}
.home .featuredHomes .homeRow .singleHome:hover h4 {
  width: 100%;
  border-radius: 0;
}
.home .featuredHomes .homeRow .singleHome:hover::before {
  background: rgba(85, 99, 129, 0.7);
}
.home .facilities {
  padding: 50px 0;
}
.home .facilities #facilitiesSlider {
  border-radius: 5px;
}
.home .facilities h2 {
  text-align: center;
  color: #556381;
  margin-bottom: 20px;
}
.home .facilities .facility {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home .facilities .facility .splide__arrows {
    display: none !important;
    visibility: hidden !important;
  }
}
.home .facilities .facility img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .home .facilities .facility img {
    height: 350px;
  }
}
.home .facilities .facility .info {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(85, 99, 129, 0.9);
  width: 450px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .home .facilities .facility .info {
    width: 100%;
    padding: 0 25px;
  }
}
.home .facilities .facility .info h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
  text-align: center;
}
.home .facilities .facility .info p {
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.home .facilities .splide__arrow {
  background: transparent;
}
.home .facilities .splide__arrow svg {
  fill: #556381;
  color: #556381;
  width: 4em;
  height: 4em;
}
.home .facilities .splide__arrow--next {
  right: -3em;
}
.home .facilities .splide__arrow--prev {
  left: -3em;
}
.home .testimonials {
  background: url("/img/home/testimonial-bg.jpg") no-repeat center center/cover
    fixed;
  padding: 200px 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1600px) {
  .home .testimonials {
    padding: 100px 0;
  }
}
.home .testimonials:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  z-index: 1;
}
.home .testimonials .container {
  position: relative;
  z-index: 2;
}
.home .testimonials h5,
.home .testimonials h2 {
  color: #fff;
}
.home .testimonials h5 {
  margin-bottom: 20px;
}
.home .testimonials h2 {
  margin-bottom: 40px;
}
.home .testimonials .testimonial p {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}
.home .contact {
  background: url("/img/home/contact-bg.jpg") no-repeat center center/cover
    scroll;
}
.home .contact .blueBoxHolder {
  min-height: 600px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .home .contact .blueBoxHolder {
    min-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .home .contact .blueBoxHolder {
    min-height: auto;
  }
}
.home .contact .blueBoxHolder .blueBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 200px;
  background: rgba(85, 99, 129, 0.8);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .home .contact .blueBoxHolder .blueBox {
    position: relative;
    top: 30px;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
    padding: 30px;
    margin-bottom: 70px;
  }
}
.home .contact .blueBoxHolder .blueBox p {
  color: #fff;
  font-size: 18px;
}
.home .contact .contactFormHolder {
  min-height: 600px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .home .contact .contactFormHolder {
    min-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .home .contact .contactFormHolder {
    min-height: auto;
  }
}
.home .contact .contactFormHolder .contactForm {
  position: absolute;
  bottom: -75px;
  right: 0;
  width: 75%;
  background: #f8f5f0;
  padding: 60px 40px;
  border-radius: 5px;
}
@media screen and (max-width: 1600px) {
  .home .contact .contactFormHolder .contactForm {
    bottom: -50px;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .home .contact .contactFormHolder .contactForm {
    position: relative;
    width: 100%;
    bottom: 20px;
    padding: 30px 15px;
  }
}
.home .contact .contactFormHolder .contactForm hr {
  width: 100%;
  border: 1px solid #535353;
  margin: 20px 0;
  opacity: 0.2;
}
.home .contact .contactFormHolder .contactForm form {
  width: 100%;
}
.home .contact .contactFormHolder .contactForm form input {
  width: 100%;
  margin-bottom: 25px;
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #fff;
  min-height: 50px;
}
.home .contact .contactFormHolder .contactForm form input::-moz-placeholder {
  color: #535353;
}
.home .contact .contactFormHolder .contactForm form input::placeholder {
  color: #535353;
}
.home .contact .contactFormHolder .contactForm form input:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.home .contact .contactFormHolder .contactForm form button[type="submit"] {
  background: #556381;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 17px;
  border: 2px solid #556381;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  min-width: 225px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.home
  .contact
  .contactFormHolder
  .contactForm
  form
  button[type="submit"]:hover {
  background: #f8f5f0;
  color: #556381;
}
@media screen and (max-width: 1600px) {
  .home .contact .contactFormHolder .contactForm form button[type="submit"] {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

.contact .pageHead {
  background-image: url("/img/contact/banner-bg.jpg");
}
.contact .underSlide {
  padding: 50px 0 0 0;
}
.contact .underSlide h1 {
  font-size: 32px;
}
.contact .underSlide h1,
.contact .underSlide p {
  text-align: center;
}
.contact .tripleForm {
  /* main 1*/
  /* main 2*/
  /* neutral 1*/
  /* neutral 2*/
  /* Tabs menu */
  /* Tab Links */
}
.contact .tripleForm button[type="submit"] {
  background: #556381;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 17px;
  border: 2px solid #556381;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  min-width: 225px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.contact .tripleForm button[type="submit"]:hover {
  background: #fff;
  color: #556381;
}
@media screen and (max-width: 1600px) {
  .contact .tripleForm button[type="submit"] {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.contact .tripleForm #wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.contact .tripleForm .content {
  width: 100%;
  min-width: 260px;
  margin: 5%;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.6);
  border-radius: 5px;
}
@media screen and (max-width: 512px) {
  .contact .tripleForm .content {
    margin: 0 4%;
    margin-top: 5%;
  }
}
.contact .tripleForm .tabs {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  border-radius: 2px 2px 0px 0px;
}
@media screen and (max-width: 512px) {
  .contact .tripleForm .tabs {
    height: 40px;
  }
}
.contact .tripleForm .tablinks {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  width: 33.33%;
  /*change depending on the number of tabs*/
  height: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  overflow: hidden;
  transition: 0.3s ease;
}
@media screen and (max-width: 512px) {
  .contact .tripleForm .tablinks {
    height: 40px;
    font-size: 12px;
  }
}
.contact .tripleForm .tablinks:before {
  background-image: linear-gradient(135deg, #2e487e 0%, #556381 100%);
  content: "";
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  z-index: 2;
}
.contact .tripleForm .tablinks:hover::before {
  height: 100%;
  z-index: 2;
  bottom: 0;
}
@media screen and (max-width: 512px) {
  .contact .tripleForm .tablinks:hover::before {
    height: 0;
  }
}
.contact .tripleForm .tablinks.active {
  background-color: white;
  z-index: 0;
  border-right: 0px;
  border-left: 0px;
  height: 110px;
  bottom: 0px;
  overflow: hidden;
  border-radius: 5px 5px 0px 0px;
}
@media screen and (max-width: 512px) {
  .contact .tripleForm .tablinks.active {
    height: 60px;
  }
}
.contact .tripleForm .tablinks.active:before {
  content: "";
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}
.contact .tripleForm .tablinks.active p,
.contact .tripleForm .tablinks.active:hover p {
  opacity: 1;
  background: -webkit-linear-gradient(135deg, #2e487e 0%, #556381 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact .tripleForm .tablinks p {
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.5s ease;
  padding: 0;
  margin: 0;
  color: #686868;
  backface-visibility: hidden;
  font-weight: 400;
}
.contact .tripleForm .tablinks:hover p {
  color: white;
  opacity: 1;
}
@media screen and (max-width: 512px) {
  .contact .tripleForm .tablinks:hover p {
    color: #686868;
    opacity: 0.6;
  }
}
.contact .tripleForm .tablinks p:before {
  content: attr(data-title);
  position: absolute;
  height: auto;
  width: auto;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  font-size: 40px;
  transition: 1s ease-out;
  z-index: -1;
  font-weight: 600;
  top: 110%;
}
@media screen and (max-width: 512px) {
  .contact .tripleForm .tablinks p:before {
    display: none;
  }
}
.contact .tripleForm .tablinks:hover p:before {
  opacity: 0.1;
  font-size: 40px;
  top: -80%;
}
.contact .tripleForm .wrapper_tabcontent {
  background-color: white;
  margin-top: 0px;
  position: relative;
  opacity: 1;
  padding: 40px 60px 75px;
  overflow: hidden;
  transition: all 1s ease;
  top: 0;
  border-radius: 0px 0px 5px 5px;
}
.contact .tripleForm .tabcontent {
  display: none;
  min-height: 180px;
}
@keyframes tabEffect {
  from {
    top: -40px;
  }
  to {
    top: 0px;
  }
}
.contact .tripleForm .tabcontent.active {
  transition: all 1s ease;
  display: block;
}
.contact .tripleForm .wrapper_tabcontent:after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  background-image: linear-gradient(135deg, #2e487e 0%, #556381 100%);
  left: 0;
  bottom: 0;
  z-index: 0;
  transition: all 1s ease;
}
@keyframes city {
  from {
    left: -150px;
  }
  to {
    left: -90px;
  }
}
.contact .tripleForm .tabcontent p {
  color: #686868;
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-weight: 100;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  width: 100%;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
}
@media screen and (max-width: 512px) {
  .contact .tripleForm .tabcontent p {
    font-size: 14px;
    line-height: 26px;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
    margin-left: 30px;
  }
  to {
    opacity: 1;
    margin-left: 0;
  }
}
.contact .tripleForm select {
  display: none;
  visibility: hidden;
}
.contact .tripleForm .nice-select .list {
  margin-bottom: 0;
}
.contact .tripleForm .nice-select {
  border-radius: 5px;
}
.contact .tripleForm .nice-select:focus {
  box-shadow: none;
  border: 1px solid #556381;
}
.contact .tripleForm span.required {
  font-size: 14px;
  color: red;
}
.contact .tripleForm .form-control {
  border-radius: 5px;
  transition: all 0.3s ease;
}
.contact .tripleForm .form-control:focus {
  box-shadow: none;
  border: 1px solid #556381;
}
.contact .details {
  background: #e9e5d9;
  padding: 50px 0 125px;
}
.contact .details .detailsBlock {
  width: 33.3333333333%;
  float: left;
  padding: 0 15px;
  border-radius: 5px;
}
.contact .details .detailsBlock .contentBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  height: 100%;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.1);
  transition: all 0.3s ease;
}
.contact .details .detailsBlock .contentBox h3 {
  font-size: 24px;
}
.contact .details .detailsBlock .contentBox h3,
.contact .details .detailsBlock .contentBox p {
  color: #333333;
  transition: all 0.3s ease;
}
.contact .details .detailsBlock .contentBox p {
  margin-bottom: 0;
}
.contact .details .detailsBlock .contentBox:hover {
  background: #556381;
  transform: translateY(-10px);
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.5);
}
.contact .details .detailsBlock .contentBox:hover h3,
.contact .details .detailsBlock .contentBox:hover p {
  color: #fff;
}
.contact .mapBox {
  margin-top: -75px;
  margin-bottom: 50px;
}
.contact .mapBox .container {
  max-width: 1100px;
  background: #fff;
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.3);
  padding: 0;
  border-radius: 5px;
  min-height: 450px;
  overflow: hidden;
}
.contact .mapBox .map {
  min-height: 450px;
}
.contact .mapBox iframe {
  width: 100%;
  height: 100%;
}
.contact .mapBox .content {
  min-height: 450px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.contact .mapBox .content .address {
  margin-bottom: 10px;
}
.contact .mapBox .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ownAHolidayHome .pageHead {
  background-image: url("/img/own-a-holiday-home/banner-bg.jpg");
}
.ownAHolidayHome .pageHead.dark::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.holidayHome .pageHead {
  background-image: url("/img/own-a-holiday-home/banner-bg.jpg");
  min-height: 400px;
}
.holidayHome .pageHead .contentBox {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.holidayHome .mainContent {
  padding: 50px 100px;
}
@media screen and (max-width: 768px) {
  .holidayHome .mainContent {
    padding: 50px 20px;
  }
}
.holidayHome .mainContent .container-fluid {
  background: #e9e5d9;
  padding: 0 50px 50px;
  margin-top: 50px;
  max-width: 2000px;
}
@media screen and (max-width: 768px) {
  .holidayHome .mainContent .container-fluid {
    padding: 0 25px 25px;
  }
}
.holidayHome .mainContent .container-fluid .imgGallery {
  margin-top: -50px;
}
.holidayHome .mainContent .container-fluid img.active {
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
}
.holidayHome .mainContent .container-fluid .container {
  padding-top: 50px;
}
.holidayHome .mainContent .img,
.holidayHome .mainContent .text {
  padding: 15px;
}
.holidayHome .mainContent img.active {
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.5);
}
.holidayHome .mainContent hr {
  width: 100%;
  border: 1px solid #535353;
  margin: 10px 0;
  opacity: 0.75;
}
.holidayHome .mainContent .thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}
.holidayHome .mainContent .thumbs .thumb {
  cursor: pointer;
  transition: all 0.3s ease;
  width: calc(25% - 5px);
}
.holidayHome .mainContent .thumbs .thumb img {
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}
.holidayHome .mainContent .thumbs .thumb:hover {
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.5);
}
.holidayHome .homeContactArea {
  background: #e9e5d9 url("/img/our-park/image-about.png") no-repeat center
    center/cover;
  padding: 50px;
}
.holidayHome .homeContactArea .formBox {
  background: #556381;
  padding: 25px;
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.5);
  border-radius: 5px;
}
.holidayHome .homeContactArea .formBox .form-label {
  color: #fff;
}
.holidayHome .homeContactArea .formBox .form-control {
  background: #fff;
  border-radius: 5px;
}
.holidayHome .homeContactArea .formBox button {
  background: #fff;
  color: #556381;
  padding: 7px 25px;
  border-radius: 5px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}
.holidayHome .homeContactArea .formBox button:hover {
  background: #556381;
  color: #fff;
}

/* Touring Camping */
.touringCamping .pageHead {
  background-image: url("/img/touring-camping/banner-bg.jpg");
}
.touringCamping .introIcons {
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .touringCamping .introIcons {
    padding: 25px 0;
  }
}
.touringCamping .introIcons h5 {
  margin-bottom: 0;
}
.touringCamping .introIcons h1 {
  font-size: 32px;
  margin: 10px 0;
}
.touringCamping .introIcons .textArea {
  max-width: 1000px;
  margin: 0 auto 15px;
}
.touringCamping .introIcons .disclaimer {
  max-width: 1000px;
  margin: 15px auto 0;
}
.touringCamping .introIcons .disclaimer p {
  color: #556381;
  font-style: italic;
  margin-bottom: 0;
}
.touringCamping .introIcons .iconBoxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.touringCamping .introIcons .iconBoxes .iconBox {
  width: 16.6666666667%;
  margin-bottom: 20px;
  padding: 20px;
  border-right: 1px solid #556381;
}
@media screen and (max-width: 768px) {
  .touringCamping .introIcons .iconBoxes .iconBox {
    width: 50%;
    border: none;
    border-bottom: 1px solid #556381;
  }
}
.touringCamping .introIcons .iconBoxes .iconBox:last-child {
  border-right: none;
}
.touringCamping .introIcons .iconBoxes .iconBox i {
  font-size: 42px;
  color: #556381;
}
.touringCamping .introIcons .iconBoxes .iconBox h6 {
  font-size: 18px;
  margin: 10px 0;
}
.touringCamping .facilities {
  background: url("/img/touring-camping/facilities-bg.jpg") no-repeat center
    center/cover fixed;
  margin-top: 50px;
}
.touringCamping .facilities .facilitiesRow {
  display: flex;
  flex-wrap: wrap;
}
.touringCamping .facilities .facilitiesRow .facility {
  width: 33.3333333333%;
  padding: 20px;
  margin-top: -75px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .touringCamping .facilities .facilitiesRow .facility {
    width: 100%;
    margin: 0;
  }
}
.touringCamping .facilities .facilitiesRow .facility:hover {
  transform: translateY(-10px);
}
.touringCamping .facilities .facilitiesRow .facility .inner {
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1), -1px -1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.touringCamping .facilities .facilitiesRow .facility img {
  width: 100%;
  height: 275px;
  -o-object-fit: cover;
  object-fit: cover;
}
.touringCamping .facilities .facilitiesRow .facility .content {
  text-align: center;
  background: #fff;
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.touringCamping .facilities .facilitiesRow .facility .content p {
  margin-bottom: 0;
}
.touringCamping .whyStay {
  padding: 50px 200px;
}
@media screen and (max-width: 768px) {
  .touringCamping .whyStay {
    padding: 25px;
  }
}
.touringCamping .whyStay .titleArea {
  text-align: center;
  margin-bottom: 20px;
}
.touringCamping .whyStay .titleArea h5 {
  margin-bottom: 0;
}
.touringCamping .whyStay .titleArea h2 {
  font-size: 32px;
  margin: 10px 0;
}
.touringCamping .whyStay .reasonsRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.touringCamping .whyStay .reasonsRow .reason {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .touringCamping .whyStay .reasonsRow .reason {
    width: 100%;
  }
}
.touringCamping .whyStay .reasonsRow .reason h3 {
  font-size: 26px;
}
.touringCamping .whyStay .reasonsRow .reason img {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.touringCamping .whyStay .reasonsRow .reason .content {
  padding: 20px 0;
}
.touringCamping .whyStay .reasonsRow .reason .content .extraText {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  display: none;
}
.touringCamping .whyStay .reasonsRow .reason .content .extraText.show {
  max-height: 200px; /* adjust this value to fit your content */
  transition: max-height 0.5s ease-in-out;
  display: inline-block;
}
.touringCamping .whyStay .reasonsRow .reason .content .readMoreBtn {
  background: #556381;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border: 1px solid #556381;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.touringCamping .whyStay .reasonsRow .reason .content .readMoreBtn:hover {
  background: #fff;
  color: #556381;
}
.touringCamping .whyStaySlide {
  padding: 50px 0;
}
.touringCamping .whyStaySlide .textCol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
}
.touringCamping .whyStaySlide .textCol h5 {
  margin-bottom: 0;
}
.touringCamping .whyStaySlide .textCol h2 {
  font-size: 32px;
  margin: 10px 0;
}
.touringCamping .whyStaySlide .reason {
  padding: 25px 50px;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .touringCamping .whyStaySlide .reason {
    padding: 25px;
  }
}
.touringCamping .whyStaySlide .reason img {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.touringCamping .whyStaySlide .reason h3 {
  font-size: 26px;
}
.touringCamping .whyStaySlide .reason .content {
  padding: 20px 0;
}
.touringCamping .whyStaySlide .reason .content .extraText {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  display: none;
}
.touringCamping .whyStaySlide .reason .content .extraText.show {
  max-height: 200px; /* adjust this value to fit your content */
  transition: max-height 0.5s ease-in-out;
  display: inline-block;
}
.touringCamping .whyStaySlide .reason .content .readMoreBtn {
  background: #556381;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border: 1px solid #556381;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.touringCamping .whyStaySlide .reason .content .readMoreBtn:hover {
  background: #fff;
  color: #556381;
}
.touringCamping .rulesFees .titleArea {
  text-align: center;
}
.touringCamping .rulesFees .titleArea h2 {
  font-size: 32px;
  margin: 10px 0;
}
.touringCamping .rulesFees .iconBoxes {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.touringCamping .rulesFees .iconBoxes .iconBox {
  width: calc(33.3333333333% - 20px);
  text-align: center;
  padding: 50px 25px;
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.5);
  border-radius: 8px;
  transition: all 0.3s ease;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .touringCamping .rulesFees .iconBoxes .iconBox {
    width: 100%;
  }
}
.touringCamping .rulesFees .iconBoxes .iconBox:hover {
  transform: translateY(-10px);
  background: #556381;
}
.touringCamping .rulesFees .iconBoxes .iconBox:hover i {
  color: #fff;
}
.touringCamping .rulesFees .iconBoxes .iconBox:hover h6 {
  color: #fff;
}
.touringCamping .rulesFees .iconBoxes .iconBox i {
  font-size: 42px;
  color: #556381;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.touringCamping .rulesFees .iconBoxes .iconBox h6 {
  font-size: 20px;
  color: #556381;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.touringCamping .enquire {
  background: #556381;
  margin-top: 50px;
  padding: 50px;
  text-align: center;
}
.touringCamping .enquire h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
}
.touringCamping .enquire .btn {
  background: #fff;
  color: #556381;
  border: none;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.touringCamping .enquire .btn i {
  margin-left: 5px;
}
.touringCamping .enquire .btn:hover {
  background: #556381;
  color: #fff;
}
.touringCamping .testimonials {
  padding: 50px;
  background: #e9e5d9;
}
@media screen and (max-width: 768px) {
  .touringCamping .testimonials {
    display: none;
  }
}
.touringCamping .testimonials .splide__arrow {
  background: #556381;
}
.touringCamping .testimonials .splide__arrow svg {
  fill: #fff;
}
.touringCamping .testimonials .textCol {
  display: flex;
  align-items: center;
}
.touringCamping .testimonials .textCol h4 {
  font-size: 26px;
  margin-bottom: 0;
}
.touringCamping .testimonials .testimonial {
  padding: 50px;
}
.touringCamping .testimonials .testimonial .inner {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.touringCamping .testimonials .testimonial .inner p {
  margin-bottom: 0;
}

/* Our Park */
.ourPark .pageHead {
  background-image: url("/img/our-park/banner-bg.jpg");
}
.ourPark .intro {
  background: #e9e5d9;
  padding: 50px 50px 15px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ourPark .intro {
    padding: 50px 25px 15px;
  }
}
.ourPark .intro h1 {
  font-size: 32px;
}
.ourPark .intro img {
  width: 100%;
  max-width: 400px;
}
.ourPark .imageAbout {
  background: #e9e5d9 url("/img/our-park/image-about.png") no-repeat center
    center/cover;
  padding: 50px;
}
.ourPark .imageAbout .imageRow {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ourPark .imageAbout .imageRow .imageCol {
  width: calc(33.3333333333% - 20px);
  box-shadow: 0 0 10px rgba(85, 99, 129, 0.5);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ourPark .imageAbout .imageRow .imageCol {
    width: 100%;
  }
}
.ourPark .imageAbout .imageRow .imageCol img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.ourPark .imageAbout .imageRow .imageCol h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  text-align: center;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  background: rgba(85, 99, 129, 0.6);
  transition: all 0.3s ease;
  opacity: 1;
  padding: 25px;
}
.ourPark .imageAbout .imageRow .imageCol:hover h3 {
  opacity: 0;
}
.ourPark .barkesFamily {
  background: url("/img/our-park/barkes-family-bg.jpg") no-repeat center
    center/cover;
  position: relative;
  padding: 75px;
}
@media screen and (max-width: 768px) {
  .ourPark .barkesFamily {
    padding: 25px 15px;
  }
}
.ourPark .barkesFamily::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.7);
  z-index: 1;
}
.ourPark .barkesFamily .container-fluid {
  position: relative;
  z-index: 2;
}
.ourPark .barkesFamily .imgCol {
  display: flex;
  justify-content: center;
}
.ourPark .barkesFamily .imgCol img {
  width: 100%;
  max-width: 450px;
  border-radius: 5px;
}
.ourPark .barkesFamily .textCol {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ourPark .barkesFamily .autoContainer {
  width: 90%;
  margin: 0 auto;
}
.ourPark .barkesFamily .autoContainer h2,
.ourPark .barkesFamily .autoContainer p {
  color: #fff;
}
.ourPark .barkesFamily .autoContainer hr {
  border-color: #fff;
  opacity: 0.75;
}

/* Buyers Guide */
.buyersGuide .pageHead {
  background-image: url("/img/buyers-guide/banner-bg.jpg");
}
.buyersGuide .intro {
  padding: 50px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .buyersGuide .intro {
    padding: 25px 0;
  }
}
.buyersGuide .intro h5 {
  margin-bottom: 0;
}
.buyersGuide .intro h1 {
  font-size: 32px;
  margin: 10px 0;
}
.buyersGuide .intro .textArea {
  max-width: 1000px;
  margin: 0 auto 15px;
}
.buyersGuide .whyStay {
  padding: 50px 200px;
}
@media screen and (max-width: 768px) {
  .buyersGuide .whyStay {
    padding: 25px;
  }
}
.buyersGuide .whyStay .titleArea {
  text-align: center;
  margin-bottom: 20px;
}
.buyersGuide .whyStay .titleArea h5 {
  margin-bottom: 0;
}
.buyersGuide .whyStay .titleArea h2 {
  font-size: 32px;
  margin: 10px 0;
}
.buyersGuide .whyStay .reasonsRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.buyersGuide .whyStay .reasonsRow .reason {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .buyersGuide .whyStay .reasonsRow .reason {
    width: 100%;
  }
}
.buyersGuide .whyStay .reasonsRow .reason h3 {
  font-size: 26px;
}
.buyersGuide .whyStay .reasonsRow .reason video {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.buyersGuide .whyStay .reasonsRow .reason .content {
  padding: 20px 0;
}
.buyersGuide .whyStay .reasonsRow .reason .content .extraText {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  display: none;
}
.buyersGuide .whyStay .reasonsRow .reason .content .extraText.show {
  max-height: 200px; /* adjust this value to fit your content */
  transition: max-height 0.5s ease-in-out;
  display: inline-block;
}
.buyersGuide .whyStay .reasonsRow .reason .content .readMoreBtn {
  background: #556381;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border: 1px solid #556381;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.buyersGuide .whyStay .reasonsRow .reason .content .readMoreBtn:hover {
  background: #fff;
  color: #556381;
}
.buyersGuide .contact {
  background: url("/img/home/contact-bg.jpg") no-repeat center center/cover
    scroll;
}
.buyersGuide .contact .blueBoxHolder {
  min-height: 600px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .buyersGuide .contact .blueBoxHolder {
    min-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .buyersGuide .contact .blueBoxHolder {
    min-height: auto;
  }
}
.buyersGuide .contact .blueBoxHolder .blueBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 200px;
  background: rgba(85, 99, 129, 0.8);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .buyersGuide .contact .blueBoxHolder .blueBox {
    position: relative;
    top: 30px;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
    padding: 30px;
    margin-bottom: 70px;
  }
}
.buyersGuide .contact .blueBoxHolder .blueBox p {
  color: #fff;
  font-size: 18px;
}
.buyersGuide .contact .contactFormHolder {
  min-height: 600px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .buyersGuide .contact .contactFormHolder {
    min-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .buyersGuide .contact .contactFormHolder {
    min-height: auto;
  }
}
.buyersGuide .contact .contactFormHolder .contactForm {
  position: absolute;
  bottom: -75px;
  right: 0;
  width: 75%;
  background: #f8f5f0;
  padding: 60px 40px;
  border-radius: 5px;
}
@media screen and (max-width: 1600px) {
  .buyersGuide .contact .contactFormHolder .contactForm {
    bottom: -50px;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .buyersGuide .contact .contactFormHolder .contactForm {
    position: relative;
    width: 100%;
    bottom: 20px;
    padding: 30px 15px;
  }
}
.buyersGuide .contact .contactFormHolder .contactForm hr {
  width: 100%;
  border: 1px solid #535353;
  margin: 20px 0;
  opacity: 0.2;
}
.buyersGuide .contact .contactFormHolder .contactForm form {
  width: 100%;
}
.buyersGuide .contact .contactFormHolder .contactForm form input {
  width: 100%;
  margin-bottom: 25px;
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #fff;
  min-height: 50px;
}
.buyersGuide
  .contact
  .contactFormHolder
  .contactForm
  form
  input::-moz-placeholder {
  color: #535353;
}
.buyersGuide .contact .contactFormHolder .contactForm form input::placeholder {
  color: #535353;
}
.buyersGuide .contact .contactFormHolder .contactForm form input:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.buyersGuide
  .contact
  .contactFormHolder
  .contactForm
  form
  button[type="submit"] {
  background: #556381;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 17px;
  border: 2px solid #556381;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  min-width: 225px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.buyersGuide
  .contact
  .contactFormHolder
  .contactForm
  form
  button[type="submit"]:hover {
  background: #fff;
  color: #556381;
}
@media screen and (max-width: 1600px) {
  .buyersGuide
    .contact
    .contactFormHolder
    .contactForm
    form
    button[type="submit"] {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

/* Ownership FAQs */
.ownershipFaqs .pageHead {
  background-image: url("/img/ownership-faqs/banner-bg.jpg");
}
.ownershipFaqs .intro {
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ownershipFaqs .intro {
    padding: 25px 0;
  }
}
.ownershipFaqs .intro h5 {
  margin-bottom: 0;
}
.ownershipFaqs .intro h1 {
  font-size: 32px;
  margin: 10px 0;
}
.ownershipFaqs .intro .textArea {
  max-width: 1000px;
  margin: 0 auto 15px;
}
.ownershipFaqs .faqs .leftText {
  background: #556381;
}
.ownershipFaqs .faqs .leftText h4,
.ownershipFaqs .faqs .leftText p,
.ownershipFaqs .faqs .leftText ul,
.ownershipFaqs .faqs .leftText li {
  color: #e9e5d9;
}
.ownershipFaqs .faqs .leftText a {
  color: #fff;
}
.ownershipFaqs .faqs .leftText a:hover {
  text-decoration: underline;
}
.ownershipFaqs .faqs .leftText hr {
  border-color: #e9e5d9;
  opacity: 0.75;
  border-width: 2px;
  width: 25px;
  margin: 10px 0;
}
.ownershipFaqs .faqs .leftText .img img {
  border-radius: 5px;
}
.ownershipFaqs .faqs .leftText .img::before {
  background: #e9e5d9;
  top: 0;
  left: 0;
  border-radius: 5px;
}
.ownershipFaqs .faqs .leftText .img::after {
  background: #e9e5d9;
  bottom: 0;
  right: 0;
  border-radius: 5px;
}
.ownershipFaqs .faqs .rightText hr {
  border-color: #333333;
}
.ownershipFaqs .faqs .rightText .img img {
  border-radius: 5px;
}
.ownershipFaqs .faqs .rightText .img::before {
  background: #556381;
  bottom: 0;
  left: 0;
  border-radius: 5px;
}
.ownershipFaqs .faqs .rightText .img::after {
  background: #556381;
  top: 0;
  right: 0;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .ownershipFaqs .faqs .rightText .row {
    flex-direction: column-reverse;
  }
}
.ownershipFaqs .faqs .leftText,
.ownershipFaqs .faqs .rightText {
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .ownershipFaqs .faqs .leftText,
  .ownershipFaqs .faqs .rightText {
    padding: 25px;
  }
}
.ownershipFaqs .faqs .leftText .text,
.ownershipFaqs .faqs .rightText .text {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .ownershipFaqs .faqs .leftText .text,
  .ownershipFaqs .faqs .rightText .text {
    padding: 25px 10px;
  }
}
.ownershipFaqs .faqs .leftText .text hr,
.ownershipFaqs .faqs .rightText .text hr {
  opacity: 0.75;
  border-width: 2px;
  width: 25px;
  margin: 10px 0;
}
.ownershipFaqs .faqs .leftText .img,
.ownershipFaqs .faqs .rightText .img {
  position: relative;
  padding: 10px;
}
.ownershipFaqs .faqs .leftText .img img,
.ownershipFaqs .faqs .rightText .img img {
  position: relative;
  z-index: 2;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ownershipFaqs .faqs .leftText .img::before,
.ownershipFaqs .faqs .leftText .img::after,
.ownershipFaqs .faqs .rightText .img::before,
.ownershipFaqs .faqs .rightText .img::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}
.ownershipFaqs .faqs .leftText .img:hover::before,
.ownershipFaqs .faqs .leftText .img:hover::after,
.ownershipFaqs .faqs .rightText .img:hover::before,
.ownershipFaqs .faqs .rightText .img:hover::after {
  width: 100%;
  height: 100%;
}
.ownershipFaqs .homeListings {
  display: flex;
  flex-wrap: wrap;
}
.ownershipFaqs .homeListings .homeListing {
  width: 33.3333333333%;
  padding: 20px;
  margin-bottom: 20px;
}
.ownershipFaqs .homeListings .homeListing.sold .inner {
  position: relative;
}
.ownershipFaqs .homeListings .homeListing.sold .inner::before {
  content: "Sold";
  position: absolute;
  top: 10px;
  right: 0;
  background: red;
  color: #fff;
  font-size: 18px;
  padding: 5px 20px;
  width: 40%;
  text-align: center;
  border-radius: 5px 0 0 5px;
  font-family: "Arial", sans-serif;
}
@media screen and (max-width: 768px) {
  .ownershipFaqs .homeListings .homeListing {
    width: 100%;
    padding: 10px;
  }
}
.ownershipFaqs .homeListings .homeListing .inner {
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1), -1px -1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.ownershipFaqs .homeListings .homeListing .inner img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.ownershipFaqs .homeListings .homeListing .inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 5px 3px rgba(85, 99, 129, 0.3),
    -1px -1px 5px rgba(85, 99, 129, 0.3);
}
.ownershipFaqs .homeListings .homeListing .inner .content {
  padding: 20px;
  background: #556381;
}
.ownershipFaqs .homeListings .homeListing .inner .content h4 {
  font-size: 22px;
  color: #fff;
}
.ownershipFaqs .homeListings .homeListing .inner .content p {
  min-height: 60px;
  margin-bottom: 0;
  color: #fff;
}
.ownershipFaqs .homeListings .homeListing .inner .content a {
  color: #fff;
  margin-top: 10px;
  display: inline-block;
}
.ownershipFaqs .homeListings .homeListing .inner .content .icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ownershipFaqs .homeListings .homeListing .inner .content .icon i {
  color: #fff;
}
.ownershipFaqs .homeListings .homeListing .inner .content .icon span {
  color: #fff;
}

/* Offers */
.offers .pageHead {
  background-image: url("/img/offers/banner-bg.jpg");
}
.offers .intro {
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .offers .intro {
    padding: 25px 0;
  }
}
.offers .intro h5 {
  margin-bottom: 0;
}
.offers .intro h1 {
  font-size: 32px;
  margin: 10px 0;
}
.offers .intro .textArea {
  max-width: 1000px;
  margin: 0 auto;
}
.offers #offersSlider {
  padding: 0 50px;
}
@media screen and (max-width: 768px) {
  .offers #offersSlider {
    padding: 0 25px;
  }
}
.offers #offersSlider .offer {
  padding: 25px;
}
.offers #offersSlider .offer .inner {
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 10px;
}
.offers #offersSlider .offer .inner img {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.offers #offersSlider .offer .inner .content {
  margin: 15px 0;
}
.offers .contact {
  background: url("/img/home/contact-bg.jpg") no-repeat center center/cover
    scroll;
}
.offers .contact .blueBoxHolder {
  min-height: 600px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .offers .contact .blueBoxHolder {
    min-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .offers .contact .blueBoxHolder {
    min-height: auto;
  }
}
.offers .contact .blueBoxHolder .blueBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 200px;
  background: rgba(85, 99, 129, 0.8);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .offers .contact .blueBoxHolder .blueBox {
    position: relative;
    top: 30px;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
    padding: 30px;
    margin-bottom: 70px;
  }
}
.offers .contact .blueBoxHolder .blueBox p {
  color: #fff;
  font-size: 18px;
}
.offers .contact .contactFormHolder {
  min-height: 600px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .offers .contact .contactFormHolder {
    min-height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .offers .contact .contactFormHolder {
    min-height: auto;
  }
}
.offers .contact .contactFormHolder .contactForm {
  position: absolute;
  bottom: -75px;
  right: 0;
  width: 75%;
  background: #f8f5f0;
  padding: 60px 40px;
  border-radius: 5px;
}
@media screen and (max-width: 1600px) {
  .offers .contact .contactFormHolder .contactForm {
    bottom: -50px;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  .offers .contact .contactFormHolder .contactForm {
    position: relative;
    width: 100%;
    bottom: 20px;
    padding: 30px 15px;
  }
}
.offers .contact .contactFormHolder .contactForm hr {
  width: 100%;
  border: 1px solid #535353;
  margin: 20px 0;
  opacity: 0.2;
}
.offers .contact .contactFormHolder .contactForm form {
  width: 100%;
}
.offers .contact .contactFormHolder .contactForm form input {
  width: 100%;
  margin-bottom: 25px;
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 5px;
  background: #fff;
  min-height: 50px;
}
.offers .contact .contactFormHolder .contactForm form input::-moz-placeholder {
  color: #535353;
}
.offers .contact .contactFormHolder .contactForm form input::placeholder {
  color: #535353;
}
.offers .contact .contactFormHolder .contactForm form input:focus {
  box-shadow: none;
  outline: none;
  border: none;
}
.offers .contact .contactFormHolder .contactForm form button[type="submit"] {
  background: #556381;
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 17px;
  border: 2px solid #556381;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  min-width: 225px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.offers
  .contact
  .contactFormHolder
  .contactForm
  form
  button[type="submit"]:hover {
  background: #fff;
  color: #556381;
}
@media screen and (max-width: 1600px) {
  .offers .contact .contactFormHolder .contactForm form button[type="submit"] {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

/* Holiday Home Listings */
.holidayHomeListings {
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .holidayHomeListings {
    padding: 25px 15px;
  }
}
.holidayHomeListings .intro {
  max-width: 1000px;
  margin: 0 auto;
}
.holidayHomeListings h3,
.holidayHomeListings h1 {
  font-size: 32px;
}
.holidayHomeListings .homeListings {
  display: flex;
  flex-wrap: wrap;
}
.holidayHomeListings .homeListings .homeListing {
  width: 33.3333333333%;
  padding: 20px;
  margin-bottom: 20px;
}
.holidayHomeListings .homeListings .homeListing.sold .inner {
  position: relative;
}
.holidayHomeListings .homeListings .homeListing.sold .inner::before {
  content: "Sold";
  position: absolute;
  top: 10px;
  right: 0;
  background: red;
  color: #fff;
  font-size: 18px;
  padding: 5px 20px;
  width: 40%;
  text-align: center;
  border-radius: 5px 0 0 5px;
  font-family: "Arial", sans-serif;
}
@media screen and (max-width: 768px) {
  .holidayHomeListings .homeListings .homeListing {
    width: 100%;
    padding: 10px;
  }
}
.holidayHomeListings .homeListings .homeListing .inner {
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1), -1px -1px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.holidayHomeListings .homeListings .homeListing .inner img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}
.holidayHomeListings .homeListings .homeListing .inner:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 5px 3px rgba(85, 99, 129, 0.3),
    -1px -1px 5px rgba(85, 99, 129, 0.3);
}
.holidayHomeListings .homeListings .homeListing .inner .content {
  padding: 20px;
  background: #556381;
}
.holidayHomeListings .homeListings .homeListing .inner .content h4 {
  font-size: 22px;
  color: #fff;
}
.holidayHomeListings .homeListings .homeListing .inner .content p {
  min-height: 60px;
  margin-bottom: 0;
  color: #fff;
}
.holidayHomeListings .homeListings .homeListing .inner .content a {
  color: #fff;
  margin-top: 10px;
  display: inline-block;
}
.holidayHomeListings .homeListings .homeListing .inner .content .icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.holidayHomeListings .homeListings .homeListing .inner .content .icon i {
  color: #fff;
}
.holidayHomeListings .homeListings .homeListing .inner .content .icon span {
  color: #fff;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }
  .logoBox {
    width: 100%;
    text-align: center;
  }
  .buttonBox {
    width: 100%;
    text-align: center;
  }
  .navbar-collapse {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .navbar-nav {
    flex-direction: column;
  }
  .nav-item {
    margin-bottom: 10px;
  }
}
.navbar-toggler {
  border: none;
  background-color: transparent;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
}

#navbarNav.show {
  display: block;
}

@media screen and (min-width: 768px) {
  .navbar-toggler {
    display: none;
  }
}
.singlePost .banner {
  position: relative;
}
.singlePost .banner img {
  position: relative;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .singlePost .banner img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.singlePost .banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(85, 99, 129, 0.4);
  z-index: 1;
}
.singlePost .banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.singlePost .banner .banner-text h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}
.singlePost .main section.text {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .singlePost .main section.text {
    padding: 15px;
  }
}
.singlePost .main section.img-text {
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .singlePost .main section.img-text {
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .singlePost .main section.img-text:nth-child(even) .container .row {
    flex-direction: column-reverse;
  }
}
.singlePost .main section.img-text .container .text {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .singlePost .main section.img-text .container .text {
    padding: 25px 10px;
  }
}
.singlePost .main section.img-text .container .text hr {
  opacity: 0.75;
  border-width: 2px;
  width: 25px;
  margin: 10px 0;
}
.singlePost .main section.img-text .container .img {
  position: relative;
  padding: 10px;
}
.singlePost .main section.img-text .container .img img {
  position: relative;
  z-index: 2;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.singlePost .main section.img-text .container .img::before,
.singlePost .main section.img-text .container .img::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}
.singlePost .main section.img-text .container .img:hover::before,
.singlePost .main section.img-text .container .img:hover::after {
  width: 100%;
  height: 100%;
}
.singlePost .main section.left-text {
  background-color: #556381;
}
.singlePost .main section.left-text .container .text p,
.singlePost .main section.left-text .container .text h1,
.singlePost .main section.left-text .container .text h2,
.singlePost .main section.left-text .container .text h3,
.singlePost .main section.left-text .container .text li {
  color: #e9e5d9;
}
.singlePost .main section.left-text .container .text a {
  color: #fff;
}
.singlePost .main section.left-text .container .text a:hover {
  text-decoration: underline;
}
.singlePost .main section.left-text .img img {
  border-radius: 5px;
}
.singlePost .main section.left-text .img::before {
  background: #e9e5d9;
  top: 0;
  left: 0;
  border-radius: 5px;
}
.singlePost .main section.left-text .img::after {
  background: #e9e5d9;
  bottom: 0;
  right: 0;
  border-radius: 5px;
}
.singlePost .main section.right-text {
  background-color: #fff;
}
.singlePost .main section.right-text .img img {
  border-radius: 5px;
}
.singlePost .main section.right-text .img::before {
  background: #556381;
  bottom: 0;
  left: 0;
  border-radius: 5px;
}
.singlePost .main section.right-text .img::after {
  background: #556381;
  top: 0;
  right: 0;
  border-radius: 5px;
}

.homeSlider .homeListings {
  display: block;
}
.homeSlider .homeListings .homeListing {
  width: 100%;
} /*# sourceMappingURL=style.css.map */
