/*!
Theme Name: Cozy Blog
Theme URI: https://artifythemes.com/artify_themes/cozy-blog/
Author: Artify Themes
Author URI: https://artifythemes.com/
Description: Cozy Blog is a modern, lightweight, and customizable WordPress theme for professional bloggers. Ideal for fashion, lifestyle, travel, food, and photography blogs, it offers fast loading, accessibility, and full responsiveness across devices. The theme is cross-browser compatible, mobile-friendly, and translation-ready. Build a unique and engaging blog effortlessly. Live preview : https://demo.artifythemes.com/cozy-blog/
Version: 1.1.1
Requires at least: 5.0
Requires PHP: 7.4
Tested up to: 6.7
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: cozy-blog
Tags: custom-background, custom-header, custom-logo, custom-menu, featured-images, footer-widget-blocks, left-sidebar, right-sidebar, blog, one-column, portfolio, photography, theme-options, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Cozy Blog is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# 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.
 */
/* Root
	========================================================================== */
	:root {
		--theme-primary-hue: #0d1321;
		--site-tagline-hue: #000000;
		--theme-background-hue: #fff;
		--theme-background-dark-hue: #121212;
		--site-title-hue: #0d1321;
		--theme-text-hue: #000;
		--theme-text-light-hue: #787878;
		--theme-border-hue:#dcdcdc;
		--shadow: 0px 4px 4px -2px #0000002b;

		/* ----Fonts Size---- */
		--typo-xxs: clamp(0.7813rem, 0.7747rem + 0.0326vw, 0.8rem);
		--typo-xs: clamp(0.9375rem, 0.9158rem + 0.1087vw, 1rem);
		--typo-sm: clamp(1.125rem, 1.0815rem + 0.2174vw, 1.25rem);
		--typo-md: clamp(1.35rem, 1.2761rem + 0.3696vw, 1.5625rem);
		--typo-lg: clamp(1.62rem, 1.5041rem + 0.5793vw, 1.9531rem);
		--typo-xl: clamp(1.944rem, 1.771rem + 0.8651vw, 2.4414rem);
		--typo-xxl: clamp(2.3328rem, 2.0827rem + 1.2504vw, 3.0518rem);
		--typo-xxxl: clamp(2.7994rem, 2.4462rem + 1.7658vw, 3.8147rem);
		/* ----Fonts Size---- */

		/* ----Font Family----  */
		--site-title-font: 'Aldrich', serif;
		--site-tagline-font: 'Poppins', serif;
		--heading-font: 'Roboto', serif;
		--site-body-font: 'Poppins', serif;
	}

/* End of Root
	========================================================================== */

	html {
		line-height: 1.15;
		-webkit-text-size-adjust: 100%;
	}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
	 body {
	 	margin: 0;
	 	color: var(--theme-text-hue);
	 	background: var(--theme-background-hue);
	 	font-size: 1rem;
	 	line-height: 1.5;
	 	font-family: var(--site-body-font);
	 }

/**
 * 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;
	 	color: #fff;
	 	text-decoration: none;
	 	padding: 8px 24px;
	 	border-radius: 80px;
	 	line-height: 1.143em;
	 	border: 1px solid transparent;
	 	font-size: calc(var(--typo-xs) - 2px);
	 	background-color: var(--theme-primary-hue);
	 	transition: all 0.3sease;
	 }

	 button:focus,
	 input[type="button"]:focus,
	 input[type="reset"]:focus,
	 input[type="submit"]:focus,
	 button:hover,
	 input[type="button"]:hover,
	 input[type="reset"]:hover,
	 input[type="submit"]:hover {
	 	background-color: unset;
	 	color: var(--theme-primary-hue);
	 	border: 1px solid var(--theme-primary-hue);
	 }

	 .loadmore-wrapper {
	 	display: flex;
	 	justify-content: center;
	 	margin-top: 20px;
	 }

	 .loadmore-wrapper .artify-load-more-posts {
	 	display: flex;
	 	gap: 5px;
	 	align-items: center;
	 	color: #fff;
	 	background-color: var(--theme-primary-hue);
	 	border: none;
	 	cursor: pointer;
	 	padding: 0.7em 1.5em;
	 }


/**
 * 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
--------------------------------------------- */
button,
input,
select,
optgroup,
textarea {
	font-family: var(--site-body-font);
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: var(--heading-font);
}

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
--------------------------------------------- */

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li>ul,
li>ol {
	margin-bottom: 0;
	margin-left: 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;
}

ul.social-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 4px;
}

.author-social-contacts a,
ul.social-links a {
	width: 20px;
	height: 20px;
	opacity: 0.8;
	display: flex;
	overflow: hidden;
	position: relative;
	align-items: center;
	text-decoration: none;
	justify-content: center;
	transition: all 0.3s ease-in;
	color: var(--theme-primary-hue);
	font-size: calc(var(--typo-xs) - 1px);
}

.site-footer .upper-footer .upper-footer-container .footer-widget-block .author-social-contacts:not(.social-feed-widgets-wrap) a{
	color: var(--theme-primary-hue);
}

ul.social-links a {
	color: #fff;
}

.author-social-contacts a::before,
ul.social-links a::before {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	font-family: 'fontawesome';
	vertical-align: baseline;
	transition: all 0.3s ease-in;
}

.author-social-contacts a[href*='facebook.com']::before,
ul.social-links a[href*='facebook.com']::before {
	content: "\f39e";
}

.author-social-contacts a[href*='twitter.com']::before,
ul.social-links a[href*='twitter.com']::before {
	content: "\e61b";
}

.author-social-contacts a[href*='x.com']::before,
ul.social-links a[href*='x.com']::before {
	content: "\e61b";
}

.author-social-contacts a[href*='instagram.com']::before,
ul.social-links a[href*='instagram.com']::before {
	content: "\f16d";
}

.author-social-contacts a[href*='youtube.com']::before,
ul.social-links a[href*='youtube.com']::before {
	content: "\f167";
}

.author-social-contacts a[href*='discord.com']::before,
ul.social-links a[href*='discord.com']::before {
	content: "\f392";
}

.author-social-contacts a[href*='dribbble.com']::before,
ul.social-links a[href*='dribbble.com']::before {
	content: "\f17d";
}

.author-social-contacts a[href*='google.com']::before,
ul.social-links a[href*='google.com']::before {
	content: "\f1a0";
}

.author-social-contacts a[href*='line.me']::before,
ul.social-links a[href*='line.me']::before {
	content: "\f3c0";
}

.author-social-contacts a[href*='linkedin.com']::before,
ul.social-links a[href*='linkedin.com']::before {
	content: "\f08c";
}

.author-social-contacts a[href*='medium.com']::before,
ul.social-links a[href*='medium.com']::before {
	content: "\f23a";
}

.author-social-contacts a[href*='messenger.com']::before,
ul.social-links a[href*='messenger.com']::before {
	content: "\f39f";
}

.author-social-contacts a[href*='paypal.com']::before,
ul.social-links a[href*='paypal.com']::before {
	content: "\f1ed";
}

.author-social-contacts a[href*='pinterest.com']::before,
ul.social-links a[href*='pinterest.com']::before {
	content: "\f0d2";
}

.author-social-contacts a[href*='reddit.com']::before,
ul.social-links a[href*='reddit.com']::before {
	content: "\f1a1";
}

.author-social-contacts a[href*='skype.com']::before,
ul.social-links a[href*='skype.com']::before {
	content: "\f17e";
}

.author-social-contacts a[href*='slack.com']::before,
ul.social-links a[href*='slack.com']::before {
	content: "\f198";
}

.author-social-contacts a[href*='snapchat.com']::before,
ul.social-links a[href*='snapchat.com']::before {
	content: "\f2ad";
}

.author-social-contacts a[href*='spotify.com']::before,
ul.social-links a[href*='spotify.com']::before {
	content: "\f1bc";
}

.author-social-contacts a[href*='stackoverflow.com']::before,
ul.social-links a[href*='stackoverflow.com']::before {
	content: "\f16c";
}

.author-social-contacts a[href*='telegram.org']::before,
ul.social-links a[href*='telegram.org']::before {
	content: "\f3fe";
}

.author-social-contacts a[href*='twitch.tv']::before,
ul.social-links a[href*='twitch.tv']::before {
	content: "\f1e8";
}

.author-social-contacts a[href*='vimeo.com']::before,
ul.social-links a[href*='vimeo.com']::before {
	content: "\f27d";
}

.author-social-contacts a[href*='whatsapp.com']::before,
ul.social-links a[href*='whatsapp.com']::before {
	content: "\f232";
}

.author-social-contacts a[href*='wordpress.org']::before,
ul.social-links a[href*='wordpress.org']::before {
	content: "\f19a";
}

.author-social-contacts a[href*='youtube.com']::before,
ul.social-links a[href*='youtube.com']::before {
	content: "\f167";
}

.author-social-contacts a[href*='tiktok.com']::before,
ul.social-links a[href*='tiktok.com']::before {
	content: "\e07b";
}

.author-social-contacts a[href*='github.com']::before,
ul.social-links a[href*='github.com']::before {
	content: "\f09b";
}

.author-social-contacts a:focus,
ul.social-links a:focus,
.author-social-contacts a:hover,
ul.social-links a:hover {
	opacity: 1;
	color: var(--theme-primary-hue);
}

/* Social Widget
--------------------------------------------- */
.cozy-blog-widget.social-widget .social-feed-widgets-wrap a {
	font-size: var(--typo-xs);
	padding: 12px;
	opacity: 1;
	width: auto;
	height: auto;
	color: #fff;
	line-height: 1;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	opacity: 0.8;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='facebook.com'] {
	background-color: #3b5999;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='twitter.com'],
.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='x.com'] {
	background-color: #212121;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='instagram.com'] {
	background-color: #3F729B;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='discord.com'] {
	background-color: #5865F2;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='dribbble.com'] {
	background-color: #ea4c89;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='google.com'] {
	background-color: #dd4b39;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='line.me'] {
	background-color: #00b900;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='linkedin.com'] {
	background-color: #0e76a8;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='medium.com'] {
	background-color: #66cdaa;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='messenger.com'] {
	background-color: #006AFF;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='paypal.com'] {
	background-color: #3b7bbf;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='pinterest.com'] {
	background-color: #E60023;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='reddit.com'] {
	background-color: #ff5700;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='skype.com'] {
	background-color: #00aff0;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='slack.com'] {
	background-color: #ECB22E;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='snapchat.com'] {
	background-color: #FFFC00;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='spotify.com'] {
	background-color: #1DB954;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='stackoverflow.com'] {
	background-color: #F47F24;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='telegram.org'] {
	background-color: #229ED9;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='twitch.tv'] {
	background-color: #6441a5;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='vimeo.com'] {
	background-color: #86c9ef;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='whatsapp.com'] {
	background-color: #34B7F1;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='wordpress.org'] {
	background-color: #21759b;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='youtube.com'] {
	background-color: #c4302b;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='tiktok.com'] {
	background-color: #010101;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a[href*='github.com'] {
	background-color: #24292E;
}

.cozy-blog-widget.social-widget .social-feed-widgets-wrap a:focus,
.cozy-blog-widget.social-widget .social-feed-widgets-wrap a:hover {
	opacity: 1;
}

.cozy-blog-widget.social-widget.style-1 .social-feed-widgets-wrap {
	gap: 5px;
}

.cozy-blog-widget.social-widget.style-1 .social-feed-widgets-wrap a {
	padding: 12px 20px;
	padding-inline-start: 12px;
}

.cozy-blog-widget.social-widget.style-1 .social-feed-widgets-wrap a {
	width: calc(50% - 5px);
}
@media (max-width: 550px) {
	.cozy-blog-widget.social-widget.style-1 .social-feed-widgets-wrap a {
		width: 100%;
	}
}
.cozy-blog-widget.social-widget.style-1 .social-feed-widgets-wrap a .screen-reader-text {
	clip: unset;
	clip-path: unset;
	height: auto;
	width: auto;
	margin: 0;
	position: relative !important;
	overflow: visible;
	color: #fff;
	top: inherit;
	margin-inline-start: 5px;
}

/*---- Social Widget 2 ----*/
.cozy-blog-widget.social-widget.style-2 .social-widgets-wrap a {
	width: 40px;
	height: 40px;
}

/* End Social Widget
--------------------------------------------- */

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	font-size: var(--typo-xs);
	border: 1px solid;
	border-color: var(--theme-primary-hue);
	background: var(--theme-primary-hue);
	border-radius: 3px;
	color: #fff;
	line-height: 1;
	padding: 0.6em 1em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	opacity: 0.8;
}

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 {
	opacity: 0.8;
}

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;
	width: 100%;
}

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%;
}

.pswp__ui--hidden {
	display: none;
}

.pswp__ui--hidden button {
	background-color: transparent;
	font-size: 0;
	padding: 0;
	border: none;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.home.page {
	margin-bottom: 0;
}

.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%;
}

.widget_block h1,
.widget_block h2,
.widget_block h3,
.widget_block h4,
.widget_block h5,
.widget_block h6 {
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 1.2;
}

/*widget list==*/
.widget ol,
.widget ul:not(.entry-meta) {
	list-style: none;
	padding: 0;
	margin-inline: 0;
}

.widget ol li,
.widget ul:not(.entry-meta):not(.slick-dots) li {
	margin-bottom: 7px;
	padding-bottom: 7px;
	font-size: var(--typo-xs);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.widget ol li a,
.widget ul:not(.entry-meta) li a {
	text-decoration: none;
	color: var(--theme-text-hue);
	transition: all 0.3s ease-in;
}

.widget ol li a:focus,
.widget ul:not(.entry-meta) li a:focus,
.widget ol li a:hover,
.widget ul:not(.entry-meta) li a:hover {
	color: var(--theme-primary-hue);
}

.widget ol ol,
.widget ul ol,
.widget ol ul,
.widget ul ul {
	padding-top: 7px;
	margin-left: 10px;
	padding-left: 10px;
}

.widget>ol>li,
.widget>ul>li {
	margin-bottom: 7px;
	padding-bottom: 7px;
	font-size: 14px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.widget>ol>li a,
.widget>ul>li a {
	color: var(--theme-text-hue);
	transition: all 0.3s ease-in;
}

.widget>ol>li a:focus,
.widget>ul>li a:focus,
.widget>ol>li a:hover,
.widget>ul>li a:hover {
	color: var(--theme-primary-hue);
}

.widget ol>li:last-child,
.widget ul:not(.entry-meta)>li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

/*widget list==*/
/*widget tag cloud ==*/
.wp-block-tag-cloud a,
.tagcloud a {
	display: inline-block;
	text-decoration: none;
	font-size: var(--typo-xs) !important;
	color: var(--theme-text-hue);
	border: 1px solid var(--theme-text-hue);
	padding: 3px 7px;
	margin-inline-end: 5px;
	margin-block-end: 5px;
	line-height: 1.2;
}

.wp-block-tag-cloud a:focus,
.tagcloud a:focus,
.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
	color: var(--theme-primary-hue);
	border: 1px solid var(--theme-primary-hue);
}

.site-footer .wp-block-tag-cloud a,
.site-footer .tagcloud a {
	border: 1px solid #fff;
}

.site-footer .wp-block-tag-cloud a:focus,
.site-footer .tagcloud a:focus,
.site-footer .wp-block-tag-cloud a:hover,
.site-footer .tagcloud a:hover {
	color: var(--theme-primary-hue);
	border: 1px solid var(--theme-primary-hue);
}

/*widget tag cloud ==*/
/*widget search ==*/
.widget.widget_search .wp-block-search__inside-wrapper {
	display: flex;
}

.widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input {
	padding: 6px 16px;
	font-size: 0.9rem;
	border: 1px solid #d3ced2;
	border-end-start-radius: 80px;
	border-start-start-radius: 80px;
}

.widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__input:focus-visible {
	outline: 0;
}

.widget.widget_search .wp-block-search__inside-wrapper .wp-block-search__button {
	cursor: pointer;
	color: #fff;
	background-color: var(--theme-primary-hue);
	margin: 0;
	padding: 10px 25px;
	border-start-start-radius: 0px;
	border-end-start-radius: 0px;
}

.search-form {
	display: flex;
}

.search-form label,
.search-form .search-field {
	width: 100%;
}

.search-form .search-field {
	border: 1px solid #d3ced2;
	padding: 6px 16px;
	font-size: 0.9rem;
	border-radius: 0;
}

.search-form .search-submit {
	border-radius: 0;
}

/*widget search ==*/
/*widget wp social links ==*/
.wp-block-social-links li {
	margin: 0 !important;
	padding: 0 !important;
}

/*widget wp social links ==*/

/*widget calendar ==*/
.wp-block-calendar #today,
.wp-block-calendar a {
	color: var(--theme-primary-hue);
}

/*widget calendar ==*/


/* Widgets Title start
--------------------------------------------- */
.widget-title {
	position: relative;
	margin: 0;
	margin-bottom: 15px;
	padding-inline-start: 14px;
	font-size: calc(var(--typo-sm) + 1px);
}

.widget-title::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	inset-inline-start: 0;
	content: "";
	width: 3px;
	height: 60%;
	background: var(--theme-primary-hue);
}
/* Widgets Title end
--------------------------------------------- */
/* 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-left: auto;
	margin-right: 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;
	left: 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 {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* Preloader
--------------------------------------------- */

#loader {
	overflow-x: hidden;
	overflow-y: hidden;
	vertical-align: middle;
	background-color: var(--theme-background-hue);
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	min-height: 100%;
	z-index: 99999;
}

#loader .loader-container {
	position: relative;
	z-index: 12;
}

#loader #preloader {
	position: relative;
	margin: auto;
	width: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#preloader .pre-loader-6 {
	border-radius: 50%;
	width: 44px;
	height: 44px;
	border: .35rem solid rgba(29, 29, 29, 0.2);
	border-top-color: #000000;
	animation: spin 750ms infinite linear;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Preloader
--------------------------------------------- */

/* Container Width
--------------------------------------------- */
.site-container-width {
	width: 100%;
	margin: 0 auto;
	max-width: 1380px;
	padding-inline: 14px;
}
/* End of Container Width
--------------------------------------------- */

/* Primary and Seondary Area Wrapper Start
--------------------------------------------- */
.site-content {
	margin-top: 50px;
}
body.single .site-content {
	margin-top: 0;
}

.theme-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 28px;
}

.theme-wrapper #secondary,
.theme-wrapper #primary {
	width: 100%;
}

.left-sidebar .theme-wrapper {
	flex-direction: row-reverse;
}

.no-sidebar .theme-wrapper {
	display: block;
}

@media (min-width: 992px) {
	.theme-wrapper #primary {
		width: calc(70% - 15px);
		flex-grow: 1;
	}

	.theme-wrapper #secondary {
		width: calc(30% - 15px);
		position: sticky;
		top: 40px;
		flex-shrink: 0;
	}

	.no-sidebar .theme-wrapper #secondary,
	.no-sidebar .theme-wrapper #primary {
		width: 100%;
	}
}

/* Primary and Seondary Area Wrapper End 
--------------------------------------------- */

/* header navigation start
--------------------------------------------- */
.site-header {
	margin-bottom: 20px;
}

.theme-main-header {
	position: relative;
	padding-block: 22px;
	border-bottom: 1px solid var(--theme-border-hue);
}


@media (min-width: 1024px) {
	body.admin-bar .theme-main-header.sticky-header {
		top: 32px;
	}
}

@media (min-width: 601px) and (max-width: 768px) {
	body.admin-bar .theme-main-header.sticky-header {
		top: 46px;
	}
}

.theme-main-header.sticky-header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 15;
	background-color: var(--theme-background-hue);
	box-shadow: 0 1px 30px -15px #000;
}

.theme-main-header.sticky-header .theme-main-header-wrapper {
	flex-direction: unset;
}


.theme-main-header.sticky-header .theme-main-header-wrapper .header-left-part .site-branding {
	display: none;
}

.theme-main-header.sticky-header .theme-main-header-wrapper .header-right-part {
	justify-content: flex-end;
}

.theme-main-header.sticky-header .theme-main-header-wrapper .header-right-part .social-icons {
	display: none;
}

.theme-main-header.sticky-header .theme-main-header-wrapper .header-right-part .header-button {
	display: none;
}

/*---- Header Image Start ----*/
.theme-header-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.theme-header-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.theme-main-header:has(.theme-header-img)::before {
	content: '';
	position: absolute;
	background-color: #000;
	opacity: 0.4;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.theme-main-header:has(.theme-header-img) .social-icons .social-links li a {
	color: #fff;
}

@media (min-width: 992px) {
	.theme-main-header:has(.theme-header-img) .primary-nav .primary-nav-container .header-nav .main-navigation .menu-primary-menu-container .nav-menu > li > a {
		color: #fff;
	}
}

.theme-main-header:has(.theme-header-img) .primary-nav .primary-nav-container .header-nav .main-navigation .menu-toggle span {
	background: #fff;
}

.theme-main-header:has(.theme-header-img) .primary-nav .header-right .header-search .header-search-wrap .header-search-icon {
	color: #fff;
}

/*---- Header Image End ----*/

.theme-main-header-wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	row-gap: 10px;
	column-gap: 20px;
	align-items: center;
	justify-content: space-between;
}

.header-left-part {
	display: flex;
	align-items: center;
	gap: 40px;
}

@media (max-width: 600px) {
	.header-left-part {
		justify-content: space-between;
		width: 100%;
	}
}

.header-right-part {
	display: flex;
	align-items: center;
	gap: 10px;
}

@media (max-width: 600px) {
	.header-right-part {
		justify-content: space-between;
		width: 100%;
	}
}

.header-right-part .social-icons .social-links li a {
	opacity: 1;
	color: #000;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	font-size: var(--typo-xs);
	transition: 0.3s ease-in;
}

.header-right-part .social-icons .social-links li a:hover,
.header-right-part .social-icons .social-links li a:focus {
	background-color: var(--theme-primary-hue);
	color: #fff;
	opacity: unset;
}

.header-right-part .header-button {
	flex-shrink: 0;
}

@media (max-width: 600px) {
	.header-right-part .header-button {
		display: none;
	}
}

.header-right-part .header-button a {
	color: #fff;
	text-decoration: none;
	padding: 8px 24px;
	border-radius: 80px;
	line-height: 1.143em;
	border: 1px solid transparent;
	font-size: calc(var(--typo-xs) - 2px);
	background-color: var(--theme-primary-hue);
	transition: all 0.3s ease;
}

.header-right-part .header-button a:hover,
.header-right-part .header-button a:focus {
	background-color: unset;
	color: var(--theme-primary-hue);
	border: 1px solid var(--theme-primary-hue);
}


.site-branding .site-identity .site-title {
	font-size: var(--typo-lg);
	line-height: 1.1;
	font-weight: 700;
	margin: 0;
}

.site-title a {
	font-family: var(--site-title-font);
}

.site-branding .site-identity .site-title a {
	text-decoration: none;
	color: var(--site-title-hue);
}

.site-branding .site-identity .site-description {
	margin-bottom: 0;
	margin-top: 5px;
	color: var(--site-tagline-hue);
}

.site-description {
	font-family: var(--site-tagline-font);
}

.site-logo {
	max-width: 220px;
}

.site-branding:has(.site-logo) {
	gap: 10px;
	display: flex;
	align-items: center;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* navigation search  */
.header-search {
	position: relative;
	display: inline-block;
	text-align: center;
}

.header-search .header-search-wrap .header-search-icon {
	color: #fff;
	font-size: var(--typo-xs);
	font-weight: 700;
	text-align: center;
	outline: 0;
	height: 36px;
	width: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 100%;
	background-color: var(--theme-primary-hue);
	transition: 0.3s ease;
}

.header-search .header-search-wrap .header-search-icon:focus,
.header-search .header-search-wrap .header-search-icon:hover {
	color: var(--theme-primary-hue);
	background-color: unset;
	border: 1px solid var(--theme-primary-hue);
}

.header-search .header-search-wrap .header-search-icon:focus-within {
	outline: 1px dashed;
}

.header-search .header-search-wrap .header-search-form {
	position: absolute;
	background: var(--theme-background-hue);
	inset-inline-end: 0;
	opacity: 0;
	visibility: hidden;
	top: 100%;
	width: 325px;
	padding: 14px;
	z-index: 99;
	box-shadow: 0 2px 9px -7px #000;
	border: 1px solid #f1f1f1;
	border-radius: 80px;
}

.header-search .header-search-wrap .header-search-form .search-form {
	display: flex;
}

.header-search .header-search-wrap .header-search-form .search-form label {
	width: 75%;
}

.header-search .header-search-wrap .header-search-form .search-form label input {
	width: 100%;
	border-start-start-radius: 80px;
	border-end-start-radius: 80px;
}

.header-search .header-search-wrap .header-search-form .search-form input.search-submit {
	border-radius: 0px;
	width: 25%;
	margin: 0;
	font-size: var(--typo-xxs);
	border: none;
	background: var(--theme-primary-hue);
	color: #fff;
	line-height: 1;
	padding: 0.6em 1em;
	border-start-end-radius: 80px;
	border-end-end-radius: 80px;
}

.header-search .header-search-wrap.show .header-search-form {
	margin: 0;
	opacity: 1;
	visibility: visible;
}

@media (max-width: 480px) {
	.header-search {
		position: unset;
	}

	.header-search .header-search-wrap .header-search-form {
		width: 100%;
	}
}
/* navigation search  */
/* desktop navigation */
.main-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: var(--typo-xs);
}

.main-navigation ul a {
	text-decoration: none;
}

@media(min-width:992px) {
	.menu-toggle {
		display: none;
	}

	.primary-nav-container {
		width: 100%;
		display: flex;
		gap: 20px;
		align-items: center;
		justify-content: space-between;
	}

	.main-navigation ul {
		display: flex !important;
		flex-wrap: wrap;
	}

	.main-navigation ul li.menu-item-has-children>a::after {
		font-style: normal;
		font-variant: normal;
		font-weight: 400;
		line-height: 1;
		font-family: Font Awesome\ 5 Free;
		font-weight: 900;
		line-height: inherit;
		vertical-align: baseline;
		content: "\f107";
		display: inline-block;
		margin-inline-start: 10px;
	}

	.main-navigation ul ul li.menu-item-has-children>a::after {
		content: "\f105";
	}

	.main-navigation ul a {
		padding: 15px;
		text-transform: uppercase;
		color: var(--theme-text-hue);
		opacity: 0.7;
		font-weight: 600;
		display: block;
		font-size: calc(var(--typo-xs) - 1px);
	}

	.main-navigation ul .current_page_item>a,
	.main-navigation ul .current-menu-item>a,
	.main-navigation ul .current_page_ancestor>a,
	.main-navigation ul .current-menu-ancestor>a {
		opacity: 1;
		color: var(--theme-primary-hue);
		position: relative;
	}
	.main-navigation ul .current_page_item>a::before,
	.main-navigation ul .current-menu-item>a::before,
	.main-navigation ul .current_page_ancestor>a::before,
	.main-navigation ul .current-menu-ancestor>a::before {
		position: absolute;
		content: "";
		left: 0;
		bottom: 0;
		width: 100%;
		height: 3px;
		background-color: var(--theme-primary-hue);
	}

	.main-navigation ul li a:focus,
	.main-navigation ul li a:hover {
		opacity: 1;
		color: var(--theme-primary-hue);
	}

	.main-navigation ul ul {
		width: 225px;
		display: block;
		flex-direction: column;
		position: absolute;
		text-align: left;
		opacity: 0;
		margin: 0 auto;
		padding: 0;
		box-shadow: var(--shadow);
		transition: top 0.4s;
		top: 100%;
		left: 0px;
		border: 1px solid #f1f1f1;
		background-color: var(--theme-background-hue);
	}

	.main-navigation ul ul a {
		display: block;
		font-weight: normal;
		padding: 8px 15px;
	}

	.main-navigation ul ul li:not(:last-child) {
		border-bottom: 1px solid #f1f1f1;
	}

	.main-navigation ul ul li a {
		text-transform: capitalize;
		color: var(--theme-text-hue);
		opacity: 1;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.main-navigation .menu li {
		position: relative;
	}

	.main-navigation ul li:focus-within>ul,
	.main-navigation ul li:hover>ul {
		opacity: 1;
		z-index: 999;
	}

	.main-navigation ul ul li:focus-within>ul,
	.main-navigation ul ul li:hover>ul {
		top: 100%;
	}

	.main-navigation ul ul li ul {
		top: 0;
	}

	.main-navigation ul ul li:focus-within ul,
	.main-navigation ul ul li:hover ul {
		top: 0;
		left: 100%;
	}
}

@media(max-width:991px) {

	.menu-toggle {
		width: 35px;
		height: 35px;
		position: relative;
		transform: rotate(0deg);
		transition: 0.5s ease-in-out;
		cursor: pointer;
		padding: 0;
		background: none;
		border: none;
		margin: 5px;
		opacity: 1;
	}

	.menu-toggle:hover {
		opacity: 1;
	}

	.menu-toggle span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background: var(--theme-text-hue);
		border-radius: 3px;
		opacity: 1;
		left: 0;
		transform: rotate(0deg);
		transition: 0.25s ease-in-out;
	}

	.menu-toggle span:nth-child(1) {
		top: calc(50% - 15px);
	}

	.menu-toggle span:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}

	.menu-toggle span:nth-child(3) {
		width: 16px;
		bottom: calc(50% - 15px);
	}

	.main-navigation.toggled .menu-toggle span:nth-child(1) {
		top: 14px;
		width: 0%;
		left: 50%;
	}

	.main-navigation.toggled .menu-toggle span:nth-child(2) {
		transform: rotate(45deg);
	}

	.main-navigation.toggled .menu-toggle span:nth-child(3) {
		top: 50%;
		width: 100%;
		transform: translateY(-50%) rotate(-45deg);
	}

	.primary-nav-container {
		display: flex;
		gap: 20px;
		align-items: center;
		justify-content: space-between;
	}

	.theme-main-header-wrapper {
		position: relative;
	}

	.main-navigation ul.nav-menu {
		margin: 0;
		padding: 0;
		list-style: none;
		text-align: left;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		z-index: 9999;
		display: none;
		background: var(--theme-background-hue);
		box-shadow: var(--shadow);
	}

	@media (max-width: 600px) {
		.main-navigation ul.nav-menu {
			top: 50%;
		}
	}

	.main-navigation ul li.menu-item-has-children>a::after {
		font-style: normal;
		font-variant: normal;
		font-weight: 400;
		line-height: 1;
		font-family: 'fontawesome';
		font-weight: 900;
		line-height: inherit;
		vertical-align: baseline;
		content: "\f107";
		display: inline-block;
		margin-inline-start: 10px;
	}

	.main-navigation ul a {
		padding: 15px;
		text-transform: uppercase;
		color: var(--theme-text-hue);
		display: block;
	}

	.main-navigation ul li:not(:last-child) {
		border-bottom: 1px solid #f1f1f1;
	}

	.main-navigation ul li:first-child {
		border-top: 1px solid #f1f1f1;
	}

	.main-navigation ul ul {
		height: 0;
		transform: scaleY(0);
		transform-origin: top left;
		overflow: hidden;
		transition: all 0.5s ease-in-out;
		margin-inline-start: 10px;
	}

	.main-navigation ul li.menu-item-has-children:hover>ul,
	.main-navigation ul li.menu-item-has-children.focus>ul {
		height: auto;
		transform: scaleY(1);
	}

	.main-navigation ul ul a {
		display: block;
		padding: 10px 15px;
	}

	.main-navigation ul ul li {
		border-bottom: 1px solid #f1f1f1;
	}

	.main-navigation ul ul li a {
		text-transform: capitalize;
	}

	.main-navigation ul ul li a:focus {
		outline-offset: -2px;
	}

	.main-navigation .menu li {
		position: relative;
	}

}

@media(max-width:600px) {
	.theme-main-header-wrapper {
		flex-direction: column;
	}

	.site-branding {
		width: 100%;
	}
}

/* desktop navigation */
/* header navigation end
--------------------------------------------- */

/* Artify Slick Navigation css start
--------------------------------------------- */
.artify-navigation .artify-arrow {
	position: absolute;
	top: calc(50% - 6px);
	transform: translateY(-50%);
	font-size: var(--typo-sm);
	width: 40px;
	height: 40px;
	border: 1px solid var(--theme-text-hue);
	text-align: center;
	line-height: 1px;
	z-index: 1;
	cursor: pointer;
	font-weight: 600;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-out 0s;;
	transform-origin: 0 0;
	border-radius: 100%;
	opacity: 0;
	visibility: hidden;
}

.artify-navigation:focus-within .artify-arrow,
.artify-navigation:hover .artify-arrow {
	scale: 1;
	opacity: 1;
	visibility: visible;
}

.artify-navigation .artify-arrow.fa-chevron-left {
	left: -20px;
}

.artify-navigation .artify-arrow.fa-chevron-left:hover {
	background-color: var(--theme-background-hue);
	color: var(--theme-text-hue);
}

.artify-navigation .artify-arrow.fa-chevron-right {
	right: -20px;
}

.artify-navigation .artify-arrow.fa-chevron-right:hover {
	background-color: var(--theme-background-hue);
	color: var(--theme-text-hue);
}


/* Slick Navigation css end
--------------------------------------------- */
/* Slick Dots css start
--------------------------------------------- */
.artify-navigation .slick-dots {
	margin: 0;
	margin-block: 10px;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
}

.artify-navigation .slick-dots li {
	display: flex;
}

.artify-navigation .slick-dots li button {
	font-size: 0;
	width: 12px;
	height: 12px;
	padding: 0;
	opacity: 0.7;
	border: none;
	cursor: pointer;
	border-radius: 100vmax;
	transition: all 0.3s ease-in;
	background-color: var(--theme-primary-hue);
}

.artify-navigation .slick-dots li.slick-active button {
	opacity: 1;
}

/* Artify Slick Dots css end
--------------------------------------------- */

/* Start archive layouts
--------------------------------------------- */
.archive-area.archive-grid-layout {
	display: grid;
	gap: 28px;
}

.archive-area.archive-grid-layout.single-column {
	grid-template-columns: repeat(1, 1fr);

}

.archive-area.archive-grid-layout.double-column {
	grid-template-columns: repeat(2, 1fr);

}

@media (max-width: 600px) {
	.archive-area.archive-grid-layout.double-column {
		grid-template-columns: repeat(1, 1fr);
		
	}
}

.archive-area.archive-grid-layout.triple-column {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
	.archive-area.archive-grid-layout.triple-column {
		grid-template-columns: repeat(2, 1fr);
		
	}
}

@media (max-width: 600px) {
	.archive-area.archive-grid-layout.triple-column {
		grid-template-columns: repeat(1, 1fr);
		
	}
}

.archive-area.archive-grid-layout.four-column {
	grid-template-columns: repeat(4, 1fr);

}

@media (max-width: 1024px) {
	.archive-area.archive-grid-layout.four-column {
		grid-template-columns: repeat(3, 1fr);
		
	}
}

@media (max-width: 768px) {
	.archive-area.archive-grid-layout.four-column {
		grid-template-columns: repeat(2, 1fr);
		
	}
}

@media (max-width: 600px) {
	.archive-area.archive-grid-layout.four-column {
		grid-template-columns: repeat(1, 1fr);
		
	}
}

/* End archive layouts
--------------------------------------------- */
/* Start of Related Posts
--------------------------------------------- */
.related-post-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
@media (max-width: 768px) {
	.related-post-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.related-post-container {
		grid-template-columns: repeat(1, 1fr);
	}
}
.related-post-container article .single-card-container .single-card-detail .card-title {
	font-size: var(--typo-sm);
}
/* End of Related Posts
--------------------------------------------- */

/* Start Post navigations
--------------------------------------------- */
.site-main .post-navigation,
.site-main .posts-navigation {
	margin-top: 30px;
}

.post-navigation .nav-links,
.posts-navigation .nav-links {
	display: flex;
}

@media only screen and (max-width: 480px) {

	.post-navigation .nav-links,
	.posts-navigation .nav-links {
		flex-wrap: wrap;
	}
}

.post-navigation .nav-previous,
.posts-navigation .nav-previous {
	flex: 1 0 50%;
	display: flex;
	align-items: center;
	gap: 6px;
}

.post-navigation .nav-previous a,
.posts-navigation .nav-previous a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--theme-text-hue);
	transition: all 0.3s ease-in;
	text-decoration: none;
}

.post-navigation .nav-previous a::before,
.posts-navigation .nav-previous a::before {
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	line-height: inherit;
	vertical-align: baseline;
	content: "\f104";
	display: inline-block;
}

.post-navigation .nav-previous a:hover,
.posts-navigation .nav-previous a:hover {
	color: var(--theme-primary-hue);
}

.post-navigation .nav-next,
.posts-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
	display: flex;
	align-items: center;
	gap: 6px;
	justify-content: flex-end;
}

.post-navigation .nav-next a,
.posts-navigation .nav-next a {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	color: var(--theme-text-hue);
	transition: all 0.3s ease-in;
	text-decoration: none;
}

.post-navigation .nav-next a::after,
.posts-navigation .nav-next a::after {
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	line-height: inherit;
	vertical-align: baseline;
	content: "\f105";
	display: inline-block;
}

.post-navigation .nav-next a:focus,
.post-navigation .nav-next a:hover,
.posts-navigation .nav-next a:focus,
.posts-navigation .nav-next a:hover {
	color: var(--theme-primary-hue);
}

/* numeric pagination     */
nav.navigation.pagination .nav-links {
	display: flex;
	gap: 5px;
	margin: 38px 0 20px;
	justify-content: center;
}

nav.navigation.pagination .nav-links span,
nav.navigation.pagination .nav-links a {
	text-decoration: none;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	transition: all 0.3s ease-in;
	color: var(--theme-text-hue);
	border: 1px solid var(--theme-text-hue);
}

nav.navigation.pagination .nav-links span.prev,
nav.navigation.pagination .nav-links a.prev,
nav.navigation.pagination .nav-links span.next,
nav.navigation.pagination .nav-links a.next {
	font-size: 0;
}

nav.navigation.pagination .nav-links span.prev::after,
nav.navigation.pagination .nav-links a.prev::after,
nav.navigation.pagination .nav-links span.next::after,
nav.navigation.pagination .nav-links a.next::after {
	content: "\f30a";
	font-size: 1rem;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
	line-height: 1;
	font-weight: 900;
	line-height: inherit;
	vertical-align: baseline;
	font-family: Font Awesome\ 5 Free;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

nav.navigation.pagination .nav-links span.next::after,
nav.navigation.pagination .nav-links a.next::after {
	content: "\f30b";
}

nav.navigation.pagination .nav-links span:hover,
nav.navigation.pagination .nav-links a:hover,
nav.navigation.pagination .nav-links span:focus,
nav.navigation.pagination .nav-links a:focus {
	color: var(--theme-primary-hue);
	border: 1px solid var(--theme-primary-hue);
}

nav.navigation.pagination .nav-links span.current {
	color: #fff;
	background-color: var(--theme-primary-hue);
	border: 1px solid var(--theme-primary-hue);
}

nav.navigation.pagination .nav-links span.dots {
	border: none;
}

nav.navigation.pagination .nav-links span.dots:hover,
nav.navigation.pagination .nav-links span.dots:focus {
	color: var(--theme-text-hue);
	border: none;
}

/* numeric pagination     */


/* End Post navigations
--------------------------------------------- */
/* Start Single Post/Page
--------------------------------------------- */

body.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;
}

/*--404 page--*/
section.error-404.not-found {
	margin-bottom: 50px;
	text-align: center;
	max-width: 991px;
	margin-inline: auto;
}

/*--404 page--*/
/*--single--*/
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.site-main article {
	margin: 0;
}

.site-main article .entry-header .entry-title {
	font-size: var(--typo-lg);
	font-family: var(--site-body-font);
	margin-top: 0;
	margin-bottom: 1.3rem;
	word-break: break-word;
}

@media (min-width: 992px) {
	.site-main article .entry-header .entry-title {
		margin-bottom: 1.1rem;
	}
}

.site-main article .entry-header .entry-title a {
	text-decoration: none;
	color: var(--theme-text-hue);
}

.site-main article .entry-meta {
	padding-bottom: 10px;
}

.site-main article .entry-meta span {
	font-size: 16px;
	font-weight: normal;
}
.site-main article .entry-meta .post-date {
	position: relative;
	margin-inline-start: 4px;
	padding-inline-start: 10px;
}
.site-main article .entry-meta .post-date::before {
	content: '';
	position: absolute;
	top: 32%;
	width: 1px;
	height: 10px;
	inset-inline-start: 0;
	transform: rotate(14deg);
	background-color: var(--theme-text-hue);
}

.site-main article .entry-meta span a,
.site-main article .entry-meta span span {
	font-weight: normal;
}

.site-main article .entry-meta span a {
	text-decoration: none;
	color: var(--theme-text-hue);
}

.site-main article .entry-meta span a:hover {
	color: var(--theme-primary-hue);
}

.site-main article .entry-meta span a i {
	margin-inline-end: 5px;
}

.site-main article .entry-meta span.comments-link a {
	font-weight: bold;
}

.site-main article .post-thumbnail {
	display: block;
	line-height: 0;
}

.site-main>article .post-thumbnail img {
	width: auto;
}

@media (min-width: 992px) {
	.site-main article .entry-meta {
		padding: 10px 0 20px;
		padding-top: 0;
	}
}

.site-main article .entry-content {
	margin-top: 0;
}

.site-main article .entry-content p {
	margin-bottom: 10px;
}

.site-main article .entry-footer {
	display: flex;
	margin-top: 10px;
	margin-bottom: 6px;
}
.site-main article .entry-footer .tags-links {
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.site-main article .entry-footer span {
	font-size: 16px;
	font-weight: bold;
}

.site-main article .entry-footer span a,
.site-main article .entry-footer span span {
	font-weight: normal;
}

.site-main article .entry-footer span a {
	text-decoration: none;
	color: var(--theme-text-hue);
}

.site-main article .entry-footer span a:hover {
	color: var(--theme-primary-hue);
}

.site-main article .entry-footer span.comments-link a {
	font-weight: bold;
}

/* ----single post/page---- */
body.single .single-page .page-header-content {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

body.single .single-page .page-header-content .card-categories-date {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

body.single .single-page .page-header-content .post-date a {
	text-decoration: none;
	color: var(--theme-text-hue);
	font-size: calc(var(--typo-xs) - 2px);
}

body.single .single-page .page-header-content .entry-cat .cat-links a {
	color: var(--theme-text-hue);
	line-height: 1.143;
	padding: 6px 12px;
	position: relative;
	text-decoration: none;
	font-size: var(--typo-xxs);
}

body.single .single-page .page-header-content .entry-cat .cat-links a::before {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	height: 100%;
	border-radius: 24px;
	inset-inline-start: 0;
	background-color: #f6f6f6;
}

body.single .single-page .page-header-content .entry-cat .cat-links a:focus,
body.single .single-page .page-header-content .entry-cat .cat-links a:hover {
	opacity: 0.9;
}
body.single .single-page .page-header-content .entry-header .entry-title {
	margin: 0;
	line-height: 1.2;
	font-size: var(--typo-xl);
}
body.single .single-page .page-header-content .entry-meta {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	row-gap: 5px;
	column-gap: 5px;
	align-items: center;
}
body.single .single-page .page-header-content .entry-meta li a {
	text-decoration: none;
	color: var(--theme-text-hue);
	font-size: var(--typo-xs);
	transition: 0.3s ease-in;
}
body.single .single-page .page-header-content .entry-meta li a:focus,
body.single .single-page .page-header-content .entry-meta li a:hover {
	color: var(--theme-primary-hue);
}
body.single .single-page .page-header-content .entry-meta .post-author {
	display: flex;
	align-items: center;
	gap: 10px;
}
body.single .single-page .page-header-content .entry-meta .post-author img {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 100%;
}
body.single .single-page>.post-thumbnail img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-top: 16px;
}
/* ----End Single Post/Page---- */

/* Start breadcrumbs
--------------------------------------------- */

.breadcrumb-trail.breadcrumbs {
	padding: 20px 0px;
}

body.aft-single-full-header .breadcrumb-trail.breadcrumbs {
	padding-bottom: 20px;
}

ul.trail-items {
	font-size: 13px;
	margin: 0;
	padding: 0;
}

ul.trail-items li {
	display: inline-block;
	margin-right: 5px;
}

ul.trail-items li a {
	text-decoration: none;
	font-size: 13px;
	color: var(--theme-text-hue);
	opacity: 0.7;
}

ul.trail-items li a:hover {
	opacity: 1;
	color: var(--theme-primary-hue);
	transition: all 0.3s ease-in;
}

ul.trail-items li:after {
	content: ' / ';
	padding: 0 2px;
	color: var(--theme-text-hue);
	font-size: 13px;
}

ul.trail-items li:last-child:after {
	display: none;
}

/* End breadcrumbs
--------------------------------------------- */
/* Start comments css
--------------------------------------------- */

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/** * Comments Wrapper */
.comments-area {
	padding-bottom: 30px;
}

.comments-area>* {
	margin-top: 30px;
	margin-bottom: 30px;
}

.comments-area>*:first-child {
	margin-top: 0;
}

.comments-area>*:last-child {
	margin-bottom: 0;
}

.comments-area.show-avatars .avatar {
	border-radius: 50%;
	position: absolute;
	top: 10px;
}

.comments-area.show-avatars .fn {
	display: inline-block;
	padding-left: 85px;
}

.comments-area.show-avatars .comment-metadata {
	padding: 8px 0 9px 85px;
}

/** * Comment Title */
.comment-reply-title {
	display: flex;
	justify-content: space-between;
}

.comment-reply-title small a {
	font-size: 15px;
	font-style: normal;
	font-weight: normal;
	letter-spacing: normal;
}

/* Nested comment reply title*/
.comment .comment-respond .comment-reply-title {
	font-size: 30px;
}

/** * Comment Lists */
.comments-area [type="checkbox"],
.comments-area [type="radio"] {
	margin-bottom: 7px;
	margin-right: 10px;
}

.comment-list {
	padding-left: 0;
	list-style: none;
	margin-left: 0;
}

.comment-list ol {
	margin-left: 0;
}

.comment-list>li {
	margin-top: 30px;
	margin-bottom: 30px;
}

.comment-list .children {
	list-style: none;
	padding-left: 0;
}

.comment-list .children>li {
	margin-top: 30px;
	margin-bottom: 30px;
}

@media only screen and (min-width: 482px) {

	.comment-list .depth-2,
	.comment-list .depth-3 {
		padding-left: calc(4 * 20px);
	}
}

/** * Comment Meta */
.comment-meta .comment-author {
	margin-bottom: calc(0.25 *20px);
}

@media only screen and (min-width: 482px) {
	.comment-meta .comment-author {
		margin-bottom: 0;
		padding-right: 0;
	}
}

.comment-meta .comment-author .fn {
	font-weight: normal;
	hyphens: auto;
	word-wrap: break-word;
	word-break: break-word;
}

.comment-meta .comment-metadata {
	color: var(--text-color-normal);
	padding: 8px 0 9px 0;
	font-size: 15px;
	display: flex;
	justify-content: space-between;
}

.comment-meta .comment-metadata .edit-link {
	margin-left: 20px;
}

@media only screen and (min-width: 482px) {
	.comment-meta {
		margin-right: inherit;
	}

	.comment-meta .comment-author {
		max-width: inherit;
	}
}

.bypostauthor {
	display: block;
}

.says {
	display: none;
}

.comment-meta {
	margin-bottom: 10px;
}

.comment-body {
	position: relative;
	margin-bottom: 40px;
	padding: 30px;
	background-color: var(--post-item-background);
	border: 1px solid #eee;
}

.comment-body .reply {
	margin: 0;
}

.comment-content {
	word-wrap: break-word;
	font-size: 16px;
	padding-bottom: 15px;
	color: #555;
}

.pingback .comment-body,
.trackback .comment-body {
	margin-top: 30px;
	margin-bottom: 30px;
}

.comment-respond {
	margin-top: 30px;
}

.comment-respond>* {
	margin-top: 20px;
	margin-bottom: 20px;
}

.comment-respond>*:first-child {
	margin-top: 0;
}

.comment-respond>*:last-child {
	margin-bottom: 0;
}

.comment-respond>*:last-child.comment-form {
	margin-bottom: 30px;
}

.comment-author {
	padding-top: 3px;
}

.reply a,
.comment-content a,
.comment-meta .comment-metadata a,
.comment-author .url {
	color: currentColor;
}

.reply a:focus,
.comment-content a:focus,
.comment-meta .comment-metadata a:focus,
.comment-author .url:focus,
.reply a:hover,
.comment-content a:hover,
.comment-meta .comment-metadata a:hover,
.comment-author .url:hover {
	color: var(--theme-primary-hue);
}

.comment-form {
	display: flex;
	flex-wrap: wrap;
}

.comment-form>* {
	flex-basis: 100%;
}

.comment-form .comment-form-url,
.comment-form .comment-form-comment {
	width: 100%;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
	flex-basis: 0;
	flex-grow: 1;
}

@media only screen and (max-width: 481px) {

	.comment-form .comment-form-author,
	.comment-form .comment-form-email {
		flex-basis: 100%;
	}
}

.comment-form .comment-form-cookies-consent>label,
.comment-form .comment-notes {
	font-size: 1rem;
	font-weight: normal;
}

.comment-form>p {
	margin-bottom: 10px;
}

.comment-form>p a {
	color: var(--text-color-normal);
	transition: all 0.3s ease-in;
	text-decoration: none;
}

.comment-form>p a:focus,
.comment-form>p a:hover {
	color: var(--theme-primary-hue);
}

.comment-form>p:first-of-type {
	margin-top: 0;
}

.comment-form>p:last-of-type {
	margin-bottom: 0;
}

.comment-form>p label,
.comment-form>p input[type=email],
.comment-form>p input[type=text],
.comment-form>p input[type=url],
.comment-form>p textarea {
	display: block;
	font-size: var(--global--typo-xs);
	margin-bottom: calc(.5 *20px);
	width: 100%;
	font-weight: var(--form--label-weight);
}

.comment-form>p.comment-form-cookies-consent {
	display: flex;
	align-items: center;
}

@media only screen and (min-width: 482px) {

	.comment-form>p.comment-form-author,
	.woocommerce #review_form #respond p {
		margin-right: calc(1.5 * 20px);
	}

	.comment-form>p.comment-notes,
	.comment-form>p.logged-in-as {
		display: block;
	}
}

nav.breadcrumb-trail ul.trail-items {
	list-style: none;
	padding: 0;
	margin: 0;
	color: var(--text-color-normal);
}

nav.breadcrumb-trail ul.trail-items li {
	display: inline-block;
}

nav.breadcrumb-trail ul.trail-items li a {
	text-decoration: none;
	color: var(--text-color-normal);
}

nav.breadcrumb-trail ul.trail-items li a:hover {
	color: var(--theme-primary-hue);
}

nav.breadcrumb-trail ul.trail-items li::after {
	margin: 0 0.3rem;
}

nav.breadcrumb-trail ul.trail-items li:last-child::after {
	display: none;
}

/* ----comments section---- */
#comments.comments-area {
	margin-block: 20px;
}

#comments.comments-area .comments-title {
	font-size: var(--typo-lg);
	font-family: var(--site-body-font);
	line-height: 1.2;
}

#comments.comments-area .comment-list .comment .comment-author img {
	float: left;
	margin-right: 20px;
	margin-bottom: 20px;
	width: 50px;
}

#comments.comments-area .comment-list .comment .comment-content p {
	margin-bottom: 5px;
}

#comments.comments-area div#respond {
	margin-top: 20px;
}

#comments.comments-area div#respond #reply-title {
	margin-top: 0;
	font-weight: 700;
	font-size: var(--typo-sm);
}

#comments.comments-area div#respond p {
	margin-bottom: 5px;
}

#comments.comments-area div#respond label {
	font-weight: normal;
}

#comments.comments-area div#respond textarea {
	width: 100%;
}

#comments.comments-area div#respond p.comment-form-url,
#comments.comments-area div#respond p.comment-form-email,
#comments.comments-area div#respond p.comment-form-author {
	display: inline-block;
	width: 100%;
}

#comments.comments-area div#respond p.comment-form-url label,
#comments.comments-area div#respond p.comment-form-email label,
#comments.comments-area div#respond p.comment-form-author label {
	display: block;
}

#comments.comments-area div#respond p.comment-form-url input,
#comments.comments-area div#respond p.comment-form-email input,
#comments.comments-area div#respond p.comment-form-author input {
	width: 100%;
}

#comments.comments-area div#respond p.comment-form-cookies-consent label {
	margin-left: 8px;
	position: relative;
	top: -1px;
}

#comments.comments-area div#respond input[type="submit"] {
	display: inline-block;
	margin-top: 10px;
}

#comments.comments-area div#respond #reply-title small a {
	display: inline-block;
	margin-left: 10px;
}

.comment div#respond,
.comment-content {
	margin-left: 70px;
}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* End comments css
--------------------------------------------- */

/* Start footer css
--------------------------------------------- */
.site-footer {
	margin-top: 50px;
	background-color: #1c1c1c;
	--theme-text-hue: #fff;
}

.site-footer .upper-footer .upper-footer-container {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
	margin-inline: -15px;
}

.site-footer .upper-footer .upper-footer-container .footer-widget-block {
	width: 25%;
	padding-inline: 15px;
	flex-shrink: 0;
	color: #fff;
}

@media (max-width: 768px) {
	.site-footer .upper-footer .upper-footer-container .footer-widget-block {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.site-footer .upper-footer .upper-footer-container .footer-widget-block {
		width: 100%;
	}
}

.site-footer .upper-footer .upper-footer-container .footer-widget-block h1,
.site-footer .upper-footer .upper-footer-container .footer-widget-block h2,
.site-footer .upper-footer .upper-footer-container .footer-widget-block h3,
.site-footer .upper-footer .upper-footer-container .footer-widget-block h4,
.site-footer .upper-footer .upper-footer-container .footer-widget-block h5,
.site-footer .upper-footer .upper-footer-container .footer-widget-block h6 {
	margin-top: 0;
}

.site-footer .upper-footer .upper-footer-container .footer-widget-block a {
	opacity: 0.8;
	transition: all 0.3s ease-in;
}

.site-footer .upper-footer .upper-footer-container .footer-widget-block a:focus,
.site-footer .upper-footer .upper-footer-container .footer-widget-block a:hover {
	color: #fff;
	opacity: 1;
}

.site-footer .upper-footer .upper-footer-container .footer-widget-block .widget .widget-title {
	color: #fff;
}

.site-footer .upper-footer .upper-footer-container .footer-widget-block .widget ul li a,
.site-footer .upper-footer .upper-footer-container .footer-widget-block .widget ol li a {
	color: #fff;
	opacity: 0.8;
	transition: all 0.3s ease-in;
}

.site-footer .upper-footer .upper-footer-container .footer-widget-block .widget ul li a:focus,
.site-footer .upper-footer .upper-footer-container .footer-widget-block .widget ol li a:focus,
.site-footer .upper-footer .upper-footer-container .footer-widget-block .widget ul li a:hover,
.site-footer .upper-footer .upper-footer-container .footer-widget-block .widget ol li a:hover {
	opacity: 1;
}



.site-footer .lower-footer {
	position: relative;
	padding: 15px 0;
	z-index: 1;
}

.site-footer .lower-footer .lower-footer-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
}

.site-footer .lower-footer .lower-footer-info .site-info a {
	text-decoration: none;
	color: #fff;
	opacity: 0.8;
	transition: all 0.3s ease-in;
}

.site-footer .lower-footer .lower-footer-info .site-info a:focus,
.site-footer .lower-footer .lower-footer-info .site-info a:hover {
	opacity: 1;
}

.site-footer .lower-footer .lower-footer-info .social-icons ul.social-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer .lower-footer::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0.1;
	background: #d9d9d9;
}

@media (min-width: 1200px) {
	.footer-sticky .site-footer {
		position: sticky;
		bottom: 0;
		top: 0;
		z-index: 0;
	}
}
/* End footer css
--------------------------------------------- */
/* Start Scroll to top css
--------------------------------------------- */
a.cozy-blog-scroll-to-top {
	position: fixed;
	inset-block-end: 40px;
	inset-inline-end: 40px;
	height: 40px;
	width: 40px;
	opacity: 0;
	visibility: hidden;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	border-radius: 100%;
	background-color: var(--theme-primary-hue);
	font-size: var(--typo-xs);
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a.cozy-blog-scroll-to-top:hover,
a.cozy-blog-scroll-to-top:focus {
	box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.15);
	transform: translateY(-10px);
}

a.cozy-blog-scroll-to-top.visible {
	opacity: 1;
	visibility: visible;
}

/* End Scroll to top css
--------------------------------------------- */

/* Sections Divider Start
--------------------------------------------- */

.section-divider {
	margin-block-start: 70px;
}
@media (max-width: 600px) {
	.section-divider {
		margin-top: 30px;
	}
}

/* Sections Divider End
--------------------------------------------- */
/* Section Title
--------------------------------------------- */
.header-title {
	margin-bottom: 30px;
	display: flex;
	align-items: center;
}

.header-title .section-title {
	margin: 0;
	font-size: calc(var(--typo-md) + 2px);
}

.header-title .title-dash {
	height: 1px;
	flex-grow: 1;
	margin-inline-start: 32px;
	background-color: var(--theme-border-hue);
}

/* ----Latest Post Title---- */
.section-head .header-title {
	text-align: start;
}

/* Section Title End
--------------------------------------------- */

/* Start of Sections CSS
--------------------------------------------- */

/* Banner Section Start
--------------------------------------------- */
.banner-section:not(:first-child) {
	margin-top: 100px;
}

.banner-section:first-child {
	margin-top: 100px;
}

@media (max-width: 991px) {
	.banner-section:first-child {
		margin-top: 50px;
	}
}

.banner-section .banner-single-card .single-card-container.list-card {
	gap: 30px;
	overflow: hidden;
}

.banner-section .banner-single-card .single-card-container.list-card .single-card-image {
	width: 50%;
}

.banner-section .banner-single-card .single-card-container.list-card .single-card-detail .card-categories-date {
	margin-bottom: 18px;
}

.banner-section .banner-single-card .single-card-container.list-card .single-card-detail .card-title {
	line-height: 1.4;
	margin-bottom: 24px;
	font-size: calc(var(--typo-md) + 3px);
}

@media (max-width: 600px) {
	.banner-section .banner-single-card .single-card-container.list-card {
		flex-direction: column;
	}
	.banner-section .banner-single-card .single-card-container.list-card .single-card-image {
		width: 100%;
	}
}

.banner-section.banner-layout-1 .banner-single-card .single-card-container.list-card .single-card-image {
	background: var(--theme-text-light-hue);
}

/* ----Banner Section End
--------------------------------------------- */

/* Categories Section
--------------------------------------------- */
.categories-section .site-container-width .container-wrap {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
	.categories-section .site-container-width .container-wrap {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 768px) {
	.categories-section .site-container-width .container-wrap {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 600px) {
	.categories-section .site-container-width .container-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 375px) {
	.categories-section .site-container-width .container-wrap {
		grid-template-columns: repeat(1, 1fr);
	}
}

.categories-section .site-container-width .container-wrap .single-card-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.categories-section .site-container-width .container-wrap .single-card-container .single-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	box-shadow: 2px 2px 4px 0 #80808075;
}

.categories-section .site-container-width .container-wrap .single-card-container .single-card-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.categories-section .site-container-width .container-wrap .single-card-container .single-card-detail .category-title {
	line-height: 1.2;
	text-align: center;
	margin-block: 10px 0; 
	font-size: calc(var(--typo-md) - 4px);
}

.categories-section .site-container-width .container-wrap .single-card-container .single-card-detail .category-title a {
	text-decoration: none;
	color: var(--theme-text-hue);
	transition: 0.3s ease-in;
}

.categories-section .site-container-width .container-wrap .single-card-container .single-card-detail .category-title a:hover,
.categories-section .site-container-width .container-wrap .single-card-container .single-card-detail .category-title a:focus {
	color: var(--theme-primary-hue);
}

.categories-section .site-container-width .container-wrap .single-card-container .single-card-detail .article-counter {
	color: var(--theme-text-hue);
	margin-block-start: 2px;
	font-size: var(--typo-xs);
}

/*---- Categories Layout 2 ----*/
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container {
	position: relative;
	min-height: 260px;
	transition: 0.3s ease;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-image img {
	aspect-ratio: unset;
	border-radius: unset;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-detail {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 14px;
	justify-content: flex-end;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-detail::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	opacity: 0.2;
	background-color: #000;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-detail .category-title a {
	color: #fff;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-detail .category-title a:hover, .categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-detail .category-title a:focus-within {
	text-decoration: underline;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-detail .article-counter {
	color: #fff;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-detail .article-counter:hover, .categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container .single-card-detail .article-counter:focus-within {
	text-decoration: underline;
}
.categories-section.category-layout-2 .site-container-width .container-wrap .single-card-container:hover {
	box-shadow: 3px 3px 11px -4px #464646;
}

/* Categories Section End
--------------------------------------------- */

/* Featured Post Start
--------------------------------------------- */

.featured-posts .container-wrap {
	gap: 34px;
	display: grid;
}

/*---- Featured Post Layout 1 ----*/

.featured-posts.featured-layout-1 .container-wrap {
	grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
	.featured-posts.featured-layout-1 .container-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.featured-posts.featured-layout-1 .container-wrap {
		grid-template-columns: repeat(1, 1fr);
	}
}

.featured-postsfeatured-layout-1 .container-wrap .single-card-container:nth-child(n + 2) .single-card-detail .card-title {
	font-size: var(--typo-sm);
}

@media (min-width: 768px) {
	.featured-posts.featured-layout-1 .container-wrap .single-card-container:first-child {
		grid-column: span 2;
		grid-row: span 2;
	}
}

.featured-posts.featured-layout-2 .container-wrap .single-card-container {
	min-height: 340px;
}

/*---- Featured Post Layout 2 ----*/
.featured-posts.featured-layout-2 .container-wrap {
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 600px) {
	.featured-posts.featured-layout-2 .container-wrap {
		grid-template-columns: repeat(1, 1fr);
	}
}

.featured-posts.featured-layout-2 .container-wrap .single-card-container {
	min-height: 540px;
}

/* Featured Post End
--------------------------------------------- */

/* End of Sections CSS
--------------------------------------------- */

/* Start of Common Layout CSS
--------------------------------------------- */
.single-card-container .single-card-image {
	line-height: 0;
}

.single-card-container .single-card-image > a {
	display: block;
	height: 100%;
	width: 100%;
	line-height: 0;
}

.single-card-container .single-card-image > a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/0.6;
}

.single-card-container .single-card-detail {
	flex-grow: 1;
	align-self: center;
}
.single-card-container .single-card-detail .card-categories-date{
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}
.single-card-container .single-card-detail .card-categories .cat-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}

.single-card-container .single-card-detail .card-categories a {
	color: var(--theme-text-hue);
	line-height: 1.143;
	padding: 6px 12px;
	position: relative;
	text-decoration: none;
	font-size: var(--typo-xxs);
	transition: all 0.3s ease-in;
}

.single-card-container .single-card-detail .card-categories a::before {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
	height: 100%;
	border-radius: 24px;
	inset-inline-start: 0;
	background-color: #f6f6f6;
}

.single-card-container .single-card-detail .card-categories a:hover,
.single-card-container .single-card-detail .card-categories a:focus {
	opacity: 0.9;
}

.single-card-container .single-card-detail .post-date {
	position: relative;
}

.single-card-container .single-card-detail .post-date a {
	text-decoration: none;
	color: var(--theme-text-hue);
	font-size: calc(var(--typo-xs) - 2px);
	transition: all 0.3s ease-in;
}

.single-card-container .single-card-detail .post-date a:hover,
.single-card-container .single-card-detail .post-date a:focus {
	color: var(--theme-primary-hue);
}

.single-card-container .single-card-detail .card-title {
	margin-top: 14px;
	line-height: 1.2;
	margin-bottom: 0;
	font-size: var(--typo-md);
}

.single-card-container .single-card-detail .card-title a {
	transition: 0.3s ease-in;
}

.single-card-container .single-card-detail .card-title a:hover,
.single-card-container .single-card-detail .card-title a:focus-within {
	text-decoration: underline;
}

.single-card-container .single-card-detail .card-title a {
	text-decoration: none;
	color: var(--theme-text-hue);
	word-break: break-word;
}

.single-card-container .single-card-detail .post-excerpt {
	margin: 14px 0 0 0;
	font-size: var(--typo-xs);
	color: var(--theme-text-light-hue);
}

.single-card-container .single-card-detail .card-meta {
	margin-top: 18px;
}

.single-card-container .single-card-detail .card-meta .post-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.single-card-container .single-card-detail .card-meta .post-author img {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	border-radius: 100%;
}

.single-card-container .single-card-detail .card-meta .post-author a {
	position: relative; 
	font-weight: 600;
	text-decoration: none;
	font-size: var(--typo-xs);
	color: var(--theme-text-hue);
	transition: all 0.3s ease-in;
}

.single-card-container .single-card-detail .card-meta .post-author a:hover,
.single-card-container .single-card-detail .card-meta .post-author a:focus {
	color: var(--theme-primary-hue);
}
.single-card-container .single-card-detail .card-meta .post-author a::before:hover,
.single-card-container .single-card-detail .card-meta .post-author a::before:focus {
	color: var(--theme-primary-hue);

}

/* Grid Card
--------------------------------------------- */
.single-card-container.grid-card .single-card-image {
	box-shadow: 2px 2px 4px 0 #80808075;
}

.single-card-container.grid-card .single-card-detail {
	margin-top: 18px;
}

/* List Card
--------------------------------------------- */
.single-card-container.list-card {
	gap: 10px;
	display: flex;
}

.single-card-container.list-card .single-card-image {
	width: 30%;
	flex-shrink: 0;
	aspect-ratio: 1 / 0.6;
	box-shadow: 2px 2px 4px 0 #80808075;
}

.single-card-container.list-card .single-card-detail {
	align-self: center;
	padding: 6px;
}

/* Tile Card
--------------------------------------------- */
.single-card-container.tile-card {
	height: 100%;
	display: flex;
	overflow: hidden;
	min-height: 260px;
	position: relative;
}

.single-card-container.tile-card .single-card-image {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	inset-inline-start: 0;
}

.single-card-container.tile-card .single-card-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background: linear-gradient(to top, #121212e6, #12121200);
}

.single-card-container.tile-card .single-card-detail {
	display: flex;
	isolation: isolate;
	align-self: flex-end;
	flex-direction: column;
	padding: 20px 24px 24px 24px;
}

.single-card-container.tile-card .single-card-detail .card-title a {
	color: #fff;
}

.single-card-container.tile-card .single-card-detail .post-excerpt {
	color: #fff;
}

.single-card-container.tile-card .single-card-detail .card-meta .post-author a {
	color: #fff;
}

.single-card-container.tile-card .single-card-detail .card-meta .post-author a:before {
	color: #fff;
}
.single-card-container.tile-card .single-card-detail .post-date a {
	color: #fff;
}

/* End of Common Layout CSS
--------------------------------------------- */

/* Start OF Theme Widget
--------------------------------------------- */
/* ----author widget start----*/
.author-widget {
	color: var(--theme-text-hue);
}

.site-footer .author-widget {
	color: #fff;
}

.author-widget .widget-title {
	color: var(--theme-text-hue);
}

.has-clip .author-widget .widget-title {
	padding-left: 20px;
}

.author-widget .widget-title::after {
	background-color: var(--theme-primary-hue);
}

.author-widget .author-part {
	display: flex;
	gap: 10px;
	margin-block-end: 6px;
	flex-direction: column;
}

.author-widget .author-img {
	line-height: 0;
}

.author-widget .author-img img {
	width: 50%;
	aspect-ratio: 1;
	object-fit: cover;
	display: flex;
}


.author-widget .author-name-part .author-name {
	margin: 0 0 5px;
	font-size: var(--typo-sm);
	font-weight: 700;
	line-height: 1.3;
}

.author-widget .author-name-part .author-position {
	margin-block: 5px;
	font-size: var(--typo-xs);
}

.author-widget .author-details .author-description {
	margin: 0;
	margin-block-start: 10px;
}

.author-widget .author-social-contacts {
	display: inline-flex;
	gap: 10px;
}

.author-widget .author-social-contacts {
	display: flex;
	margin-block-start: 10px;
}

.author-widget .author-social-contacts a {
	font-size: var(--typo-xs);
}

/* ----author widget end---- */

/* ----featured widget start---- */
.featured-widget .single-card-container.list-card {
	border: none;
	align-items: center;
	margin-bottom: 10px;
}

.featured-widget .single-card-container.list-card .single-card-image {
	flex: 0 0 30%;
	max-width: 30%;
	align-self: start;
}

.featured-widget .single-card-container.list-card .single-card-detail {
	flex-grow: 1;
	padding: 0 10px;
	text-align: start;
}

.featured-widget .single-card-container .single-card-detail .card-title {
	margin-block: 10px;
	margin-block-start: 0;
	line-height: 1.3;
	font-size: var(--typo-xs);
}

.featured-widget .single-card-container.list-card .single-card-detail .card-meta,
.featured-widget .single-card-container.list-card .single-card-detail .card-cat .post-categories {
	justify-content: flex-start;
}

/* ----featured widget end---- */

/* ----social widget start---- */
.social-widget .social-feed-widgets-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
/* ----social widget end---- */

/* ----tile list widget start---- */
.tile-list-widget .widget-content-area {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(1, 1fr);
}

.tile-list-widget .single-card-container .single-card-detail {
	padding: 10px;
}

.tile-list-widget .single-card-container .single-card-detail .card-title {
	margin-block: 0;
	line-height: 1.3;
	font-size: var(--typo-xs);
}

.tile-list-widget .single-card-container.tile-card .single-card-detail .card-title {
	font-size: var(--typo-sm);
}

/* ----tile list widget end---- */

/* ----single slider widget start---- */
.slider-widget .slider-single-card .single-card-container {
	min-height: 320px;
}

/* ----single slider widget end---- */

/* End OF Theme Widget
--------------------------------------------- */
