@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, password, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

.input-field>label{
  pointer-events: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.w-full {
  width: 100% !important;
}

.h-full {
  height: 100% !important;
}

.material-icons.rounded {
  border-radius: 50%;
  padding: 24px;
}

.buttons {
  display: block;
  height: 100%;
  overflow: hidden;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 991px) {
  .header {
    flex-direction: column;
    overflow: hidden;
  }
  .header.active {
    height: 100vh;
  }
}
.header .mobile {
  display: none;
}
@media screen and (max-width: 991px) {
  .header .mobile {
    display: block;
  }
}
.header .desktop {
  display: block;
}
@media screen and (max-width: 991px) {
  .header .desktop {
    display: none;
  }
}
.header .infos {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .header .infos {
    height: 64px;
    display: flex;
  }
}
.header .infos .brand-logo {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .header .infos .brand-logo {
    font-size: 16px;
  }
}
.header .infos .brand-logo i {
  margin-right: 8px;
}
.header .infos .btn-menu-mobile {
  display: none;
  cursor: pointer;
  position: absolute;
  left: 24px;
  top: 20px;
}
@media screen and (max-width: 991px) {
  .header .infos .btn-menu-mobile {
    display: block;
  }
}
.header .navigation {
  border: none;
  box-shadow: none;
  background: transparent;
  width: auto;
}
@media screen and (max-width: 991px) {
  .header .navigation {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .header .navigation ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  .header .navigation ul li {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .header .navigation ul li.menu-section {
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 32px;
    padding: 32px 16px 0;
  }
}
.header .navigation .dropdown-content {
  display: none;
  top: 64px !important;
}

footer {
  padding-top: 40px;
}
@media screen and (max-width: 991px) {
  footer .section {
    margin-bottom: 32px;
  }
  footer .section:last-of-type {
    margin-bottom: 0;
  }
}
footer .section-title {
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 20px;
}
footer .text {
  font-size: 14px;
  line-height: 20px;
}
footer .properties {
  width: 100%;
}
footer .properties .property {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  color: #fff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 16px;
}
footer .properties .property:hover {
  opacity: 0.8;
}
footer .properties .property .image {
  width: 60px;
  height: 40px;
  margin-right: 16px;
}
footer .properties .property .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
footer .properties .property .details .property-title {
  margin-bottom: 8px;
  font-size: 18px;
}
footer .properties .property .details .info {
  float: left;
  font-size: 12px;
  margin-right: 8px;
}
footer .link {
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  margin-bottom: 8px;
}
footer .link.link-bold {
  font-weight: bold;
}
footer .link:hover {
  opacity: 0.8;
}
footer .copyright {
  width: 100%;
  padding: 15px 0;
  margin-top: 40px;
  position: relative;
}
footer .copyright .social-media {
  margin-top: 16px;
  position: absolute;
  bottom: 14px;
  right: 24px;
}
@media screen and (max-width: 991px) {
  footer .copyright .social-media {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
footer .copyright .social-media ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  footer .copyright .social-media ul {
    justify-content: center;
  }
}
footer .copyright .social-media ul li {
  margin-left: 16px;
}

.main {
  padding-top: 65px;
  min-height: calc(100vh - 330px);
}

.whyus {
  margin-top: 35px;
}

.title {
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 24px;
}

.title_rent_buy{
  text-transform: uppercase;
  font-size: 24px;
  font-weight: normal;
}

.list li {
  margin-bottom: 4px;
}
.list li i.icon {
  color: #22aba1;
  font-size: 16px;
  margin-right: 10px;
}

img.fixed {
  width: 100%;
  height: 300px;
}

.block-content {
  margin-bottom: 44px;
}
.block-content a {
  color: #22aba1;
}
.block-content a:hover {
  color: #179088;
}

.section-heading {
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 30px;
}

.section-heading-subtitle {
  margin-bottom: 32px;
}

.auth h1 {
  margin: 20px 0 50px;
}
.auth h4 {
  margin: 20px 0 10px;
}
.auth .divider {
  margin-bottom: 30px;
}
.auth .remember {
  margin: 10px 10px 10px 15px;
}
@media screen and (max-width: 600px) {
  .auth .card {
    padding-top: 0 !important;
    box-shadow: none;
  }
}
.auth .buttons a:hover,
.auth .buttons button:hover {
  opacity: 0.7;
}
.auth .buttons a {
  margin-left: 20px;
  margin-right: 20px;
}

.searchbar {
  margin-top: 30px;
}
.searchbar .group {
  padding: 20px 0;
  border-bottom: 1px solid #fff;
}
.searchbar .title{
  font-size: 24px;
  font-weight: normal;
}
@media screen and (max-width: 991px) {
  .searchbar .title{
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .title_rent_buy{
    text-align: center;
  }
}

.searchbar .active label.light {
  color: #fff !important;
  top: -10px;
}
.searchbar input,
.searchbar select {
  max-width: 100%;
}
.searchbar .price {
  padding-left: 9px !important;
  padding-right: 9px !important;
  box-sizing: border-box !important;
}
.searchbar label {
  color: #757575 !important;
  font-weight: 400;
  left: 9px;
  top: 3px;
}
.searchbar label.light.active {
  color: #fff !important;
  top: -10px;
}
.searchbar .light.checkbox label {
  color: #fff !important;
}
.searchbar .light.checkbox [type=checkbox].filled-in:not(:checked) + span:not(.lever):after {
  background-color: #fff !important;
  border: 1px solid #99adab !important;
}
.searchbar .light .helper-text {
  color: #fff !important;
}
.searchbar .btn {
  background-color: #ffffff;
  color: #000;
  height: 3rem;
  min-width: 100%;
}
.searchbar .btn:hover {
  background-color: #2bbbad !important;
  color: #fff !important;
}

.main-gallery,
.thumbnail-gallery {
  height: 500px;
  position: relative;
}
.main-gallery .flickity-page-dots,
.thumbnail-gallery .flickity-page-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.main-gallery .flickity-page-dots .dot,
.thumbnail-gallery .flickity-page-dots .dot {
  background: #fff;
}
.main-gallery .gallery-cell,
.thumbnail-gallery .gallery-cell {
  width: 100%;
  height: 100%;
}
.main-gallery .gallery-cell img,
.thumbnail-gallery .gallery-cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-gallery .flickity-button,
.thumbnail-gallery .flickity-button {
  background: transparent;
}
.main-gallery .flickity-button svg,
.thumbnail-gallery .flickity-button svg {
  fill: #fff;
}
.properties-cards {
  padding: 0 60px;
}

.properties-cards .card {
  width: 100%;
}
.properties-cards .card-title {
color: #000;
  display: flex;
}
.properties-cards .card-title:hover {
  color: #26a69a;
}
.properties-cards .card-title h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
  height: 70px;
}
.properties-cards .address {
  margin-top: 10px;
  color: #555;
  display: flex;
}
.properties-cards .address .material-icons {
  color: #26a69a;
  margin-right: 5px;
}
.properties-cards .address span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.properties-cards .rattings {
  margin-bottom: 0;
}
.properties-cards .rattings .price {
  font-size: 24px;
  margin-top: 16px;
}
.properties-cards .rattings {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.stars{
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .properties-cards .rattings{
    justify-content: flex-start;
  }
   .stars{
     justify-content: center;
   }
}
.properties-cards .rattings .stars .material-icons {
  color: #555;
}
.properties-cards .rattings .stars .material-icons.active {
  color: #f39c12;
}
.properties-cards .card-action {
  display: flex;
  flex-wrap: wrap;
}
.properties-cards .card-action .card-action-item {
  display: flex;
  align-items: center;
  margin: 4px 10px;
}
.properties-cards .card-action .card-action-item .material-icons {
  color: #26a69a;
  margin-right: 5px;
}

.slider-text {
  width: 100%;
  min-height: 140px;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.slider-text p {
  width: 100%;
  max-width: 700px;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  line-height: 22px;
}

.card {
  margin-bottom: 48px;
}
.card .collection-header h5 {
  font-size: 15px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
}
.card .collection-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.card .collection-list li {
  padding: 12px 24px;
  border-bottom: 1px solid #e0e0e0;
}
.card .collection-list li a {
  display: block;
}
.card .collection-list li:hover a {
  text-decoration: underline;
}
.card .collection-list li:last-of-type {
  border-color: transparent;
}
.card .card-image-lg {
  height: 250px;
}
.card .card-image-lg img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-photo {
  width: 100%;
  height: 100px;
  text-align: center;
  margin-bottom: 24px;
}
.card-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-content {
  padding: 24px;
  font-size: 16px;
  line-height: 1.5rem;
}
.card-content.no-spacing {
  padding: 0;
}
.card-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: decimal;
}
.card-content ul {
  list-style: circle;
  padding-left: 24px;
  margin-bottom: 16px;
}
.card-content ul li {
  list-style-type: inherit;
}
.card-content table {
  margin: 16px 0;
}
.card-content table tr,
.card-content table td {
  padding: 8px;
  border: 1px solid #e0e0e0;
}
.card-content p {
  margin-bottom: 16px !important;
}
.card-content b,
.card-content strong {
  font-weight: bold !important;
}

.list-item-border {
  display: flex;
  list-style: none !important;
  padding-left: 0px !important;
}
.list-item-border li {
  padding: 0 8px;
  margin: 4px 0;
  border-right: 1px solid #e0e0e0;
  list-style-type: none !important;
}
.list-item-border li:first-of-type {
  padding-left: 0;
}
.list-item-border li:last-of-type {
  border: none;
}

.comment-form {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}
.comment-form h6 {
  font-weight: bold;
}

.login h6 {
  margin-bottom: 24px;
}

.comment {
  margin-top: 24px;
  margin-bottom: 48px;
}
.comment .image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 48px;
}
@media screen and (max-width: 1600px) {
  .comment .image {
    padding: 0 24px 16px;
  }
}
@media screen and (max-width: 1300px) {
  .comment .image {
    padding: 0 8px 16px;
  }
}
@media screen and (max-width: 991px) {
  .comment .image {
    padding: 0 24px;
  }
}
@media screen and (max-width: 600px) {
  .comment .image {
    display: none;
  }
}
.comment .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.comment .image img.default {
  opacity: 0.6;
}
.comment .author {
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 8px;
}
.comment .author .time {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.card-block {
  margin: 35px auto 30px;
}
.card-block .card {
  padding: 30px;
}

.container {
  width: 100% !important;
}

.text {
  margin-bottom: 16px;
  line-height: 24px;
  width: 100%;
}
.text p {
  line-height: revert;
  margin-bottom: 16px !important;
}
.text table {
  width: 100%;
}
.text table tr {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.text table td {
  padding: 14px;
}
.text ol {
  padding-left: 24px;
  margin-bottom: 16px;
  list-style: decimal;
}
.text ul {
  list-style: circle;
  padding-left: 24px;
  margin-bottom: 16px;
}
.text ul li {
  list-style-type: inherit;
}
.text ul.list {
  list-style: none;
  padding-left: 0;
}
.text ul.list li {
  position: relative;
  padding-left: 24px;
}
.text ul.list li::before {
  content: "✓";
  width: 20px;
  height: 14px;
  color: #4db6ac;
  position: absolute;
  font-size: 20px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.text b,
.text strong {
  font-weight: bold !important;
}
.text .img-responsive {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

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

h3 {
  font-size: 25px;
  line-height: 33px;
}

h4 {
  font-size: 24px;
  line-height: 32px;
}

h5 {
  font-size: 20px;
  line-height: 28px;
}

.wrapper {
  display: inherit;
  align-items: inherit;
  justify-content: inherit;
  flex-direction: inherit;
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .wrapper {
    width: 100%;
  }
}

.input-select,
.select-field {
  margin-bottom: 24px;
}
.input-select label,
.select-field label {
  top: 3px;
  left: 9px;
}

.select-field select {
  padding: 5px 4px;
  border: 1px solid transparent;
  border-bottom-color: #9e9e9e;
}
.select-field select.invalid {
  border-bottom: 2px solid #F44336;
}
.select-field select.invalid ~ .helper-text[data-error] {
  color: #F44336;
  margin-top: 8px;
}
.select-field.active label {
  transform: translateY(-20px) scale(0.8);
  transform-origin: 0 0;
}

.password{
  color: #9e9e9e;
}

.input-field-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.input-field-group p {
  color: #5a5a5a;
  display: block;
  margin-bottom: 24px;
  width: 100%;
}

.checkbox {
  margin-right: 32px;
  margin-bottom: 24px;
}
.checkbox span {
  padding-left: 28px !important;
  line-height: 22px !important;
}

.properties-list {
  width: 100%;
  list-style: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.properties-list li {
  list-style-type: none;
}
.properties-list li:last-of-type {
  margin-bottom: 0;
}
.properties-list li .image {
  width: 100%;
  height: 100px;
  padding: 0;
}
.properties-list li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.properties-list li a {
  display: block;
}
.properties-list li a:hover p {
  text-decoration: underline !important;
}

#gtx-trans {
  display: none;
}
