html {
  scroll-behavior: smooth; }

body {
  position: relative;
  height: 100%; }

.container {
  width: 100%;
  max-width: 1240px;
  padding: 10px 20px;
  margin: auto;
  position: relative; }

.title-page {
  text-align: center;
  margin-top: 64px; }
  .title-page__decoration {
    width: 24px;
    height: 24px;
    background-color: #9B142C;
    display: inline-block;
    margin: 0 10px -5px 0; }
  .title-page__title {
    font-family: "Futura Bk BT", sans-serif;
    color: #606060;
    display: inline-block;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.8rem;
    letter-spacing: normal;
    font-weight: 700; }
  .title-page__line {
    height: 2px;
    background-color: #000000; }

.properties-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px 10px;
  margin: 40px 0 120px; }

.property {
  box-sizing: border-box; }
  .property__cover {
    position: relative; }
    .property__cover:hover .swiper-button-next, .property__cover:hover .swiper-button-prev {
      opacity: 0.5; }
  .property__msg {
    font-family: 'Futura', sans-serif;
    padding: 2px 16px 2px 18px;
    position: absolute;
    top: 20px;
    left: 17px;
    z-index: 9;
    color: #ffffff;
    background: #9B142C;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.05rem;
    letter-spacing: normal;
    font-weight: 500; }
  .property .swiper {
    width: 100%; }
    .property .swiper-slide {
      background-position: center;
      background-size: cover; }
    .property .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .property .swiper-button-next, .property .swiper-button-prev {
      color: #ffffff;
      background-image: none;
      transition: 0.5s all;
      opacity: 0.5; }
    .property .swiper-button-next:hover, .property .swiper-button-prev:hover {
      opacity: 1; }

.property--card {
  box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.15); }
  .property--card .swiper {
    width: 100%;
    height: auto; }

.property-info {
  box-sizing: border-box;
  padding: 20px 20px 24px 20px; }
  .property-info__title {
    display: flex;
    gap: 10px;
    justify-content: start;
    font-family: "Futura", sans-serif;
    margin: 0;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 0.9rem;
    letter-spacing: normal;
    font-weight: 500; }
    .property-info__title-decoration {
      width: 12px;
      height: 12px;
      display: inline-block;
      background: #9B142C; }
  .property-info__container-text {
    display: flex;
    flex-direction: column; }
  .property-info__price {
    margin-top: 8px;
    display: flex;
    justify-content: start;
    gap: 10px;
    font-family: "Futura", sans-serif;
    color: #606060;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: normal;
    font-weight: 700; }
    .property-info__price-old {
      height: 1.05rem;
      padding: 0 5px;
      position: relative;
      color: #9B142C;
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 1.05rem;
      letter-spacing: normal;
      font-weight: 700; }
      .property-info__price-old::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        top: calc(50% - 1px);
        left: 0;
        background-color: #9B142C; }
  .property-info__desciption-section {
    display: grid;
    gap: 10px; }
  .property-info__address {
    margin-top: 8px;
    font-family: "Futura", sans-serif;
    color: #606060;
    display: block;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: normal;
    font-weight: 500; }
  .property-info__cta {
    align-self: start; }
  .property-info__cta .property-info__button {
    display: inline-block;
    background: #D9D9D9;
    padding: 6px 10px;
    width: 120px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s all;
    color: #606060;
    font-family: "Futura", sans-serif;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.05rem;
    letter-spacing: normal;
    font-weight: 500; }
    .property-info__cta .property-info__button:hover {
      background-color: #9B142C;
      color: #ffffff; }
  .property-info__aditional span {
    color: #606060;
    font-family: "Futura", sans-serif;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.05rem;
    letter-spacing: normal;
    font-weight: 500; }
  .property-info__aditional-list {
    list-style: none;
    margin: 10px 0;
    padding: 0;
    display: grid; }

.property--single-post {
  margin: 60px 0 100px;
  display: grid;
  grid-template-areas: "Gallery" "Details" "Content";
  grid-template-columns: 1fr;
  gap: 30px; }
  .property--single-post .property__gallery {
    grid-area: Gallery;
    position: relative;
    width: 100%;
    max-width: calc(100vw - 40px); }
  .property--single-post .property-info {
    grid-area: Details;
    padding: 0; }
    .property--single-post .property-info__title-text {
      font-family: "Futura Bk BT", sans-serif;
      color: #606060;
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 1.35rem;
      letter-spacing: normal;
      font-weight: 700; }
    .property--single-post .property-info__price {
      margin: 10px 0 8px;
      font-size: 28px;
      font-size: 1.75rem;
      line-height: 2.1rem;
      letter-spacing: normal;
      font-weight: 700; }
      .property--single-post .property-info__price-old {
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.05rem;
        letter-spacing: normal;
        font-weight: 700;
        position: relative;
        color: #9B142C;
        height: 1.05rem;
        padding: 0 5px; }
        .property--single-post .property-info__price-old:after {
          content: "";
          position: absolute;
          width: 100%;
          height: 2px;
          left: 0;
          top: calc(50% - 1px);
          background: #9B142C; }
    .property--single-post .property-info__address {
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.5rem;
      letter-spacing: normal;
      font-weight: 700; }
    .property--single-post .property-info__cta {
      display: flex;
      justify-content: center;
      margin-top: 40px; }
      .property--single-post .property-info__cta .cta-btn {
        padding: 8px 30px;
        display: inline-block;
        text-align: center;
        width: auto;
        transition: 0.2s background;
        font-family: "Futura Bk BT", sans-serif;
        background-color: #9B142C;
        color: #ffffff; }
        .property--single-post .property-info__cta .cta-btn:hover {
          background-color: rgba(155, 20, 44, 0.8); }
    .property--single-post .property-info__aditional {
      display: flex;
      gap: 10px; }
      .property--single-post .property-info__aditional span {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.2rem;
        letter-spacing: normal;
        font-weight: 500; }
      .property--single-post .property-info__aditional-list {
        margin-top: 16px; }
  .property--single-post .property-content {
    grid-area: Content;
    color: #606060;
    font-family: "Futura", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2rem;
    letter-spacing: 0.3px;
    font-weight: 400; }
    .property--single-post .property-content__title {
      display: block;
      margin-bottom: 28px;
      font-size: 28px;
      font-size: 1.75rem;
      line-height: 2.1rem;
      letter-spacing: normal;
      font-weight: 700; }
      .property--single-post .property-content__title--map {
        margin-top: 40px; }
    .property--single-post .property-content__cta {
      display: flex;
      justify-content: center;
      margin: 40px 0 0; }
    .property--single-post .property-content__text a {
      color: #9B142C; }
      .property--single-post .property-content__text a:hover {
        text-decoration: underline; }
  .property--single-post .property-content__cta .property-content__button {
    text-decoration: none;
    border: none;
    outline: none;
    border: 1px solid;
    display: inline-block;
    padding: 10px 60px;
    text-align: center;
    transition: 0.2s background;
    font-family: "Futura Bk BT", sans-serif;
    color: #ffffff;
    background: #9B142C;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.35rem;
    letter-spacing: normal;
    font-weight: 700; }
    .property--single-post .property-content__cta .property-content__button:hover {
      background: rgba(155, 20, 44, 0.8); }
  .property--single-post .property__map iframe {
    width: 100%;
    height: 200px; }
  .property--single-post .swiper {
    width: 100%;
    height: 220px; }
    .property--single-post .swiper-slide {
      background-size: cover;
      background-position: center;
      height: 100%; }
  .property--single-post .mySwiper2 {
    height: 80%;
    width: 100%; }
  .property--single-post .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0; }
    .property--single-post .mySwiper .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4;
      cursor: pointer; }
      .property--single-post .mySwiper .swiper-slide:hover {
        opacity: 0.7; }
    .property--single-post .mySwiper .swiper-slide-thumb-active {
      opacity: 1; }
      .property--single-post .mySwiper .swiper-slide-thumb-active:hover {
        opacity: 1; }

@media (min-width: 768px) {
  .property__map iframe {
    width: 100%;
    height: 400px; }
  .property-content__title--map {
    margin-top: 60px; } }
@media (min-width: 1024px) {
  .property--single-post {
    margin: 60px 0 100px;
    gap: 52px;
    margin: 120px 0; }
    .property--single-post .property-info {
      grid-area: Details; }
      .property--single-post .property-info__title-text {
        font-size: 28px;
        font-size: 1.75rem;
        line-height: 2.1rem;
        letter-spacing: normal;
        font-weight: 700; }
      .property--single-post .property-info__price {
        margin: 24px 0 14px;
        font-size: 40px;
        font-size: 2.5rem;
        line-height: 3rem;
        letter-spacing: normal;
        font-weight: 700; }
        .property--single-post .property-info__price-old {
          font-size: 24px;
          font-size: 1.5rem;
          line-height: 1.8rem;
          letter-spacing: normal;
          font-weight: 700;
          height: 1.8rem; }
      .property--single-post .property-info__address {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 1.875rem;
        letter-spacing: normal;
        font-weight: 700; }
      .property--single-post .property-info__cta {
        margin-top: 60px; }
        .property--single-post .property-info__cta .cta-btn {
          padding: 16px 100px;
          font-family: "Futura Bk BT", sans-serif;
          font-size: 24px;
          font-size: 1.5rem;
          line-height: 1.8rem;
          letter-spacing: normal;
          font-weight: 700; }
      .property--single-post .property-info__aditional span {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 1.5rem;
        letter-spacing: normal;
        font-weight: 500; }
      .property--single-post .property-info__aditional-list {
        margin-top: 20px; }
    .property--single-post .property__map iframe {
      height: 574px; }
    .property--single-post .property-content {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 1.8rem;
      letter-spacing: 0.3;
      font-weight: 500; }
      .property--single-post .property-content__title {
        margin-bottom: 28px;
        font-size: 32px;
        font-size: 2rem;
        line-height: 2.4rem;
        letter-spacing: normal;
        font-weight: 700; }
      .property--single-post .property-content__cta {
        margin: 120px 0 40px; }
    .property--single-post .property-content__cta .property-content__button {
      padding: 16px 100px;
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 1.8rem;
      letter-spacing: normal;
      font-weight: 700; }
    .property--single-post .mySwiper-2 {
      height: 280px; }
    .property--single-post .mySwiper {
      height: 120px; } }
@media (min-width: 1200px) {
  .property--single-post {
    grid-template-areas: "Gallery Details" "Content Content";
    grid-template-columns: 634px 1fr; }
    .property--single-post .property-info {
      padding: 20px; } }
@media (min-width: 768px) {
  .title-page {
    margin-top: 96px; }
    .title-page__decoration {
      width: 30px;
      height: 30px;
      margin: 0 15px -5px 0; }
    .title-page__title {
      font-size: 30px;
      font-size: 1.875rem;
      line-height: 2.25rem;
      letter-spacing: normal;
      font-weight: 700; }

  .properties-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 48px 20px; }

  .property__msg {
    padding: 2px 16px 2px 18px;
    top: 20px;
    left: 17px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.05rem;
    letter-spacing: normal;
    font-weight: 500; }

  .property--card .swiper {
    height: 248px; }
    .property--card .swiper-button-next, .property--card .swiper-button-prev {
      color: #ffffff;
      background-image: none;
      transition: 0.5s all;
      opacity: 0; }

  .property-info {
    padding: 20px 20px 24px 20px; }
    .property-info__title {
      gap: 10px;
      font-size: 12px;
      font-size: 0.75rem;
      line-height: 0.9rem;
      letter-spacing: normal;
      font-weight: 500; }
      .property-info__title-decoration {
        width: 12px;
        height: 12px; }
    .property-info__container-text {
      flex-direction: row;
      justify-content: space-between; }
    .property-info__price {
      font-size: 20px;
      font-size: 1.25rem;
      line-height: 1.5rem;
      letter-spacing: normal;
      font-weight: 700; }
      .property-info__price-old {
        height: 1.05rem;
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.05rem;
        letter-spacing: normal;
        font-weight: 700; }
    .property-info__desciption-section {
      gap: 10px; }
    .property-info__address {
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.5rem;
      letter-spacing: normal;
      font-weight: 500; }
    .property-info__cta {
      align-self: end; }
    .property-info__cta .property-info__button {
      padding: 6px 10px;
      width: 120px;
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 1.05rem;
      letter-spacing: normal;
      font-weight: 500; }
    .property-info__aditional span {
      font-size: 14px;
      font-size: 0.875rem;
      line-height: 1.05rem;
      letter-spacing: normal;
      font-weight: 500; } }
@media (min-width: 1024px) {
  .container {
    padding: 10px; }

  .title-page__decoration {
    width: 40px;
    height: 40px;
    margin: 0 20px -10px 0; }
  .title-page__title {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 3rem;
    letter-spacing: normal;
    font-weight: 700; }
  .title-page__line {
    display: inline-block;
    width: 30%;
    max-width: 400px;
    margin: 0 0 0 52px; } }
.property-form {
  margin-top: 80px; }
  .property-form__row {
    display: grid;
    width: 100%;
    gap: 22px; }
  .property-form__column {
    display: grid;
    gap: 22px; }
  .property-form__group {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .property-form__group br {
      display: none; }
  .property-form__label {
    position: relative;
    text-transform: uppercase;
    color: #000000;
    font-family: "Futura Bk BT", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2rem;
    letter-spacing: normal;
    font-weight: 700; }
    .property-form__label::before {
      content: "";
      display: inline-block;
      position: relative;
      width: 10px;
      height: 10px;
      margin-right: 13px;
      background: #9B142C; }
  .property-form .property-form__input, .property-form .property-form__text-area {
    background: #FFFFFF;
    border: 1px solid #7C7C7C;
    border-radius: 8px;
    width: 100%;
    display: block;
    color: #7C7C7C;
    outline-color: #9B142C;
    font-family: "Futura Bk BT", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: normal;
    font-weight: 700; }
    .property-form .property-form__input:focus, .property-form .property-form__input:focus, .property-form .property-form__input:active, .property-form .property-form__input:active, .property-form .property-form__text-area:focus, .property-form .property-form__text-area:focus, .property-form .property-form__text-area:active, .property-form .property-form__text-area:active {
      color: #000000; }
  .property-form .property-form__text-area {
    height: 208px;
    resize: none; }
  .property-form__cta {
    display: flex;
    justify-content: center; }
  .property-form .property-form__submit {
    margin-top: 40px;
    padding: 10px 72px;
    text-align: center;
    display: inline-block;
    border-radius: 0;
    color: #ffffff;
    background: #9B142C;
    font-family: "Futura Bk BT", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: normal;
    font-weight: 700; }
    .property-form .property-form__submit:hover {
      background: rgba(155, 20, 44, 0.8); }

@media (min-width: 1024px) {
  .property-form {
    margin-top: 80px; }
    .property-form__row {
      grid-template-columns: repeat(2, 1fr);
      gap: 80px; }
    .property-form__column {
      gap: 35px; }
    .property-form__group {
      gap: 10px; }
    .property-form__label {
      margin-bottom: 8px;
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 1.8rem;
      letter-spacing: normal;
      font-weight: 700; }
      .property-form__label::before {
        width: 16px;
        height: 16px;
        margin-right: 20px; }
    .property-form .property-form__input, .property-form .property-form__text-area {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 2.25rem;
      letter-spacing: normal;
      font-weight: 400; }
    .property-form .property-form__submit {
      margin-top: 72px;
      padding: 16px 100px;
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 2.25rem;
      letter-spacing: normal;
      font-weight: 700; } }