/* 
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: Studio22
Author URI: https://studio22.com.au/
Template: hello-elementor
Version: 2.0.0
Text Domain: studio22
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
*/

/* Animation */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInDown {
    animation-name: fadeDown
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInLeft {
    animation-name: fadeLeft
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInRight {
    animation-name: fadeRight
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.elementor-element.fadeInUp {
    animation-name: fadeUp
}

/**
 * ///////////////////////////////////////
 * GENERAL
 * //////////////////////////////////////
 */

a {
    color: var( --e-global-color-text );
}

[type=button], [type=submit], button, .elementor-button {
    background-color: var( --e-global-color-accent );
    color: var( --e-global-color-7528dc0 );
    border: 2px solid var( --e-global-color-accent );
    font-weight: 700;
    border-radius: 60px;
    text-transform: uppercase;
    padding: 15px 22px 15px 22px;
}
[type=button]:hover, [type=submit]:hover, button:hover, .elementor-button:hover,
[type=button]:focus, [type=submit]:focus, button:focus, .elementor-button:focus {
    background-color: transparent;
    color: var( --e-global-color-accent );
}
.elementor-widget-text-editor a {
    text-decoration: underline;
}

.hero-banner::after {
    content: '';
    display: block;
    position: absolute;
    mix-blend-mode: multiply;
    background: linear-gradient(90deg, #3E3B7A 9.1%, rgba(57, 72, 164, 0.00) 98.76%);
    top: 0;
    left: 0;
    width: 62.5%;
    height: 100%;
}

