.contain {
  width: 1100px;
  margin: 0 auto;
}
.container H2{
text-align: center
}

body {
  background-color: #000;
}
.contain1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;  
  padding-top: 10px;
}
.card {
  -ms-flex-preferred-size: calc(33.33333% - 30px);
  flex-basis: calc(33.33333% - 30px);

  margin: 0 15px 30px;

  overflow: hidden;

  border-radius: 28px;
}
.card_link {
  display: block;
  padding: 30px 20px;
  background-color: #20074a;

  overflow: hidden;

  position: relative;
}
.card_link:hover,
.card_link:hover .card_date {
  text-decoration: none;
  color: #FFF;
}
.card_link:hover .card_bg {
  -webkit-transform: scale(10);
  -ms-transform: scale(10);
  transform: scale(10);
}
.card_nombre {
  min-height: 87px;
  margin: 0 0 -15px;
text-align: center;
  overflow: hidden; 
  font-weight: bold;
  font-size: 30px;
  color: #FFF;

  z-index: 2;
  position: relative;
}
.card_nombre img{
  width: 100%;
}
.card_date-box {
  font-size: 18px;
  color: #FFF;
  z-index: 2;
  position: relative;
}
.card_date {
  font-weight: bold;
  color: #f9b234;

  -webkit-transition: color .5s ease;
  -o-transition: color .5s ease;
  transition: color .5s ease
}
.card_bg {
  height: 128px;
  width: 128px;
  background-color: #3f993e;

  z-index: 1;
  position: absolute;
  top: -95px; 
  right: 120px;

  border-radius: 90%;

  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}
.card:nth-child(2n) .card_bg {
  background-color: #246f77; 
}
.card:nth-child(3n) .card_bg {
  background-color: #76730d;
}
.card:nth-child(4n) .card_bg {
  background-color: #8f1f6b;
}
.card:nth-child(5n) .card_bg {
  background-color: #eb7222;
}
.card:nth-child(6n) .card_bg {
  background-color: #3e44e1;
}



@media only screen and (max-width: 979px) {
  .card {
    -ms-flex-preferred-size: calc(50% - 30px);
    flex-basis: calc(50% - 30px);
  }
  .card_nombre {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .ag-format-container {
    width: 96%;
  }

}
@media only screen and (max-width: 639px) {
  .card {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .card_nombre {
    min-height: 72px;
    line-height: 1;

    font-size: 24px;
  }
  .card_link {
    padding: 22px 40px;
  }
  .card_date-box {
    font-size: 16px;
  }
}