.container-vlever {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}

.webinars {
  margin-bottom: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}

@media screen and (max-width: 786px) {
  .webinars {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  z-index: 1;
  position: relative;
  background: #fff;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 1, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 1, 1);
  background-color: #f6f6f6;
  width: 100%;
}

img.card__img {
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}

.card__media:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.card__actions {
  font-size: 16px;
  line-height: normal;
  width: 100%;
  background-color: transparent;
  padding: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.card-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: #747474;
  height: 104px;
  padding: 16px;
}

.card-info-container .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: .5em 0;
  vertical-align: middle;
  width: 2rem;
  margin-top: 0;
}

h4.card-name {
  letter-spacing: inherit;
  padding: 0;
  font-size: .750rem;
  color: #414141;
  font-weight: 400;
  line-height: 1.5em;
  margin: 0 !important;
}

h5.card-title {
  letter-spacing: inherit;
  padding: 0;
  font-size: .750rem;
  color: #414141;
  display: inline-block;
  font-weight: 300;
  vertical-align: middle;
  line-height: 1.2em;
  margin: 0 !important;
}

p.card-subtitle {
  font-family: inherit;
  margin: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: #747474;
  font-weight: 300;
  font-size: .6em;
  padding: 4px 0;
  position: absolute;
  bottom: 2.66667px;
  margin-bottom: .2em;
}

.btn-container {
  margin: 15px 0;
  text-align: center;
}

.btn {
  background: 0 0;
  border: none;
  border-radius: 2px;
  color: #000;
  position: relative;
  height: 36px;
  margin: 0;
  min-width: 64px;
  padding: 0 16px;
  display: inline-block;
  font-family: "Roboto","Helvetica","Arial",sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  overflow: hidden;
  will-change: box-shadow;
  -webkit-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1);
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  vertical-align: middle;
}

.btn-primary {
  color: #3f51b5;
}

.btn:hover {
  background: rgba(158, 158, 158, 0.4);
  color: #3f51b5;
}