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

/* -- Global Styling Elementor -- */

/* Variables */

:root {
    /* Fluid Spacing Variables */
    --global-spacing: clamp(5rem, 4rem + 5vw, 7.875rem);
    --space-s: clamp(1rem, 0.5652rem + 2.1739vw, 2.25rem);
    --space-m: clamp(2rem, 1.5217rem + 2.3913vw, 3.375rem);
    --space-l: clamp(3rem, 2.4783rem + 2.6087vw, 4.5rem);
    --space-xl: clamp(4rem, 3.4348rem + 2.8261vw, 5.625rem);
    --space-2xl: clamp(5rem, 4rem + 5vw, 7.875rem);
    /* Radius Variables */
    --global-radius: 0.5em;
    --radius-s: 0.5rem;
    --radius-m: 0.85rem;
    --radius-l: 1.2rem;
    --radius-xl: 2rem;
    /* Thikness Variables */
    --global-thikness: 1px;
    --thikness-s: 1px;
    --thikness-m: 2px;
    --thikness-l: 4px;
    --thikness-xl: 5px;
}

/* -- GLOBAL CLASSES -- */

/* Generic Classes */

.global__vertical-spacing {
    padding-top: var(--global-spacing);
    padding-bottom: var(--global-spacing);
}

.global__radius {
    border-radius: var(--global-radius);
}

/* Vertical Spacing */

.vertical-spacing-s {
    padding-top: var(--space-s);
    padding-bottom: var(--space-s);
}

.vertical-spacing-m {
    padding-top: var(--space-m);
    padding-bottom: var(--space-m);
}

.vertical-spacing-l {
    padding-top: var(--space-l);
    padding-bottom: var(--space-l);
}

.vertical-spacing-xl {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.vertical-spacing-2xl {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

/* Border Radius */

.radius-s {
    border-radius: var(--radius-s);
}

.radius-m {
    border-radius: var(--radius-m);
}

.radius-l {
    border-radius: var(--radius-l);
}

.radius-xl {
    border-radius: var(--radius-xl);
}

/* Elements Classes */

.card-1 {
    padding: var(--space-s);
    border: solid var(--global-thikness);
    border-radius: var(--global-radius);
}

.card-1:hover {
    transform: translateY(-10px);
    transition: all 0.3s;
}

/* --- ELEMENTOR CSS OPTIMIZATIONS --- */

/* Remove space after last paragraph in Text Widget */
.elementor-widget-text-editor p:last-child {
    margin-bottom: 0px;
}

/* Apply link underline to all paragraphs */
.elementor p a {
    text-decoration: underline;
    transition: 0.3s;
}
