/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
/* Animation */
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.site-header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: linear-gradient(90deg, #1b1b1b 0%, #1b1b1b 25%, #003153 100%);
  height: 81px;
  transition: .3s;
  position: relative; }
  .site-header .container {
    padding: 0;
    align-items: flex-start;
    justify-content: space-between;
    height: 81px; }
    @media (min-width: 1450px) {
      .site-header .container {
        padding: 0 4rem; } }
    .site-header .container .custom-logo-link {
      width: auto;
      z-index: 140;
      padding: 1rem; }
      .site-header .container .custom-logo-link img {
        width: 100%;
        max-width: 180px;
        height: auto;
        display: block; }
        @media (min-width: 992px) {
          .site-header .container .custom-logo-link img {
            max-width: 200px; } }
    .site-header .container #mobile-button {
      appearance: none;
      cursor: pointer;
      background: none;
      border: 0;
      padding: 0 1rem 0 0;
      margin: 0;
      height: 100%; }
      @media (min-width: 992px) {
        .site-header .container #mobile-button {
          display: none; } }
      .site-header .container #mobile-button iconify-icon {
        color: #FFF;
        transition: .3s; }
        .site-header .container #mobile-button iconify-icon:hover, .site-header .container #mobile-button iconify-icon:focus {
          color: #C10D25; }

#mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1b1b1b 0%, #1b1b1b 25%, #003153 100%);
  z-index: 120;
  margin: 0;
  padding: 2rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: .4s ease-in-out; }
  @media (min-width: 992px) {
    #mobile-menu {
      display: none; } }
  #mobile-menu.active {
    opacity: 1;
    visibility: visible; }
  #mobile-menu .menu {
    list-style-type: none;
    margin-top: 0;
    top: 0;
    padding: 6rem 0 0 0;
    margin: 0; }
    #mobile-menu .menu li {
      margin-bottom: 1rem; }
      #mobile-menu .menu li:last-child {
        margin-bottom: 0; }
      #mobile-menu .menu li a {
        font-size: 1.3rem;
        color: #FFF;
        font-weight: 600;
        text-decoration-color: transparent;
        transition: .3s; }
        #mobile-menu .menu li a:hover, #mobile-menu .menu li a:focus {
          color: #C10D25; }
  #mobile-menu #close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    appearance: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    background: none;
    border: 0; }
    #mobile-menu #close-button iconify-icon {
      color: #FFF; }

#main-menu {
  display: none; }
  @media (min-width: 992px) {
    #main-menu {
      display: flex;
      padding: 0 1rem 0 0;
      margin: 0;
      height: 81px;
      align-items: center; } }
  #main-menu .menu {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    align-items: center; }
    #main-menu .menu li {
      margin-left: 1.2rem; }
      #main-menu .menu li a {
        color: #FFF;
        font-size: 0.9rem;
        font-weight: 500;
        text-decoration-color: transparent;
        transition: .3s; }
        #main-menu .menu li a:hover, #main-menu .menu li a:focus {
          color: #C10D25; }
      #main-menu .menu li:last-child a {
        background: #C10D25;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: .4s;
        margin-left: 0.7rem; }
        #main-menu .menu li:last-child a:hover, #main-menu .menu li:last-child a:focus {
          background: #ef122f;
          color: #FFF; }

.main-header {
  height: auto; }
  .main-header .container {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between; }
    .main-header .container .custom-logo-link {
      max-width: 180px; }
      @media (min-width: 801px) {
        .main-header .container .custom-logo-link {
          max-width: 220px; } }
      .main-header .container .custom-logo-link img {
        max-width: none; }
  .main-header #main-menu {
    height: auto; }

.site-footer {
  background: #1b1b1b; }
  .site-footer .container {
    flex-direction: column; }
    @media (min-width: 801px) {
      .site-footer .container {
        flex-direction: row;
        padding: 4rem 2rem; } }
    .site-footer .container .box {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0 0 2rem 0;
      font-size: 1.1rem; }
      @media (min-width: 801px) {
        .site-footer .container .box {
          width: 33.3333333%;
          align-items: flex-start;
          font-size: 1rem; } }
      .site-footer .container .box img {
        width: 100%;
        max-width: 200px;
        height: auto; }
      .site-footer .container .box .socials {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2rem 0; }
        @media (min-width: 801px) {
          .site-footer .container .box .socials {
            align-items: flex-start;
            justify-content: flex-start; } }
        .site-footer .container .box .socials iconify-icon {
          background: #C10D25;
          padding: 0.5rem;
          border-radius: 100%;
          color: #FFF;
          margin: 0 0.3rem;
          transition: .3s; }
          .site-footer .container .box .socials iconify-icon:hover, .site-footer .container .box .socials iconify-icon:focus {
            transform: scale(1.1, 1.1); }
      .site-footer .container .box strong {
        color: #FFF;
        margin-bottom: 1rem;
        font-weight: 600; }
      .site-footer .container .box a {
        color: #FFF;
        text-decoration-color: transparent;
        transition: .3s; }
        .site-footer .container .box a:hover, .site-footer .container .box a:focus {
          color: #C10D25; }
      .site-footer .container .box .menu {
        list-style-type: none;
        padding: 0;
        margin: 0;
        text-align: center; }
        @media (min-width: 801px) {
          .site-footer .container .box .menu {
            text-align: left; } }
        .site-footer .container .box .menu li {
          margin-bottom: 1rem; }
          .site-footer .container .box .menu li:last-child {
            margin-bottom: 0; }
        .site-footer .container .box .menu a {
          margin: 1rem 0; }
      .site-footer .container .box address {
        text-align: center;
        font-style: normal;
        color: #FFF;
        line-height: 2rem; }
        @media (min-width: 801px) {
          .site-footer .container .box address {
            text-align: left; } }
    .site-footer .container .footer-bottom {
      width: 100%;
      text-align: center;
      color: #FFF;
      font-size: 0.8rem;
      color: #FFF; }
      @media (min-width: 801px) {
        .site-footer .container .footer-bottom {
          text-align: left;
          margin-top: 3rem;
          color: rgba(255, 255, 255, 0.8); } }
      .site-footer .container .footer-bottom a {
        color: #FFF;
        text-decoration-color: transparent; }
        @media (min-width: 801px) {
          .site-footer .container .footer-bottom a {
            color: rgba(255, 255, 255, 0.8); } }
        .site-footer .container .footer-bottom a:hover, .site-footer .container .footer-bottom a:focus {
          color: #C10D25; }

.slides {
  max-height: 600px;
  overflow: hidden;
  margin: 0;
  border: 0 !important; }

.slide-img {
  width: 100%;
  height: 600px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative; }
  .slide-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center; }

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center; }
  .blog-header h2 {
    color: #FFF; }

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  @media (min-width: 576px) {
    .blog-post {
      width: 48%;
      margin: 0 1%; }
      @supports (display: grid) {
        .blog-post {
          width: 100%;
          margin: 0; } } }
  .blog-post .image {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center center !important; }
  .blog-post .meta {
    color: #1b1b1b;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #1b1b1b;
    font-size: 1.2rem; }
  .blog-post p {
    color: #1b1b1b; }

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start; }
  .share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(33.3333333% - 1px);
    margin-right: 0.063rem; }
    .share-buttons li:last-child {
      width: 33.3333333%;
      margin-right: 0; }
      .share-buttons li:last-child a {
        border-radius: 0 0.188rem 0.188rem 0; }
    .share-buttons li:first-child a {
      border-radius: 0.188rem 0 0 0.188rem; }
  .share-buttons svg {
    fill: #fff;
    margin-right: 0.313rem;
    width: 1rem;
    height: 1rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White; }

.share-twitter {
  background: #1da1f2; }

.share-facebook {
  background: #3b5998; }

.share-pinterest {
  background: #b5071a; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #1b1b1b; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #1b1b1b;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

html {
  box-sizing: border-box;
  font-family: "indivisible", sans-serif;
  font-weight: 300; }

* {
  box-sizing: inherit; }

strong {
  font-weight: 600; }

h1, h2, h3 {
  font-weight: 600; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem; }

p {
  font-size: 1rem;
  line-height: 1.6rem;
  font-weight: 400; }

.btn, #gform_submit_button_1, input[type='submit'] {
  background: #C10D25;
  padding: 1rem 1.5rem;
  color: #FFF;
  font-weight: 600;
  text-decoration-color: transparent;
  margin-top: 1rem;
  font-size: 1rem;
  border-radius: 8px;
  display: inline-block;
  transition: .3s; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus, input[type='submit']:hover, input[type='submit']:focus {
    background: #ef122f; }

input[type='submit'] {
  border: 0;
  cursor: pointer; }

#gform_submit_button_1 {
  border: 0;
  cursor: pointer; }

.video {
  width: 100%;
  height: 600px;
  position: relative;
  background: linear-gradient(90deg, #1b1b1b 0%, #1b1b1b 25%, #003153 100%);
  background-image: url(/wp-content/uploads/2025/06/curved-gradient.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top; }
  @media (min-width: 801px) {
    .video {
      height: calc(100svh - 81px); } }
  .video .video-container {
    width: 50%;
    height: 600px;
    position: absolute;
    top: 0;
    right: 0;
    background: #FFF;
    z-index: -1; }
    @media (min-width: 801px) {
      .video .video-container {
        height: calc(100svh - 81px); } }
    .video .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .video .overlay {
    position: absolute;
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    height: 600px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem 1rem 4rem 1rem; }
    @media (min-width: 801px) {
      .video .overlay {
        justify-content: center;
        height: calc(100svh - 81px); } }
    .video .overlay .title {
      color: #FFF;
      font-size: 2.5rem;
      line-height: 3rem;
      padding: 0;
      margin: 0 0 0.5rem 0;
      font-weight: 600;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .3s;
      animation-fill-mode: forwards;
      max-width: 700px; }
      @media (min-width: 801px) {
        .video .overlay .title {
          font-size: 3.5rem; } }
    .video .overlay p {
      font-size: 1.2rem;
      color: #FFF;
      padding: 0;
      margin: 0;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .5s;
      animation-fill-mode: forwards; }
    .video .overlay .search {
      width: 100%;
      overflow: hidden;
      margin-top: 2rem;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .7s;
      animation-fill-mode: forwards; }
      @media (min-width: 801px) {
        .video .overlay .search {
          width: 50%; } }
      .video .overlay .search .buttons {
        display: flex; }
        .video .overlay .search .buttons button {
          appearance: none;
          cursor: pointer;
          background: rgba(255, 255, 255, 0.8);
          border: 0;
          font-size: 1rem;
          padding: 0.7rem 1.5rem;
          margin-right: 0.5rem;
          border-top-left-radius: 4px;
          border-top-right-radius: 4px; }
          .video .overlay .search .buttons button.active {
            background: #FFF;
            color: #C10D25;
            font-weight: 500; }
      .video .overlay .search .search-buy, .video .overlay .search .search-rent {
        background: #FFF;
        border-top-right-radius: 4px;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
        padding: 0.7rem;
        display: none; }
        .video .overlay .search .search-buy.active, .video .overlay .search .search-rent.active {
          display: block; }
      .video .overlay .search .property-search-form {
        display: flex;
        align-items: flex-end;
        justify-content: space-evenly; }
        .video .overlay .search .property-search-form .control {
          padding: 0 0.5rem 0 0;
          display: flex;
          flex-direction: column;
          align-items: flex-start; }
        .video .overlay .search .property-search-form input[type='submit'] {
          background: #C10D25;
          border-radius: 4px;
          border: 0;
          padding: 0.8rem 1.2rem;
          font-size: 1rem;
          color: #FFF;
          cursor: pointer;
          transition: .3s; }
          .video .overlay .search .property-search-form input[type='submit']:hover, .video .overlay .search .property-search-form input[type='submit']:focus {
            background: #ef122f; }
      .video .overlay .search label {
        font-weight: 500;
        font-size: 0.8rem;
        padding: 0;
        margin-bottom: 0.5rem; }
      .video .overlay .search .control-keyword {
        width: 100% !important; }
        @media (min-width: 801px) {
          .video .overlay .search .control-keyword {
            width: auto !important; } }
        .video .overlay .search .control-keyword input {
          border: 1px solid #ddd;
          padding: 0.8rem 0.5rem !important;
          border-radius: 4px;
          width: 100%;
          font-size: 1rem; }
      .video .overlay .search .control-minimum_price, .video .overlay .search .control-maximum_price, .video .overlay .search .control-minimum_bedrooms, .video .overlay .search .control-price-range, .video .overlay .search .control-minimum_rent {
        display: none !important; }
        @media (min-width: 801px) {
          .video .overlay .search .control-minimum_price, .video .overlay .search .control-maximum_price, .video .overlay .search .control-minimum_bedrooms, .video .overlay .search .control-price-range, .video .overlay .search .control-minimum_rent {
            display: flex !important;
            flex-direction: column; } }
      .video .overlay .search select {
        appearance: none;
        border: 1px solid #ddd;
        padding: 0.8rem;
        font-size: 1rem;
        border-radius: 4px;
        background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 12px;
        cursor: pointer;
        color: #aaa; }
      .video .overlay .search #minimum_bedrooms {
        padding-right: 1.5rem; }
      .video .overlay .search #minimum_rent {
        padding-right: 2rem; }

.home-text {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem; }
  .home-text h2 {
    font-size: 2rem;
    color: #C10D25;
    padding: 0;
    margin: 0 0 2rem 0; }
    @media (min-width: 801px) {
      .home-text h2 {
        font-size: 3rem; } }
  .home-text .btn {
    margin-top: 1rem; }

.services {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 576px) {
    .services {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1200px) {
    .services {
      grid-template-columns: repeat(4, 1fr); } }
  .services .box {
    width: 100%;
    background: #1b1b1b;
    text-decoration-color: transparent;
    color: #FFF;
    border-radius: 8px;
    overflow: hidden; }
    .services .box .image {
      width: 100%;
      height: 300px;
      overflow: hidden; }
      .services .box .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
    .services .box .content {
      padding: 2rem; }
      .services .box .content h2 {
        padding: 0;
        margin: 0;
        font-size: 1.7rem; }
    .services .box:hover .image img, .services .box:focus .image img {
      transform: scale(1.1, 1.1); }
    .services .box:hover .btn, .services .box:focus .btn {
      background: #ef122f !important; }

.cta {
  width: 100%;
  height: 500px;
  position: relative; }
  .cta img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .cta .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .cta .overlay h2 {
      font-size: 2rem;
      padding: 0;
      margin: 0;
      color: #FFF; }
      @media (min-width: 801px) {
        .cta .overlay h2 {
          font-size: 3rem; } }
    .cta .overlay p {
      font-size: 1.2rem;
      color: #FFF;
      max-width: 1000px; }

.featured-properties {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem 2rem; }
  .featured-properties h2 {
    font-size: 2.5rem;
    color: #C10D25; }
  .featured-properties .properties {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin: 0 !important; }
    @media (min-width: 801px) {
      .featured-properties .properties {
        grid-template-columns: repeat(3, 1fr); } }
    .featured-properties .properties .property {
      display: flex;
      flex-direction: column;
      background: #fafafa;
      border-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;
      border-radius: 8px;
      overflow: hidden; }
      .featured-properties .properties .property:hover .thumbnail img, .featured-properties .properties .property:focus .thumbnail img {
        transform: scale(1.1, 1.1); }
      .featured-properties .properties .property .thumbnail {
        float: none;
        width: 100%;
        overflow: hidden; }
        .featured-properties .properties .property .thumbnail img {
          width: 100%;
          display: block;
          transition: .3s; }
      .featured-properties .properties .property .details {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative; }
        .featured-properties .properties .property .details h3 {
          order: 2;
          padding: 1rem 1rem 0 1rem;
          margin: 0; }
          .featured-properties .properties .property .details h3 a {
            color: #1b1b1b;
            text-decoration-color: transparent; }
        .featured-properties .properties .property .details .price {
          order: 1;
          display: flex;
          flex-direction: row-reverse;
          width: 100%;
          text-align: left;
          background: #1b1b1b;
          color: #FFF;
          padding: 0.8rem 1rem;
          margin: 0;
          font-size: 0.9rem;
          justify-content: flex-end;
          font-weight: 600; }
          .featured-properties .properties .property .details .price .price-qualifier {
            font-size: 0.9srem;
            padding-right: 0.2rem; }
        .featured-properties .properties .property .details .property-type {
          order: 3;
          font-size: 0.9rem;
          padding: 0 1rem 0 1rem; }
        .featured-properties .properties .property .details .rooms {
          order: 4;
          display: flex;
          font-size: 0.9rem;
          padding: 1rem; }
          .featured-properties .properties .property .details .rooms .room {
            padding-right: 0.3rem;
            margin-right: 0.3rem;
            border-right: 1px solid #1b1b1b; }
            .featured-properties .properties .property .details .rooms .room:last-child {
              border-right: 0; }
        .featured-properties .properties .property .details .actions {
          order: 5;
          display: none; }
        .featured-properties .properties .property .details .flag {
          position: absolute;
          top: 0;
          right: 0;
          background: #eee;
          padding: 0.8rem 1rem;
          font-weight: 600;
          font-size: 0.9rem; }
        .featured-properties .properties .property .details .nder-ffer, .featured-properties .properties .property .details .old {
          background: #C10D25;
          color: #FFF; }
        .featured-properties .properties .property .details .or-ale {
          background: #ddd; }

.logos {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  .logos p {
    color: #C10D25;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0;
    margin: 0 0 2rem 0; }
  .logos .logo-feed {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 4rem;
    padding-top: 2rem; }
    @media (min-width: 350px) {
      .logos .logo-feed {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 801px) {
      .logos .logo-feed {
        grid-template-columns: repeat(4, 1fr); } }
    .logos .logo-feed .image {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
    .logos .logo-feed img {
      width: 100%;
      max-width: 250px;
      height: auto;
      text-align: center; }

.image-text-block {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 2rem; }
  .image-text-block .box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    border-radius: 12px;
    overflow: hidden; }
    @media (min-width: 801px) {
      .image-text-block .box {
        flex-direction: row-reverse; } }
    .image-text-block .box .image {
      width: 100%;
      height: 400px; }
      @media (min-width: 801px) {
        .image-text-block .box .image {
          width: 40%;
          height: 500px; } }
      .image-text-block .box .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .image-text-block .box .content {
      width: 100%;
      background: linear-gradient(30deg, #1b1b1b 0%, #003153 100%);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center; }
      @media (min-width: 801px) {
        .image-text-block .box .content {
          width: 60%;
          padding: 2rem; } }
      .image-text-block .box .content h2 {
        padding: 0;
        margin: 0;
        color: #FFF;
        font-size: 1.7rem; }
        @media (min-width: 801px) {
          .image-text-block .box .content h2 {
            font-size: 2.2rem; } }
      .image-text-block .box .content p {
        color: #FFF; }

.page-header {
  width: 100%;
  height: 325px;
  position: relative; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .page-header .overlay h1 {
      font-size: 2.5rem;
      padding: 0;
      margin: 0;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .3s;
      animation-fill-mode: forwards;
      position: relative;
      color: #FFF; }
      @media (min-width: 801px) {
        .page-header .overlay h1 {
          font-size: 3rem; } }
      .page-header .overlay h1:before {
        content: "CMS Estate & Letting Agency";
        position: absolute;
        top: -1.2rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        font-size: 1rem;
        opacity: 0;
        animation: fadein 1s ease;
        animation-delay: .5s;
        animation-fill-mode: forwards; }

.breadcrumbs {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto; }
  @media (min-width: 1450px) {
    .breadcrumbs {
      padding: 0 4rem; } }
  .breadcrumbs .fbc-page .fbc-wrap .fbc-items {
    background-color: rgba(255, 255, 255, 0); }
  .breadcrumbs li, .breadcrumbs span {
    font-size: 0.8rem !important; }
    .breadcrumbs li a, .breadcrumbs span a {
      color: #1b1b1b !important; }

.contact-page {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  @media (min-width: 801px) {
    .contact-page {
      padding-top: 6rem; } }
  .contact-page h1 {
    font-size: 2.5rem;
    padding: 0;
    margin: 0 0 2rem 0;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .3s;
    animation-fill-mode: forwards;
    position: relative;
    color: #003153; }
    @media (min-width: 801px) {
      .contact-page h1 {
        font-size: 3rem; } }
    .contact-page h1:before {
      content: "CMS Estate & Letting Agency";
      position: absolute;
      top: -1.2rem;
      left: 0;
      right: 0;
      margin: 0 auto;
      font-size: 1rem;
      color: #C10D25;
      opacity: 0;
      animation: fadein 1s ease;
      animation-delay: .5s;
      animation-fill-mode: forwards; }
  .contact-page article {
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .7s;
    animation-fill-mode: forwards; }

.gform_wrapper {
  text-align: left; }

input[type='text'], input[type='email'], input[type='tel'], textarea {
  background: #fafafa;
  border: 1px solid #eee;
  height: 40px;
  border-radius: 4px; }

.gfield_label {
  font-weight: 400 !important;
  font-size: 0.9rem !important; }

.gfield_select {
  padding: 8px 30px 8px 12px;
  border: 1px solid #eee;
  border-radius: 4px;
  background-color: #fafafa;
  background-image: url("/wp-content/uploads/2025/06/down-arrow.png");
  /* Add your image URL here */
  background-position: right 10px center;
  /* Position the arrow on the right */
  background-repeat: no-repeat;
  /* Don't repeat the image */
  background-size: 16px 16px;
  color: #333;
  appearance: none;
  cursor: pointer;
  transition: border 0.3s ease, background-color 0.3s ease;
  position: relative; }

.gfield_consent_label {
  font-size: 0.8rem; }
  .gfield_consent_label a {
    color: #C10D25;
    margin: 0 0.2rem; }

.grecaptcha-badge {
  visibility: hidden; }

.has-small-font-size a {
  color: #C10D25; }

.footer-map {
  position: relative; }
  .footer-map .overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #1b1b1b;
    padding: 2rem; }
    @media (min-width: 801px) {
      .footer-map .overlay {
        position: absolute;
        top: 0;
        left: 0;
        max-width: 400px;
        height: 100%;
        background: #C10D25;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; } }
    .footer-map .overlay h2 {
      color: #FFF;
      padding: 0;
      margin: 0 0 1rem 0;
      font-size: 2.5rem; }
    .footer-map .overlay address, .footer-map .overlay p {
      color: #FFF;
      font-style: normal;
      line-height: 1.5rem; }

#map {
  width: 100%;
  height: 500px; }

.main-search {
  width: 100%;
  background: #eee;
  padding: 1rem;
  display: none; }
  @media (min-width: 801px) {
    .main-search {
      display: block; } }
  .main-search .property-search-form {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    max-width: 1450px;
    margin: 0 auto; }
    @media (min-width: 1450px) {
      .main-search .property-search-form {
        padding: 0 4rem; } }
    .main-search .property-search-form .control {
      width: auto; }
      .main-search .property-search-form .control label {
        font-size: 0.8rem;
        font-weight: 600; }
      .main-search .property-search-form .control input {
        margin-top: 0.5rem;
        width: 100%;
        height: 35px;
        border: 1px solid #ddd;
        padding: 0.5rem; }
    .main-search .property-search-form .control-rent-range {
      display: block !important; }
      .main-search .property-search-form .control-rent-range select {
        width: 100%;
        padding: 9px 40px 9px 15px; }
    .main-search .property-search-form select {
      width: 100%;
      appearance: none;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 9px 40px 9px 15px;
      font-size: 12px;
      color: #333;
      background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 16px;
      cursor: pointer;
      margin-top: 0.5rem; }
    .main-search .property-search-form input[type='submit'] {
      background: #C10D25;
      appearance: none;
      border: 0;
      border-radius: 4px;
      width: auto;
      padding: 0.6rem 1rem;
      font-size: 1rem;
      color: #FFF;
      font-weight: 600;
      cursor: pointer;
      transition: .3s; }
      .main-search .property-search-form input[type='submit']:hover, .main-search .property-search-form input[type='submit']:focus {
        background: #1b1b1b;
        color: #FFF; }

#filter-btn {
  appearance: none;
  position: absolute;
  right: 2rem;
  top: 5.5rem;
  background: #FFF;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  @media (min-width: 801px) {
    #filter-btn {
      display: none; } }
  #filter-btn iconify-icon {
    padding-right: 0.5rem; }
  #filter-btn:hover, #filter-btn:focus {
    background: #1b1b1b;
    color: #FFF; }

.property-main {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem 4rem 2rem;
  position: relative; }
  @media (min-width: 1450px) {
    .property-main {
      padding: 0 5rem 4rem 5rem; } }
  .property-main h1 {
    font-size: 3rem;
    color: #1b1b1b;
    padding: 0;
    margin: 0 0 2rem 0;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .3s;
    animation-fill-mode: forwards; }
  .property-main .propertyhive-result-count {
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .5s;
    animation-fill-mode: forwards; }
  .property-main .properties {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin: 0 !important;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .7s;
    animation-fill-mode: forwards; }
    @media (min-width: 801px) {
      .property-main .properties {
        grid-template-columns: repeat(3, 1fr); } }
    .property-main .properties .property {
      display: flex;
      flex-direction: column;
      background: #fafafa;
      border-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;
      border-radius: 8px;
      overflow: hidden; }
      .property-main .properties .property:hover .thumbnail img, .property-main .properties .property:focus .thumbnail img {
        transform: scale(1.1, 1.1); }
      .property-main .properties .property .thumbnail {
        float: none;
        width: 100%;
        overflow: hidden; }
        .property-main .properties .property .thumbnail img {
          width: 100%;
          display: block;
          transition: .3s; }
      .property-main .properties .property .details {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative; }
        .property-main .properties .property .details h3 {
          order: 2;
          padding: 1rem 1rem 0 1rem;
          margin: 0; }
          .property-main .properties .property .details h3 a {
            color: #1b1b1b;
            text-decoration-color: transparent; }
        .property-main .properties .property .details .price {
          order: 1;
          display: flex;
          flex-direction: row-reverse;
          width: 100%;
          text-align: left;
          background: #1b1b1b;
          color: #FFF;
          padding: 0.8rem 1rem;
          margin: 0;
          font-size: 0.9rem;
          justify-content: flex-end;
          font-weight: 600; }
          .property-main .properties .property .details .price .price-qualifier {
            font-size: 0.9srem;
            padding-right: 0.2rem; }
        .property-main .properties .property .details .property-type {
          order: 3;
          font-size: 0.9rem;
          padding: 0 1rem 0 1rem; }
        .property-main .properties .property .details .rooms {
          order: 4;
          display: flex;
          font-size: 0.9rem;
          padding: 1rem; }
          .property-main .properties .property .details .rooms .room {
            padding-right: 0.3rem;
            margin-right: 0.3rem;
            border-right: 1px solid #1b1b1b; }
            .property-main .properties .property .details .rooms .room:last-child {
              border-right: 0; }
        .property-main .properties .property .details .actions {
          order: 5;
          display: none; }
        .property-main .properties .property .details .flag {
          position: absolute;
          top: 0;
          right: 0;
          background: #eee;
          padding: 0.8rem 1rem;
          font-weight: 600;
          font-size: 0.9rem; }
        .property-main .properties .property .details .nder-ffer, .property-main .properties .property .details .old {
          background: #C10D25;
          color: #FFF; }
        .property-main .properties .property .details .or-ale {
          background: #ddd; }
  .property-main .propertyhive-pagination {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee; }
    .property-main .propertyhive-pagination .page-numbers {
      color: #1b1b1b;
      padding-right: 0.5rem; }
    .property-main .propertyhive-pagination .current {
      color: #C10D25; }

.propertyhive-ordering select {
  width: auto;
  appearance: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 9px 40px 9px 15px;
  font-size: 12px;
  color: #333;
  background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  cursor: pointer;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }

.mobile-filter-options {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 1rem;
  background: #FFF;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  overflow: scroll; }
  @media (min-width: 801px) {
    .mobile-filter-options {
      display: none; } }
  .mobile-filter-options.active {
    opacity: 1;
    visibility: visible; }
  .mobile-filter-options #close-2 {
    appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem; }
  .mobile-filter-options .property-search-form {
    display: flex;
    flex-direction: column;
    padding-top: 2rem; }
    .mobile-filter-options .property-search-form .control {
      display: flex;
      flex-direction: column;
      margin-bottom: 1rem; }
      .mobile-filter-options .property-search-form .control label {
        font-size: 0.9rem;
        font-weight: 600; }
      .mobile-filter-options .property-search-form .control input {
        margin-top: 0.5rem;
        padding: 0.5rem; }
    .mobile-filter-options .property-search-form select {
      width: 100%;
      appearance: none;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 9px 40px 9px 15px;
      font-size: 12px;
      color: #333;
      background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 16px;
      cursor: pointer;
      margin-top: 0.5rem; }
    .mobile-filter-options .property-search-form input[type='submit'] {
      background: #C10D25;
      appearance: none;
      border: 0;
      border-radius: 4px;
      width: auto;
      padding: 1rem;
      font-size: 1rem;
      color: #FFF;
      font-weight: 900;
      cursor: pointer; }
      .mobile-filter-options .property-search-form input[type='submit']:hover, .mobile-filter-options .property-search-form input[type='submit']:focus {
        background: #1b1b1b; }

.control-department {
  display: none !important; }

#container {
  max-width: none;
  position: relative; }
  #container .property-search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end;
    max-width: 1450px;
    margin: 0 auto; }
    @media (min-width: 801px) {
      #container .property-search-form {
        flex-wrap: nowrap; } }
    @media (min-width: 1450px) {
      #container .property-search-form {
        padding: 0 4rem; } }
    #container .property-search-form .control {
      width: 30%; }
      @media (min-width: 801px) {
        #container .property-search-form .control {
          width: auto; } }
      #container .property-search-form .control label {
        font-size: 0.8rem;
        font-weight: 600; }
      #container .property-search-form .control input {
        margin-top: 0.5rem;
        width: 100%;
        height: 35px;
        border: 1px solid #ddd;
        padding: 0.5rem; }
    #container .property-search-form .control-rent-range {
      display: block !important; }
      #container .property-search-form .control-rent-range select {
        width: 100%;
        padding: 9px 40px 9px 15px; }
    #container .property-search-form select {
      width: 100%;
      appearance: none;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 9px 40px 9px 15px;
      font-size: 12px;
      color: #333;
      background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      background-size: 16px;
      cursor: pointer;
      margin-top: 0.5rem; }
    #container .property-search-form input[type='submit'] {
      background: #C10D25;
      appearance: none;
      border: 0;
      border-radius: 4px;
      width: auto;
      padding: 0.6rem 1rem;
      font-size: 1rem;
      color: #FFF;
      font-weight: 600;
      cursor: pointer;
      transition: .3s; }
      #container .property-search-form input[type='submit']:hover, #container .property-search-form input[type='submit']:focus {
        background: #1b1b1b;
        color: #FFF; }

.search-top {
  border-radius: 8px;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 2rem; }
  @media (min-width: 1450px) {
    .search-top {
      padding: 2rem 4rem; } }
  .search-top .property-search-form {
    border: 1px solid #ddd;
    background: #f6f6f6;
    border-radius: 8px;
    padding: 1rem !important; }
    .search-top .property-search-form input[type='submit'] {
      width: 100% !important;
      margin-top: 1rem; }
      @media (min-width: 801px) {
        .search-top .property-search-form input[type='submit'] {
          width: auto !important;
          margin-top: 0; } }

.propertyhive-result-count {
  font-size: 0.8rem; }

.propertyhive-views ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem; }
  .propertyhive-views ul li {
    margin-right: 1rem; }
    .propertyhive-views ul li a {
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 0.5rem 1rem;
      display: block;
      font-size: 0.9rem;
      color: #1b1b1b;
      text-decoration-color: transparent;
      transition: .3s; }
      .propertyhive-views ul li a:hover, .propertyhive-views ul li a:focus {
        background: #fafafa; }
    .propertyhive-views ul li.active a {
      background: #fafafa; }

.property-results {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem; }
  @media (min-width: 1450px) {
    .property-results {
      padding: 0 4rem; } }
  .property-results .properties {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin: 0 !important;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .7s;
    animation-fill-mode: forwards; }
    @media (min-width: 801px) {
      .property-results .properties {
        grid-template-columns: repeat(3, 1fr); } }
    .property-results .properties .property {
      display: flex;
      flex-direction: column;
      background: #fafafa;
      border-bottom: 0;
      padding-top: 0;
      padding-bottom: 0; }
      .property-results .properties .property:hover .thumbnail img, .property-results .properties .property:focus .thumbnail img {
        transform: scale(1.1, 1.1); }
      .property-results .properties .property .thumbnail {
        float: none;
        width: 100%;
        overflow: hidden; }
        .property-results .properties .property .thumbnail img {
          width: 100%;
          display: block;
          transition: .3s; }
      .property-results .properties .property .details {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative; }
        .property-results .properties .property .details h3 {
          order: 2;
          padding: 1rem 1rem 0 1rem;
          margin: 0; }
          .property-results .properties .property .details h3 a {
            color: #1b1b1b;
            text-decoration-color: transparent; }
        .property-results .properties .property .details .price {
          order: 1;
          display: flex;
          flex-direction: row-reverse;
          width: 100%;
          text-align: left;
          background: #1b1b1b;
          color: #FFF;
          padding: 0.8rem 1rem;
          margin: 0;
          font-size: 0.9rem;
          justify-content: flex-end;
          font-weight: 600; }
          .property-results .properties .property .details .price .price-qualifier {
            font-size: 0.9srem;
            padding-right: 0.2rem; }
        .property-results .properties .property .details .property-type {
          order: 3;
          font-size: 0.9rem;
          padding: 0 1rem 0 1rem; }
        .property-results .properties .property .details .rooms {
          order: 4;
          display: flex;
          font-size: 0.9rem;
          padding: 1rem; }
          .property-results .properties .property .details .rooms .room {
            padding-right: 0.3rem;
            margin-right: 0.3rem;
            border-right: 1px solid #1b1b1b; }
            .property-results .properties .property .details .rooms .room:last-child {
              border-right: 0; }
        .property-results .properties .property .details .actions {
          order: 5;
          display: none; }
        .property-results .properties .property .details .flag {
          position: absolute;
          top: 0;
          right: 0;
          background: #eee;
          padding: 0.8rem 1rem;
          font-weight: 600;
          font-size: 0.9rem; }
        .property-results .properties .property .details .nder-ffer, .property-results .properties .property .details .old {
          background: #C10D25;
          color: #FFF; }
        .property-results .properties .property .details .or-ale {
          background: #ddd; }

.properties li .summary {
  display: none; }

.properties li .thumbnail a {
  width: 100%;
  height: 250px !important; }
  .properties li .thumbnail a img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.property-images {
  width: 100%;
  background: #eee;
  position: relative; }
  .property-images ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    .property-images ul li {
      width: 100%;
      height: 550px; }
      .property-images ul li img {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.slick-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%; }
  .slick-arrows button {
    appearance: none;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    transition: .3s; }
    .slick-arrows button iconify-icon {
      color: #1b1b1b; }
    .slick-arrows button:hover, .slick-arrows button:focus {
      background: #FFF; }

.main-property-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  position: relative; }
  .main-property-content article {
    width: 100%; }
    @media (min-width: 801px) {
      .main-property-content article {
        width: 60%;
        position: relative; } }
    .main-property-content article .action-make-enquiry {
      display: none; }
    .main-property-content article .property_actions {
      margin-top: 1rem;
      width: 100%; }
      .main-property-content article .property_actions ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap; }
        .main-property-content article .property_actions ul li {
          width: 50%;
          padding: 0 0.3rem; }
          @media (min-width: 600px) {
            .main-property-content article .property_actions ul li {
              width: 25%; } }
          .main-property-content article .property_actions ul li a {
            border: 0;
            background: #003153;
            border-radius: 4px;
            width: 100%;
            padding: 1rem 0.5rem;
            display: block;
            box-sizing: border-box;
            text-align: center;
            color: #FFF;
            transition: .3s;
            font-size: 0.8rem;
            text-decoration-color: transparent;
            font-weight: 900;
            margin-bottom: 1rem; }
            .main-property-content article .property_actions ul li a:hover, .main-property-content article .property_actions ul li a:focus {
              background: #C10D25;
              color: #FFF; }
    .main-property-content article h1 {
      font-size: 1.7rem;
      font-weight: 600;
      padding: 0;
      margin: 0; }
    .main-property-content article .type {
      margin-top: 0.3rem;
      font-size: 1rem; }
    .main-property-content article .price {
      display: flex;
      flex-direction: column;
      margin: 0.5rem 0;
      font-size: 1.6rem;
      font-weight: 600; }
      .main-property-content article .price span {
        order: -1;
        margin-right: 0.5rem;
        font-size: 0.8rem;
        font-weight: 400; }
    .main-property-content article .rooms {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee;
      padding: 1rem 0 0 0; }
      .main-property-content article .rooms .property-detail {
        font-size: 0.8rem;
        width: 100%;
        margin-bottom: 1rem; }
        @media (min-width: 375px) {
          .main-property-content article .rooms .property-detail {
            width: 50%; } }
        @media (min-width: 600px) {
          .main-property-content article .rooms .property-detail {
            width: 33.333333%; } }
        .main-property-content article .rooms .property-detail .property-value {
          display: flex;
          align-items: center;
          margin-top: 0.5rem; }
          .main-property-content article .rooms .property-detail .property-value iconify-icon {
            margin-right: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center; }
    .main-property-content article .mortgage {
      width: 100%;
      max-width: 600px;
      margin-top: 2rem;
      padding-top: 2rem;
      background: linear-gradient(90deg, #1b1b1b 0%, #1b1b1b 25%, #003153 100%);
      border-radius: 6px;
      padding: 2rem; }
      .main-property-content article .mortgage h3, .main-property-content article .mortgage h4 {
        color: #FFF;
        padding: 0;
        margin: 0 0 2rem 0; }
      .main-property-content article .mortgage label {
        font-size: 0.8rem;
        color: #FFF; }
      .main-property-content article .mortgage button {
        background: #C10D25;
        border-radius: 4px;
        cursor: pointer; }
  .main-property-content aside {
    width: 100%;
    margin-top: 2rem; }
    @media (min-width: 801px) {
      .main-property-content aside {
        width: 30%;
        margin-left: 10%;
        margin-top: 0; } }

.main-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start; }
  .main-info .features ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
    .main-info .features ul li {
      padding: 0 0 0 30px;
      background: url("/wp-content/uploads/2025/07/tick.png");
      background-repeat: no-repeat;
      background-size: contain;
      margin-bottom: 0.7rem; }

.description-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative; }
  .description-container.active {
    height: auto; }
  .description-container .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
    top: 0;
    left: 0; }
    .description-container .overlay.active {
      opacity: 0;
      visibility: hidden; }

#desc-extend {
  display: inline-block;
  width: auto;
  border: 0;
  cursor: pointer; }

.contact-box {
  border: 1px solid #eee;
  background: #fafafa;
  width: 100%;
  padding: 1rem;
  border-radius: 8px; }
  @media (min-width: 801px) {
    .contact-box {
      position: sticky;
      top: 0; } }
  .contact-box label {
    font-size: 0.8rem; }
  .contact-box input[type='text'], .contact-box input[type='email'], .contact-box input[type='tel'] {
    padding: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid #eee;
    background: #FFF; }
  .contact-box textarea {
    height: 100px;
    border: 1px solid #eee;
    background: #FFF; }

.std-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .7s;
  animation-fill-mode: forwards; }
  .std-content h2 {
    color: #C10D25; }

.estate-services {
  width: 100%;
  padding: 2rem 2rem 4rem 2rem; }
  .estate-services h2 {
    font-size: 2rem;
    text-align: center;
    color: #C10D25; }
  .estate-services .estate-service {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem; }
    @media (min-width: 400px) {
      .estate-services .estate-service {
        grid-template-columns: 1fr 1fr; } }
    @media (min-width: 801px) {
      .estate-services .estate-service {
        grid-template-columns: repeat(3, 1fr); } }
    .estate-services .estate-service .box {
      border: 1px solid #eee;
      background: #fafafa;
      border-radius: 4px;
      padding: 1rem;
      border-radius: 8px; }
      .estate-services .estate-service .box iconify-icon {
        color: #C10D25; }
      .estate-services .estate-service .box h3 {
        font-size: 1.2rem;
        color: #C10D25;
        padding: 0;
        margin: 0; }

.images-block {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 400px) {
    .images-block {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 801px) {
    .images-block {
      grid-template-columns: repeat(3, 1fr); } }
  .images-block .image {
    width: 100%;
    height: 400px; }
    @media (min-width: 801px) {
      .images-block .image {
        height: 350px; } }
    .images-block .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .images-block .image:nth-child(2), .images-block .image:nth-child(3) {
      display: none; }
    @media (min-width: 400px) {
      .images-block .image:nth-child(2) {
        display: block; } }
    @media (min-width: 801px) {
      .images-block .image:nth-child(3) {
        display: block; } }

/*# sourceMappingURL=style.css.map */
