.wrapper {
  width: 33%;
  max-width: 412px;
  padding: 0px 20px;
}
.img {
  width: 100%;
  margin-bottom: 15px;
  img {
    width: 100%;
    object-fit: cover;
  }
}
.title {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  max-width: 350px;

  line-height: 33px;
  color: #000000;
  margin-bottom: 22px;
}
.description {
  font-family: 'Roboto';
  font-style: normal;
  max-width: 350px;

  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 15px;
}
.readMore {
  cursor: pointer;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #004225;
  text-decoration: underline;
}

.button {
  transition: all 0.2s;
  display: flex;
  cursor: pointer;
  max-width: 350px;

  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  background: transparent;
  color: #004225;
  border: 1px solid #004225;
  border-radius: 10px;
  padding: 18px 10px;

  &:hover {
    background: #004225;
    color: #fff;
  }
}

@media (max-width: 1024px) {
  .wrapper {
    width: auto;
    max-width: unset;
  }
  .title {
    text-align: end;
    max-width: unset;
  }
  .description {
    text-align: end;
    max-width: unset;
  }
  .button {
    width: auto;
    max-width: unset;
  }
}
