
.single_service_videos{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.single_service_videos_wrapper{
    position: relative;
    font-size: 18px;
    color: #0072CE;
}
.single_service_videos_wrapper a{
    color: #0072CE;
    text-decoration: underline;
}
.single_service_videos_image{
    height: 160px;
    margin-bottom: 25px;
    position: relative;
}
.single_service_videos_image svg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}
.single_service_videos_wrapper:hover svg{
    scale: 1.1;
}
.single_service_videos_image img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
      z-index: 999;
  }
  .modal.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    background-color: #000000ab;
  }
  .modal-bg {
    position: absolute;
   
    width: 100%;
    height: 100%;
  }
  .modal-container {
   
    background: #fff;
    position: relative;
    padding: 10px;
  }
  .modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    outline: none;
    appearance: none;
    color: red;
    background: none;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
  }
  .modal video{
    max-width: 100%;
    max-height: 500px;
  }
  .close-button{
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s;
  }
  .close-button:hover{
    cursor: pointer;
    box-shadow: 0 0 2px #000;
  }
  @media(min-width:768px) and (max-width:991px){
    .single_service_videos{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    }
  }
  @media(max-width:767px){
    
        .single_service_videos{
            flex-direction: column;
        }
  }