.webinars-wrapper
{
  padding: 16px;
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  /*gap: 10px;*/
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.webinar-card {
  width: 100%;
  background: white;
  color: black;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100px;
  border-radius: 16px;
  overflow: hidden;
}
.webinar-card img {
  width: 100%;
}
.webinar-card p {
  font-family: "Object Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 17px;
  transition: 0.3s;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 16px;
}
@media (max-width: 900px)
{
  .webinars-wrapper
  {
    grid-template-columns: repeat(2, 1fr);
    /*display: flex;*/
    /*flex-direction: column;*/
    /*align-items: center;*/
  }
}

.btn-small {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  border-radius: 10px;
  padding: 7px 10px;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  background: #3c3c3b;
  color: #FFFFFF !important;
  text-align: center;
  text-decoration: none;
  display: block;
}

.btn-small:hover {
  background-color: #181818;
}
.webinar-content {
  padding: 10px;
}
