/* =================  GLOBALS ====================== */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
}
@font-face{
  font-family: product-sans;
  src: url(../fonts/Product-Sans-Regular.ttf);
}
html{
  font-family: product-sans, Arial, sans-serif;
}
body{
  margin: 80px 0 0 !important;
  background-color: #fafafa !important;
}

:root{
  --main-color: #203b75;
  --main-color-light: #3a62b9;
  --white-color: #ffffff;
  --black-color: #000000;
  --light-grey-color: #f5f5f5;
}
.clearfix{
  clear: both;
}

/* =================  GLOBALS ====================== */
.profile-cont{
  width: 100%;
  height: 370px;
  background-image: url(../img/seller-profile/home6.jpg);
  background-size: cover;
  /* background-repeat: no-repeat; */
  background-position: 0px 480px;
  background-color: #0000009a;
  background-blend-mode: darken;
  position: relative;
}
.profile-cont .profile-info{
  position: absolute;
  top: 204px;
  left: 75px;
  display: flex;
}
.profile-cont .profile-img{
  width: 150px;
  height: 150px;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}
.profile-cont .profile-img img{
  width: 150px;
  height: 150px;
}
.profile-cont .profile-img button,
.profile-cont button{
  background-color: transparent;
  all: unset;
  color: var(--white-color);
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  right: 10px;
  outline: none;
  display: none;
}
.profile-cont button{
  color: var(--black-color);
  background-color: var(--white-color);
  padding: 5px;
  border-radius: 5px;
}
.profile-info .profile-text h1{
  color: var(--white-color);
  text-shadow: 1px 1px 3px #00000069;
  cursor: pointer;
}
.profile-info .profile-text .meta-info{
  text-align: center;
  color: var(--white-color);
} 
.profile-info .profile-text .meta-item{
  margin-left: 10px;
  font-size: 14px;
}
.profile-info .profile-text .meta-item h4{
  font-weight: 400;
  font-size: 18px;
}

/* ================ sale section ================ */
.sale-cont{
  margin-top: 100px;
}
.sale-cont .add-btn{
  background-color: #002331cc;
  border-bottom: 2px solid #000000c4;
  margin-bottom: 15px;
  padding: 0 10px;
}
.sale-cont h1{
  color: var(--white-color);
  font-size: 35px;
  font-weight: 400;
}
.sale-cont .add-btn button{
  all: unset;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  line-height: 30px;
  font-size: 18px;
  margin-bottom: 10px;
}
.sale-cont .add-btn button:hover{
  text-decoration: underline;
}
.sale-item{
  width: 31%;
  border-radius: 10px;
  border: 1px solid #00000036;
  margin-bottom: 30px;
  box-shadow: 3px 3px 10px #0000006b;
  transition: .3s;
}
.sale-item:hover{
  transform: scale(1.02);
}
.sale-item .img{
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  position: relative;
  height: 230px;
  cursor: pointer;
}
.sale-item .img img{
  width: 100%;
  height: 100%;
}
.sale-item .img p{
  position: absolute;
  bottom: -10px;
  left: 10px;
  background-color: #000000e5;
  color: var(--white-color);
  font-size: 14px;
  padding: 2px 5px;
  border-radius: 3px;
}
.sale-item .sale-det{
  margin-top: 15px;
  padding: 0px 15px 15px;
}
.sale-item .sale-det h5{
  opacity: .95;
  margin-bottom: 3px;
  cursor: pointer;
}
.sale-item .sale-det p{
  opacity: .6;
  font-size: 12px;
  margin-bottom: 4px;
}
.sale-item .sale-det .location{
  opacity: .9;
  font-size: 14px;
}
.sale-item .sale-det .flat-det{
  opacity: .9;
  font-size: 12px;
}
.sale-item .sale-det .price{
  margin-top: 10px;
  font-size: 18px;
  opacity: 1;
  color: var(--main-color);
  font-weight: 600;
} 
.sale-cont .accordion2{
  margin-bottom: 100px;
} 
.sale-cont #accordionExample{
  width: 100%;
}


/* ===================== OVERLAY ======================== */
.over-lay{
  width: 100%;
  height: 100vh;
  background-color: #000000ef;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.over-lay .item{
  width: 350px;
  color: var(--black-color);
}
.over-lay .item .add-img{
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #203b75fb;
  cursor: pointer;
  user-select: none;
}
.over-lay .item .add-img > div{
  color: var(--white-color);
  font-size: 30px;
}
.over-lay .item .sale-detail{
  background-color: var(--white-color);
  padding: 15px;
}
.over-lay .item .sale-detail div{
  margin-bottom: 10px;
} 
.over-lay .item .sale-detail button{
  padding: 2px 20px;
  transform: translateX(125px);
  user-select: none;
}
.over-lay .close-btn{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white-color);
  background-color: var(--main-color);
  text-align: center;
  line-height: 50px;
  position: absolute;
  top: 80px;
  right: 150px;
  cursor: pointer;
  user-select: none;
}

/* ============ MEDIA QUERY ============= */
@media (max-width: 991px){
  .sale-cont .sale-item{
    width: 49%;
  }
  .profile-cont .profile-info{
    left: 100px;
  }
}

@media (max-width: 918px){
  .profile-cont{
    background-position: 0 300px;
    height: 300px;
  }
  .profile-cont .profile-info{
    left: 100px;
  }
}
@media (max-width: 768px){
  .profile-cont .profile-info{
    top: 125px;
  }
}
@media (max-width: 600px){
  .profile-cont .profile-info{
    left: 60px;
  }
}
@media (max-width: 470px){
  .sale-cont .sale-item{
    width: 100%;
    justify-self: center;
  }
  .sale-cont h1 {
    color: var(--white-color);
    font-size: 29px;
    font-weight: 400;
  }
}
@media (max-width: 375px){
  .profile-cont .profile-info{
    left: 20px;
  }
}






























