/*======================================
Theme Name: kimpastor
Theme URI: https://divicake.com/
Description: this is a child theme for Divi
Version: 1.0
Author: kim pastor
Author URI: https://divicake.com/
Template: Divi
======================================*/


/* text animation */
.text-animation ul {
    height: 90px;
    line-height: 91px !important;
    overflow: hidden;
}
.text-animation li{
    top: 0;
    position: relative;
    animation: slide 6s steps(4) infinite;
}

.text-animation li::before{
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: #1c1c1c!important;
    border-left:2px solid #fff;
    animation: typing 1.5s steps(11) infinite;
}

@keyframes typing{
    100%{
        left: 100%;
    }
}

@keyframes slide{
    100%{
        top: -360px;
    }
}
/* bottom navigation on mobile does not stack */
@media only screen and (max-width: 980px) {
	.stack-col .et_pb_row_1_tb_header {
	width: 50% !important;
}
}