/*
Theme Name: Genesis Sample
Theme URI: https://demo.studiopress.com/
Description: This is the sample theme created for the Genesis Framework.
Author: StudioPress
Author URI: https://www.studiopress.com/

Version: 3.4.6

Tags: accessibility-ready, block-styles, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, left-sidebar, one-column, right-sidebar, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, two-columns, wide-blocks

Template: genesis

License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Text Domain: genesis-sample
Requires at least: 5.4
Requires PHP: 5.6
*/

/* Table of Contents
- HTML5 Reset
	- Baseline Normalize
	- Box Sizing
	- Float Clearing
- Defaults
	- Typographical Elements
	- Headings
	- Objects
	- Gallery
	- Forms
	- Tables
	- Screen Reader Text
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Widgets
	- Featured Content
- Plugins
	- Genesis eNews Extended
	- Genesis Simple FAQ
	- WPForms
- Skip Links
- Site Header
	- Title Area
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Footer Menu
- Content Area
	- Entry Content
	- Entry Meta
	- Pagination
	- Entry Comments
- Sidebar
- Footer Widgets
- Site Footer
- Media Queries
	- Min-width: 960px
		- Site Header
		- Genesis Menu
		- Responsive Menu
		- Header Menu
		- Site Inner
		- Content
		- Sidebar
		- Author Box
		- After Entry
		- Column Classes
		- Entry Misc.
		- Footer Widgets
- Print Styles
*/

:root {
  --dark-gray: #515556;
  --primary: #DB6B30;
  --secondary: #6CACE4;
  --btn-light: #fff;
  --btn-shadow-glow: 0 0 0 8px rgba(219, 107, 48, 0.15);
  --btn-secondary-shadow-glow: 0 0 0 8px rgba(219, 107, 48, 0.08);
  --btn-border: 1px solid rgba(219, 107, 48, 0.15);
}

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

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
---------------------------------------------------------------------------- */
/* stylelint-disable */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}
/* stylelint-enable */

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

html {
	box-sizing: border-box;
}

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

/* Float Clearing
--------------------------------------------- */

.author-box::before,
.clearfix::before,
.entry::before,
.entry-content::before,
.footer-widgets::before,
.nav-primary::before,
.nav-secondary::before,
.pagination::before,
.site-container::before,
.site-footer::before,
.site-header::before,
.site-inner::before,
.widget::before,
.wrap::before {
	content: " ";
	display: table;
}

.author-box::after,
.clearfix::after,
.entry::after,
.entry-content::after,
.footer-widgets::after,
.nav-primary::after,
.nav-secondary::after,
.pagination::after,
.site-container::after,
.site-footer::after,
.site-header::after,
.site-inner::after,
.widget::after,
.wrap::after {
	clear: both;
	content: " ";
	display: table;
}


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

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

html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

body {
	background-color: #fff;
	color: #333;
	font-family: "Inter", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.625;
	margin: 0;
	overflow-x: hidden;
}

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

a {
	color: var(--primary);
	text-decoration: underline;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

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: 0;
	border-collapse: collapse;
	border-bottom: 1px solid currentColor;
	clear: both;
	color: #eee;
	margin: 1.65em auto;
}

b,
strong {
	font-weight: 700;
}

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

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

blockquote {
	margin: 30px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Merriweather", sans-serif;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px;
}

h1 {
	font-size: 40px;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 20px;
}

.entry-content h3,
.entry-content h4 {
	font-weight: 600;
}

.entry-content h4 {
	margin-top: 40px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

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

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

img {
	height: auto;
	vertical-align: top;
}

figure {
	margin: 0;
}

/* Gallery
--------------------------------------------- */

.gallery {
	overflow: hidden;
}

.gallery img {
	border: 1px solid #eee;
	height: auto;
	padding: 4px;
}

.gallery img:focus,
.gallery img:hover {
	border: 1px solid #999;
	outline: none;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
}

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

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

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

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

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

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

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

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

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
	clear: left;
}

.gallery-item {
	float: left;
	margin: 0 0 30px;
	text-align: center;
}

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

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

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

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

:-ms-input-placeholder {
	color: #333;
	opacity: 1;
}

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

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form input[type="submit"],
.site-container div.wpforms-container-full .wpforms-form button[type="submit"],
.button {
    background-color: var(--primary);
    border: 0;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    width: auto;
    transition:
      box-shadow 0.3s cubic-bezier(.4,0,.2,1),
      background 0.2s cubic-bezier(.4,0,.2,1),
      color 0.2s;
	border: 1px solid var(--primary);
}

body button:focus,
body button:hover,
body input[type="button"]:focus,
body input[type="button"]:hover,
body input[type="reset"]:focus,
body input[type="reset"]:hover,
body input[type="submit"]:focus,
body input[type="submit"]:hover,
body .site-container div.wpforms-container-full .wpforms-form input[type="submit"]:focus,
body .site-container div.wpforms-container-full .wpforms-form input[type="submit"]:hover,
body .site-container div.wpforms-container-full .wpforms-form button[type="submit"]:focus,
body .site-container div.wpforms-container-full .wpforms-form button[type="submit"]:hover,
body .button:focus,
body .button:hover {
	background-color: #f37b3a;
	border-color: #f37b3a;
    box-shadow: var(--btn-shadow-glow);
	color: #fff;
}

body button.secondary,
body input[type="button"].secondary,
body input[type="reset"].secondary,
body input[type="submit"].secondary,
body body .site-container div.wpforms-container-full .wpforms-form input[type="submit"].secondary,
body .site-container div.wpforms-container-full .wpforms-form button[type="submit"].secondary,
body .button.secondary {
    background-color: #fff;
    border: 0;
    border-radius: 30px;
    color: var(--primary);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    width: auto;
	border: var(--btn-border);
    transition:
      box-shadow 0.3s cubic-bezier(.4,0,.2,1),
      background 0.2s cubic-bezier(.4,0,.2,1),
	  border 0.4s ease-out,
      color 0.2s;
}

body button.secondary:focus,
body button.secondary:hover,
body input[type="button"].secondary:focus,
body input[type="button"].secondary:hover,
body input[type="reset"].secondary:focus,
body input[type="reset"].secondary:hover,
body input[type="submit"].secondary:focus,
body input[type="submit"].secondary:hover,
body .site-container div.wpforms-container-full .wpforms-form input[type="submit"].secondary:focus,
body .site-container div.wpforms-container-full .wpforms-form input[type="submit"].secondary:hover,
body .site-container div.wpforms-container-full .wpforms-form button[type="submit"].secondary:focus,
body .site-container div.wpforms-container-full .wpforms-form button[type="submit"].secondary:hover,
body .button.secondary:focus,
body .button.secondary:hover {
    box-shadow: var(--btn-secondary-shadow-glow);
	color: var(--primary);
	background-color: #fff;
	border: 1px solid var(--primary);
}

.genesis-nav-menu > .menu-item:last-child::after {
	content: none;
}

.genesis-nav-menu > .menu-item:last-child a {
    background-color: #fff;
    border-radius: 30px;
    color: var(--primary);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 24px;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    width: auto;
    border: var(--btn-border);
    transition: box-shadow 0.3s cubic-bezier(.4,0,.2,1), background 0.2s cubic-bezier(.4,0,.2,1), border 0.4s ease-out, color 0.2s;
}
.genesis-nav-menu > .menu-item:last-child a:hover {
    box-shadow: var(--btn-secondary-shadow-glow);
	color: var(--primary);
	background-color: #fff;
	border: 1px solid var(--primary);
}

.entry-content .button:focus,
.entry-content .button:hover {
	color: #fff;
}

.button {
	display: inline-block;
}

.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 {
	padding: 0.5em;
}

tr {
	border-top: 1px solid #eee;
}

th {
	font-weight: 600;
	padding: 0.5em;
}

/* 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-text:focus,
.screen-reader-shortcut: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; /* Above WP toolbar. */
}

.more-link {
	display: inline-block;
	position: relative;
	margin-bottom: 30px;
}


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

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

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

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

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

.site-inner {
	clear: both;
	margin: 0 auto;
	/* padding: 60px 30px 0; */
}

.single:not(.home) .site-inner,
body:not(.home) .site-inner {
    padding: 60px 24px 0;
}


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

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

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

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

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

.comment .avatar {
	margin: 0 15px 20px 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 #fff;
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 10px;
}

.genesis-title-hidden .breadcrumb {
	margin-top: 40px;
}

.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;
}

/* Titles
--------------------------------------------- */

.archive-description .entry-title,
.archive-title,
.author-box-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.entry-title {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 40px;
}
.entry-title a,
.sidebar .widget-title a {
	color: #333;
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: #0073e5;
}

.widget-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.genesis-title-hidden .site-inner {
	padding-top: 0;
}

/* 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 30px;
}

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

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

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

figcaption,
.gallery-caption,
.wp-caption-text {
	font-size: 14px;
	font-weight: 600;
	margin-top: 0.5em;
	margin-bottom: 1em;
	padding-left: 10px;
	padding-right: 10px;
	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 30px;
}

/* 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:last-of-type {
	padding-bottom: 0;
}

.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;
}

/* Featured Content
--------------------------------------------- */

.featured-content .entry {
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}

.featured-content .entry:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
}

.featured-content .entry-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 5px;
    margin-top: 10px;
}

.featured-content p {
    font-size: 16px;
    line-height: 28px;
}
/* Plugins
---------------------------------------------------------------------------- */

/* Genesis eNews Extended
--------------------------------------------- */

.after-entry .enews {
	text-align: center;
	padding: 10px;
}

.sidebar .enews {
	background-color: #f5f5f5;
	padding: 30px;
}

.enews-widget input {
	font-size: 16px;
	margin-bottom: 10px;
}

.after-entry .enews-widget input {
	text-align: center;
}

.enews-widget input[type="submit"] {
	margin: 0;
	width: 100%;
}

.enews form + p {
	margin-top: 20px;
}

/* Genesis Simple FAQ
--------------------------------------------- */

.gs-faq__question {
	background: transparent;
	border-bottom: 1px solid #eee;
	color: #333;
	padding-left: 0;
	padding-right: 0;
}

.gs-faq__question:focus,
.gs-faq__question:hover {
	background: transparent;
	color: #0073e5;
}

.gs-faq__question::after {
	content: "\f132";
	font-family: dashicons; /* stylelint-disable-line font-family-no-missing-generic-family-keyword */
	float: right;
}

.gs-faq__question.gs-faq--expanded::after {
	content: "\f460";
}

/* WP Forms
--------------------------------------------- */

.entry-content .wpforms-container {
	margin-bottom: 40px;
}

.entry-content .wpforms-form .wpforms-field {
	clear: both;
	margin: 20px 0;
	overflow: hidden;
}

.site-container .wpforms-container .wpforms-form .wpforms-field input {
	border-radius: 0;
	height: auto;
	padding: 15px;
}

.site-container .entry-content .wpforms-form .wpforms-field-label {
	font-weight: 600;
}

.site-container .entry-content .wpforms-form .wpforms-field-sublabel {
	font-size: 14px;
	font-weight: 300;
}

.entry-content .wpforms-form .wpforms-field-hp {
	display: none !important;
	left: -9000px !important;
	position: absolute !important;
}

.site-container .entry-content .wpforms-form textarea {
	padding: 15px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-small {
	height: 120px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-medium {
	height: 200px;
}

.site-container .entry-content .wpforms-form textarea.wpforms-field-large {
	height: 300px;
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */
:focus {
	color: #333;
	outline: #ccc solid 1px;
}


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

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

body:not(.home) .site-header {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}


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

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

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

.wp-custom-logo .custom-logo-link {
	display: block;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.site-title {
	font-size: 20px;
	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;
}

.site-description,
.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 Navigation
---------------------------------------------------------------------------- */

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

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
    color: #000;
    display: block;
    font-size: 16px;
    font-weight: 400;
    outline-offset: -1px;
    padding-bottom: 12px;
    padding-top: 12px;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-weight: 500;
}

.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: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding-left: 15px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: #fff;
	font-size: 14px;
	position: relative;
	word-wrap: break-word;
}

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

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

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

.js .nav-primary {
	display: none;
	position: relative;
}

.genesis-responsive-menu .genesis-nav-menu .menu-item:hover > .sub-menu {
	display: none;
}

.menu-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-width: 0;
	color: #333;
	display: block;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
	color: #0073e5;
}


.menu-toggle:before {
		font-size: 34px;
	margin-right: 0;
}

.menu-toggle {
	float: right;
	margin-bottom: 20px;
	margin-top: 20px;
	padding: 15px 0;
	padding: 4px !important;
	width: auto;
}

.menu-toggle.activated::before {
	content: "\f335";
}

.site-header .dashicons-before::before {
	transition: none;
}

.site-header .menu-toggle::before {
	float: left;
	position: relative;
	text-rendering: auto;
	top: 1px;
}

.sub-menu-toggle {
	float: right;
	padding: 9px 10px;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
}

.sub-menu-toggle::before {
	display: inline-block;
	text-rendering: auto;
	transform: rotate(0);
	transition: transform 0.25s ease-in-out;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding-bottom: 26px;
	padding-top: 25px;
	width: 100%;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin-top: 10px;
}

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

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

.nav-secondary a {
	margin-left: 10px;
	margin-right: 10px;
	padding: 0;
}



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

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

.entry {
	margin-bottom: 40px;
}

.entry-content ol,
.entry-content ul {
	margin-bottom: 30px;
	padding-left: 40px;
}

.entry-content ol > li {
	list-style-type: decimal;
}

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

.entry-content ol ul > li,
.entry-content ul ul > li {
	list-style-type: circle;
}

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

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

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

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

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

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

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

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

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

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

.pagination {
    clear: both;
    margin: 60px 0;
    text-align: center;
}
.adjacent-entry-pagination {
	margin-bottom: 0;
}

.archive-pagination li {
	display: inline;
}

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

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

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

.comment-respond,
.entry-comments,
.entry-pings {
	margin-bottom: 40px;
}

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

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

.comment-header {
	margin-bottom: 30px;
}

.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;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 10px;
}

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

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

.sidebar .widget {
	margin-bottom: 40px;
}

.sidebar p {
	margin-bottom: 20px;
}

/* Footer Widgets
---------------------------------------------------------------------------- */

.footer-widgets {
	border-top: 1px solid #eee;
	background-color: #fff;
	clear: both;
	padding: 60px 0;
}

.footer-widgets .wrap {
	margin-left: auto;
	margin-right: auto;
}

.footer-widget-area {
	margin-bottom: 40px;
	padding-left: 30px;
	padding-right: 30px;
}

.footer-widget-area:last-child,
.footer-widgets .widget:last-child {
	margin-bottom: 0;
}


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

.site-footer {
    background-color: #121212;
    font-size: 18px;
    line-height: 1.5;
	padding: 80px 30px 0;
    text-align: left;
    color: #BBBBBB;
}

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




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

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

	table {
		table-layout: auto;
		word-break: normal;
	}

}

@media only screen and (min-width: 960px) {

	/* Parent menu items */
	.genesis-nav-menu .menu-item-has-children > a::after {
		font-family: dashicons;
		content: "\f347";
		font-size: 14px;
		margin-left: 6px;
		vertical-align: middle;
	}

	/* Second-level submenu items */
	.genesis-nav-menu .menu-item-has-children .menu-item-has-children > a::after {
		font-family: dashicons;
		content: "\f345"; 
		font-size: 14px;
		margin-left: 6px;
		vertical-align: middle;
	}

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

	.site-header {
		position: sticky;
		top: 0;
		z-index: 9999;
	}

	.admin-bar .site-header {
		top: 32px;
	}

	/* Genesis Menu
	--------------------------------------------- */

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

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

	.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;
	}

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

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

	.genesis-nav-menu .sub-menu a {
		border: 1px solid #eee;
		border-top: 0;
		padding-bottom: 15px;
		padding-top: 15px;
	}

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


	/* Header Menu
	--------------------------------------------- */

	.nav-primary {
		clear: none;
		float: right;
		width: auto;
	}

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

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

	.genesis-nav-menu > li {
    	margin: 0 16px;
	}
	
	/* Site-Inner
	--------------------------------------------- */

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

	/* Content
	--------------------------------------------- */

	:not(.full-width-content) .content {
		float: left;
		width: 65%;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}

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

	.sidebar {
		float: right;
		width: 30%;
	}

	.sidebar-content .sidebar {
		float: left;
	}

	/* Author Box
	--------------------------------------------- */

	.author-box {
		background-color: #f5f5f5;
		padding: 30px;
	}

	/* After Entry
	--------------------------------------------- */

	.after-entry {
		padding: 40px 60px;
	}

	.after-entry .enews {
		padding-left: 30px;
		padding-right: 30px;
	}

	/* Column Classes
	--------------------------------------------- */

	.five-sixths,
	.four-sixths,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fourths,
	.three-sixths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		float: left;
		margin-left: 2.564102564102564%;
	}

	.one-half,
	.three-sixths,
	.two-fourths {
		width: 48.717948717948715%;
	}

	.one-third,
	.two-sixths {
		width: 31.623931623931625%;
	}

	.four-sixths,
	.two-thirds {
		width: 65.81196581196582%;
	}

	.one-fourth {
		width: 23.076923076923077%;
	}

	.three-fourths {
		width: 74.35897435897436%;
	}

	.one-sixth {
		width: 14.52991452991453%;
	}

	.five-sixths {
		width: 82.90598290598291%;
	}

	.first {
		clear: both;
		margin-left: 0;
	}

	/* Entry Misc.
	--------------------------------------------- */

	.after-entry,
	.archive-description,
	.author-box,
	.comment-respond,
	.entry,
	.entry-comments,
	.entry-pings {
		margin-bottom: 60px;
	}

	/* Footer Widgets
	--------------------------------------------- */

	.footer-widgets .wrap {
		max-width: 1140px;
	}

	.footer-widget-area {
		float: left;
		margin-bottom: 0;
		width: calc(100% / 3);
	}

}

@media only screen and (min-width: 1023px) {
	
	/* Responsive Menu
	--------------------------------------------- */

	.js .nav-primary {
		display: block;
		padding-top: 25px;
	}

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

/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: #333 !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

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

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}


/* FLEX ROW CONTAINER */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* FLEX COLUMN DEFAULT (auto width) */
.flex-col {
  flex: 1 1 0;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* FLEX COLUMNS BY SIZE */
.flex-col-1  { flex: 0 0 8.333%;  max-width: 8.333%; }
.flex-col-2  { flex: 0 0 16.666%; max-width: 16.666%; }
.flex-col-3  { flex: 0 0 25%;     max-width: 25%; }
.flex-col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.flex-col-5  { flex: 0 0 41.666%; max-width: 41.666%; }
.flex-col-6  { flex: 0 0 50%;     max-width: 50%; }
.flex-col-7  { flex: 0 0 58.333%; max-width: 58.333%; }
.flex-col-8  { flex: 0 0 66.666%; max-width: 66.666%; }
.flex-col-9  { flex: 0 0 75%;     max-width: 75%; }
.flex-col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.flex-col-11 { flex: 0 0 91.666%; max-width: 91.666%; }
.flex-col-12 { flex: 0 0 100%;    max-width: 100%; }

/* FLEX ALIGNMENT HELPERS */
.flex-center         { justify-content: center; align-items: center; }
.flex-between        { justify-content: space-between; }
.flex-even           { justify-content: space-evenly; }
.flex-around         { justify-content: space-around; }
.flex-align-top      { align-items: flex-start; }
.flex-align-bottom   { align-items: flex-end; }
.flex-align-middle   { align-items: center; }
.flex-nowrap        { flex-wrap: nowrap; }
.flex-wrap          { flex-wrap: wrap; }

/* FLEX DIRECTION (optional) */
.flex-column         { flex-direction: column; }
.flex-row-dir        { flex-direction: row; }

/* GAP SUPPORT (for modern browsers) */
.flex-gap-8  { gap: 8px; }
.flex-gap-16 { gap: 16px; }
.flex-gap-24 { gap: 24px; }
.flex-gap-32 { gap: 32px; }

/* OPTIONAL: REMOVE GUTTER ON ROWS */
.flex-no-gutter .flex-col,
.flex-no-gutter [class*="flex-col-"] {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  /* Force flex direction column on mobile */
  .flex-row,
  .flex-row-dir,
  .flex-wrap,
  .flex-nowrap {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }
  /* All columns go full width */
  .flex-col,
  [class*="flex-col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .flex-gap-8,
  .flex-gap-16,
  .flex-gap-24,
  .flex-gap-32 {
    gap: 0 !important;
  }
}

/* --- FONT BASE STYLES (Desktop) --- */
h1,
.heading-1 {
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 54px;
  line-height: 70px;
  letter-spacing: -1px;
}

h2,
.heading-2,
h1.entry-title, 
h1.archive-title {
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 44px;
  line-height: 56px;
  letter-spacing: 0;
}

h3,
.heading-3 {
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 46px;
  letter-spacing: 0;
}

h4,
.heading-4 {
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: 0;
}

h5,
.heading-5 {
  font-family: 'Merriweather', serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}

.heading-5-regular {
  font-family: 'Merriweather', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
}

.entry-content h1 {
	font-size: 40px;
	line-height: 54px;
}

.entry-content h2 {
	font-size: 32px;
    line-height: 42px;
}

.entry-content h3 {
	font-size: 24px;
	line-height: 32px;
}

.entry-content h4 {
	font-size: 20px;
    line-height: 30px;
}

.entry-content h3,
.entry-content h4 {
	font-weight: 600;
}

.entry-content h4 {
	margin-top: 40px;
}

.entry-content h5 {
	font-size: 18px;
    line-height: 28px;
}

.entry-content h6 {
	font-size: 16px;
    line-height: 26px;
}

.body,
p {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	letter-spacing: 0;
}

.button, .button-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
}

.sub-heading {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 24px;
}

.menu-toggle {
	font-size: 0; /* Hides the text */
}
.menu-toggle:before {
	font-size: 24px; /* Restore icon size */
	margin-right: 0; /* Remove spacing if needed */
}

.genesis-nav-menu > li.menu-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(.77,0,.18,1);
}

.genesis-nav-menu > .menu-item:hover::after,
.genesis-nav-menu > .menu-item:focus::after {
  width: 100%;
}



.hero{
	height: clamp(700px, 100vh, 800px);
    align-items: center;
    min-height: 500px;
}

.hero h1 {
    max-width: 610px;
}

.hero-text {
    max-width: 556px;
}

/* Button */
.button {
	position: relative;
	display: inline-flex;
	align-items: center;
	overflow: hidden;
}

.arrow-stack {
	display: inline-block;
	position: relative;
	width: 22px;
	height: 22px;
	margin-left: 0.6em;
	overflow: hidden;
}

.arrow {
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s cubic-bezier(.4,0,.2,1);
	will-change: transform, opacity;
}

.arrow-in {
	opacity: 0;
	transform: translateX(-22px);
	z-index: 1;
}

.arrow-out {
	opacity: 1;
	transform: translateX(0);
	z-index: 2;
}

.button:hover .arrow-out {
	opacity: 0;
	transform: translateX(22px);
}

.button:hover .arrow-in {
	opacity: 1;
	transform: translateX(0);
}

.hero-image {
    position: relative;
}
.hero-badge {
    position: absolute;
    max-width: 140px;
    bottom: 12px;
    left: 12px;
}
.award-item {
    border-radius: 30px;
    border: 2px solid #EDEDED;
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(4px);
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 12px;
    max-width: 148px;
    gap: 6px;
}
.award-title {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
}

.award-description {
    color: var(--dark-gray);
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.hero-awards img {
    width: 40px;
    height: 40px;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-slide-up {
  animation: fadeSlideUp 0.6s ease-out;
}

.award-item:first-child {
    top: 20vh;
    left: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease-out forwards;
	animation-delay: 0.3s;
}

.award-item:nth-child(2) {
    top: 5vh;
    right: -48px;
  opacity: 0;
  animation: fadeSlideUp 0.6s ease-out forwards;
	animation-delay: 0.8s;
}

.award-item:nth-child(3) {
    bottom: 16px;
    right: 16px;

  opacity: 0;
  animation: fadeSlideUp 0.6s ease-out forwards;
  animation-delay: 1.2s;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-text ul li {
    margin-bottom: 10px;
}

.hero-text ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 10px;
    display: inline-block;
    margin: 2px 10px 2px 0;
}

.button-group {
    display: flex;
    gap: 16px;
}

.hero-image img {
    border-radius: 24px;
}

.hero-col-2 {
	justify-content: end;
    display: flex;
}


/* Services */
.services-section {
    padding: 16px;
    margin: 0;
}

.services-columns {
    gap: 24px;
    padding-top: 80px;
}

.service-block {
    padding: 0;
}

.services-section .wrap {
    background-color: #FFF7F4;
    margin: 0;
    padding: 84px 0;
    border-radius: 40px;
    flex-direction: column;
    width: 100%;
}

.service-image {
	position: relative;
	overflow: hidden;
    border-radius: 24px;
	transition: all 0.4s ease-out;
}

.service-image::before {
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 50%);
    width: 100%;
    height: 100%;
	transition: all 0.4s ease-out;
	opacity: 0;
}


.service-block:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    border-radius: 24px;
}

.service-image h4 {
    position: absolute;
    bottom: 0;
    left: 24px;
    color: #fff;
}

.service-text-container {
	padding: 8px;
}

.service-link {
    background: #fff;
    padding: 44px 24px 28px;
    border-radius: 0 0 24px 24px;
    margin-top: -24px;
    flex-direction: column;
}

.service-link a {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-link h5 {
    margin-bottom: 4px;
}

.service-link .icon-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #FBEDE4; 
  border-radius: 50%;
  color: var(--primary);
  font-size: 22px;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.service-link .icon-plus svg {
  width: 22px;
  height: 22px;
  display: block;
}

.service-block:hover .icon-plus,
.service-link .icon-plus:hover {
  background: var(--primary);
  color: #fff;
}

.service-block:hover .service-image {
	transform: translateY(8px);
}

.service-block:hover .service-link a,
.service-link a:hover {
	color: var(--primary);
}

/* Intro */
.intro-image img {
    border-radius: 24px;
}

.intro-col-1 {
    padding-top: 64px;
}

.intro-text {
    max-width: 478px;
}

.intro-section {
    padding-top: 80px;
}

/* Awards Bar */
.awards-bar.row,
.text-bar.row {
    background: var(--primary);
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    align-content: center;
    padding: 12px;
    gap: 24px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.awards-bar .award-text:not(:last-child)::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='45' viewBox='0 0 18 45' fill='none'><line x1='16.6271' y1='0.393056' x2='0.548488' y2='44.5686' stroke='white' stroke-opacity='0.4'/></svg>");
    content: '';
    width: 16px;
    height: 44px;
    display: block;
	margin-left: 24px;
}

.awards-bar .award-text,
.text-bar .award-text {
    display: flex;
    align-items: center;
}

.band-text-2 {
    padding: 14px 0;
    text-align: center;
    line-height: 1.2;
}

/* First Visit */
.home .site-inner section.first-visit {
    z-index: 3;
	position: relative;
	padding-bottom: 0;
}

/* .firstvisit-image {
    position: absolute;
	bottom: -130px;
} */

/* @media screen and (min-width: 768px) {
	.firstvisit-col-1 {
    	min-height: 650px;
	}
} */

.firstvisit-image img {
    position: absolute;
    bottom: 0;
    right: 70px;
}

.first-visit {
    padding-top: 120px;
    padding-bottom: 0;
}

.firstvisit-headings h2 {
    max-width: 320px;
}

.firstvisit-text {
    margin-bottom: 54px;
    max-width: 490px;
}


/* Why Choose Us */
.home .site-inner section.stats-section {
    background-color: #F2F6F9;
    padding-bottom: 0;
    padding-top: 80px;
}

.stat-block img {
    width: 90px;
    height: 90px;
}

.stat-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stats-headings .sub-heading {
    color: var(--secondary);
}

.stats-headings {
    text-align: center;
    margin-bottom: 60px;
}

.stats-columns {
	margin-bottom: 60px;
}

.stat-description h3 {
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -2px;
    text-transform: capitalize;
    color: var(--secondary);
    margin-bottom: 6px;
}

.stat-description p {
    margin: 0;
}

.stats-section h2 {
    max-width: 650px;
    margin: 0 auto;
}

.stats-gallery img {
    width: 100%;
}

/* Icons section */
section.icons-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.icon-block.flex-col {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
    text-align: center;
    flex-basis: auto;
    max-width: 260px;
}

.icon-columns {
    gap: 100px;
}

.icon-block.flex-col {
    flex-basis: auto;
    max-width: 280px;
}

.icon-block img {
    width: 90px;
    height: 90px;
}

.icons-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icons-section h2 {
    max-width: 670px;
    text-align: center;
}

.icons-headings .sub-heading {
    color: var(--secondary);
}

.icons-headings {
    text-align: center;
    margin-bottom: 60px;
}

.icons-columns {
    margin: 60px 0 0;
    max-width: 992px;
    display: flex;
    gap: 40px;
}

.icons-description h3 {
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 44px;
    letter-spacing: -2px;
    text-transform: capitalize;
    color: var(--secondary);
    margin-bottom: 6px;
}

.icons-description p {
    margin: 0;
}


/* About Section */
.home .site-inner section.about {
    z-index: 3;
}

.about-section {
    padding-top: 80px;
    padding-bottom: 120px;
	justify-content: space-between;
    gap: 16px;
}

.about-text {
    margin-bottom: 60px;
}

.about-image img {
    border-radius: 24px;
}

/* Telemedicine */
.telemedicine-section {
    gap: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
	min-height: 700px;
}

.telemedicine-list ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #db6b30;
    border-radius: 10px;
    display: inline-block;
    margin: 2px 10px 2px 0;
}

.telemedicine-section h2 {
    max-width: 620px;
}

.telemedicine-list-container {
    padding: 32px;
    background-color: #FFF7F4;
    border-radius: 24px;
    margin-bottom: 32px;
}

.telemedicine-pets {
    max-width: 240px;
    margin-bottom: 54px;
}

.telemedicine-image {
    position: absolute;
    max-width: clamp(600px, 720px, 55vw);
	z-index: -1;
    /* left: 0; */
    bottom: 0;
}

/* CTA */
.home .site-inner section.cta-section {
    height: 100vh;
    max-height: 900px;
    position: sticky;
    top: 0;
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 1s ease-out;
    height: clamp(500px, 70vw, 100vh);
	background-position-x: 0;
	padding: 80px 0;
}


.home .site-inner section.team-section {
    /* height: 100vh;
    max-height: 900px; */
    /* position: sticky;
    top: 0; */
	background-repeat: no-repeat;
	background-size: cover;
	transition: all 1s ease-out;
	display: flex;
    justify-content: flex-end;
	padding-bottom: 80px;
	padding-top: 80px;
}

.cta-section h2 {
    margin-bottom: 40px;
    max-width: 490px;
}

img.team-image {
    margin-top: 40px;
}

img.team-image {
    margin-top: 40px;
    width: clamp(200px, 30vw, 480px);
}

.home .site-inner section.team-section .container {
    max-width: min(550px, 40vw);
    color: #fff;
    margin: 0;
}


.team-section h2 {
    margin-bottom: 40px;
}

.home .site-inner section.inview {
  background-position-y: -50px;
}

/* Testimonials */
.home .site-inner section.testimonials-section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    z-index: 3;
    background-color: #fff;
    overflow: visible;
}

.testimonial-text {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 80px;
}

.testimonial-item {
    display: flex !important;
    padding: 0;
    margin: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 86px;
    outline: none;
}

.testimonial-item img {
    width: 100%;
    border-radius: 24px;
}

.testimonial-author {
    color: #828282;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.testimonial-highlight {
    color: #000;
    font-family: Merriweather;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
	padding-right: 54px;
}

.slick-dots li {
    width: 64px !important;
    height: 6px !important;
    padding: 0 !important;
	background: rgba(112, 115, 114, 0.25);
    border-radius: 20px;
    margin: 0;
	transition: all 0.3s ease-out;
}

.slick-dots li button,
.slick-dots li button:hover,
.slick-dots li button:active {
    background: transparent !important;
	box-shadow: none !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
}

.slick-dots .slick-active, .slick-dots li:hover {
    background: var(--primary);
}

.slick-dots {
    position: absolute;
    bottom: -54px !important;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
}

.slick-dots li button:before {
	display: none;
}

.testimonial-section-cat {
    position: absolute;
    width: 320px;
    bottom: -110px;
    right: 0;
}

.slick-slide {
    min-height: 500px;
}

.slick-prev.slick-arrow,
.slick-prev.slick-arrow:hover,
.slick-prev.slick-arrow:focus  {
	width: 54px;
	height: 54px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	border: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,<svg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='-0.5' y='0.5' width='59' height='59' rx='29.5' transform='matrix(-1 0 0 1 59 0)' stroke='%23DB6B30'/><g clip-path='url(%23clip0_617_46)'><path d='M33.375 38.9373C33.4857 38.9386 33.5954 38.9168 33.6971 38.8732C33.7988 38.8296 33.8903 38.7652 33.9656 38.6842C34.3031 38.3467 34.3031 37.8235 33.9656 37.486L26.9625 30.4829L33.9656 23.4967C34.3031 23.1592 34.3031 22.636 33.9656 22.2985C33.6281 21.961 33.105 21.961 32.7675 22.2985L25.1906 29.9092C24.8531 30.2467 24.8531 30.7698 25.1906 31.1073L32.7844 38.6842C32.9531 38.8529 33.1725 38.9373 33.375 38.9373Z' fill='%23DB6B30'/></g><defs><clipPath id='clip0_617_46'><rect width='11.8125' height='27' fill='white' transform='matrix(-1 0 0 1 35.9062 17)'/></clipPath></defs></svg>");
	z-index: 1;
	left: 0;
}

.slick-next.slick-arrow, 
.slick-next.slick-arrow:hover,
.slick-next.slick-arrow:focus  {
	width: 54px;
	height: 54px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	border: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,<svg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'><rect x='0.5' y='0.5' width='59' height='59' rx='29.5' stroke='%23DB6B30'/><g clip-path='url(%23clip0_617_43)'><path d='M26.625 38.9373C26.5143 38.9386 26.4046 38.9168 26.3029 38.8732C26.2012 38.8296 26.1097 38.7652 26.0344 38.6842C25.6969 38.3467 25.6969 37.8235 26.0344 37.486L33.0375 30.4829L26.0344 23.4967C25.6969 23.1592 25.6969 22.636 26.0344 22.2985C26.3719 21.961 26.895 21.961 27.2325 22.2985L34.8094 29.9092C35.1469 30.2467 35.1469 30.7698 34.8094 31.1073L27.2156 38.6842C27.0469 38.8529 26.8275 38.9373 26.625 38.9373Z' fill='%23DB6B30'/></g><defs><clipPath id='clip0_617_43'><rect width='11.8125' height='27' fill='white' transform='translate(24.0938 17)'/></clipPath></defs></svg>");
	z-index: 1;
	right: 0;
}

@media screen and (min-width: 1300px) {
	.slick-next.slick-arrow, 
	.slick-next.slick-arrow:hover,
	.slick-next.slick-arrow:focus {
		right: -60px;
	} 

	.slick-prev.slick-arrow,
	.slick-prev.slick-arrow:hover,
	.slick-prev.slick-arrow:focus {
		left: -60px;
	}
}

@media screen and (min-width: 1024px) {
	.slick-next.slick-arrow, 
	.slick-prev.slick-arrow {
		display: none;
	}
}


body .slick-prev:before, body .slick-next:before {
	content: '';
}

/* Shop */
section.shop.row {
    padding: 80px 0 0;
}

.shop-headings {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-title-text p {
    margin: 8px;
}

.shop-headings h2 {
    max-width: 770px;
}

.shop-brand.flex-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.shop-brands.flex-row {
    padding-top: 54px;
    padding-bottom: 54px;
}

.shop-brand .shop-title-text {
    text-align: center;
    max-width: 470px;
}

.shop-brand .shop-title-text p {
    margin: 0;
}

.faq-section h2 {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


.faq-section.container {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid #f3e6dc;
  border-radius: 16px;
  padding: 24px 32px 24px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: none;
  position: relative;
  cursor: pointer;
}

.faq-item.active,
.faq-item:hover {
  border-color: #fbe3cf;
  box-shadow: 0 6px 20px 0 rgba(219,107,48,0.07);
}

.faq-question {
    color: #000;
    font-family: Merriweather, serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}
.faq-answer {
    margin-top: 12px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
	/* display: none; */
	animation: faqFadeIn 0.3s ease-out;
	max-width: 800px;
	font-family: Inter, sans-serif;
}
.faq-item.active .faq-answer {
  display: block;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Plus icon */
.faq-section {
    background: url(images/NTVS_small-dog-sideways@2x.webp) no-repeat 0 100% / contain;
    padding-top: 80px;
    padding-bottom: 80px;
    background-size: 340px;
}

.faq-item::after {
	content: '+';
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	font-weight: 600;
	color: var(--primary);
	background: #fbede4;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 24px;
	top: 24px;
	box-shadow: none;
	transition: background 0.2s, color 0.2s;
	font-weight: 300;
	}

.faq-item.active::after {
  content: '–'; 
  color: #fff;
  background: var(--primary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 920px;
    margin: 40px auto;
    height: 500px;
}

/* Schedule */
.schedule-section.row {
    padding-top: 80px;
}

.schedule-headings h2 {
    max-width: 420px;
}

.schedule-text ul li {
    margin-bottom: 10px;
}

.schedule-text ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 10px;
    display: inline-block;
    margin: 2px 10px 2px 0;
}

.schedule-text ul {
    line-height: 30px;
    letter-spacing: 0;
}

.schedule-text {
    margin-bottom: 40px;
    max-width: 520px;
}

.schedule-section {
    padding-bottom: 80px;
}

.schedule-section {
    overflow: hidden;
    position: relative;
    height: 100vh;
    max-height: 760px;
}
.schedule-section-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    height: 100%;
	width: auto;
}

.home .site-inner section {
    background-color: #fff;
    z-index: 2;
    position: relative;
}

/* Footer */
.ntvs-footer__addr {
    max-width: 250px;
}
.ntvs-addr a svg {
    margin-left: 4px;
}
.site-footer h4 {
    color: #fff;
}

.footer-logo {
    max-width: 280px;
	width: 100%;
}
.site-footer .ntvs-footer__menu li {
    margin: 12px 0;
}
.ntvs-footer__hours-text li {
    margin: 10px 0;
}

.ntvs-footer__contact .ntvs-phone a {
    color: #bbb;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.site-footer .ntvs-footer__menu li a {
    color: #bbb;
    text-decoration: none;
}

.site-footer .flex-row {
    margin: 0;
}

.site-footer a:hover,
.site-footer .ntvs-footer__menu li a:hover {
    color: #fff;;
}

.footer__content {
    max-width: 945px;
    gap: 100px;
}

.ntvs-footer__contact a {
    color: #bbb;
    text-decoration: none;
}

.ntvs-footer__contact .ntvs-footer__row {
    gap: 14px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.ntvs-footer__contact .flex-row.flex-column {
    gap: 10px;
}

.ntvs-social {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 0.938px solid rgba(81, 85, 86, 0.40);
	transition: all 0.3s ease-out;
}

.ntvs-social:hover {
    border-color: var(--primary);
}

.site-footer .ntvs-footer__socials {
    gap: 14px;
    margin-top: 24px;
}

.ntvs-footer__ico svg {
    width: 28px;
    height: 28px;
    display: inline-flex;
}

.ntvs-footer__contact .ntvs-phone a {
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
}

.ntvs-footer__hours-text li {
    margin-bottom: 10px;
}

.ntvs-footer__badges {
    display: flex;
    gap: 20px;
}
a.ntvs-badge {
    max-width: 176px;
}

.ntvs-footer__newclient {
    text-align: right;
}

.ntvs-footer__cta .flex-row {
    align-items: end;
    max-width: 945px;
    padding: 0;
}

.ntvs-footer__cta {
    justify-content: end;
	padding: 100px 0 40px;
}

.ntvs-footer__app {
    padding: 0;
}

.ntvs-footer__credits {
    padding: 32px 0;
    font-size: 15px;
    border-top: 1px solid rgba(81, 85, 86, 0.40);
}

.ntvs-footer__policies {
    justify-content: end;
    display: flex;
}

.ntvs-footer__credits a:hover {
    text-decoration: underline;
    color: #fff;
}
.ntvs-footer__credits a {
    color: #bbb;
    text-decoration: none;
}

.topbar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 30px;
    font-size: 16px;
}
.topbar strong {
	color: #fff;
}

.topbar .flex-col.flex-row {
    max-width: 800px;
    flex: none;
}

.flex-row.topbar-row {
    margin: 0;
}

a.topbar-link {
    color: #fff;
    text-decoration: none;
}

.topbar-item {
    display: flex;
    align-items: center;
	gap: 8px;
	flex: auto;
}

.topbar-item.address {
	flex: 1;
}

.topbar svg * {
    fill: #fff;
}

.topbar-text p {
    margin: 0;
    font-size: 16px;
}

.menu-toggle.dashicons, .menu-toggle.dashicons-before:before {
	font-family: dashicons;
	display: inline-block;
	line-height: 1;
	font-weight: 400;
	font-style: normal;
	speak: never;
	text-decoration: inherit;
	text-transform: none;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 36px;
	height: 36px;
	font-size: 34px;
	vertical-align: top;
	text-align: center;
	transition: color .1s ease-in;
}

/* Inner */
.page-hero-bar {
	padding: 54px 0;
	background: rgba(109, 171, 228, 0.15);
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Blog */
/* ---------- Blog Grid ---------- */
.author-box {
    border: 1px solid var(--primary);
    background: none;
    border-radius: 24px;
}

.blog-grid .site-inner,
.blog-grid .content { max-width: 1200px; }

/* .blog-grid__wrap { padding: 2rem 1rem 3rem; } */

.blog-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .blog-grid__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid__grid { grid-template-columns: 1fr; }
}

.blog-grid__card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* media */
.blog-grid__media {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-grid__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.blog-grid__media:hover .blog-grid__img { transform: scale(1.04); }


.blog-grid__badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 999px;
}

/* content */
.blog-grid__content { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; }
.blog-grid__title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}
.blog-grid__title a { text-decoration: none; }
.blog-grid__meta { color: #777; font-size: 13px; }

.blog-grid__excerpt { font-size: 16px; margin-bottom: 16px;}

.blog-grid__readmore {
    align-self: flex-start;
    padding: 12px 20px;
    font-size: 16px;
}
.blog-grid__readmore:hover { background: #f6f6f6; border-color: #d6d6d6; }

/* placeholder if no featured image */
.blog-grid__img--placeholder { background: #f2f2f2; }

.blog-grid__grid article {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(219, 107, 48, 0.15);
    transition: all 0.5s ease-out;
    margin: 0;
}

.blog-grid__grid article:hover {
    border-color: #db6b30;
}

.entry-featured-image img {
    width: 100% !important;
    margin-bottom: 24px;
}

#genesis-sidebar-primary {
    background: #f5f5f5;
    border-radius: 24px;
    padding: 24px;
}

.entry-content iframe {
    width: 100%;
}

.page-hero-bar .archive-description {
    margin: 0;
}

.entry-content img.aligncenter {
    width: 100%;
}

.page-hero-bar h1.page-title {
    margin: 0;
}

.featured-content h4.entry-title {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 500;
}

.sidebar .featured-content p {
    line-height: 1.4;
    color: #777;
}

/* .archive.category h1.archive-title,
.archive.category h1.entry-title {
    text-align: center;
} */

/* Services Page */

.services-page .wp-block-image img {
    border-radius: 24px;
    transition: all 0.4s ease-out;
}
.services-page .wp-block-column:hover .wp-block-image img {
    transform: translateY(8px);
}

.services-page .wp-block-columns .wp-block-column p {
    font-size: 16px;
    line-height: 28px;
}

.services-page .wp-block-columns .wp-block-heading a {
    text-decoration: none;
    color: #000;
	display: block;
}

.services-page .wp-block-columns .wp-block-heading a:hover {
    color: var(--primary);
}

.services-page .wp-block-heading {
    margin-top: 24px;
}

/* contact form */
.page-id-110277 form {
    max-width: 720px;
    margin: 0 auto;
}

.page-id-110277 form input, select, textarea {
    margin-bottom: 16px;
}

.firstvisit-image-mobile {
    display: none;
}

.ntvs-map iframe {
    width: 95%;
    height: 600px;
    overflow: hidden;
    border-radius: 16px;
    border: 0;
}

.ntvs-map {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1500px) {
	.hero {
		height: auto;
	}

	.genesis-nav-menu > li {
        margin: 0 8px;
    }
	
}
/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
	h1, .heading-1 { font-size: 40px; line-height: 52px; }
	h2, .heading-2, h1.entry-title, h1.archive-title { font-size: 36px; line-height: 48px; }
	h3, .heading-3, .entry-content h2 { font-size: 26px; line-height: 36px; }
	h4, .heading-4, .entry-content h3 { font-size: 20px; line-height: 30px; }
	h5, .heading-5,
	.heading-5-regular, .entry-content h4, .entry-content h5 { font-size: 18px; line-height: 26px; }
	.body, p { font-size: 16px; line-height: 26px; }
	.button, .button-text { font-size: 16px; line-height: 22px; }
	.sub-heading { font-size: 13px; line-height: 18px; }
	.awards-bar.row,
	.band-text-2 {
		font-size: 16px;
		gap: 8px;
	}

	.stat-description h3 {
	    font-size: 32px;
		letter-spacing: -1px;
	}

	button, input[type="button"], input[type="reset"], input[type="submit"], .site-container div.wpforms-container-full .wpforms-form input[type="submit"], .site-container div.wpforms-container-full .wpforms-form button[type="submit"], .button,
	body button.secondary, body input[type="button"].secondary, body input[type="reset"].secondary, body input[type="submit"].secondary, body body .site-container div.wpforms-container-full .wpforms-form input[type="submit"].secondary, body .site-container div.wpforms-container-full .wpforms-form button[type="submit"].secondary, body .button.secondary {
		padding: 12px 24px;
		font-size: 16px;
	}

	.hero-headings {
		max-width: 420px;
	}

	.hero {
		max-height: 640px;
	}

	.award-item:nth-child(2) {
	    right: 16px;
	}

	.hero-col-2 {
		max-width: 480px;
	}

	.testimonial-highlight {
		font-size: 24px;
		line-height: 30px;
	}
	.service-link a {
		font-size: 16px;
	}
	.service-link {
		padding: 40px 24px 20px;
	}
	.genesis-nav-menu > li {
        margin: 0 8px;
    }

	.site-header {
		padding: 0 24px;
	}
	.faq-question {
		font-size: 18px;
	}
	.faq-section {
		background-size: 170px;
	}

	.schedule-headings h2 {
		max-width: 340px;
	}

	.schedule-text ul li {
		margin-bottom: 4px;
		font-size: 16px;
	}

	.site-footer {
		padding: 40px 30px 0;
	}

	.site-footer .flex-row.footer__top {
		margin: 0;
		gap: 20px;
    	flex-wrap: nowrap;
	}

	.site-footer .ntvs-footer__menu li {
		margin: 10px 0;
		font-size: 16px;
	}

	.ntvs-footer__hours-text li {
		margin-bottom: 10px;
		font-size: 16px;
	}

	.ntvs-footer__contact .flex-row.flex-column,
	.ntvs-footer__contact .ntvs-footer__row {
		margin: 0;
	}

	.site-footer .ntvs-footer__socials {
		gap: 8px;
		margin: 0;
		margin-top: 24px;
	}

	.footer__content {
    	max-width: 800px;
	}
	.ntvs-footer__contact a {
		font-size: 16px;
	}

	.ntvs-footer__contact .ntvs-phone a {
		font-size: 18px;
	}

	.ntvs-footer__cta .flex-row {
		max-width: 800px;
		padding: 0;
		margin: 0;
	}

	.ntvs-footer__credits {
		margin: 0;
	}

	.slick-next.slick-arrow, .slick-prev.slick-arrow {
        display: none !important;
    }

	.topbar {
		padding: 4px 24px;
		font-size: 15px;
	}
	.topbar p {
        font-size: 15px;
    }

	.topbar-row {
		flex-wrap: nowrap;
	}

	.topbar-row svg {
		width: 20px;
		height: 20px;
	}

	.topbar-item:not(.address) {
		justify-content: end;
	}

	.topbar-item.address,
	.topbar .flex-col.flex-row {
		flex: 0 0 auto;
	}

	.topbar .flex-col.flex-row {
		flex: 1 0 60%;
	}

	.topbar-item {
		flex: auto;
	}

	.award-item {
		border-radius: 20px;
		border: 1px solid #EDEDED;
		padding: 12px;
	}

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

	.genesis-nav-menu > li {
        margin: 0 6px;
    }
	
	.genesis-nav-menu > .menu-item:last-child a {
    	padding: 15px 16px;
	}

	.wp-custom-logo .site-container .title-area {
		max-width: 200px !important;
		padding-bottom: 22px;
		padding-top: 22px;
	}
}

@media (max-width: 1024px) {

	.hero-col-1 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.hero-headings {
        max-width: 100%;
    }

    .hero-col-2 {
        justify-content: flex-start;
		width: 100%;
        max-width: 100%;
        flex-grow: 1;
    }

	.hero-image {
		position: relative;
		width: 100%;
	}
	.flex-row.topbar-row {
		margin: 0;
		flex-wrap: wrap;
		justify-content: center;
	}

	.topbar .hide-mobile {
		display: none;
	}

	.topbar-item {
        justify-content: center;
		flex: auto !important;
    }

    .topbar .flex-col.flex-row, .topbar .address {
        flex-direction: row !important;
        align-self: center;
        gap: 16px;
    }

	button, input[type="button"], input[type="reset"], input[type="submit"], .site-container div.wpforms-container-full .wpforms-form input[type="submit"], .site-container div.wpforms-container-full .wpforms-form button[type="submit"], .button,
	body button.secondary, body input[type="button"].secondary, body input[type="reset"].secondary, body input[type="submit"].secondary, body body .site-container div.wpforms-container-full .wpforms-form input[type="submit"].secondary, body .site-container div.wpforms-container-full .wpforms-form button[type="submit"].secondary, body .button.secondary {
		padding: 12px 18px;
	}

	.hero-text ul li {
		margin-bottom: 4px;
		font-size: 16px;
	}

	.hero-content {
		gap: 28px;
	}

	.hero {
		align-items: flex-start;
		padding: 48px 24px;
		min-height: initial;
        max-height: none;
        height: auto;
		gap: 32px;
    }

	.award-title {
		font-size: 14px;
	}

	.award-item {
		flex-direction: row;
		align-items: center;
		padding: 5px 8px;
		max-width: none;
		gap: 6px;
	}

	.hero-badge {
		max-width: 110px;
		bottom: initial;
		left: 12px;
		top: 12px;
	}

	.award-item:nth-child(1),
	.award-item:nth-child(2),
	.award-item:nth-child(3) {
		top: initial;
		left: 12px;
		right: initial;
	}

	.award-item:nth-child(3) {
		bottom: 12px;
	}
	.award-item:nth-child(2) {
		bottom: 56px;
	}

	.award-item:nth-child(1) {
		bottom: 100px;
	}

	.hero-awards img {
		width: 24px;
		height: 24px;
	}
	.hero-image > img {
        border-radius: 24px;
        width: 100%;
        max-width: 100%;
    }
	.services-section .wrap {
		border-radius: 24px;
	}

	.faq-answer {
		font-size: 16px;
		line-height: 1.5;
	}

	.schedule-section-img {
		max-width: 500px;
		height: auto;
	}

	.schedule-section {
		height: auto;
		max-height: none;
	}

	.site-footer .flex-row.footer__top {
    	flex-direction: column;
	}

	.site-footer .flex-row.footer__top > div {
		max-width: none;
		justify-content: flex-start;
	}

	.footer-logo {
		max-width: 280px;
	}

	.ntvs-footer__cta {
		flex-direction: column;
	}

	.site-footer {
        padding: 40px 24px 0;
    }

	body.wp-custom-logo .site-container .title-area {
		max-width: 180px !important;
		padding-bottom: 24px;
		padding-top: 24px;
	}
}



@media (max-width: 1024px) {
  h1, .heading-1 { font-size: 38px; line-height: 52px; }
  h2, .heading-2, h1.entry-title, h1.archive-title { font-size: 32px; line-height: 44px; }
  h3, .heading-3, .entry-content h2 { font-size: 26px; line-height: 36px; }
  h4, .heading-4, .entry-content h3, .entry-content h4 { font-size: 20px; line-height: 30px; }
  h5, .heading-5,
  .heading-5-regular, .entry-content h5 { font-size: 18px; line-height: 26px; }
  .body, p { font-size: 16px; line-height: 24px; }
  .button, .button-text { font-size: 16px; line-height: 22px; }
  .sub-heading { font-size: 13px; line-height: 20px; }
}

@media (max-width: 920px) {
	.schedule-section-img {
		width: 100%;
		right: 0;
		position: relative;
		bottom: 0;
	    margin-top: 40px;
		max-width: 100%;
	}

	.schedule-section {
		padding: 40px 24px;
		max-height: none;
	}

	.schedule-section .container {
		padding: 0;
	}

	.telemedicine-col-1.flex-col {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	.telemedicine-col-2.flex-col-7 {
		padding: 40px 0;
	}
}

@media (max-width: 767px) {

	.schedule-section .flex-row {
		gap: 40px;
	}
	
	.ntvs-map,
	.ntvs-map iframe {
		width: 100%;
	}
	
	.faq-section {
		padding-bottom: 180px;
	}
	.shop-title-text p {
		max-width: 470px;
		margin: 8px;
	}

	.shop-headings h2 {
		max-width: 500px;
	}

	.intro-section {
		gap: 40px;
	}

	.intro-image img {
		width: 100%;
		max-width: 100%;
	}

	.intro-col-2 {
		max-width: 100%;
		flex: 100%;
	}

	.firstvisit-image-mobile {
		display: block;
	}

	.firstvisit-col-1 img {
		display: none;
	}
	.services-section .wrap {
		padding: 84px 0 24px;
	}
	.firstvisit-image {
		width: 250px;
	}

	.service-image img {
		width: 100%;
	}
	.footer__content {
		gap: 40px;
	}

	.icon-block.flex-col {
		max-width: 200px !important;
	}

	.icons-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	.icons-columns {
		gap: 40px;
		flex-wrap: wrap !important;
		flex-direction: row !important;
	    margin: 24px 0 0;
	}

	.cta-section h2 {
		max-width: clamp(300px, 50vw, 490px);
	}

	.ntvs-footer__contact .ntvs-footer__row {
   		flex-direction: row !important;
	}

    .site-footer .flex-row.ntvs-footer__socials {
        gap: 8px;
		margin: 0;
        margin-top: 24px;
        flex-direction: row !important;
    }
	.ntvs-footer__cta .flex-row {
   		align-items: start;
	}

	.ntvs-footer__cta .flex-row {
        gap: 32px;
    }

	.footer__brand {
		padding-bottom: 32px;
	}

	.ntvs-footer__policies {
    	justify-content: start;
	}

	.site-footer .flex-row {
		gap: 24px;
	}

    .service-link {
        padding: 40px 24px 24px;
    }

	.telemedicine-section {
		gap: 40px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.telemedicine-pets {
    	max-width: 180px;
		margin-bottom: 32px;
	}

	.telemedicine-section {
		flex-direction: column-reverse !important;
		padding-bottom: 0;
	}

	.service-text-container {
		padding: 8px;
	}


	.intro-col-1 {
		padding-top: 0;
		gap: 40px;
	}

	.home .site-inner section.first-visit {
		flex-direction: column-reverse;
	}

	.stats-columns {
		margin-bottom: 24px;
		gap: 24px;
	}

	.stat-block {
		gap: 16px;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.icons-section h2 {
		max-width: 320px;
	}

	.icons-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.telemedicine-image {
		position: static;
	}

	.home .site-inner section.team-section .container .cta-headings {
		max-width: 440px !important;
    	flex: 0 0 55% !important;
	}

	.home .site-inner section.team-section .container img {
    	object-fit: contain;
	}
	img.team-image {
		width: 45%;
	}

	.home .site-inner section.team-section .container {
		max-width: 100%;
		display: flex;
		justify-content: space-between;
	}

	.home .site-inner section.team-section {
		display: flex;
		justify-content: flex-end;
		padding-bottom: 80px;
		padding-top: clamp(270px, 40vw, 400px);
	}

	.home .site-inner section.cta-section {
		height: auto;
		background-position-x: 50%;
		padding: 48px 0;
		background-size: 135%;
	}
	
}

/* --- RESPONSIVE: MOBILE --- */
@media (max-width: 600px) {
	h1, .heading-1 { font-size: 32px; line-height: 40px; }
	h2, .heading-2, h1.entry-title, h1.archive-title, .entry-content h2 { font-size: 22px; line-height: 32px; }
	h3, .heading-3, .entry-content h3, .entry-content h4, .testimonial-highlight { font-size: 18px; line-height: 28px; }
	h4, .heading-4 { font-size: 16px; line-height: 24px; }
	h5, .heading-5,
	.heading-5-regular, .entry-content h5 { font-size: 16px; line-height: 22px; }
	.body, p { font-size: 15px; line-height: 22px; }

	.site-header {
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
		position: relative;
	}

	.team-section h2 {
		margin-bottom: 20px;
	}

	.home .site-inner section.team-section {
		padding-bottom: 40px;
		padding-top: 50vw;
		background-position-x: -8px;
	}
	.sub-heading {
		font-size: 12px;
		line-height: 18px;
		letter-spacing: 1px;
	}

	.hero-headings {
		max-width: none;
	}
	.button-group {
		flex-direction: column;
	}

	.button, .button-text {
		font-size: 16px;
		line-height: 20px;
		justify-content: center;
	}

	.breadcrumb {
    	font-size: 12px;
	}

	.entry-content img.alignleft, .entry-content img.alignright {
		width: 100%;
	}

	body:not(.home) .site-inner {
		padding: 32px 24px 0;
	}

	body.wp-custom-logo .site-container .title-area {
		max-width: 180px;
	}
	
	.dashicons, .dashicons-before:before {
		font-family: dashicons;
		display: inline-block;
		line-height: 1;
		font-weight: 400;
		font-style: normal;
		speak: never;
		text-decoration: inherit;
		text-transform: none;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
		width: 36px;
		height: 36px;
		font-size: 34px;
		vertical-align: top;
		text-align: center;
		transition: color .1s ease-in;
	}

	.sub-menu-toggle, .sub-menu-toggle::before {
		padding: 0 !important;
		border: 0;
		/* border-radius: 0; */
		width: 24px;
		height: 24px;
		line-height: 24px;
		margin: 0 !important;
		padding: 0 !important;
	}

	.site-header .sub-menu-toggle.dashicons-before::before{
		transition: none;
		font-size: 16px;
	}

	.services-section .wrap,
	.first-visit,
	.about-section,
	.home .site-inner section.testimonials-section {
    	padding-top: 40px;
    	padding-bottom: 40px;
	}

	.first-visit {
  	  padding-bottom: 120px;
	}

	.firstvisit-image {
		bottom: -80px;
	}
	.awards-bar.row {
        font-size: 13px;
        gap: 8px;
    }

	.services-columns {
		gap: 24px;
		padding-top: 40px;
	}

	.testimonial-text {
		margin: 0 auto 40px;
	}

	.home .site-inner section.stats-section {
	    padding-bottom: 40px;
	}

	.about-text {
		columns: 1;
		margin-bottom: 0;
	}

	.cta-headings {
		padding-top: 0;
	}

	.home .site-inner section.cta-section {
    	background-position-x: 40%;
		background-size: 160%;
		height: auto;
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.home .site-inner section.inview {
		background-position-y: -20px;
	}

	.cta-section h2 {
		margin-bottom: 40px;
		max-width: 290px;
	}

	.testimonial-item {
		gap: 24px;
	}

	.testimonial-content {
		padding-right: 0;
	}

	.home .site-inner section.testimonials-section {
	    padding-bottom: 180px;
	}

	.testimonial-section-cat {
		width: 180px;
		bottom: 0;
	}

	.shop-brands.flex-row {
		gap: 40px;
	}

	.faq-section {
		padding-top: 40px;
		padding-bottom: 300px;
	}

    .faq-item {
        padding-right: 60px;
    }

	.award-title {
        font-size: 13px;
    }

	.topbar {
        padding: 4px 10px;
        font-size: 14px;
    }

	.icon-block.flex-col {
		max-width: 180px !important;
	}

	.icons-columns {
		margin: 20px 0 0;
	}

    .home .site-inner section.cta-section {
        background-position-x: -172px;
        background-size: 160%;
        height: auto;
        padding-bottom: 84px;
        padding-top: 20px;
    }

	.cta-section h2 {
        margin-bottom: 40px;
        max-width: 238px;
    }

	.shop-brands.flex-row {
		padding-left: 24px;
		padding-right: 24px;
	}

	.about-section,
	section.icons-section {
		padding-top: 48px;
		padding-bottom: 48px;
	}
	
	.intro-section {
		padding-top: 48px;
	}
}



@media (max-width: 400px) {

	.menu-toggle {
		margin-bottom: 24px;
		margin-top: 24px;
	}

    .topbar .flex-col.flex-row {
        gap: 4px;
    }

	.award-description {
		font-size: 12px;
	}
}