.page {
  height: fit-content;
  width: 100vw;
  background-color: rgb(209, 196, 196);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-family: futura;
  font-size: 40px;
  color: black;
  padding: 50px;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.card {
  display: flex;
  flex-direction: row;
  gap: 7vw;
  margin-top: 50px;
  margin-bottom: 50px;
}

.content {
  display: flex;
  flex-direction: column;
  text-align: start;
  width: 30vw;
}

#tenant-procument-image {
  width: 45vw;
  box-shadow: 2px 2px 3px 1px rgba(51, 39, 51, 0.38);
}

#property-management-image {
  width: 45vw;
  box-shadow: 2px 2px 3px 1px rgba(51, 39, 51, 0.38);
}

#property-management-image-column {
  display: none;
  box-shadow: 2px 2px 3px 1px rgba(51, 39, 51, 0.38);
}

.image-card {
  display: flex;
  flex-direction: column;
}

#portfolio-management-image-0 {
  width: 35vw;
  box-shadow: 2px 2px 3px 1px rgba(51, 39, 51, 0.38);
}
#portfolio-management-image-1 {
  width: 13vw;
  height: 13vw;

  position: relative;
  top: -30%;
  left: 70%;
  box-shadow: 2px 2px 3px 1px rgba(51, 39, 51, 0.38);
}

.heading {
  font-size: 25px;
  font-weight: 100;
  margin: 0px;
  color: rgb(44, 26, 88);
}

.text {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 100;
  color: rgb(93, 92, 92);
}

.page-buttons-container {
  padding-bottom: 50px;
  display: flex;
  gap: 1vw;
  height: 40px;
}

.enquire-button {
  width: 20vw;
  height: 40px;
  border: solid 1px rgb(90, 70, 111);
  color: rgb(90, 70, 111);
  transition: 0.8s;
  background-color: rgba(0, 0, 0, 0);
  margin-top: 40px;
}

.enquire-button:hover {
  background-color: rgb(90, 70, 111);
  color: rgb(255, 255, 255);

  transition: 0.5s;
}

.enquire-button:active {
  width: 20vw;
  height: 40px;
  background-color: rgb(222, 144, 0);
  transition: 0.2s;
}
.close-button {
  width: 7vw;
  min-width: fit-content;
  height: 40px;
  border: solid 1px rgb(43, 33, 68);
  transition: 1s;
  background: none;

}

.close-button:hover {
  background: rgb(43, 33, 68);;
  transition: 1s;
  color: white;
}

.offer-table {
  background-color: white;
  padding: 20px;
  width: 60vw;
  font-size: small;
  margin-bottom: 50px;
}

.offer-content {
  background-color: white;
  padding: 20px;
  box-shadow: 2px 2px 2px 2px rgba(76, 65, 65, 0.477);
}

.offer-content .sus-card-title{
    padding-bottom: 10px ;
    font-size: medium;
    color: black;
}

.offer-content .sus-card-content{
  padding-bottom: 10px ;
  font-size: small;
  color: black;
}
@media (max-width: 800px) {
  .card {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title {
    text-align: center;
    padding-top: 0px;
    font-size: x-large;
  }

  #tenant-procument-image {
    width: 80vw;
  }

  #property-management-image {
    display: none;
  }
  #property-management-image-column {
    display: block;
    width: 80vw;
  }

  #portfolio-management-image-0 {
    width: 80vw;
  }
  #portfolio-management-image-1 {
    width: 30vw;
    height: 30vw;
    display: none;
  }

  .content {
    width: 80vw;
    align-items: center;
  }
}

@media (max-width: 400px) {
  .content {
    text-align: center;
  }
}
