/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/


/* Theme customization starts here
-------------------------------------------------------------- */


/* Fonts personalizadas*/


/*
@font-face {
font-family: Made Tommy;
src: url("https://dev.paperplanemx.com/heman/wp-content/fonts/made-tommy/MADE TOMMY Regular_PERSONAL USE.otf");
font-weight: normal;
}

.body {
font-family: "Made Tommy";
}
*/


/* Bordes Redondeados */

.redon {
    border-radius: 15px;
    box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 25%);
}


/* Efecto de burbuja en hover */

* {
    transition: transform .2s ease-in-out;
}

.hover-up:hover,
.wp-block-kadence-infobox:hover,
.wp-block-image:hover,
.kt-tab-title:hover,
.kt-button:hover,
.search-toggle-open:hover,
.wp-block-cover:hover,
.button:hover,
.social-button:hover {
    transform: translatey(-3px);
}


/* Animación de entrada */

.slide-in,
.img-fadein {
    -webkit-animation: slide-in-right 1.5s;
    animation: slide-in-right 1.5s;
}


/* Animacion entrada keyframes*/

@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(500px);
        transform: translateX(500px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(500px);
        transform: translateX(500px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}