/* 
* { background-color: rgba(255,0,0,.2); }
* * { background-color: rgba(0,255,0,.2); }
* * * { background-color: rgba(0,0,255,.2); }
* * * * { background-color: rgba(255,0,255,.2); }
* * * * * { background-color: rgba(0,255,255,.2); }
* * * * * * { background-color: rgba(255,255,0,.2); }
* * * * * * * { background-color: rgba(255,0,0,.2); }
* * * * * * * * { background-color: rgba(0,255,0,.2); }
* * * * * * * * * { background-color: rgba(0,0,255,.2); }

*/
/**
 * Set up a decent box model on the root element
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scrollbar-gutter: stable;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: #000000;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #45194f;
  text-decoration: underline;
}

/* Sticky Footer */
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  overflow-x: hidden;
  margin-top: 125px;
}
@media (min-width: 576px) {
  main {
    margin-top: 135px;
  }
}
@media (min-width: 768px) {
  main {
    margin-top: 125px;
  }
}
@media (min-width: 1200px) {
  main {
    margin-top: 145px;
  }
}

.container-fluid {
  max-width: 1840px;
  padding: 0 20px !important;
}
@media (min-width: 992px) {
  .container-fluid {
    padding: 0 40px !important;
  }
}

.container-fluid-narrow {
  max-width: 1480px !important;
}

.site-header-image {
  display: block;
  margin: auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
}

/* Max img widths */
img,
.size-large,
.size-medium,
.size-thumbnail .size-auto {
  max-width: 100%;
  height: auto;
}

.full-width {
  width: 100%;
  height: auto;
}

/* Hide form placeholders on focus */
input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
} /* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent;
} /* FF 19+ */
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder {
  color: transparent;
} /* FF 4-18 */
textarea:focus::-moz-placeholder {
  color: transparent;
} /* FF 19+ */
.purple-text {
  color: rgb(65, 25, 79) !important;
}

.grey-text {
  color: rgb(128, 124, 122) !important;
}

.block-dark {
  background-color: #e9e9e9;
}

.bg-grey {
  background-color: #F6F5F3;
}

.half-container-left-large,
.half-container-left,
.half-container-right {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  text-align: center;
}

@media (min-width: 992px) {
  .half-container-left,
  .half-container-left-large {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    padding: 0 90px 0 40px;
    text-align: left;
  }
  .half-container-right {
    width: 100%;
    max-width: 570px;
    margin-right: auto;
    padding: 0 40px 0 90px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .half-container-left {
    max-width: 670px;
    padding: 0 90px 0 140px;
  }
  .half-container-left-large {
    max-width: 880px;
    padding: 0 90px 0 100px;
  }
}
.wp-block-column:not(:only-child) {
  -ms-flex-preferred-size: auto !important;
      flex-basis: auto !important;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

@media (min-width: 600px) and (max-width: 781px) {
  .wp-block-column:nth-child(2n) {
    margin-left: 2em;
  }
  .col-12.wp-block-column:not(:only-child) {
    -ms-flex-preferred-size: auto !important;
        flex-basis: auto !important;
  }
}
.background-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/**
 * Basic typography style for copy text
 */
body {
  font-family: "Lato", sans-serif;
  font-weight: 300;
}

.primary-font {
  font-family: "Lato", sans-serif !important;
  font-weight: 300;
}

.primary-font-bold {
  font-family: "Lato", sans-serif !important;
  font-weight: 700;
}

h1, h2, h3, h4, h5 {
  font-weight: 300;
  margin-bottom: 20px;
}

h1 {
  font-size: 32px;
  line-height: 36px;
}

h2 {
  font-size: 26px;
  line-height: 32px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
}

h4 {
  font-size: 19px;
  line-height: 27px;
}

h5 {
  font-size: 12px;
  line-height: 14px;
}

h6 {
  font-size: 10px;
  line-height: 12px;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
}

.spaced-out {
  letter-spacing: 1px;
}

.text-size-xlarge {
  font-size: 22px !important;
  line-height: 28px;
}

.text-size-large {
  font-size: 16px !important;
  line-height: 20px;
}

.text-size-medium {
  font-size: 16px !important;
  line-height: 20px;
}

.text-size-small {
  font-size: 14px !important;
  line-height: 20px;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 38px;
    line-height: 46px;
  }
  h2 {
    font-size: 34px;
    line-height: 44px;
  }
  h3 {
    font-size: 24px;
    line-height: 36px;
  }
  h4 {
    font-size: 19px;
    line-height: 27px;
  }
  h5 {
    font-size: 12px;
    line-height: 14px;
  }
  h6 {
    font-size: 10px;
    line-height: 12px;
  }
  p {
    font-size: 18px;
    line-height: 26px;
  }
  .text-size-xlarge {
    font-size: 24px !important;
    line-height: 30px;
  }
  .text-size-large {
    font-size: 20px !important;
    line-height: 24px;
  }
}
li {
  font-size: 19px;
  line-height: 27px;
  margin-bottom: 20px;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: 900 !important;
}

.overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html,
body {
  -webkit-overflow-scrolling: touch;
}

html.menu-active,
body.menu-active {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.body_temp {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  opacity: 0.5;
  cursor: pointer;
}

.head-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0px 1fr 0px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  width: 100%;
  max-width: 1840px;
  margin: 0 auto;
}

.head-container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.head-container > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.head-container > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.head-container .brand {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: 1/1/2/4;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-grid-row-align: center;
      align-self: center;
}
.head-container .left-column {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  -ms-grid-column-align: start;
      justify-self: start;
  -ms-grid-row-align: center;
      align-self: center;
  padding: 0 20px;
}
.head-container .right-column {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 1/3/2/4;
  -ms-grid-column-align: end;
      justify-self: end;
  -ms-grid-row-align: center;
      align-self: center;
  padding: 0 20px;
}
.head-container .btn-header {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 27px;
  padding: 10PX 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.head-container .btn-header:hover {
  color: #fff;
  background-color: #4E124F;
  text-decoration: none;
}

.navbar-brand {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: inline-block;
  padding: 0;
  margin: 0 30px 0 0;
  color: transparent;
  font-size: 0;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
@media (min-width: 576px) {
  .navbar-brand {
    max-width: 180px;
  }
}
.navbar-brand svg {
  width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .navbar-collapse {
    max-width: 850px;
    margin-left: auto;
  }
}

.navbar {
  padding: 20px 0;
  background-color: #fff;
  -webkit-transition: padding 0.25s linear;
  transition: padding 0.25s linear;
}
@media (min-width: 576px) {
  .navbar {
    padding: 25px 0 25px;
  }
}

.navbar.docked {
  padding: 10px 0;
}
@media (min-width: 576px) {
  .navbar.docked .navbar-brand {
    max-width: 150px;
  }
}

.offcanvas-collapse {
  position: fixed;
  top: 0;
  /* Height of navbar */
  z-index: 999;
  bottom: -10px;
  left: 100%;
  width: 100%;
  padding: 0;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  background-color: #f2f2f2;
  -webkit-transition: visibility 0.5s ease-in-out, -webkit-transform 0.5s cubic-bezier(0, 0, 0.03, 1);
  transition: visibility 0.5s ease-in-out, -webkit-transform 0.5s cubic-bezier(0, 0, 0.03, 1);
  transition: transform 0.5s cubic-bezier(0, 0, 0.03, 1), visibility 0.5s ease-in-out;
  transition: transform 0.5s cubic-bezier(0, 0, 0.03, 1), visibility 0.5s ease-in-out, -webkit-transform 0.5s cubic-bezier(0, 0, 0.03, 1);
}

.offcanvas-collapse.open {
  visibility: visible;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
@media (min-width: 576px) {
  .offcanvas-collapse.open {
    -webkit-transform: translateX(-55%);
            transform: translateX(-55%);
  }
}

.offcanvas-collapse #accordionMenu,
.offcanvas-collapse .navbar-nav {
  margin: 0;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.03, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.03, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0.03, 1);
  transition: transform 0.4s cubic-bezier(0, 0, 0.03, 1), -webkit-transform 0.4s cubic-bezier(0, 0, 0.03, 1);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.offcanvas-collapse.open #accordionMenu,
.offcanvas-collapse.open .navbar-nav {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.navbar-collapse {
  z-index: 1000;
}

.navbar-toggler {
  z-index: 1001;
}

.navbar.open {
  z-index: 1001;
}

.mobile-property-search {
  margin-top: 50px;
}

.property-search-item a span {
  position: relative;
  padding-left: 24px;
}
.property-search-item a span:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 24px;
  background: url("../img/sprites.svg") -218px -88px no-repeat;
  position: absolute;
  top: -2px;
  left: 0;
}
#menu-mobile .property-search-item, #menu-menu .property-search-item {
  display: block;
}

#menu-register {
  display: block;
  margin-top: 20px;
}
#menu-register li,
#menu-register .nav-link {
  margin-bottom: 0;
}
#menu-register .nav-link {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: #45194f;
}
#menu-register .nav-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #45184f;
}

#accordionMenu .nav-link {
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #45194F;
}
#accordionMenu .mobile-sub-heading {
  margin: 0;
}
#accordionMenu .sub-menu {
  margin-bottom: 30px;
}
#accordionMenu .sub-menu > .menu-item {
  margin: 0;
  padding: 0;
}
#accordionMenu .sub-menu > .menu-item .nav-link {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  line-height: 1.5rem;
  padding: 10px 20px 10px 30px;
}
#accordionMenu .sub-menu > .menu-item .nav-link.active, #accordionMenu .sub-menu > .menu-item .nav-link:hover, #accordionMenu .sub-menu > .menu-item .nav-link:focus {
  color: #fff;
  text-decoration: none;
  background-color: #45184f;
}
#accordionMenu .mobile-sub-heading > a.nav-link {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  color: #45194f;
  font-weight: 700 !important;
  text-transform: uppercase;
}
#accordionMenu .mobile-sub-heading > a.nav-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #45184f;
}
#accordionMenu .mobile-sub-heading:not(.menu-item-has-children) > a.nav-link.active {
  color: #fff;
  text-decoration: none;
  background-color: #45184f;
}

/* Hamburger */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:focus {
  outline: none;
}
.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 30px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 1px;
  background-color: #51164d;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 0.5px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 9px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 18px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
          transform: translate3d(0, 9px, 0) rotate(45deg);
  background-color: #51164d;
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 9px, 0) rotate(-45deg);
          transform: translate3d(0, 9px, 0) rotate(-45deg);
  background-color: #51164d;
}

.wp-block-columns,
.wp-block-column {
  margin: 0;
}

.wp-block-column:nth-child(2n) {
  margin-left: 0;
}

@media (min-width: 782px) {
  .wp-block-columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.wp-block-image {
  margin-bottom: 0;
}

.wp-block-image.size-full img {
  width: 100%;
}

.ugb-container {
  max-width: 50%;
  margin-left: 25%;
}

.wp-block-image .aligncenter, .wp-block-image .alignleft, .wp-block-image .alignright {
  display: block;
}

.intro-block .intro-image-block {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .intro-block .intro-image-block:before {
    content: "";
    display: block;
    padding-top: 60%;
  }
}
.intro-block .intro-text-block {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .intro-block .intro-text-block {
    padding: 100px 0;
  }
}
.home .intro-block .intro-text-block {
  padding: 50px 0;
}
@media (min-width: 768px) {
  .home .intro-block .intro-text-block {
    padding: 50px 0;
  }
}

.links-block {
  width: 100%;
  float: left;
}
@media (min-width: 768px) {
  .links-block {
    width: 185px;
    margin-left: -185px;
  }
}
@media (min-width: 992px) {
  .links-block {
    width: 250px;
    margin-left: -250px;
  }
}

.followicons {
  width: 100%;
  float: left;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .followicons {
    margin-bottom: 20px;
    text-align: left;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .followicons {
    padding-right: 40px;
  }
}

.btn-footer-social {
  display: inline-block;
  margin-right: 5px;
  width: 35px;
  height: 35px;
}
@media (min-width: 768px) {
  .btn-footer-social {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 992px) {
  .btn-footer-social {
    width: 35px;
    height: 35px;
  }
}

svg:not(:root).svg-inline--fa {
  overflow: visible;
}

.svg-inline--fa.fa-w-9 {
  width: 0.5625em;
}

svg:not(:root) {
  overflow: hidden;
}

.svg-inline--fa {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}

svg:not(:root), symbol, image, marker, pattern, foreignObject {
  overflow: hidden;
}

@media (min-width: 768px) {
  .wp-block-columns.has-3-columns,
  .wp-block-columns.has-2-columns {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .wp-block-column {
    padding: 10px;
  }
  .wp-block-column:nth-child(2n) {
    margin-left: 0;
  }
  .wp-block-column:not(:first-child) {
    margin-left: 0;
  }
  .blog-posts .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.page-template-page-fullwidth .wp-block-media-text.intro-block {
  margin-left: 0;
  margin-right: -8%;
}
.page-template-page-fullwidth .wp-block-media-text.intro-block .wp-block-media-text__content {
  margin-top: 1.875rem !important;
  padding: 0;
}

p.team-email,
p.team-phone {
  font-size: 16px;
  line-height: 23px;
}

.featured-search .featured-property {
  overflow: hidden;
}
.featured-search .featured-property .inner:before {
  content: "";
  display: block;
  padding-top: 50%;
  min-height: 200px;
  overflow: hidden;
}
.featured-search .featured-property img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 100%;
}
.featured-search .featured-property .property-details {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background-color: #e9e9e9;
  padding: 10px 10px 15px;
  color: #000;
  text-align: left;
  font-size: 18px;
  line-height: 22px;
  font-family: "Playfair Display";
}
@media (min-width: 380px) {
  .featured-search .featured-property .property-details {
    padding: 8px 25px 15px 10px;
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 768px) {
  .featured-search .featured-property .property-details {
    left: 10px;
    right: 9px;
  }
}
@media (min-width: 1200px) {
  .featured-search .featured-property .property-details {
    font-size: 22px;
    line-height: 28px;
  }
}
.featured-search .featured-property .property-details:after {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background: url("../img/sprites.svg") -350px -90px no-repeat;
  position: absolute;
  right: 10px;
  bottom: 15px;
}
@media (min-width: 380px) {
  .featured-search .featured-property .property-details:after {
    bottom: 17px;
  }
}

.featured-property .inner:before {
  content: "";
  display: block;
  padding-top: 88%;
  overflow: hidden;
}
.featured-property img {
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  display: block;
  width: 100%;
}
.featured-property .property-details {
  padding: 8px 0;
  color: #000;
  text-align: left;
  font-size: 18px;
  line-height: 26px;
}

.featured-feature .inner {
  height: 100%;
  overflow: hidden;
  background-color: #e4e4e3;
}
@media (min-width: 992px) {
  .featured-feature .inner a {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }
}

.testimonials-block p {
  font-style: normal;
  font-weight: normal;
  font-size: 19px;
  line-height: 27px;
  color: #432C4C;
  padding: 0 0 20px 50px;
}
@media (min-width: 768px) {
  .testimonials-block p {
    padding: 0 0 20px 70px;
  }
}
.testimonials-block p:before {
  content: "";
  width: 37px;
  height: 31px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='47' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M24.868 24.316C24.868 32.95 28.027 40 37.366 40a9.537 9.537 0 006.68-2.684A9.727 9.727 0 0047 30.698c0-4.177-2.588-9.786-10.638-9.786h-5.176c.58-8.056 8.05-15.684 15.657-19.424L46.18 0C37.8 3.72 24.868 11.367 24.868 24.316zM0 24.316C0 32.95 3.16 40 12.498 40a9.436 9.436 0 006.701-2.658 9.626 9.626 0 002.924-6.644c0-4.177-2.44-9.786-10.629-9.786H6.466c.432-8.056 8.04-15.684 15.657-19.424L21.313 0C13.023 3.72.046 11.367.046 24.316' fill='%23432C4C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h47v40H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center center no-repeat;
  position: absolute;
  left: 0;
  top: 5px;
  background-size: cover;
}
@media (min-width: 768px) {
  .testimonials-block p:before {
    width: 47px;
    height: 40px;
  }
}
.testimonials-block cite {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-top: 30px;
  font-style: normal;
}

.collapse-panel .collapse-title {
  display: block;
  border-top: 1px solid #000;
  padding: 15px 0 15px;
  text-decoration: none !important;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 36px;
  color: #000000;
}

.collapse-panel a:hover {
  text-decoration: none;
}

[data-toggle=collapse] .fa {
  padding-top: 10px;
}

[data-toggle=collapse] .fa:before {
  content: "";
  display: block;
  width: 17px;
  height: 10px;
  overflow: hidden;
  background-image: url("../img/sprites.svg");
  background-repeat: no-repeat;
  background-position: 0 -125px;
}

[data-toggle=collapse].collapsed .fa:before {
  content: "";
  background-position: 0 -105px;
}

.collapse-testimonial {
  position: relative;
  width: 100%;
  padding: 0 0 20px 50px;
  border-left: none;
  font-weight: 400;
  font-size: 1rem;
  line-height: 20px;
  color: #000000;
  border-left: none !important;
}
@media (min-width: 768px) {
  .collapse-testimonial {
    padding: 0 0 20px 70px;
  }
}
.collapse-testimonial p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .collapse-testimonial p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
.collapse-testimonial:before {
  content: "";
  width: 37px;
  height: 31px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='47' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M24.868 24.316C24.868 32.95 28.027 40 37.366 40a9.537 9.537 0 006.68-2.684A9.727 9.727 0 0047 30.698c0-4.177-2.588-9.786-10.638-9.786h-5.176c.58-8.056 8.05-15.684 15.657-19.424L46.18 0C37.8 3.72 24.868 11.367 24.868 24.316zM0 24.316C0 32.95 3.16 40 12.498 40a9.436 9.436 0 006.701-2.658 9.626 9.626 0 002.924-6.644c0-4.177-2.44-9.786-10.629-9.786H6.466c.432-8.056 8.04-15.684 15.657-19.424L21.313 0C13.023 3.72.046 11.367.046 24.316' fill='%23432C4C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h47v40H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center center no-repeat;
  position: absolute;
  left: 0;
  top: 5px;
  background-size: cover;
}
@media (min-width: 768px) {
  .collapse-testimonial:before {
    width: 47px;
    height: 40px;
  }
}
.collapse-testimonial cite {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

.carousel-cell {
  width: 100%;
}
@media (min-width: 768px) {
  .carousel-cell {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .carousel-cell {
    width: 33.33333%;
  }
}

/* position dots up a bit */
.flickity-page-dots {
  bottom: -22px;
}

/* dots are lines */
.flickity-page-dots .dot {
  height: 4px;
  width: 40px;
  margin: 0;
  border-radius: 0;
}

.blog-item .blog-img {
  position: relative;
  overflow: hidden;
}
.blog-item .blog-img:before {
  content: "";
  display: block;
  overflow: hidden;
  padding: 0 0 60%;
}
.blog-item .blog-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
}
.blog-item .blog-title {
  padding: 20px 0;
}
.blog-item .blog-title p {
  font-size: 19px;
  line-height: 26px;
}
.blog-item .blog-meta {
  border-bottom: 1px solid #7e7c79;
  font-size: 19px;
  line-height: 1;
  padding-bottom: 10px;
}
.blog-item .blog-meta .blog-read-more {
  display: block;
  margin-bottom: 0;
  font-weight: 400;
  padding: 0;
}

.current {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #fff;
  background-color: #45194f;
  border: 1px solid #dee2e6;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.at-share-btn-elements .at-icon-wrapper {
  background-color: #41194f !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  height: 35px !important;
  width: 35px !important;
  line-height: normal !important;
}

.at-share-btn-elements .at-icon {
  height: 25px !important;
  width: 25px !important;
}

.post-author {
  font-size: 12px;
  font-weight: 700;
  color: #45194f;
  display: block;
  margin-bottom: 20px;
}

.post-date {
  display: block;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 20px;
}

.post .wp-block-image, .post img {
  width: 100%;
  margin-bottom: 20px;
}
.post blockquote {
  position: relative;
  width: 100%;
  border-left: none;
  font-weight: 400;
  font-size: 1rem;
  line-height: 20px;
  color: #45194f;
  padding: 30px 0 20px 50px;
  border-top: 1px solid #8f98a1;
  border-bottom: 1px solid #8f98a1;
  margin: 30px 0;
}
@media (min-width: 768px) {
  .post blockquote {
    padding: 30px 0 20px 70px;
  }
}
.post blockquote p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .post blockquote p {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
.post blockquote:before {
  content: "";
  width: 37px;
  height: 31px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='47' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M24.868 24.316C24.868 32.95 28.027 40 37.366 40a9.537 9.537 0 006.68-2.684A9.727 9.727 0 0047 30.698c0-4.177-2.588-9.786-10.638-9.786h-5.176c.58-8.056 8.05-15.684 15.657-19.424L46.18 0C37.8 3.72 24.868 11.367 24.868 24.316zM0 24.316C0 32.95 3.16 40 12.498 40a9.436 9.436 0 006.701-2.658 9.626 9.626 0 002.924-6.644c0-4.177-2.44-9.786-10.629-9.786H6.466c.432-8.056 8.04-15.684 15.657-19.424L21.313 0C13.023 3.72.046 11.367.046 24.316' fill='%23432C4C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h47v40H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center center no-repeat;
  position: absolute;
  left: 0;
  top: 20px;
  background-size: cover;
}
@media (min-width: 768px) {
  .post blockquote:before {
    width: 47px;
    height: 40px;
  }
}
.post blockquote cite {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

#formInline {
  margin-top: 80px;
}
#formInline .form-content {
  border: none;
}
#formInline .form-dialog {
  max-width: 850px;
  background-color: #e9e9e9;
  padding: 10px 30px 30px;
}
#formInline .form-header {
  position: relative;
  display: block;
  padding: 30px 30px 10px;
  border-bottom: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: #e9e9e9;
  color: #000;
  text-align: center;
}
#formInline .form-header a {
  color: #fff;
  text-decoration: underline;
  white-space: nowrap;
}
#formInline .form-header p {
  max-width: 600px;
  margin: 0 auto;
}
#formInline .form-body .form-control {
  border: none;
  border-radius: 0;
  font-style: normal;
  font-weight: 300;
  color: #000000;
  height: auto;
  padding: 10px;
}
#formInline .form-body small {
  color: #a9a8a6;
  font-size: 10px;
}
#formInline .form-body select.wpcf7-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: url(../img/drop-arrow.svg), -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: url(../img/drop-arrow.svg), linear-gradient(to bottom, #fff 0%, #fff 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 10px center;
  padding: 10px 35px 10px 10px;
}
#formInline .form-body textarea.wpcf7-textarea {
  padding: 15px 10px 20px;
}
#formInline .frm_full {
  width: 100% !important;
  display: inline-block;
  margin-bottom: 20px !important;
}
#formInline .frm_forms input[type=text], #formInline .frm_forms textarea {
  font: 16px "Lato" !important;
  border: 0px solid #FFFFFF !important;
  width: 100% !important;
  margin: 0 auto !important;
}
#formInline .frm_first .frm_error, #formInline .frm_none_container .frm_error, #formInline #frm_field_117_container {
  margin-left: 0 !important;
}

.wpcf7 .ajax-loader {
  display: none !important;
}

#loginform label {
  font-size: 14px;
  margin: 0;
}
#loginform input[type=text],
#loginform input[type=password] {
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  font-family: "Lato", sans-serif !important;
  text-align: left;
  padding: 10px 20px;
  color: #45194F;
  border: 1px solid #4E124F;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #F6F5F3;
  border-radius: 0;
}

@media (min-width: 768px) {
  .gutters-30 {
    margin-left: -30px !important;
    margin-right: -30px !important;
  }
  .gutters-20 {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
  .gutters-15 {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
  .gutters-10 {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  .gutters-5 {
    margin-left: -5px !important;
    margin-right: -5px !important;
  }
}
.breadcrumb,
.breadcrumb a {
  color: #45194f !important;
  font-size: 0.875rem !important;
  line-height: 1rem;
  margin: 20px 0 10px;
}

article.content-page a {
  color: #4fb29e;
  text-decoration: none;
}

.wp-block-image.pushleft figure, .wp-block-image.pushright figure, .wp-block-image.pushboth figure {
  margin: 20px 0;
}
@media (min-width: 768px) {
  .wp-block-image.pushleft, .wp-block-image.pushright {
    float: left;
  }
  .wp-block-image.pushboth figure, .wp-block-image.pushleft figure, .wp-block-image.pushright figure {
    margin: 20px 0;
  }
}
@media (min-width: 992px) {
  .wp-block-image.pushboth figure {
    margin: 50px -50%;
  }
  .wp-block-image.pushleft figure {
    margin-left: -50%;
  }
  .wp-block-image.pushright figure {
    margin-right: -50%;
  }
}
.wp-block-image figure.size-large, .wp-block-image figure.full-size {
  max-width: none;
}
.wp-block-image.treatsright {
  display: none;
}
@media (min-width: 768px) {
  .wp-block-image.treatsright {
    width: 100%;
    display: inline-block;
    float: right;
    margin-right: -100%;
  }
}
.wp-block-image.treatsleft {
  display: none;
}
@media (min-width: 768px) {
  .wp-block-image.treatsleft {
    width: 100%;
    display: inline-block;
    float: left;
    margin-left: -100%;
  }
}
.wp-block-image.treatsleft img {
  float: right;
}

.wp-block-group.pushright {
  position: relative;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .wp-block-group.pushright {
    width: 45%;
    float: right;
    clear: both;
    margin: 20px -50% 40px 10px;
  }
}
.wp-block-group.pushleft {
  position: relative;
  margin: 20px 0;
}
@media (min-width: 992px) {
  .wp-block-group.pushleft {
    width: 45%;
    float: left;
    clear: both;
    margin: 20px 10px 40px -50%;
  }
}
.wp-block-group.pushleft blockquote, .wp-block-group.pushright blockquote {
  width: auto;
  margin: 40px 0;
  padding: 30px 0 20px 50px;
  border-top: 1px solid #8f98a1 !important;
}
@media (min-width: 768px) {
  .wp-block-group.pushleft blockquote, .wp-block-group.pushright blockquote {
    margin: 0;
    padding: 30px 0 20px 70px;
  }
}
@media (min-width: 992px) {
  .wp-block-group.pushleft blockquote, .wp-block-group.pushright blockquote {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.wp-block-group.pushleft blockquote:before, .wp-block-group.pushright blockquote:before {
  top: 15px;
}

.wp-block-group .wp-block-quote {
  position: relative;
  width: 100%;
  padding: 0 0 20px 50px;
  border-left: none;
  font-weight: 400;
  font-size: 1rem;
  line-height: 20px;
  color: #000000;
  border-left: none !important;
}
@media (min-width: 768px) {
  .wp-block-group .wp-block-quote {
    padding: 0 0 20px 70px;
  }
}
.wp-block-group .wp-block-quote p {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .wp-block-group .wp-block-quote p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 30px;
  }
}
.wp-block-group .wp-block-quote:before {
  content: "";
  width: 37px;
  height: 31px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='47' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M24.868 24.316C24.868 32.95 28.027 40 37.366 40a9.537 9.537 0 006.68-2.684A9.727 9.727 0 0047 30.698c0-4.177-2.588-9.786-10.638-9.786h-5.176c.58-8.056 8.05-15.684 15.657-19.424L46.18 0C37.8 3.72 24.868 11.367 24.868 24.316zM0 24.316C0 32.95 3.16 40 12.498 40a9.436 9.436 0 006.701-2.658 9.626 9.626 0 002.924-6.644c0-4.177-2.44-9.786-10.629-9.786H6.466c.432-8.056 8.04-15.684 15.657-19.424L21.313 0C13.023 3.72.046 11.367.046 24.316' fill='%23432C4C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h47v40H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center center no-repeat;
  position: absolute;
  left: 0;
  top: 5px;
  background-size: cover;
}
@media (min-width: 768px) {
  .wp-block-group .wp-block-quote:before {
    width: 47px;
    height: 40px;
  }
}
.wp-block-group .wp-block-quote.border-top {
  padding-top: 30px;
  border-top: 1px solid #8f98a1 !important;
}
.wp-block-group .wp-block-quote.border-top:before {
  top: 15px;
}
.wp-block-group .wp-block-quote cite {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

p.pushright {
  clear: both;
  display: inline-block;
  width: 40%;
  float: right;
  margin: 10px -50% 10px 10px;
  padding-left: 5px;
  font-size: 12px;
  line-height: 16px;
}
p.pushleft {
  clear: both;
  display: inline-block;
  width: 40%;
  float: left;
  margin: 10px 10px 10px -50%;
  padding-left: 30px;
  font-size: 12px;
  line-height: 16px;
}

article .wp-block-separator {
  margin: 10px auto;
  max-width: none !important;
  background-color: #000;
  border-bottom-width: 1px;
}
@media (min-width: 768px) {
  article .wp-block-separator.pushboth {
    margin-right: -50%;
    margin-left: -50%;
    clear: both;
  }
  article .wp-block-separator.pushleft {
    margin-left: -50%;
    clear: left;
  }
  article .wp-block-separator.pushright {
    margin-right: -50%;
    clear: right;
  }
}

.button-container-grid {
  max-width: 600px;
  margin: 40px auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 20px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px 20px;
      grid-template-areas: "one two" "three three";
}
.button-container-grid .one {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: one;
}
.button-container-grid .two {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: two;
}
.button-container-grid .three {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: three;
}
.button-container-grid .btn-outline {
  width: 100%;
  display: block;
}
.intro-block .button-container-grid {
  max-width: 330px;
}
@media (min-width: 768px) {
  .intro-block .button-container-grid {
    margin: 35px auto 0;
  }
}
@media (min-width: 992px) {
  .intro-block .button-container-grid {
    margin: 35px 0 0;
  }
}

.button-container {
  max-width: 330px;
  margin: 40px auto;
}
@media (min-width: 992px) {
  .button-container {
    margin: 40px 0 0;
  }
}

.button-footer {
  margin: 20px 0 40px;
}
@media (min-width: 576px) {
  .button-footer {
    max-width: 70%;
  }
}
@media (min-width: 992px) {
  .button-footer {
    max-width: none;
  }
  .button-footer .wp-block-group__inner-container {
    margin: 20px 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.layout-grid img {
  max-width: none !important;
  width: 100%;
}

@media (min-width: 768px) {
  .layout-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto 30px auto 30px 1fr;
    grid-template-rows: auto auto 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
  }
  .layout-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .layout-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .layout-grid > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .layout-grid > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .layout-grid > *:nth-child(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .layout-grid > *:nth-child(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .layout-grid .grid1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .layout-grid .grid2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
  .layout-grid .grid3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
  .layout-grid .grid4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
  .layout-grid .grid5 {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 3/1/4/3;
  }
}
@media (min-width: 992px) {
  .layout-grid {
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: 1fr 0 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 0;
  }
  .layout-grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .layout-grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .layout-grid > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .layout-grid > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }
  .layout-grid > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .layout-grid > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .layout-grid > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .layout-grid > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }
  .layout-grid .grid5 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: 1/3/3/5;
  }
}
.embed-map:before {
  padding-top: 65%;
}

.searchlinks {
  width: 100%;
}
@media (min-width: 768px) {
  .searchlinks {
    width: 45%;
  }
  .searchlinks.right {
    float: right;
    margin: 0 -50% 0 10px;
  }
  .searchlinks.left {
    float: left;
    margin: 0 10px 0 -50%;
    text-align: right;
  }
}

@media (min-width: 768px) {
  .team-testimonial:nth-of-type(odd) .inner,
  .team-member:nth-of-type(odd) .inner {
    padding-right: 15px;
  }
  .team-testimonial:nth-of-type(even) .inner,
  .team-member:nth-of-type(even) .inner {
    padding-left: 15px;
  }
  .team-testimonial:nth-of-type(-n + 2),
  .team-member:nth-of-type(-n + 2) {
    border: none;
  }
}
@media (min-width: 992px) {
  .team-testimonial .inner,
  .team-member .inner {
    width: 75%;
  }
  .team-testimonial:nth-of-type(odd) .inner,
  .team-member:nth-of-type(odd) .inner {
    margin: 0 auto;
  }
}
.team-testimonial,
.team-member {
  border-top: 1px solid #000000;
}
.team-testimonial:first-of-type,
.team-member:first-of-type {
  border: none;
}

h2.team-name {
  font-size: 34px;
  line-height: 34px;
}

.team-thumb {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
}
.team-thumb::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.team-email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  color: #46194F;
}

.team-quote p {
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 27px;
  color: #432C4C;
  padding: 0 0 20px 50px;
}
@media (min-width: 768px) {
  .team-quote p {
    padding: 0 0 20px 70px;
  }
}
.team-quote p:before {
  content: "";
  width: 37px;
  height: 31px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='47' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M24.868 24.316C24.868 32.95 28.027 40 37.366 40a9.537 9.537 0 006.68-2.684A9.727 9.727 0 0047 30.698c0-4.177-2.588-9.786-10.638-9.786h-5.176c.58-8.056 8.05-15.684 15.657-19.424L46.18 0C37.8 3.72 24.868 11.367 24.868 24.316zM0 24.316C0 32.95 3.16 40 12.498 40a9.436 9.436 0 006.701-2.658 9.626 9.626 0 002.924-6.644c0-4.177-2.44-9.786-10.629-9.786H6.466c.432-8.056 8.04-15.684 15.657-19.424L21.313 0C13.023 3.72.046 11.367.046 24.316' fill='%23432C4C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h47v40H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center center no-repeat;
  position: absolute;
  left: 0;
  top: 5px;
  background-size: cover;
}
@media (min-width: 768px) {
  .team-quote p:before {
    width: 47px;
    height: 40px;
  }
}

.team-testimonial p {
  color: #51164d;
  font-weight: 700;
  font-size: 14px;
  padding-left: 30px;
}
.team-testimonial h2 {
  padding: 0 0 20px 70px;
  margin: 0;
  position: relative;
  font-weight: normal;
  color: #432C4C;
}
.team-testimonial h2:before {
  content: "";
  width: 37px;
  height: 31px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background: url("data:image/svg+xml,%3Csvg width='47' height='40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cpath d='M24.868 24.316C24.868 32.95 28.027 40 37.366 40a9.537 9.537 0 006.68-2.684A9.727 9.727 0 0047 30.698c0-4.177-2.588-9.786-10.638-9.786h-5.176c.58-8.056 8.05-15.684 15.657-19.424L46.18 0C37.8 3.72 24.868 11.367 24.868 24.316zM0 24.316C0 32.95 3.16 40 12.498 40a9.436 9.436 0 006.701-2.658 9.626 9.626 0 002.924-6.644c0-4.177-2.44-9.786-10.629-9.786H6.466c.432-8.056 8.04-15.684 15.657-19.424L21.313 0C13.023 3.72.046 11.367.046 24.316' fill='%23432C4C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0'%3E%3Cpath fill='%23fff' d='M0 0h47v40H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") center center no-repeat;
  position: absolute;
  left: 0;
  top: 5px;
  background-size: cover;
}
@media (min-width: 768px) {
  .team-testimonial h2:before {
    width: 47px;
    height: 40px;
  }
}
.team-testimonial cite {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  padding-left: 70px;
}

.number-list p {
  position: relative;
  padding-left: 30px;
}
.number-list p:before {
  content: "";
  display: block;
  width: 17px;
  height: 23px;
  background-image: url("../img/sprites.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  left: 0;
}
.number-list p.one:before {
  background-position: 0 -300px;
}
.number-list p.two:before {
  background-position: -30px -300px;
}
.number-list p.three:before {
  background-position: -60px -300px;
}
.number-list p.four:before {
  background-position: -90px -300px;
}
.number-list p.five:before {
  background-position: -120px -300px;
}
.number-list p.six:before {
  background-position: -150px -300px;
}
.number-list p.seven:before {
  background-position: -180px -300px;
}
.number-list p.eight:before {
  background-position: -210px -300px;
}
.number-list p.nine:before {
  background-position: -240px -300px;
}
.number-list p.ten {
  padding-left: 50px;
}
.number-list p.ten:before {
  background-position: -270px -300px;
  width: 40px;
}

.off-image {
  position: relative;
}
.off-image:before {
  content: "";
  display: block;
  padding-top: 66.666666666%;
}

.btn-links {
  position: relative;
  margin-bottom: 20px;
  text-align: left;
  padding: 8px 25px 10px 10px;
  font-size: 0.875rem;
  line-height: 1.063rem;
}
.btn-links p {
  font-size: 0.875rem;
  line-height: 1.063rem;
}
.btn-links:after {
  content: "";
  width: 10px;
  height: 17px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background: url("../img/sprites.svg") 0 -80px no-repeat;
  position: absolute;
  right: 7px;
  bottom: 7px;
}
@media (min-width: 380px) {
  .btn-links:after {
    right: 10px;
    bottom: 10px;
  }
}
@media (min-width: 768px) {
  .btn-links {
    max-width: 250px;
  }
}

.btn-outline {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #FFF;
  background-color: #4E124F;
  border: 1px solid #4E124F;
  padding: 10px 30px;
  white-space: nowrap;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  text-transform: uppercase;
}
.btn-outline:focus, .btn-outline:hover {
  color: #000000;
  background-color: #F6F5F3;
  border-color: #F6F5F3;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-solid {
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  letter-spacing: -0.015em;
  color: #ffffff;
  background-color: #4E124F;
  border: 1px solid #4E124F;
  padding: 10px 30px;
  white-space: nowrap;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.btn-solid:focus, .btn-solid:hover {
  color: #000;
  background-color: transparent;
  border-color: #4E124F;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-value {
  color: #fff !important;
  background-color: #77c4b5;
  border-color: #77c4b5;
}
.btn-value:focus, .btn-value:hover {
  color: #fff;
  background-color: rgb(125, 185, 205);
  border-color: rgb(125, 185, 205);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-view {
  color: #fff !important;
  background-color: rgb(65, 25, 79);
  border-color: rgb(65, 25, 79);
}
.btn-view:focus, .btn-view:hover {
  color: #fff;
  background-color: rgb(125, 185, 205);
  border-color: rgb(125, 185, 205);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-slider-view {
  font-size: 16px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  color: #fff !important;
  background-color: rgb(65, 25, 79);
  border-color: rgb(65, 25, 79);
  padding: 0 50px 0 10px;
  width: 100%;
}
.btn-slider-view:focus, .btn-slider-view:hover {
  color: #fff;
  background-color: rgb(125, 185, 205);
  border-color: rgb(125, 185, 205);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 380px) {
  .btn-slider-view {
    font-size: 20px;
    line-height: 38px;
  }
}

.btn-slider-value {
  font-size: 20px;
  font-weight: 300;
  line-height: 38px;
  color: #fff !important;
  background-color: #77c4b5;
  border-color: #77c4b5;
  padding: 0 50px 0 10px;
  width: 100%;
  max-width: none;
}
.btn-slider-value:focus, .btn-slider-value:hover {
  color: #fff;
  background-color: rgb(125, 185, 205);
  border-color: rgb(125, 185, 205);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-submit {
  position: relative;
  text-align: left;
  padding: 8px 10px 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.063rem;
  color: #fff !important;
  background-color: #77c4b5;
  border-color: #77c4b5;
}
.btn-submit:focus, .btn-submit:hover {
  color: #fff;
  background-color: rgb(125, 185, 205);
  border-color: rgb(125, 185, 205);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wp-block-button .wp-block-button__link {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 20px;
  margin-right: 10px;
  padding: 8px 25px 10px 10px;
  font-size: 0.875rem;
  line-height: 1.063rem;
  border-radius: 0;
  text-align: left;
  color: #fff !important;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.wp-block-button .wp-block-button__link:after {
  content: "";
  width: 10px;
  height: 17px;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
  background: url("../img/sprites.svg") 0 -80px no-repeat;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.wp-block-button .wp-block-button__link strong {
  color: #fff;
}
@media (min-width: 768px) {
  .wp-block-button .wp-block-button__link {
    max-width: 250px;
  }
}
.wp-block-button.btn-block-search .wp-block-button__link {
  background-color: rgb(65, 25, 79);
  border-color: rgb(65, 25, 79);
}
.wp-block-button.btn-block-search .wp-block-button__link:focus, .wp-block-button.btn-block-search .wp-block-button__link:hover {
  color: #fff !important;
  background-color: rgb(125, 185, 205);
  border-color: rgb(125, 185, 205);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.wp-block-button.btn-block-value .wp-block-button__link {
  background-color: #77c4b5;
  border-color: #77c4b5;
}
.wp-block-button.btn-block-value .wp-block-button__link:focus, .wp-block-button.btn-block-value .wp-block-button__link:hover {
  color: #fff;
  background-color: rgb(125, 185, 205);
  border-color: rgb(125, 185, 205);
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modal {
  padding: 0 !important;
}

#searchModal .modal-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
#searchModal .modal-header {
  border-bottom: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#searchModal .modal-content {
  height: auto;
  border-radius: 0;
  background-color: #e9e9e9;
}
#searchModal .mfp-iframe-scaler {
  width: 100%;
  height: 620px;
  overflow: hidden;
}
@media (min-width: 576px) {
  #searchModal .mfp-iframe-scaler {
    height: 450px;
  }
}
#searchModal .mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#searchModal .close {
  background-position: -180px -90px;
  right: 25px;
  top: 20px;
}

.modal-header a {
  color: #fff;
  text-decoration: underline;
}

.modal-content .close {
  position: absolute;
  right: 30px;
  top: 30px;
  text-shadow: none;
  opacity: 1;
  width: 25px;
  height: 25px;
  background-image: url("../img/sprites.svg");
  background-repeat: no-repeat;
  text-transform: capitalize;
  text-indent: -100000000000000000px;
  overflow: hidden;
  padding: 0;
  z-index: 100;
}

#formModal .modal-content {
  border: none;
}
#formModal .modal-dialog {
  max-width: 600px;
}
#formModal .modal-header {
  position: relative;
  display: block;
  padding: 20px;
  border-bottom: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-color: #51164d;
  color: #fff;
}
#formModal .modal-header h2 {
  font-size: 36px;
  line-height: 46px;
}
#formModal .modal-header .close {
  background-position: -150px -90px;
}
#formModal .modal-body {
  background-color: #e9e9e9;
  padding: 20px;
}
#formModal .modal-body .form-control {
  color: #495057;
  border: none;
  border-radius: 0;
}
#formModal .modal-body small {
  color: #a9a8a6;
  font-size: 10px;
}
#formModal .modal-body select.wpcf7-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: url(../img/drop-arrow.svg), -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image: url(../img/drop-arrow.svg), linear-gradient(to bottom, #fff 0%, #fff 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 10px center;
}
#formModal .frm_full {
  width: 100% !important;
  display: inline-block;
  margin-bottom: 20px !important;
}
#formModal .frm_forms input[type=text], #formModal .frm_forms textarea {
  font: 16px "Lato" !important;
  border: 0px solid #FFFFFF !important;
  width: 100% !important;
  margin: 0 auto !important;
}
#formModal .frm_first .frm_error, #formModal .frm_none_container .frm_error, #formModal #frm_field_117_container {
  margin-left: 0 !important;
}

.carousel-content {
  position: relative;
}
@media (min-width: 768px) {
  .carousel-content {
    margin-right: -4%;
    margin-bottom: 38px;
  }
}
@media (min-width: 1200px) {
  .carousel-content {
    margin: 0 0 38px 85px;
  }
}
.carousel-content p {
  font-size: 18px;
}

.carousel-item {
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: top right;
  background-position: bottom right;
  background-size: contain;
}
@media (min-width: 768px) {
  .carousel-item {
    background-position: top right;
    background-size: 58%;
  }
}
@media (min-width: 992px) {
  .carousel-item {
    background-position: top right;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .carousel-item .modal-link {
    margin-bottom: 100px;
  }
}

.image-half:before {
  content: "";
  padding-top: 80%;
  display: block;
  overflow: hidden;
}
@media (min-width: 768px) {
  .image-half:before {
    padding-top: 100%;
  }
}
@media (min-width: 992px) {
  .image-half:before {
    padding-top: 100%;
  }
}

.carousel-control-prev {
  display: none;
}
@media (min-width: 992px) {
  .carousel-control-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: -100px;
  }
}
@media (min-width: 1200px) {
  .carousel-control-prev {
    left: -150px;
  }
}

.carousel-control-next {
  display: none;
}
@media (min-width: 992px) {
  .carousel-control-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: -65px;
  }
}
@media (min-width: 1200px) {
  .carousel-control-next {
    right: -70px;
  }
}

.carousel-control-prev-icon {
  background: url("../img/sprites.svg") -50px -80px no-repeat;
  width: 30px;
  height: 60px;
}

.carousel-control-next-icon {
  background: url("../img/sprites.svg") -90px -80px no-repeat;
  width: 30px;
  height: 60px;
}

@media (min-width: 992px) {
  .carousel-indicators {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    margin-bottom: 0;
  }
}
.carousel-indicators li {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #7f527d;
}

.max-2000 {
  max-width: 2000px;
}

footer {
  background-color: #dadada;
  color: #000;
  font-size: 14px;
  line-height: 16px;
}

footer p,
footer a {
  color: #000;
  font-size: 14px;
  line-height: 18px;
}

footer .text-nowrap p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

footer h6,
footer h6 a {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 4px;
}

footer a:hover,
footer a:focus {
  color: #4E124F;
  text-decoration: underline;
}

.footerfollowicons {
  display: inline-block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-image: url("../img/sprites.svg");
  background-repeat: no-repeat;
  margin-right: 5px;
  text-indent: 10000000000000000px;
  text-transform: capitalize;
}
.footerfollowicons.twitter {
  background-position: 0 0;
}
.footerfollowicons.facebook {
  background-position: -105px 0;
}
.footerfollowicons.instagram {
  background-position: -35px 0;
}
.footerfollowicons.linkedin {
  background-position: -70px 0;
}

#backToTop {
  width: 40px;
  height: 40px;
  opacity: 0.5;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  text-indent: -10000px;
  outline: none !important;
  background-color: #e9e9e9;
  background-image: url("../img/sprites.svg");
  background-repeat: no-repeat;
  background-position: -330px -140px;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}
#backToTop:hover {
  opacity: 1;
}

.sticky-container {
  display: none;
}
@media (min-width: 600px) {
  .sticky-container {
    display: block;
    padding: 0px;
    margin: 0px;
    position: fixed;
    right: -125px;
    top: 50%;
    width: 200px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sticky-container .sticky li {
    list-style-type: none;
    background-color: #dededd;
    color: #fff;
    height: 40x;
    margin: 0;
    padding: 5px;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
  }
  .sticky-container .sticky li svg {
    fill: #fff;
    -webkit-transition: fill 0.25s linear;
    transition: fill 0.25s linear;
    margin-right: 10px;
  }
  .sticky-container .sticky li a {
    display: block;
    font-size: 18px;
    line-height: 24px;
    text-decoration: none;
    color: #411b4e;
  }
  .sticky-container .sticky li:hover {
    margin-left: -115px;
  }
  .sticky-container .sticky li:hover a {
    text-decoration: none;
  }
  .sticky-container .sticky li:hover svg {
    fill: #411b4e;
  }
}