/*
 Theme Name:   Child Theme
 Description:  A child theme of Hello Elementor Theme
 Author:       SMSW
 Author URI:   https://smswmedia.com/
 Template:     hello-elementor
 Version:      1.0.0
*/

/* Your custom CSS goes here */

/* Code to display a separator line between footer menu items */
    .inv_footer_menu ul li {
        border-right: 1px solid #fff;
    }
    /* to not add the line after last menu item */
    .inv_footer_menu ul li:last-child {
        border-right: none;
    }
    
    /* Line between footer ISO logos grid */
    .inv_footer_logos_grid .e-con-inner div {
        border-right: 1px solid #b2b2b24f;
    }
    /* Styling footer links */
    .inv_link {
        color:#ffffff;
        transition: .2s ease-out;
    }
    .inv_link:hover {
        color:#D21259;
        transition: .2s ease-in;
    }

	/* Case Study pages list items spacing */
	.inv_list ul li{
        padding-bottom:25px;
    }
    
 @media screen and (max-width: 767px) {
     /* Code to style menu for mobile and remove the separator line between footer menu items on mobile */
    .inv_footer_menu ul li {
        border-right: 0;
        display: block;
        padding-bottom: 5px;
        font-weight: bold;
    }
}