.insta-section .inner {
    overflow: hidden;
}

.insta-section .image {
    position: relative;
}

.insta-section .image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(36, 36, 36, 0.80) 0%, rgba(36, 36, 36, 0.80) 100%);
    transform: scale(0);
    transition: all 500ms ease;
}

.insta-section .inner:hover .image:before {
    transform: scale(1,1);
}

.insta-section .inner .image img {
    width: 100%;
}

.insta-section .icon-box {
    position: absolute;
    left: 50%;
    right: 50%;
    top: 50%;
    bottom: 50%;
    font-size: 50px;
    color: #fff;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 500ms ease;
}

.insta-section .inner:hover .icon-box{
    opacity: 1;
}

.insta-section .inner .icon-box:hover{
    color: var(--theme-color);
}

/* responsive */

@media only screen and (max-width: 425px){

    .insta-section .image-box {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .insta-section .inner{
        padding: 0;
    }    
  
  }

