/*
 * BASE STYLES
 * Root variables, global resets, body, and typography
 */

/*
 Theme Name:   Attelia Theme
 Template:     hello-elementor
 Author:       Your Name
 Description:  A child theme for Hello Elementor.
 Version:      1.0.0
 Text Domain:  ema-theme
*/

:root {
  --font-primary: 'Figtree', sans-serif;
  --font-secondary: 'Poppins', sans-serif;

  --breakpoint-xs: 480px;
  --breakpoint-sm: 768px;
  --breakpoint-md: 1025px;
  --breakpoint-lg: 1367px;
  --breakpoint-xl: 1921px;

  --header-height: 6.875rem;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  /* font-size: var(--root-font-size, 16px) !important; */
  background-color: var(--e-global-color-bg-primary);
}

body {
  /* font-size: var(--root-font-size, 16px) !important; */
}

main {}