/*
Theme Name: Genesis Child
Theme URI: https://example.com/
Description: Custom child theme for the Genesis Framework. Compatible with PHP 7.4–8.4+ and WordPress 6.4+. Full support for Gutenberg and Kadence Blocks / Blocks Pro; Elementor compatible.
Author: Adhamster
Author URI: https://example.com/
Version: 1.0.10
Template: genesis
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
Tags: one-column, two-columns, left-sidebar, right-sidebar, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: genesis-child
*/


/* ## Table of Contents
- HTML5 Reset
- Defaults
- Structure and Layout
- Common Classes
- Widgets
- Site Header
- Site Navigation
- Content Area
- Sidebar
- Site Footer
- Custom Header / Footer / Back to Top
- Media Queries
*/


/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */

html {
	/* 100% = browser 16px. Kadence Blocks uses rem tokens (spacing/fonts);
	 * Genesis classic 62.5% (10px) crushed all Kadence rem sizes on the frontend. */
	font-size: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

/* ## Box Sizing
--------------------------------------------- */

html,
input[type="search"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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


/* # Defaults
---------------------------------------------------------------------------------------------------- */

/* ## Typographical Elements
--------------------------------------------- */

body {
	background-color: #f5f5f5;
	color: #333;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
}

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button,
.gallery img {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

a {
	color: #0073e5;
	text-decoration: underline;
}

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

p {
	margin: 0 0 28px;
	padding: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

hr {
	border: none;
	border-top: 1px solid #eee;
	margin: 28px 0;
}

b,
strong {
	font-weight: 700;
}

blockquote,
cite,
em,
i {
	font-style: italic;
}

mark {
	background: #ddd;
	color: #333;
}

blockquote {
	margin: 28px;
}

blockquote::before {
	content: "\201C";
	display: block;
	font-size: 30px;
	font-size: 1.875rem;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}


/* ## Headings
--------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 10px;
}

h1 {
	font-size: 36px;
	font-size: 2.25rem;
}

h2 {
	font-size: 30px;
	font-size: 1.875rem;
}

h3 {
	font-size: 24px;
	font-size: 1.5rem;
}

h4 {
	font-size: 20px;
	font-size: 1.25rem;
}

h5 {
	font-size: 18px;
	font-size: 1.125rem;
}

h6 {
	font-size: 16px;
	font-size: 1rem;
}


/* ## Objects
--------------------------------------------- */

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

img {
	height: auto;
}

figure {
	margin: 0;
}


/* ## Forms
--------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	color: #333;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
	padding: 16px;
	width: 100%;
}

input:focus,
textarea:focus {
	border: 1px solid #999;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-moz-placeholder {
	color: #333;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #333;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button:not(.kb-button):not(.kt-button) {
	background-color: #333;
	border: 0;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	padding: 16px 24px;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:not(.kb-button):not(.kt-button):focus,
.button:not(.kb-button):not(.kt-button):hover {
	background-color: #0073e5;
	color: #fff;
}

.entry-content .button:not(.kb-button):not(.kt-button):focus,
.entry-content .button:not(.kb-button):not(.kt-button):hover {
	color: #fff;
}

.button:not(.kb-button):not(.kt-button) {
	display: inline-block;
}

a.button.small,
button.small,
input[type="button"].small,
input[type="reset"].small,
input[type="submit"].small {
	padding: 8px 16px;
}

.site-container button:disabled,
.site-container button:disabled:hover,
.site-container input:disabled,
.site-container input:disabled:hover,
.site-container input[type="button"]:disabled,
.site-container input[type="button"]:disabled:hover,
.site-container input[type="reset"]:disabled,
.site-container input[type="reset"]:disabled:hover,
.site-container input[type="submit"]:disabled,
.site-container input[type="submit"]:disabled:hover {
	background-color: #eee;
	border-width: 0;
	color: #777;
	cursor: not-allowed;
}

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


/* ## Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid #eee;
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	border-top: 1px solid #eee;
	padding: 6px;
}

th {
	font-weight: 600;
	padding: 0 6px;
}


/* ## Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-shortcut:focus,
.screen-reader-text:focus,
.genesis-nav-menu .search input[type="submit"]:focus,
.widget_search input[type="submit"]:focus {
	background: #fff;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #333;
	display: block;
	font-size: 1em;
	font-weight: 700;
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000;
}

.more-link {
	position: relative;
}


/* # Structure and Layout
---------------------------------------------------------------------------------------------------- */

/* ## Site Container
--------------------------------------------- */

.site-container {
	-webkit-animation: fadein 1s;
	animation: fadein 1s;
	word-wrap: break-word;
}

@-webkit-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* ## Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
	max-width: 1200px;
	padding: 40px 30px;
}


/* # Common Classes
---------------------------------------------------------------------------------------------------- */

/* ## Avatar
--------------------------------------------- */

.avatar {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 24px;
}

.alignright .avatar {
	margin-left: 24px;
}

.comment .avatar {
	margin: 0 16px 24px 0;
}

/* ## Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 40px;
}

.after-entry {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 20px 30px;
}

.after-entry .widget:last-of-type {
	margin-bottom: 0;
}

.breadcrumb {
	border-bottom: 1px solid #eee;
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 40px;
	padding-bottom: 10px;
}

.archive-description p:last-child,
.author-box p:last-child {
	margin-bottom: 0;
}

/* ## Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

.entry-content .search-form {
	margin-bottom: 40px;
	width: 50%;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* ## WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

a.alignnone {
	display: inline-block;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 28px;
}

img.alignnone,
.alignnone {
	margin-bottom: 12px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 24px 24px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 24px 24px;
}

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 0;
	text-align: center;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 28px;
}


/* # Widgets
---------------------------------------------------------------------------------------------------- */

.widget {
	margin-bottom: 40px;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li {
	margin-bottom: 10px;
}

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

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

.widget_calendar table {
	width: 100%;
}

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


/* # Site Header
---------------------------------------------------------------------------------------------------- */

.site-header {
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 0 30px;
}

/* ## Title Area
--------------------------------------------- */

.title-area {
	float: left;
	padding: 25px 0;
}

.wp-custom-logo .title-area {
	max-width: 350px;
	width: 100%;
}

.site-title {
	font-size: 30px;
	font-size: 1.875rem;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 0;
}

.site-title a,
.site-title a:focus,
.site-title a:hover {
	color: #333;
	text-decoration: none;
}

.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.site-description,
.wp-custom-logo .site-description {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* ## Header Widget Area
--------------------------------------------- */

.header-widget-area {
	float: right;
	text-align: right;
	width: 800px;
}


/* # Site Navigation
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: inline-block;
	margin-bottom: 0;
	padding-bottom: 0;
	text-align: left;
}

.genesis-nav-menu a {
	color: #333;
	display: block;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 400;
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item > a,
.genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #0073e5;
	text-decoration: none;
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 200px;
}

.genesis-nav-menu .sub-menu {
	border-top: 1px solid #eee;
	left: -9999px;
	opacity: 0;
	position: absolute;
	-webkit-transition: opacity 0.4s ease-in-out;
	transition: opacity 0.4s ease-in-out;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	border: 1px solid #eee;
	border-top: 0;
	font-size: 14px;
	font-size: 0.875rem;
	padding: 12px;
	position: relative;
	word-wrap: break-word;
}

.genesis-nav-menu .sub-menu .sub-menu {
	margin: -46px 0 0 199px;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: static;
}

.genesis-nav-menu .menu-item:hover > .sub-menu {
	left: auto;
	opacity: 1;
}

.genesis-nav-menu > .menu-bold > a {
	font-weight: 700;
}

.genesis-nav-menu > .menu-highlight > a {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	font-weight: 600;
	margin-left: 15px;
	padding-left: 20px;
	padding-right: 20px;
}

.genesis-nav-menu > .menu-highlight > a:focus,
.genesis-nav-menu > .menu-highlight > a:hover {
	background-color: #0073e5;
}

/* ## Accessible Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item > a:focus + ul.sub-menu,
.menu .menu-item.sfHover > ul.sub-menu {
	left: auto;
	opacity: 1;
}

.menu-toggle,
.sub-menu-toggle {
	display: none;
	visibility: hidden;
}

/* ## Site Header Navigation
--------------------------------------------- */

.site-header .genesis-nav-menu li li {
	margin-left: 0;
}

/* ## Primary and Secondary Navigation
--------------------------------------------- */

.nav-primary {
	background-color: #333;
}

.nav-primary .genesis-nav-menu a,
.nav-secondary .genesis-nav-menu a {
	padding-left: 15px;
	padding-right: 15px;
}

.nav-primary .genesis-nav-menu a {
	color: #fff;
}

.nav-primary .genesis-nav-menu a:focus,
.nav-primary .genesis-nav-menu a:hover,
.nav-primary .genesis-nav-menu .current-menu-item > a,
.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a:focus,
.nav-primary .genesis-nav-menu .sub-menu .current-menu-item > a:hover {
	color: #0073e5;
}

.nav-primary .genesis-nav-menu .sub-menu a {
	color: #333;
}

.nav-secondary {
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.nav-secondary .genesis-nav-menu {
	line-height: 1.5;
}

.nav-secondary .genesis-nav-menu .menu-item {
	display: inline-block;
}


/* # Content Area
---------------------------------------------------------------------------------------------------- */

/* ## Entry Content
--------------------------------------------- */

.entry {
	margin-bottom: 40px;
}

.entry-content ol:not([class*="kb-"]):not([class*="kt-"]),
.entry-content ul:not([class*="kb-"]):not([class*="kt-"]) {
	margin-bottom: 28px;
	padding-left: 40px;
}

.entry-content ol:not([class*="kb-"]):not([class*="kt-"]) > li {
	list-style-type: decimal;
}

.entry-content ul:not([class*="kb-"]):not([class*="kt-"]) > li {
	list-style-type: disc;
}

.entry-content ol:not([class*="kb-"]):not([class*="kt-"]) ul > li,
.entry-content ul:not([class*="kb-"]):not([class*="kt-"]) ul > li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}

/* Never apply Genesis list chrome inside Kadence blocks */
.entry-content [class*="wp-block-kadence-"] ul,
.entry-content [class*="wp-block-kadence-"] ol {
	margin-bottom: 0;
	padding-left: 0;
}

.entry-content [class*="wp-block-kadence-"] li {
	list-style: none;
	list-style-type: none;
}

.entry-content code {
	background-color: #f5f5f5;
}

.entry-content .caption {
	font-size: 14px;
	font-weight: 600;
	margin-top: -20px;
	text-align: center;
}

.content .sticky {
	background-color: #f5f5f5;
	padding: 30px;
}

/* ## Entry Meta
--------------------------------------------- */

p.entry-meta {
	font-size: 16px;
	font-size: 1rem;
	margin-bottom: 0;
}

.entry-header .entry-meta {
	margin-bottom: 20px;
}

.entry-footer .entry-meta {
	border-top: 1px solid #eee;
	padding-top: 12px;
}

.entry-categories,
.entry-tags {
	display: block;
}

.entry-comments-link::before {
	content: "\2014";
	margin: 0 6px 0 2px;
}

/* ## Pagination
--------------------------------------------- */

.pagination {
	clear: both;
	margin: 40px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

.archive-pagination a {
	background-color: #333;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 4px;
	padding: 8px 12px;
	text-decoration: none;
}

.archive-pagination a:focus,
.archive-pagination a:hover,
.archive-pagination .active a {
	background-color: #0073e5;
	color: #fff;
}

/* ## Entry Comments
--------------------------------------------- */

.comment-respond,
.entry-comments,
.entry-pings {
	font-size: 18px;
	font-size: 1.125rem;
	margin-bottom: 40px;
}

.comment-list li {
	padding: 32px 0 0 32px;
}

.comment-list .depth-1 {
	padding-left: 0;
}

.comment-header {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 24px;
}

.comment-header .comment-meta {
	display: inline-block;
	vertical-align: top;
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
	width: 50%;
}

.comment-respond label {
	display: block;
	margin-right: 12px;
}

.comment-header p {
	margin-bottom: 0;
}

.entry-pings .reply {
	display: none;
}


/* # Sidebar
---------------------------------------------------------------------------------------------------- */

.sidebar {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

.sidebar .widget {
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 40px;
}


/* # Site Footer
---------------------------------------------------------------------------------------------------- */

.site-footer {
	background-color: #fff;
	border-top: 1px solid #eee;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.5;
	padding: 30px;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}

.custom-header-content .wrap,
.custom-footer-content .wrap {
	margin: 0 auto;
	max-width: 1200px;
}

.custom-header-content {
	padding: 10px 0;
}

.custom-header-content .site-logo {
	margin-bottom: 10px;
}

.custom-header-content .site-title {
	font-size: 28px;
	font-size: 1.75rem;
	line-height: 1.2;
	margin: 0;
}

.custom-header-content .site-title a {
	color: #333;
	text-decoration: none;
}

.custom-header-content .site-description {
	color: #999;
	font-size: 16px;
	margin: 5px 0 0;
}

.custom-footer-content .wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
}

.custom-footer-content .footer-left,
.custom-footer-content .footer-right {
	flex: 1 1 240px;
}

.custom-footer-content .footer-right {
	text-align: right;
}

.footer-nav .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav .menu-item {
	display: inline-block;
	margin: 0 0 0 15px;
}

.footer-nav a {
	color: #333;
	text-decoration: none;
}

.footer-nav a:focus,
.footer-nav a:hover {
	color: #0073e5;
}

.back-to-top {
	align-items: center;
	background-color: #333;
	border-radius: 3px;
	bottom: 20px;
	color: #fff;
	display: flex;
	font-size: 18px;
	height: 40px;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	right: 20px;
	text-decoration: none;
	transition: opacity 0.2s ease, background-color 0.2s ease;
	width: 40px;
	z-index: 100;
}

.back-to-top.visible {
	opacity: 1;
	pointer-events: auto;
}

.back-to-top:focus,
.back-to-top:hover {
	background-color: #0073e5;
	color: #fff;
}


/* # Media Queries
---------------------------------------------------------------------------------------------------- */

/* ## Large desktops — keep 1200 content shell
--------------------------------------------- */

@media only screen and (max-width: 1260px) {

	.site-inner {
		max-width: 1200px;
	}

}

/* ## Small desktops / large tablets landscape
--------------------------------------------- */

@media only screen and (max-width: 1200px) {

	.site-inner {
		max-width: 100%;
	}

	.content-sidebar-sidebar .content-sidebar-wrap,
	.sidebar-content-sidebar .content-sidebar-wrap,
	.sidebar-sidebar-content .content-sidebar-wrap {
		width: 100%;
	}

	.header-widget-area {
		width: auto;
		max-width: 100%;
	}

}

/* ## Tablet (and below) — stacked layout + mobile menu
--------------------------------------------- */

@media only screen and (max-width: 1023px) {

	.site-inner {
		max-width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}

	body.kadence-builder-page .site-inner,
	body.kadence-blocks-active.full-width-content .site-inner {
		padding: 0;
	}

	body.kadence-builder-page .entry {
		margin-bottom: 0;
		padding: 0;
	}

	.content,
	.content-sidebar-wrap,
	.sidebar-primary,
	.sidebar-secondary,
	.title-area,
	.header-widget-area {
		float: none;
		width: 100%;
	}

	.site-header {
		position: static;
	}

	.site-header .wrap,
	.custom-header-content .wrap {
		text-align: center;
	}

	.site-header .title-area,
	.site-header .header-widget-area,
	.site-title,
	.site-logo {
		float: none;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.custom-header-content .site-logo img {
		height: auto;
		max-width: min(280px, 80vw);
	}

	.custom-footer-content .wrap {
		display: block;
		text-align: center;
	}

	.custom-footer-content .footer-right {
		margin-top: 15px;
		text-align: center;
	}

	.footer-nav .menu-item {
		display: inline-block;
		margin: 4px 8px;
	}

	.header-widget-area {
		float: none;
		text-align: center;
		width: 100%;
	}

	/* --- Mobile / tablet navigation --- */

	.menu-toggle,
	.sub-menu-toggle {
		border-radius: 0;
		display: block;
		visibility: visible;
	}

	.menu-toggle {
		background-color: #333;
		border: 0;
		color: #fff;
		font-size: 16px;
		font-weight: 600;
		margin: 0;
		overflow: hidden;
		padding: 14px 20px;
		text-align: center;
		width: 100%;
	}

	.menu-toggle:focus,
	.menu-toggle:hover,
	.menu-toggle.activated {
		background-color: #0073e5;
		color: #fff;
	}

	.sub-menu-toggle {
		background-color: transparent;
		border: 0;
		color: #fff;
		float: right;
		margin: 0;
		padding: 12px 16px;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 2;
	}

	.nav-secondary .sub-menu-toggle,
	.nav-secondary .sub-menu .sub-menu-toggle {
		color: #333;
	}

	.sub-menu-toggle:focus,
	.sub-menu-toggle:hover,
	.sub-menu-toggle.activated {
		background-color: rgba(0, 0, 0, 0.08);
	}

	.nav-primary,
	.nav-secondary {
		display: none;
		position: relative;
		width: 100%;
	}

	.genesis-nav-menu,
	.genesis-nav-menu .menu-item,
	.site-header ul.genesis-nav-menu {
		display: block;
		float: none;
		position: relative;
		text-align: left;
		width: 100%;
	}

	.genesis-nav-menu .menu-item {
		margin: 0;
	}

	.genesis-nav-menu .menu-item-has-children,
	.genesis-nav-menu .menu-item-has-children > a {
		position: relative;
	}

	.genesis-nav-menu a {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding: 14px 48px 14px 20px;
		width: 100%;
	}

	.nav-secondary .genesis-nav-menu a {
		border-top-color: #eee;
		color: #333;
	}

	.genesis-nav-menu .sub-menu {
		border: 0;
		display: none;
		left: auto;
		opacity: 1;
		position: relative;
		width: 100%;
		z-index: 1;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a {
		width: 100%;
	}

	.genesis-nav-menu .sub-menu a {
		background-color: transparent;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		padding-left: 36px;
	}

	.nav-secondary .genesis-nav-menu .sub-menu a {
		border-top-color: #eee;
		padding-left: 36px;
	}

	.genesis-nav-menu .sub-menu .sub-menu a {
		padding-left: 52px;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu .menu-item:hover > .sub-menu {
		left: auto;
		opacity: 1;
	}

	.genesis-nav-menu li.right {
		display: none;
	}

	.site-header .search-form {
		float: none;
		margin: 16px auto;
		width: 100%;
	}

	.entry-content .search-form,
	.search-form {
		width: 100%;
	}

	.entry-footer .entry-meta {
		margin: 0;
		padding-top: 12px;
	}

	.post-navigation {
		display: block;
	}

	.post-navigation .nav-previous,
	.post-navigation .nav-next {
		display: block;
		margin-bottom: 16px;
		width: 100%;
	}

	.wp-block-columns,
	.wp-block-media-text {
		display: block;
	}

	.wp-block-column,
	.wp-block-media-text__content,
	.wp-block-media-text__media {
		width: 100% !important;
	}

	.entry-content table,
	.wp-block-table {
		display: block;
		max-width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	iframe,
	embed,
	object,
	video {
		max-width: 100%;
	}

	.alignleft,
	.alignright {
		float: none;
		margin: 0 0 24px;
	}

	.single-featured-image,
	.page-featured-image,
	.entry-image {
		margin-bottom: 20px;
	}

	.single-featured-image img,
	.page-featured-image img,
	.entry-image img {
		height: auto;
		width: 100%;
	}

	.back-to-top {
		bottom: 16px;
		right: 16px;
	}

}

/* ## Mobile phones
--------------------------------------------- */

@media only screen and (max-width: 781px) {

	body {
		font-size: 16px;
		font-size: 1rem;
	}

	.site-inner {
		padding: 20px 16px;
	}

	body.kadence-builder-page .site-inner,
	body.kadence-blocks-active.full-width-content .site-inner {
		padding: 0;
	}

	body.kadence-builder-page .entry,
	body.kadence-builder-page .entry-content {
		margin: 0;
		padding: 0;
	}

	.site-header .wrap,
	.site-footer .wrap,
	.custom-header-content .wrap,
	.custom-footer-content .wrap {
		padding-left: 16px;
		padding-right: 16px;
	}

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings,
	.sidebar .widget {
		margin-bottom: 24px;
		padding: 20px;
	}

	body.kadence-builder-page .entry,
	body.kadence-builder-page .entry-content {
		margin: 0;
		padding: 0;
	}

	.entry-title,
	.archive-title {
		font-size: 28px;
		font-size: 1.75rem;
		word-wrap: break-word;
	}

	.sidebar {
		margin-top: 24px;
	}

	.pagination {
		margin: 24px auto;
	}

	.archive-pagination li a {
		margin-bottom: 4px;
	}

	.comment-list ul.children {
		margin-left: 0;
		padding-left: 16px;
	}

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0 0 20px;
		width: 100%;
	}

	input,
	select,
	textarea {
		font-size: 16px; /* prevents iOS zoom on focus */
	}

	.button,
	button,
	input[type="button"],
	input[type="reset"],
	input[type="submit"] {
		display: inline-block;
		max-width: 100%;
		width: auto;
	}

	.error-404-content .error-code {
		font-size: 72px;
	}

}

/* ## Small phones
--------------------------------------------- */

@media only screen and (max-width: 480px) {

	.site-title {
		font-size: 24px;
		font-size: 1.5rem;
	}

	.entry-title,
	.archive-title {
		font-size: 24px;
		font-size: 1.5rem;
	}

	.nav-primary .genesis-nav-menu a,
	.nav-secondary .genesis-nav-menu a {
		font-size: 15px;
	}

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings,
	.sidebar .widget {
		padding: 16px;
	}

	body.kadence-builder-page .entry,
	body.kadence-builder-page .entry-content {
		margin: 0;
		padding: 0;
	}

}

