@media (min-width: 1300px) {
    .container {
        max-width: 1340px;
    }
}

.feature-section .video-image {
    border-radius: 0px;
    position: relative;
  }
  .feature-section .video-image img {
    max-height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
    .feature-section .video-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #b9c4ca7d;
  width: 100%;
  height: 100%;
    }
  
  .feature-section .video-image a {
    font-size: 22px;
    background-color: #4ddfb3;
    border-radius: 500px;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    color: #fff;
    width: 64px;
    height: 64px;
  }
  
  @media (min-width: 576px) {
    .feature-section .video-image a {
      width: 100px;
      height: 100px;
    }
  }
  
  @media (min-width: 768px) {
    .feature-section .video-image a {
      width: 124px;
      height: 124px;
    }
  }
  