.rt-icon2-brush {
  display: none !important;
}
/* ----------- Gallery Card Container ----------- */
.gallery_item {
    margin-bottom: 30px;
}

/* Card Style */
.gallery-card {
    position: relative;
/*    background: #fff;*/
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Image */
.gallery-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
.gallery-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

/* Overlay Link / Button */
.gallery-card .overlay a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
/*    border: 2px solid #fff;*/
    padding: 10px 15px;
    border-radius: 8px;
    background-color: rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.gallery-card .overlay a:hover {
/*    background-color: #fff;*/
    color: #000;
    border-color: #fff;
}

/* Responsive Grid: adjust spacing for Bootstrap */
.isotope-item {
    padding: 10px;
}
#response {
    display: none; /* hidden initially */
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    max-width: 100%;
/*    margin: 15px auto 0 auto;*/
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative; /* needed for transform animation */
}

/* Success style */
#response.success {
    background-color: #7bb342;
    color: #fff;
    border: 1px solid #222;
}

/* Error style */
#response.error {
    background-color: #222;
    color: red;
/*    border: 1px solid #222;*/
}

/* Slide in from right */
#response.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

#response.hide {
    opacity: 0;
    transform: translateX(100%);
}
#subscribe-response {
    display: none; /* hidden initially */
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    max-width: 100%;
    margin: 15px auto 0 auto;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: relative;
}

/* Success style */
#subscribe-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Error style */
#subscribe-response.error {
    background-color: #222;
    color: red;
    border: 1px solid #f5c6cb;
}

/* Slide in from right */
#subscribe-response.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

#subscribe-response.hide {
    opacity: 0;
    transform: translateX(100%);
}
