.videos-header .vheader {
  font-size: 40px;
  color: #00B19C;
  margin: 10px auto;
  width: 1200px;
  margin-top: 60px;
  max-width: 100%;
  text-align: center;
}
.videos {
  width: 1200px;
  max-width: calc(100% - 10px);
  text-align: center;
  margin: 30px auto;
  padding: 30px 5px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.videos .video {
  width: 250px;
  text-align: center;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 0 1px 2px #8a8a8a;
  overflow: hidden;
  position: relative;
}
.videos .video .image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  padding: 0;
  display: block;
  margin: 0;
}
.videos .video .icon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 20%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.7;
  display: block;
}
.videos .video .video-footer {
  width: 100%;
  background-color: #fff;
  height: 70px;
  padding: 0;
  margin: 0;
  box-shadow: 0 -1 5px #0000002b;
}
.videos .video .video-footer .video-category {
  font-size: 80%;
  color: #00B19C;
  text-align: left;
  display: block;
  margin: 10px;
  text-decoration: none;
  width: fit-content;
}
.videos .video .video-footer .video-header {
  line-height: 18px;
  width: fit-content;
  margin: 10px ;
  margin-top: 15px;
  text-decoration: none;
  text-align: left;
  display: block;
  font-size: 90%;
  color: #202020;
}
@media only screen and (max-width: 1050px) {
  .videos {
    margin-bottom: 50px;
  }
  .videos .video-header {
    font-size: 40px;
    width: calc(100% - 40px);
    padding: 20px;
    text-align: center;
  }
  .videos .videos-wrapper {
    width: calc(100% -20px);
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
  }
  .videos .videos-wrapper .video {
    display: block;
    margin: 15px 10px;
    width: 280px;
    height: auto;
  }
  .videos .videos-wrapper .video iframe {
    border: 1px solid darkgray;
    box-shadow: 2px 2px 5px darkgray;
    border-radius: 5px;
    width: calc(100% - 10px);
    display: block;
    margin: 5px;
  }
  .videos .videos-wrapper .video .text {
    color: #000000;
    padding: 10px 0px;
    color: #363636;
    text-align: left;
    cursor: pointer;
    max-width: calc(100% - 10px);
    margin: 5px;
  }
  .videos .videos-footer {
    width: calc(100% - 40px);
    text-align: center;
    padding-bottom: 20px;
  }
  .videos .videos-footer button {
    transition: all 0.3s linear;
    display: block;
    padding: 10px 20px;
    text-align: center;
    font-size: 20px;
    background-color: transparent;
    border-radius: 30px;
    border: 1px solid black;
    color: #000000;
    margin: auto;
  }
  .videos .videos-footer button:hover {
    color: #ffff;
    background-color: #000000;
    cursor: pointer;
  }
}
