/* 
Theme Name: Pruebas diseño
Theme URI: https://
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: GLOBAL
Author URI: https://
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/


/*Pruebas tarjetas scroll*/
  .portfolio-card{
    height:500px!important;
    overflow:hidden!important;
    cursor:pointer;
  }
  
  .portfolio-card img{
    width:100%;
    transition: transform 12s cubic-bezier(.22,.61,.36,1);
  }
  
  .portfolio-card:hover img{
    transform:translateY(calc(-100% + 500px));
  }


/*==========================================*/
@media only screen and ( max-width: 1024px ) {
	
	    .portfolio-card img{
        animation: mobile-scroll 10s ease-in-out infinite alternate;
    }

}

@keyframes mobile-scroll{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(calc(-100% + 400px));
    }
	
}


/*==========================================*/
@media(max-width:767px){



}