/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.rh-assets-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.rh-assets-card__img {
  flex 0 0 19rem;
  width: 100%;
  height: 19rem;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 778px) {
  .rh-assets-card__img {
    flex: 0 0 25rem;
    height: 25rem;
  }
}
@media screen and (min-width: 1210px) {
  .rh-assets-card__img {
    flex: 0 0 30rem;
    height: 30rem;
  }
}

.rh-assets-card__img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.rh-assets-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  margin-top: -3rem;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (min-width: 778px) {
  .rh-assets-card__content {
    padding: 2.5rem;
    margin-top: -6rem;
  }
}
@media screen and (min-width: 1210px) {
  .rh-assets-card__content {
    padding: 3rem;
    margin-top: -10rem;
  }
}

.rh-assets-card__tag {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.7rem;
  letter-spacing: 0.11rem;
  text-transform: uppercase;
  color: #1D1751;
}

.rh-assets-card__title {
  margin: 0;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #1D1751;
}
@media screen and (min-width: 778px) {
  .rh-assets-card__title {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
}
@media screen and (min-width: 1210px) {
  .rh-assets-card__title {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}

.rh-assets-card__link {
  display: block;
  width: 100%;
  padding: 1.2rem 3rem;
  margin-top: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #1D1751;
  line-height: 2.2rem;
  font-weight: 800;
  font-size: 1.6rem;
  border-radius: 60px;
  border: 2px solid rgba(17, 35, 104, 0.2);
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 778px) {
  .rh-assets-card__link {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1210px) {
  .rh-assets-card__link {
    margin-top: 2rem;
  }
}

.rh-assets-card__link:hover {
  color: #fff;
  background-color: #1D1751;
  box-shadow: 0px 20px 45px 0px rgba(17,35,104,0.3);
}