/* 
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
*/

/* Add your custom styles here */

.brand-features {
    display: grid;
    gap: 24px;
}

.brand-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .brand-feature {
        grid-template-columns: 1fr 1fr;
    }
}

.brand-feature__content {
    color: #fff;
}

@media (min-width: 768px) {
    .brand-feature__content {
        padding: 0 40px;
    }
}

.brand-feature__title {
    font-weight: 700;
}

.brand-feature__image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Default (sinistra) */
.brand-feature--sinistra .brand-feature__image {
    order: 1;
}

.brand-feature--sinistra .brand-feature__content {
    order: 2;
}

@media (min-width: 768px) {

    /* Destra */
    .brand-feature--destra .brand-feature__image {
        order: 2;
    }

    .brand-feature--destra .brand-feature__content {
        order: 1;
    }
}

/*** Breadcrumb ***/

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25em;
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.breadcrumb-sep,
.breadcrumb-list li a {
    color: #fff;
}

.breadcrumb-sep,
.breadcrumb-list li a,
.breadcrumb-list li {
    font-size: 18px;
    font-weight: 700;
}

.breadcrumb-sep {
    margin: 0 0.25em;
    opacity: 0.7;
}

.breadcrumb-current {
    font-weight: 600;
}