.videosBlock {
  margin-top: 100px;
  margin-bottom: 100px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -o-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.videosBlock.aos-animate {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.videosBlock .video {
  width: 100%;
  height: 300px;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.videosBlock .video:after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: #1f2c3d;
  opacity: 0.7;
}
.videosBlock .video.fullWidth {
  height: 500px;
}
.videosBlock .video .videoContent {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 440px;
  padding: 0 20px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.videosBlock .video .videoContent .textTitle {
  display: block;
}
.videosBlock .video .videoContent .play {
  display: inline-block;
  cursor: pointer;
  margin-left: -70px;
  margin-top: 50px;
}
.videosBlock .video .videoContent .play:hover .playButton {
  background: #bb3d42;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.videosBlock .video .videoContent .play .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-style: italic;
  font-weight: 600;
  width: 70px;
  margin-left: -10px;
}
.videosBlock .video .videoContent .play .playButton {
  display: inline-block;
  vertical-align: middle;
  border: 2px solid #bb3d42;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  background: transparent;
  margin-left: 10px;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.videosBlock .video .videoContent .play .playButton i {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: auto;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-left: 1px;
  font-size: 10px;
}
.videosBlock .col {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
}
.videosBlock .col:first-child {
  padding-right: 20px;
}
.videosBlock .col:last-child {
  padding-left: 20px;
}
.videosBlock .videosSlider {
  white-space: nowrap;
  overflow: hidden;
}
.videosBlock .videosSlider .moveButton {
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.videosBlock .videosSlider .moveButton.previous {
  left: -88px;
}
.videosBlock .videosSlider .moveButton.next {
  right: -88px;
}
.videosBlock .videosSlider .innerWrapper {
  position: relative;
  width: calc(100% + 40px);
  left: 0;
  margin-left: -20px;
  -webkit-transition: left 0.9s 0s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: left 0.9s 0s cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: left 0.9s 0s cubic-bezier(0.86, 0, 0.07, 1);
  transition: left 0.9s 0s cubic-bezier(0.86, 0, 0.07, 1);
}
.videosBlock .videosSlider .innerWrapper .item {
  width: calc(100% - 40px);
  margin: 0 20px;
  height: 500px;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.videosBlock .videosSlider .innerWrapper .item.active .video {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: transform 0.6s 0.3s, opacity 0.3s 0.3s;
  -moz-transition: transform 0.6s 0.3s, opacity 0.3s 0.3s;
  -ms-transition: transform 0.6s 0.3s, opacity 0.3s 0.3s;
  -o-transition: transform 0.6s 0.3s, opacity 0.3s 0.3s;
  transition: transform 0.6s 0.3s, opacity 0.3s 0.3s;
}
.videosBlock .videosSlider .innerWrapper .item.active .video .videoContent {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: margin-top 0.3s 0.5s, opacity 0.3s 0.5s, visibility 0.3s 0.5s;
  -moz-transition: margin-top 0.3s 0.5s, opacity 0.3s 0.5s, visibility 0.3s 0.5s;
  -ms-transition: margin-top 0.3s 0.5s, opacity 0.3s 0.5s, visibility 0.3s 0.5s;
  -o-transition: margin-top 0.3s 0.5s, opacity 0.3s 0.5s, visibility 0.3s 0.5s;
  transition: margin-top 0.3s 0.5s, opacity 0.3s 0.5s, visibility 0.3s 0.5s;
}
.videosBlock .videosSlider .innerWrapper .item .video {
  height: 120%;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 120%;
  -webkit-transform: translate(-50%, -50%) scale(0.85);
  -moz-transform: translate(-50%, -50%) scale(0.85);
  -o-transform: translate(-50%, -50%) scale(0.85);
  -ms-transform: translate(-50%, -50%) scale(0.85);
  transform: translate(-50%, -50%) scale(0.85);
  background-size: cover;
  background-position: center center;
  opacity: 0.3;
  -webkit-transition: transform 0.3s 0s, opacity 0.3s 0.15s;
  -moz-transition: transform 0.3s 0s, opacity 0.3s 0.15s;
  -ms-transition: transform 0.3s 0s, opacity 0.3s 0.15s;
  -o-transition: transform 0.3s 0s, opacity 0.3s 0.15s;
  transition: transform 0.3s 0s, opacity 0.3s 0.15s;
}
.videosBlock .videosSlider .innerWrapper .item .video .videoContent {
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: margin-top 0.3s 0s, opacity 0.3s 0s, visibility 0.3s 0s;
  -moz-transition: margin-top 0.3s 0s, opacity 0.3s 0s, visibility 0.3s 0s;
  -ms-transition: margin-top 0.3s 0s, opacity 0.3s 0s, visibility 0.3s 0s;
  -o-transition: margin-top 0.3s 0s, opacity 0.3s 0s, visibility 0.3s 0s;
  transition: margin-top 0.3s 0s, opacity 0.3s 0s, visibility 0.3s 0s;
}
@media all and (max-width: 1200px) {
  .videosBlock .videosSlider .contentWrapper {
    max-width: calc(100% - 80px);
  }
  .videosBlock .videosSlider .moveButton.previous {
    left: -40px;
  }
  .videosBlock .videosSlider .moveButton.next {
    right: -40px;
  }
}
@media all and (max-width: 767px) {
  .videosBlock .col {
    width: 100%;
    padding: 0 !important;
  }
  .videosBlock .col:first-child {
    margin-bottom: 20px;
  }
  .videosBlock .videosSlider .moveButton.previous {
    left: -10px;
  }
  .videosBlock .videosSlider .moveButton.next {
    right: -10px;
  }
  .videosBlock .videosSlider .innerWrapper .item {
    height: 300px;
  }
}
