html {
    scroll-behavior: smooth;
}
/*===========================
        WORK css 
===========================*/

  .single-work {
    position: relative;
  }
  
  .single-work .work-image img {
    width: 100%;
  }
 
  .single-work .work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(234, 50, 125, 0.9);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
  }
  
  .single-work .work-overlay .work-content {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
  }
  
  .single-work .work-overlay .work-content p {
    position: absolute;
    color: #fff;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 80%;
    text-align: left;
  }
  
  .single-work .work-overlay .work-content .work-title {
    font-size: 22px;
    color: #fff;
    font-weight: 60;
    transform: translateY(-150%);
  }

  .single-work:hover .work-overlay {
    opacity: 1;
    visibility: visible;
  }
  .single-work .work-overlay .work-content ul {
    list-style-type: none;
  }
  .single-work .work-overlay .work-content li {
    position: absolute;
 
    left: 50%;
    transform: translateX(-50%);
    bottom: -140%;
    
    text-align: center;
  }

  .mb-10{
      margin-bottom: 10px;
  }
  .pb-100{
    padding-bottom: 100px;
  }
  
 
  

