/*!
Theme Name: Zakra
Theme URI: https://zakratheme.com/
Author: ThemeGrill
Author URI: https://themegrill.com
Description: Zakra is a powerful and versatile multipurpose theme that makes it easy to create beautiful and professional websites. With over free 40 pre-designed starter demo sites to choose from, you can quickly build a unique and functional site that fits your specific needs. Whether you're launching a blog, news site, e-commerce store, showcasing your portfolio, building a business site, LMS, or niche-specific site (such as a cafe, spa, charity, yoga studio, wedding venue, dental practice, photography, restaurant, or educational institution), Zakra has everything you need to succeed. The theme integrates seamlessly with popular page builders like Elementor, Brizy, BlockArt, and the Gutenberg editor, giving you complete freedom to create any layout you can imagine. Importantly, Zakra is optimized for speed, features a mobile-first responsive design, is built with block-based technology, and is optimized for search engines. It is also compatible with a wide range of popular WordPress plugins, allowing you to extend its functionality as needed. Build your next project with Zakra today and see the difference for yourself. Check out all the starter sites at https://zakratheme.com/demos!
Version: 4.1.5
Tested up to: 6.8
Requires PHP: 7.4
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
Text Domain: zakra
Tags: one-column, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-logo, featured-images, footer-widgets, full-width-template, theme-options, threaded-comments, translation-ready, blog, news, e-commerce, rtl-language-support

Zakra is based on Underscores https://underscores.me/, (C) 2012-2017 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 http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Abstract
	- Abstract

# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins

# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Abstract.
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic.
--------------------------------------------------------------*/
/* Normalize.
--------------------------------------------- */
/*=============================================
=            Normalize            =
=============================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	outline: 0;
	vertical-align: baseline;
}

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	text-decoration: none;
}

b,
strong {
	font-weight: 600;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: unset;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
	vertical-align: middle;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
	border-style: solid;
	border-width: 0;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: 700;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/* 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.
--------------------------------------------------------------*/
/* Container
--------------------------------------------- */
.zak-container {
	max-width: var(--container-width, 1170px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
	box-sizing: content-box;
}

/*=============================================
=            GRID            =
=============================================*/
.zak-container--flex {
	display: flex;
	flex-wrap: wrap;
}

.zak-container--flex-center {
	align-content: center;
	align-items: center;
}

.zak-container--flex-space-between {
	justify-content: space-between;
}

.zak-site-layout--stretched #page .zak-content .zak-container {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.zak-site-layout--stretched #page .zak-content .zak-container .zak-primary {
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}

.zak-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	box-sizing: border-box;
}

/* Typography
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #3F3F46;
	line-height: 1.3;
	font-weight: 800;
	margin: 0 0 20px;
}

h1 {
	font-size: 4rem;
}

h2 {
	font-size: 3.2rem;
}

h3 {
	font-size: 2.4rem;
}

h4 {
	font-size: 2rem;
}

h5 {
	font-size: 1.8rem;
}

h6 {
	font-size: 1.6rem;
}

@media (max-width: 767px) {
    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
        font-weight: 800;
        text-transform: capitalize;
        font-family: 'GilroySemiBold', Arial;
    }
}

.h1, h1 {
    font-size: calc(18px + 1.5vw);
}


html {
	font-size: var(--zak-root-font-size, 62.5%);
	/* Sets base font size to 10px  copy */
}

p {
	word-break: break-word;
	margin-bottom: 20px;
}

code {
	background-color: #E0F2FE;
	padding: 0.125em 0.25em;
}

pre {
	background-color: #F4F4F5;
	padding: 20px;
}

blockquote,
.wp-block-quote {
	padding: 16px;
	margin-top: 34px;
	margin-bottom: 34px;
	border-left: 4px solid #027ABB;
	color: #27272A;
	font-style: italic;
}

blockquote.has-text-align-right, blockquote.is-style-large, blockquote.is-style-plain,
.wp-block-quote.has-text-align-right,
.wp-block-quote.is-style-large,
.wp-block-quote.is-style-plain {
	border: unset;
	border-left: 4px solid #027ABB;
}

.wp-block-pullquote.has-border-color {
	border: unset !important;
	border-top: 4px solid #027ABB !important;
	border-bottom: 4px solid #027ABB !important;
}

/* Elements
--------------------------------------------- */
a {
	color: inherit;
	text-decoration: none;
	transition: all 0.35s ease-in-out;
}

a:active {
	outline: 0;
}

.entry-content a,
.edit-link a {
	color: #027ABB;
	text-decoration: underline;
}

.entry-content a:hover, .entry-content a:focus,
.edit-link a:hover,
.edit-link a:focus {
	text-decoration: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wp-block-button .wp-block-button__link,
.zak-button {
	border-radius: 4px;
	padding: 8px 10px;
	color: #FAFAFA;
	background-color: rgba(0,0,0,0);
	text-decoration: none;
	transition: all 0.3s;
	border: 0px solid #027ABB;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.wp-block-button .wp-block-button__link:hover,
.zak-button:hover {
	color: #027ABB;
	background-color: transparent;
}

.wp-block-button__link code {
	background-color: inherit;
}

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"],
select,
textarea {
	outline: none;
	border: 1px solid #D4D4D8;
	border-radius: 0;
	padding: 0.7rem 1rem;
	width: 100%;
	color: #3F3F46;
}

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,
select:focus,
textarea:focus {
	color: #52525B;
}

input[type="search"] {
	-webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
	margin-right: 0.5rem;
	vertical-align: middle;
	display: inline-block;
}

label {
	margin-bottom: 0.5rem;
	display: inline-block;
}

select {
	border: 1px solid #D4D4D8;
	padding: 0.5rem;
}

body {
	background: #FFF;
	/* Fallback for when there is no custom background color defined. */
	color: #3F3F46;
	font-family: 'GilroyBlack', Arial;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.01em;
	word-wrap: break-word;
}

ul,
ol {
	margin: 0 0 1.6rem 1.6rem;
	padding-left: 0;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.6rem;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.6rem 1.6rem;
}

.zak-oembed-container {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}

.zak-oembed-container iframe,
.zak-oembed-container object,
.zak-oembed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

body .zak-oembed-container * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

iframe {
	max-width: 100%;
}

/* Gallery. */
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/* Caption. */
.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;
}

/*=============================================
=            Table            =
=============================================*/
table,
.wp-block-table {
	margin: 0 0 1.5em;
	width: 100%;
}

table th,
table td,
.wp-block-table th,
.wp-block-table td {
	text-align: left;
	border: 1px solid #D4D4D8;
	padding: 1em;
}

@font-face {
	font-family: "themegrill-icons";
	src: url("assets/fonts/themegrill-icons.eot?5d42b271f668d2d6461ba91fc5a5a839?#iefix") format("embedded-opentype"), url("assets/fonts/themegrill-icons.woff2?5d42b271f668d2d6461ba91fc5a5a839") format("woff2"), url("assets/fonts/themegrill-icons.woff?5d42b271f668d2d6461ba91fc5a5a839") format("woff");
	font-display: swap;
}

.zak-icon {
	font-family: "themegrill-icons";
	display: inline-block;
	font-size: 1rem;
	font-style: normal;
}

.zak-icon-angle-down::after {
	content: "\f101";
}

.zak-icon-angle-left::after {
	content: "\f102";
}

.zak-icon-angle-right::after {
	content: "\f103";
}

.zak-icon-angle-up::after {
	content: "\f104";
}

.zak-icon-arrow-down::after {
	content: "\f105";
}

.zak-icon-arrow-left::after {
	content: "\f106";
}

.zak-icon-arrow-right::after {
	content: "\f107";
}

.zak-icon-arrow-up::after {
	content: "\f108";
}

.zak-icon-bars::after {
	content: "\f109";
}

.zak-icon-close::after {
	content: "\f10a";
}

.zak-icon-search::after {
	content: "\f10b";
}

.zak-icon-shopping-cart::after {
	content: "\f10c";
}

/* SVG icons */
.zak-icon {
	display: block;
	width: 1.25em;
	height: 1.25em;
	transition: all 0.3s;
}

/*=============================================
=            Admin Bar            =
=============================================*/
.admin-bar {
	--admin-bar: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar {
		--admin-bar: 46px;
	}
}

.zak-header-builder {
	border-style: solid;
	border-color: #E4E4E7;
	border-width: 0 0 1px 0;
}

.zak-header-builder .zak-row {
	display: block;
}

.zak-header-builder .zak-main-header {
	padding: 0;
}

.zak-header-builder .zak-header-top-row,
.zak-header-builder .zak-header-main-row,
.zak-header-builder .zak-header-bottom-row {
	border: 0 solid;
}

.zak-header-builder .zak-header-top-row {
	color: #FAFAFA;
	background-color: #18181B;
	padding-bottom: 14px;
	padding-top: 14px;
	font-size: 14px;
}

.zak-header-builder .zak-header-main-row {
	padding-top: 20px;
	padding-bottom: 20px;
}

.zak-header-builder .zak-main-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 0 solid;
	position: relative;
}

.zak-header-builder .zak-main-row .zak-header-left-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-main-row .zak-header-center-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-main-row .zak-header-right-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-top-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 0 solid;
	position: relative;
}

.zak-header-builder .zak-top-row .zak-header-left-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-top-row .zak-header-center-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-top-row .zak-header-right-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-bottom-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 0 solid;
	position: relative;
}

.zak-header-builder .zak-bottom-row .zak-header-left-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-bottom-row .zak-header-center-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-bottom-row .zak-header-right-col {
	display: flex;
	gap: 16px;
	align-items: center;
	height: 100%;
}

.zak-header-builder .zak-mobile-row {
	display: none;
}

.zak-header-builder .zak-mobile-nav > div > ul {
	padding-top: 0;
	border: none;
}

.zak-header-builder .zak-desktop-row {
	position: relative;
}

.zak-header-builder .zak-icon--close {
	background: transparent;
}

.zak-header-builder .zak-desktop-row p,
.zak-header-builder .zak-mobile-row p {
	margin-bottom: 0;
}

.zak-header-builder .zak-mobile-nav {
	box-sizing: border-box;
}

.zak-header-builder .widget .wp-block-heading,
.zak-header-builder .widget .widget-title {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.zak-header-builder .widget .wp-block-heading::before,
.zak-header-builder .widget .widget-title::before {
	content: none;
}

.zak-header-builder .zak-mini-cart li {
	list-style: none;
}

.zak-header-builder.zak-layout-1-transparent {
	position: relative;
	border-bottom: none;
}

.zak-header-builder.zak-layout-1-transparent .zak-header-transparent-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	height: auto;
	width: 100%;
	background: transparent;
}

.zak-header-builder.zak-layout-1-transparent .zak-header-transparent-wrapper .zak-header-search--opened.zak-main-header {
	background: #27272A;
}

.zak-header-builder.zak-layout-1-transparent .zak-header-transparent-wrapper .zak-main-header {
	background: transparent;
}

.zak-header-builder.zak-layout-1-transparent .zak-header-transparent-wrapper .zak-header-main-row {
	background: transparent;
}

.zak-secondary-nav,
.zak-tertiary-nav,
.zak-quaternary-nav {
	border: 0 solid;
}

.zak-secondary-nav ul,
.zak-tertiary-nav ul,
.zak-quaternary-nav ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: flex-start;
	margin-bottom: 0;
	margin-left: 0;
}

.zak-secondary-nav ul li,
.zak-tertiary-nav ul li,
.zak-quaternary-nav ul li {
	list-style: none;
}

@media (max-width: 768px) {
	.zak-header-builder .zak-desktop-row {
		display: none;
	}
	.zak-header-builder .zak-mobile-row {
		display: block;
	}
}

@media (min-width: 768px) {
	.zak-header-builder .zak-header-bottom-row {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

.zak-desktop-row.zak-header-search--opened {
	background: #27272A;
}

.zak-desktop-row.zak-header-search--opened .zak-main-nav,
.zak-desktop-row.zak-header-search--opened .zak-primary-nav,
.zak-desktop-row.zak-header-search--opened .site-branding,
.zak-desktop-row.zak-header-search--opened .zak-header-col--1 {
	visibility: visible;
	opacity: 1;
}

.zak-desktop-row.zak-header-search--opened .zak-bottom-row:has(.zak-header-search) nav, .zak-desktop-row.zak-header-search--opened .zak-bottom-row:has(.zak-header-search) .zak-mini-cart, .zak-desktop-row.zak-header-search--opened .zak-bottom-row:has(.zak-header-search) .zak-header-buttons, .zak-desktop-row.zak-header-search--opened .zak-bottom-row:has(.zak-header-search) .zak-header-button--2, .zak-desktop-row.zak-header-search--opened .zak-bottom-row:has(.zak-header-search) .zak-html-1, .zak-desktop-row.zak-header-search--opened .zak-bottom-row:has(.zak-header-search) .zak-html-2, .zak-desktop-row.zak-header-search--opened .zak-bottom-row:has(.zak-header-search) .site-branding {
	visibility: hidden;
	opacity: 0;
}

.zak-desktop-row.zak-header-search--opened .zak-top-row:has(.zak-header-search) nav, .zak-desktop-row.zak-header-search--opened .zak-top-row:has(.zak-header-search) .zak-mini-cart, .zak-desktop-row.zak-header-search--opened .zak-top-row:has(.zak-header-search) .zak-header-buttons, .zak-desktop-row.zak-header-search--opened .zak-top-row:has(.zak-header-search) .zak-header-button--2, .zak-desktop-row.zak-header-search--opened .zak-top-row:has(.zak-header-search) .zak-html-1, .zak-desktop-row.zak-header-search--opened .zak-top-row:has(.zak-header-search) .zak-html-2, .zak-desktop-row.zak-header-search--opened .zak-top-row:has(.zak-header-search) .site-branding {
	visibility: hidden;
	opacity: 0;
}

.zak-desktop-row.zak-header-search--opened .zak-main-row:has(.zak-header-search) nav, .zak-desktop-row.zak-header-search--opened .zak-main-row:has(.zak-header-search) .zak-mini-cart, .zak-desktop-row.zak-header-search--opened .zak-main-row:has(.zak-header-search) .zak-header-buttons, .zak-desktop-row.zak-header-search--opened .zak-main-row:has(.zak-header-search) .zak-html-1, .zak-desktop-row.zak-header-search--opened .zak-main-row:has(.zak-header-search) .zak-html-2, .zak-desktop-row.zak-header-search--opened .zak-main-row:has(.zak-header-search) .site-branding {
	visibility: hidden;
	opacity: 0;
}

.zak-desktop-row.zak-header-search--opened .zak-search-container {
	display: flex;
	width: 100%;
	z-index: 9999;
	visibility: visible;
	transition: all 0.3s ease-in-out;
}

.zak-desktop-row.zak-header-search--opened .zak-header-buttons {
	display: block;
}

.zak-desktop-row.zak-header-search--opened .yith-wcwl-items-count {
	display: none;
}

.zak-desktop-row.zak-header-search--opened .zak-header-search__toggle {
	display: none;
}

.zak-desktop-row.zak-header-search--opened .zak-header-action li {
	display: none;
}

.zak-desktop-row.zak-header-search--opened .zak-search-field-label input {
	color: #FFF;
	padding: 0.7rem 0;
	background-color: inherit;
}

.zak-desktop-row.zak-header-search--opened .zak-search-field-label input:focus {
	color: #FFF;
}

.zak-desktop-row.zak-header-search--opened .zak-search-field-label input:-webkit-autofill,
.zak-desktop-row.zak-header-search--opened .zak-search-field-label input:-webkit-autofill:focus {
	-webkit-transition: background-color 600000s 0s, color 600000s 0s;
	transition: background-color 600000s 0s, color 600000s 0s;
}

.zak-desktop-row.zak-header-search--opened .zak-search-field-label input[data-autocompleted] {
	background-color: transparent !important;
}

.zak-desktop-row.zak-header-search--opened .zak-search-field-label .zak-icon--search {
	display: block;
}

.zak-desktop-row.zak-header-search--opened .zak-search-field-label .zak-icon--search svg {
	fill: #FFF;
}

.zak-desktop-row.zak-header-search--opened .zak-icon--close {
	position: relative;
	display: block;
	background: unset;
	border: none;
	padding: 10px;
	z-index: 9999;
}

.zak-desktop-row.zak-header-search--opened .zak-icon--close:focus {
	outline: 1px solid #FFF;
}

.zak-desktop-row.zak-header-search--opened .zak-icon--close:active {
	outline: none;
}

.zak-desktop-row.zak-header-search--opened .zak-icon--close:before {
	content: "";
	position: absolute;
	top: 10px;
	right: 0;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: #FFF;
	transform: rotate(45deg);
	transition: all 0.3s ease-in-out;
}

.zak-desktop-row.zak-header-search--opened .zak-icon--close:after {
	content: "";
	position: absolute;
	top: 10px;
	right: 0;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: #FFF;
	transform: rotate(135deg);
	transition: all 0.3s ease-in-out;
}

.zak-desktop-row.zak-header-search--opened .zak-icon--close:hover {
	cursor: pointer;
}

.zak-desktop-row.zak-header-search--opened .zak-icon--close:hover:before {
	transform: rotate(0deg);
	transition: all 0.3s ease-in-out;
}

.zak-desktop-row.zak-header-search--opened .zak-icon--close:hover:after {
	transform: rotate(180deg);
	transition: all 0.3s ease-in-out;
}

.zak-secondary-nav {
	flex: 1;
	border-bottom: 0 solid #E4E4E7;
	margin-left: auto;
}

.zak-secondary-nav .zak-secondary-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: flex-start;
}

.zak-secondary-nav .zak-secondary-menu > li > a:hover {
	text-decoration: none;
}

.zak-secondary-nav .zak-secondary-menu > li:hover ul ul,
.zak-secondary-nav .zak-secondary-menu > li.focus ul ul {
	position: absolute;
	left: -999999px;
}

.zak-secondary-nav .zak-secondary-menu > li.zak-menu-item-cart {
	margin-right: 10px;
}

.zak-secondary-nav .zak-secondary-menu > li > ul.zak-edge {
	right: 0;
	left: auto;
}

.zak-secondary-nav .zak-secondary-menu ul li:hover ul ul,
.zak-secondary-nav .zak-secondary-menu ul ul li:hover ul ul,
.zak-secondary-nav .zak-secondary-menu ul li.focus ul ul,
.zak-secondary-nav .zak-secondary-menu ul ul li.focus ul ul {
	position: absolute;
	left: -999999px;
}

.zak-secondary-nav .zak-secondary-menu ul li:hover > ul,
.zak-secondary-nav .zak-secondary-menu ul li.focus > ul {
	left: 100%;
}

.zak-secondary-nav .zak-secondary-menu ul ul li:hover > ul,
.zak-secondary-nav .zak-secondary-menu ul ul ul li:hover > ul,
.zak-secondary-nav .zak-secondary-menu ul ul li.focus > ul,
.zak-secondary-nav .zak-secondary-menu ul ul ul li.focus > ul {
	left: 100%;
}

.zak-secondary-nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.zak-secondary-nav ul .current_page_ancestor > a,
.zak-secondary-nav ul .current-menu-ancestor > a,
.zak-secondary-nav ul .current_page_item > a,
.zak-secondary-nav ul .current-menu-item > a {
	color: #027ABB;
}

.zak-secondary-nav ul .menu-item-has-children,
.zak-secondary-nav ul .page_item_has_children {
	position: relative;
}

.zak-secondary-nav ul li:hover > ul,
.zak-secondary-nav ul li.focus > ul {
	left: 0;
}

.zak-secondary-nav li a {
	display: flex;
	flex: 1;
	justify-content: space-between;
	border: 0 solid #E4E4E7;
}

.zak-secondary-nav li ul,
.zak-secondary-nav li:hover ul ul,
.zak-secondary-nav li.focus ul ul {
	z-index: 99999;
	position: absolute;
	left: -999999px;
}

.zak-secondary-nav li:hover > ul,
.zak-secondary-nav li.focus > ul {
	left: auto;
}

.zak-secondary-nav .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	width: 240px;
	border: 1px solid #E4E4E7;
	background-color: #fff;
	border-radius: 4px;
}

.zak-secondary-nav .sub-menu li {
	border-bottom: 1px solid #F4F4F5;
}

.zak-secondary-nav .sub-menu li ul {
	top: -1px;
	left: 100%;
}

.zak-secondary-nav .sub-menu li:last-child {
	border-bottom: 0;
}

.zak-secondary-nav .sub-menu li.menu-item-has-children ul.zak-edge, .zak-secondary-nav .sub-menu li.page_item_has_children ul.zak-edge {
	left: -100%;
}

.zak-secondary-nav .sub-menu li a {
	padding: 14px 16px;
}

.zak-secondary-nav .sub-menu .zak-submenu-toggle {
	padding-left: 0;
	padding-top: 8px;
	transform: rotate(-90deg);
}

.zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a {
	position: relative;
}

.zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a::before, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a::before, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a::before, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a::before, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a::before, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a::before {
	content: "";
	position: absolute;
	background-color: #027ABB;
}

.zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a {
	position: relative;
}

.zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a:hover, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a:hover, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a:hover, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a:hover {
	text-decoration: none;
}

.zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a::before, .zak-secondary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a::before {
	height: 2px;
	width: 100%;
	bottom: 0;
}

.zak-secondary-nav.zak-layout-1-style-2 > ul a {
	position: relative;
}

.zak-secondary-nav.zak-layout-1-style-2 > ul a:hover::before {
	content: "";
	position: absolute;
	background-color: #027ABB;
	height: 2px;
	width: 100%;
	bottom: 0;
	left: 0;
}

.zak-secondary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a::before, .zak-secondary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a::before {
	width: 2px;
	height: 12px;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
}

.zak-secondary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a::before, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a::before, .zak-secondary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a::before {
	width: 2px;
	height: 12px;
	top: 50%;
	left: auto;
	right: -5px;
	transform: translateY(-50%);
}

.zak-tertiary-nav {
	flex: 1;
	border-bottom: 0 solid #E4E4E7;
	margin-left: auto;
}

.zak-tertiary-nav .zak-tertiary-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: flex-start;
}

.zak-tertiary-nav .zak-tertiary-menu > li > a:hover {
	text-decoration: none;
}

.zak-tertiary-nav .zak-tertiary-menu > li:hover ul ul,
.zak-tertiary-nav .zak-tertiary-menu > li.focus ul ul {
	position: absolute;
	left: -999999px;
}

.zak-tertiary-nav .zak-tertiary-menu > li.zak-menu-item-cart {
	margin-right: 10px;
}

.zak-tertiary-nav .zak-tertiary-menu > li > ul.zak-edge {
	right: 0;
	left: auto;
}

.zak-tertiary-nav .zak-tertiary-menu ul li:hover ul ul,
.zak-tertiary-nav .zak-tertiary-menu ul ul li:hover ul ul,
.zak-tertiary-nav .zak-tertiary-menu ul li.focus ul ul,
.zak-tertiary-nav .zak-tertiary-menu ul ul li.focus ul ul {
	position: absolute;
	left: -999999px;
}

.zak-tertiary-nav .zak-tertiary-menu ul li:hover > ul,
.zak-tertiary-nav .zak-tertiary-menu ul li.focus > ul {
	left: 100%;
}

.zak-tertiary-nav .zak-tertiary-menu ul ul li:hover > ul,
.zak-tertiary-nav .zak-tertiary-menu ul ul ul li:hover > ul,
.zak-tertiary-nav .zak-tertiary-menu ul ul li.focus > ul,
.zak-tertiary-nav .zak-tertiary-menu ul ul ul li.focus > ul {
	left: 100%;
}

.zak-tertiary-nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.zak-tertiary-nav ul .current_page_ancestor > a,
.zak-tertiary-nav ul .current-menu-ancestor > a,
.zak-tertiary-nav ul .current_page_item > a,
.zak-tertiary-nav ul .current-menu-item > a {
	color: #027ABB;
}

.zak-tertiary-nav ul .menu-item-has-children,
.zak-tertiary-nav ul .page_item_has_children {
	position: relative;
}

.zak-tertiary-nav ul li:hover > ul,
.zak-tertiary-nav ul li.focus > ul {
	left: 0;
}

.zak-tertiary-nav li a {
	display: flex;
	flex: 1;
	justify-content: space-between;
	border: 0 solid #E4E4E7;
}

.zak-tertiary-nav li ul,
.zak-tertiary-nav li:hover ul ul,
.zak-tertiary-nav li.focus ul ul {
	z-index: 99999;
	position: absolute;
	left: -999999px;
}

.zak-tertiary-nav li:hover > ul,
.zak-tertiary-nav li.focus > ul {
	left: auto;
}

.zak-tertiary-nav .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	width: 240px;
	border: 1px solid #E4E4E7;
	background-color: #fff;
	border-radius: 4px;
}

.zak-tertiary-nav .sub-menu li {
	border-bottom: 1px solid #F4F4F5;
}

.zak-tertiary-nav .sub-menu li ul {
	top: -1px;
	left: 100%;
}

.zak-tertiary-nav .sub-menu li:last-child {
	border-bottom: 0;
}

.zak-tertiary-nav .sub-menu li.menu-item-has-children ul.zak-edge, .zak-tertiary-nav .sub-menu li.page_item_has_children ul.zak-edge {
	left: -100%;
}

.zak-tertiary-nav .sub-menu li a {
	padding: 14px 16px;
}

.zak-tertiary-nav .sub-menu .zak-submenu-toggle {
	padding-left: 0;
	padding-top: 8px;
	transform: rotate(-90deg);
}

.zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a {
	position: relative;
}

.zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a::before, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a::before, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a::before, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a::before, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a::before, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a::before {
	content: "";
	position: absolute;
	background-color: #027ABB;
}

.zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a {
	position: relative;
}

.zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a:hover, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a:hover, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a:hover, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a:hover {
	text-decoration: none;
}

.zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a::before, .zak-tertiary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a::before {
	height: 2px;
	width: 100%;
	bottom: 0;
}

.zak-tertiary-nav.zak-layout-1-style-2 > ul a {
	position: relative;
}

.zak-tertiary-nav.zak-layout-1-style-2 > ul a:hover::before {
	content: "";
	position: absolute;
	background-color: #027ABB;
	height: 2px;
	width: 100%;
	bottom: 0;
	left: 0;
}

.zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a::before, .zak-tertiary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a::before {
	width: 2px;
	height: 12px;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
}

.zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a::before, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a::before, .zak-tertiary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a::before {
	width: 2px;
	height: 12px;
	top: 50%;
	left: auto;
	right: -5px;
	transform: translateY(-50%);
}

.zak-quaternary-nav {
	flex: 1;
	border-bottom: 0 solid #E4E4E7;
	margin-left: auto;
}

.zak-quaternary-nav .zak-tertiary-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: flex-start;
}

.zak-quaternary-nav .zak-tertiary-menu > li > a:hover {
	text-decoration: none;
}

.zak-quaternary-nav .zak-tertiary-menu > li:hover ul ul,
.zak-quaternary-nav .zak-tertiary-menu > li.focus ul ul {
	position: absolute;
	left: -999999px;
}

.zak-quaternary-nav .zak-tertiary-menu > li.zak-menu-item-cart {
	margin-right: 10px;
}

.zak-quaternary-nav .zak-tertiary-menu > li > ul.zak-edge {
	right: 0;
	left: auto;
}

.zak-quaternary-nav .zak-tertiary-menu ul li:hover ul ul,
.zak-quaternary-nav .zak-tertiary-menu ul ul li:hover ul ul,
.zak-quaternary-nav .zak-tertiary-menu ul li.focus ul ul,
.zak-quaternary-nav .zak-tertiary-menu ul ul li.focus ul ul {
	position: absolute;
	left: -999999px;
}

.zak-quaternary-nav .zak-tertiary-menu ul li:hover > ul,
.zak-quaternary-nav .zak-tertiary-menu ul li.focus > ul {
	left: 100%;
}

.zak-quaternary-nav .zak-tertiary-menu ul ul li:hover > ul,
.zak-quaternary-nav .zak-tertiary-menu ul ul ul li:hover > ul,
.zak-quaternary-nav .zak-tertiary-menu ul ul li.focus > ul,
.zak-quaternary-nav .zak-tertiary-menu ul ul ul li.focus > ul {
	left: 100%;
}

.zak-quaternary-nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.zak-quaternary-nav ul .current_page_ancestor > a,
.zak-quaternary-nav ul .current-menu-ancestor > a,
.zak-quaternary-nav ul .current_page_item > a,
.zak-quaternary-nav ul .current-menu-item > a {
	color: #027ABB;
}

.zak-quaternary-nav ul .menu-item-has-children,
.zak-quaternary-nav ul .page_item_has_children {
	position: relative;
}

.zak-quaternary-nav ul li:hover > ul,
.zak-quaternary-nav ul li.focus > ul {
	left: 0;
}

.zak-quaternary-nav li a {
	display: flex;
	flex: 1;
	justify-content: space-between;
	border: 0 solid #E4E4E7;
}

.zak-quaternary-nav li ul,
.zak-quaternary-nav li:hover ul ul,
.zak-quaternary-nav li.focus ul ul {
	z-index: 99999;
	position: absolute;
	left: -999999px;
}

.zak-quaternary-nav li:hover > ul,
.zak-quaternary-nav li.focus > ul {
	left: auto;
}

.zak-quaternary-nav .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	width: 240px;
	border: 1px solid #E4E4E7;
	background-color: #fff;
	border-radius: 4px;
}

.zak-quaternary-nav .sub-menu li {
	border-bottom: 1px solid #F4F4F5;
}

.zak-quaternary-nav .sub-menu li ul {
	top: -1px;
	left: 100%;
}

.zak-quaternary-nav .sub-menu li:last-child {
	border-bottom: 0;
}

.zak-quaternary-nav .sub-menu li.menu-item-has-children ul.zak-edge, .zak-quaternary-nav .sub-menu li.page_item_has_children ul.zak-edge {
	left: -100%;
}

.zak-quaternary-nav .sub-menu li a {
	padding: 14px 16px;
}

.zak-quaternary-nav .sub-menu .zak-submenu-toggle {
	padding-left: 0;
	padding-top: 8px;
	transform: rotate(-90deg);
}

.zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a {
	position: relative;
}

.zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a::before, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a::before, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a::before, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a::before, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a::before, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a::before {
	content: "";
	position: absolute;
	background-color: #027ABB;
}

.zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a {
	position: relative;
}

.zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a:hover, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a:hover, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a:hover, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a:hover {
	text-decoration: none;
}

.zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a::before, .zak-quaternary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a::before {
	height: 2px;
	width: 100%;
	bottom: 0;
}

.zak-quaternary-nav.zak-layout-1-style-2 > ul a {
	position: relative;
}

.zak-quaternary-nav.zak-layout-1-style-2 > ul a:hover::before {
	content: "";
	position: absolute;
	background-color: #027ABB;
	height: 2px;
	width: 100%;
	bottom: 0;
	left: 0;
}

.zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a::before, .zak-quaternary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a::before {
	width: 2px;
	height: 12px;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
}

.zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a::before, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a::before, .zak-quaternary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a::before {
	width: 2px;
	height: 12px;
	top: 50%;
	left: auto;
	right: -5px;
	transform: translateY(-50%);
}

.zak-submenu-toggle {
	display: flex;
	align-items: center;
	padding-left: 8px;
	cursor: pointer;
}

.zak-footer-builder p {
	padding-bottom: 0;
}

.zak-footer-builder .zak-row {
	display: block;
}

.zak-footer-builder .wp-block-social-links {
	display: flex;
	flex-direction: row;
}

.zak-footer-builder .widget ul a {
	color: #FFF;
	text-decoration: none;
}

.zak-footer-builder .zak-footer-top-row,
.zak-footer-builder .zak-footer-main-row,
.zak-footer-builder .zak-footer-bottom-row {
	border: 0 solid;
}

.zak-footer-builder .zak-footer-top-row .widget .wp-block-heading, .zak-footer-builder .zak-footer-top-row .widget .widget-title,
.zak-footer-builder .zak-footer-main-row .widget .wp-block-heading,
.zak-footer-builder .zak-footer-main-row .widget .widget-title,
.zak-footer-builder .zak-footer-bottom-row .widget .wp-block-heading,
.zak-footer-builder .zak-footer-bottom-row .widget .widget-title {
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid #E4E4E7;
}

.zak-footer-builder .zak-footer-top-row .widget .wp-block-heading::before, .zak-footer-builder .zak-footer-top-row .widget .widget-title::before,
.zak-footer-builder .zak-footer-main-row .widget .wp-block-heading::before,
.zak-footer-builder .zak-footer-main-row .widget .widget-title::before,
.zak-footer-builder .zak-footer-bottom-row .widget .wp-block-heading::before,
.zak-footer-builder .zak-footer-bottom-row .widget .widget-title::before {
	position: absolute;
	display: block;
	bottom: -1px;
	content: " ";
	left: 0;
	width: 30px;
	height: 1px;
	background-color: #027ABB;
}

.zak-footer-builder .zak-footer-top-row h2,
.zak-footer-builder .zak-footer-main-row h2,
.zak-footer-builder .zak-footer-bottom-row h2 {
	color: #FAFAFA;
	margin-bottom: 16px;
}

.zak-footer-builder .zak-footer-top-row ul li,
.zak-footer-builder .zak-footer-main-row ul li,
.zak-footer-builder .zak-footer-bottom-row ul li {
	border: 0 solid #3F3F46;
}

.zak-footer-builder .zak-footer-main-row {
	padding-top: 40px;
	padding-bottom: 40px;
}

.zak-footer-builder .zak-footer-top-row {
	padding-top: 40px;
}

.zak-footer-builder .zak-footer-top-row .widget:only-child .textwidget {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.zak-footer-builder .zak-footer-bottom-row {
	border-top: 1px solid #3F3F46;
	padding-bottom: 24px;
	padding-top: 24px;
}

.zak-footer-builder .zak-main-row {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(var(--main-grid-columns, 4), 1fr);
	border: 0 solid;
}

.zak-footer-builder .zak-main-row .zak-footer-main-1-col,
.zak-footer-builder .zak-main-row .zak-footer-main-2-col,
.zak-footer-builder .zak-main-row .zak-footer-main-3-col,
.zak-footer-builder .zak-main-row .zak-footer-main-4-col,
.zak-footer-builder .zak-main-row .zak-footer-main-5-col,
.zak-footer-builder .zak-main-row .zak-footer-main-6-col {
	display: flex;
	gap: 8px;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
}

.zak-footer-builder .zak-top-row {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(var(--top-grid-columns, 4), 1fr);
	border: 0 solid;
}

.zak-footer-builder .zak-top-row .zak-footer-top-1-col,
.zak-footer-builder .zak-top-row .zak-footer-top-2-col,
.zak-footer-builder .zak-top-row .zak-footer-top-3-col,
.zak-footer-builder .zak-top-row .zak-footer-top-4-col,
.zak-footer-builder .zak-top-row .zak-footer-top-5-col,
.zak-footer-builder .zak-top-row .zak-footer-top-6-col {
	display: flex;
	gap: 8px;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
}

.zak-footer-builder .zak-bottom-row {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(var(--bottom-grid-columns, 1), 1fr);
	justify-items: center;
	border: 0 solid;
}

.zak-footer-builder .zak-bottom-row .zak-footer-bottom-1-col,
.zak-footer-builder .zak-bottom-row .zak-footer-bottom-2-col,
.zak-footer-builder .zak-bottom-row .zak-footer-bottom-3-col,
.zak-footer-builder .zak-bottom-row .zak-footer-bottom-4-col,
.zak-footer-builder .zak-bottom-row .zak-footer-bottom-5-col,
.zak-footer-builder .zak-bottom-row .zak-footer-bottom-6-col {
	display: flex;
	gap: 8px;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
}

.zak-footer-builder .zak-mobile-row {
	display: none;
}

.zak-footer-builder .zak-mobile-nav > div > ul {
	padding-top: 0;
	border: none;
}

.zak-footer-builder .zak-desktop-row {
	position: relative;
}

.zak-footer-builder .zak-icon--close {
	background: transparent;
}

.zak-footer-builder .zak-desktop-row p,
.zak-footer-builder .zak-mobile-row p {
	margin-bottom: 0;
}

.zak-footer-builder .widget a {
	text-decoration: none;
}

.zak-footer-builder .widget .wp-block-heading,
.zak-footer-builder .widget .widget-title {
	border-bottom: none;
	padding-bottom: 0;
}

.zak-footer-builder .widget .wp-block-heading::before,
.zak-footer-builder .widget .widget-title::before {
	content: none;
}

.zak-footer-builder .zak-footer-top-1-col,
.zak-footer-builder .zak-footer-top-2-col,
.zak-footer-builder .zak-footer-top-3-col,
.zak-footer-builder .zak-footer-top-4-col {
	display: flex;
}

.zak-footer-builder .zak-footer-nav,
.zak-footer-builder .zak-footer-nav-2 {
	border: 0 solid;
}

.zak-footer-builder .zak-footer-nav ul,
.zak-footer-builder .zak-footer-nav-2 ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: flex-start;
	margin-bottom: 0;
	margin-left: 0;
}

.zak-footer-builder .zak-footer-nav ul li,
.zak-footer-builder .zak-footer-nav-2 ul li {
	list-style: none;
}

.zak-footer-builder .zak-mini-cart li {
	list-style: none;
}

.zak-footer-builder .zak-footer-nav ul li {
	list-style: none;
}

@media (max-width: 768px) {
	.zak-desktop-row {
		display: none;
	}
	.zak-mobile-row {
		display: block;
	}
	.zak-footer.zak-footer-builder .zak-footer-top-row {
		padding-bottom: 8px;
	}
	.zak-footer.zak-footer-builder .zak-footer-top-row .zak-top-row {
		gap: 0;
		grid-template-columns: 1fr;
	}
	.zak-footer.zak-footer-builder .zak-footer-main-row {
		padding: 8px 0;
	}
	.zak-footer.zak-footer-builder .zak-footer-main-row .zak-main-row {
		gap: 0;
		grid-template-columns: 1fr;
	}
	.zak-footer.zak-footer-builder .zak-footer-bottom-row {
		padding-top: 8px;
	}
	.zak-footer.zak-footer-builder .zak-footer-bottom-row .zak-bottom-row {
		gap: 0;
		grid-template-columns: 1fr;
	}
}

/*--------------------------------------------------------------
# Utilities.
--------------------------------------------------------------*/
/* AMP.
--------------------------------------------- */
.zak-mobile-nav li.menu-item-has-children .toggled-on + ul {
	max-height: 500px;
}

.zak-mobile-nav li.menu-item-has-children .zak-submenu-toggle.toggled-on::after {
	content: "-";
}

/* Accessibility.
--------------------------------------------- */
/*=============================================
=            Accesibility            =
=============================================*/
/* 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;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #E4E4E7;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #3F3F46;
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#zak-content[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments.
--------------------------------------------- */
/*=============================================
=            Alignments            =
=============================================*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.tg-flex-left {
	margin-right: auto;
}

.tg-flex-right {
	margin-left: auto;
}

.wp-block-gallery.alignleft, .wp-block-gallery.alignright, .wp-block-gallery.aligncenter,
.wp-block-social-links.alignleft,
.wp-block-social-links.alignright,
.wp-block-social-links.aligncenter {
	display: flex;
	flex-direction: row;
}

/* Infinite scroll.
--------------------------------------------- */
/*=============================================
=            Infinite Scroll            =
=============================================*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll .zak-numbered-pagination,
.infinite-scroll.neverending .zak-footer {
	display: none;
}

/*Display element when scroll ends. */
.infinity-end.neverending .zak-footer {
	display: block;
}

#infinite-handle span {
	border: 0 solid #E4E4E7;
	background-color: #027ABB;
	color: #FAFAFA;
	padding: 0.7rem 1rem;
}

#infinite-handle span:hover {
	background-color: #015989;
}

/* Clearings.
--------------------------------------------- */
/*=============================================
=            Clearings            =
=============================================*/
.clear::before,
.clear::after,
.entry-content::before,
.entry-content::after,
.comment-content::before,
.comment-content::after,
.zak-content::after {
	display: table;
	content: "";
}

.clear::after,
.entry-content::after,
.comment-content::after,
.zak-content::after {
	clear: both;
}

hr,
.wp-block-separator {
	background-color: #E4E4E7;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Components.
--------------------------------------------------------------*/
/* Site branding.
--------------------------------------------- */
.site-branding {
	display: flex;
	align-items: center;
	gap: 20px;
	overflow-wrap: anywhere;
}

.site-branding .zakra-mobile-logo {
	display: none;
}

.site-branding .mobile-custom-logo-link {
	align-items: flex-start;
}

.site-branding .custom-logo-link {
	display: flex;
	align-items: flex-start;
}

.site-title {
	color: #27272A;
	font-size: 4rem;
	font-weight: 600;
	line-height: 1.3;
}

.site-title a {
	color: inherit;
}

.site-title,
.site-description {
	margin: 0;
}

.site-description {
	font-size: 1.6rem;
}

/* Navigation.
--------------------------------------------- */
.zak-main-nav li {
	display: flex;
	flex-wrap: wrap;
	font-size:18px;
}

.zak-main-nav .zak-submenu-toggle {
	display: flex;
	align-items: center;
	padding-left: 8px;
	cursor: pointer;
}

.zak-main-nav .zak-submenu-toggle .zak-icon {
	width: 12px;
	height: 12px;
}

.zak-primary-nav {
	display: none;
	flex: 1;
	border-bottom: 0 solid #E4E4E7;
	margin-left: auto;
}

.zak-primary-nav .zak-primary-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: flex-start;
}

.zak-primary-nav .zak-primary-menu > li > a:hover {
	text-decoration: none;
}

.zak-primary-nav .zak-primary-menu > li:hover ul ul,
.zak-primary-nav .zak-primary-menu > li.focus ul ul {
	position: absolute;
	left: -999999px;
}

.zak-primary-nav .zak-primary-menu > li.zak-menu-item-cart {
	margin-right: 10px;
}

.zak-primary-nav .zak-primary-menu > li > ul.zak-edge {
	right: 0;
	left: auto;
}

.zak-primary-nav .zak-primary-menu ul li:hover ul ul,
.zak-primary-nav .zak-primary-menu ul ul li:hover ul ul,
.zak-primary-nav .zak-primary-menu ul li.focus ul ul,
.zak-primary-nav .zak-primary-menu ul ul li.focus ul ul {
	position: absolute;
	left: -999999px;
}

.zak-primary-nav .zak-primary-menu ul li:hover > ul,
.zak-primary-nav .zak-primary-menu ul li.focus > ul {
	left: 100%;
}

.zak-primary-nav .zak-primary-menu ul ul li:hover > ul,
.zak-primary-nav .zak-primary-menu ul ul ul li:hover > ul,
.zak-primary-nav .zak-primary-menu ul ul li.focus > ul,
.zak-primary-nav .zak-primary-menu ul ul ul li.focus > ul {
	left: 100%;
}

.zak-primary-nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.zak-primary-nav ul .current_page_ancestor > a,
.zak-primary-nav ul .current-menu-ancestor > a,
.zak-primary-nav ul .current_page_item > a,
.zak-primary-nav ul .current-menu-item > a {
	color: #027ABB;
}

.zak-primary-nav ul .menu-item-has-children,
.zak-primary-nav ul .page_item_has_children {
	position: relative;
}

.zak-primary-nav ul li:hover > ul,
.zak-primary-nav ul li.focus > ul {
	left: 0;
}

.zak-primary-nav li a {
	display: flex;
	flex: 1;
	justify-content: space-between;
	border: 0 solid #E4E4E7;
}

.zak-primary-nav li ul,
.zak-primary-nav li:hover ul ul,
.zak-primary-nav li.focus ul ul {
	z-index: 99999;
	position: absolute;
	left: -999999px;
}

.zak-primary-nav li:hover > ul,
.zak-primary-nav li.focus > ul {
	left: auto;
}

.zak-primary-nav .sub-menu {
	display: block;
	position: absolute;
	top: 100%;
	width: 240px;
	border: 1px solid #E4E4E7;
	background-color: #fff;
	border-radius: 4px;
}

.zak-primary-nav .sub-menu li {
	border-bottom: 1px solid #F4F4F5;
}

.zak-primary-nav .sub-menu li ul {
	top: -1px;
	left: 100%;
}

.zak-primary-nav .sub-menu li:last-child {
	border-bottom: 0;
}

.zak-primary-nav .sub-menu li.menu-item-has-children ul.zak-edge, .zak-primary-nav .sub-menu li.page_item_has_children ul.zak-edge {
	left: -100%;
}

.zak-primary-nav .sub-menu li a {
	padding: 14px 16px;
}

.zak-primary-nav .sub-menu .zak-submenu-toggle {
	padding-left: 0;
	padding-top: 8px;
	transform: rotate(-90deg);
}

.zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a {
	position: relative;
}

.zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a::before, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a::before, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a::before, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a::before, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a::before, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a::before, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a::before, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a::before, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a::before, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a::before, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a::before, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a::before {
	content: "";
	position: absolute;
	background-color: #027ABB;
}

.zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a {
	position: relative;
}

.zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a:hover, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a:hover, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a:hover, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a:hover {
	text-decoration: none;
}

.zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_ancestor > a::before, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-ancestor > a::before, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current_page_item > a::before, .zak-primary-nav.zak-layout-1-style-2 > ul > li.current-menu-item > a::before {
	height: 2px;
	width: 100%;
	bottom: 0;
}

.zak-primary-nav.zak-layout-1-style-2 > ul a {
	position: relative;
}

.zak-primary-nav.zak-layout-1-style-2 > ul a:hover::before {
	content: "";
	position: absolute;
	background-color: #027ABB;
	height: 2px;
	width: 100%;
	bottom: 0;
	left: 0;
}

.zak-primary-nav.zak-layout-1-style-3 > ul > li.current_page_ancestor > a::before, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current-menu-ancestor > a::before, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current_page_item > a::before, .zak-primary-nav.zak-layout-1-style-3 > ul > li.current-menu-item > a::before {
	width: 2px;
	height: 12px;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
}

.zak-primary-nav.zak-layout-1-style-4 > ul > li.current_page_ancestor > a::before, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current-menu-ancestor > a::before, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current_page_item > a::before, .zak-primary-nav.zak-layout-1-style-4 > ul > li.current-menu-item > a::before {
	width: 2px;
	height: 12px;
	top: 50%;
	left: auto;
	right: -5px;
	transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
	.zak-primary-nav {
		display: flex;
		justify-content: flex-end;
	}
}

.zak-primary-nav > ul > li.zak-menu-extras-wrap {
	display: flex;
	align-items: center;
}

.zak-primary-nav > ul > li.zak-menu-extras-wrap .submenu-expand {
	cursor: pointer;
	width: 28px;
	height: 28px;
	padding: 0;
	text-align: center;
}

/* Toggle button. */
.zak-toggle-menu {
	display: flex;
	margin-left: 20px;
}

.zak-toggle-menu .zak-menu-toggle {
	padding: 0 2px;
	border: none;
	color: inherit;
	background: initial;
	line-height: normal;
}

.zak-toggle-menu .zak-menu-toggle:hover {
	background-color: transparent;
}

.zak-layout-1-style-2 .zak-toggle-menu,
.zak-layout-1-style-3 .zak-toggle-menu {
	margin-left: 0;
}

.zak-toggle-menu .zak-icon {
	width: 28px;
	height: 28px;
	fill: #3F3F46;
}

@media screen and (min-width: 768px) {
	.zak-toggle-menu {
		display: none;
	}
}

/* Mobile navigation. */
.zak-mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	transform: translateY(-100%);
	padding: 1.75em 1em;
	background-color: #27272A;
	color: #FAFAFA;
	transition: 0.35s transform ease, 0.35s visibility ease, 0.35s opacity ease;
	max-height: 100vh;
	overflow-y: auto;
}

.zak-mobile-nav .zak-icon {
	fill: #FAFAFA;
}

.zak-mobile-nav--opened {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	width: 100%;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

.zak-mobile-nav ul {
	padding: 0;
	margin: 0;
}

.zak-mobile-nav li {
	position: relative;
	list-style-type: none;
}

.zak-mobile-nav li.zak-menu-extras-wrap {
	display: none;
}

.zak-mobile-nav .zak-header-actions {
	margin-left: 14px;
	margn-top: 14px;
}

.zak-mobile-nav > div {
	/* Top level ul. */
}

.zak-mobile-nav > div > ul {
	border-top: 0.5px solid #D4D4D8;
	padding-top: 1em;
}

.zak-mobile-menu li {
	border-bottom: 1px solid #3F3F46;
}

.zak-mobile-menu li:last-child {
	border-bottom: none;
}

.zak-mobile-menu a {
	display: flex;
	flex-grow: 1;
	justify-content: space-between;
	padding: 14px 16px;
	color: #FAFAFA;
	word-break: break-word;
	-webkit-hyphens: auto;
	hyphens: auto;
}

.zak-mobile-menu .page_item_has_children,
.zak-mobile-menu .menu-item-has-children {
	position: relative;
}

.zak-mobile-menu .page_item_has_children .sub-menu,
.zak-mobile-menu .menu-item-has-children .sub-menu {
	flex-basis: 100%;
	visibility: hidden;
	overflow: hidden;
	max-height: 0;
	border-top: 1px solid #3F3F46;
	transition: all 0.5s ease-out;
}

.zak-mobile-menu .page_item_has_children .sub-menu li .sub-menu,
.zak-mobile-menu .menu-item-has-children .sub-menu li .sub-menu {
	padding-left: 16px;
}

.zak-mobile-menu .page_item_has_children .sub-menu li .sub-menu a,
.zak-mobile-menu .menu-item-has-children .sub-menu li .sub-menu a {
	padding-left: 30px;
}

.zak-mobile-menu .page_item_has_children .sub-menu a,
.zak-mobile-menu .menu-item-has-children .sub-menu a {
	padding-left: 30px;
}

.zak-mobile-menu .submenu--show > .zak-submenu-toggle .zak-icon {
	transform: rotate(180deg);
}

.zak-mobile-menu .submenu--show + .sub-menu,
.zak-mobile-menu .submenu--show > .sub-menu {
	max-height: 500px;
	visibility: visible;
	overflow-y: auto;
}

.zak-mobile-menu .submenu--show + .sub-menu::-webkit-scrollbar,
.zak-mobile-menu .submenu--show > .sub-menu::-webkit-scrollbar {
	width: 4px;
}

.zak-mobile-menu .submenu--show + .sub-menu::-webkit-scrollbar-track,
.zak-mobile-menu .submenu--show > .sub-menu::-webkit-scrollbar-track {
	background: #E4E4E7;
}

.zak-mobile-menu .submenu--show + .sub-menu::-webkit-scrollbar-thumb,
.zak-mobile-menu .submenu--show > .sub-menu::-webkit-scrollbar-thumb {
	background-color: #52525B;
	border-radius: 5px;
}

.zak-mobile-menu .submenu--show + .sub-menu .submenu--show > .zak-submenu-toggle .zak-icon,
.zak-mobile-menu .submenu--show > .sub-menu .submenu--show > .zak-submenu-toggle .zak-icon {
	transform: rotate(180deg);
}

.zak-mobile-menu .current_page_item a {
	text-decoration: underline;
}

.zak-mobile-nav__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 30px;
	/* Search field */
}

.zak-mobile-nav__header .zak-header-search {
	flex: 1;
}

.zak-mobile-nav__header .zak-header-search a {
	display: none;
}

.zak-mobile-nav__header .zak-mobile-nav-close {
	position: absolute;
	top: 16px;
	right: 16px;
	padding: unset;
	border: unset;
	color: unset;
	background-color: unset;
	cursor: pointer;
	text-align: center;
}

.zak-mobile-nav__header .zak-mobile-nav-close .zak-icon {
	width: 24px;
	height: 24px;
}

.zak-mobile-nav__header .zak-search-container {
	display: block;
	width: 80%;
	padding-bottom: 12px;
	border-bottom: 1px solid #A1A1AA;
}

.zak-mobile-nav__header .zak-search-container .zak-icon {
	width: 20px;
	height: 20px;
}

.zak-mobile-nav__header .zak-search-form .zak-search-field {
	padding: 0;
	line-height: 1.8;
	color: #FFF;
}

/* Overlay. */
.zak-overlay-wrapper {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.05);
	display: none;
}

.zak-overlay-wrapper.overlay-show {
	display: none;
}

.zak-footer-bar .menu {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	margin: 0;
}

.zak-footer-bar .menu li a {
	padding: 0 0.5em;
}

/* Post Navigation */
.posts-navigation,
.post-navigation {
	margin-top: 40px;
	padding: 20px 0;
	border-bottom: 1px solid #E4E4E7;
	border-top: 1px solid #E4E4E7;
}

.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	word-break: break-all;
}

.posts-navigation .nav-links a,
.post-navigation .nav-links a {
	vertical-align: middle;
}

.posts-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-previous {
	flex-basis: 50%;
}

.posts-navigation .nav-links .nav-previous a::before,
.post-navigation .nav-links .nav-previous a::before {
	margin-right: 0.5rem;
	font-family: "themegrill-icons" !important;
	vertical-align: middle;
	content: "\f102";
}

.posts-navigation .nav-links .nav-next,
.post-navigation .nav-links .nav-next {
	flex-basis: 50%;
	text-align: right;
}

.posts-navigation .nav-links .nav-next a::after,
.post-navigation .nav-links .nav-next a::after {
	margin-left: 0.5rem;
	font-family: "themegrill-icons" !important;
	vertical-align: middle;
	content: "\f103";
}

@media screen and (min-width: 768px) {
	.posts-navigation .nav-links,
	.post-navigation .nav-links {
		flex-direction: row;
	}
}

/* Header actions.
--------------------------------------------- */
.zak-header-actions {
	display: none;
	margin-left: 40px;
}

.zak-mobile-nav .zak-header-actions {
	display: block;
}

.zak-mobile-nav .zak-header-actions .zak-header-search {
	display: none;
}

.zak-header-actions .zak-header-actions {
	list-style-type: none;
	display: flex;
	margin: 0;
}

.zak-header-actions .zak-header-actions > li {
	margin: 1em;
}

.zak-header-actions .zak-header-actions > li:last-child {
	margin-right: 0;
}

.zak-header-actions .zak-icon--close {
	display: none;
}

.zak-header-actions li {
	list-style: none;
}

.zak-header-search {
	cursor: pointer;
}

.zak-header-search .zak-search-container {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 10px;
	visibility: hidden;
	width: 90%;
	align-items: center;
	justify-content: center;
}

.zak-header-search .zak-search-container .zak-icon--search {
	display: none;
}

.zak-header-search svg {
	height: 20px;
	width: 20px;
}

.zak-mini-cart .zak-icon {
	width: 20px;
	height: 20px;
}

/* Mini cart. */
.zak-menu-item-cart .cart-page-link, .zak-menu-item-cart .zak-cart-link {
	position: relative;
	display: block;
}

.zak-menu-item-cart .cart-page-link .zakra-icon--cart, .zak-menu-item-cart .zak-cart-link .zakra-icon--cart {
	width: 20px;
	height: 20px;
}

.zak-menu-item-cart .cart-page-link .count, .zak-menu-item-cart .zak-cart-link .count {
	display: flex;
	font-size: 10px;
	width: 16px;
	height: 16px;
	background-color: #027ABB;
	color: #FAFAFA;
	position: absolute;
	top: -5px;
	right: -10px;
	border-radius: 50%;
	text-align: center;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 768px) {
	.zak-header .zak-main-header.zak-header-search--opened {
		background: #27272A;
	}
	.zak-header-search--opened .zak-container .zak-header-col.zak-header-col--2 {
		background: none;
		border: none;
	}
	.zak-header-search--opened .zak-main-nav,
	.zak-header-search--opened .zak-primary-nav,
	.zak-header-search--opened .site-branding,
	.zak-header-search--opened .zak-header-col--1 {
		visibility: hidden;
		opacity: 0;
	}
	.zak-header-search--opened .zak-search-container {
		display: flex;
		width: 100%;
		z-index: 9999;
		visibility: visible;
		transition: all 0.3s ease-in-out;
	}
	.zak-header-search--opened .zak-header-buttons {
		display: none;
	}
	.zak-header-search--opened .yith-wcwl-items-count {
		display: none;
	}
	.zak-header-search--opened .zak-header-search__toggle {
		display: none;
	}
	.zak-header-search--opened .zak-header-action li {
		display: none;
	}
	.zak-header-search--opened .zak-search-field-label input {
		color: #FFF;
		padding: 0.7rem 0;
		background-color: inherit;
	}
	.zak-header-search--opened .zak-search-field-label input:focus {
		color: #FFF;
	}
	.zak-header-search--opened .zak-search-field-label input:-webkit-autofill,
	.zak-header-search--opened .zak-search-field-label input:-webkit-autofill:focus {
		-webkit-transition: background-color 600000s 0s, color 600000s 0s;
		transition: background-color 600000s 0s, color 600000s 0s;
	}
	.zak-header-search--opened .zak-search-field-label input[data-autocompleted] {
		background-color: transparent !important;
	}
	.zak-header-search--opened .zak-search-field-label .zak-icon--search {
		display: block;
	}
	.zak-header-search--opened .zak-search-field-label .zak-icon--search svg {
		fill: #FFF;
	}
	.zak-header-search--opened .zak-icon--close {
		position: relative;
		display: block;
		background: unset;
		border: none;
		padding: 10px;
		z-index: 9999;
	}
	.zak-header-search--opened .zak-icon--close:focus {
		outline: 1px solid #FFF;
	}
	.zak-header-search--opened .zak-icon--close:active {
		outline: none;
	}
	.zak-header-search--opened .zak-icon--close:before {
		content: "";
		position: absolute;
		top: 10px;
		right: 0;
		width: 20px;
		height: 2px;
		border-radius: 2px;
		background: #FFF;
		transform: rotate(45deg);
		transition: all 0.3s ease-in-out;
	}
	.zak-header-search--opened .zak-icon--close:after {
		content: "";
		position: absolute;
		top: 10px;
		right: 0;
		width: 20px;
		height: 2px;
		border-radius: 2px;
		background: #FFF;
		transform: rotate(135deg);
		transition: all 0.3s ease-in-out;
	}
	.zak-header-search--opened .zak-icon--close:hover {
		cursor: pointer;
	}
	.zak-header-search--opened .zak-icon--close:hover:before {
		transform: rotate(0deg);
		transition: all 0.3s ease-in-out;
	}
	.zak-header-search--opened .zak-icon--close:hover:after {
		transform: rotate(180deg);
		transition: all 0.3s ease-in-out;
	}
	.zak-header-actions {
		display: flex;
		align-items: center;
		gap: 16px;
	}
	.zak-header-actions li {
		align-items: center;
	}
}

/* Search.
--------------------------------------------- */
.zak-search-form {
	position: unset;
	display: block;
	width: 100%;
}

.zak-search-form .zak-search-submit {
	display: none;
}

.zak-search-form .zak-search-field-label {
	display: flex;
	align-items: center;
	gap: 16px;
	width: -moz-fit-content;
	width: fit-content;
	margin-bottom: 0;
	position: relative;
}

.zak-search-form .zak-search-field {
	border: 0;
	background-color: #27272A;
	color: #3F3F46;
	opacity: 0.9;
}

.zak-search-form .zak-search-field:focus {
	color: #FFF;
}

.zak-search-form input:-webkit-autofill,
.zak-search-form input:-webkit-autofill:focus {
	-webkit-transition: background-color 600000s 0s, color 600000s 0s;
	transition: background-color 600000s 0s, color 600000s 0s;
}

.zak-search-form input[data-autocompleted] {
	background-color: transparent !important;
}

/* Header buttons.
--------------------------------------------- */
/* Desktop & mobile header buttons */
.zak-header-buttons .zak-header-button .zak-button {
	display: block;
	text-align: center;
	border: 1px solid #027ABB;
}

.zak-header-buttons .zak-header-button .zak-button:hover {
	color: #027ABB;
	border: 1px solid #027ABB;
}

.zak-header-buttons .zak-header-button--2 .zak-button {
	background: transparent;
	border: 1px solid #027ABB;
	color: #027ABB;
}

/* Desktop header buttons. */
.zak-header-buttons--desktop {
	display: none;
	margin-left: 24px;
}

/* Mobile header buttons. */
.zak-mobile-nav .zak-header-buttons {
	display: block;
	margin-top: 18px;
}

.zak-mobile-nav .zak-icon--close {
	display: none;
}

@media screen and (min-width: 768px) {
	.zak-header-buttons {
		display: flex;
		align-items: center;
		gap: 24px;
	}
	.zak-header-buttons .zak-button:hover {
		color: #027ABB;
		border-color: #027ABB;
	}
}

/* Header media.
--------------------------------------------- */
.wp-custom-header {
	position: relative;
}

.wp-custom-header img {
	margin: 0 auto;
	width: 100%;
	vertical-align: middle;
}

.wp-custom-header iframe#wp-custom-header-video {
	width: 100%;
}

.wp-custom-header video#wp-custom-header-video {
	display: block;
	margin: 0 auto;
	overflow: hidden;
	max-width: 100%;
	height: auto;
}

.wp-custom-header:hover .wp-custom-header-video-button {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.wp-custom-header .wp-custom-header-video-button {
	position: absolute;
	top: calc( 50% - 30px);
	left: calc( 50% - 30px);
	z-index: 9999;
	height: 60px;
	width: 70px;
	padding: 10px;
	text-align: center;
	font-size: 18px;
	border: none;
	outline: none;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
	transition: box-shadow 0.35s, opacity 0.35s, visibility 0.35s, transform 0.35s;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}

.wp-custom-header .wp-custom-header-video-button:hover {
	box-shadow: 0 0 75px rgba(0, 0, 0, 0.8);
}

/* Page header.
--------------------------------------------- */
.zak-page-header {
	padding: 30px 0;
	background-color: #E4E4E7;
}

.zak-page-header .zak-archive-description {
	display: none;
}

.zak-page-header .zak-row {
	align-items: center;
	gap: 20px;
}

.zak-page-header .zak-page-title {
	margin-bottom: 0;
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.3;
}

.zak-page-header.zak-style-1 .zak-page-title {
	margin-right: auto;
}

.zak-page-header.zak-style-1 .breadcrumbs {
	margin-left: auto;
}

.zak-page-header.zak-style-3 .zak-row {
	flex-direction: column;
}

.zak-page-header.zak-style-3 .zak-page-title {
	text-align: center;
}

.zak-page-header.zak-style-2 .zak-page-header__title {
	order: 2;
	margin-left: auto;
}

.zak-page-header.zak-style-2 .breadcrumbs {
	order: 1;
	margin-right: auto;
}

.zak-page-header.zak-style-4 .zak-row {
	flex-direction: column;
	align-content: flex-start;
	align-items: flex-start;
}

.zak-page-header.zak-style-5 .zak-row {
	flex-direction: column;
	align-content: flex-end;
	align-items: flex-end;
}

body:not(.has-page-header) .zak-page-header {
	padding: 30px 0;
	background-color: #E4E4E7;
}

body:not(.has-page-header) .zak-page-header .zak-row {
	align-items: center;
	gap: 20px;
}

body:not(.has-page-header) .zak-page-header .zak-page-title {
	margin-bottom: 0;
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.3;
}

body:not(.has-page-header) .zak-page-header.zak-style-1 .zak-page-title {
	margin-right: auto;
}

body:not(.has-page-header) .zak-page-header.zak-style-1 .zak-row {
	flex-direction: row-reverse;
}

body:not(.has-page-header) .zak-page-header.zak-style-3 .zak-row {
	flex-direction: column;
}

body:not(.has-page-header) .zak-page-header.zak-style-3 .zak-page-title {
	text-align: center;
}

body:not(.has-page-header) .zak-page-header.zak-style-2 .zak-page-header__title {
	order: 2;
	margin-left: auto;
}

body:not(.has-page-header) .zak-page-header.zak-style-2 .breadcrumbs {
	order: 1;
	margin-right: auto;
}

body:not(.has-page-header) .zak-page-header.zak-style-4 .zak-row {
	flex-direction: column;
	align-content: flex-start;
	align-items: flex-start;
}

body:not(.has-page-header) .zak-page-header.zak-style-5 .zak-row {
	flex-direction: column;
	align-content: flex-end;
	align-items: flex-end;
}

.zak-breadcrumbs .trail-items,
.breadcrumbs .trail-items {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	list-style-type: none;
}

.zak-breadcrumbs .trail-items li::after,
.breadcrumbs .trail-items li::after {
	content: '/';
	margin: 0 4px;
}

.zak-breadcrumbs .trail-items li:last-child::after,
.breadcrumbs .trail-items li:last-child::after {
	content: none;
}

.zak-breadcrumbs .trail-items a,
.breadcrumbs .trail-items a {
	color: #027ABB;
	text-decoration: underline;
}

.zak-breadcrumbs .trail-items a:hover,
.breadcrumbs .trail-items a:hover {
	text-decoration: none;
}

/* Entry.
--------------------------------------------- */
.sticky {
	display: block;
}

.zak-posts .zak-post {
	padding: 30px 0;
	border-bottom: 1px solid #E4E4E7;
}

.zak-posts .zak-post:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.zak-posts .zak-post:first-child {
	padding-bottom: 30px;
	padding-top: 0;
	border-bottom: 1px solid #E4E4E7;
}

.extra-hatom {
	display: none;
}

.entry-title {
	margin-bottom: 0;
	font-weight: 600;
	word-break: break-word;
}

.entry-title:hover a {
	color: #027ABB;
	text-decoration: underline;
}

.entry-title a {
	color: inherit;
	text-decoration: inherit;
}

.zak-entry-thumbnail {
	margin-bottom: 20px;
}

.zak-entry-thumbnail__link {
	display: block;
}

.zak-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 10px;
	border: 0 solid #E4E4E7;
	font-size: 1.4rem;
}

.zak-entry-meta a {
	color: #027ABB;
	text-decoration: underline;
}

.zak-entry-meta a:hover {
	text-decoration: none;
}

.zak-style-2 .zak-entry-meta span, .zak-style-2 .zak-entry-meta a {
	color: #027ABB;
}

.zak-style-2 .zak-entry-meta a:hover {
	color: #015989;
}

.zak-style-2 .zak-entry-meta > span {
	display: inline-block;
}

.zak-style-2 .zak-entry-meta > span::before {
	display: inline-block;
	font-family: 'FontAwesome';
	margin-right: 5px;
}

.zak-style-2 .zak-entry-meta .zak-comments-link,
.zak-style-2 .zak-entry-meta .zak-posted-on,
.zak-style-2 .zak-entry-meta .zak-cat-links,
.zak-style-2 .zak-entry-meta .zak-byline,
.zak-style-2 .zak-entry-meta .zak-tags-links {
	display: flex;
	align-items: center;
	gap: 6px;
}

.zak-style-2 .zak-entry-meta .zak-comments-link svg,
.zak-style-2 .zak-entry-meta .zak-posted-on svg,
.zak-style-2 .zak-entry-meta .zak-cat-links svg,
.zak-style-2 .zak-entry-meta .zak-byline svg,
.zak-style-2 .zak-entry-meta .zak-tags-links svg {
	fill: #3F3F46;
	height: 16px;
	width: 16px;
}

.zak-style-2 .zak-entry-meta .zak-cat-links,
.zak-style-2 .zak-entry-meta .zak-tags-links {
	flex-wrap: wrap;
}

.entry-content {
	margin-top: 20px;
}

.entry-content p {
	margin-bottom: 24px;
}

.entry-content p:last-child {
	margin-bottom: 0;
}

.zak-entry-summary {
	margin-top: 20px;
}

.page-links {
	clear: both;
	margin: 0 0 1.5rem;
}

.zak-entry-footer.zak-alignment-style-2 {
	text-align: right;
}

.zak-entry-footer a {
	color: #3F3F46;
}

.zak-entry-footer .edit-link a {
	color: #027ABB;
}

.entry-button {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.entry-button:hover {
	color: #027ABB;
	text-decoration: underline;
}

.entry-button:hover .zak-icon {
	fill: #027ABB;
	transform: translateX(4px);
}

/* Comments.
--------------------------------------------- */
/*=============================================
=            Comments            =
=============================================*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

#comments {
	margin-top: 40px;
}

#comments .comment-list {
	list-style-type: none;
	margin-left: 0;
}

#comments .comment-list .comment-respond {
	margin-top: 32px;
}

#comments .comment-list .children {
	list-style-type: none;
	margin-left: 2rem;
}

#comments .comment-list .comment-body {
	padding-bottom: 16px;
}

#comments .comment-list .comment-meta {
	position: relative;
	min-height: 40px;
}

#comments .comment-list .comment-meta .comment-author img.avatar {
	height: 40px;
	width: 40px;
	position: absolute;
	left: 0;
	top: 0;
	border: 1px solid rgba(17, 17, 17, 0.15);
	border-radius: 100px;
}

#comments .comment-list .comment-meta .comment-author .fn {
	margin-left: 50px;
	margin-bottom: 8px;
	font-size: 2rem;
	font-weight: 400;
}

#comments .comment-list .comment-meta .comment-author .says {
	display: none;
}

#comments .comment-list .comment-meta .comment-metadata {
	margin-left: 50px;
	font-size: 1.4rem;
}

#comments .comment-list .comment-meta .edit-link {
	color: #027ABB;
	text-decoration: underline;
}

#comments .comment-list .comment-meta .edit-link:hover {
	text-decoration: none;
}

#comments .comments-title {
	display: inline-block;
	margin-bottom: 42px;
}

#comments .comments-title,
#comments .comment-reply-title {
	position: relative;
	padding-bottom: 12px;
	border-bottom: 1px solid #E4E4E7;
	font-size: 2.4rem;
}

#comments .comments-title::before,
#comments .comment-reply-title::before {
	position: absolute;
	display: block;
	bottom: -1px;
	content: " ";
	left: 0;
	width: 30px;
	height: 1px;
	background-color: #027ABB;
}

#comments .comment-reply-title {
	display: inline-block;
	margin-bottom: 10px;
}

#comments .comment-content {
	margin-left: 50px;
	margin-top: 24px;
	font-size: 1.4rem;
}

#comments .comment-content a {
	color: #027ABB;
	font-size: 1.4rem;
	text-decoration: underline;
}

#comments .comment-content a:hover {
	text-decoration: none;
}

#comments .comment-content p {
	margin-bottom: 0;
}

#comments .reply {
	margin-left: 50px;
	margin-top: 24px;
	color: #027ABB;
	font-size: 1.4rem;
	text-decoration: underline;
}

#comments .reply:hover {
	text-decoration: none;
}

#comments .logged-in-as {
	margin-bottom: 24px;
}

.comments-area ol.comment-list .children {
	padding-top: 30px;
	border-top: 1px solid #E4E4E7;
}

textarea {
	height: 150px;
}

.comment-respond {
	margin-top: 60px;
}

.comment-respond textarea,
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"] {
	display: flex;
	background-color: inherit;
	border-radius: 4px;
	margin-bottom: 20px;
}

.comment-respond .form-submit {
	margin-top: 40px;
	margin-bottom: 20px;
}

.comment-respond small {
	margin-left: 16px;
	color: #027ABB;
	font-size: 1.4rem;
	text-decoration: underline;
}

.comment-respond label {
	margin-bottom: 10px;
	font-size: 1.4rem;
	font-weight: 600;
}

.comment-respond input[type="checkbox"] {
	height: 20px;
	width: 20px;
	margin-right: 0;
}

.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 10px;
}

.comment-form-cookies-consent label {
	margin-bottom: 0;
	font-weight: 400;
}

@media screen and (min-width: 992px) {
	.comment-respond textarea,
	.comment-respond input[type="text"],
	.comment-respond input[type="email"],
	.comment-respond input[type="url"] {
		width: 570px;
	}
}

/* Widgets.
--------------------------------------------- */
.widget {
	margin: 0 0 2.5em;
}

.widget:last-child {
	margin-bottom: 0;
}

.widget .wp-block-heading,
.widget .widget-title {
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid #E4E4E7;
}

.widget .wp-block-heading::before,
.widget .widget-title::before {
	position: absolute;
	display: block;
	bottom: -1px;
	content: " ";
	left: 0;
	width: 30px;
	height: 1px;
	background-color: #027ABB;
}

.widget .widget-title,
.widget h2 {
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: 600;
}

.widget ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	list-style-type: none;
}

.widget ul ul {
	padding-left: 1em;
}

.widget ul.footer-social-icon {
	flex-direction: row;
}

.widget li a {
	display: inline-block;
	color: #027ABB;
	text-decoration: underline;
	/* Make sure select elements fit in widgets. */
}

.widget li a:hover {
	text-decoration: none;
}

.widget li a select {
	max-width: 100%;
}

.widget li a + .post-date {
	margin-bottom: 0.5rem;
	display: block;
}

.widget_search .zak-search-form label {
	width: 100%;
	flex-direction: row-reverse;
}

.widget_search .zak-search-form .zak-icon--search {
	padding-right: 16px;
}

.widget_search .zak-search-form .zak-icon--search svg {
	width: 20px;
	height: 20px;
}

.widget_search .wp-block-search__button {
	margin-left: 0;
}

.widget_search input[type="search"],
.widget_search .zak-search-submit {
	background-color: inherit;
	border: 0;
	height: 50px;
}

.widget_search .wp-element-button {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0;
	color: transparent;
	border: 0;
	line-height: 1;
}

.widget_search .wp-element-button::before {
	position: absolute;
	left: 12px;
	content: "\f002";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: #27272A;
	font-size: 1.8rem;
}

.widget_search button {
	display: none;
	background-color: unset;
	padding: 8px;
}

.widget_search .wp-block-search__inside-wrapper,
.widget_search .zak-search-container {
	border: 1px solid #D4D4D8;
	border-radius: 4px;
	display: flex;
}

.widget_search .wp-block-search__inside-wrapper:focus-within,
.widget_search .zak-search-container:focus-within {
	border-color: #27272A;
}

.widget_search .wp-block-search__inside-wrapper {
	font-size: 1.4rem;
}

.widget_search .wp-block-search .wp-block-search__label {
	margin-bottom: 10px;
	font-size: 1.4rem;
	font-weight: 600;
}

.widget_recent_comments li {
	padding: 0.5rem 0;
}

.widget_calendar table td, .widget_calendar table th {
	padding: inherit;
	text-align: center;
}

.widget_tag_cloud .tagcloud {
	display: flex;
	flex-wrap: wrap;
}

.widget_tag_cloud .tagcloud a {
	font-size: 1rem !important;
	border: 1px solid;
	padding: 5px 10px;
	margin: 5px;
}

/* Captions.
--------------------------------------------- */
/* Galleries.
--------------------------------------------- */
/*--------------------------------------------------------------
# Layouts.
--------------------------------------------------------------*/
/* Common.
--------------------------------------------- */
::-moz-placeholder {
	color: #D4D4D8;
}
::placeholder {
	color: #D4D4D8;
}

.zak-top-bar,
.zak-footer {
	background-color: #18181B;
	color: #FAFAFA;
	font-size: 1.4rem;
}

.zak-top-bar .zak-row,
.zak-footer-bar .zak-row {
	flex-direction: column;
}

.zak-top-bar .zak-row,
.zak-footer-bar .zak-row {
	align-items: center;
	gap: 0.75em;
}

.zak-top-bar .zak-container,
.zak-footer-bar .zak-container {
	flex-direction: column;
	row-gap: 0.8rem;
}

.zak-top-bar p,
.zak-footer-bar p {
	margin: 0;
}

.zak-top-bar .header-bar-social-icons a,
.zak-footer-bar .header-bar-social-icons a {
	text-decoration: none;
}

.zak-top-bar a,
.zak-footer-bar a {
	text-decoration: none;
}

.zak-top-bar a:hover,
.zak-footer-bar a:hover {
	color: inherit;
	text-decoration: none;
}

.zak-top-bar .widget,
.zak-footer-bar .widget {
	margin: 0;
}

.zak-top-bar .widget li,
.zak-footer-bar .widget li {
	border-bottom: none;
}

.zak-top-bar .menu,
.zak-footer-bar .menu {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	list-style-type: none;
	justify-content: center;
}

.zak-top-bar .menu a,
.zak-footer-bar .menu a {
	text-decoration: none;
}

.zak-top-bar .menu a:hover,
.zak-footer-bar .menu a:hover {
	text-decoration: underline;
}

.zak-top-bar__1,
.zak-top-bar__2,
.zak-footer-bar__1,
.zak-footer-bar__2 {
	text-align: center;
}

@media screen and (min-width: 768px) {
	.zak-top-bar .zak-row,
	.zak-footer-bar .zak-row {
		flex-direction: row;
	}
}

/* Header.
--------------------------------------------- */
.zak-top-bar {
	display: none;
	padding-bottom: 14px;
	padding-top: 14px;
}

@media screen and (min-width: 600px) {
	.zak-top-bar {
		display: block;
		border-style: solid;
		border-width: 0;
	}
}

.zak-header {
	border-bottom: 1px solid #E4E4E7;
}

.zak-header .zak-row {
	align-items: center;
	position: relative;
}

.zak-main-header {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FAFAFA;
}

.zak-main-header .zak-row {
	flex-wrap: nowrap;
	gap: 40px;
}

.zak-main-header .zak-header-col--2 {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media screen and (min-width: 992px) {
	.zak-header-col--2 {
		align-items: center;
	}
}

.zak-header.zak-layout-1-style-2 .zak-container {
	padding: 0;
}

.zak-header.zak-layout-1-style-2 .zak-header-col--2 {
	width: 100%;
	justify-content: center;
}

.zak-header.zak-layout-1-style-2 .zak-primary-nav {
	flex: none;
}

.zak-header.zak-layout-1-style-2 .zak-main-header .zak-row {
	flex-direction: column;
	gap: 20px;
}

.zak-header.zak-layout-1-style-2 .site-branding {
	flex-direction: column;
	text-align: center;
}

.zak-header.zak-layout-1-style-2 .site-branding .custom-logo-link {
	margin-right: 0;
}

.zak-header.zak-layout-1-style-2 .zak-primary-nav {
	display: none;
}

@media screen and (min-width: 768px) {
	.zak-header.zak-layout-1-style-2 .zak-primary-nav {
		display: flex;
		justify-content: center;
		margin-left: initial;
	}
}

.zak-header.zak-layout-1-style-3 {
	/* Site branding */
	/* Menu primary */
}

.zak-header.zak-layout-1-style-3 .zak-main-header .zak-row {
	flex-direction: row-reverse;
}

.zak-header.zak-layout-1-style-3 .zak-main-header .zak-header-col--2 {
	justify-content: flex-start;
}

.zak-header.zak-layout-1-style-3 .site-branding {
	margin-left: 20px;
}

.zak-header.zak-layout-1-style-3 .site-branding .custom-logo-link {
	margin-right: 0;
}

.zak-header.zak-layout-1-style-3 .zak-primary-nav {
	margin-left: initial;
	margin-right: 0;
	flex: initial;
}

.zak-header.zak-layout-2-style-1 .zak-main-header {
	padding: 0;
}

.zak-header.zak-layout-2-style-1 .zak-main-header .zak-row {
	gap: 0;
	align-items: flex-start;
}

.zak-header.zak-layout-2-style-1 .zak-header-col--2 {
	display: block;
	align-self: stretch;
	width: auto;
	margin-left: calc(50% - 49.5vw);
	margin-right: calc(50% - 49.5vw);
	padding-top: 10px;
	padding-bottom: 10px;
	background: #F4F4F5;
	border-width: 1px 0 0 0;
	border-style: solid;
	border-color: #D4D4D8;
}

.zak-header.zak-layout-2-style-1 .zak-header-col--2 .zak-container {
	flex: 1;
	display: flex;
	align-items: center;
}

.zak-header.zak-layout-2-style-1 .zak-header-col--1 {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-top: 24px;
	padding-bottom: 24px;
}

.zak-header.zak-layout-2-style-1 .zak-primary-nav {
	justify-content: flex-start;
}

.zak-header.zak-layout-2-style-1 .zak-main-header .zak-row {
	flex-direction: column;
}

@media screen and (min-width: 768px) {
	.zak-header.zak-layout-2-style-1 .zak-header-col--1 {
		flex-direction: row;
	}
}

.zak-header.zak-layout-1-transparent {
	position: relative;
	border-bottom: none;
}

.zak-header.zak-layout-1-transparent .zak-main-header {
	background: transparent;
}

.zak-header.zak-layout-1-transparent .zak-header-transparent-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	height: auto;
	width: 100%;
	background: transparent;
	border-bottom: 1px solid #E4E4E7;
}

.zak-header.zak-layout-1-transparent .zak-header-transparent-wrapper .zak-header-search--opened.zak-main-header {
	background: #27272A;
}

/* Content.
--------------------------------------------- */
.zak-secondary {
	word-break: break-word;
}

.zak-secondary .wp-element-button {
	color: transparent;
}

.zak-secondary li {
	line-height: 1.8;
}

@media screen and (min-width: 768px) {
	.zak-secondary {
		width: 30%;
		padding-top: 3.75em;
		padding-left: 1.875em;
		padding-bottom: 3.75em;
		border-left: 1px solid #E4E4E7;
	}
}

.zak-content {
	background-color: #FFF;
}

.zak-content .zak-row {
	flex-direction: column;
	padding-bottom: 3.75em;
	gap: 3.75em;
}

.zak-primary {
	width: 100%;
}

.has-transparent-header:not(.blog):not(.has-page-header),
.zak-no-content-margin,
.elementor-template-full-width,
.page-template-pagebuilder {
	/* Remove content margin when,
	1. When transparent header is present.
	2. Content margin is removed via options.
	3. Using full width Elementor template.
	4. Using Page builder template.
	*/
}

.has-transparent-header:not(.blog):not(.has-page-header) .zak-row,
.zak-no-content-margin .zak-row,
.elementor-template-full-width .zak-row,
.page-template-pagebuilder .zak-row {
	padding: 0;
}

body:not(.tg-container--separate) #page {
	background: #FAFAFA;
}

body #page {
	display: flex;
	flex-direction: column;
	min-height: 96vh;
}

body .zak-content {
	flex-grow: 1;
}

.backdrop {
	position: relative;
}

.backdrop::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: rgba(82, 82, 91, 0.2);
}

@media screen and (min-width: 768px) {
	.zak-content .zak-row {
		gap: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.zak-primary {
		width: 70%;
		padding-top: 60px;
		padding-right: 30px;
		padding-bottom: 60px;
	}
}

/* Blog.
--------------------------------------------- */
.zak-posts {
	display: grid;
	grid-template-columns: 1fr;
}

.zak-posts .zak-entry-thumbnail img {
	border-radius: 4px;
}

.page .entry-content {
	margin-top: 0;
	word-break: break-word;
}

/* Footer.
--------------------------------------------- */
.zak-footer .site-info {
	text-align: center;
	padding: 1rem 0;
}

.zak-footer .zak-footer-widget-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 60px 0 25px;
}

.zak-footer .zak-footer-widget-container.style-1 .zak-footer-col {
	width: calc(25% - 20px);
}

.zak-footer .menu li a {
	display: flex;
	gap: 8px;
}

.zak-footer .zak-submenu-toggle {
	display: flex;
	align-items: center;
	fill: #FFF;
}

.zak-footer .zak-footer-widget--title-hidden .widget-title {
	display: none;
}

.zak-footer .footer-social-icons ul {
	flex-direction: row;
}

/* Footer column. */
.zak-footer-cols {
	padding-bottom: 60px;
	padding-top: 60px;
	border-top: 1px solid #D4D4D8;
	color: #D4D4D8;
}

.zak-footer-cols .zak-row {
	display: grid;
	gap: 32px;
}

.zak-footer-cols .widget {
	margin: 0;
}

.zak-footer-cols .widget-title,
.zak-footer-cols h2 {
	margin-bottom: 16px;
	font-size: 1.6rem;
}

.zak-footer-cols h1,
.zak-footer-cols h2,
.zak-footer-cols h3,
.zak-footer-cols h4,
.zak-footer-cols h5,
.zak-footer-cols h6 {
	color: #FAFAFA;
}

.zak-footer-col {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.zak-footer-col .wp-block-social-links {
	display: flex;
	flex-direction: row;
}

.zak-footer-col .widget ul a {
	color: #FFF;
	text-decoration: none;
}

.zak-footer-col ul li {
	border-bottom: 0 solid #E4E4E7;
}

.zak-footer-cols.zak-layout-1-style-1 .zak-row, .zak-footer-cols.zak-layout-1-style-2 .zak-row, .zak-footer-cols.zak-layout-1-style-3 .zak-row, .zak-footer-cols.zak-layout-1-style-4 .zak-row {
	grid-template-columns: repeat(var(--grid-column, 1), 1fr);
}

.zak-footer-bar {
	border-top: 1px solid #3F3F46;
	padding-bottom: 24px;
	padding-top: 24px;
}

.zak-footer-bar.zak-style-2 .zak-row {
	flex-direction: column;
	justify-content: normal;
}

.zak-footer-bar.zak-style-2 .zak-footer-bar__1,
.zak-footer-bar.zak-style-2 .zak-footer-bar__2 {
	text-align: center;
}

.zak-footer-bar.zak-style-2 .zak-footer-bar__1 ul,
.zak-footer-bar.zak-style-2 .zak-footer-bar__2 ul {
	justify-content: center;
}

.zak-footer-bar.zak-style-2 .zak-footer-bar__1 .widget,
.zak-footer-bar.zak-style-2 .zak-footer-bar__2 .widget {
	align-items: center;
}

.zak-footer-bar.zak-style-2 .zak-footer-bar__1 .widget li,
.zak-footer-bar.zak-style-2 .zak-footer-bar__2 .widget li {
	text-align: center;
}

.zak-scroll-to-top {
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999;
	height: 48px;
	width: 48px;
	border-radius: 4px;
	background-color: #27272A;
	transform: translateY(0);
	transition: 0.5s all ease;
}

.zak-scroll-to-top .zak-icon {
	fill: #FAFAFA;
}

.zak-scroll-to-top:hover {
	background-color: #027ABB;
}

.zak-scroll-to-top.zak-scroll-to-top--show {
	opacity: 1;
	visibility: visible;
	transform: translateY(-10px);
}

@media screen and (min-width: 768px) {
	.zak-footer-cols.zak-layout-1-style-1 .zak-row {
		--grid-column: 1;
	}
}

@media screen and (min-width: 768px) {
	.zak-footer-cols.zak-layout-1-style-2 .zak-row {
		--grid-column: 2;
	}
}

@media screen and (min-width: 768px) {
	.zak-footer-cols.zak-layout-1-style-3 .zak-row {
		--grid-column: 3;
	}
}

@media screen and (min-width: 768px) {
	.zak-footer-cols.zak-layout-1-style-4 .zak-row {
		--grid-column: 4;
	}
}

/* Pages.
--------------------------------------------- */
.zak-error-404 {
	text-align: center;
}

.zak-error-404 img {
	margin-bottom: 40px;
}

.zak-error-404 .zak-content-header {
	margin-bottom: 30px;
	background-color: transparent;
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 1.3;
}

.zak-error-404 .zak-button {
	display: inline-block;
	margin-top: 30px;
	padding: 8px 16px;
}

.zak-error-404 .zak-button span {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.zak-error-404 .zak-button svg {
	height: 16px;
	width: 16px;
	fill: #FFF;
}

.zak-error-404 .zak-button:hover svg {
	fill: #027ABB;
}

.zak-no-results {
	text-align: center;
}

.zak-no-results .zak-page-header {
	padding: 0;
	background-color: transparent;
}

.zak-no-results .zak-page-header .zak-page-title {
	margin-bottom: 30px;
	font-weight: 600;
	font-size: 3.2rem;
}

.zak-no-results img {
	margin-bottom: 40px;
	width: 230px;
	height: 186px;
}

.zak-no-results .page-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.zak-no-results .zak-search-container {
	width: 100%;
}

.zak-no-results .zak-search-form .zak-search-field-label {
	flex-direction: row-reverse;
	border: 1px solid #D4D4D8;
	border-radius: 4px;
}

.zak-no-results .zak-search-form .zak-search-field {
	background-color: transparent;
}

.zak-no-results .zak-icon--search {
	padding: 14px;
}

.zak-no-results .zak-icon--search svg {
	height: 20px;
	width: 20px;
}

.zak-no-results .zak-icon--close {
	display: none;
}

@media screen and (min-width: 768px) {
	.zak-no-results .page-content p {
		width: 544px;
	}
	.zak-no-results .zak-search-form {
		width: 449px;
		margin-right: auto;
		margin-left: auto;
	}
}

@media screen and (min-width: 992px) {
	.zak-no-results .zak-search-form {
		width: 564px;
		margin-right: auto;
		margin-left: auto;
	}
}

/* Page templates.
--------------------------------------------- */
.page-template-pagebuilder {
	background: #fff;
}

.page-template-pagebuilder.zak-container--wide .zak-content .zak-container {
	max-width: 100%;
}

.page-template-pagebuilder .widget {
	background: initial;
	padding: 0;
}

.page-template-pagebuilder .zak-primary.pagebuilder-content {
	flex: 1;
	max-width: inherit;
	padding: 0;
}

.page-template-pagebuilder .zak-content .zak-container {
	padding-left: 0;
	padding-right: 0;
}

.pagebuilder-content a {
	color: #027ABB;
}

.pagebuilder-content a:hover, .pagebuilder-content a:focus {
	color: #0284C7;
}

.page-template.tg-container--separate #page {
	background: #FAFAFA;
}

/* Site layouts.
--------------------------------------------- */
/* Boxed layout. */
.zak-container--boxed .zak-site {
	width: 90%;
	margin: 20px auto;
	box-shadow: 4px 24px 60px rgba(109, 141, 173, 0.25);
}

.zak-container--boxed .zak-site#page {
	background-color: #FAFAFA;
}

.zak-container--boxed .zak-main-header .zak-container,
.zak-container--boxed .zak-content .zak-container,
.zak-container--boxed .zak-top-bar .zak-container,
.zak-container--boxed .zak-footer-bar .zak-container {
	max-width: 100%;
}

.zak-container--boxed .zak-header.zak-layout-2 .zak-header-col--2 {
	margin-left: -16px;
	margin-right: -16px;
}

@media screen and (min-width: 768px) {
	.zak-container--boxed .zak-site {
		max-width: 1170px;
	}
}

/* Separate layout. */
.zak-content-area--boxed .zak-posts {
	gap: 30px;
}

.zak-content-area--boxed .zak-post:first-child {
	padding-top: 20px;
	padding-bottom: 20px;
}

.zak-content-area--boxed .zak-post:last-child {
	padding-bottom: 20px;
	border: 1px solid #E4E4E7;
}

.zak-content-area--boxed .zak-secondary {
	border-left: 0 none;
}

.zak-content-area--boxed .zak-site-layout--left .zak-primary {
	padding-left: 2em;
}

.zak-content-area--boxed .zak-site-layout--left .zak-secondary {
	padding-right: 2em;
	border-right: 0 none;
}

.zak-content-area--boxed .zak-post,
.zak-content-area--boxed .widget {
	padding: 20px 24px;
	border: 1px solid #E4E4E7;
	border-radius: 4px;
}

.zak-content-area--boxed .zak-footer-col .widget {
	padding: 0;
	background-color: transparent;
	border: 0;
}

/* Stretched layout. */
.tg-container--stretched .zak-container {
	width: 100%;
	max-width: unset;
}

/* Sidebar.
--------------------------------------------- */
.zak-site-layout--centered .zak-primary {
	max-width: 770px;
	margin: 0 auto;
}

.zak-site-layout--centered.zak-container--boxed .zak-primary .entry-content > .alignfull {
	margin-left: unset;
	margin-right: unset;
}

.zak-site-layout--contained .zak-primary {
	width: 100%;
	padding-right: 0;
}

.zak-site-layout--left .zak-primary {
	padding-right: 0;
}

.zak-site-layout--left .zak-secondary {
	padding-left: 0;
	border-left: 0 none;
}

@media screen and (min-width: 768px) {
	.zak-site-layout--left .zak-content .zak-row {
		flex-direction: row-reverse;
	}
	.zak-site-layout--left .zak-primary {
		padding-left: 30px;
	}
	.zak-site-layout--left .zak-secondary {
		padding-right: 30px;
		border-right: 1px solid #E4E4E7;
	}
}

.zak-site-layout--centered .zak-primary {
	width: 100%;
	padding-right: 0;
}

.zak-site-layout--centered .zak-primary .entry-content > .alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	max-width: unset;
}

.zak-site-layout--centered .zak-primary .entry-content > .alignfull.wp-block-cover, .zak-site-layout--centered .zak-primary .entry-content > .alignfull.wp-block-cover-image {
	width: unset;
}

.zak-site-layout--centered .zak-primary .entry-content > .alignwide {
	margin-left: -100px;
	margin-right: -100px;
	max-width: unset;
}

/*--------------------------------------------------------------
# Gutenberg blocks.
--------------------------------------------------------------*/
/* Media text.
--------------------------------------------- */
.wp-block-media-text .wp-block-media-text__content {
	padding: 0 0 0 8%;
}

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
	padding: 0 8% 0 0;
}

@media (max-width: 600px) {
	.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
		padding: 0;
	}
	.wp-block-media-text .wp-block-media-text__content {
		padding: 0;
	}
}

/* Columns.
--------------------------------------------- */
.wp-block-columns {
	padding-top: 3em;
	padding-right: 2em;
	padding-bottom: 3em;
	padding-left: 2em;
}

/* Social icons.
--------------------------------------------- */
.wp-block-social-links li a {
	display: flex;
}

/* Query loop.
--------------------------------------------- */
ul.wp-block-post-template {
	margin: 0;
}

/* Button loop.
--------------------------------------------- */
.entry-content .wp-block-button.is-style-outline .wp-block-button__link {
	color: #027ABB;
	border-width: 1px;
}

/* Cover loop.
--------------------------------------------- */
.wp-block-cover p.wp-block-cover-text {
	color: #FFF;
}

/*--------------------------------------------------------------
# Plugins.
--------------------------------------------------------------*/
.elementor-template-full-width .zak-content .zak-row {
	display: block;
}

body.has-transparent-header {
	/* Hide header on Elementor editor and transparent header. */
}

body.has-transparent-header.elementor-editor-active .zak-header {
	z-index: -1;
}

@media screen and (min-width: 768px) {
	.ehf-header #masthead {
		flex-basis: 100%;
	}
	.ehf-header .hfeed.site .zak-primary {
		width: 100%;
	}
	.ehf-header .hfeed.site:has(.zak-secondary) .zak-primary {
		width: 70%;
	}
}
.pro_ban {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
	background-color: #f4f7fc;
}

.pro_ban picture {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.pro_ban .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
	width:80%;
	margin: auto;
	
}

@media (max-width:768px) {
	.pro_ban .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
	  margin: auto;
	
}
}

.pro_ban .txt {
    width: 50%;
    min-width: 300px;
}
@media (max-width:768px) {
	.pro_ban .txt {
		width:100%;
		margin-left:0%;
	}	
}


.pro_ban .txt dt h1 {
    color: #77b917;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.pro_ban .txt dt h2 {
font-family: "Spline Sans", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    letter-spacing: 4px;
}

.pro_ban .txt p {
    color: #1a1a1a;
    margin-bottom: 30px;
}

.pro_ban .txt a {
    display: block;
    width: 140px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    background-color: #77b917;
}



.pro_ban .img {
    width: 46%;
}

@media (max-width:768px) {
	
.pro_ban .img {
    width: 100%;
}
}

.pro_ban .img img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.cap {
    display: flex;
    align-items: flex-start;
}

.cap img {
    max-width: 100%;
    height: auto;
    margin-right: 6px;
}

section {
	 width: 100%;
    position: relative;
    overflow: hidden;
    padding: 5vw 0;
}



.sec2 .container {
    width: 96%;
    max-width: 1204px;
    margin: 0 auto;
}

.sec .container {
    width: 96%;
    max-width: 1204px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

section h2 {
    font-size: 42px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: capitalize;
    font-family: 'GilroyBlack', Arial;
    color: #0048a8;
}

p.center {
    text-align: center;
    margin: 35px auto 40px;
}

.tit-line2 {
	font-size: 3.2rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: capitalize;
    font-family: 'GilroyBlack', Arial;
    color: #3F3F46
}

.tit-line2::before {
    display: inline-block;
    content: '';
    width: 40px;
    height: 12px;
    background: url(/wp-content/themes/zakra/images/linel.png) left center;
    margin-right: 10px;
}

.tit-line2::after {
    display: inline-block;
    content: '';
    width: 40px;
    height: 12px;
    background: url(/wp-content/themes/zakra/images/liner.png) right center;
    margin-left: 10px;
}



.sec8 .l, .sec8 .video {
    width: 50%;
	float: left;
}

.sec8 .l .bg {
    position: unset;
}

section img {
    display: block;
    height: auto;
}

.sec8 .l .txt {
    padding: 5vw;
    position: absolute;
	 width:50%;
    height: 100%;
    box-sizing: border-box;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.bg-relative .bg {
    position: absolute;
    left: 0;
    top: 0;
}

.sec8 .l .txt h2, .sec8 .l .txt p {
    color: #fff;
}

.sec8 .l .txt h2, .sec8 .l .txt p {
    color: #fff;
}

.sec8 .l, .sec8 .video {
    width: 50%;
}

section.secf {
    padding: 0;
	background-color: #3f3f46;
}

.video {
    position: relative;
    cursor: pointer;
}

.video .img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transition: all .6s;
}

.video .button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
/**-----**/
.mask2 { position: fixed; background-color: rgba(51, 51, 51, 0.8); width: 100%; height: 100%; z-index: 8; top: 0px; left: 0px; display: none; z-index: 19960426; }

.mask2 video, .mask2 iframe { width: 960px; height: 540px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }

.mask2 img { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }

.mask2 .imgclo { cursor: pointer; position: fixed; top: 15%; right: 25%; z-index: 999; font-size: 3.43rem; color: red; }

.notfound { margin-top: 150px; text-align: center; font-size: 1.12rem; line-height: 26px; }
.notfound em { font-style: normal; display: block; font-size: 1.87rem; margin: 40px 0 30px; }
.notfound span { color: #77b917; }
.notfound img { display: block; margin: 0 auto; }
.notfound .probox { margin-top: 80px; }

/* section2 */
.sec2-bg{position: relative;}
.sec2-bg .bg{position: absolute;z-index: 0;}
.sec2-bg .bg.bg1{left: 0;top: 100px;}
.sec2-bg .bg.bg2{right: 0;top: 360px;}
.sec2-bg .bg.bg3{right: 0;bottom: 400px;}
.sec2-bg .sec2,.sec2-bg .sec3{position: relative;z-index: 1;}
.sec2-bg .sec2 .img{box-shadow: 0 0 10px #ddd;}
.sec2 h2{ font-size:42px; line-height: 1.4; font-weight: 800; text-transform: capitalize; font-family: 'GilroyBlack', Arial; color: #0048a8 }

/* section3 */
.sec3 .item{width:49%;background-color:#fff; border: 1px solid #799ff2;padding: 20px;margin-bottom: 30px; box-shadow: 0 0 6px #ccc;box-sizing: border-box;position: relative;overflow: hidden;}
.sec3 .item::before{content: '';width: 100%;height: 100%;background-color: #ecf1f7;opacity: 1;position: absolute;top: 0;left: 0;transform: scaleY(0);transition: all .6s;z-index: 0;}
.sec3 .item:hover::before{transform: scaleY(1);}
.sec3 .item > *{position: relative;}
.sec3 .item .tit-line{margin-bottom: 15px;}
.sec3 .item h3{display: inline;font-size: 18px;line-height: 1.5;}
.sec3 .item:hover h3 a{color: #113b8f;}
.sec3 .item .tit-line span{color: #9c9c9c;}
.sec3 .item .txt{width: 49%;display: flex;flex-direction: column;gap: 20px;justify-content: center;}
.sec3 .item .img{width: 49%;}
.sec3 .container {
    width: 96%;
    max-width: 1204px;
    margin: 0 auto;
}
/* sectionb */
section.sec11{padding: 5vw 0 1vw;}
.sec11 .container{position: relative;z-index: 2;}
.sec11 h2{margin-bottom: 30px;}
.sec11 h2+p{margin-bottom: 120px;}
.sec11 .item{background-color:#fff;border: 1px solid #799ff2;box-shadow: 0 0 6px #ccc;box-sizing: border-box;margin-bottom: 120px;}
.sec11 .item .img{position: relative;top: -45px;left: 0; width: 44%;transition:all .5s;}
.sec11 .item:hover .img{transform:rotateZ(-3deg) scale(1.05)}
.sec11 .item .txt{width: 50%;padding: 40px 20px 40px 0;display: flex;flex-direction: column;gap: 30px;}
.sec11 .item h3{display: inline;font-size: 28px;}
.sec11 .item:hover h3 a{color: #113b8f;}
.sec11 .item.row-reverse{flex-direction: row-reverse;background-color: #f1f6fa;border: none;}
.sec11 .item.row-reverse .txt{padding: 40px 0 40px 40px;}
.sec11 .item.row-reverse .tit-line span{color: #113b8f;}
.sec11 .item:last-child{margin-bottom: 0;}
.sec11.bg-relative .bg+div.bg{position: absolute;left: unset;top: unset;}
.sec11 .bg img{width: auto;}
.sec11 .bg.bg1{top: 50px;left: 0;}
.sec11 .bg.bg2{top: 700px !important;right: 0;}
.sec11 .bg.bg3{left: 0; bottom: 800px;}
.sec11 .bg.bg4{bottom: 0;right: 0;}
/* section9 */
.sec9.bg-relative .bg{top: 340px;}
.sec9 h2{margin-bottom: 30px;}
.sec9 h2+p{margin-bottom: 3vw;}
.sec9 .item{margin-bottom: 30px;border: 1px solid #759ff2;padding: 20px;width: 32%;overflow: hidden; box-sizing: border-box;background-color: #fff;position: relative;transition: all .3s;}
.sec9 .item::after{content: '';width: 100%;height: 8px;background-color: #113b8f;position: absolute;right: 100%;bottom: 0;transition: right 1s;}
.sec9 .item:hover{border: 1px solid #113b8f;transform: scale(1.03);}
.sec9 .item:hover::after{right: 0;}
.sec9 .item .img{margin-bottom: 20px;}
.sec9 .item h3{margin-bottom: 10px;}
.sec9 .item:hover h3 a{color: #113b8f;}
.sec9 .item p{color: #666;margin-bottom: 30px;}

/* section10 */
.sec10.bg-relative .bg2{bottom: 0;top: unset;}
.sec10 .container{padding: 10vw 0 0;z-index: 1;width: 96%;max-width: 1204px; margin: 0 auto;}
.sec10 .top{background: #fff;padding: 60px 30px;}
.sec10 .top h2{position: relative;padding-left: 25px;line-height: 1.5;margin-bottom:40px}
.sec10 .top h2::before{display: block;content: '';width: 5px;height: 40px;background-color: #113b8f;position: absolute;left: 0;top: 5px;}
.sec10 .top .l{width: 38%;}
.sec10 .top .video{padding-top:56.2%;margin-bottom:40px}
.sec10 .top .video iframe{width:100%;height:100%;position:absolute;left:0;top:0}
.sec10 .top .r{width: 55%;margin-bottom: 60px;}
.sec10 .top .r p{margin: 10px 0 30px;}
.sec10 .top ul li{margin-bottom: 20px;width: 24%}
.sec10 .btm{background-color: #f1f6fa;padding: 25px 0;}
.sec10 .btm .item{width: 25%;display: flex;flex-direction: column; align-items: center;gap: 15px;}
.sec10 .btm .item div{width: 58px;height: 58px;background-color: #113b8f;border-radius: 50%;display: flex;align-items: center;justify-content: center;}

.bg-relative .bg+div {
    position: relative;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

a.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 3px;
    background-color: #113b8f;
    color: #fff;
    font-size: 16px;
    position: relative;
    z-index: 5;
    transition: all .3s;
    overflow: hidden;
}

@media screen and (max-width:1024px){
    .service_strip span,.service_strip span.pat,.service_strip span.qtb,.service_strip span.ciw,.service_strip span.cor{width:50%;margin-right:0}
    .service_strip span:after{display:none}
    .footer .f_nav ul{margin-right:10px}
    .mask2 video, .mask2 iframe{width:98%}
}

@media (max-width:1200px) {
    .sec8 .l, .sec8 .video{width: 100%;}
    .sec8 .l .txt{padding:5vw}
}
@media (max-width:768px) {
	 .sec2 h2{ font-size:28px; line-height: 1.4; font-weight: 800; text-transform: capitalize; font-family: 'GilroyBlack', Arial; color: #0048a8 }
    .sec3 .item{width:100%}
    .sec4 .item{width: 100%;}
    .sec4 .item2,.sec4 .item2 .bg{width: 100%;}
    .sec4 .item.column-reverse{flex-direction: column;}
    .sec4 .item2 .flex{padding:20px}
    .sec4 .item2 .txt,.sec4 .item2 .img{width:49%}
    .sec5.bg-relative .bg.full img{width: 100%; height: auto;}
    .sec11 h2+p,.sec11 .item{margin-bottom:40px}
    .sec11 .item .img{position: unset;width: 100%;}
    .sec11 .item .txt,.sec11 .item.row-reverse .txt{width: 100%;padding: 20px;}
	 .sec8 .l .txt { position: absolute; width: 100%; height: 50%; box-sizing: border-box; left: 0; top: 0; display: flex; flex-direction: column; justify-content: center; gap: 30px; margin-top: 10px;}
    .sec8 .l .bg img{width:auto;height:100%;max-height:500px}
    .sec9 .item{width: 100%;}
    .sec10 .top .l{width: 100%;padding-left: 0;}
    .sec10 .top .r{width: 100%;}
    .sec10 .top ul li{width: 49%;}
    .form .container{gap: 30px;}
    .form .l,.form .r{width: 100%;}
    .form .lab{width:100%}
	 section h2 {color: #0048a8; margin-bottom: 3%; font-size: 28px; }

/* wood list*/
    body.wood .sec4 .flex:last-of-type .item{width: 100%;}
    body.wood .sec8 .bg img{height: 100%;width: auto;}
    body.wood .sec8 .txt{width: 100%;margin-bottom: 20px;}
    body.wood .sec5.bg-relative .bg.full img{width: auto; height: 100%;}
}
@media (max-width:550px){
    .sec10 .btm .item{width:50%;margin-bottom:30px}
    .form .r .left .lab{width:100%}
}

@media (max-width:550px){
    .sec10 .btm .item{width:50%;margin-bottom:30px}
    .form .r .left .lab{width:100%}
}







/*form*/

.footer-form {
    width: 100%;
    background: #f7f7f7;
    position: relative;
}

.pb70 {
    padding-bottom: 70px;
}

.pt90 {
    padding-top: 90px;
}

.footer-form::before {
    content: '';
    width: 33%;
    max-width: 635px;
    height: 100%;
    background: url(https://www.palm-oil-plant.com/wp-content/themes/zakra/images/footer-form-bg.webp) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.footer-form .container {
    display: flex;
    justify-content: space-between;
	max-width: 1600px;
}

.footer-form .left {
    width: 37%;
    max-width: 560px;
    height: fit-content;
    padding: 55px 40px 60px;
    background: rgba(8, 112, 215, .7);
    border-radius: 10px;
    position: relative;
    margin-top: 30px;
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.footer-form .left span {
    display: inline-block;
    position: relative;
    color: var(--white);
    font-size: 36px;
    font-family: 'RobotoBold';
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-form .left span::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 5px;
    background: var(--bgshadowcolor);
}

.footer-form p {
    font-family: 'RobotoMedium';
    font-size: 20px;
    color: #000;
    line-height: 28px;
}

.footer-form ul {
    background: rgba(238, 238, 238, .8);
    border-radius: 10px;
    margin-top: 25px;
    padding: 30px;
}

.footer-form ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-form ul li i {
    font-size: 18px;
    margin-right: 12px;
    color: transparent;
    background: var(--bgshadowcolor);
    -webkit-background-clip: text;
}

.footer-form ul li p {
    font-size: 18px;
    line-height: 26px;
    color: var(--ftcolor);
}

.footer-form p {
    font-family: 'RobotoMedium';
    font-size: 20px;
    color: var(--white);
    line-height: 28px;
}

.footer-form .right {
    width: 64%;
    margin-left: 80px;
}

.footer-form .top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 35px;
    padding-bottom: 0;
}

.footer-form .top img {
    width: 31px;
    margin-right: 15px;
}

.footer-form h2 {
    font-family: 'RobotoBold';
    font-size: 36px;
    color: var(--fttcolor);
}

.footer-form form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-form .form-item {
    width: calc(50% - 25px);
    position: relative;
    margin-bottom: 18px;
}

.footer-form .form-item input, .footer-form .form-item textarea {
    width: 100%;
    height: 60px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    padding-left: 20px;
    font-family: 'RobotoMedium';
    font-size: 20px;
    line-height: 60px;
    color: #000;
}

.footer-form .form-item {
    width: calc(50% - 25px);
    position: relative;
    margin-bottom: 18px;
}

.footer-form .form-item span {
    font-size: 22px;
    position: absolute;
    left: 125px;
    top: 13px;
    color: #f50707;
}

.footer-form .phone span {
    left: 185px;
}

.footer-form .country span {
    left: 145px;
}

.footer-form .form-item textarea {
    padding-top: 15px;
    height: 180px;
    line-height: 26px;
    resize: none;
}

.footer-form .form-item:nth-child(5) {
    width: 100%;
    margin-bottom: 5px;
}

.footer-form p.note {
    font-size: 16px;
    color: #000;
    line-height: 24px;
    margin-bottom: 40px;
    font-family: 'RobotoRegular';
}

.footer-form p.note>span {
    color: #f50707;
}

.footer-form .btnLight {
    width: 20%;
    height: 54px;
    border-radius: 27px;
    margin: 0 auto;
}

.btnLight {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 170px;
    height: 46px;
    background: linear-gradient(90deg,#e12a3e,#f66f35);
    border-radius: 23px;
    color: #fff !important;
    line-height: 46px;
    text-align: center;
    font-family: 'RobotoBold';
}

@media screen and (max-width: 768px) {
    .pb70 {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 768px) {
    .pt90 {
        padding-top: 50px;
    }
}

@media screen and (max-width: 1440px) {
    .pb70 {
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 1440px) {
    .pt90 {
        padding-top: 70px;
    }
}

@media screen and (max-width: 768px) {
    .footer-form .container {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {
    .footer-form .left {
        display: none;
    }
}

@media screen and (max-width: 1280px) {
    .footer-form .left {
        padding: 25px 20px 30px;
    }
}

@media screen and (max-width: 1440px) {
    .footer-form .left {
        padding: 50px 30px 60px;
    }
}

@media screen and (max-width: 768px) {
    .footer-form .right {
        margin-left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 1680px) {
    .footer-form .right {
        margin-left: 5%;
    }
}

@media screen and (max-width: 768px) {
    .footer-form .top {
        margin: 0 auto 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-form .top img {
        width: 20px;
        margin-right: 5px;
    }
}

@media screen and (max-width: 768px) {
    .footer-form h2 {
        font-size: 22px;
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .footer-form h2 {
        font-size: 26px;
    }
}

@media screen and (max-width: 1280px) {
    .footer-form h2 {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-form .form-item {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1280px) {
    .footer-form .form-item {
        width: calc(50% - 10px);
        margin-bottom: 12px;
    }
}

.footer-form .form-item {
    width: calc(50% - 25px);
    position: relative;
    margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
    .footer-form .form-item input, .footer-form .form-item textarea {
        height: 45px;
        border-radius: 5px;
        padding-left: 15px;
        font-size: 16px;
        line-height: 45px;
    }
}

@media screen and (max-width: 1280px) {
    .footer-form .form-item input, .footer-form .form-item textarea {
        height: 50px;
        border-radius: 5px;
        padding-left: 15px;
        font-size: 18px;
        line-height: 50px;
    }
}


@media screen and (max-width: 768px) {
    .footer-form p.note {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .footer-form p.note {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer-form .btnLight {
        font-size: 16px;
    }
}

@media screen and (max-width: 1280px) {
    .footer-form .btnLight {
        height: 45px;
    }
}

@media screen and (max-width: 1680px) {
    .footer-form .btnLight {
        width: fit-content;
        padding-right: 25px;
    }
}

@media screen and (max-width: 768px) {
    .footer-form .btnLight input {
        height: 40px;
        font-size: 16px;
        line-height: 40px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1280px) {
    .footer-form .btnLight input {
        font-size: 14px;
    }
}


@media screen and (max-width: 768px) {
.footer-form::before {
    content: '';
    width: 33%;
    max-width: 635px;
    height: 100%;
	    background: rgba(0, 0, 0, 0);
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
}
}

@media screen and (max-width: 1280px) {
.footer-form::before {
    content: '';
    width: 33%;
    max-width: 635px;
    height: 100%;
		    background: rgba(0, 0, 0, 0);
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    top: 0;
}
}
@media screen and (max-width: 768px) {
.footer-form .form-item textarea {
    padding-top: 15px;
    height: 180px;
    line-height: 26px;
    resize: none;
}
	}

.position-relative {
    position: relative !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

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

.pro-img {
	display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
.pro-img {
	display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom:10px
}
	}


.animate__bounceInRight {
    animation: bounceInRight 1s;
}

.video-center {
	  display: grid;
	  place-items: center;
	  height: 100%; 
}

.z-n1 {
    z-index: -1 !important;
}