/*  */
.accordion-awards .card__content{
  padding: 40px 10px 10px 10px;
}

.accordion-awards .card__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.award-card {
  position: relative;
  overflow: hidden;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(50% - 15px);
  padding: 65px 30px 26px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.3);
}
.award-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  width: 40px;
  height: 70px;
  background-image: url('../images/medal.png');
  background-repeat: no-repeat;
}

.award-card::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0px;
  width: 100%;
  height: 6px;
  background: -moz-linear-gradient(45deg, #d22533 0%, #963389 100%);
  background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #d22533), color-stop(100%, #963389));
  background: -webkit-linear-gradient(45deg, #d22533 0%, #963389 100%);
  background: -o-linear-gradient(45deg, #d22533 0%, #963389 100%);
  background: -ms-linear-gradient(45deg, #d22533 0%, #963389 100%);
  background: linear-gradient(45deg, #d22533 0%, #963389 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d22533', endColorstr='#963389', GradientType=1);
}

.award-card .award-title {
  padding-right: 50px;
  margin: 0 0 6px;
  text-transform: uppercase;
  line-height: 1.3;
}
.award-card .award-media {
  margin: 0 0 6px;
  color: #959595;
  font-size: 1.4rem;
}
.award-card .award-description {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: #666666;
}
.award-card .award-logo {
  position: absolute;
  top: 20px;
  left: 30px;
  width: auto;
  max-height: 40px;
}

/*  */
.award-filters {
  position: relative;
  height: 40px;
  margin-bottom: 20px;
}

@media (max-width: 767px){
  .accordion-awards .card__content {
    flex-direction: column;
  }

  .award-card .award-title{
    font-size: 18px;
    line-height: 1.3;
    padding-right: 0;
  }

  .award-card::before{
    top: -5px;
    background-size: 30px;
  }
}