/*body*/
/* @import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,700"); */
/* @import url("https://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,400,600,700"); */

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  src: local("Roboto-regular")
    url("/static/fonts/Roboto/static/Roboto-Regular.ttf") format("truetype");
}

/* html, */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  width: 100%;
  line-height: 1.5;
  color: #212529;
}
/* body { */
/*   max-width: 100%; */
/*   /* background: #efefef; */
*/
/*   font-weight: 300; */
/* } */

/* @media (min-width: 62em) { */
/*   body { */
/*     font-size: 1.6rem; */
/*     /* 16px */ */
/*   } */
/* } */
/* @media (min-width: 90em) { */
/*   body { */
/*     font-size: 1.8rem; */
/*   } */
/* } */
/**/
/*nav bar top*/
.sticky-top {
  padding: 0;
  position: fixed;
  width: 100%;
}
.sticky-top .top-nav {
  padding: 7px 0;
  width: 100%;
  font-size: 6px;
  background: #56162b;
  color: #fff;
  text-align: center;
}

@media (min-width: 376px) {
  .sticky-top .top-nav {
    padding: 7px;
    font-size: 9px;
  }
}

/*cards*/
.card-img {
  height: inherit;
  width: auto;
  /* object-fit: cover; */
}

/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
  width: 100%;
  height: 65px;
  position: fixed;
  line-height: 65px;
  text-align: center;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}

.nav div.logo a {
  text-decoration: none;
  color: #fff;
  font-size: 2.5rem;
}

.nav div.logo a:hover {
  color: #00e676;
}

.nav div.main_list {
  height: 65px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0;
  padding-right: 3rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  color: #fff;
  line-height: 65px;
  font-size: 2.4rem;
}

.nav div.main_list ul li a:hover {
  color: #00e676;
}

/* Home section */
@media (min-width: 600px) {
  .home {
    width: 100%;
    height: 20vh;
    background-image: url("/static/img/pagepics/profile.jpg?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=b0f6908fa5e81286213c7211276e6b3d&auto=format&fit=crop&w=1500&q=80");
    /* background-image: url(https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=b0f6908fa5e81286213c7211276e6b3d&auto=format&fit=crop&w=1500&q=80); */
    background-position: center top;
    background-size: cover;
  }
}

.navTrigger {
  display: none;
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

/* Media qurey section */

.container {
  max-width: 100%;
}

/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
}

.navTrigger i {
  background-color: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  width: 100%;
  height: 4px;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(9px) rotate(0deg);
  }
  100% {
    transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(0deg);
  }
  100% {
    transform: translateY(-9px) rotate(135deg);
  }
}

.affix {
  padding: 0;
  background-color: #111;
}

.myH2 {
  text-align: center;
  font-size: 4rem;
}
.myP {
  text-align: justify;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 20px;
}
@media all and (max-width: 700px) {
  .myP {
    padding: 2%;
  }
}

/* .nav-link:hover { */
/*   background: red; */
/*   color: blue; */
/* } */

.page-section {
  margin-top: 0.1rem;
  padding: 2em;
  padding: 10px;
  border: 0px solid #ccc;
  background-color: aliceblue;
  border-radius: 4px;
}
.accordion-button {
  background-color: #ededed;
  font-weight: bold;
  &:not(.collapsed) {
    background-color: #ededed;
  }
}

footer {
  & a {
    text-decoration: none;
    color: #585c5f;
    &:hover {
      text-decoration: underline;
    }
  }
}

.footer-text {
  text-align: center;
  margin-top: 20px;
  background: #f3f3f3;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.card {
  margin-right: 10px;
  & .card-title {
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    & .ber {
      height: 1.2rem;
    }
  }
}

.icon {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(14%) sepia(74%) saturate(6185%)
    hue-rotate(352deg) brightness(92%) contrast(90%);
}

/* Agent Card */

.block-box-card {
  border-radius: 5px;
  overflow: hidden;
}

/*Independent pages */
#about {
  text-align: center;
  margin-top: 100px;
}

/* Image sliding in property*/

.slideshow {
  position: relative;
  width: 100%;
  &:after {
    content: "";
    display: block;
    padding-bottom: calc((100% / 6) * 4);
  }
  &:hover a {
    opacity: 1;
  }
  a {
    opacity: 0;
    position: relative;
    text-decoration: none;
    transition: opacity 0.5s;
    &:after {
      border-color: #fff #fff transparent transparent;
      border-style: solid;
      border-width: 2px;
      color: #fff;
      display: block;
      height: 10px;
      position: absolute;
      top: calc(50% - 5px);
      width: 10px;
    }
    &:first-child:after {
      content: "";
      left: 10px;
      transform: rotate(-135deg);
    }
    &:nth-child(2):after {
      content: "";
      right: 10px;
      transform: rotate(45deg);
    }
  }
  .slide {
    background-color: #fff;
    box-sizing: border-box;
    display: none;
    height: 100%;
    position: absolute;
    width: 100%;
    &:first-child,
    &:target {
      display: block;
    }
    a {
      display: block;
      height: 100%;
      position: absolute;
      width: 50%;
      &:nth-child(2) {
        left: 50%;
      }
    }
    img {
      border-radius: 0px;
      width: 100%;
      max-height: 100%;
    }
  }
}

.property {
  & .card {
    max-width: 500px;
    & .card-text {
      font-size: unset;
      font-weight: bold;
      & p {
        margin-bottom: 0;
      }
    }
  }
}

/* To show proper details with icons on main page and in property page*/
.property-brief {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.property-brief-element {
  padding: 15px;
}

/* Property status banner */
/*https://www.youtube.com/watch?v=1FQhndOY-ho*/
.property-status-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  overflow: hidden;
  /* top: -10px; */
  /* left: 10px; */
}
/* .property-status-wrap::before, */
/* .property-status-wrap::after { */
/* content: ""; */
/* width: 10px; */
/* height: 10px; */
/* background-color: red; */
/* } */
.property-status {
  position: inherit;
  width: inherit;
  z-index: 2;
  font-size: 16px;
  background-color: red;
  padding: 5px; /*To change the width of ribbon*/
  text-align: center;
  transform: rotate(-45deg);
  right: 30%;
  top: 10%;
  color: #fff;
  font-weight: bold;
}

/*Some adjustments */
/* .card { */
/*   margin-right: 0px; */
/* } */
.card-body-bottom {
  padding: 0;
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* max-height: 10px; */
  /* align-items: stretch; */
  /* justify-content: center; */
  /* align-content: center; */
  & .btn-danger {
    width: 100%;
    height: 100%;
    align-content: center;
    font-weight: bold;
  }
}
.bg-header {
  background-color: red;
}

.card-body-carousel {
  height: 420px;
  min-width: auto;
  margin: 2px;
  & iframe {
    height: inherit;
    width: 750px;
  }
}

/*Headers*/
#header_1 {
  height: 20px;
  background-color: red;
}
#header_2 {
  height: 50px;
  background-color: blue;
  padding: 2px;
  display: flex;
  justify-content: space-between;
  & > #logo {
    color: white;
    align-self: center;
  }
  & > #menu-icon {
    color: white;
    cursor: pointer;
    display: none;
    font-size: 1.2rem;
  }

  & > ul {
    margin: auto;
    float: right;
    height: inherit;
    list-style-type: none;
    /* background-color: mediumvioletred; */
    & > li {
      display: inline;
      float: left;
      & > a {
        display: block;
        padding: 8px;
        color: white;
        &:hover {
          background-color: green;
        }
        &:link {
          text-decoration: none;
        }
      }
    }
  }
}
#banner {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  & .img-menu {
    margin-bottom: 10px;
    margin-left: 25%;
  }
  & .text-white {
    margin-top: -500px;
  }
  & .btn {
    height: 40px;
    font-size: large;
  }
}

@media screen and (max-width: 768px), screen and (max-height: 800px) {
  #banner {
    height: 75vh;
    & .text-white {
      margin-top: unset;
      margin-top: -100px;
    }
    & .btn {
      width: 175px;
      font-size: medium;
    }
  }
}

.btn-danger {
  background-color: #ff0000;
}

/* @media screen and (max-width: 768px) { */
/*   #banner { */
/*     display: none; */
/*   } */
/* } */
/**/
/* .partners { */
/*   display: block; */
/*   margin-left: auto; */
/*   margin-right: auto; */
/*   width: 50%; */
/* } */
/* .carousel { */
/*   height: 300px; */
/*   & .carousel-img { */
/*     display: block; */
/*     min-height: 300px; */
/*     width: 100%; */
/*     background-color: white; */
/*   } */
/* } */
/* footer { */
/*   display: flex; */
/*   min-height: 50vh; */
/*   flex-direction: column; */
/*   justify-content: flex-end; */
/* } */
/* #valuation-button { */
/*   height: 100px; */
/* } */
/**/
.bg-light1 {
  /* background-color: #234969; */
  background-color: #2791c9;

  & .fontStyle1 {
    font-family: inherit;
    color: white;
  }
  & a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-color: white;
  }
  & a#valuation-button {
    margin: 10px;
  }
}

@media screen and max-width(768px) {
  .bg-light1 {
    display: none;
  }
}
@media screen and max-width(768px) {
  #valuation-button {
    margin: 10px;
  }
}

.bg-header {
  text-align: center;
}

legend {
  text-align: center;
}

.role-header {
  height: 30px;
  font-size: 1.1rem;
  /* text-align: center; */
  background-color: red;
  padding-top: 3px;
  padding-left: 5px;
  color: white;
  font-weight: bold;
}

.google-direction {
  margin-bottom: 4px;
  margin-top: -12px;
}
.vanish-1 {
  display: block;
}
@media screen and (max-width: 1000px) {
  .vanish-1 {
    display: none;
  }
}

/*
* ===========================
* Testimony
* ===========================
*/

.list__review {
  column-width: 18rem;
  column-gap: 1.5rem;
  list-style: none;
  padding-inline: 1rem;
  margin: 2rem 0;
}

.review__item:not(:first-child) {
  margin-block-start: 1.5rem;
}

.review__item {
  position: relative;
  /* background: linear-gradient( */
  /*   135deg, */
  /*   rgb(182 219 255) 0, */
  /*   rgb(238, 248, 255) 100% */
  /* ); */
  border-radius: 0.8em;
  background-color: white;
  padding: 1.25rem;
  break-inside: avoid;
}

.review__heading {
  position: absolute;
  inset: 0 auto auto 0;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 !important;
  border-radius: 25px;
  padding: 5px 10px;
  line-height: 1;
  transform: translate(-10px, -50%);
  box-shadow:
    0 0 0 1px rgba(10, 10, 10, 0.05),
    0 1px 0 0 rgba(10, 10, 10, 0.05),
    0 0.1em 0.6em -0.5em rgba(10, 10, 10, 0.05),
    0 0.2em 1.2em -0.8em rgba(10, 10, 10, 0.1),
    0 0.3em 0.7em -0.6em rgba(10, 10, 10, 0.2),
    0 0.4em 0.8em -0.7em rgba(10, 10, 10, 0.3);
}

.review__title {
  position: relative;
  font-size: 0.625rem;
}

.review__title::after {
  position: absolute;
  inset: -5px -0.25rem -5px auto;
  content: "";
  height: calc(0.625rem + 10px);
  width: 1px;
  background: rgba(10, 10, 10, 0.1);
}

.review__stars {
  font-size: 0.625rem;
}

.review__content {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.4;
  color: #222222;
}

.review__author {
  font-style: italic;
  font-size: 1rem;
  font-weight: bold;
}
.fa-google {
  background: conic-gradient(
      from -45deg,
      #ea4335 110deg,
      #4285f4 90deg 180deg,
      #34a853 180deg 270deg,
      #fbbc05 270deg
    )
    73% 55%/150% 150% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
ol.suggestions > li {
  font-weight: bold;
  & > ul {
    font-weight: normal;
    & > li {
      font-style: italic;
    }
  }
}
/* for slide show from w3*/
.w3-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  height: 300px;
  position: relative;
  & > img {
    height: inherit;
    max-height: 300px;
  }
  & > .w3-button {
    border: none;
    position: absolute;
    display: block;

    overflow: hidden;
    padding: 8px 16px;
    text-decoration: none;
    user-select: none;
    vertical-align: middle;
    top: 50%;
    color: #fff !important;
    background-color: #000 !important;
    &:disabled {
      cursor: not-allowed;
      opacity: 0.3;
    }
    &:hover {
      color: #000 !important;
      background-color: #ccc !important;
    }
  }
  & > .w3-display-left {
    position: absolute;
    text-align: left;
    left: 0%;
    transform: translate(0%, -50%);
    /* -ms-transform: translate(-0%, -50%); */
  }
  & > .w3-display-right {
    position: absolute;
    text-align: right;
    right: 0%;
    transform: translate(0%, -50%);
    /* -ms-transform: translate(0%, -50%); */
  }
}

/*For different screen size*/

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .navTrigger {
    display: block;
  }
  .nav div.logo {
    margin-left: 15px;
  }
  .nav div.main_list {
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  .nav div.show_list {
    height: auto;
    display: none;
  }
  .nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    height: 100vh;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #111;
    /*same background color of navbar*/
    background-position: center top;
  }
  .nav div.main_list ul li {
    width: 100%;
    text-align: right;
  }
  .nav div.main_list ul li a {
    text-align: center;
    width: 100%;
    font-size: 3rem;
    padding: 20px;
  }
  .nav div.media_button {
    display: block;
  }
  #banner {
    & .img-menu {
      margin-left: 0;
    }
  }
  .compact {
    line-height: 1rem !important;
    & .fs-3 {
      font-size: 1rem !important;
    }
    & .fs-5 {
      font-size: 0.8rem !important;
    }
    & .fs-6 {
      font-size: 0.7rem !important;
    }
  }
  .fs-1 {
    font-size: 2rem !important;
  }
  .icon-bar {
    display: none;
  }
}

#mapd {
  z-index: 0;
}

h1.address.card-text {
  font-size: unset;
  font-weight: bold;
  & p {
    margin-bottom: 0;
  }
}
