/* [1] The container */
.blog-image {
    overflow: hidden;
    /* [1.2] Hide the overflowing of child elements */
}

/* [2] Transition property for smooth transformation of images */
.blog-image img {
    transition: transform 1s ease;
}

/* [3] Finally, transforming the image when container gets hovered */
.blog-image:hover img {
    transform: scale(1.3);
}

/* translate */
#rightSidebarToggle {
    top: 70%;
    right: 0;
    transform: translateY(-50%);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.skiptranslate.goog-te-gadget {
    display: block !important;
    color: transparent !important;
}

.skiptranslate {
    display: none !important;
}
