.c-guide {
  display: flex;
  flex-direction: column;
  background-color: #fbf6ee;
  padding: 15px;
  border-radius: 20px;
  color: #343434;
  text-align: center;
}
.c-guide:hover {
  opacity: 1;
}
.c-guide:hover .c-guide__image-container img {
  transform: scale(1.1);
}
.c-guide__image-container {
  border-radius: 10px;
  background-color: #f0e9df;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-guide__image-container img {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.4));
  /*transition: transform 0.3s ease-in-out;*/
  width: auto;
  /*object-fit: contain;*/
  height: 270px;
}
@media (max-width: 1599.98px) {
  .c-guide__image-container img {
    height: 216px;
  }
}
@media (max-width: 991.98px) {
  .c-guide__image-container img {
    height: 160px;
  }
}
.c-guide__text-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-wrap: balance;
  padding: 40px 50px;
  height: 100%;
}
@media (max-width: 1599.98px) {
  .c-guide__text-container {
    padding: 32px 40px;
  }
}
.c-guide__text-container p {
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1.11;
  margin: 0;
  color: #343434;
  text-transform: uppercase;
}
@media (max-width: 1599.98px) {
  .c-guide__text-container p {
    font-size: 0.9em;
  }
}
@media (max-width: 991.98px) {
  .c-guide__text-container p {
    font-size: 1.125em;
  }
}
.c-guide__text-container p:after {
  content: "";
  width: 24px;
  height: 1px;
  display: block;
  margin: 15px auto 0;
  background-color: #00aecb;
}
.c-guide__text-container h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5;
  color: #343434;
}
@media (max-width: 1599.98px) {
  .c-guide__text-container h3 {
    font-size: 1.2em;
  }
}
@media (max-width: 991.98px) {
  .c-guide__text-container h3 {
    font-size: 1.25em;
  }
}
.c-guide__text-container button {
  margin-top: auto;
}