/*
 Theme Name:     Divi Child
 Theme URI:      https://www.elegantthemes.com/gallery/divi/
 Description:    Divi Child Theme
 Author:         Elegant Themes
 Author URI:     https://www.elegantthemes.com
 Template:       divi
 Version:        1.0.0
*/
 
 
/* Footer Widget Bullets
------------------------------------------------------- */

#footer-widgets .footer-widget li:before {
    display: none;
}

#footer-widgets .footer-widget li {
    padding-left: 0;
}


/* Flex Item Alignment
------------------------------------------------------- */

.d-flex {
    display: flex;
    align-items: center;
}

@media all and (max-width: 980px) {
    .d-flex {
        flex-direction: column;
    }

    .flex-child-img {
        order: 1;
    }

    .flex-child-text {
        order: 2;
    }
}

/* Mobile Menu Breakpoint
------------------------------------------------------- */

@media all and (max-width: 1280px) {
    #et_mobile_nav_menu {
        display: block;
    }
    #top-menu {
        display: none;
    }
}

/* Footer Menu width
------------------------------------------------------- */
.widget_nav_menu {
    width: 100%;
}


/*home blurb animation
------------------------------------------------------- */
.home-blurb {
    transition: all .4s ease-out;
}

.home-blurb:hover {
    transform: scale(1.02) translateY(-10px);
    
}