/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
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
*/

/* Styles */

body {
    background-attachment: fixed;
}

/* Tablet upwards */
@media (min-width: 767px) {

    /* Make menu list items slanted */
    #nav-menu .elementor-nav-menu > li {
        transform: skew(-10deg);
    }

    /* Make menu list items red on hover */
    #nav-menu .elementor-nav-menu > li:hover > a {
        background-color: #D42127 !important;
        color: white;
    }

    #nav-menu .elementor-sub-item {
        background-color: unset !important;
        color: #626262 !important;
    }

    /* Make home link red by default */
    #nav-menu ul li:first-child > a {
        background-color: #D42127;
        color: white;
    }

    /* Make icon list columns only as wide as their content */
    .icon-list-column {
        width: fit-content;
    }

    /* Phone and E-mail links */
    #footer a, #footer a:hover {
        color: #D42127;
    }

}