.videos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.videos .video-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  cursor: pointer;
  width: calc(33% - 20px);
  padding: 0 0 10px 0;
  min-height: 5px;
  margin: 0 0 10px 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-shadow: 0px -2px 13px 0px rgba(34, 60, 80, 0.2);
          box-shadow: 0px -2px 13px 0px rgba(34, 60, 80, 0.2);
}

.videos .video_text {
  padding: 10px 5px;
}

.pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pages .link {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #000;
  margin-right: 10px;
  text-decoration: none;
}

.pages .active {
  color: #f7761f;
}

.videos__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
  bottom: 0;
  right: 0;
}

.videos__button a {
  display: block;
  border-radius: 30px;
  padding: 1.2em;
  right: 0;
  background-color: #f7761f;
  margin-bottom: 5px;
  color: #fff;
  text-decoration: none;
}

.videos__button a:hover {
  color: #fff;
  -webkit-box-shadow: 0px 0px 19px 3px rgba(34, 60, 80, 0.47);
          box-shadow: 0px 0px 19px 3px rgba(34, 60, 80, 0.47);
}

@media screen and (max-width: 750px) {
  .videos {
    width: 100%;
  }
  .videos .video-block {
    width: 100%;
  }
  .videos__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=video.css.map */