.adoption-pet-container {
  border: 2px solid white;
  box-shadow: 0px 5px 10px #00000033;
  padding: 22px;
  border-radius: 8px;
}

.adoption-pet-container .adopt-search-heading {
  text-align: center;
  margin-top: 0;
}

.adoption-pet-container .adopt-search-btn {
  display: flex;
  text-align: center;
  justify-content: center;
  max-width: 450px;
  margin: 30px auto;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: bold;
  padding: 1rem;
  border-radius: 30px;
}

.adoption-pet-container .adoption-pet-listing {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 100%;
  gap: 1rem;
}

.adoption-pet-container .pet-template {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  min-height: 400px;
  max-width: 50%;
  margin: 0 auto;
}

.adoption-pet-container .pet-template .pet-image-container {
  height: 100%;
}

.adoption-pet-container .pet-template .pet-image-container img {
  height: 100%;
  object-fit: cover;
}

.adoption-pet-container .pet-template .pet-content {
  position: absolute;
  bottom: 0;
  background-color: white;
  padding: 20px;
  width: 100%;
}

.adoption-pet-container .pet-template .pet-content .hover-content {
  height: 0;
  transition: all 1s ease-in;
  display: none;
}

.adoption-pet-container .pet-template:hover .pet-content .hover-content {
  height: auto;
  display: block;
}

.adoption-pet-container .pet-template .pet-content h5,
.adoption-pet-container .pet-template .pet-content p {
  margin: 0 0 5px;
}

.adoption-pet-container .pet-template .pet-content p {
  font-size: 0.85rem;
}

.adoption-pet-container .pet-template .pet-link {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.adoption-pet-container .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1rem;
  right: auto;
  font-size: 1.5rem;
  z-index: 999;
  background: #343434;
  color: white;
  border-radius: 9999px;
  padding: 10px 15px;
}

.adoption-pet-container .slick-arrow.fa-chevron-right {
  left: auto;
  right: -1rem;
}

.adoption-pet-container .slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  bottom: -30px;
}

.adoption-pet-container .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.adoption-pet-container .slick-dots li button:before {
  font-size: 0.75rem;
}

@media only screen and (max-width: 768px) {
  .adoption-pet-container .adopt-search-btn {
    margin-top: 50px;
  }

  .adoption-pet-container .pet-template {
    margin-right: 5px;
    margin-left: 5px;
  }

  .adoption-pet-container .pet-template .pet-image-container img {
    min-height: 400px;
  }
}