html {
  font-size: 1rem;
}

@include media-breakpoint-up(sm) {
  html {
    font-size: 1.2rem;
  }
}

@include media-breakpoint-up(md) {
  html {
    font-size: 1.4rem;
  }
}

@include media-breakpoint-up(lg) {
  html {
    font-size: 1.6rem;
  }
}

body {
  padding: 0;
  margin: 0;
  color:#848181;
}

a {
  text-decoration:none;
  outline:none;
  color:#657664;
}
	
img{
  border-style: solid;
  border-width: 1px;
  border-color: #ccd2d3;
}
	
/*--- navigation bar ---*/
.navbar {
  background:#185b76;
}

.nav-link,
.navbar-brand {
  color: #fff;
  cursor: pointer;
}

.nav-link {
  margin-right: 1em !important;
}

.nav-link:hover,
.navbar-brand:hover {
  color: #000;
}

.navbar-collapse {
  justify-content: flex-start;
}

/*--- header image ---*/
.header {
  background-image: url('../images/header-sidney-island.jpg');
  height: 225px;
  background-size: cover;
  background-position: center;
  position: relative;
  max-width: 1300px;
}

/*--- header colour ---*/
.header-bg {
  background: #185b76;
}

/*--- header font ---*/
.header-font {
  color: white;
  font-size: 75px;
  font-style: bold;
  text-shadow: 2px 2px black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  /* min-height: 100%;
  min-width: 100%; */
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}

.table_border {
  border: 1px solid #609aa8;
  border-top: none;
}
	
.position-relative {
  left: 50%;
	position: absolute;
	transform: translate(-50%, -55%);
	text-align: center;
} 

/*---  carousel  ---*/
.carosel-frame  {
  height: 32rem;
}

.carosel-frame img {
  position: absolute;
  object-fit: cover;
  bottom: 0;
  left: 0;
  /*max-height: 100%;*/
  min-width: 100%;
  height: 100%;
}

.preview-box {
  padding: 15px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  background: #FFF;
  border: 1px solid #e6e6e6;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*---  property listing  ---*/

.listing-card {
  border: 1px solid #609aa8;
}

.listing-header {
  background-color: #609aa8;
  color: #FFF;
}

.listing-img {  
  min-width: 100%;
  height: 100%;
  border-right: 1px solid #609aa8;
  border-left:0;
  border-top:0;
  border-bottom:0;
}

.listing-price {
  background-color: #609aa8;
  color: #FFF;
  text-align: center;
}
.listing_email a{
  color:#609aa8;
  font-size:13px;
}

.listing-icon {
  color:#185b76;
}
.listing-footer {
  background-color: #d0d8da;
  border-top: 1px solid #609aa8;
}

.listing-footer a{
  color: #185b76;
  font-weight: bold;
  
}

/*--- map images ---*/
.map img{
  width: 100%;
  min-height: 100%;
}
/*--- image gallery ---*/
.gallery-container img{
  width: 100%;
  min-height: 100%;
  
}

/*--- footer ---*/
.page-footer {
  background-color: #43674e;
  /*background:url(../images/footer_bg.gif);*/
  color: #ccc;
 /* padding: 10px 0 30px;*/
}

.footer-copy {
  color: #fff;
  text-align: center;
  /*padding: 5px 0;*/
  font-size: .8rem;

}

.page-footer a{
  text-decoration:none;
  outline:none;
  color:#FFF;
}


