.floorplans-wrapper {
  width: 100%;
  background: url('https://www.10wilmingtonplace.com/hubfs/10WilmingtonPlace-Apr2017/images/services-bg-left.png') no-repeat;
  display: flex;
  justify-content: center;
  padding: 40px 0px;
}

.floorplans-module {
    min-width: 900px;
}

.floorplans-module h2 {
  color: rgb(0, 37, 61);
  font-family: DroidSerifItalic, serif;
  font-size: 48px;
  font-weight: bold;
}

.floorplans-container {
    text-align: center;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    align-items: center;
}

.floorplan-card {
    width: 400px;
    height: 500px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    margin: 20px;
    position: relative;
    cursor: pointer;
  padding: 10px;
  border: 1px solid rgba(28, 84, 64, 1);
  border-radius: 22px;
  box-shadow: -8px 6px 8px 2px rgba(0,0,0,0.3);
  transition: box-shadow 0.3s ease;
}

.card-content {
    position: relative;
    top: 0;
    width: 100%;
    color: rgba(28, 84, 64, 1);
   /* background: rgba(0,0,0,0.5); /* Semi-transparent overlay */
    padding: 20px;
}

.card-content h3 {
 font-size: 2em; 
}

.card-content h4 {
  font-size: 1.4em;
  font-family: DroidSerifRegular, serif;
}

.floorplan-cta {
    font-size: 20px;
    position: absolute;
    bottom: 5px;
    right: 0;
    transform: translateX(-50%);
    background-color: rgba(28, 84, 64, 0.6);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 50px;
  transition: background-color 0.3s ease;
}

.floorplan-card:hover .floorplan-cta {
  background-color: rgba(28, 84, 64, 1);
}

.floorplan-card:hover {
  box-shadow: -12px 10px 12px 2px rgba(0,0,0,0.3);
}

.floorplan-card a:link,
.floorplan-card a:active,
.floorplan-card a:visited {
  color: white;
}

.floorplan-card a:hover {
  color: white;
}

.floorplan-disclaimer {
  width: 100%;
  background: rgba(28, 84, 64, 1);
  padding: 16px 40px;
  display: flex;
  justify-content: center;
  color: white;
  font-family: DroidSerif, sans-serif;
  font-size: 0.8em;
}

.floorplan-disclaimer a,
.floorplan-disclaimer a:visited,
.floorplan-disclaimer a:hover,
.floorplan-disclaimer a:active {
  color: white;
  text-decoration: underline;
}

.floorplan-disclaimer--col-1 {
  max-width: 70%;
  padding: 0px 20px 0px 0px;
}

.floorplan-disclaimer--col-1 h4 {
  font-family: DroidSerifRegular, serif;
  font-size: 1.2em;
}

.floorplan-dislaimer--col-2 {
  
}

.floorplan-disclaimer--col-2 img {
  width: 200px;
  height: 153px;
}

.disclaimer-icon {
  margin: 0px 20px;
}

@media(max-width: 767px) {
  .floorplans-wrapper {
    padding: 40px 20px;
  }
  .floorplans-module {
    min-width: 400px;
  }
  .floorplan-card {
    width: 310px;
    padding: 5px;
    margin: 10px;
  }
  .card-content {
    padding: 10px;
  }
}