@keyframes fade {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes flip {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.colour-black {
  color: #062136;
}

.bg-black {
  background-color: #062136;
}

.colour-white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.colour-beige {
  color: #CCBFB2;
}

.bg-beige {
  background-color: #CCBFB2;
}

.colour-blue {
  color: #27334A;
}

.bg-blue {
  background-color: #27334A;
}

.colour-blue2 {
  color: #253747;
}

.bg-blue2 {
  background-color: #253747;
}

.colour-gray {
  color: #8F999F;
}

.bg-gray {
  background-color: #8F999F;
}

.colour-sky-blue {
  color: #99D2DE;
}

.bg-sky-blue {
  background-color: #99D2DE;
}

.colour-warm-gray {
  color: #F5F4F2;
}

.bg-warm-gray {
  background-color: #F5F4F2;
}

body {
  font-family: "Inter", sans-serif;
  color: #062136;
  font-size: 16px;
  overflow-x: hidden;
}
@media (max-width: 575px) {
  body {
    font-size: 16px;
  }
}

h1, h2 {
  font-family: "Geom";
  font-size: 67px;
  line-height: 100%;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  h1, h2 {
    font-size: 40px;
    margin-bottom: 27px;
  }
}
h1.callout, h2.callout {
  font-size: 97px;
}
h1.h3-type, h2.h3-type {
  font-family: "Vollkorn", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 32px;
  color: #27334A;
  letter-spacing: -0.05rem;
}
@media (max-width: 767px) {
  h1.h3-type, h2.h3-type {
    font-size: 24px;
  }
}

h3 {
  font-family: "Vollkorn", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 32px;
  color: #27334A;
  letter-spacing: -0.05rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-family: "Vollkorn", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 30px;
  letter-spacing: -0.02rem;
}
@media (max-width: 767px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
}

h6 {
  font-size: 14px;
}

.callout {
  font-size: 97px;
  font-family: "Geom";
  font-weight: 800;
  line-height: 100%;
  display: inline-block;
}
@media (max-width: 1500px) {
  .callout {
    font-size: 85px;
  }
}
@media (max-width: 1300px) {
  .callout {
    font-size: 65px;
  }
}
@media (max-width: 767px) {
  .callout {
    font-size: 46px;
  }
}

p {
  line-height: 131.25%;
}
p.big {
  font-size: 18px;
}
p:last-child {
  margin-bottom: 0;
}
p a {
  color: inherit;
  text-decoration: underline;
}

.large-paragraph p {
  font-size: 18px;
}

.text-initial {
  text-transform: initial;
}

.font-geom {
  font-family: "Geom";
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.font-vollkorn {
  font-family: "Vollkorn", serif;
}

.font-catamaran {
  font-family: "Catamaran", sans-serif;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

b,
strong {
  font-weight: bold;
}

.bg-type {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-type.bg-contain {
  background-size: contain;
}
.bg-type.bg-left {
  background-position: left center;
}
.bg-type.bg-right {
  background-position: right center;
}
.bg-type.bg-fixed {
  background-attachment: fixed;
}

.btn-type {
  display: inline-block;
  line-height: 100%;
  padding: 23px 33px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05rem;
  border-radius: 5px;
  text-align: center;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-type.btn-arrow {
  padding-right: 57px;
}
.btn-type.btn-arrow:after {
  content: "";
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 20px;
  right: 23px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/arrow-right-long.svg);
  filter: brightness(0) saturate(100%) invert(17%) sepia(11%) saturate(2252%) hue-rotate(181deg) brightness(90%) contrast(89%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-type.btn-blue {
  background-color: #27334A;
  color: #ffffff;
}
.btn-type.btn-blue:hover {
  background-color: #CCBFB2;
  color: #27334A;
}
.btn-type.btn-blue.btn-arrow:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(634%) hue-rotate(168deg) brightness(121%) contrast(100%);
}
.btn-type.btn-blue.btn-arrow:hover:after {
  filter: brightness(0) saturate(100%) invert(17%) sepia(11%) saturate(2252%) hue-rotate(181deg) brightness(90%) contrast(89%);
}
.btn-type.btn-border {
  border: 1px solid #CCBFB2;
  color: #27334A;
}
.btn-type.btn-border:hover {
  background-color: #CCBFB2;
}
.btn-type.btn-border-white {
  border: 1px solid #CCBFB2;
  color: #ffffff;
}
.btn-type.btn-border-white:hover {
  background-color: #CCBFB2;
  color: #27334A;
}
.btn-type.btn-border-blue {
  border: 1px solid #27334A;
  color: #27334A;
}
.btn-type.btn-border-blue:hover {
  background-color: #27334A;
  color: #ffffff;
}
.btn-type.btn-beige {
  border: 1px solid #CCBFB2;
  background-color: #CCBFB2;
  color: #27334A;
}
.btn-type.btn-beige:hover {
  background-color: #27334A;
  color: #ffffff;
}

.container {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1480px;
}
@media (max-width: 991px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.max-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

sub,
sup {
  font-size: 0.65em;
}

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

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

ul,
ol {
  padding-left: 1.3em;
}

ul li,
ol li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 144.444%;
  color: #062136;
}
.small {
  font-size: initial;
}

.embed-responsive {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
.embed-responsive iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.img-content.img-sm {
  padding-top: 58%;
}

.home-banner {
  position: relative;
  height: 860px;
  overflow: hidden;
}
@media (max-width: 1500px) {
  .home-banner {
    height: 700px;
  }
}
@media (max-width: 991px) {
  .home-banner {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .home-banner {
    height: 500px;
  }
}
.home-banner .bg-absolute {
  position: absolute;
  left: 0;
  top: 0;
  bottom: -10%;
  width: 100%;
  background-position: center;
}
.home-banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #CCBFB2;
  background: linear-gradient(90deg, rgb(204, 191, 178) 0%, rgba(204, 191, 178, 0.9) 17%, rgba(204, 191, 178, 0) 80%);
}
@media (max-width: 991px) {
  .home-banner:before {
    background: linear-gradient(90deg, rgb(204, 191, 178) 0%, rgba(204, 191, 178, 0.9) 30%, rgba(204, 191, 178, 0.5) 80%);
  }
}
.home-banner svg {
  z-index: 2;
  position: absolute;
  right: 0;
  top: -13%;
  font-size: 926px;
  width: 1em;
  height: 1.0712742981em;
  flex-shrink: 0;
}
@media (max-width: 1500px) {
  .home-banner svg {
    top: -20%;
    font-size: 854px;
    right: -10%;
  }
}
@media (max-width: 1200px) {
  .home-banner svg {
    top: -5%;
    font-size: 700px;
    right: -40%;
  }
}
@media (max-width: 991px) {
  .home-banner svg {
    display: none;
  }
}
.home-banner .btn-type:hover {
  color: #ffffff;
  background-color: #32415d;
}

.gallery-slider-section {
  padding: 132px 0 50px;
}
@media (max-width: 1200px) {
  .gallery-slider-section {
    padding: 100px 0 50px;
  }
}
@media (max-width: 991px) {
  .gallery-slider-section {
    padding: 60px 0 30px;
  }
}
.gallery-slider-section p {
  font-size: 18px;
  line-height: 133.333%;
}

.gallery-slider2 .swiper-slide,
.gallery-slider .swiper-slide {
  padding-top: 69%;
}
.gallery-slider2 .gallery-pagination2,
.gallery-slider .gallery-pagination {
  display: inline-block;
  color: #CCBFB2;
  font-weight: 600;
  width: auto;
  vertical-align: middle;
}
.gallery-slider2 .gallery-option2,
.gallery-slider .gallery-option {
  display: inline-block;
  width: 21px;
  height: 21px;
  margin-right: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/pause.svg);
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.gallery-slider2 .gallery-option2.play,
.gallery-slider .gallery-option.play {
  background-image: url(../images/play.svg);
}
.gallery-slider2 .gallery-nav,
.gallery-slider .gallery-nav {
  display: inline-block;
  width: 42px;
  height: 21px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/dark-arrow.svg);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.gallery-slider2 .gallery-nav.gallery-next2,
.gallery-slider .gallery-nav.gallery-next {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  margin-left: 13px;
}
.gallery-slider2 .gallery-nav.swiper-button-disabled,
.gallery-slider .gallery-nav.swiper-button-disabled {
  pointer-events: none;
  background-image: url(../images/warm-arrow.svg);
}

.four-list-section {
  padding: 50px 0 170px;
}
@media (max-width: 991px) {
  .four-list-section {
    padding: 50px 0 40px;
  }
}

.four-list h4 {
  padding-bottom: 19px;
  border-bottom: 1px solid #062136;
}

.side-collection-section {
  padding: 125px 0 130px;
}
@media (max-width: 991px) {
  .side-collection-section {
    padding: 50px 0 40px;
  }
}
.side-collection-section .content-area {
  max-width: 543px;
}

.double-image {
  height: 569px;
}
@media (max-width: 991px) {
  .double-image {
    height: 400px;
  }
  .side-collection-section .double-image {
    height:auto !important;
  };
}
.double-image .di-main-img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: inherit;
  width: 44.2%;
  margin-top: auto;
  margin-bottom: auto;
}
.double-image .di-main-img.no-sub-image {
  width: 50%;
}
@media (max-width: 991px) {
  .double-image .di-main-img {
    position: relative;
    width: 100%;
  }
  .side-collection-section .double-image .di-main-img {
    padding-top:100%;
  }
}
.double-image .di-main-img svg {
  position: absolute;
  right: -172px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1200px) {
  .double-image .di-main-img svg {
    width: 250px;
    right: -125px;
  }
}
@media (max-width: 991px) {
  .double-image .di-main-img svg {
    right: 30px;
    left: auto;
  }
}
@media (max-width: 767px) {
  .double-image .di-main-img svg {
    width: 180px;
    right: 25px;
  }
}
@media (max-width: 575px) {
  .double-image .di-main-img svg {
    display: none;
  }
}
.double-image.right-side .di-main-img {
  left: auto;
  right: 0;
}
.double-image.right-side .di-main-img svg {
  right: auto;
  left: -172px;
}
@media (max-width: 1200px) {
  .double-image.right-side .di-main-img svg {
    right: -25px;
    left: auto;
  }
}
@media (max-width: 991px) {
  .double-image.right-side .di-main-img svg {
    right: 20px;
  }
}

.contact-details .cd-item {
  font-weight: 300;
  font-size: 18px;
  position: relative;
  padding-left: 35px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .contact-details .cd-item {
    margin-left: 0;
    margin-right: auto;
    width: fit-content;
    margin-bottom: 7px;
  }
}
.contact-details .cd-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-details .cd-item.cd-phone:before {
  background-image: url(../images/phone.svg);
}
.contact-details .cd-item.cd-email:before {
  background-image: url(../images/email.svg);
}
.contact-details .cd-item.cd-time:before {
  background-image: url(../images/time.svg);
}
.contact-details .cd-item.cd-address:before {
  background-image: url(../images/pin.svg);
}
.contact-details .cd-item a {
  color: #ffffff;
}
.contact-details .cd-item a.colour-blue {
  color: #27334A;
}

footer .btn-type.btn-border-white {
  max-width: 288px;
  width: 100%;
  padding: 10px 30px;
}
footer .heading {
  font-size: 24px;
  line-height: 108.333%;
}
footer .copyright {
  font-size: 14px;
}
footer .copyright a {
  display: inline-block;
  color: #ffffff;
}
footer a:not(.btn-type):hover {
  color: #CCBFB2 !important;
}
footer .social-media a:hover img {
  filter: brightness(0) saturate(100%) invert(94%) sepia(13%) saturate(427%) hue-rotate(328deg) brightness(83%) contrast(92%);
}
@media (max-width: 767px) {
  footer .footer-logo {
    width: 150px;
  }
}
@media (max-width: 575px) {
  footer .container .row .btn-type {
    width: 100%;
    max-width: 100%;
  }
}

.menu-footer-menu-container {
  margin-top: 30px;
  margin-bottom: 10px;
}
.menu-footer-menu-container ul.menu {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}
@media (max-width: 767px) {
  .menu-footer-menu-container ul.menu {
    justify-content: start;
  }
}
.menu-footer-menu-container ul.menu li {
  display: inline-block;
  font-size: 14px;
}
.menu-footer-menu-container ul.menu li a {
  display: inline-block;
  color: #ffffff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 21px 25px;
  background-color: #ffffff;
  z-index: 9;
}
@media (max-width: 1200px) {
  header {
    padding: 15px 25px;
  }
}

.menu-main-menu-container #menu-main-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 75px;
}
@media (max-width: 1600px) {
  .menu-main-menu-container #menu-main-menu {
    gap: 35px;
  }
}
@media (max-width: 1360px) {
  .menu-main-menu-container #menu-main-menu {
    gap: 20px;
  }
}
.menu-main-menu-container #menu-main-menu li:not(.btn-menu) {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 1360px) {
  .menu-main-menu-container #menu-main-menu li:not(.btn-menu) {
    font-size: 14px;
  }
}
.menu-main-menu-container #menu-main-menu li:not(.btn-menu) a {
  display: inline-block;
  color: #27334A;
  letter-spacing: 0.05rem;
  position: relative;
}
.menu-main-menu-container #menu-main-menu li:not(.btn-menu) a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #CCBFB2;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-main-menu-container #menu-main-menu li:not(.btn-menu) a:hover:after {
  width: calc(100% - 10px);
}
.menu-main-menu-container #menu-main-menu li.current-menu-item:not(.btn-menu) a:after {
  width: calc(100% - 10px);
}
.menu-main-menu-container #menu-main-menu li.btn-menu a {
  display: inline-block;
  line-height: 100%;
  padding: 23px 33px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05rem;
  border-radius: 5px;
  text-align: center;
  background-color: #27334A;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-main-menu-container #menu-main-menu li.btn-menu a:hover {
  background-color: #CCBFB2;
  color: #27334A;
}

#smooth-content {
  padding-top: 104px;
  will-change: transform;
}
@media (max-width: 1200px) {
  #smooth-content {
    padding-top: 84px;
  }
}

.page-sub-banner {
  position: relative;
  height: 935px;
  overflow: hidden;
  background-color: rgba(204, 191, 178, 0.3);
  background-blend-mode: overlay;
}
@media (max-width: 1500px) {
  .page-sub-banner {
    height: 700px;
  }
}
@media (max-width: 991px) {
  .page-sub-banner {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .page-sub-banner {
    height: 500px;
  }
}
.page-sub-banner:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #CCBFB2;
  background: linear-gradient(90deg, rgb(204, 191, 178) 0%, rgba(204, 191, 178, 0.9) 17%, rgba(204, 191, 178, 0) 100%);
}

.tab-content-section {
  padding: 95px 0 110px;
}
@media (max-width: 991px) {
  .tab-content-section {
    padding: 50px 0;
  }
}
.tab-content-section .heading p {
  font-size: 18px;
}

.tab-content-list ul.nav {
  padding: 18px 50px;
  border-radius: 100px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.tab-content-list ul.nav li {
  position: relative;
  flex: 1 1 0px;
  text-align: center;
  font-size: 18px;
}
.tab-content-list ul.nav li a {
  color: #27334A;
  display: inline-block;
  padding: 10px 20px;
  max-width: 305px;
  width: 100%;
  border-radius: 50px;
}
.tab-content-list ul.nav li a.active {
  background-color: #F5F4F2;
  font-weight: 600;
}
.tab-content-list ul.nav li + li::before {
  content: "|";
  position: absolute;
  color: #CCBFB2;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  height: 25px;
}

.content-image-section {
  padding: 160px 0 140px;
}
@media (max-width: 991px) {
  .content-image-section {
    padding: 50px 0;
  }
}

.footer-cta-section {
  padding: 105px 0;
  background-color: rgba(204, 191, 178, 0.7);
  background-blend-mode: overlay;
  background-position: center 0%;
}
@media (max-width: 767px) {
  .footer-cta-section {
    padding: 80px 0;
  }
}
.footer-cta-section .inner {
  max-width: 900px;
  margin: auto;
  padding: 100px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
  .footer-cta-section .inner {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .footer-cta-section .inner {
    padding: 50px 30px;
  }
}

.contact-banner {
  padding: 120px 0 150px;
  position: relative;
}
@media (max-width: 767px) {
  .contact-banner {
    padding: 70px 0;
  }
}
.contact-banner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 11.5%;
  background-image: url(../images/fade.svg);
  font-size: 742px;
  width: 1em;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1500px) {
  .contact-banner:before {
    right: -6%;
  }
}
@media (max-width: 1300px) {
  .contact-banner:before {
    right: -15%;
  }
}
@media (max-width: 1200px) {
  .contact-banner:before {
    display: none;
  }
}
.contact-banner p {
  font-size: 18px;
}
.contact-banner .btn-type {
  padding: 10px 30px;
}
@media (max-width: 767px) {
  .contact-banner .contact-details .cd-item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-banner .contact-details .cd-item.cd-email {
    margin-bottom: 30px;
  }
}

.contact-section {
  padding: 110px 0;
}
@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }
}
.contact-section .gform-theme {
  padding-top: 1px;
}
.contact-section .map-container {
  height: 580px;
}
@media (max-width: 767px) {
  .contact-section .map-container {
    height: 350px;
    margin-top: 20px;
  }
}
.contact-section .map-container .img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: inherit;
  width: 40%;
}
@media (max-width: 1399px) {
  .contact-section .map-container .img {
    width: 50%;
    background-position: 40%;
  }
}
@media (max-width: 767px) {
  .contact-section .map-container .img {
    width: 100%;
    position: relative;
    background-position: center;
  }
}

.gform_wrapper.gform-theme .gform-body.gform_body .gform_fields {
  gap: 15px;
}
.gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield.mandatory-field {
  font-size: 12px;
  margin-top: 10px;
  color: rgb(143, 153, 159);
}
.gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield.gfield--type-submit {
  margin-top: 10px;
  justify-content: end;
}
.gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield.gfield--type-submit .gform-button {
  display: inline-block;
  line-height: 100%;
  padding: 23px 33px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05rem;
  border-radius: 5px;
  text-align: center;
  background-color: #99D2DE;
  color: #27334A;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield.gfield--type-submit .gform-button:hover {
  color: #ffffff;
  background-color: #27334A;
}
.gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield .ginput_container textarea, .gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield .ginput_container input:not([type=submit]) {
  border-radius: 0;
  box-shadow: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #CCBFB2;
  padding-left: 0;
  padding-right: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: 0;
}
.gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield .ginput_container textarea::placeholder, .gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield .ginput_container input:not([type=submit])::placeholder {
  color: rgb(143, 153, 159);
  opacity: 1;
}
.gform_wrapper.gform-theme .gform-body.gform_body .gform_fields .gfield .ginput_container textarea {
  min-block-size: 200px;
  max-height: 500px;
  max-block-size: 500px;
}

.page-misc-container {
  display: flex;
  align-items: center;
  min-height: 798px;
  position: relative;
}
@media (max-width: 767px) {
  .page-misc-container {
    min-height: 600px;
  }
}
.page-misc-container:before {
  content: "";
  position: absolute;
  top: 0;
  right: 11.5%;
  background-image: url(../images/fade.svg);
  font-size: 742px;
  width: 1em;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 1500px) {
  .page-misc-container:before {
    right: -5%;
  }
}
@media (max-width: 1200px) {
  .page-misc-container:before {
    right: -25%;
  }
}
@media (max-width: 991px) {
  .page-misc-container:before {
    opacity: 0.3;
  }
}
@media (max-width: 991px) {
  .page-misc-container:before {
    opacity: 0.1;
    right: -60%;
  }
}
.page-misc-container p {
  font-size: 18px;
}

.content-banner {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .content-banner {
    padding: 25px 0 50px;
  }
}

.package-section {
  padding: 90px 0 50px;
}
@media (max-width: 991px) {
  .package-section {
    padding: 60px 0 30px;
  }
}

.package-area .package-item {
  padding: 50px;
}
@media (max-width: 991px) {
  .package-area .package-item {
    padding: 40px 30px;
  }
}
.package-area .package-item .offer {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.07rem;
}
.package-area .package-item .label {
  font-family: "Vollkorn", serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.04rem;
  line-height: 85.714%;
  margin-bottom: 15px;
}
.package-area .package-item .inclusions {
  padding-top: 50px;
  margin-top: 50px;
  padding-left: 0;
  margin-bottom: 0;
  border-top: 1px solid #CCBFB2;
  display: flex;
  flex-direction: column;
  gap: 25px;
  list-style: none;
}
.package-area .package-item .inclusions li {
  position: relative;
  padding-left: 46px;
/*   font-weight: 300; */
}
.package-area .package-item .inclusions li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 21px;
  height: 16px;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/check.svg);
}

.image-carousel-section {
  padding: 50px 0 90px;
}
@media (max-width: 767px) {
  .image-carousel-section {
    padding: 30px 0 50px;
  }
}

.image-slider .swiper-slide {
  padding-top: 21%;
  cursor: grab;
}
@media (max-width: 1200px) {
  .image-slider .swiper-slide {
    padding-top: 30%;
  }
}
@media (max-width: 991px) {
  .image-slider .swiper-slide {
    padding-top: 40%;
  }
}
@media (max-width: 767px) {
  .image-slider .swiper-slide {
    padding-top: 50%;
  }
}

.item-list-section {
  padding: 115px 0;
}
@media (max-width: 1200px) {
  .item-list-section {
    padding: 60px 0 80px;
  }
}
@media (max-width: 991px) {
  .item-list-section {
    padding: 60px 0;
  }
}

.list-column {
  margin-left: -25px;
  margin-right: -25px;
}
.list-column > div {
  padding-left: 25px;
  padding-right: 25px;
}
.list-column .item {
  position: relative;
}
.list-column .item a {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
}
.list-column .item .img {
  padding-top: 79%;
  margin-bottom: 25px;
}
.list-column .item .img.bg-contain {
	background-size:contain;
}
.list-column .item h3 {
  position: relative;
  padding-right: 60px;
  margin-bottom: 25px;
}
.list-column .item h3:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 3px;
  margin: auto;
  width: 42px;
  height: 22px;
  background-image: url(../images/light-arrow.svg);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.list-column .item .detail {
  border-top: 1px solid #062136;
  padding-top: 30px;
  margin-top: 30px;
  font-weight: 700;
}
.list-column .item .detail span {
  color: #8F999F;
  display: inline-block;
  margin-left: 2px;
}
.list-column .item .detail .more {
  color: #8F999F;
}
.list-column .item .detail .more .more__list {
  position: relative;
}
.list-column .item .detail .more .more__list:before {
  content: "";
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 38px;
  height: 33px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.list-column .item .detail .more .more__list.more__list_car:before {
  background-image: url(../images/car.svg);
}
.list-column .item .detail .more .more__list.more__list_bath:before {
  background-image: url(../images/bath.svg);
}
.list-column .item .detail .more .more__list.more__list_bed:before {
  background-image: url(../images/bed.svg);
}
.list-column .item:hover h3:after {
  rotate: -30deg;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.list-column.two-column .item .img {
  padding-top: 51%;
  position: relative;
}
@media (max-width: 991px) {
  .list-column.two-column .item .img {
    padding-top: 60%;
  }
}
@media (max-width: 767px) {
  .list-column.two-column .item .img {
    padding-top: 70%;
  }
}
.list-column.two-column .item .img .house-land {
  position: absolute;
  top: 25px;
  left: 25px;
  display: flex;
  gap: 5px;
}
@media (max-width: 767px) {
  .list-column.two-column .item .img .house-land {
    flex-direction: column;
  }
}
.list-column.two-column .item .img .house-land > div {
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  padding: 12px 32px;
}
@media (max-width: 767px) {
  .list-column.two-column .item .img .house-land > div {
    padding: 8px 24px;
    font-size: 16px;
  }
}
.list-column.two-column .item .img .house-land > div.house-category {
  background-color: #99D2DE;
  color: #27334A;
}
.list-column.two-column .item .img .house-land > div.house-design {
  background-color: #27334A;
  color: #ffffff;
}
.list-column.two-column .item h3 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1250px) {
  .list-column.two-column .item h3 {
    flex-direction: column;
    gap: 5px;
  }
}
.list-column.two-column .item h3 .price {
  font-weight: normal;
  width: 50%;
  text-align: end;
}
@media (max-width: 1250px) {
  .list-column.two-column .item h3 .price {
    width: 100%;
    text-align: start;
  }
}
.list-column.two-column .item h3 .price .price-label {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  color: #8F999F;
  font-weight: normal;
  letter-spacing: 0.02rem;
  margin-right: 15px;
  line-height: 90%;
}

.house-style {
  position: relative;
  padding-left: 33px;
  font-size: 18px;
  font-weight: bold;
}
.house-style span {
  display: inline-block;
  border-bottom: 1px solid #27334A;
}
.house-style:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 16px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/house.svg);
}

.side-slideshow {
  height: 892px;
}
@media (max-width: 991px) {
  .side-slideshow {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .side-slideshow {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .side-slideshow {
    height: 300px;
  }
}
.side-slideshow .slidehow-area {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55.7%;
}
@media (max-width: 991px) {
  .side-slideshow .slidehow-area {
    position: relative;
    width: 100%;
  }
}
.side-slideshow .slidehow-area .gallery-slider {
  height: 100%;
}
.side-slideshow .slidehow-area .gallery-slider .gallery-control {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #27334A;
  color: #ffffff;
  z-index: 1;
  padding: 11.5px 0;
}
.side-slideshow .slidehow-area .gallery-slider .gallery-control .gallery-nav:not(.swiper-button-disabled), .side-slideshow .slidehow-area .gallery-slider .gallery-control .gallery-option {
  filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(454%) hue-rotate(190deg) brightness(118%) contrast(100%);
}
.side-slideshow .slidehow-area .gallery-slider .gallery-control .gallery-nav {
  margin-bottom: -5px;
}

.gallery-masonry-section {
  padding: 100px 0 90px;
}
@media (max-width: 991px) {
  .gallery-masonry-section {
    padding: 60px 0;
  }
}
.gallery-masonry-section .w-small {
  width: 33.3333333333%;
}
.gallery-masonry-section .w-medium {
  width: 66.6666666666%;
}
.gallery-masonry-section .w-large {
  width: 100%;
}
.gallery-masonry-section .img.h-small {
  height: 246px;
}
.gallery-masonry-section .img.h-medium {
  height: 287px;
}
.gallery-masonry-section .img.h-large {
  height: 509px;
}
.gallery-masonry-section .img.h-extra {
  height: 690px;
}
@media (max-width: 767px) {
  .gallery-masonry-section .img {
    height: 400px !important;
  }
}
@media (max-width: 575px) {
  .gallery-masonry-section .img {
    height: 300px !important;
  }
}

.walthrough-section {
  padding: 110px 0 120px;
}
@media (max-width: 991px) {
  .walthrough-section {
    padding: 60px 0;
  }
}

.project-form-section {
  padding: 200px 0 110px;
}
@media (max-width: 991px) {
  .project-form-section {
    padding: 60px 0 40px;
  }
}

.specification-section {
  border-bottom: 1px solid #CCBFB2;
}

@media (max-width: 575px) {
  .nav-spec-gallery li {
    width: 50%;
    flex: 1 1 0px;
  }
}
.nav-spec-gallery span {
  color: #CCBFB2;
}
.nav-spec-gallery a {
  position: relative;
  display: inline-block;
  color: #27334A;
  font-size: 18px;
  padding-left: 31px;
}
.nav-spec-gallery a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .nav-spec-gallery a:before {
    top: 5px;
  }
}
.nav-spec-gallery a.floor-tab:before {
  background-image: url(../images/expand.svg);
}
.nav-spec-gallery a.gallery-tab:before {
  background-image: url(../images/image.svg);
}
.nav-spec-gallery a.info-tab:before {
  background-image: url(../images/map-location-dot.svg);
  width: 18px;
}
.nav-spec-gallery a.info-tab {
  padding-left: 33px;
}
.nav-spec-gallery a.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background-color: #27334A;
}
@media (max-width: 575px) {
  .nav-spec-gallery a.active:after {
    bottom: -4px;
  }
}
.nav-spec-gallery a.active:before {
  filter: brightness(0) saturate(100%) invert(83%) sepia(13%) saturate(679%) hue-rotate(143deg) brightness(95%) contrast(90%);
}

.house-specification {
  color: #27334A;
}
.house-specification .more {
  border-top: 1px solid #062136;
  border-bottom: 1px solid #062136;
}
.house-specification .more .more-list {
  position: relative;
  font-weight: bold;
}
.house-specification .more .more-list:before {
  content: "";
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  width: 38px;
  height: 33px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(11%) saturate(2252%) hue-rotate(181deg) brightness(90%) contrast(89%);
}
.house-specification .more .more-list.more-list-car:before {
  background-image: url(../images/car.svg);
}
.house-specification .more .more-list.more-list-bath:before {
  background-image: url(../images/bath.svg);
}
.house-specification .more .more-list.more-list-bed:before {
  background-image: url(../images/bed.svg);
}
.house-specification .dimension-title {
  font-size: 21px;
}

.map-area {
  position: relative;
}
.map-area iframe {
  height: 605px;
  width: 100%;
}
@media (max-width: 575px) {
  .map-area iframe {
    height: 505px;
  }
}
.map-area:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url(../images/map-area.svg);
}

.accordion-area .accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #062136;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.accordion-area .accordion-item h3 a {
  display: block;
  color: #27334A;
  padding: 5px 30px 5px 0;
  position: relative;
}
.accordion-area .accordion-item h3 a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/dropdown.svg);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.accordion-area .accordion-item h3 a.collapsed:after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.sitemap-container {
  min-height: 70vh;
}
@media (max-width: 767px) {
  .sitemap-container {
    min-height: auto;
  }
}
.sitemap-container .page_item {
  margin-bottom: 5px;
}
.sitemap-container .page_item a {
  text-decoration: underline;
  color: #27334A;
}

.menu-trigger {
  width: 20px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-trigger span {
  background-color: #062136;
  height: 2px;
  width: 20px;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-trigger.triggered span:nth-of-type(1) {
  top: 6px;
  transform: rotate(45deg);
}
.menu-trigger.triggered span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.triggered span:nth-of-type(3) {
  top: -8px;
  transform: rotate(-45deg);
}

@media (max-width: 1200px) {
  .default-logo {
    width: 100px;
  }
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 20px 25px 30px;
  height: calc(100vh - 84px);
  display: none;
}
@media (min-width: 1200px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu .m-menu-container {
  height: 100%;
}
.mobile-menu .m-menu-container ul.menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile-menu .m-menu-container ul.menu li {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}
.mobile-menu .m-menu-container ul.menu li a {
  color: #27334A;
  display: inline-block;
}
.mobile-menu .m-menu-container ul.menu li.btn-menu a {
  margin-top: 20px;
  display: inline-block;
  line-height: 100%;
  padding: 23px 33px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05rem;
  border-radius: 5px;
  text-align: center;
  background-color: #27334A;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mobile-menu .m-menu-container ul.menu li.btn-menu a:hover {
  background-color: #CCBFB2;
  color: #27334A;
}

.filter-section {
  border-top: 1px solid #99D2DE;
  border-bottom: 1px solid #99D2DE;
  padding: 25px 0;
  position: relative;
  z-index: 1;
}
.filter-section .filter-label {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  padding-left: 31px;
}
.filter-section .filter-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 20px;
  background-image: url(../images/filter.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.filter-section .filter-area {
  display: flex;
  gap: 50px;
  justify-content: end;
}
@media (max-width: 767px) {
  .filter-section .filter-area {
    display: none;
  }
}
.filter-section .filter-area .filter-item {
  font-size: 18px;
  position: relative;
}
@media (max-width: 767px) {
  .filter-section .filter-area .filter-item {
    width: 100%;
  }
}
.filter-section .filter-area .filter-item .lbl {
  cursor: pointer;
  padding-right: 31px;
  padding-left: 33px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .filter-section .filter-area .filter-item .lbl {
    display: none;
  }
}
.filter-section .filter-area .filter-item .lbl span {
  text-transform: lowercase;
}
.filter-section .filter-area .filter-item:after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 16px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/dropdown.svg);
  filter: brightness(0) saturate(100%) invert(75%) sepia(17%) saturate(525%) hue-rotate(143deg) brightness(104%) contrast(91%);
}
.filter-section .filter-area .filter-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.filter-section .filter-area .filter-item.storey:before {
  width: 18px;
  height: 24px;
  background-image: url(../images/stairs.svg);
}
.filter-section .filter-area .filter-item.land:before {
  width: 16px;
  height: 24px;
  background-image: url(../images/expand.svg);
}
.filter-section .filter-area .filter-item.front:before {
  width: 18px;
  height: 24px;
  background-image: url(../images/house-solid.svg);
}
.filter-section .filter-area .filter-choices {
  position: absolute;
  top: calc(100% + 5px);
  border: 1px solid #99D2DE;
  border-radius: 5px;
  width: 200px;
  background-color: #ffffff;
  display: none;
}
.filter-section .filter-area .filter-choices .choice {
  padding: 5px 15px;
  cursor: pointer;
}
.filter-section .filter-area .filter-choices .choice:hover {
  background-color: #99D2DE;
}
.filter-section .filter-area .filter-choices .choice.active {
  pointer-events: none;
  background-color: #99D2DE;
}

.dropdown-filter-area {
  display: none;
}
@media (max-width: 767px) {
  .dropdown-filter-area {
    display: flex;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .dropdown-filter-area {
    flex-direction: column;
  }
}
.dropdown-filter-area .filter-item {
  flex: 1 1 0px;
}
.dropdown-filter-area .dropdown-choices {
  padding: 5px 30px 5px 30px;
  background-size: 18px;
  border: 1px solid #27334A;
  border-radius: 5px;
  width: 100%;
  background-position: 5px center;
  background-repeat: no-repeat;
}
.dropdown-filter-area .dropdown-choices#storey-choice {
  background-image: url(../images/stairs.svg);
}
.dropdown-filter-area .dropdown-choices#land-choice {
  background-image: url(../images/expand.svg);
}
.dropdown-filter-area .dropdown-choices#frontage-choice {
  background-image: url(../images/house-solid.svg);
}
