
.resource-card {
  padding-bottom: 30px;
}

.resource-card a {
  cursor: pointer;
  text-decoration: none;
  color: rgb(192, 8, 128);
  font-weight: 600;
  transition: .8s ease;
}

.resource-card .content {
  position: relative;
}
.icon path {
    transition: fill .8s ease;
}

.resource-card .bg-wrap {
  position: relative;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% center;
  background-size: cover;
  padding: 50px 0;
  min-height: 300px;
}

.resource-card h2.title {
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}
.resource-card h2.title {
  font-size: 3.5rem;
  line-height: 1.5;
  font-family: prometo, sans-serif;
  font-weight: 900;
  color:#fff;
}

.resource-card .link-content {
  background-color: #ededed;
  padding: 20px;
}

.resource-card p.more {
  margin: 0;
}

.resource-card .bg-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(192, 8, 128);
  transition: .8s ease;
  opacity:0;
}
.resource-card .bg-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0, 0, 0);
    transition: .8s ease;
    opacity: 0.3;
}
.resource-card a:hover .bg-wrap:after {
  background-color:  rgb(192, 8, 128);
  opacity:0.4;
}

.resource-card a:hover .link-content {
  color: #fff;
  background-color: #c00880;
  transition: .8s ease;
}

.resource-card a:hover path.arrow {
  fill: #fff;
}
.bg_inner {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  width: 100%;
  text-align: center;
  color: rgb(255, 255, 255);
  z-index: 7;
  padding: 20px;
}

.res_description {
  max-height: 0px;
  opacity: 0;
  transition: all 0.6s ease-out 0s;
  position: relative;
  z-index: 2;
  color:#fff;
  font-weight: normal;
}
.resource-card a:hover .res_description {
  max-height: 150px;
  opacity: 1;
  transition: .8s ease;
}
.resource_img {
    display: none;
}
.resource-card.wow.fadeInUp {
    width: 100%;
}

@media(min-width:768px){
  .res_card_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-card.wow.fadeInUp {
    width: 50%;
}

  .resource-card .link-content {
    padding-bottom: 30px;
    padding-top: 30px;
  }

}

@media (min-width: 1260px){
  .resource-card h2.title {
  }
}
@media(max-width:480px){
.resource_img {
    display: block;
}
  .bg-wrap {
    background-image: unset !important;
    min-height: unset !important;
    padding: unset !important;
}
}