/*
Theme Name: Magneo
Theme URI: https://example.com/
Author: Mariano
Author URI: https://example.com/
Description: Child theme of Rasti Reusable for minor adjustments.
Version: 0.1.0
Template: rasti-reusable
Text Domain: magneo
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Child theme overrides below */

/* Header */
.header {
    
    .header__logo {
        max-width: 75px;
        height: auto;

        /* Mobile */
        @media (max-width: 767px) {
            max-width: 60px;
        }
    }
}

/* Full Width Video */
.full-width-video {

    .full-width-video__header-text {
        display: block;
        position: relative;
        font-size: 24px;
        font-weight: 700;
        background-color: #E4E5E6;
        width: max-content;
        max-width: 432px;
        border-radius: 18px;
        padding: 16px 42px;
        margin: 0 auto;

        &::before {
            content: url('assets/images/formis-1.webp');
            position: absolute;
            top: 50%;
            left: 0;
            transform: translate(-70%, -55%);
        }

        /* Mobile */
        @media (max-width: 767px) {
            font-size: 16px;
            max-width: 100%;
            padding: 8px 16px 8px 62px;

            &::before {
                content: url('assets/images/formis-01-mobile.webp');
                transform: translate(-20%, -55%);
            }
        }
    }
}
