/* 
Theme Name: Child
Author: ConsulWeb Development Team
Author URI: https://consulweb.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
*/
@font-face {
	font-family: 'Anek';
	src: url("/wp-content/themes/child/fonts/Anek.woff2") format("woff2-variations");
	font-weight: 100 1000;
	font-stretch: 75% 125%;
	font-style: normal;
	font-display: swap;
}

/* tipografia */
body, input, textarea, select, button {
    font-synthesis: none;
    -moz-font-feature-settings: 'kern';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    direction: ltr;
	font-family: 'Anek';
}
p {
	text-align: justify;
}
h1, h2, h3, h4 {
	font-weight: 600;
}
@media (min-width: 768px) {
	h1 {
		font-size: 3.2rem;
	}
	h2 {
		font-size: 2.7rem;
	}
}

/* general */
body {
	color: var(--e-global-color-text);
	font-size: 17px;
	overflow-x: clip;
}
a, a:hover, a:active {
	color: var(--e-global-color-text);
}
.migas a {
	color: var(--e-global-color-secondary);
}
/* scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--e-global-color-primary) var(--e-global-color-accent);
}
*::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}
*::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: var(--e-global-color-primary);
}
*::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: var(--e-global-color-accent);
}

/* header */
header {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 9991;
}
header.hfe-sticky {
	position: fixed;
	animation: slide-down 0.8s;
	background: var(--e-global-color-secondary);
}
.no-link > a {
    cursor: default;
}
header .logo-color {
	fill: var(--e-global-color-secondary);
}
header.hfe-sticky .logo-color {
	fill: var(--e-global-color-text);
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    } 
    100% {
        transform: translateY(0);
    }
}