.action-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.3rem 0 1.8rem 0;
}

.action-items img {
  width: 20px;
  cursor: pointer;
}

.action-items p {
  margin-bottom: 0;
  width: 80%;
  white-space: pre-wrap;
}
.video-container {
  position: relative;
  width: 100%; /* Set the desired width for the container */
  padding-top: 56.25%; /* 16:9 aspect ratio (9 / 16 * 100%) */
  overflow: hidden;
  border-radius: 10px;
  background: rgba(26, 68, 128, 0.08);
}

.videoHeading {
  display: none;
}

.video-container:hover {
  background: rgba(26, 68, 128, 0.2);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 2rem 0;
  /* justify-content: space-between; */
  gap: 19px;
}
.videos .videos-block {
  width: 31.5%;
}
.videos video {
  border-radius: 10px;
  box-shadow: 1px -1px 10px 0px rgba(0, 0, 0, 0.1);
}

.videos video {
  width: 100%;
}

@media (min-width: 550px) and (max-width: 768px) {
  .videos {
    margin: 1.5rem 0;
  }

  .videos .videos-block {
    width: 48%;
  }
}
@media (max-width: 480px) {
  .action-items {
    margin: 0.25rem 0 1.5rem 0;
  }
  .videos .videos-block {
    width: 100%;
  }
}
