
        .effectscale {
            border: none;
            margin: 0 auto 50px;
        }

            .effectscale:hover {
                -webkit-transform: scale(1.2);
                -moz-transform: scale(1.2);
                -o-transform: scale(1.2);
                transform: scale(1.2);
                transition: all 0.3s;
                -webkit-transition: all 0.3s;
                z-index: 999999;
                position: relative;
            }

            .effectscale img {
                border-radius: 5px;
                box-shadow: 10px 10px lightgray;
                border: 1px solid black;
                height: 300px;
            }

        @media (max-width: 767px) {
            .effectscale {
                height: 220px;
            }
        }
 

