.single_service_infographic{
    font-size: 18px;
    text-decoration: underline;
    text-align: center;
}
.single_service_infographic a{
    color: #0072CE;
}
.single_service_infographic img{
    margin-bottom: 30px;;
}
.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: #ffffff;
    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(max-width:991px){
    
    .single_service_infographic{
        overflow-x: scroll;
        font-size: 0;;
    }
    .single_service_infographic img{
        max-width: none !important;
    }
}