/* =========================================================
    Reset / Base CSS
    for WordPress + Child Theme + Elementor
========================================================= */

/* ---------------------------------
    Root
--------------------------------- */
html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* ---------------------------------
    Margin reset
--------------------------------- */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure,
blockquote,
pre {
	margin: 0;
}

/* ---------------------------------
    Body
--------------------------------- */
body {
	min-height: 100vh;
	line-height: 1.6;
	text-rendering: optimizeSpeed;
}

/* ---------------------------------
    Lists
--------------------------------- */
ul,
ol {
	padding: 0;
}

li {
	list-style: none;
}

/* ---------------------------------
    Headings / text
--------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

small {
	font-size: 80%;
}

/* ---------------------------------
    Links
--------------------------------- */
a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: none;
}

/* ---------------------------------
    Media
--------------------------------- */
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
	border-style: none;
	vertical-align: bottom;
}

/* ---------------------------------
    Forms
--------------------------------- */
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}

textarea {
	resize: vertical;
}

input,
textarea,
select {
	min-width: 0;
}

fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

legend {
	padding: 0;
}

/* ---------------------------------
    Tables
--------------------------------- */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	padding: 0;
	text-align: left;
	vertical-align: top;
}

/* ---------------------------------
    Embedded / iframe
--------------------------------- */
iframe {
	border: 0;
}

/* ---------------------------------
    Horizontal rule
--------------------------------- */
hr {
	margin: 0;
	border: 0;
	border-top: 1px solid currentColor;
	opacity: 0.2;
}

/* ---------------------------------
    Utility-friendly defaults
--------------------------------- */
[hidden] {
	display: none !important;
}

summary {
	cursor: pointer;
}

/* ---------------------------------
    Accessibility
--------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}