:root {
	--sf-bg-1: #fff7f0;
	--sf-bg-2: #ffffff;
	--sf-accent: #eb6403;
	--sf-text: #2a2e37;
	--sf-muted: #6b6b6b;
	--sf-pill-bg: #ffe3cf;
	--sf-pill-text: #9a480e;
	--sf-btn-bg: #fd8d3d;
	--sf-btn-border: #eb6403;
	--sf-btn-text: #883900;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
  box-sizing: border-box;
}


/* Custom Cursor */
.sf-cursor {
	display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--sf-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease-out;
  mix-blend-mode: difference;
}

@media screen and (max-width: 768px) {
  .sf-cursor {
    display: none !important;
  }
}
body {
  overscroll-behavior: none;
  cursor: none; 
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background-color: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background-color: var(--accent-orange);
  border-radius: 10px;
}
.sf-cursor {
  display: block; /* Hidden on mobile via media query */
}

#sfCursor {
		background: grey;

}

html,
body {
	height: 100%;
}
body {
	direction: rtl;
	margin: 0;
	font-feature-settings: "pnum" on, "lnum" on, "case" on;
	font-family: brando-arabic, sans-serif;
	font-style: normal;
	text-decoration: none;
	color: var(--sf-text);
	overflow-x: hidden;
}

html,
body {
	margin: 0;
	position: relative;
}

body.sf-bg-soft::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;

	background:
    /* الأولى: في المنتصف */ radial-gradient(
			800px 600px at 50% 0%,
			rgba(235, 100, 3, 0.6),
			transparent 70%
		),
		/* الثانية: يمين أسفل */
			radial-gradient(
				700px 500px at 100% 100%,
				rgba(240, 184, 144, 0.6),
				transparent 75%
			),
		/* الثالثة: يسار أسفل */
			radial-gradient(
				700px 500px at 0% 100%,
				rgba(235, 100, 3, 0.5),
				transparent 75%
			);

	filter: blur(230px); /* 🔥 بلور قوي */
	opacity: 0.9;
}

a {
	color: inherit;
	text-decoration: none;
}

.sf-container {
	max-width: 1200px;
	margin-inline: auto;
	padding: 24px 20px;
}

.sf-hero-box {
	background: linear-gradient(
		178deg,
		rgba(246, 249, 252, 0) 0%,
		rgba(246, 249, 252, 0.5) 100%
	);
	border-bottom: 1px solid #ffffff;
}

.sf-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 7px;
}
.sf-brand img {
	height: 30px;
	margin-top: 10px;
}

.sf-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}
.sf-nav a {
	padding: 8px 16px 5px;
	font-weight: 600;
	opacity: 0.85;
	color: var(--sf-text);
}
.sf-nav a:hover {
	background: var(--sf-pill-bg);
	color: var(--sf-pill-text);
	border-radius: 999px;
	font-weight: 600;
}
.sf-nav .sf-contact-us {
	background: var(--sf-btn-bg);
	border: 1px solid var(--sf-btn-border);
	color: var(--sf-btn-text);
	opacity: 1;
	padding: 8px 16px 5px;
	border-radius: 999px;
	font-weight: 600;
}
.sf-nav .sf-contact-us:hover {
	background: var(--sf-btn-bg);
	border: 1px solid var(--sf-btn-border);
	color: var(--sf-btn-text);
	opacity: 1;
	border-radius: 999px;
	font-weight: 600;
}

.sf-cta a {
	display: inline-flex;
	background: var(--sf-btn-bg);
	border: 1px solid var(--sf-btn-border);
	color: var(--sf-btn-text);
	padding: 12px 18px;
	border-radius: 999px;
	font-weight: 800;
	box-shadow: 0 6px 18px rgba(235, 100, 3, 0.22);
	transition: transform 0.15s ease;
}
.sf-cta a:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(235, 100, 3, 0.28);
}

.sf-burger {
	display: none;
	background: #ffffffa3;
	border: 1px solid rgb(255 255 255);
	width: 44px;
	height: 44px;
	border-radius: 12px;
	align-items: center;
	justify-content: center;
}

.sf-burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: #2a2e37;
	position: relative;
}
.sf-burger span::before,
.sf-burger span::after {
	content: "";
	position: absolute;
	inset: 0;
	height: 2px;
	background: #2a2e37;
	transform: translateY(-7px);
}
.sf-burger span::after {
	transform: translateY(7px);
}

.sf-mobile {
	display: none;
	flex-direction: column;
	gap: 14px;
	left: 19px;
	width: 230px;
	padding: 16px;
	margin-top: 10px;
	border: 1px solid #ffffff;
	border-radius: 16px;
	background: #ffffffbf;
	backdrop-filter: blur(4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	position: fixed;
	z-index: 100;
	font-weight: 600;
}

.sf-mobile a {
	padding: 10px 12px;
	border-radius: 10px;
}
.sf-mobile .sf-current {
	background: var(--sf-pill-bg);
	color: var(--sf-pill-text);
}

.sf-mobile .sf-contact {
	background: var(--sf-accent);
	text-align: center;
	color: #ffffffbf;
}

.sf-mobile a:hover {
	background: #ffe3cf70;
	color: var(--sf-pill-text);
}

.sf-hero img {
	width: 90%;
	max-width: 350px;
}

.sf-eyebrow {
	font-size: 44px;
	font-weight: 800;
	color: var(--sf-text);
	margin: 0 0 18px;
}
.sf-eyebrow small {
	display: block;
	font-size: 28px;
	color: var(--sf-muted);
	font-weight: 700;
}

.sf-title {
	line-height: 1;
	margin: 0;
}
.sf-title .sf-word {
	display: block;
}
.sf-word-1,
.sf-word-2 {
	font-weight: 900;
	font-size: min(17vw, 220px);
	color: var(--sf-accent);
}

.sf-bottom-fade {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(256, 256, 256, 1),
		transparent
	);
	margin-top: 8vw;
}

@media (max-width: 1024px) {
	.sf-nav {
		display: none;
	}
	.sf-burger {
		display: inline-flex;
	}
	.sf-hero {
		padding-block: 12vw 16vw;
	}
	.sf-eyebrow {
		font-size: 34px;
	}
	.sf-eyebrow small {
		font-size: 22px;
	}
}
@media (max-width: 640px) {
	.sf-container {
		padding: 18px 16px;
	}
	.sf-brand {
		font-size: 22px;
	}
	.sf-cta a {
		padding: 10px 14px;
	}
	.sf-eyebrow {
		font-size: 28px;
	}
	.sf-eyebrow small {
		font-size: 18px;
	}
}

.sf-hero {
	position: relative;
	padding-block: 5vw 10vw;
	text-align: center;
}

.sf-hero::before {
	filter: blur(367px);
	content: "";
	position: absolute;
	top: -35vh;
	left: 50%;
	transform: translateX(-50%) scaleY(-1);
	width: min(90vw, 100%);
	height: 75vh;
	border-radius: 50% 50% 0 0 / 65% 65% 0 0;
	background: radial-gradient(
		120% 85% at 50% 85%,
		rgba(235, 100, 3, 0.55) 0%,
		rgba(240, 184, 144, 0.45) 35%,
		rgba(235, 100, 3, 0.1) 62%,
		rgba(235, 100, 3, 0) 90%
	);
	z-index: -1;
	pointer-events: none;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
	.sf-hero::before {
		top: -32vh;
		height: 68vh;
		width: 94vw;
	}
}
@media (max-width: 640px) {
	.sf-hero::before {
		top: -28vh;
		height: 60vh;
		width: 100vw;
	}
}
@media (min-width: 1600px) {
	.sf-hero::before {
		top: -45vh;
		height: 80vh;
		width: 70vw;
	}
}

.ab-section .intro {
	max-width: 700px;
	margin: 60px auto 60px auto;
}

.ab-section .intro p {
	font-size: 1.3rem;
	line-height: 1.8;
	color: var(--sf-text);
	text-align: center;
}

.ab-section h1 {
	font-size: 2rem;
	text-align: center;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.5;
	color: var(--sf-accent);
}

.ab-gr-2 {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(1, 1fr);
	gap: 8px;
}

.box-in {
	max-width: 420px;
}

.box-in h2 {
	font-weight: 800;
	color: var(--sf-accent);
}

.box-in p {
	margin-top: -15px;
	color: var(--sf-text);
}

@media (max-width: 640px) {
	.ab-section h1 {
		font-size: 1.3rem;
	}

	.ab-section .intro p {
		font-size: 1rem;
	}

	.ab-gr-2 {
		width: 95%;
		max-width: 750px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 2px;
	}
}

.brands-section {
	padding: 50px 0;
	margin-top: -30px;
	position: relative;
	z-index: 10;
}

.brands-section h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 50px;
	color: var(--text-dark);
}

.brands-grid {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.brand-card {
	background-color: rgba(256, 256, 256, 0.5);
	border: 1px solid #D9D9D9;
	border-radius: 20px;
	padding: 20px;
	text-align: center;
	width: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s, box-shadow 0.3s;
}

.brand-card .logo {
	height: 100px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-card .logo img {
	max-height: 100%;
	max-width: 180px;
}

.brand-card h3 {
	font-size: 1.5rem;
	margin-bottom: 5px;
	color: var(--text-dark);
}

.brand-card p {
	line-height: 1.4;
	color: #6A808E;
	margin-bottom: 15px;
	flex-grow: 1;
}

.brand-card .btn {
	background-color: #FD8D3D;
	border: 1px solid #EB6403;
	color: #883900;
	padding: 10px 30px;
	border-radius: 99px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s;
}


/* ===== Footer / Contact Section ===== */
.sf-footer-wrapper{
  position: relative;
  padding: 48px 0 80px;
}

.sf-footer-wrapper::before{
  content:"";
  position:absolute; inset:0;
  z-index:-1; pointer-events:none;
  background:
    radial-gradient(600px 420px at 85% 15%, rgba(235,100,3,.16), transparent 70%),
    radial-gradient(700px 520px at 0% 100%, rgba(240,184,144,.18), transparent 75%);
  filter: blur(120px);
  opacity:.9;
}

/* --- features row (top cards) --- */
.sf-features-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
  margin-bottom:36px;
}

.sf-feature-box{
  background: rgba(255,255,255,.65);
  border:1px solid #EDEDED;
  border-radius:18px;
  padding:22px 18px;
  display:flex; flex-direction:column; gap:10px;
  min-height:165px;
}

.sf-feature-box h3{
  margin:0 0 6px; font-weight:800; font-size:1.06rem;
  color: var(--sf-text);
}
.sf-feature-box p{
  margin:0 0 10px; line-height:1.6; color:var(--sf-muted);
}
.sf-btn-orange{
  align-self:flex-start;
  background: var(--sf-btn-bg);
  border:1px solid var(--sf-btn-border);
  color: var(--sf-btn-text);
  padding:8px 16px;
  border-radius:999px;
  font-weight:800;
  box-shadow: 0 6px 18px rgba(235,100,3,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.sf-btn-orange:hover{ transform: translateY(-1px); box-shadow:0 10px 22px rgba(235,100,3,.26); }

/* --- contact row --- */
.sf-contact-grid{
  display:grid;
  grid-template-columns: 1.1fr 1.2fr; /* يمين نص / يسار فورم */
  align-items:start;
  gap:28px;
}

/* box: right text */
.sf-contact-text h3{
  margin:0 0 10px; font-weight:900; font-size:1.35rem; color: var(--sf-accent);
}
.sf-contact-text p{
  margin:0; color: var(--sf-text); line-height:1.8;
}

/* box: left form */
.sf-contact-form{
  background: rgba(255,255,255,.55);
  border:1px solid #EEEEEE;
  border-radius:18px;
  padding:16px;
}

.sf-form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

/* inputs / selects / textarea unify */
/* .sf-contact-form .wpcf7-form-control{
  width:100%;
  background:#fff;
  border:1px solid #E9E9E9;
  border-radius:10px;
  padding:12px 12px 10px;
  font-family: inherit;
  font-size:.95rem;
  color: var(--sf-text);
  outline:none;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.sf-contact-form .wpcf7-form-control:focus{
  border-color:#f3b487;
  box-shadow:0 0 0 3px rgba(235,100,3,.10);
} */

/* rows mapping to grid */
.sf-form-row{ display:contents; } /* نستخدم العناصر الداخلية مباشرة داخل الجريد */

/* .sf-contact-form textarea.wpcf7-textarea{
  grid-column: 1 / -1;
  min-height:110px; resize: vertical;
} */

/* submit */
/* .sf-submit-row{
  grid-column: 1 / -1;
  display:flex; justify-content:flex-start;
} */
.sf-contact-form .wpcf7-submit{
  background: var(--sf-btn-bg);
  border:1px solid var(--sf-btn-border);
  color: var(--sf-btn-text);
  padding:10px 18px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  box-shadow: 0 6px 18px rgba(235,100,3,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.sf-contact-form .wpcf7-submit:hover{
  border:1px solid var(--sf-btn-border);
	transform: translateY(-1px); box-shadow:0 10px 22px rgba(235,100,3,.26); }

/* wpcf7 misc */
/* .sf-contact-form .wpcf7-spinner{ margin-inline-start:10px; }
.sf-contact-form .wpcf7-response-output{ margin-top:10px; }
 */
/* --- footer copyright line --- */
.sf-copyright{
  margin-top:26px;
  font-size:.9rem;
  color:#8c8c8c;
}

/* --- Responsive --- */
@media (max-width: 1024px){
  .sf-features-grid{ grid-template-columns: 1fr; }
  .sf-feature-box{ min-height:auto; }
  .sf-contact-grid{ grid-template-columns: 1fr; gap:16px; }
}

@media (max-width: 640px){
  .sf-footer-wrapper{ padding:36px 0 64px; }
  .sf-contact-form{ padding:14px; }
  .sf-form-grid{ grid-template-columns: 1fr; }
}

.sf-content-page {
	
}

.sf-content-page h1{
	text-align: right;
	color: var(--sf-accent);
	font-weight: 900;
}

.sf-content-page p{
	text-align: right;
	font-size: 19px;
	max-width: 500px;
	font-weight: 400;
}

a.sf-btn-orange:visited {
    color: var(--sf-btn-text) !important;
}

.content-page {
    width: 99%;
    max-width: 750px;
    margin: 40px auto 0;
    background: #ffffff50;
    padding: 17px 23px;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 2.2em 1em !important;
}







/* تنسيق الـ select الأساسي */
#sf-mini-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 58px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  font-family: brando-arabic, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  padding: 0 45px 0 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

/* عند التركيز */
#sf-mini-form select:focus {
  border-color: #EB6403;
  box-shadow: 0 0 0 3px rgba(235, 100, 3, 0.15);
  outline: none;
}

/* السهم */
#sf-mini-form select::-ms-expand {
  display: none;
}

/* تنسيق القائمة المنسدلة (Chrome / Edge / Safari) */
#sf-mini-form select::-webkit-scrollbar {
  width: 8px;
}

#sf-mini-form select option {
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  background-color: #fff;
  color: #333;
  transition: background 0.2s, color 0.2s;
}

/* الخيار النشط */
#sf-mini-form select option:checked {
  background-color: rgba(235, 100, 3, 0.08);
  color: #EB6403;
}

/* لما تمر الماوس على الخيار */
#sf-mini-form select option:hover,
#sf-mini-form select option:focus {
  background-color: rgba(235, 100, 3, 0.08);
  color: #EB6403;
}

select:focus-visible {
  outline: none;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* لجعل حواف القائمة منسدلة ناعمة */
#sf-mini-form select option {
  border-radius: 8px !important;
}




/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 3em 1.5em 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-right: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
/* a {
	color: #4169e1;
}

a:visited {
	color: #800080;
}

a:hover,
a:focus,
a:active {
	color: #191970;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
} */

/* Forms
--------------------------------------------- */
/* button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}
 */
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-right: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: right;
	position: absolute;
	top: 100%;
	right: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	right: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	right: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	right: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	right: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 1.5em;
}
