.gallery_area {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.gallery_area .container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

.gallery_carousel {
    position: relative;
    padding: 0 50px;
}

.gallery_carousel .single-gallery {
    margin: 0 5px;
}

.portfolio-img {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery_hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-gallery:hover .gallery_hover {
    opacity: 1;
}

.single-gallery:hover .portfolio-img img {
    transform: scale(1.1);
}

.gallery_hover a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    transition: all 0.3s ease;
}

.gallery_hover a:hover {
    background: #ff008c;
    color: #fff;
}
