.form-con h3 {
  margin-bottom: 0.5em;
}
.pricing {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}

.pricing .price {
  background-color: var(--secondary-light);
  padding: 0.5em;
  border-radius: 5px;
  font-size: 0.9rem;
  color: var(--primary);
}

.user {
  display: flex;
  align-items: center;
  color: var(--primary);
  margin-bottom: 1em;
}

.user .user-img {
    width: 46px;
    margin-right: 0.5em;
    border-radius: 50%;
    height: 46px;
}

.user .icon {
  width: 8px;
  margin-left: 0.5em;
}

.user p {
  font-size: 1rem;
      margin-top: 10px;
}

.location {
  display: flex;
  align-items: center;
  color: var(--primary);
  margin-bottom: 1em;
}

.location img {
  width: 12px;
  margin-right: 0.3em;
}

.location p {
  font-size: 0.9rem;
}

.map {
  width: 100%;
  height: 100px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  object-fit: cover;
  object-position: center;
  margin-bottom: 1em;
}
.description {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 1em;
    height: 200px;
    overflow-y: auto;
}
/*.description {
    
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 1em;
   height: 300px; 
   overflow-y: auto; 
}*/

.description h5 {
  color: var(--dark-text);
  margin-bottom: 0.5em;
  font-size: 1.1rem;
}

.description p {
  color: var(--light-text);
  margin-bottom: 0.5em;
  font-size: 1.1rem;
}

.btns {
  margin-top: 2em;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: space-between;
}
.btns .custom-btn {
  width: 50%;
  justify-content: center;
  height: 50px;
}
