.parent_container_layout_number_four {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;

  padding: 24px;
}

.layout_number_four {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;

  min-width: 350px;
  max-width: 400px;
  width: max-content;
  height: 150px;

  padding: 24px;
  margin-right: 16px;
  margin-bottom: 40px;

  border: 1px solid #eeeeee;
  border-radius: 8px;

  transition: all 300ms ease-out 0ms;
}

.layout_number_four:hover {
  box-shadow: 6px 8px 16px -4px rgb(200 200 200 / 30%),
    -6px 8px 16px -4px rgb(200 200 200 / 30%);

  cursor: pointer;

  transition: all 300ms ease-out 0ms;
}

.layout_number_four .disease_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0px;
}

.layout_number_four .disease_content h3 {
  font-weight: 500;
  text-transform: capitalize;
}

.layout_number_four .disease_content a {
  width: 130px;
  height: 35px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  color: #fff;
  background-image: linear-gradient(
    to bottom,
    hsla(100deg, 100%, 20%, 0.5),
    hsla(100deg, 100%, 20%, 1)
  );

  text-transform: capitalize;

  transition: all 300ms ease-out 0ms;
}

.layout_number_four .disease_content a:hover {
  font-weight: bold;
  background-color: hsla(100deg, 100%, 20%, 1);
}

.layout_number_four .disease_image {
}

.layout_number_four .disease_image img {
  height: 100px;
  width: 100px;
  border-radius: 100px;
  object-fit: cover;
}

/* STYLES FOR LAYOUT NUMBER FIVE */

.layout_number_five_parent_container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;

  padding: 24px;
}

.layout_number_five {
  position: relative;

  width: 250px;
  height: 300px;

  padding: 24px;
  margin-right: 16px;
  margin-bottom: 16px;

  /* border: 1px solid black; */
}

.layout_number_five .disease_container {
  width: 100%;
  height: 100%;
}

.layout_number_five .disease_container div:nth-child(1) {
  width: 100%;
  height: 50%;
}

.layout_number_five .disease_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 8px;
}

.layout_number_five .disease_container div:nth-child(2) {
  position: absolute;
  top: 100px;
  left: calc(50% - 28%);
  width: 55%;
  height: 30%;
  background-color: hsla(0deg, 6%, 98%, 1);
  box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.25);

  border-radius: 8px;
  transition: all 200ms ease-out 0ms;
}

.layout_number_five .disease_container div:nth-child(2):hover {
  box-shadow: 0px -4px 8px rgba(0, 0, 0, 0.25);
  transition: all 200ms ease-out 0ms;
}

.layout_number_five .disease_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0px;
}

.layout_number_five .disease_content span {
  color: #333333;
  font-weight: bold;
  font-size: 24px;
}

.layout_number_five .disease_content h3 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  text-align: center;
}

.layout_number_five a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 5px;
  width: 0%;
  border-top: 4px solid #555;
  transition: all 200ms ease-out 0ms;
}

.layout_number_five a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 5px;
  width: 100%;
  border-top: 4px solid #ccc;
  transition: all 200ms ease-out 0ms;
}

.layout_number_five .disease_content a {
  position: relative;
  color: darkblue;
  text-transform: capitalize;
}

.layout_number_five .disease_content a:hover {
  font-weight: 600;
}

.layout_number_five a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 5px;
  width: 100%;
  border-top: 4px solid #555;
  transition: all 200ms ease-out 0ms;
}
