/* portfolio section  */


section.portfolio-sec .window {
    width: 100%;
    margin: auto;
    border: 5px solid #000;
    border-radius: 20px;
    box-shadow: 0px 20px 46px 2px #bcc6ff;
    cursor: n-resize;

  
    img {
      width: 100%;
      object-fit: cover;
      object-position: top;
      height: 550px;
      border-radius: 20px;
      transition: 8s all ease;
  
      &:hover {
        object-position: bottom;
      }
    }
  }
  section.portfolio-sec{
    background: var(--main-bg);
    text-align: center;
}  
section.portfolio-sec svg{
    width: 130px;
    fill: #fff;
    margin-bottom: 50px;
}
  section.portfolio-sec .credit {
    font-weight: 300;
    text-align: center;
    margin-top: 6rem;
    color: #b6bee8;
    font-size: 14px;
  
    &:hover {
      span {
        color: #e91e63;
      }
  
      a {
        color: #e91e63;
        border-color: #e91e63;
      }
    }
  
    section.portfolio-sec span {
      color: #b6bee8;
      transition: ease all 200ms;
    }
  
    section.portfolio-sec a {
      color: #b6bee8;
      transition: ease-in all 700ms;
      -webkit-text-decoration: none;
      text-decoration: none;
      border-bottom: 2px solid #b6bee8;
  
      &:hover {
        color: #fff;
        box-shadow: inset 0 -5.5rem 0 #e91e63;
        border-bottom: 2px solid #e91e63;
      }
    }
  }

  @media (max-width: 980px){
    section.portfolio-sec .col-4{
      width: 50%;
    }
  }


@media (max-width: 540px){
  section.portfolio-sec .col-4{
    width: 100%;
  }
}
  
