/*
    Theme Name: Pets N Pals
    Theme URI: https://petsnpals.biz/
    Description: The Pets N Pals storefront theme for Staunton, Virginia. A single
        standalone theme, consolidated from the previous parent/child pair in 3.0.0.
    Author: Cosmick Media
    Author URI: https://cosmickmedia.com/
    Version: 3.12.0
    Requires at least: 6.4
    Requires PHP: 8.1
    Text Domain: petsnpals
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/************************************************
 HTML Elements
************************************************/
p {
	line-height: 1.4;
}

ul.two-column {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 40px;
	column-gap: 40px;
	-moz-column-gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.three-column {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 40px;
	column-gap: 40px;
	-moz-column-gap: 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.two-column li,
ul.three-column li {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	margin: 0 0 1em 0;
}

/************************************************
 Accordion
************************************************/
.accordion {
  padding: 4em 0 2em 0;
}

.accordion-item {
  clear: both;
  margin-bottom: .5em;
}

.accordion__title {
	border-bottom: 1px solid var(--copy);
	cursor: pointer;
	font-size: var(--font-md);
	font-weight: 700;
	padding: 1em 4em 1em 0;
	position: relative;
}

.accordion__title span {
	background-image: url(images/plus.svg);
	background-repeat: no-repeat;
	cursor: pointer;
	display: inline-block;
	height: 21px;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 21px;
}

.accordion__title,
.accordion__content {
	color: var(--copy);
}

.accordion__title.is-open {
	color: var(--secondary-color);
	border: none;
}

.accordion__title.is-open span {
	background-image: url(images/minus.svg);
	background-repeat: no-repeat;
	cursor: pointer;
	display: inline-block;
	height: 21px;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 21px;
}

.accordion__content { 
	border-bottom: 1px solid var(--copy);
	display: none;
	overflow: hidden;
	padding: 0 0 1em 0;
	position: relative;
}

.accordion__content,
.accordion__content p,
.accordion__content a {
	font-size: var(--font-sm);
}

.accordion .columns {
	margin: 0 0 2em 0;
}

.accordion h2 {
	color: var(--quaternary-color);
	font-size: var(--font-2x);
}

/****************************************
 Back To Top
****************************************/
.backtotop a {
	background-color: var(--quaternary-color);
	border-radius: 50%;
    bottom: 5px;
    display: inline-block;
	padding: .5em .5em 0em .5em;
    position: fixed;
    right: 15px;
    z-index: 1000;
}

.backtotop a:before {
    background-image:url(images/chevron-up-solid.svg);
    content:"";
    display: inline-block;
    height: 18px;
    width: 18px;
    background-repeat: no-repeat;
    -webkit-filter: invert(100%) sepia(0%) saturate(7430%) hue-rotate(329deg) brightness(107%) contrast(107%);
    filter: invert(100%) sepia(0%) saturate(7430%) hue-rotate(329deg) brightness(107%) contrast(107%);
    text-align: center;
    z-index: 1001;
}

.backtotop a:hover {
	background-color: var(--accent-color);
}

/****************************************
 Blogs
****************************************/
.blog-item {
	background-color: transparent;
}

a.learn-more,
.blog-item a.learn-more {
	color: #fff;
	font-weight: 600;
}

a.learn-more:after,
.blog-item a.learn-more:after,
.blog-item:hover a.learn-more:after {
	background-image: url(images/arrow-right-solid.svg);
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
    height: var(--font-md);
	width: var(--font-md);
	vertical-align: middle;
}

a.learn-more:after,
.blog-item a.learn-more:after {
	-webkit-filter: invert(35%) sepia(13%) saturate(5296%) hue-rotate(330deg) brightness(99%) contrast(90%);
    filter: invert(35%) sepia(13%) saturate(5296%) hue-rotate(330deg) brightness(99%) contrast(90%);
	margin: 0 0 0 .5em;
}

a.learn-more,
.blog-item a.learn-more {
	color: var(--secondary-color);
}

.blog-item .date p.day,
.single-post .date p.day {
    font-size: var(--font-3x);
    font-weight: 600;
    line-height: .7;
}

.blog-item .date p.year,
.single-post .date p.year {
	font-size: var(--font-sm);
}

.blog-item .date {
	-ms-flex-preferred-size: 10%;
    flex-basis: 10%;
	font-size: var(--font-sm);
	text-align: center;
}

.blog-item h3 {
	margin: 0;
}

.blog-item h3 a {
	color: #000;
	font-size: var(--font-lg);
	line-height: 1.2;
}

.blog-item h3 a:hover {
	color: var(--link-hover);
}

.blog-item .content {
    margin: 0;
    padding: 1em .5em 0 .5em;
}

.blog-item .content p {
	font-size: var(--font-md);
	margin: 1em 0;
} 

.blog-item .media {
	line-height: 0;
	overflow: hidden;
}

.blog-item .media,
.blog-item .media img {
	border-radius: 30px;
}

.blog-item .media a,
.blog-item img {
	width: 100%;
}

.blog-item img {
	height: 350px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.blog-item:hover img {
	-webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.home .blog-item .content,
.archive .blog-item .content {
	-ms-flex-preferred-size: 80%;
    flex-basis: 80%;
}

.page-template-blog-template-page .blog-item .content,
.page-template-blog-template-page .blog-item h2 {
	margin: 0 0 1em 0;
}

.blogs--related {
	padding: 2em 0;
}

.blogs--related h2 {
	font-size: var(--font-2x);
    text-transform: uppercase;
}

.blog-item--related {
	position: relative;
	border: none;
}

.blog-item--related .content {
    background-color: #fff;
    margin: -50px auto 0 auto;
    padding: 2em;
    position: relative;
    width: 80%;
    z-index: 100;
}

.blog-item--related .content,
.single .blog-item--related .blog__meta {
	text-align: left;
}

.blog-item--related img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.blog-item--related .content h2 {
    font-size: var(--font-lg);
	font-weight: 600;
    line-height: 1.2;
}

.blog-item--related .content h2 a {
	color: #000;
}

.page__content .blog-items h2 {
    font-size: var(--font-2x);
    font-weight: 700;
    margin: 1em 0;
    text-align: center;
}

/****************************************
 Breadcrumbs
****************************************/
.breadcrumbs {
	margin: 0.5em 0 0 0;
	position: relative;
	text-align: left;
	text-transform: uppercase;
	z-index: 100;
}

.breadcrumbs p.inner {
    margin: 0;
}

.breadcrumbs a {
  color: var(--quaternary-color);
  margin: 0 0.5em 0 0;
}

.breadcrumbs span span span a {
  margin: 0 0.5em;
}

.breadcrumbs .breadcrumb_last,
.breadcrumbs-inner {
	color: #fff;;
}

.breadcrumbs .breadcrumb_last {
  	margin: 0 0 0 .5em ;
}

.breadcrumbs-inner {
	font-size: var(--font-sm);
	margin: 0 0 .5em 0;
}

/****************************************
 Buttons
****************************************/
button,
input[type=button],
input[type=reset],
input[type=submit] {
	border: none;
	border-radius: 30px;
	background-color: var(--link-color);
	color: #fff;
	font-family: var(--font-family);
	font-size: 14px;
	line-height: 1.5;
	padding: 15px;
	white-space: pre-line;
	width: 100%;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  	background-color: var(--link-hover);
}

button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  	background-color: var(--link-hover);
}

a.button,
.button {
	border-radius: 30px;
	display: inline-block;
	font-size: var(--font-md);
	font-weight: 700;
	line-height: normal;
    padding: 0.75em 2em;
	text-decoration: none;
	white-space: pre-wrap;
}

a.button--small,
.button--small {
	font-size: var(--font-sm);
	padding: .5em 1em;
}

a.button--large,
.button--large {
	font-size: var(--font-lg);
	padding: 1em 3em;
}

a.button--accent-color,
.button--accent-color {
	background-color: var(--accent-color);
	color: var(--secondary-color);
}

a.button--accent-color:hover,
.button--accent-color:hover {
	background-color: #fff;
	color: var(--secondary-color);
}

a.button--primary-color,
.button--primary-color {
	background-color: var(--primary-color);
	color: var(--tertiary-color);
}

a.button--primary-color:hover,
.button--primary-color:hover {
	background-color: var(--tertiary-color);
	color: var(--primary-color);
}

a.button--secondary-color,
.button--secondary-color {
	background-color: var(--secondary-color);
	color: #fff;
}

a.button--secondary-color:hover,
.button--secondary-color:hover {
	background-color: var(--primary-color);
	color: #fff;
}

a.button--quaternary-color,
.button--quaternary-color {
	background-color: var(--quaternary-color);
	color: #fff;
}

a.button--quaternary-color:hover,
.button--quaternary-color:hover {
	background-color: var(--tertiary-color);
	color: var(--primary-color);
}

a.button--quaternary-color,
.button--quaternary-color {
	background-color: var(--quaternary-color);
	color: #fff;
}

a.button--quaternary-color:hover,
.button--quaternary-color:hover {
	background-color: var(--tertiary-color);
	color: var(--primary-color);
}

a.button--light,
.button--light {
	background-color: var(--tertiary-color);
	color: var(--primary-color);
}

a.button--light:hover,
.button--light:hover {
	background-color: var(--primary-color);
	color: var(--tertiary-color);
}

a.button--transparent,
.button--transparent {
	background-color: transparent;
	border: 2px solid var(--accent-color);
	border-radius: 30px;
	color: var(--accent-color);
}

a.button--transparent:hover,
.button--transparent:hover {
	background-color: var(--accent-color);
	color: #fff;;
}

/****************************************
 Colors
****************************************/
.bg-color--accent {
	background-color: var(--accent-color);
}

.bg-color--primary {
	background-color: var(--primary-color);
}

.bg-color--secondary {
	background-color: var(--secondary-color);
}

.bg-color--tertiary {
	background-color: var(--tertiary-color);
}

.bg-color--quaternary {
	background-color: var(--quaternary-color);
}

.bg-color--accent
.bg-color--primary,
.bg-color--secondary,
.bg-color--tertiary,
.bg-color--quaternary {
	color: #fff;
}


.text-primary,
.text-color--accent {
	color: var(--accent-color) !important;
}

.text-color--primary {
	color: var(--primary-color);
}

.text-color--secondary {
	color: var(--secondary-color);
}

.text-color--tertiary {
	color: var(--tertiary-color);
}

.text-color--quaternary {
	color: var(--quaternary-color);
}

.text-color--copy {
	color: var(--copy);
}

/****************************************
 Columns
****************************************/
.columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.columns--vertical-center {
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.columns--vertical-bottom {
	-webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.columns--flex-start {
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.columns--flex-end {
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.column-half {
	-ms-flex-preferred-size: 48%;
	flex-basis: 48%;
}

.column-thirds {
	-ms-flex-preferred-size: 32%;
	flex-basis: 32%;
}

.column-fourths {
	-ms-flex-preferred-size: 23%;
	flex-basis: 23%;
}

.column-three-fourths {
	-ms-flex-preferred-size: 74%;
	flex-basis: 74%;
}

.column-two-thirds {
	-ms-flex-preferred-size: 66%;
	flex-basis: 66%;
}

.column-ten {
	-ms-flex-preferred-size: 10%;
	flex-basis: 10%;
}

.column-ninety {
	-ms-flex-preferred-size: 90%;
	flex-basis: 90%;
}

/****************************************
 Columns-Grid
****************************************/
.columns--grid-half,
.columns--grid-thirds,
.columns--grid-fourths,
.columns--grid-fifths,
.columns--grid-six {
	display: -ms-grid;
    display: grid;
	gap: 1em;
}

.columns--grid-half {
    -ms-grid-columns: (48% [col-start])[2];
    grid-template-columns: repeat(2, 48% [col-start]);
}

.columns--grid-thirds {
    -ms-grid-columns: (32% [col-start])[3];
    grid-template-columns: repeat(3, 32% [col-start]);
}

.columns--grid-fourths {
    -ms-grid-columns: (24% [col-start])[4];
    grid-template-columns: repeat(4, 24% [col-start]);
}

.columns--grid-fifths {
    -ms-grid-columns: (18% [col-start])[5];
    grid-template-columns: repeat(5, 18% [col-start]);
}

.columns--grid-six {
    -ms-grid-columns: (15% [col-start])[6];
    grid-template-columns: repeat(6, 15% [col-start]);
}

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

.bypostauthor {
  	display: block;
}

/****************************************
 Display
****************************************/
.is-hidden {
	display: none !important;
}

.is-visible {
    display: block !important;
}

.is-right {
	text-align: right;
}

.is-left {
	text-align: left;
}

/****************************************
 Fields & Forms
****************************************/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--copy);
	border-radius: 0;
	color: #000;
	font-family: var(--font-family);
	font-size: var(--base-font);
	padding: 15px;
	text-align: left;
	max-width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
	color: var(--copy);
}

textarea {
  width: 100%;
}

::-webkit-input-placeholder {
    color: var(--copy);
	font-size: var(--font-md);
}
:-ms-input-placeholder {
    color: var(--copy);
	font-size: var(--font-md);
}
::-ms-input-placeholder {
    color: var(--copy);
	font-size: var(--font-md);
}
::placeholder {
    color: var(--copy);
	font-size: var(--font-md);
}

.gform_wrapper .gform_footer {
  margin: 0 !important;
  padding: 0 !important;
}

.gform_footer .gform_button {
	background-color: var(--secondary-color) !important;
	border: 2px solid var(--secondary-color);
	color: #fff !important;
	font-size: var(--font-xs);
	margin: 1em 0 0 0 !important;
	padding: 0.5em 3em !important;
	text-transform: capitalize !important;
	width: auto;
}

.gform_footer .gform_button:after {
	background-image: url(images/paper-plane-solid.svg);
	content: "";
	display: inline-block;
	height: 16px;
	margin: 0 0 0 1em;
	width: 16px;
	vertical-align: middle;
}

.gform_footer .gform_button:hover, .gform_footer .gform_button:focus { 
  background-color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  color: #fff !important;
}

.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label {
    font-weight: 300 !important;
    font-size: var(--font-sm) !important;
}

/****************************************
 Finance Options
****************************************/
.finance-options {
	padding: 4em 0 2em 0;
}

.finance-options.columns--grid-thirds {
	gap: 2em;
}

.finance-option a:hover img {
    box-shadow: 1px 0 6px #00000065;
    border-radius: 30px;
}

/****************************************
 Glide
****************************************/
.glide__arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	width: 100%;
    z-index: 100;
}

.glide__arrow--left,
.glide__arrow--right {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
	opacity: 0.5;
}

.glide__arrow--left:before,
.glide__arrow--right:before {
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
	-webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(279deg) brightness(105%) contrast(101%);
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(279deg) brightness(105%) contrast(101%);
	height: 21px;
	width: 21px;
	vertical-align: middle;
}

.glide__arrow--left {
    left: 10px;
}

.glide__arrow--left:before {
	background-image: url(images/arrow-left-sharp-light.svg);
}

.glide__arrow--right {
    right: 10px;
}

.glide__arrow--right:before {
	background-image: url(images/arrow-right-sharp-light.svg);
}

.hero .glide__slide .content h1 {
	color: #fff;
	font-size: var(--font-3x);
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 .5em 0;
	padding: 0
}

.hero .glide__slide .content h1 span {
	font-weight: 600;

}

.section--testimonials li.glide__slide {
    background-color: #fff;
    border-radius: 20px;
    min-height: 250px;
    padding: 2em;
}

.section--testimonials li.glide__slide .content {
	min-height: 118px;
}

/****************************************
 Grid
****************************************/
.grid {
	-webkit-column-gap: 2em;
	-moz-column-gap: 2em;
	column-gap: 2em;
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-fill: balance;
    -moz-column-fill: balance;
    column-fill: balance;
}

.grid-item {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

.grid-item .inner,
.grid-items .inner {
	padding: 1em 0;
}

.grid-item a,
.grid-items a {
	display: block;
}

.grid-item p,
.grid-item--image p,
.grid-item--video p {
	color: #000;
	font-size: var(--font-xs);
	margin: 0;
}

.grid-item p.title,
.grid-item--image p.title,
.grid-item--video p.title {
	font-size: var(--font-md);
  	font-weight: 600;
	margin: 0 0 .25em 0;
}
  
.grid__pagination {
	border-top: 1px solid #ccc;
	display: block;
	margin: 2em 0;
	padding: 1em 0 0 0;
	text-align: center;
}
  
.grid__pagination.hidden {
  	display: none;
}
  
.grid__pagination span.page-numbers.current {
	background-color: var(--tertiary-color);
	color: var(--primary-color);
	display: inline-block;
	font-size: 14px;
	padding: 5px 18px;
}
  
.grid__pagination a.page-numbers {
	color: #000 !important;
	display: inline-block;
	font-size: 14px;
	padding: 5px 18px;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}
  
.grid__pagination a.page-numbers:hover, 
.grid__pagination a.page-numbers:focus {
	background-color: var(--primary-color);
	color: #fff !important;
	text-decoration: none;
}

.grid-item--image,
.grid-item--video {
	background-color: #eee;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 0 0 1em 0;
}

.grid-item--image .content,
.grid-item--video .content {
	padding: 2em;
}

.grid-item--image.column-thirds img {
    height: 205px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.grid-item--image img {
    height: 350px;
    object-fit: cover;
    object-position: 50%;
    width: 100%;
}

/****************************************
 Hero
****************************************/
.hero {
	min-height: 400px;
	padding: 0 1em;
}

.hero h1 {
	color: #fff;
	padding: 0 2em 0 0;
}

.hero,
.hero--internal .outer {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.hero--internal {
	padding: 0;
    position: relative;
}

.post-type-archive-reviews .hero--internal {
	padding: 0 1em;
}

.hero--internal .inner:before,
.hero--internal .outer:before {
	background-color: #00000040;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.hero .columns {
  	min-height: 600px;
}

.hero--internal,
.hero--internal .outer,
.hero--internal .inner {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
  	min-height: 200px;
}

.hero .columns,
.hero--internal {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hero--internal .outer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-position: 88% 50%;
}

.hero--internal .inner {
	padding: 0 !important;
}

.hero--internal .inner:before {
	display: none;
}

.hero--internal h1,
.hero--internal .page__title h1 {
	color: #fff;
	margin: 0;
	padding: 0;
	text-shadow: 0 0 0.22em #000;
}

.hero--internal .page__title h1 {
	font-family: var(--font-secondary);
	font-size: var(--font-3x);
	font-weight: 400;
	line-height: 1;
	position: relative;
	text-align: center;
	z-index: 3;
}

.hero--internal,
.hero--internal .inner,
.hero--internal .outer,
.hero--internal .inner:before,
.hero--internal .outer:before {
	border-radius: 20px;
	overflow: hidden;
}

@media only screen and (max-width: 767px) {
	.hero--internal .outer {
		background-image: none !important;
	}

	.hero--internal h1,
	.hero--internal .page__title h1 {
		color: #002232;
		text-shadow: none;
		font-size: 20px;
	}

	.single .hero--internal .pre-title {
		color: #002232;
	}

	.hero--internal,
	.hero--internal .outer,
	.hero--internal .inner {
		min-height: 100px;
	}
	
	.breadcrumbs .breadcrumb_last,
	.breadcrumbs-inner {
		color: #002232;
	}
}

.hero--internal.is-blog, 
.hero--internal.is-blog .media, 
.hero--internal.is-blog .content {
    min-height: 450px;
}

.single .hero--internal .page__title h1,
.hero--internal.is-blog .page__title h1 {
	font-size: var(--font-xl);
    line-height: 1.2;
    text-align: left;
}

.single .hero--internal .page__title h1 {
	font-size: var(--font-2x);
}

.single .hero--internal .pre-title {
	color: #fff;
}

.hero--internal.is-blog .page__title h1 a {
	color: var(--primary-color);
}

.hero--internal.is-blog .page__title h1 a:hover {
	color: var(--link-hover);
}

.hero--internal.is-blog .content {
	background-color: var(--tertiary-color);
	border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
	padding: 4em;
}

.hero--internal.is-blog .media {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-bottom-right-radius: 30px;
	border-top-right-radius: 30px;
}

.hero--internal.is-blog .column-thirds.content {
	-ms-flex-preferred-size: 34%;
    flex-basis: 34%;
}

.hero--internal.is-blog .column-two-thirds.media {
	-ms-flex-preferred-size: 66%;
    flex-basis: 66%;
}

.hero--internal .pre-title {
	color: var(--primary-color);
	font-weight: 500;
}

p.hero__excerpt {
    font-size: var(--font-sm);
    margin: 2em 0;
}

.hero--internal.is-blog .read-more {
	color: var(--link-hover);
	font-size: var(--font-md);
}

.hero--internal.is-blog .read-more:hover {
	color: var(--accent-color);
	text-decoration: underline;
}

.single .hero--internal {
	margin: 0 auto;
	padding: 4em;
	position: relative;
    width: 80%;
}

.single .hero--internal:before {
	background: transparent;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 33, 51, 1) 100%);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.single .hero--internal,
.single .hero--internal .inner {
	min-height: 450px;
}

.single .hero--internal .inner {
	border-radius: 0;
}

.single .hero--internal .hero__content {
	position: relative;
}

.single .hero--internal .hero__content label {
	background-color: var(--tertiary-color);
	color: var(--primary-color);
	margin: 0 0 1em 0;
}

.single .hero--internal .hero__content .pre-title {
	margin: 2em 0 0 0;
	text-transform: capitalize;
}

.single .hero--internal .hero__content .pre-title label {
	background-color: transparent;
}

.single .hero--internal .hero__content .pre-title label a {
	color: var(--quaternary-color);
}

.single .hero--internal .hero__content label a {
	color: var(--primary-color);
}

.hero.is-desktop {
	display: block;
    padding: 0 12px;
}

.hero.is-mobile {
	display: none;
}

.hero.is-mobile .item {
	padding: 1em 0;
}

.hero.is-desktop .glide__slide:before {
	background-color: #000;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	opacity: .25;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.hero.is-mobile .glide__slide:before {
	background-color: #000;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	opacity: .5;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.home .hero.is-desktop .glide__slide,
.home .hero.is-desktop .glide__slide .inner,
.hero,
.hero .inner,
.hero .columns {
	min-height: 600px;
}

.hero ul.glide__slides {
	list-style: none;
    margin: 0;
    padding: 0;
}

.hero li.glide__slide {
	background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
	min-height: 600px;
	position: relative;
}

.hero .inner,
.hero ul.glide__slides,
.hero li.glide__slide {
	background-color: transparent;
	border-radius: 20px;
	overflow: hidden;
	width: 100%;
}

.hero li.glide__slide .column-thirds.content,
.hero li.glide__slide .column-half.content {
	position: relative;
	z-index: 100;
}

.hero li.glide__slide .column-thirds.content p,
.hero li.glide__slide .column-half.content p {
	color: #fff;
}

.hero li.glide__slide .column-thirds.content p.pre-title,
.hero li.glide__slide .column-half.content p.pre-title {
	color: var(--accent-color);
}

.hero li.glide__slide .column-thirds.content .button--light,
.hero li.glide__slide .column-half.content .button--light {
	border: 3px solid var(--primary-color);
}

.hero.is-mobile .inner {
	-webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	position: relative;
    z-index: 10;
}

.hero.is-mobile,
.hero.is-mobile .glide__slide,
.hero.is-mobile .inner {
	min-height: 350px;
    width: 100%;
}

.hero.is-mobile .glide__slide {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 350px;
	width: 100%;
}

/****************************************
 Icons
****************************************/
[class*="icon--"]:before {
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
	height: 16px;
	vertical-align: middle;
	width: 16px;
}

.icon--airplane:before {
	background-image: url(images/paper-plane-solid.svg);
}

.icon--paw:before {
	background-image: url(images/paw-solid.svg);
}

.icon--phone:before {
	background-image: url(images/phone-alt-solid.svg);
}

.icon--rectangle:before {
	background-image: url(images/mobile-button-solid.svg);
	width: 12px;
}

.icon--arrow-up:before {
	background-image: url(images/arrow-up-right-regular.svg);
}

.button--primary-color:hover .icon--paw:before,
.button--light .icon--paw:before {
	-webkit-filter: brightness(0) saturate(100%) invert(8%) sepia(71%) saturate(1771%) hue-rotate(177deg) brightness(95%) contrast(101%);
    filter: brightness(0) saturate(100%) invert(8%) sepia(71%) saturate(1771%) hue-rotate(177deg) brightness(95%) contrast(101%);
}

.button--primary-color .icon--paw:before,
.button--light:hover .icon--paw:before {
	-webkit-filter: brightness(0) saturate(100%) invert(92%) sepia(4%) saturate(3674%) hue-rotate(167deg) brightness(95%) contrast(101%);
    filter: brightness(0) saturate(100%) invert(92%) sepia(4%) saturate(3674%) hue-rotate(167deg) brightness(95%) contrast(101%);
}

.site-contact [class*="icon--"]:before {
	height: 10px;
	width: 10px;
}

.icon--arrow-up:before,
.hamburger .icon--paw:before {
	height: 21px;
	width: 21px;
}

.site-contact [class*="icon--"]:before,
.hamburger .icon--paw:before {
	-webkit-filter: brightness(0) saturate(100%) invert(72%) sepia(64%) saturate(451%) hue-rotate(33deg) brightness(92%) contrast(90%);
    filter: brightness(0) saturate(100%) invert(72%) sepia(64%) saturate(451%) hue-rotate(33deg) brightness(92%) contrast(90%);
}

.single-product .product__head .phones [class*="icon--"]:before,
.page-template-contact .phones [class*="icon--"]:before,
.page-template-financing .phones [class*="icon--"]:before,
.section--fifty-fifty .phones [class*="icon--"]:before,
.site-contact [class*="icon--"]:hover:before,
.hamburger:hover .icon--paw:before {
	-webkit-filter: brightness(0) saturate(100%) invert(46%) sepia(92%) saturate(2165%) hue-rotate(160deg) brightness(105%) contrast(96%);
    filter: brightness(0) saturate(100%) invert(46%) sepia(92%) saturate(2165%) hue-rotate(160deg) brightness(105%) contrast(96%);
}

/****************************************
 Infinite Scroll
****************************************/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  	display: block;
}

/****************************************
 Layout Constrain
****************************************/
.l-constrain {
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
	padding-left: .5em;
	padding-right: .5em;
}

.l-constrain--wide {
	margin-left: auto;
	margin-right: auto;
	max-width: 1800px;
	padding-left: .5em;
	padding-right: .5em;
}

/****************************************
 Links
****************************************/
a {
	color: var(--accent-color);
	text-decoration: none;
}

a:hover, a:focus, a:active {
    color: var(--link-hover);
}

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

a.is-pdf:after {
	background-image: url(images/file-pdf-solid.svg);
	background-repeat: no-repeat;
    content: "";
	display: inline-block;
	-webkit-filter: invert(18%) sepia(87%) saturate(7180%) hue-rotate(358deg) brightness(106%) contrast(111%);
    filter: invert(18%) sepia(87%) saturate(7180%) hue-rotate(358deg) brightness(106%) contrast(111%);
	height: 18px;
	margin: 0 0 0 .5em;
	width: 18px;
	vertical-align: middle;
}

a.disabled {
	color: #ccc;
	pointer-events: none;
}

/****************************************
 Locations
****************************************/
p.location__address {
    font-size: var(--font-xs);
	text-align: right;
}

.site-header p.location__address {
	margin: 0 0 .25em 0;
}

.location__address a:hover {
	color: var(--quaternary-color);
}

.page-template-contact .sidebar p.location__address {
	font-size: var(--font-md);
}

.page-template-contact .sidebar p.location__address a {
	color: var(--primary-color);
}

/****************************************
 Media
****************************************/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  	display: inline-block;
}

/****************************************
 Menus
****************************************/
.main-navigation {
	font-family: var(--font-secondary);
	font-size: var(--font-sm);
}

.main-navigation ul {
	display: block;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	background-color: var(--primary-color);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	color: #fff;
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul, 
.main-navigation ul ul li.focus > ul {
  	left: 100%;
}

.main-navigation ul ul a {
  	width: 200px;
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
  	display: block;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  	left: auto;
}

.main-navigation li {
	display: inline-block;
	margin: 0 0 0 1.5em;
	position: relative;
	vertical-align: middle;
}

.main-navigation li:first-child {
  	margin: 0;
}

.main-navigation ul.sub-menu li {
	border-bottom: 1px solid var(--quaternary-color);
	line-height: 1.2;
	margin: 0;
}

.main-navigation ul.sub-menu li:last-child {
	border: none;
}

.main-navigation ul.sub-menu li a {
	background-color: transparent;
	color: #fff;
	font-size: var(--font-sm);
	padding: 1em;
	text-transform: capitalize;
}

.main-navigation ul.sub-menu li a:hover,
.main-navigation ul.sub-menu li a:focus {
	background-color: var(--link-hover);
}

.main-navigation a {
	color: var(--copy);
    display: block;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation li.current-menu-item a {
  	color: var(--copy);
}

.main-navigation li.current-menu-item a:after,
.main-navigation li.current-menu-item a:before {
	content: "";
	display: inline-block;
	height: 1px;
	padding: 0.25em 0;
	width: 100%;
}

.main-navigation li.current-menu-item a:before {
  	border-top: 1px solid var(--accent-color);
}

.main-navigation li.current-menu-item a:after {
  	border-bottom: 1px solid var(--accent-color);
}

.main-navigation ul.sub-menu li.current-menu-item a:after,
.main-navigation ul.sub-menu li.current-menu-item a:before {
	display: none;
}

.main-navigation ul.sub-menu li.current-menu-item a:before,
.main-navigation ul.sub-menu li.current-menu-item a:after {
	border: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  	display: block;
}

.menu-toggle {
  	display: none;
}

.main-navigation ul {
  	display: block;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/****************************************
 Message Bar
****************************************/
.message-bar {
	background-color: var(--accent-color);
    font-size: var(--font-sm);
    padding: 1em;
    text-align: center;
}

.message-bar p {
	color: var(--primary-color);
    display: inline-block;
    font-size: var(--font-md);
    font-weight: 600;
    margin: 0 0 0 1em;
    padding: 0;
}

.message-bar span.address {
  	margin-right: 2em;
}

.message-bar span.phone a {
	color: var(--primary-color);
	text-decoration: none;
}

.message-bar span.phone a:hover {
  	text-decoration: underline;
}

/****************************************
 Mobile Menu
****************************************/
.hamburger {
	cursor: pointer;
    padding: 0 2em;
}

.hamburger .fas.fa-bars:not(.home) {
	color: #000;
}

.hamburger .fas.fa-bars {
	color: #fff;
	font-size: var(--font-xl);
}

.site-header .hamburger label {
	color: var(--quaternary-color);
	margin: 0 .5em 0 0;
}

.hamburger:hover label {
	color: #fff;
	text-decoration: underline;
}

.mobile-menu ul {
	margin: 0;
	padding: 0;
}

.mobile-menu ul li {
	display: block;
}

.mobile-menu ul li a {
	background-color: var(--primary-color);
	padding: 1em;
}

.mobile-menu ul li.menu-item-has-children a:after {
	background-image: url(images/plus-light.svg);
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
	-webkit-filter: invert(1);
	filter: invert(1);
	float: right;
	height: 18px;
	margin: 0 0 0 .5em;
	position: relative;
	top: -1px;
	width: 18px;
	vertical-align: middle;
}

.mobile-menu ul li.menu-item-has-children a.is-open:after {
	background-image: url(images/minus-light.svg);
}

.mobile-menu ul li.menu-item-has-children ul.sub-menu li a {
  	background-color: #fff;
}

.mobile-menu ul li.menu-item-has-children ul.sub-menu li a:hover,
.mobile-menu ul li.menu-item-has-children ul.sub-menu li a:focus {
  	background-color: #000;
	color: #fff;
}

.mobile-menu ul li.menu-item-has-children ul.sub-menu li a:after {
  	display: none;
}

/****************************************
 Owl Carousel
****************************************/
.owl-carousel button.owl-prev div {
	float: left;
}

.owl-carousel button.owl-next div {
	float: right;
}

.owl-carousel .owl-nav button.owl-prev, 
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
	outline: none;
}

/****************************************
 Page
****************************************/
.page__content {
  	padding: 0 .5em 1em .5em;
}

.single .page__content {
	padding: 2em 0 4em 0;
}

.page__title .pre-title,
.page__title h1,
.page__content .outer .inner__content,
.page__content .outer {
	position: relative;
}

.page__content .outer:before,
.page__content .outer {
	border-radius: 20px;
	padding: 0;
}

.page__content .outer:before {
	background: #E2F5F8;
    background: -webkit-gradient(linear,left top, left bottom,color-stop(25%, rgba(226, 245, 248, 1)), color-stop(75%, rgba(245, 248, 245, 1)), to(rgba(249, 248, 245, 1)));
    background: -o-linear-gradient(top,rgba(226, 245, 248, 1) 25%, rgba(245, 248, 245, 1) 75%, rgba(249, 248, 245, 1) 100%);
    background: linear-gradient(180deg,rgba(226, 245, 248, 1) 25%, rgba(245, 248, 245, 1) 75%, rgba(249, 248, 245, 1) 100%);
	content: "";
	display: block;
	height: 350px;
	position: absolute;
	width: 100%;
}

.page__title h1 {
	color: var(--primary-color);
	font-size: var(--font-3x);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 .5em 0;
	padding: 0;
	text-transform: unset;
}

.hero__internal .page__title h1 {
	padding: 0;
}

.page__description {
	font-size: var(--font-lg);
	font-weight: 300;
	padding: 2em 0 1em 0;
	text-align: center;
}

.page__content ul {
	font-size: var(--base-font);
	font-weight: 300;
}

.page__content h2 {
  	color: var(--primary-color);
    font-weight: 300;
}

.page-template-faqs .pre-title {
	margin: 0;
}

.page-template-faqs h1 {
	line-height: 1;
	padding: 0;
}

.page-template-faqs .page__title {
    padding: 4em 0 0 0;
}

.page-template-puppies-for-sale .page__content .outer:before {
	display: none;
}

.page-template-financing .media {
	border-radius: 20px;
	overflow: hidden;
}

.page-template-financing .media img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 50%;
	object-position: 50%;
	width: 100%;
}

body[class*="page-template-"] .inner {
    padding: 4em 0 2em 0;
	position: relative;
}

.home .hero .inner {
    padding: 0;
	background-color: #ffffff30;
}

body[class*="page-template-"] .inner .hero--internal .inner {
	padding: 0;
}

.page-template-contact .sidebar .phones.columns {
	gap: 1em;
}

.page-template-contact .sidebar .phones .phone {
	-ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.page-template-contact .phone a label {
	font-weight: 300;
}

.page-template-contact .phone a:hover label {
	color: var(--primary-color);
}

.page-template-blog-template-page .outer:before {
	display: none;
}

/****************************************
 Pip Nav
****************************************/
a.page-numbers {
	display: inline-block;
}

a.prev.page-numbers,
a.next.page-numbers {
	font-weight: 700;
}

ul.page-numbers,
a.page-numbers {
	line-height: normal;
}

.pagination,
.pip-nav {
	grid-column: 1 / -1;
	margin: 2em auto;
    text-align: center;
	width: 100%;
}

.pip-nav ul {
	margin-left: 0;
	text-align: center;
}

.pip-nav ul li {
	display: inline-block;
	list-style: none;
	padding: 0;
}

.pip-nav ul li:before {
  	display: none;
}

.pip-nav ul li.current,
.woocommerce nav.woocommerce-pagination ul li span.current,
.pip-nav ul li a,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
a.page-numbers,
.page-numbers.current {
	border-radius: 30px;
	font-size: var(--font-sm);
	padding: 0.5em 1.5em;
}

.pip-nav ul li.current,
.woocommerce nav.woocommerce-pagination ul li span.current,
.page-numbers.current {
	background-color: var(--tertiary-color);
	color: var(--primary-color);
}

.pip-nav ul li a,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
a.page-numbers {
	color: var(--copy);
	display: inline-block;
	position: relative;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.pip-nav ul li a:hover,
.pip-nav ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
a.page-numbers:hover {
	background-color: var(--primary-color);
	color: #fff;
	text-decoration: none;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
  	border: none;
}

/************************************
 Popup
************************************/
#popup-sp,
#popup-sp .inner {
	display: none;
}

#popup-sp {
	background-color: #00000075;
	bottom: 0;
	content: "";
	height: 100%;
    left: 0;
	position: absolute;
	right: 0;
    top: 0;
	width: 100%;
    z-index: 999999;
}

#popup-sp .inner {
	background-color: #eee;
	height: 500px;
    left: 50%;
	margin: 1em 0;
	max-height: 100%;
    overflow: scroll;
    padding: 2em;
	position: fixed;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	width: 600px;
    z-index: 2147483647;
}

#popup-sp .button--close {
	background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 0.5em;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999999;
}

a#popup-sp__cta,
#popup-sp__cta a {
	display: block;
}

/****************************************
 Prefooter
****************************************/
.pre-footer {
	background-color: var(--primary-color);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	font-weight: 300;
	padding: 3em 0;
}

.pre-footer,
.pre-footer p {
	color: #fff;
}

.page-template-contact p,
.pre-footer p {
	font-size: var(--font-xs);
	margin: 1em 0;
}

.page-template-contact ul,
.pre-footer ul {
	font-size: var(--font-sm);
	font-weight: 700;
	list-style: none;
	margin: 1em 0;
	padding: 0;
}

.pre-footer ul#footer-menu a {
    color: #fff;
    font-weight: 400;
}

.pre-footer ul#footer-menu a:hover {
    text-decoration: underline;
}

.pre-footer .phone,
.pre-footer ul#footer-menu li {
    margin: 0 0 1em 0;
}

.pre-footer li label {
	margin: 0 2em 0 0;
}

.pre-footer h3 {
	color: var(--tertiary-color);
}

.page-template-contact p.location__address,
.page-template-contact .phones label,
.pre-footer p.location__address,
.pre-footer .phones label {
    text-align: left;
}

.page-template-contact .site-contact,
.pre-footer .site-contact {
	border: none;
}

.page-template-contact .cta--social label,
.pre-footer .cta--social label {
    font-weight: 400;
    margin: 0 1em 0 0;
}

.pre-footer .cta--social label {
	color: var(--tertiary-color);
}

.sidebar .cta--social label {
	color: var(--primary-color);
}

.pre-footer .review-box img {
        display: block;
    height: 50px;
    margin: 0 0 .5em 0;
}

/* Improve spacing within the footer columns */
.pre-footer .columns--grid-fourths {
        gap: 2em;
}

@media only screen and (max-width: 900px) {
        .pre-footer .column-item {
                margin-bottom: 2em;
        }

        .pre-footer .column-item:last-child {
                margin-bottom: 0;
        }
}

/****************************************
 Posts and Pages
****************************************/
.sticky {
  	display: block;
}

.hentry {
  	margin: 0 0 1.5em;
}

.updated:not(.published) {
  	display: none;
}

.page-content,
.entry-content,
.entry-summary {
  	margin: 1.5em 0 0;
}

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

/****************************************
 Sections
****************************************/
.reviews-navigation {
	padding: 1em;
}

.reviews-navigation .outer {
	padding: 1em;
}

.reviews-navigation .outer {
	background-color: var(--primary-color);
	border-radius: 20px;
}

/****************************************
 Sections
****************************************/
.section {
	display: block;
	padding: 1em .5em;
}

.section .outer {
	border-radius: 20px;
	overflow: hidden;
	padding: 3em 0em;
}

.section .pre-title {
	color: #fff;
	margin: 0;
}

.section h2 {
	color: var(--copy);
	font-size: var(--font-3x);
	font-weight: 300;
	line-height: 1;
	margin: 0;
}

.section h2 span {
	font-weight: 700;
}

.section__head {
	margin: 0 0 2em 0;
}

.section--puppies .section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2em;
}

.section--puppies .section__head h2 {
	font-size: var(--font-2x);
	font-weight: 400;
	color: #999;
	margin: 0;
	line-height: 1.2;
	flex: 1;
	order: 1;
}

.section--puppies .section__head h2 span {
	font-weight: 700;
	color: #000;
	font-size: var(--font-3x);
}

.section--puppies .section__head .button {
	flex-shrink: 0;
	order: 2;
}

@media only screen and (max-width: 750px) {
	.section--puppies .section__head {
		display: block;
		text-align: center;
	}
	
	.section--puppies .section__head .button {
		display: block;
		width: 90%;
		margin: 0 auto 1em auto;
	}
	.section--puppies .section__head h2 {
		font-size: var(--font-2x);
		font-weight: 400;
		color: #999;
		margin: 0;
		line-height: 1.2;
	}
	
	.section--puppies .section__head h2 span {
		font-weight: 700;
		color: #000;
		font-size: var(--font-3x);
	}
}



.pre-title,
.single-product .pre-title a,
.product-item .pre-title a,
.section--blogs .pre-heading {
	color: var(--accent-color);
	font-size: var(--font-xs);
	font-weight: 700;
    text-transform: uppercase;
}

.section--banner .outer {
	background-color: #eeebe5;
	padding: 0;
}

.section.section--banner {
    position: relative;
    padding: 10px 12px;
}

.section--banner .column-fourths.media {
    border-bottom-right-radius: 0;
    border-top-right-radius: 70%;
    box-shadow: 43px 0px 0px var(--accent-color);
    line-height: 0;
    overflow: hidden;
}

.section--banner .column-fourths.media img {
	height: 200px;
	-o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50%;
    object-position: 50%;
    width: 100%;
}

.section--banner .column-three-fourths.content.columns {
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
}

.section--banner .column-item label {
    font-size: var(--font-2x);
}

.section--banner .column-item label,
.section--banner .column-item strong {
	font-weight: 700;
}

.section--banner .column-item {
	line-height: 1;
    padding: 0 3em;
}

.section--fifty-fifty {
	padding: 0 1em;
}

.section--fifty-fifty .outer,
.section--puppies .outer {
	background-color: #fbfbfb;
}

.section--fifty-fifty .outer {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.section--fifty-fifty h2 {
	font-weight: 700;
}

.section--fifty-fifty h3 {
    font-size: var(--font-2x);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 1em 0;
    width: 60%;
}

.section--fifty-fifty p.description {
	font-size: var(--font-lg);
	font-weight: 700;
	margin: 
}

.section--fifty-fifty .button--secondary-color:hover {
	background-color: var(--link-hover);
}

.single-product .product__head .phones,
.page-template-financing .content .phones,
.section--fifty-fifty .phones {
	border-top: 1px solid #eee;
	padding: 1em 0;
}

.single-product .product__head .phones .phone label,
.page-template-financing .content .phones .phone label,
.page-template-contact .sidebar .phones .phone label,
.section--fifty-fifty .phones .phone label {
	display: block;
	font-size: var(--font-xs);
}

.single-product .product__head .phones .phone label,
.page-template-financing .content .phones .phone label,
.section--fifty-fifty .phones .phone label {
	text-align: right;
}

.page-template-contact .sidebar .phones .phone label {
	text-align: left;
}

.single-product .product__head .phone a,
.page-template-financing .content .phone a,
.page-template-contact .sidebar .phone a,
.section--fifty-fifty .phone a {
    font-size: var(--font-lg);
    font-weight: 700;
    line-height: 1.2;
}

.single-product .product__head .phone a,
.page-template-financing .content .phone a,
.page-template-contact .sidebar .phone a,
.section--fifty-fifty .phone a,
.single-product .product__head .phone a:hover label,
.page-template-financing .content .phone a:hover label,
.page-template-contact .sidebar .phone a:hover label,
.section--fifty-fifty .phone a:hover label {
	color: var(--primary-color);
}

.single-product .product__head .phone a:hover,
.page-template-financing .content .phone a:hover,
.page-template-contact .sidebar .phone a:hover,
.section--fifty-fifty .phone a:hover {
	color: var(--accent-color);
}

.single-product .product__head .phone a span,
.page-template-financing .content .phone a span,
.page-template-contact .sidebar .phone a span,
.section--fifty-fifty .phone a span {
	background-color: var(--tertiary-color);
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    text-align: center;
    width: 30px;
    vertical-align: middle;
}

.single-product .product__head .phone a span.icon--retangle:before,
.page-template-financing .content .phone a span.icon--rectangle:before,
.page-template-contact .sidebar .phone a span.icon--rectangle:before,
.section--fifty-fifty .phone a span.icon--rectangle:before {
	left: 0;
	position: relative;
}

.phones.columns {
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 2em;
}

.home .section--puppies {
	padding: 0 .5em 1em .5em;
}

.section--puppies {
	padding: 2em .5em 1em .5em;
}

.section--puppies .button .icon--paw:before {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.section--puppies .outer {
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.section--quick-links .grid-item h3 {
	font-weight: 600;
	margin: 0;
}

.section--quick-links .grid-item h3,
.section--quick-links .grid-item label {
	display: block;
	font-size: var(--font-2x);
}

.section--quick-links .grid-item label {
	font-size: var(--font-xl);
}

.section--quick-links .grid-item h3 span {
	font-weight: 300;
}

.section--quick-links h3,
.section--quick-links h3 span,
.section--quick-links p,
.section--quick-links a {
	color: #000;
}

.section--quick-links .grid-item:first-child h3,
.section--quick-links .grid-item:first-child h3 span,
.section--quick-links .grid-item:first-child p,
.section--quick-links .grid-item:first-child a {
	color: var(--primary-color);
}

.section--quick-links .grid-item .content {
    line-height: 1.2;
}

.section--quick-links .grid-item {
	background-color: #eee;
	background-repeat: no-repeat;
    background-size: cover;
	border-radius: 20px;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	background-position: 55% 100%;
}

.section--quick-links .grid-item p {
	margin: 1em 0 0 0;
}

.section--quick-links .grid-item a {
	border-radius: 0;
}

.section--quick-links .grid-item a,
.section--quick-links .grid-item .inner {
	height: 325px;
}

.section--quick-links .grid-item .inner {
	padding: 2em;
	position: relative;
	z-index: 10;
}

.section--quick-links .grid-item [class*="button--"] {
	display: inline-block;
	width: auto;
}

.section--about {
	background-color: #fff;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	padding: 4em 0 2em 0;
	text-align: left;
}

.single .section--about {
	background-color: transparent;
}

.section--about h2 {
	margin: 0 0 .25em 0;
}

.section--about h2,
.section--about h3 {
	color: var(--primary-color);
}

.section--about h2 span,
.section--about h3 span {
	color: var(--secondary-color);
}

.section--about subtitle {
	font-weight: 500;
}

.section--about .bottom {
    border-top: 1px solid var(--copy);
    margin: 4em 0 0 0;
	padding: 1em;
}

.section--about .bottom .is-cta {
	text-align: right;
}

.single-product .section--about .bottom {
	margin: 0;
}

.section--cta {
    margin: 0 0 -7em 0;
	padding: 5em 0 0 0;
    position: relative;
}

.section--cta .outer {
	background-color: var(--secondary-color);
	padding: 3em;
}

.section--cta h2 span {
	color: var(--accent-color);
}

.section--cta p {
	margin: 0 0 2em 0;
}

.section--cta .column-half.media.columns {
	-ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.section--cta .column-half.media.columns img {
	height: 150px;
	margin: 0 1em 0 0;
}

.section--cta .button-group a {
	border-radius: 3px;
	margin: 0 0 1em 0;
	padding: .5em 2em;
}

.section--cta .button-group a:first-child {
	margin: 0 1em 1em 0;
}

.section--reviews-grid .outer,
.section--testimonials .outer {
	background-color: #f7f5ef;
	padding: 3em 0 5em 0;
}

.section--reviews-grid {
	padding: 0 1em;
}

.section--reviews-grid .outer {
	border-radius: 20px;
}

.section--testimonials .section__head {
	position: relative;
	z-index: 10;
}

.section--testimonials h2 {
	color: var(--primary-color);
	margin: 0 0 .25em 0;
}

.section--testimonials h3 {
	font-size: var(--font-sm);
    font-weight: 700;
    padding: 0;
    text-transform: capitalize;
}

.section--testimonials .content p {
	font-size: var(--font-sm);
	margin: 1em 0;
}

.section--testimonials .glide__arrows {
    left: 50%;
    position: absolute;
	top: 115%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    z-index: 100;
}

.section--testimonials .glide__arrow--left, 
.section--testimonials .glide__arrow--right {
	background-color: transparent;
	position: static;
    width: auto;
}

.section--testimonials .glide__arrow--left:before,
.section--testimonials .glide__arrow--right:before {
    -webkit-filter: brightness(0) saturate(100%) invert(14%) sepia(8%) saturate(351%) hue-rotate(149deg) brightness(99%) contrast(90%);
    filter: brightness(0) saturate(100%) invert(14%) sepia(8%) saturate(351%) hue-rotate(149deg) brightness(99%) contrast(90%);
    height: 24px;
    width: 24px;
}

.home .section--contact {
	padding: 2em 0;
}

.section--contact .outer {
	background-color: #fff;
	padding: .5em 0;
}

.section--contact h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin: 1em 0;
}

.section--contact .contact-item {
	background-color: var(--tertiary-color);
	border-radius: 20px;
}

.section--contact .content {
	padding: 2em;
}

.section--contact .media {
	background-size: cover;
    background-position: 50%;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 0;
	border-top-right-radius: 20px;
	border-top-left-radius: 0;
    overflow: hidden;
}

.section--contact .media h3 {
	color: #fff;
	margin: 0 0 1em 0;
}

.section--contact .content .directions {
	display: none;
}

.section--contact .phone-numbers {
	list-style: none;
	margin: 0 0 2em 0;
	padding: 0;
}

.section--contact .phone-numbers label {
	font-weight: 600;
}

.section--contact .ctas {
	text-align: center;
}

.section--blogs h2 {
	margin: 0 0 .25em 0;
}

.section--blogs h2 span {
	color: var(--secondary-color);
}

.section--blogs .section-head {
	margin: 0 0 2em 0;
}

.section--blogs .section-head .content p {
	text-align: right;
}

.section--secondary-form {
	position: relative;
}

.section--secondary-form:after {
	background-image: url(images/seamless-bg-pattern.png);
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.section--secondary-form h2,
.section--secondary-form .outer {
	position: relative;
	z-index: 10;
}

.section--secondary-form h2 {
    font-size: var(--font-xl);
    font-weight: 600;
    margin: 0 auto 1em auto;
    width: 80%;
}

.section--secondary-form .outer {
	background-color: #fff;
	padding: 4em 2em;
}

.section--secondary-form .gform_wrapper .gfield_checkbox label {
	color: var(--copy);
	display: inline-block;
}

.section--reviews-grid .grid-item {
	background-color: #fff;
	border-radius: 30px;
	margin: 0 0 2em 0;
	padding: 2em;
}

.section--reviews-grid .grid-item .fallback-letter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: var(--base-font);
    height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 1em 0;
    width: 50px;
}

.section--reviews-grid .grid-item .fallback-letter.has-image {
	background-repeat: no-repeat;
	background-size: cover;
}

.section--reviews-grid .grid-item:nth-child(even) .fallback-letter {
	background-color: var(--primary-color);
	color: #fff;
}

.section--reviews-grid .grid-item:nth-child(odd) .fallback-letter {
	background-color: var(--secondary-color);
	color: #fff;
}

.section--reviews-grid .grid__pagination {
	border-top: 1px solid #eee;
    margin: 2em 0 0 0;
    padding: 2em 0 0 0;
    text-align: center;
}

.section--reviews-grid .review__meta {
	margin: 2em 0 0 0;
}

.section--reviews-grid .review__meta .content {
	padding: 0 1em;
}

.section--reviews-grid .review__meta .columns {
	-webkit-box-pack: normal;
    -ms-flex-pack: normal;
    justify-content: normal;
}

.section--reviews-grid .review__author {
	font-weight: 600;
}

.section--reviews-grid .review__type {
	font-size: var(--font-xs);
}

.section--reviews-grid .inner {
	font-size: var(--font-sm);
	margin: 1em 0 0 0;
}

.section--reviews-grid .grid-item h2 {
    font-size: var(--font-md);
    font-weight: 600;
    line-height: 1.2;
}

.section--related h2 {
	font-size: var(--font-2x);
    font-weight: 600;
    margin: 1em 0;
    text-align: center;
}

.section--related p.related-link {
    margin: 0 0 1em 0;
}

.section--related p.related-link a {
    color: var(--link-hover);
	font-size: var(--font-md);
}

.section--related p.related-link a:hover {
    text-decoration: underline;
}

.section--map {
	margin: 3em 0 0 0;
	padding: 1em 0 0 0;
}

.section--puppy-filter .select2-container .select2-dropdown, 
.section--puppy-filter .select2-container .select2-selection,
.section--map iframe {
    border-radius: 20px;
}

.section--puppy-filter .select2-container .select2-dropdown, 
.section--puppy-filter .select2-container .select2-selection {
	border: 2px solid #e0dddb;
}

.section--puppy-filter {
	padding: 1em 0 0 0;
}

.section--puppy-filter .outer {
	background-color: #efebe7;
	padding: 1em;
}

.section--puppy-filter h3 {
	display: none;
}

.section--puppy-filter .bapf_sfilter {
	margin: 0;
}

.section--puppy-filter .select2-container--default .select2-selection--multiple .select2-selection__rendered {
	padding: 0 1em;
}

.section--puppy-filter .select2-container--default .select2-search--inline .select2-search__field {
	font-weight: 700;
}

.section--puppy-filter .bapf_sfilter.bapf_button_berocket .bapf_button {
    font-size: var(--font-sm);
}

.section--product-details strong {
    font-size: var(--font-lg);
}

.section--divider {
	padding: 3em 0;
	text-align: center;
}

.section--divider .inner {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 30px;
	min-height: 250px;
	overflow: hidden;
	padding: 2em !important;
	position: relative;
}

.section--divider .inner:before {
	background-color: var(--primary-color);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	opacity: .5;
	position: absolute;
	top: 0;
	width: 100%;
}

.section--divider,
.section--divider .inner h2,
.section--divider .inner p,
.section--divider .inner img {
	color: #fff;
	position: relative;
	z-index: 100;
}

/****************************************
 Single
****************************************/
.single .nav-links {
  border-bottom: 1px solid var(--lt-gray);
  border-top: 1px solid var(--lt-gray);
  overflow: hidden;
  padding: 2em 0;
}

.single .nav-links a {
	color: var(--quaternary-color);
}

.single .nav-links a:hover {
	color: var(--copy);
	text-decoration: underline;
}

.single .nav-previous:before,
.single .nav-next:before {
  display: block;
}

.single .nav-previous:before {
  content: "\276E \00a0 Previous Post";
  text-align: left;
}

.single .nav-next:before {
  content: "Next Post \00a0 \276F";
  text-align: right;
}

.single-product h1 {
    color: var(--primary-color);
    font-size: var(--font-2x);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    padding: 0 0 1em 0;
}

.single-product .product__head .phones {
    background-color: var(--background-color);
    border-radius: 30px;
    margin: 0 0 2em 0;
    padding: 1em 2em;
}

.single-product .product-item__cta {
	border-top: 1px solid var(--copy);
	padding: 1em 0 0 0;
}

.single-product .product-item__cta .button {
	border-radius: 0;
	text-align: center;
}

.single-product .product__head {
	padding: 0 1em 1em 1em;
}

.single-product .product__head .outer {
	background-color: #eeebe5;
    border-radius: 30px;
	padding: 3em 0 4em 0;
    position: relative;
    z-index: 10;
}

.single-product .product__head .inner {
	margin: 0 auto;
	width: 60%;
}

.single-product .product__head .inner p {
	font-size: var(--font-sm);
	margin: 0;
}

.single-product .product__head .media,
.single-product .product__head .content {
	background-color: #fff;
}

.single-product .product__head .media {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	position: relative;
}

.single-product .product__head .content {
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	margin: 0 auto;
	padding: 2em;
}

.single-product .product__head .content label {
	font-size: var(--font-md);
	font-weight: 700;
}

.single-product .product__head .media img {
    border-radius: 30px;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.single-product .product__head .single-puppy__data.no-gallery .media img {
	height: 585px;
}

.single-product .short-description {
	font-size: var(--font-md);
	margin: 2em 0;
}

.single-product .gallery-items img {
    border-radius: 30px;
}

.single-puppy p {
	font-size: var(--font-sm);
	line-height: 1.3;
	margin: 0 0 .25em 0;
}

.product-item .single-puppy__gender,
p.single-puppy__dob {
	margin: 0;
}

.single-puppy .column-item a {
	display: block;
	font-size: var(--font-sm);
}

.single-product .product-item .single-puppy__identity span,
.product-item .single-puppy__gender {
	border-radius: 20px;
	display: inline-block;
	font-size: var(--font-xs);
	padding: 2px 1em;
	text-align: right;
}

.single-product .product-item .single-puppy__identity span {
	line-height: 20px;
}

.single-product .product-item.is-Male .single-puppy__identity span,
.product-item.is-Male .single-puppy__gender {
	background-color: #daf6f8;
	color: #03b1c1;
}

.single-product .product-item.is-Female .single-puppy__identity span,
.product-item.is-Female .single-puppy__gender {
	background-color: #ffdade;
	color: #f03f50;
}

/****************************************
 Site Footer
****************************************/
.site-footer {
        background-color: var(--primary-color);
        clear: both;
        font-size: var(--font-xs);
        padding: 1.5em 0;
        text-align: center;
        width: 100%;
}

.site-footer,
.site-footer p,
.site-footer a {
	color: #fff;
}

.site-footer a:hover {
        text-decoration: underline;
}

.site-footer .l-constrain {
        padding: 0 1em;
}

/****************************************
 Site
****************************************/
.site-branding {
	display: block;
	margin: 0;
	position: relative;
	width: 100%;
}

.site-menu {
    background-color: transparent;
    display: inline-block;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    min-height: auto;
    line-height: 1;
}

.site-menu--mobile {
	background-color: var(--primary-color);
	border-bottom-left-radius: 20px;
	box-shadow: 0 0 0 100000px rgb(0 0 0 / 90%);
	text-align: left;
}

.site-menu--mobile:not(.offcanvas) {
	-webkit-animation: slideInRight .7s;
    animation: slideInRight .7s;
	display: none;
	max-height: calc(100% - 50px);
	min-height: 100%;
	overflow-y: auto;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 50%;
	z-index: 99999999;
}

.site-menu--mobile .phone {
	background-color: var(--tertiary-color);
	bottom: 0;
    left: 0;
	padding: 1em;
    position: absolute;
    text-align: center;
    width: 100%;
}

.site-menu--mobile .phone label,
.site-menu--mobile .phone a {
	display: inline-block;
}

.site-menu--mobile a {
	color: #fff;
	display: block;
}

.site-menu--mobile a:hover {
	background-color: #000;
	color: #fff;
}

.site-menu--mobile li.menu-item a:hover {
	color: var(--quaternary-color);
}

.site-menu--mobile .phone a {
	color: var(--primary-color);
	font-size: var(--font-lg);
	font-weight: 700;
}

.site-menu--mobile .phone a:hover {
	background-color: transparent;
	text-decoration: underline;
}

.site-menu--mobile ul.sub-menu {
	background-color: #fff;
	display: none;
}

.site-menu--mobile ul.sub-menu li a {
	border-bottom: 1px solid #eee;
	color: var(--primary-color);
}

.site-menu--mobile ul.sub-menu li:last-child a {
	border-bottom: none;
}

.site-menu--mobile ul.sub-menu li a:hover,
.site-menu--mobile ul.sub-menu li a:focus {
	background-color: var(--gray);
	color: #000;
}

.site-menu__close {
	background-color: var(--primary-color);
	padding: 1em 1em 3em 1em;
}

.site-menu__close .fas.fa-times-circle {
	color: #fff;
	font-size: var(--font-xl);
}

.site-name {
	background-color: #faf9f5;
	display: inline-block;
	line-height: normal;
	overflow: hidden;
	padding: 0.75em 1em;
	text-align: left;
}

.site-logo img,
.site-logo--secondary img {
	-o-object-fit: contain;
	object-fit: contain;
	text-align: center;
}

.site-logo a {
	color: var(--copy);
	font-size: var(--font-lg);
	font-weight: 700;
	text-decoration: none;
}

.site-logo--secondary {
	display: inline-block;
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	padding: .25em;
	text-align: center;
}

.site-logo--secondary img {
	height: 75px;
}

.site-logo img {
	height: 50px;
	text-align: left;
	width: auto;
}

.site-title h1 {
	color: #000;
	font-family: var(--font-family);
	font-size: var(--font-lg);
	font-weight: 400;
	line-height: 1;
	margin: 0;
}

.site-title p {
	margin: 0;
}

.site-logo,
.site-description {
	display: inline-block;
}

.site-description p,
.site-description {
	color: #fff;
}

.hamburger label,
.site-description span {
	font-family: "Lobster Two", sans-serif;
	font-size: var(--font-md);
	font-weight: 400;
	margin: 0 0 0 1.5em;
}

.site-contact {
	border-right: 1px solid #b7e3f435;
	margin: 0 0 0 auto;
	padding: 0 2em 0 0;
}

.site-contact span.phone {
	display: inline-block;
	line-height: 1.2;
	font-weight: 700;
}

.site-contact a {
	color: #fff;
}

.site-contact a:hover {
	color: var(--quaternary-color);
}

.site-contact label {
	color: var(--tertiary-color);
	display: block;
	font-size: var(--font-xs);
	font-weight: 300;
	text-align: right;
}

/****************************************
 Site Header
****************************************/
.site-header {
	padding: .5em;
}

.archive .site-header .inner,
body[class*="post-template-"] .site-header .inner,
body[class*="product-template-"] .site-header .inner,
body[class*="post-type-"] .site-header .inner,
body[class*="page-template-"] .site-header .inner {
	background-color: var(--primary-color);
	border-radius: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex; 
	padding: 1em;
	width: 100%;
}

/****************************************
 Slider
****************************************/
.aps-slider-wrapper-class a.adl-featured-img-link {
  	margin: 0 !important;
}

.slide {
     position: relative;
     z-index: 1;
}

.slider-content{
     position: absolute;
     top: 20px;
     left: 20px;
     z-index: 100;
}

#slider__home {
	margin-bottom: 0 !important;
	position: relative;
}

#slider__home .sa_hover_container:before {
	background-color: #000;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	opacity: .4;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

#slider__home h1 {
  	z-index: 10;
}

#slider__home .inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 400px;
}

#slider__home .inner h1 {
	color: #fff;
	font-size: var(--font-4x);
	font-weight: 600;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
#slider__home .owl-dots {
  	z-index: 10;
}

.owl-carousel .owl-dots button {
  	width: auto;
}

#slider__home .owl-dots {
  	bottom: 20px !important;
}

/****************************************
 Slider
****************************************/
.sa_owl_theme .owl-nav {
    left: 50%;
	position: absolute;
    top: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}

.sa_owl_theme .owl-nav .owl-prev{
    float: left;
}

.sa_owl_theme .owl-nav .owl-next {
    float: right;
}

.aps-slider-wrapper-class a.adl-featured-img-link {
  margin: 0 !important;
}

.slide {
  position: relative;
  z-index: 1;
}

.slider-content {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
}

#slider__home {
  margin-bottom: 0 !important;
  position: relative;
}

#slider__home .sa_hover_container:before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.45;
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 72%
  );
}

#slider__home h1 {
  z-index: 10;
}

#slider__home .inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 600px;
  position: relative;
  z-index: 100;
}

#slider__home a {
  display: inline-block;
  font-size: var(--font-lg);
  line-height: 0.5;
  margin: 2em 0 0 0;
  padding: 1em 2em;
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: white;
}

#slider__home a:hover {
  background-color: var(--accent-color);
  color: var(--background-color);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
#slider__home .owl-dots {
  z-index: 10;
}

.owl-carousel .owl-dots button {
  width: auto;
}

#slider__home .owl-dots {
  bottom: 20px !important;
}

#slider__reviews .sap_slider_container {
  margin: 0 auto !important;
  width: 80%;
}

#slider__reviews .sap_slider_container p {
  font-size: var(--font-xl);
  line-height: 1.5;
}

.section--testimonials .sap_owl_theme .owl-dots .owl-dot span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent !important;
  border: 1px solid var(--lt-gray) !important;
  border-style: solid !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 5px;
  position: relative;
}

.section--testimonials .sap_owl_theme .owl-dots .owl-dot span {
  border: 1px solid #fff !important;
}

.section--testimonials .sap_owl_theme .owl-dots .owl-dot span:before {
  color: var(--lt-gray);
  content: "\2022";
  font-size: 20px;
  display: inline-block;
  left: 50%;
  position: absolute;
  top: 4%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.section--testimonials .sap_owl_theme .owl-dots .owl-dot span:before {
  color: #fff;
  top: 0;
}

.section--testimonials .sap_owl_theme .owl-dots .owl-dot.active span {
  border: 1px solid var(--accent-color) !important;
}

.section--testimonials .sap_owl_theme .owl-dots .owl-dot.active span:before {
  color: var(--accent-color);
}

.sap_owl_theme .owl-nav .owl-prev div,
.sap_owl_theme .owl-nav .owl-next div {
  background-color: transparent !important;
  -webkit-filter: invert(93%) sepia(0%) saturate(211%) hue-rotate(164deg)
    brightness(97%) contrast(75%);
  filter: invert(93%) sepia(0%) saturate(211%) hue-rotate(164deg)
    brightness(97%) contrast(75%);
}

.sap_owl_theme .owl-nav .owl-prev div:hover,
.sap_owl_theme .owl-nav .owl-next div:hover {
  -webkit-filter: invert(15%) sepia(29%) saturate(2965%) hue-rotate(313deg)
    brightness(92%) contrast(85%);
  filter: invert(15%) sepia(29%) saturate(2965%) hue-rotate(313deg)
    brightness(92%) contrast(85%);
}

/****************************************
 Social Media
****************************************/
.share-buttons {
	padding: 2em 0;
}

.share-buttons .inner {
	background-color: var(--primary-color);
    border-radius: 30px;
    display: inline-block;
    padding: .5em 1em;
    text-align: center;
}

.share-buttons h3 {
    color: #fff;
	font-size: var(--font-xs);
    display: inline-block;
    margin: 0 1em 0 0;
	text-transform: uppercase;
}

.share-buttons .a2a_kit a {
    background-color: transparent;
    border: 1px solid #bacbc2 !important;
    border-radius: 50%;
    filter: none;
    line-height: 0;
	margin: 0 .25em 0 0;
    padding: .25em;
}

.share-buttons .a2a_kit a:hover {
    background-color: #bacbc2 !important;
    border: 1px solid #bacbc2 !important;
    border-radius: 50%;
    line-height: 0;
    padding: .25em;
}

.share-buttons .a2a_kit a:hover .a2a_svg svg {
	fill: #32434f;
	-webkit-filter: brightness(0) saturate(100%) invert(21%) sepia(11%) saturate(1502%) hue-rotate(162deg) brightness(91%) contrast(82%);
    filter: brightness(0) saturate(100%) invert(21%) sepia(11%) saturate(1502%) hue-rotate(162deg) brightness(91%) contrast(82%);
}

.social-media--footer ul li a {
    background-color: var(--tertiary-color);
    border-radius: 50%;
    display: block;
    height: 21px;
    width: 21px;
}

.social-media--footer span {
	display: block;
    height: 100%;
    position: relative;
}

.social-media--footer ul li a:hover {
	background-color: var(--quaternary-color);
}

.social-media--footer span[class*="socicon-"]:before {
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    -webkit-filter: brightness(0) saturate(100%) invert(8%) sepia(71%) saturate(1771%) hue-rotate(177deg) brightness(95%) contrast(101%);
    filter: brightness(0) saturate(100%) invert(8%) sepia(71%) saturate(1771%) hue-rotate(177deg) brightness(95%) contrast(101%);
    height: 12px;
	left: 50%;
	position: absolute;
	-webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    width: 12px;
    vertical-align: middle;
}

/****************************************
 Tabs
****************************************/
.tabbed-content.is-desktop {
	display: block !important;
}

ul.tabs {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.tabs .column-half {
	-ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

ul.tabs li.tab__main-title {
	background-color: var(--primary-color);
	cursor: pointer;
	padding: .5em;
	position: relative;
	text-align: center;
}

ul.tabs li.tab__main-title.current {
	background: var(--accent-color);
    color: #fff;
	overflow: hidden;
	position: relative;
}

ul.tabs li.tab__main-title.current:hover:before {
	display: none;
}

ul.tabs li.tab__main-title.current h3 {
	position: relative;
    z-index: 10;
}

.tab-item {
	display: none;
	padding: 2em 0;
}

.tab-item.current {
	display: inherit;
}

/****************************************
 Testimonials
****************************************/
.testimonials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.testimonial__item {
	background-color: #fff;
	border: 3px solid transparent;
	-ms-flex-preferred-size: 32%;
	flex-basis: 32%;
	margin: 0;
	position: relative;
}

.testimonial__item:nth-child(odd) {
	border: 3px solid var(--secondary-color);
}

.testimonial__item:nth-child(even) {
	border: 3px solid var(--tertiary-color);
}

.testimonial__item .inner {
	padding: 2em;
	position: relative;
	text-align: left;
}

.testimonial__item:hover {
	border: 3px solid var(--accent-color);
}

.testimonial__item a {
	display: block;
	text-decoration: none;
}

.testimonial-info {
	font-size: var(--font-xs);
}

span.star:before {
    background-image: url(images/star-sharp-solid.svg);
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    -webkit-filter: brightness(0) saturate(100%) invert(86%) sepia(97%) saturate(3557%) hue-rotate(331deg) brightness(98%) contrast(109%);
    filter: brightness(0) saturate(100%) invert(86%) sepia(97%) saturate(3557%) hue-rotate(331deg) brightness(98%) contrast(109%);
    height: 18px;
    width: 18px;
    vertical-align: middle;
}

p.rating {
	margin: 0;
}


/****************************************
 Widgets
****************************************/
.widget {
  	margin: 0 0 1.5em;
  	/* Make sure select elements fit in widgets. */
}
.widget select {
  	max-width: 100%;
}

/****************************************
 Woocommerce
****************************************/
.woocommerce .productz {
	list-style: none;
	margin: 2em 0;
	padding: 0;
}

.woocommerce .product a.button.product_type_simple {
	display: none;
}

.woocommerce li.product .pre-title {
	line-height: 1;
	margin: .25em 0;
}

.woocommerce li.product h3 {
	border: none;
	margin: 0 0 1em 0;
	padding: 0;
}

.woocommerce ul.products li.product,
.woocommerce-shop .column-item.product-category,
.section--puppies .column-item.product-category {
    background-color: transparent;
    margin: 0;
    padding: 0;
}

@media screen and (min-width: 1025px) {
	.woocommerce-page.columns-3 ul.products li.product,
	.woocommerce.columns-3 ul.products li.product {
		width: 33.3% !important;
	}
}

@media (min-width: 768px) {
	.woocommerce ul.products li.product,
	.woocommerce-shop .column-item.product-category,
	.section--puppies .column-item.product-category {
		padding: 0 .5em;
	}
}

.woocommerce li.product,
.woocommerce-shop .column-item.product-category {
	border: none;
}

.woocommerce li.product h3,
.woocommerce-shop .column-item.product-category h3,
.section--puppies .column-item.product-category h3 {
    border-top: 1px solid #eee;
    font-size: var(--font-lg);
    margin: 1em 0;
    padding: 1em 0 0 0;
}

.woocommerce-shop .button--secondary-color,
.section--puppies .button--secondary-color {
	border-radius: 0;
	font-size: var(--font-sm);
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

.woocommerce li.product .product-item h3 a {
	color: var(--primary-color);
}

.woocommerce li.product .product-item h3 a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}

.woocommerce li.product p.product-item__excerpt,
.woocommerce-shop p.category-excerpt,
.section--puppies p.category-excerpt {
    color: #000;
    font-size: var(--font-sm);
}

.woocommerce li.product .product-item__cta,
.woocommerce-shop .product-category__cta,
.section--puppies .product-category__cta {
	-ms-flex-item-align: end;
    align-self: flex-end;
    width: 100%;
}

.woocommerce li.product .product-item__cta {
	border-top: 1px solid #eee;
    padding: 1em 0;
    text-align: center;
}

.woocommerce li.product .media,
.woocommerce-shop .column-item.product-category .media,
.section--puppies .column-item.product-category .media {
	margin: 0 auto;
}

.woocommerce li.product .media a img,
.woocommerce-shop ul.products .column-item.product-category .media a img,
.section--puppies ul.products .column-item.product-category .media img {
	border-radius: 30px;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.woocommerce li.product .content {
	margin: 0 auto;
    padding: 1em 0;
    width: 80%;
}

.single-product.woocommerce .product-item,
.woocommerce .product-item {
    background-color: #fff;
    border-radius: 30px;
}

.single-product.woocommerce .column-item.product-item {
	background-color: transparent;
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	left: 1em;
	right: unset;
    top: 1em;
}

.woocommerce span.onsale {
    background-color: #f37462;
    font-size: var(--font-xs);
	line-height: 50px;
    min-height: 50px;
    min-width: 50px;
    padding: 0;
}




/**************************************
 Youtube / Vimeo Videos
**************************************/
.embed-responsive {
	display: block;
	height: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.vimeo,
.youtube {
	cursor: pointer;
	position: relative;
}

.vimeo:before,
.youtube:before {
	background-color: var(--copy);
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	opacity: .70;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 10;
}

.vimeo.has-video:before,
.youtube.has-video:before {
	display: none;
}

.vimeo img,
.youtube img {
	left: 0;
    height: 100%;
    margin-top: 0;
	-o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.vimeo .play-button,
.youtube .play-button {
    background-color: #fff;
	border-radius: 6px;
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
	height: 50px;
    opacity: 0.8;
	width: 75px;
	z-index: 100;
}

.vimeo .play-button:before,
.youtube .play-button:before {
	background-image: url(images/play-solid.svg);
	background-repeat: no-repeat;
	content: "";
	display: inline-block;
	-webkit-filter: brightness(0) saturate(100%) invert(7%) sepia(67%) saturate(7096%) hue-rotate(7deg) brightness(112%) contrast(112%);
    filter: brightness(0) saturate(100%) invert(7%) sepia(67%) saturate(7096%) hue-rotate(7deg) brightness(112%) contrast(112%);
	height: 25px;
    width: 18px;
}

.vimeo img,
.vimeo .play-button,
.youtube img,
.youtube .play-button {
    cursor: pointer;
}

.vimeo img,
.vimeo iframe,
.vimeo .play-button,
.vimeo .play-button:before,
.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
    position: absolute;
}

.vimeo .play-button,
.vimeo .play-button:before,
.youtube .play-button,
.youtube .play-button:before {
	left: 50%;
    top: 50%;
    transform: translate3d( -50%, -50%, 0 );
}

.vimeo iframe,
.youtube iframe {
    height: 100%;
    left: 0;
    top: 0;
	width: 100%;
}

/****************************************
 MISC
****************************************/
.btn.btn-danger {
    background-color: #a30020;
    padding: 1px 5px;
    color: #fff;
}

/*  Single product page css start */

.trust-box {
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin: 40px auto;
  font-family: 'Arial', sans-serif;
  max-width: 100%;
}

.trust-box-header {
  background-color: #0f2c40;
  color: #ffffff;
  padding: 30px 25px 20px;
  text-align: center;
}

.trust-box-header h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.trust-box-header p {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
}

.trust-box-body {
  background-color: #a3cf3a;
  padding: 25px;
  color: #ffffff;
}

.trust-item a{
  margin-bottom: 20px;
  color: #ffffff;
}

.trust-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.trust-item h3 a{
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
  color: #0f2c40;
}
.trust-item h3 a:hover {
    color: #fff;
}
.trust-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #0f2c40;
  margin: 0;
}
.trust-item:not(:last-child) {
    margin-bottom: 25px;
}

/*  Single product page css end */
body #content {
	overflow: hidden;
}
.products .product .media {
	min-height: 300px;
}
#cff .cff-album-item .cff-album-cover img {
    width: 100% !important;
    height: 100% !important;
    margin-left: 0 !important;
}


/****************************************
 Media Queries
****************************************/
@media only screen and (max-width: 1350px) {

}

@media only screen and (max-width: 1250px) {
	.site-header .columns {
		justify-content: center;
		text-align: center;
	}
}

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

@media only screen and (max-width: 950px) {
	.youtube .play-button {
		height: 35px;
		width: 50px;
	}
	
	.youtube .play-button:before {
		border-width: 9px 0px 8px 16px;
	}
}

@media only screen and (max-width: 900px) {
	#popup-sp .inner {
		min-height: 400px;
		overflow: scroll;
		width: 90%;
	}
}

@media only screen and (max-width: 850px) {
 
}
@media only screen and (max-width: 750px) {
	.column-thirds.sidebar,
	.column-two-thirds,
	.column-half {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		margin: 0 0 2em 0;
	}

	.column-thirds,
	.column-fourths {
		-ms-flex-preferred-size: 48%;
		flex-basis: 48%;
		margin: 0 0 1em 0;
	}
	
	.columns--grid-thirds,
	.columns--grid-fourths,
	.columns--grid-fifths,
	.columns--grid-sixths {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (48% [col-start])[2];
		grid-template-columns: repeat(2, 48% [col-start]);
	}
	
	.section--quick-links .columns--grid-half {
		-ms-grid-columns: (100% [col-start])[1];
		grid-template-columns: repeat(1, 100% [col-start]) !important;
	}
	
	.section--fifty-fifty .columns--grid-half {
		-ms-grid-columns: (100% [col-start])[1];
		grid-template-columns: repeat(1, 100% [col-start]) !important;
	}
	
	.section--contact {
		display: none !important;
	}
	
	a.page-numbers,
	span.page-numbers.current {
		display: none;
	}
	
	a.prev.page-numbers,
	a.next.page-numbers {
		display: inline-block;
	}


	.hero.is-desktop {
		display: none;
	}

	.hero.is-mobile {
		display: block;
		padding: 0 10px;
	}
	
	.glide__slide .content {
		margin: 0 0 1em 0;
		position: relative;
		text-align: center;
		width: 100%;
		z-index: 10;
		padding: 1.5em 1em;
	}
	
	.glide__slide .content h1:not(#carousel-testimonial .glide__slide .content h1),
	.glide__slide .content h1 span:not(#carousel-testimonial .glide__slide .content h1 span),
	.glide__slide .content p:not(#carousel-testimonial .glide__slide .content p) {
		color: #fff;
		margin: 0;
		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.5);
	}
	
	.hero.is-mobile .glide__slide .content h1 {
		font-size: var(--font-xl);
	}
	
	.hero.is-mobile .glide__arrows {
		top: 85%;
	}
	
	.glide__slide .content p:not(#carousel-testimonial .glide__slide .content p) {
		margin: 0 0 1em 0;
	}
	
	#carousel-testimonial .glide__slide .content h1,
	#carousel-testimonial .glide__slide .content h1 span,
	#carousel-testimonial .glide__slide .content p {
		color: #311e1e;
		margin: 0;
		text-shadow: none;
        font-size: 18px;
	}
	
	#carousel-testimonial .glide__slide .content p {
		margin: 0 0 1em 0;
	}
	
	.glide__slide .content .pre-title {
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8), 0 0 6px rgba(0, 0, 0, 0.5);
	}
	
	.site-menu--mobile {
		width: 100%;
	}
	
	.section--banner .outer .columns,
	.hero--internal .columns {
		display: block;
	}
	
	.finance-options.columns--grid-thirds {
		display: block !important;
	}
	.finance-options .finance-option, 
	.finance-options .finance-option img {
		display: block !important;
		width: 100% !important;
		margin: 10px auto;
	}

}

@media only screen and (max-width: 700px) {
	.single .nav-previous:before,
	.single .nav-next:before {
		display: none;
	}

	.single .nav-previous,
	.single .nav-next {
		font-size: 0;
	}

	.single .nav-previous a:before,
	.single .nav-next a:before {
		display: block;
		font-size: var(--font-md);
	}

	.single .nav-previous a:before {
		content: "\276E \00a0 Previous Post";
		text-align: left;
	}

	.single .nav-next a:before {
		content: "Next Post \00a0 \276F";
		text-align: right;
	}
}

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

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

@media only screen and (max-width: 550px) {
	.grid {
		-webkit-column-gap: 1em;
		-moz-column-gap: 1em;
		column-gap: 1em;
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}
}

@media only screen and (max-width: 500px) {
	.column-thirds,
	.column-fourths {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
	
	.columns--grid-half,
	.columns--grid-thirds,
	.columns--grid-fourths,
	.columns--grid-fifths {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: (100% [col-start])[1];
		grid-template-columns: repeat(1, 100% [col-start]);
	}
}

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

@media only screen and (max-width: 400px) {
	.alignleft,
	.alignright,
	.aligncenter {
		display: block;
		float: none;
		margin: 0 auto 1em auto;
	}
}

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

/************************************************
 Carried over from the former parent stylesheet
 ------------------------------------------------
 When the parent and child themes were merged into this single theme, a
 declaration-level diff of the two 88 KB stylesheets found the child sheet was a
 superset except for the five rules below: three selectors the child never had,
 and two declarations the child's own version of a shared selector was missing.
 Everything else was duplicated, which is why the site was shipping ~177 KB of
 near-identical CSS on every page. These are kept so nothing regresses.
************************************************/

.hero.is-desktop .glide__slide:before,
.hero.is-mobile .glide__slide:before {
	background-color: #000;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	opacity: .25;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2;
}

.glide__slide .content h1,
.glide__slide .content h1 span,
.glide__slide .content p {
	color: #000;
	margin: 0;
}

.glide__slide .content p {
	margin: 0 0 1em 0;
}

.hero--internal,
.hero--internal .outer,
.hero--internal .inner {
	min-height: 300px;
}

.hero.is-mobile {
	padding: 0;
}
