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

@font-face {
    font-family: 'Raleway';
    src: url('assets/fonts/raleway-v37-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('assets/fonts/raleway-v37-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* ===========================
   ETP MEGA MENU LISTS
   =========================== */

.etp-menu-group {
    width: 100%;
}

/* TITLE */

.etp-menu-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0 0 24px 0;

    /* Division Color */
    color: #000000;
}

/* UL */

.etp-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* LI */

.etp-menu-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 28px !important;
}

/* BULLET */

.etp-menu-list li::before {
    content: "";
    width: 12px;
    height: 12px;

    position: absolute;
    left: 0;
    top: 9px;

    background: #000000;
}

/* LINKS */

.etp-menu-list a {
    display: inline-block;

    font-family: 'Raleway', sans-serif;
    font-size: 15px !important;
    font-weight: 400;
    line-height: 1.3;

    text-decoration: none;

    color: #111111;

    transition:
        color .25s ease,
        transform .25s ease;
}

/* HOVER */

.etp-menu-list a:hover {
    color: #2f855a;
    transform: translateX(4px);
}