/******************************

|--- Helpers
|	|___ Custom (replace client colors in this file)
|	|___ Variables
|
|--- Base
|	|___ Fonts
|	|___ Reset
|
|--- Components
|	|___ Color
|	|___ Images
|	|___ Typography
|	|___ Buttons
|	|___ Card
|	|___ Sliders
|
|--- Sections Styles
|	|
|	|___ Header
|	|___ Hero Area
|	|___ Home Features
|	|___ Footer
|	|___ Layout
|	|___ Breadcrumb
|	|___ Sidebar
|
|--- Pages Styles
|	|___ Prop-details
|	|___ Login-register
|	|___ Testimonials
|--- Helpers
|	|___ Theme-addons (add new theme styles to this file)

******************************/
/*>>>>>>>> Fonts <<<<<<<<<*/
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

body {
  font-family: Roboto, sans-serif;
}

/*>>>>>>> Resets <<<<<<<<< */
.opacity-90 {
  opacity: 0.9;
}

/* font variables */
/* mixin for text contrast */
/* mixin to insure text contrast */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: #0066b2;
  text-decoration: none;
}

/*>>>>>>>> Color <<<<<<<<<*/
.text-white {
  color: #fff;
}

.text-black {
  color: #292929;
}

.text-black-2 {
  color: #1a1f2b;
}

.text-primary {
  color: #0066b2 !important;
}

.text-secondary {
  color: #fe5c00 !important;
}

.text-primary-muted {
  color: rgba(0, 102, 178, 0.5);
}

.text-secondary-muted {
  color: rgba(254, 92, 0, 0.5);
}

.bg-gray {
  background: #f6f6f6;
}

.bg-primary-muted {
  background-color: rgba(0, 102, 178, 0.5);
}

.bg-secondary-muted {
  background-color: rgba(254, 92, 0, 0.5);
}

.gray-400 {
  background-color: #ced4da;
}

.gray-500 {
  background-color: #adb5bd;
}

/*-------------------------------------
		COLOR CLASSES
--------------------------------------- */
.color1 {
  color: #0066b2;
}

.color2 {
  color: #fe5c00;
}

.color3 {
  color: #012d48;
}

.color4 {
  color: #ced4da;
}

.color5 {
  color: #343a40;
}

.white {
  color: #fff;
}

.bg-light {
  background-color: rgba(52, 58, 64, 0.05) !important;
}

/*----- footer background is color 3 -----*/
.bg-color3 {
  background-color: #012d48;
  color: #fff;
}

/*----- page background is color 4 -----*/
.bg-color4 {
  background-color: #ced4da !important;
  color: #010101;
}

/*----- section alternate background is color 1 at 5% opacity -----*/
.bg-color5, .alt-background {
  background-color: rgba(52, 58, 64, 0.05);
}

.bg-color1, .bg-primary {
  background-color: #0066b2 !important;
  border-color: #0066b2 !important;
  color: #fff;
}

.bg-secondary {
  background-color: #fe5c00 !important;
  border-color: #fe5c00 !important;
  color: #010101;
}

/*>>>>>>>> Images <<<<<<<<<*/
.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}
/* may not be using these rules? */
.border-bottom {
  border-bottom: 1px solid #ebebeb;
}

.overflow-image {
  overflow: hidden;
  width: 100%;
  display: block;
}

  .overflow-image img {
    transform: scale(1);
    transition: 0.4s;
    width: 100%;
  }

  .overflow-image:hover img {
    transform: scale(1.1);
  }

/*>>>>>>>> Typography <<<<<<<<<*/
figure i,
span {
  display: inline-block;
  font-style: normal;
}

hr.center {
  text-align: center;
  width: 90%;
}

.icon-lg {
  margin: 0rem 0.7rem 0.4rem 0rem;
  justify-content: flex-start;
  font-size: 3.75rem;
  text-align: left;
}

.icon-med {
  display: inline-block;
  font-style: normal;
  font-size: 1.8rem;
  padding-top: 0.2rem;
  text-align: center;
  line-height: 2.5rem;
}

#more {
  display: none;
  font-size: inherit;
}

p#description {
  line-height: 1.5rem;
  vertical-align: middle;
}

#disclaimer p {
  font-size: 0.7rem;
}

.text-left {
  text-align: left !important;
}

.text-small, .text-small p {
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1rem;
}

.text-smaller, .text-smaller p {
  font-size: 0.7rem;
  font-weight: normal;
  line-height: 1rem;
}

.text-xs, .text-xs p {
  font-size: 0.6rem;
  font-weight: normal;
  line-height: 0.9rem;
}

@media (max-width: 1024px) {
  .icon-lg {
    margin: 0.5rem 0rem 0.4rem -0.4rem;
    justify-content: flex-start;
    font-size: 2.5rem;
    text-align: left;
  }

  figure i, span {
    display: inline-block;
    font-style: normal;
    font-size: 1.1rem;
    padding: 0.1rem 0;
    text-align: center;
  }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* For landscape layouts only */
}

@media (max-width: 768px) {
  figure i, span {
    display: inline-block;
    font-style: normal;
    font-size: 1rem;
    padding: 0.1rem 0;
    text-align: center;
  }
}
/*>>>>>>>> Buttons <<<<<<<<<*/
.btn-primary {
  background-color: #0066b2;
  border-color: #0066b2;
  color: #fff;
}

  .btn-primary:hover {
    background-color: #005492;
    border-color: #005492 !important;
  }

  .btn-primary:focus {
    background-color: #005492;
    border-color: #005492 !important;
  }

  .btn-primary:active {
    background-color: #005492;
    border-color: #005492 !important;
  }

.btn-secondary {
  background-color: #fe5c00;
  border-color: #fe5c00;
  color: #fff;
}

  .btn-secondary:hover {
    background-color: #d04b00;
    border-color: #d04b00 !important;
  }

  .btn-secondary:focus {
    background-color: #d04b00;
    border-color: #d04b00 !important;
  }

  .btn-secondary:active {
    background-color: #d04b00;
    border-color: #d04b00 !important;
  }

.btn-pale {
  background: #fff;
  color: #010101 !important;
}

  .btn-pale:hover {
    background: #fff;
    color: #495057 !important;
  }

.btn-rounded {
  border-radius: 500px;
}

.btn-mid {
  height: 40px;
  width: 195px;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ececec;
  color: #333;
}

  .btn-outline:hover {
    border: 2px solid #0066b2;
    background: #0066b2;
    color: #fff;
  }

.btn-outline-primary {
  background: transparent;
  border: 2px solid #0066b2 !important;
  color: #0066b2;
}

  .btn-outline-primary:hover {
    background: #0066b2;
    border-color: #0066b2 !important;
    color: #fff !important;
  }

.btn-outline-secondary {
  background: transparent;
  border: 2px solid secondary !important;
  color: secondary;
}

  .btn-outline-secondary:hover {
    background: secondary;
    border-color: secondary !important;
    color: #fff !important;
  }

.btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

  .btn-outline-white:hover {
    background: #0066b2;
    border-color: #0066b2;
    color: #fff;
  }

.btn:focus {
  box-shadow: none;
}

.btn-block {
  width: 100%;
  max-width: 480px;
}

/*>>>>>>>> Card <<<<<<<<<*/
.rating-block span {
  color: #b6b6b6;
  font-size: 16px;
}

  .rating-block span.star_on {
    color: #ffc107;
  }

.no-border {
  border: none;
}

.bdr-gray400 {
  border: 1px solid #ced4da;
}

.rounder {
  border-radius: 1.5rem;
}

/*==================================
		Agent Cards
====================================*/
#agent-list .card {
  border: 1px solid #fff;
  max-width: 300px;
}

  #agent-list .card .card-body a {
    color: var(--bs-secondary);
    text-decoration: none;
    cursor: pointer;
  }

.agent-info p {
  margin-bottom: 0.375rem;
}

#agent-list .card .card-body {
  width: 100%;
  padding: 0 0 1rem 0;
  text-align: center !important;
  margin-left: 0px !important;
}

#agent-list .card-img-top {
  background-position: center top;
  background-size: cover;
  height: 300px;
  width: 100%;
}

#agent-list .agent-name {
  width: 100%;
  background: #e9ecef;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 0 0.375rem;
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 8px 2px;
}

#agent-list .agent-title {
  font-size: 1rem;
  line-height: 0.9rem;
}

#agent-list .agent-tel, #agent-list .agent-tel {
  font-size: 0.9rem;
}

#agent-list .agent-email {
  font-size: 0.7rem;
}

.agent-link a {
  color: #0066b2 !important;
}

/*==================================
		Partner Cards
====================================*/
#partner-list .card {
    border: 1px solid #fff;
    max-width: 300px;
}

    #partner-list .card .card-body a {
        color: var(--bs-secondary);
        text-decoration: none;
        cursor: pointer;
    }

.partner-info p {
    margin-bottom: 0.375rem;
}

#partner-list .card .card-body {
    width: 100%;
    padding: 0 0 1rem 0;
    text-align: center !important;
    margin-left: 0px !important;
}

#partner-list .card-img-top {
    background-position: center top;
    background-size: cover;
    height: 300px;
    width: 100%;
}

#partner-list .partner-name {
    width: 100%;
    background: #e9ecef;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 0 0.375rem;
    font-size: 1.2rem;
    line-height: 1.2rem;
    padding: 8px 2px;
}

#partner-list .partner-title {
    font-size: 1rem;
    line-height: 0.9rem;
}

#partner-list .partner-tel, #partner-list .partner-tel {
    font-size: 0.9rem;
}

#partner-list .partner-email {
    font-size: 0.7rem;
}

.partner-link a {
    color: #0066b2 !important;
}
/*=============================================
			Property Cards - Search Results Grid 
===============================================*/
.bi {
  font-size: 1.5rem;
  position: relative;
  top: 0px;
  right: 10px;
  display: block;
  text-align: center;
}

.bi-heart-fill {
  color: #ff0033;
  opacity: 0.5;
}

.bi-heart {
  color: #ced4da;
  opacity: 0.5;
}

a.box {
  color: var(--bs-dark);
  text-decoration: none;
}

  a.box:hover {
    box-shadow: 0 -3px 3px 0 rgba(0, 0, 0, 0.05), 0 -3px 3px 0 rgba(0, 0, 0, 0.05);
    outline: 0;
    padding: 0;
    cursor: pointer;
  }

.card-img-top {
  background-position: center center;
  background-size: cover;
  height: 260px;
  width: 100%;
  /*max-width:350px;*/
}

.search-result-address {
  font-weight: 300;
  font-size: 1.2rem;
}

.search-result-city {
  font-size: 0.9rem;
  max-width: 50%;
}

.search-result-more-info {
  margin-top: 0.5rem;
}

.search-result-price {
  font-size: 1.5rem;
  text-align: left;
}

.search-result-proptype {
  font-size: 0.75rem;
  position: relative;
  right: 0px;
  text-align: right;
}

ul.search-result-specs {
  background: #e9ecef;
  overflow: hidden;
  white-space: nowrap;
  list-style-type: none;
  margin: 0;
  margin-top: 0px;
  padding: 8px 10px;
  display: table;
  width: 100%;
}

  ul.search-result-specs li {
    display: table-cell;
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    line-height: 1em;
    border-right: 1px solid #fefefd;
  }

    ul.search-result-specs li.last {
      display: table-cell;
      font-weight: 300;
      font-size: 16px;
      text-align: center;
      line-height: 1em;
      border-right: 1px solid #e9ecef;
    }

    ul.search-result-specs li span {
      font-size: 80%;
    }

@media (max-width: 575.98px) {
  ul.search-result-specs li span {
    font-size: 60%;
  }

  ul.search-result-specs {
    padding: 8px 4px;
    display: table;
    width: 100%;
  }

  #OtherHomes .card-body {
    padding: 1rem 0.8rem;
  }
}
/*>>>>>>>> Sliders <<<<<<<<<*/
/*======================================
				CARD CAROUSEL
=======================================*/
#card-realtorOther {
  max-height: 370px;
}


@media (min-width: 576px) {
    #OtherHomes .card {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

#OtherHomes .card-title {
  font-weight: bold !important;
}

#OtherHomes .carousel-control-prev, #OtherHomes .carousel-control-next {
  background: none;
  color: black !important;
  border: none;
  text-decoration: none;
  width: 5% !important;
  opacity: 0.5;
}

#OtherHomes .carousel-inner {
  margin-left: 24px;
  width: 95%;
}

@media (max-width: 768px) {
  #OtherHomes .carousel-inner {
    margin-top: 12px;
    margin-left: 0px;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  #OtherHomes .carousel-inner {
    margin-top: 12px;
    margin-left: 0px;
  }
}

#OtherHomes .carousel-control-prev {
  margin-left: -10px;
  color: black;
}

#OtherHomes .carousel-control-next {
  margin-right: -10px;
  color: black;
}

a.box {
  box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.18);
  outline: 0;
  padding: 0;
  color: var(--bs-dark);
  text-decoration: none;
}

  a.box:hover {
    box-shadow: 0 0px 12px 0 rgba(0, 0, 0, 0.25), 0 0px 12px 0 rgba(0, 0, 0, 0.25);
    outline: 0;
    padding: 0;
    cursor: pointer;
  }

.carousel-multi-item .carousel-inner .carousel-item.active,
.carousel-multi-item .carousel-inner .carousel-item-next,
.carousel-multi-item .carousel-inner .carousel-item-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel-multi-item .carousel-inner .carousel-item-end.active,
.carousel-multi-item .carousel-inner .carousel-item-next {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

@media (min-width: 768px) {
  .carousel-multi-item .carousel-inner .carousel-item-end.active,
  .carousel-multi-item .carousel-inner .carousel-item-next {
    -webkit-transform: translateX(33%);
    transform: translateX(33%);
  }
}

.carousel-multi-item .carousel-inner .carousel-item-start.active,
.carousel-multi-item .carousel-inner .carousel-item-prev {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media (min-width: 768px) {
  .carousel-multi-item .carousel-inner .carousel-item-start.active,
  .carousel-multi-item .carousel-inner .carousel-item-prev {
    -webkit-transform: translateX(-33%);
    transform: translateX(-33%);
  }
}

.carousel-multi-item .carousel-inner .carousel-item-end,
.carousel-multi-item .carousel-inner .carousel-item-start {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* CUSTOMIZE THE GENERIC CAROUSEL
----------------------------------------- */
/* Carousel base class */
.carousel {
  margin-bottom: 0.25rem;
}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

.carousel-indicators {
  position: static !important;
  top: 0 !important;
  bottom: auto;
  justify-content: space-between;
  margin-right: 0px;
  margin-left: 0px;
  /*override Chrome margin props */
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  width: 100%;
  overflow-y: auto;
}

  .carousel-indicators li {
    min-width: 100px;
    height: auto;
    opacity: 0.8;
    padding: 0.75rem;
    margin-right: 8px;
  }

  .carousel-indicators [data-bs-target] {
    border-top: 8px solid transparent;
    border-bottom: 0px;
    width: 48%;
    /*min-width: 100px;*/
    height: auto;
    margin-left: 0;
    margin-bottom: 0;
    position: static !important;
    text-indent: 0px;
  }

    .carousel-indicators [data-bs-target]:not(.active) {
      opacity: 0.8;
    }

/*===============================
		Modal lightbox
================================*/
.lightboxResults {
  width: 98%;
  max-width: 1280px;
}

.twoPics {
  display: flex;
  justify-content: space-between;
}

/*======================================
     PROP DETAIL PAGE - TOP CAROUSEL
======================================*/
#propImages .carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 0px;
  color: #fff;
  text-align: left;
}

  #propImages .carousel-caption .btn {
    padding: 0.1rem 0.75rem;
    font-size: 0.8rem;
  }

  #propImages .carousel-caption .bi {
    display: inline-block;
    padding-right: 0.25rem;
    font-size: 0.8rem;
  }

    #propImages .carousel-caption .bi:before {
      vertical-align: 0rem;
    }

  #propImages .carousel-caption .opacity-75 {
    color: white;
  }

    #propImages .carousel-caption .opacity-75:hover {
      opacity: 0.9 !important;
    }

#propImages .caption-top {
  position: absolute;
  top: 1rem;
  height: 5rem;
  left: 0;
  z-index: 10;
  padding-top: 0px;
  padding-bottom: 0px;
  text-align: left;
}

  #propImages .caption-top .btn {
    padding: 0.1rem 0.75rem;
    font-size: 0.8rem;
  }

  #propImages .caption-top .bi {
    display: inline-block;
    padding-right: 0.25rem;
    font-size: 0.8rem;
  }

    #propImages .caption-top .bi:before {
      vertical-align: 0rem;
    }

  #propImages .caption-top .opacity-75 {
    color: white;
  }

    #propImages .caption-top .opacity-75:hover {
      opacity: 0.9 !important;
    }

/* single prop sold   
.carousel-caption-sold {
  position: absolute;
  right: 0;
  bottom: 0;
	height:100%;
  left: 0;
  z-index: 10;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #fff;
  text-align: center;
	background: rgba(0, 0, 0, 0.25); }

	#PropStatus {
		position:relative;
		top:40%;
		font-size:5rem;
		font-weight: 800;
		opacity:.8;
		text-transform:uppercase;
		transform: rotate(-45deg);
	}


/* set maximum height for active carousel image */
.carousel-inner .carousel-item.active img {
  max-height: 580px !important;
  width: auto;
  max-width: 100%;
  display: block;
  margin: auto;
  object-fit: contain;
  overflow: hidden !important;
  z-index: 0;
}

@media (max-width: 576px) {
  #propImages .carousel-inner .carousel-item .active img {
    display: flex;
    max-height: 320px !important;
    width: auto;
    max-width: 100%;
    display: block;
    margin: auto;
    object-fit: contain;
    overflow: hidden;
    z-index: 0;
  }

  #rmBtn, #rmBtn:active, #rmBtn:focus, #rmBtn:hover {
    border: 1px solid #fff;
    box-shadow: none !important;
    outline: 0;
    padding-left: 0;
  }
}
/*>>>>>>>> Header <<<<<<<<<*/
.accordion-button:not(.collapsed), .accordion-button:focus {
  color: var(--bs-dark);
  background-color: #fff;
  box-shadow: none !important;
}

#SortResults .accordion-button::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  background-image: none !important;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

#SortResults .accordion-button:not(.collapsed)::after {
  background-image: none !important;
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle {
  outline: 0;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: rgba(0, 102, 178, 0.8);
}

.navbar {
  box-shadow: none !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.68);
}

.navbar-brand {
  max-height: 50px;
}

a.navbar-brand > img {
  max-height: 50px !important;
  margin-top: -0.5rem;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

  .nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

.offcanvas-collapse.open {
  z-index: 2000;
}

.social-top {
  display: none;
}

/*===============================
			Media rules for menu
================================*/
@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 154px;
    /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #fff;
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

    .offcanvas-collapse.open {
      padding-top: 0.5rem;
      visibility: visible;
      background-color: #f8f9fa;
      transform: translateX(-100%);
    }

  .dropdown-menu {
    border: 0px;
    background-color: #fff;
    padding: 0 0 0.5rem 0;
  }

  .nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
  }
}

@media (max-width: 575.98px) {
  .offcanvas-collapse {
    top: 124px;
  }

  #FilterSearch .dropdown-menu.show {
    position: relative !important;
    top: 0px !important;
    transform: translate3d(0px, 0px, 0px) !important;
  }

  #SortResults {
    padding-left: 0.275rem;
  }
}

@media (min-width: 768px) {
  .navbar-brand {
    max-height: 80px;
    margin-left: 2.5rem;
  }

  a.navbar-brand > img {
    max-height: 80px !important;
    margin-top: -0.3rem;
  }

  .social-top {
    display: flex !important;
  }
}
/*>>>>>>>> Hero Area <<<<<<<<<*/
/*>>>>>>>> Home Features <<<<<<<<<

/*===============================
		Icon boxes homepage
================================*/
.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1), inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.bi {
  vertical-align: -0.125em;
  fill: currentColor;
  right: 0px !important;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #fff;
  border-radius: 0.75rem;
}

.icon-lg {
  font-size: 4rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
}

  .icon-link > .bi {
    margin-top: 0.125rem;
    margin-left: 0.125rem;
    transition: transform 0.25s ease-in-out;
    fill: currentColor;
  }

  .icon-link:hover > .bi {
    transform: translate(0.25rem);
  }

.icon-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border-radius: 0.75rem;
}

.rounded-4 {
  border-radius: 0.5rem;
}

.rounded-5 {
  border-radius: 1rem;
}

.text-shadow-1 {
  text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
}

.text-shadow-2 {
  text-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.text-shadow-3 {
  text-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.25);
}

.card-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*===============================
		feature boxes
================================
//may want to comment out the feaature-box stuff
.feature-box {
    border: 2px solid $gray-100;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    .icon {
        margin-right: 10px;
        color: $primary;
        font-size: 34px;
        line-height: 40px;
    }
    .text {
        h5 {
            font-size: 16px;
            font-weight: 400;
            color: #282828;
            text-transform: capitalize;
            margin: 0;
            margin-bottom: 0;
        }
        P{
            &:last-child{
                margin-bottom: 0;
            }
        }
    }
} */
/*>>>>>>>> Footer <<<<<<<<<*/
#footer {
  font-size: 85%;
  border-top-color: #fe5c00;
  border-top-style: solid;
  border-top-width: 3px;
}

  #footer ul.nav, #footer ul.nav li {
    text-align: center;
  }

  #footer a {
    color: white !important;
    opacity: 0.9;
    text-decoration: none;
    outline: 0;
  }

    #footer a:focus, #footer a:hover {
      opacity: 1;
    }

  #footer ul.nav a {
    padding: 8px;
  }

/*>>>>>>>> Layout <<<<<<<<<*/
span.rating {
  margin-left: 30px;
  -webkit-align-self: center;
  align-self: center;
  width: 105px;
  height: 105px;
  background-image: url(https://www.dreamhomelist.com/info/images/greateschools/GS_School_Rating_NR.png);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

/*------------------------------------
			Realtor CARDs
-------------------------------------- */
#card-partner {
  /*  all realty card styles for Prop Details page */
  /* Card images & associated logo positioning */
}

  #card-partner .address {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.1rem;
  }

  #card-partner .card-lo, #card-partner .card_lo-only, #card-partner .card-partner, #card-partner .card_lo-only-np {
    min-width: 278px;
  }

    #card-partner .card-lo h4, #card-partner .card_lo-only h4, #card-partner .card-partner h4, #card-partner .card_lo-only-np h4 {
      font-size: 14pt;
      line-height: 0.8rem;
      margin: 0;
    }

    #card-partner .card-lo h5, #card-partner .card_lo-only h5, #card-partner .card-partner h5, #card-partner .card_lo-only-np h5 {
      font-size: 11pt;
      line-height: 0.8rem;
      font-weight: 400;
      margin: 0.02in 0;
    }

    #card-partner .card-lo p, #card-partner .card_lo-only p, #card-partner .card-partner p, #card-partner .card_lo-only-np p {
      font-weight: 400;
      font-size: 8.5pt;
      line-height: 10pt;
      margin: 0.06in 0in 0in 0in;
    }

      #card-partner .card-lo p#lo-onlyAddress, #card-partner .card_lo-only p#lo-onlyAddress, #card-partner .card-partner p#lo-onlyAddress, #card-partner .card_lo-only-np p#lo-onlyAddress {
        line-height: 11pt;
        margin-top: 0.06in;
        margin-right: 0.1in;
      }

      #card-partner .card-lo p.nmls, #card-partner .card_lo-only p.nmls, #card-partner .card-partner p.nmls, #card-partner .card_lo-only-np p.nmls {
        font-weight: 400;
        font-size: 7pt;
        line-height: 7pt;
      }

  #card-partner .card-info p, #card-partner .card-info span {
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.125rem;
  }

  #card-partner #loName, #card-partner #loTitle, #card-partner #partnerName, #card-partner #partnerTitle {
    padding: 0;
  }

  #card-partner span.compName {
    line-height: 1rem;
  }

  #card-partner #partnerNMLS, #card-partner #loEmail, #card-partner #partnerEmail {
    font-weight: 400;
    font-size: 7.2pt;
    line-height: 7pt;
    margin: 0.2rem 0 0.5rem;
  }

  #card-partner p.card-title {
    font-weight: bold;
  }

  #card-partner #img_cardLO, #card-partner #img_cardPartner {
    min-height: 120px;
    max-height: 160px;
    max-width: 90%;
    margin-bottom: 1rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    overflow: hidden;
    display: block;
    z-index: 14;
  }

  #card-partner #logo_cardLO, #card-partner #logo_cardPartner {
    height: 75px;
    max-width: 100%;
    margin-bottom: 1rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    z-index: 15;
  }

  #card-partner #logo_affiliation, #card-partner #logo_lo-affiliation, #card-partner #eha_logo, #card-partner #fdic_logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 15;
  }

@media (min-width: 767.98px) and (max-width: 1199.98px) {
  #logo_cardLO, #logo_cardPartner {
    background-position: left center;
  }
}
/*>>>>>>>> Bredcrumb <<<<<<<<<*/
.breadcrumb-contents .breadcrumb {
  background: transparent;
  justify-content: start;
  padding: 20px 0;
}

  .breadcrumb-contents .breadcrumb .breadcrumb-item {
    font-size: 14px;
    color: #333;
  }

    .breadcrumb-contents .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
      color: #333;
      content: "\e801";
      font-family: "osi";
      font-size: 12px;
    }

    .breadcrumb-contents .breadcrumb .breadcrumb-item a:hover {
      color: #0066b2;
    }

    .breadcrumb-contents .breadcrumb .breadcrumb-item.active a {
      color: #0066b2;
    }

/*>>>>>>>> Sidebar <<<<<<<<<*/
/*>>>>>>>> Property Details pages <<<<<<<<<*/
.propSaleStatus:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  content: "\f0c8";
  display: inline-block;
  padding-right: 0.5rem;
}

.propSaleStatus.forsale::before {
  color: #198754;
}

.propSaleStatus.pending::before {
  color: #ffc107;
}

.propSaleStatus.sold::before {
  color: #dc3545;
}

/* ------------------------------------
		Details Accordion
--------------------------------------- */
#FeatureList .accordion-item {
  border: 1px solid #fff;
}

#FeatureList h2.accordion-header {
  border-top: 1px solid #dee2e6;
  font-size: 1.1rem;
}

#FeatureList h2.accordion-header, #FeatureList h4.accordion-header {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #dee2e6;
  font-weight: 400;
}

#FeatureList h4.accordion-header {
  font-size: 1rem;
}

@media (max-width: 575.98px) {
  .accordion-body, .accordion-button {
    padding: 1rem 0.5rem !important;
  }
}

@media (min-width: 768px) {
  #FeatureList ul {
    display: flex;
    flex-wrap: wrap;
  }

    #FeatureList ul li {
      flex-basis: 48%;
      line-height: 1.8rem;
      margin-left: 2%;
      font-weight: 400;
    }
}

#schools tr {
  padding: 0.03in 0.06in;
  font-size: 0.75rem;
  line-height: 0.9rem;
  text-align: right;
}

.subtext {
  font-size: 0.75rem;
  text-align: center;
}

/* ------------------------------------
		Color 1 Tabs
--------------------------------------- */
.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #0066b2 !important;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

  .list-group-item.active {
    color: #fff !important;
  }

  /*.list-group >.color1 > a.list-group-item  {
	z-index: 20;
	color: $color1!important;
	background-color: #fff !important;
	&:hover {
		color:$color1!important;
	}
}*/
  .list-group > .color1 > .list-group-item a:active,
  .list-group > .color1 > .list-group-item a:hover,
  .list-group > .color1 > .list-group-item a:focus,
  .list-group > .color1 > li > .list-group-item a:active,
  .list-group > .color1 > li > .list-group-item a:hover,
  .list-group > .color1 > li > .list-group-item a:focus,
  .list-group-item.active, .list-group-item-action.active {
    z-index: 20;
    color: #fff;
    background-color: #0066b2 !important;
    border-color: #0066b2 !important;
  }

.list-group.color1 > .list-group-item.active::after,
.list-group.color1 > li > .list-group-item.active::after {
  content: "";
  position: absolute;
  margin-top: -13px;
  left: -13px;
  top: 50%;
  border-bottom: 13px solid transparent;
  border-top: 13px solid transparent;
  border-right: 13px solid #0066b2;
}

.list-group li {
  list-style-type: none;
}

li .list-group-item .inside {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#mortgagetab.list-group-item.active, #neighborhoodtab.list-group-item.active, #additionaltab.list-group-item.active {
  color: #0066b2;
  background-color: #fff !important;
  border-color: #fff !important;
}

.tabs-right {
  border-bottom: none;
  border-left: 1px solid #0066b2;
}

  .tabs-right > li {
    float: none;
    margin: 0px;
  }

    .tabs-right > li.active > a,
    .tabs-right > li.active > a:hover,
    .tabs-right > li.active > a:focus {
      border-bottom-color: #0066b2;
      border-right-color: transparent;
      background: #0066b2;
      border: none;
      border-radius: 0px;
      margin: 0px;
    }

      .tabs-right > li.active > a::after {
        content: "";
        position: absolute;
        top: 10px;
        left: -10px;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid #0066b2;
        display: block;
        width: 0;
      }

@media (min-width: 767.98px) and (max-width: 1199.98px) {
  #propImages .carousel-inner .carousel-item.active img {
    max-height: 750px !important;
  }
}

@media (max-width: 768px) {
  .full {
    display: block;
    width: 40%;
    height: auto;
  }

  .list-group-item {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.1rem;
  }

  .row, .row-grid {
    margin-top: 20px;
  }

  .round-rt {
    max-width: 67%;
  }

  .list-group.color1 > .list-group-item.active::after,
  .list-group.color1 > li > .list-group-item.active::after {
    content: "";
    position: absolute;
    margin-top: 0px;
    margin-left: -13px;
    top: 100%;
    left: 50%;
    border-left: 13px solid transparent;
    border-top: 13px solid #0066b2;
    border-right: 13px solid transparent;
  }
}
/*>>>>>>>> Login-register <<<<<<<<<*/
/*-- Login Title --*/
.login-title {
  line-height: 23px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 18px;
  color: #010101;
  font-weight: 600;
}

/*-- Login Form --*/
.login-box {
  border: 1px solid #e3e3e3;
  padding: 45px 20px 20px 20px;
  text-align: left;
  border-radius: 5px;
}

  .login-box .btn {
    text-transform: capitalize;
    font-size: 15px;
  }

/* styles from OSI 2019 */
.login-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 0;
  background: transparent;
  z-index: 100;
}

#logo-watermark {
  position: relative;
  margin-top: 3rem;
  height: 1.8in;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: auto;
  clear: both;
}

.form-login {
  max-width: 400px;
  opacity: 1 !important;
  padding: 2rem;
  margin: auto;
  background-color: #fff;
  border: 1px solid #fafafa;
  border-radius: 0.5rem;
  -webkit-box-shadow: -1px 1px 12px 6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -1px 1px 12px 6px rgba(0, 0, 0, 0.5);
  box-shadow: -1px 1px 12px 6px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.form-control-round {
  border-color: #fe5c00;
  border-width: 1px;
  border-style: solid;
  border-radius: 2rem;
  font: 400 normal 1rem/1.5rem;
  padding: 0.25rem 0.5rem;
  height: 40px;
  width: 100%;
  overflow: visible;
}

  .form-control-round:focus {
    color: inherit;
    background-color: inherit;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-radius: 2rem !important;
  }

.btn-login, submit {
  color: #fff;
  background-color: #0066b2;
  border-radius: 2rem;
  width: 100%;
}

  .btn-login:hover, submit:hover {
    background-color: #fe5c00;
    color: #fff;
  }

.btn-reverse {
  background-color: white;
  border-color: #0066b2;
  border-width: 2px;
  border-style: solid;
  border-radius: 2rem;
  font-size: 0.8rem;
  width: 100%;
}

  .btn-reverse:hover, btn-reverse:focus {
    border-color: #fe5c00;
    border-width: 2px;
    border-style: solid;
    box-shadow: none;
  }

.btn-round {
  border-radius: 2rem;
}

.btn-second {
  border-width: 1px;
  border-style: solid;
  border-radius: 0rem;
  font-size: 0.7rem;
  line-height: 1.65rem;
  margin-bottom: 1.5rem;
}

.background-pic {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -10;
}

#content-fadeout {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #dee2e6;
  width: 100%;
  height: 100%;
  animation: OSfade 3s 1s forwards;
  z-index: 1;
}

@keyframes OSfade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.entry-header {
  margin-bottom: 40px;
}

  .entry-header .entry-title {
    font-size: 30px;
    line-height: 1.35;
    margin: 0 0 5px;
    text-transform: uppercase;
    color: #010101;
  }

/*>>>>>>>> Testimonials <<<<<<<<<*/
.testimonial {
  border: 1px solid #fe5c00;
  border-radius: 30px;
  margin: 3rem 1.5rem 1rem;
  padding: 20px;
  position: relative;
}

    .testimonial:after, .testimonial:before {
        content: "";
        position: absolute;
        font-family: 'Font Awesome 6 Pro';
        font-weight: 900;
        font-size: 48px;
        color: rgba(0, 102, 178, 0.4);
        background: #fff;
    }

  .testimonial:after {
    content: "\f10d";
    top: 0.55rem;
    left: 0;
    transform: translate(-50%, -50%);
    box-shadow: 10px 10px 0 #fff;
  }

  .testimonial:before {
    content: "\f10e";
    bottom: 0.55rem;
    right: 0;
    transform: translate(50%, 50%);
    box-shadow: -10px -10px 0 #fff;
  }

.testiName {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 0.25rem;
  margin-top: -0.5rem;
}

.testimonial2 {
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #fff;
  border-radius: 60px;
}

    .testimonial2:before {
        content: "\f10d";
        margin-bottom: -2.2rem;
        font-family: 'Font Awesome 6 Pro';
        font-weight: 900;
        font-size: 48px;
        color: rgba(0, 102, 178, 0.4);
        margin-right: auto;
        margin-left: auto;
        padding: 0 0.5rem;
        background-color: #fff;
    }

.testiName2 {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 0.35rem;
  margin-top: -0.5rem;
}

.form-check-input:checked {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

#scroll {
  position: fixed;
  right: 20px;
  bottom: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #0066b2;
  text-indent: -9999px;
  display: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  z-index: 1000;
}

  #scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
  }

  #scroll:hover {
    background-color: #fe5c00;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
  }

body {
  background: #e9ecef;
}

/*-------------------------------------
		ADMIN COMPONENTS
--------------------------------------- */
a.article, a.article:hover, .btn-icon, .btn-login, .btn-save, .navbar, .preview-dark, #sidebarCollapse, #sidebarCollapse:active, ul ul a, .slider, submit {
  background-color: #0066b2;
  color: #fff;
}

.add-file, .add-logo-file, #banner, .btn-login:hover, .btn-second, .btn-secondary, .col-form-label, .form-header, .input-group-text, #sidebar, submit:hover {
    background-color: #fe640d !important;
}

.btn-login:hover {
    background-color: #fe5c00;
    color: #fff;
}

.custom-select, .btn-reverse, .btn-reverse:hover, .btn-rtdrop, .btn-white, .btn-white-rt, .form-control, .form-control-round, #loan-options, .preview, .preview-sm, #sidebar.active ul li a {
  background-color: #fff;
}

.btn-reverse {
  border-color: 1px solid #0066b2;
}

  .btn-reverse:hover {
    border: #fe5c00 !important;
  }

.btn-rtdrop, .btn-second, .btn-secondary, .btn-white, .custom-select, .form-control-round {
  border: 1px solid #fe640d !important;
}

  .btn-secondary:hover {
    border: 1px solid #6c757d !important;
  }

.form-control {
  border-width: 1px;
  border-style: solid;
  font-size: 0.8rem;
  line-height: 1.6rem;
  margin: 0 0 0.8rem 0;
  padding: 0.375rem 0.275rem;
  width: 100%;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form-select .alt {
  background-color: white;
  border: 1px solid #dee2e6;
  font-size: 8pt;
  line-height: 1.6rem;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
}

/*-------------------------------------
		IMAGES in ADMIN - add rules as needed
--------------------------------------- */
/* Home tab, About tab */
.imgAboutImage {
  margin: 1rem 0 !important;
}

/*-------------------------------------
		ADMIN SIDEBAR
--------------------------------------- */
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #3385c1 important;
  border-color: #0066b2;
}

.nav-link {
  color: #0066b2;
}

/*# sourceMappingURL=.map */
/*-------------------------------------
		CUSTOM ADMIN
--------------------------------------- */
.nav-tabs .nav-link {
    background: #dddddd;
}