/* Media query manager

*/
/*     VARIABLES      */
/* ------------------ */
/* ------------------ */
/*     Animations     */
/* ------------------ */
@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4); }
  20% {
    -webkit-transform: scaleY(1); } }

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4); }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1); } }

/* ------------------ */
/*        Base        */
/* ------------------ */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 50%;
  background-color: white; }
  @media (min-width: 768px) {
    html {
      font-size: 62.5%; } }
  @media (min-width: 1600px) {
    html {
      font-size: 70%; } }

body {
  position: relative;
  box-sizing: border-box;
  background-color: #fff;
  color: #323232;
  overflow-x: hidden; }

button {
  border-color: black;
  background-color: white;
  padding: .8rem 1.2rem; }

button:focus {
  outline: 0; }

ul {
  list-style-type: none; }

/* ------------------ */
/* Main typography settings */
/* ------------------ */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 1.6rem; }

/* ------------------ */
/* h1 heading primary */
/* ------------------ */
.heading-primary,
h1 {
  font-weight: 300;
  font-size: 4rem; }

/* ------------------ */
/* h2 heading secondary */
/* ------------------ */
.heading-secondary,
h2 {
  font-weight: 300;
  font-size: 4rem;
  text-align: center; }

/* ------------------ */
/* h3 heading secondary */
/* ------------------ */
.heading-tertiary,
h3 {
  font-weight: 400;
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  color: #d3b300; }

/* ------------------ */
.u-container {
  max-width: 177rem;
  margin: 0 auto;
  padding: 1rem; }
  .u-container--mid {
    max-width: 140rem;
    margin: 0 auto;
    padding: 1rem; }
  .u-container--small {
    max-width: 98rem;
    margin: 0 auto;
    padding: 1rem; }

.u-flex-container {
  display: flex;
  justify-content: flex-start; }
  .u-flex-container--right {
    justify-content: flex-end; }

.u-relative {
  position: relative; }

.u-max {
  width: 100%;
  height: 100%; }

.u-grid {
  display: block; }
  @supports (display: grid) {
    .u-grid {
      display: grid; } }

/*     Navigation     */
/* ------------------ */
.navigation__underConstruction {
  position: fixed;
  z-index: -1;
  top: 0;
  margin: 0 auto;
  width: 100%;
  color: #fff;
  text-align: center; }

.navigation {
  position: absolute;
  z-index: 10;
  padding-top: 1rem;
  height: 7rem;
  width: 100%;
  background-color: #000;
  transition: all 1s; }
  @media (min-width: 768px) {
    .navigation {
      height: 12rem; } }
  .navigation__logo {
    position: relative;
    display: inline-block;
    height: 6rem;
    z-index: 2; }
    .navigation__logo__link:link, .navigation__logo__link:visited {
      color: #fff; }
    .navigation__logo__image {
      cursor: pointer;
      position: absolute;
      left: 2rem;
      height: 100%;
      width: auto;
      display: none; }
      .navigation__logo__image--alt {
        display: block; }
      @media (min-width: 768px) {
        .navigation__logo__image {
          display: block;
          height: 10rem; }
          .navigation__logo__image--alt {
            display: none; } }
    .navigation__logo__text {
      position: absolute;
      left: 10rem;
      top: 1rem;
      font-size: 2rem;
      height: 100%;
      width: 20rem; }
  .navigation__contact {
    position: absolute;
    z-index: 2;
    font-size: 2.5rem;
    text-decoration: none;
    color: #fff;
    top: 1.85rem;
    right: 10rem;
    height: 5rem;
    text-align: center;
    cursor: pointer;
    transition: all .5s; }
    .navigation__contact ion-icon {
      padding-top: 0.1rem; }
    .navigation__contact span {
      display: none; }
    .navigation__contact:hover {
      transform: translateY(-2px); }
    @media (min-width: 580px) {
      .navigation__contact {
        top: 1.5rem; }
        .navigation__contact ion-icon {
          display: none; }
        .navigation__contact span {
          display: inline-block; } }
    @media (min-width: 768px) {
      .navigation__contact {
        top: 3.8rem; } }
  .navigation__button {
    position: absolute;
    z-index: 10;
    top: 1rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    text-align: center;
    cursor: pointer; }
    @media (min-width: 768px) {
      .navigation__button {
        top: 3.3rem; } }
  .navigation__icon {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin-top: 2.5rem; }
    .navigation__icon, .navigation__icon::after, .navigation__icon::before {
      display: inline-block;
      width: 3rem;
      height: 2px;
      transition: background-color 1s;
      background-color: #fff; }
    .navigation__icon::after, .navigation__icon::before {
      content: "";
      position: absolute;
      left: 0;
      transition: all .2s; }
    .navigation__icon::before {
      top: -.8rem; }
    .navigation__icon::after {
      top: .8rem; }
  .navigation__button:hover .navigation__icon::before {
    top: -1rem; }
  .navigation__button:hover .navigation__icon::after {
    top: 1rem; }
  .navigation__checkbox:checked + .navigation__button {
    position: fixed; }
  .navigation__checkbox:checked ~ .navigation__contact {
    position: fixed; }
  .navigation__checkbox:checked + .navigation__button .navigation__icon {
    background-color: transparent; }
    .navigation__checkbox:checked + .navigation__button .navigation__icon::before {
      top: 0;
      transform: rotate(135deg);
      background-color: #fff; }
    .navigation__checkbox:checked + .navigation__button .navigation__icon::after {
      top: 0;
      transform: rotate(-135deg);
      background-color: #fff; }
  .navigation__checkbox {
    display: none; }
  .navigation__checkbox:checked ~ .navigation__nav {
    transform: translateX(0); }
  .navigation__nav {
    position: fixed;
    top: 0;
    right: 0;
    transition: transform .8s;
    transform: translateX(32rem);
    will-change: transform;
    height: 100%;
    width: 32rem;
    background-color: #000; }
  .navigation__list {
    list-style: none;
    text-align: center;
    width: 100%;
    margin-top: 7rem; }
    @media (min-width: 768px) {
      .navigation__list {
        margin-top: 10rem; } }
  .navigation__item {
    margin: 1rem; }
  .navigation__link:link, .navigation__link:visited {
    display: inline-block;
    font-size: 2.5rem;
    width: 100%;
    font-weight: 300;
    padding: 1rem 2rem;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
    background-size: 230%;
    transition: all .5s; }
  .navigation__link:hover, .navigation__link:active {
    background-position: 100%;
    color: #d3b300;
    transform: translateX(1rem); }
  .navigation.js--fixed {
    position: fixed;
    background-color: black;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    height: 7rem !important; }
    .navigation.js--fixed .navigation__logo__image {
      display: none; }
      .navigation.js--fixed .navigation__logo__image--alt {
        display: block; }
    .navigation.js--fixed .navigation__checkbox:checked ~ .navigation__contact {
      color: #fff;
      position: fixed; }
    .navigation.js--fixed .navigation__logo__image {
      height: 6rem !important; }
    .navigation.js--fixed .navigation__contact {
      top: 1.6rem; }
    .navigation.js--fixed .navigation__button {
      top: 1rem; }

/* ------------------ */
/*      Buttons       */
/* ------------------ */
.btn:link, .btn:visited {
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem 4rem;
  display: inline-block;
  margin: 2.5rem 1rem;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn-text:link, .btn-text:visited {
  color: #f34a4a;
  display: inline-block;
  text-decoration: none;
  padding: 3px;
  transition: all .2s; }

.btn-text:hover {
  background-color: #f34a4a;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  transform: translateY(0); }

.btn-text--inverse:link, .btn-text--inverse:visited {
  color: #fff;
  border-bottom: 1px solid #fff; }

.btn-text--inverse:hover {
  background-color: #fff;
  color: #e4c200; }

/* ------------------ */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .5s; }
  .popup__show--js {
    opacity: 1;
    visibility: visible; }
  .popup__header {
    margin-top: 0rem; }
  .popup__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 130rem;
    height: 50rem;
    border-radius: 3px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all .5s .2s; }
  .popup__show--js .popup__box {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; }
  .popup__close {
    color: #323232;
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 3rem;
    text-decoration: none;
    display: inline-block;
    cursor: pointer; }
    .popup__close:hover {
      color: #e4c200; }

.form {
  position: relative; }
  .form__group:not(:last-child) {
    margin-bottom: 1rem; }
  .form__input {
    font-family: inherit;
    color: inherit;
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    background-color: white;
    border: none;
    border-bottom: 3px solid transparent;
    width: 100%;
    display: block;
    transition: all .3s; }
    .form__input:focus {
      outline: none;
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
      border-bottom: 3px solid #e09f3d; }
      .form__input:focus:invalid {
        border-bottom: 3px solid #f34a4a; }
    .form__input::-webkit-input-placeholder {
      color: #323232; }
  .form__input:placeholder-shown + .form__label:not(.form__label--textarea) {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4rem); }
  .form__label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-left: 1.5rem;
    margin-top: .7rem;
    display: block;
    color: #fff;
    transition: all .3s; }
  .form__submit {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20rem;
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: .5rem;
    transition: all 0.2s;
    color: #fff;
    background-color: #d3b300;
    border: 1px solid #000; }
    .form__submit:hover {
      color: #fff;
      background-color: #d3b300; }
  .form__gap {
    height: 5rem; }

.loading {
  display: none; }

.js--onLoad .loading {
  display: block;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-image: linear-gradient(to bottom right, white, #3f3f3f); }
  .js--onLoad .loading__title {
    font-size: 3rem;
    position: absolute;
    top: 35%;
    LEFT: 50%;
    transform: translateX(-50%); }
    .js--onLoad .loading__title--nurtured {
      color: #f34a4a; }
    .js--onLoad .loading__title--landscapes {
      color: #e09f3d; }
  .js--onLoad .loading__message {
    position: absolute;
    top: 40%;
    LEFT: 50%;
    transform: translateX(-50%); }
  .js--onLoad .loading__img {
    border-radius: 100%;
    position: absolute;
    border: 1px solid #f34a4a;
    animation: up 1s;
    animation-iteration-count: infinite;
    transition: 2s;
    border-bottom: none;
    border-right: none;
    animation-timing-function: linear;
    margin-left: -50px;
    margin-top: -65px; }

@keyframes up {
  from {
    transform: rotate(0deg); }
  50% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(360deg); } }
  .js--onLoad .loading__icon #loading__icon__img1 {
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%; }
  .js--onLoad .loading__icon #loading__icon__img2 {
    width: 90px;
    height: 90px;
    left: 50.35%;
    top: 50.7%;
    animation-delay: .2s; }
  .js--onLoad .loading__icon #loading__icon__img3 {
    width: 80px;
    height: 80px;
    left: 50.70%;
    top: 51.4%;
    animation-delay: .4s; }
  .js--onLoad .loading__icon #loading__icon__img4 {
    width: 70px;
    height: 70px;
    left: 51.05%;
    top: 52.1%;
    animation-delay: .6s; }
  .js--onLoad .loading__icon #loading__icon__img5 {
    width: 60px;
    height: 60px;
    left: 51.40%;
    top: 52.8%;
    animation-delay: .8s; }

.none-found {
  margin: 10rem;
  font-size: 2rem;
  text-align: center; }
  @supports (display: grid) {
    .none-found {
      grid-column: 1/-1; } }

.let {
  position: relative;
  margin: 5rem;
  border: 1px solid #a7a7a7;
  font-size: 1.3rem; }
  .let__link {
    cursor: pointer;
    text-decoration: none;
    color: #323232; }
  .let:hover .let__text {
    height: 75%; }
  .let__keyDetails {
    position: absolute;
    left: -1rem;
    top: 1rem;
    background-color: #d3b300;
    color: white;
    padding: .5rem 1rem;
    border-radius: 1rem 0;
    font-weight: 500;
    z-index: 1; }
  .let__available {
    position: absolute;
    top: 0rem;
    right: 0rem;
    width: 20rem;
    height: 4rem;
    background-color: #d3b300;
    transform: rotate(35deg) translateX(5.5rem) translateY(-3rem);
    text-align: center;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: white; }
  .let__image {
    position: relative;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    width: 100%;
    height: 50rem;
    overflow: hidden; }
    @supports (display: grid) {
      .let__image {
        height: 20rem; } }
  .let__text {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    height: 0px;
    bottom: -5rem;
    padding: 1rem 2rem 0 2rem;
    left: 0;
    width: 100%;
    transition: .5s all;
    z-index: 1;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical; }
  .let__location {
    text-align: center;
    text-transform: uppercase;
    margin-top: 1rem; }
  .let__price {
    text-align: center;
    margin-top: .5rem;
    font-size: 1.6rem;
    color: #d3b300; }
  .let__distance {
    font-size: 1.2rem;
    text-align: center;
    margin: .5rem 0; }

.search {
  position: relative; }
  .search::after {
    display: block;
    margin: 2rem auto 0 auto;
    height: 2px;
    content: " ";
    text-shadow: none;
    background-color: #999;
    width: 50%; }
  .search__grid {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #ad9300;
    background-color: #d3b300;
    padding: 2.5rem;
    font-size: 1.8rem;
    width: 90%;
    background-color: rgba(63, 63, 63, 0.9);
    color: #fff;
    transition: transform .3s;
    text-align: center; }
    @media (min-width: 768px) {
      .search__grid {
        font-size: 1.6rem; } }
    @media (min-width: 400px) {
      @supports (display: grid) {
        .search__grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          justify-items: center;
          align-items: center;
          grid-column-gap: 2rem; } } }
    @media (min-width: 768px) {
      @supports (display: grid) {
        .search__grid {
          grid-template-columns: repeat(4, 1fr); } } }
    @media (min-width: 1200px) {
      .search__grid {
        top: -5rem; }
        @supports (display: grid) {
          .search__grid {
            grid-template-columns: repeat(6, 1fr); } } }
  .search select {
    height: 3.5rem;
    font-size: 1.4rem;
    font-weight: 300;
    padding: .5rem 1rem;
    width: 100%;
    margin: 2rem auto 1rem auto; }
    @media (min-width: 768px) {
      .search select {
        font-size: 1.2rem; } }
  .search input[type='text'] {
    height: 3.5rem;
    font-size: 1.4rem;
    font-weight: 300;
    padding: .5rem 1rem;
    width: 100%;
    margin: 2rem auto 1rem auto; }
    @media (min-width: 768px) {
      .search input[type='text'] {
        font-size: 1.2rem; } }
    @media (min-width: 768px) {
      .search input[type='text'] {
        font-size: 1.2rem; } }
    @media (min-width: 1200px) {
      @supports (display: grid) {
        .search input[type='text'].search__advanced {
          grid-column: 3; } } }
  .search__type {
    width: 100%;
    font-size: 2.1rem; }
    @media (min-width: 400px) {
      @supports (display: grid) {
        .search__type {
          grid-column: auto / span 2; } } }
    @media (min-width: 768px) {
      @supports (display: grid) {
        .search__type {
          grid-column: auto / span 4; } } }
    @media (min-width: 1200px) {
      @supports (display: grid) {
        .search__type {
          grid-column: auto / span 2;
          font-size: 1.6rem; } } }
    .search__type__select {
      display: inline-block;
      border-bottom: 2px solid transparent;
      text-align: center;
      width: 49%;
      cursor: pointer;
      transition: all .3s;
      height: 3.5rem;
      line-height: 3.5rem;
      margin: 2rem auto 1rem auto; }
      @media (min-width: 400px) {
        .search__type__select {
          width: 30%; } }
      .search__type__select .on {
        display: none; }
      .search__type__select:hover {
        color: #d3b300; }
      .search__type__select.selected .on {
        display: inline-block; }
      .search__type__select.selected .off {
        display: none; }
  .search__area {
    width: 100%; }
    .search__area * {
      display: none; }
  .search__location {
    width: 100%; }
  .search__min__rent, .search__min__buy {
    display: none;
    float: left;
    width: 40%; }
  .search__max__rent, .search__max__buy {
    display: none;
    float: right;
    width: 40%; }
  .search__bedrooms {
    width: 100%; }
  .search.rent .search__area .search__area__rent {
    display: inline-block; }
  .search.rent .search__min__rent {
    display: inline-block; }
  .search.rent .search__max__rent {
    display: inline-block; }
  .search.rent.advanced .search__advanced {
    display: inline-block; }
  .search.buy .search__area .search__area__buy {
    display: inline-block; }
  .search.buy .search__min__buy {
    display: inline-block; }
  .search.buy .search__max__buy {
    display: inline-block; }
  .search.buy.advanced .search__advanced {
    display: inline-block; }
  .search__button {
    width: 15rem;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 1rem 0 2rem 0;
    height: 3.5rem;
    color: #fff;
    background-color: #d3b300;
    border: 2px solid #000;
    border-radius: .5rem;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    cursor: pointer; }
    .search__button:hover {
      background-color: #e4c200;
      color: #fff; }
    @media (min-width: 400px) {
      @supports (display: grid) {
        .search__button {
          grid-column: auto / span 2;
          justify-self: center; } } }
    @media (min-width: 768px) {
      @supports (display: grid) {
        .search__button {
          grid-column: auto / span 4; } } }
    @media (min-width: 1200px) {
      .search__button {
        margin: 2rem 0 1rem 0;
        font-size: 1.2rem; }
        @supports (display: grid) {
          .search__button {
            grid-column: end;
            grid-row: 1; } } }
  .search__results__api {
    transition: all .5s;
    padding-top: 45rem; }
    @supports (display: grid) {
      .search__results__api {
        padding-top: 60rem; }
        @media (min-width: 400px) {
          .search__results__api {
            padding-top: 40rem; } }
        @media (min-width: 768px) {
          .search__results__api {
            padding-top: 30rem;
            display: grid;
            grid-template-columns: 1fr 1fr; } }
        @media (min-width: 1200px) {
          .search__results__api {
            padding-top: 10rem;
            grid-template-columns: repeat(3, 1fr); } } }
  .search__advanced {
    display: None; }
    .search__advanced__button {
      position: absolute;
      bottom: -1.5rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 20rem;
      text-transform: uppercase;
      font-size: 1.5rem;
      font-weight: 500;
      color: #3f3f3f;
      border: 1px solid #d3b300;
      border-radius: .5rem;
      -webkit-transition: background-color .3s;
      transition: background-color .3s;
      cursor: pointer; }
      .search__advanced__button:hover {
        background-color: #3f3f3f;
        color: #fff; }
      .search__advanced__button .active {
        background-color: #3f3f3f;
        color: #fff; }
      .search:not(.advanced) .search__advanced__button--2 {
        display: none; }
      .search.advanced .search__advanced__button--1 {
        display: none; }
      @media (min-width: 768px) {
        .search__advanced__button {
          font-size: 1rem; } }
  .search.advanced .search__results__api {
    padding-top: 60rem; }
    @supports (display: grid) {
      .search.advanced .search__results__api {
        padding-top: 80rem; }
        @media (min-width: 400px) {
          .search.advanced .search__results__api {
            padding-top: 55rem; } }
        @media (min-width: 768px) {
          .search.advanced .search__results__api {
            padding-top: 38rem; } }
        @media (min-width: 1200px) {
          .search.advanced .search__results__api {
            padding-top: 15rem; } } }
  .search__details {
    text-align: center;
    grid-column: 1 / -1; }
    .search__details__title {
      font-size: 2rem;
      text-transform: uppercase; }
    .search__details__count {
      position: relative;
      color: #d3b300; }
      .search__details__count::after {
        display: block;
        margin: 2rem auto 0 auto;
        height: 2px;
        content: " ";
        text-shadow: none;
        background-color: #999;
        width: 150px; }
  .search__loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px; }
    .search__loading__box {
      position: relative;
      display: none;
      height: 100%; }
    .search__loading > div {
      background-color: #d3b300;
      height: 100%;
      width: 6px;
      display: inline-block;
      -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
      animation: sk-stretchdelay 1.2s infinite ease-in-out; }
    .search__loading .search__loading--rect2 {
      -webkit-animation-delay: -1.1s;
      animation-delay: -1.1s; }
    .search__loading .search__loading--rect3 {
      -webkit-animation-delay: -1.0s;
      animation-delay: -1.0s; }
    .search__loading .search__loading--rect4 {
      -webkit-animation-delay: -0.9s;
      animation-delay: -0.9s; }
    .search__loading .search__loading--rect5 {
      -webkit-animation-delay: -0.8s;
      animation-delay: -0.8s; }

.card {
  margin: 2rem 0;
  width: 100%;
  text-align: center; }
  .card__icon {
    font-size: 4rem;
    color: #d3b300; }
  .card__title {
    font-size: 2rem;
    color: #f34a4a; }
  .card__subtitle {
    font-size: 2rem; }
  .card__details {
    margin-top: 1rem;
    font-size: 1.4rem; }
    .card__details--small {
      margin-top: 1rem;
      font-size: 1.2rem; }
  .card__lb {
    display: block; }

.ieError {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f34a4a;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  z-index: 9999;
  padding: 2rem; }
  @supports (display: grid) {
    .ieError {
      display: none; } }
  .ieError a:link,
  .ieError a:visited {
    color: #d3b300; }
  .ieError a:hover {
    color: gold; }

/*    Header block    */
/* ------------------ */
.header {
  position: relative;
  height: 70vh;
  background-image: url("/resources/img/hero-image.jpg");
  background-size: cover;
  background-position: center right; }
  .header__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    font-weight: 400;
    text-shadow: 0px 0px 0.7rem #000;
    color: #fff;
    text-align: center;
    width: 90%;
    text-transform: uppercase;
    letter-spacing: 1rem;
    padding-right: 1rem; }
    .header__title span {
      color: #fff;
      display: block;
      font-size: 3rem;
      text-transform: none;
      letter-spacing: .5rem; }

/* ------------------ */
.section {
  padding: 4rem;
  background-color: white;
  color: #323232; }
  @media (min-width: 1024px) {
    .section {
      padding: 5rem; } }
  .section--alt {
    background-color: #3f3f3f;
    color: white; }
  @media (min-width: 768px) {
    @supports (display: grid) {
      .section__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        align-items: center;
        grid-column-gap: 5rem; } } }

/*       Footer       */
/* ------------------ */
.footer {
  font-size: 1.4rem; }
  .footer__header {
    color: #fff;
    font-weight: 500;
    margin-bottom: 1rem; }
  .footer__link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: color .3s; }
    .footer__link:link, .footer__link:visited {
      color: gold; }
    .footer__link:hover, .footer__link:active {
      color: #d3b300; }
  .footer__box {
    padding: 2rem;
    color: white;
    background-color: #3f3f3f; }
  .footer__grid > div {
    margin: 2rem 2rem; }
  @supports (display: grid) {
    @media (min-width: 600px) {
      .footer__grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; } }
    @media (min-width: 1200px) {
      .footer__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center; } } }
  .footer__contacts > a {
    display: block; }
  .footer__links {
    text-align: center; }
    .footer__links .footer__link:not(:last-child)::after {
      content: " - ";
      margin: 0 1rem; }
  .footer__map {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0; }
    .footer__map iframe {
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      position: absolute; }
    @supports (display: grid) {
      @media (min-width: 600px) {
        .footer__map {
          grid-column: 2 / span 2;
          grid-row: 1 / span 2; } } }
  .footer__copyright {
    display: block;
    font-size: 1.3rem;
    text-align: center;
    margin: 2rem; }
  .footer__social {
    font-size: 2.5rem; }
    .footer__social__links {
      display: inline-block;
      margin-right: 0 2rem; }

.sps--s {
  color: #fff;
  text-shadow: 0 5px 5px #3f3f3f; }

.sps--p {
  color: #25b8e3; }

.sps--w {
  color: #da0797; }

.section-partners {
  text-align: center;
  overflow: hidden; }
  .section-partners__partner {
    display: inline-block;
    margin: 3rem;
    padding: 2rem;
    transition: transform .3s; }
    .section-partners__partner:hover {
      transform: translateY(-1rem); }
    .section-partners__partner:active {
      transform: translateY(-0.5rem); }
  .section-partners__image {
    height: 6rem;
    width: auto; }
  .section-partners__slider .slick-prev,
  .section-partners__slider .slick-next {
    font-family: inherit;
    top: 110%;
    height: 4rem;
    width: 4rem;
    left: 50%;
    transform: translateX(-140%); }
    .section-partners__slider .slick-prev::before,
    .section-partners__slider .slick-next::before {
      font-size: 3rem;
      font-weight: 300;
      color: #3f3f3f; }
  .section-partners__slider .slick-prev {
    margin-right: 7rem; }
  .section-partners__slider .slick-next {
    margin-left: 7rem; }

.property {
  padding-top: 7.5rem;
  color: #3f3f3f; }
  .property__image img {
    height: 50vh;
    width: auto; }
  .property__nav {
    margin-top: 10rem;
    text-align: center; }
    .property__nav li {
      padding: 0 2rem;
      border: 1px solid #000;
      background-color: #d3b300;
      display: inline-block; }
      .property__nav li a:link, .property__nav li a:visited {
        color: #fff;
        text-decoration: none;
        cursor: pointer; }
      .property__nav li a:hover, .property__nav li a:active {
        color: #3f3f3f; }
  .property__details {
    margin: 0 4rem;
    margin-top: 10rem; }
  .property__title {
    text-align: center;
    font-size: 3rem; }
  .property__price {
    font-size: 2.5rem;
    margin: 2.5rem;
    text-align: center;
    color: #d3b300; }
  .property__available {
    text-align: center; }
  .property__subtitle {
    text-align: center;
    color: #f34a4a;
    font-weight: 500; }
  .property__keyfacts {
    margin: 5rem 0;
    text-align: center; }
    .property__keyfacts ion-icon {
      font-size: .7em;
      color: #d3b300; }
  .property__location {
    margin: 5rem 2rem;
    height: 40rem;
    overflow: hidden;
    position: relative;
    border: 2px solid #3f3f3f; }
    .property__location iframe {
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      position: absolute; }
  .property__epc img {
    height: 20rem;
    width: auto; }
  @supports (display: grid) {
    @media (min-width: 768px) {
      .property__epc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-content: center;
        justify-items: center; } } }
  .property__slider .slick-prev,
  .property__slider .slick-next {
    font-size: 4rem; }
    .property__slider .slick-prev::before,
    .property__slider .slick-next::before {
      font-size: 4rem;
      font-weight: 300;
      color: #d3b300; }
  .property__slider .slick-prev {
    margin-left: 5rem; }
  .property__slider .slick-next {
    margin-right: 6rem; }

.section-about__image,
.section-student__image {
  margin-top: 2rem;
  display: inline-block;
  width: 100%;
  height: auto; }

.section-about__text,
.section-student__text {
  margin-top: 2rem;
  display: inline-block;
  width: 100%; }

.page__top {
  padding-top: 10rem; }

@media (min-width: 768px) {
  @supports (display: grid) {
    .page__section__grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      justify-items: center;
      grid-column-gap: 3rem; } } }

@media (min-width: 768px) {
  @supports (display: grid) {
    .page__section__grid--large {
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-items: center;
      grid-column-gap: 3rem; } } }

.page__section__text {
  padding: 2rem; }
  .page__section__text--center {
    padding: 2rem;
    text-align: center; }

.page__section__h3 {
  padding: 1rem 2rem; }

.page__section__text {
  padding: 2rem; }

.page__section__list {
  padding: 1rem 2rem 5rem 2rem; }

.page__section__item {
  color: #d3b300; }
  .page__section__item span {
    margin-left: 1rem;
    color: #323232; }
  .page__section__item ul {
    margin-left: 2rem; }
  .page__section__item span.page__section__highlight {
    color: #f34a4a; }

.page__section__details {
  color: #323232;
  font-size: 1.3rem;
  margin: 0 0 2rem 4rem; }

.page__section::after {
  display: block;
  margin: 2rem auto 0 auto;
  height: 2px;
  content: " ";
  text-shadow: none;
  background-color: #999;
  width: 50%; }

.contactus {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/resources/img/contact-us.jpg");
  background-size: cover;
  background-repeat: no-repeat; }

.banner--maintenance {
  height: 30rem;
  background-image: url("/resources/img/maintenance.jpg");
  background-size: cover;
  background-attachment: right;
  background-position: right; }

.landing__background {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("/resources/img/sailbridge.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem 0; }

.search__type__Student__hack {
	color: #fff;
}
